path
stringlengths
5
312
repo_name
stringlengths
5
116
content
stringlengths
2
1.04M
www/js/jQuery.mobile-1.2.0/demos/docs/forms/switch/index.html
Joao-S-Martins/ecoactivist
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>jQuery Mobile Docs - Switch</title> <link rel="stylesheet" href="../../../css/themes/default/jquery.mobile-1.2.0.css" /> <link rel="stylesheet" href="../../_assets/css/jqm-docs.css"/> <script src="../../../js/jquery.js"></script> <script src="../../../docs/_assets/js/jqm-docs.js"></script> <script src="../../../js/jquery.mobile-1.2.0.js"></script> </head> <body> <div data-role="page" class="type-interior"> <div data-role="header" data-theme="f"> <h1>Flip Toggle Switch</h1> <a href="../../../" data-icon="home" data-iconpos="notext" data-direction="reverse">Home</a> <a href="../../nav.html" data-icon="search" data-iconpos="notext" data-rel="dialog" data-transition="fade">Search</a> </div><!-- /header --> <div data-role="content"> <div class="content-primary"> <form action="#" method="get"> <h2>Flip toggle switch</h2> <ul data-role="controlgroup" data-type="horizontal" class="localnav"> <li><a href="index.html" data-role="button" data-transition="fade" class="ui-btn-active">Basics</a></li> <li><a href="options.html" data-role="button" data-transition="fade">Options</a></li> <li><a href="methods.html" data-role="button" data-transition="fade">Methods</a></li> <li><a href="events.html" data-role="button" data-transition="fade">Events</a></li> </ul> <p>A binary "flip" switch is a common UI element on mobile devices that is used for binary on/off or true/false data input. You can either drag the flip handle like a slider or tap one side of the switch.</p> <p>To create a flip toggle, start with a <code>select</code> with attribute <code>data-role="slider"</code> and two options. The first option will be styled as the "on" state switch and the second will be styled as the "off" state so write your options accordingly. View the <a href="../../api/data-attributes.html">data- attribute reference</a> to see all the possible attributes you can add to flip switches.</p> <p>Set the <code>for</code> attribute of the <code>label</code> to match the <code>id</code> of the <code>input</code> so they are semantically associated. It's possible to <a href="../docs-forms.html">accessibly hide the label</a> if it's not desired in the page layout, but we require that it is present in the markup for semantic and accessibility reasons.</p> <pre><code> &lt;label for=&quot;flip-1&quot;&gt;Flip switch:&lt;/label&gt; &lt;select name=&quot;flip-1&quot; id=&quot;flip-1&quot; data-role=&quot;slider&quot;&gt; &lt;option value=&quot;off&quot;&gt;Off&lt;/option&gt; &lt;option value=&quot;on&quot;&gt;On&lt;/option&gt; &lt;/select&gt; </code></pre> <p>This will produce a basic flip toggle switch input. The default styles set the width of the switch to 100% of the parent container and stack the label on a separate line.</p> <label for="flip-1">Flip switch:</label> <select name="flip-1" id="flip-1" data-role="slider"> <option value="off">Off</option> <option value="on">On</option> </select> <h2>Longer labels</h2> <p>The control is proportionally scaled, so to use longer labels one can just add a line of CSS setting the switch to the desired width. For example, given the following markup:</p> <pre><code> &lt;div class="containing-element"&gt; &lt;label for="flip-min">Flip switch:&lt;/label&gt; &lt;select name="flip-min" id="flip-min" data-role="slider"&gt; &lt;option value="off">Switch Off&lt;/option&gt; &lt;option value="on">Switch On&lt;/option&gt; &lt;/select&gt; &lt;/div&gt; </code></pre> <p><code>.containing-element .ui-slider-switch { width: 9em }</code> will produce:</p> <style type="text/css" media="screen"> .containing-element .ui-slider-switch { width: 9em; } </style> <div class="containing-element"> <label for="flip-min">Flip switch:</label> <select name="flip-min" id="flip-min" data-role="slider"> <option value="off">Switch Off</option> <option value="on">Switch On</option> </select> </div> <p>As some default styles hinge on fieldcontains, note that you may have to ensure that custom styles apply to switches within fieldcontains by using <code>.ui-field-contain div.ui-slider-switch { width: […]; }</code>.</p> <h2>Mini version</h2> <p>For a more compact version that is useful in toolbars and tight spaces, add the <code>data-mini="true"</code> attribute to the element to create a <a href="../forms-all-mini.html">mini version</a>. </p> <pre><code> &lt;label for=&quot;flip-mini&quot;&gt;Flip switch:&lt;/label&gt; &lt;select name=&quot;flip-mini&quot; id=&quot;flip-mini&quot; data-role=&quot;slider&quot; <strong>data-mini=&quot;true&quot;</strong>&gt; &lt;option value=&quot;off&quot;&gt;Off&lt;/option&gt; &lt;option value=&quot;on&quot;&gt;On&lt;/option&gt; &lt;/select&gt; </code></pre> <p>This will produce a flip switch that is not as tall as the standard version and has a smaller text size.</p> <label for="flip-mini">Flip switch:</label> <select name="flip-mini" id="flip-mini" data-role="slider" data-mini="true"> <option value="off">Off</option> <option value="on">On</option> </select> <h2>Field containers</h2> <p>Optionally wrap the switch markup in a container with the <code>data-role="fieldcontain"</code> attribute to help visually group it in a longer form.</p> <pre><code> <strong>&lt;div data-role=&quot;fieldcontain&quot;&gt; </strong>&lt;label for=&quot;flip-2&quot;&gt;Flip switch:&lt;/label&gt; &lt;select name=&quot;flip-2&quot; id=&quot;flip-2&quot; data-role=&quot;slider&quot;&gt; &lt;option value=&quot;nope&quot;&gt;Nope&lt;/option&gt; &lt;option value=&quot;yep&quot;&gt;Yep&lt;/option&gt; &lt;/select&gt; <strong>&lt;/div&gt; </strong></code></pre> <p>The flip toggle switch is now displayed like this:</p> <div data-role="fieldcontain"> <label for="flip-2">Flip switch:</label> <select name="flip-2" id="flip-2" data-role="slider"> <option value="nope">Nope</option> <option value="yep">Yep</option> </select> </div> <h2>Theming the flip switch</h2> <p>Like all form elements, this widget will automatically inherit the theme from its parent container. To choose a specific theme color swatch, specify the <code>data-theme</code> attribute on the <code>select</code> and specify a swatch letter.</p> <pre><code> &lt;div data-role=&quot;fieldcontain&quot;&gt; &lt;label for=&quot;flip-3&quot;&gt;Flip switch:&lt;/label&gt; &lt;select name=&quot;flip-3&quot; id=&quot;flip-3&quot; data-role=&quot;slider&quot; data-theme=&quot;a&quot;&gt; &lt;option value=&quot;no&quot;&gt;No&lt;/option&gt; &lt;option value=&quot;yes&quot;&gt;Yes&lt;/option&gt; &lt;/select&gt; &lt;/div&gt; </code></pre> <p>This results in a switch with the swatch "a" colors for the handle. Note that the lefthand "on" state gets the active state color.</p> <div data-role="fieldcontain"> <label for="flip-3">Flip switch:</label> <select name="flip-3" id="flip-3" data-role="slider" data-theme="a"> <option value="hate">Hate</option> <option value="love">Love</option> </select> </div> <p>Here is a swatch "e" variation:</p> <div data-role="fieldcontain"> <label for="flip-4">Flip switch:</label> <select name="flip-4" id="flip-4" data-role="slider" data-theme="e"> <option value="no">No</option> <option value="yes">Yes</option> </select> </div> <p>It is also possible to theme the track of the flip switch by adding the <code>data-track-theme</code> attribute and specifying the chosen swatch letter on the <code>select</code>.</p> <p>Here's an example of a flip switch with the swatch "a" applied to the track and swatch "c" applied to the handle:</p> <pre><code> &lt;div data-role="fieldcontain"&gt; &lt;label for="flip-5"&gt;Flip switch:&lt;/label&gt; &lt;select name="flip-5" id="flip-5" data-role="slider" data-theme="c" data-track-theme="a"&gt; &lt;option value="no"&gt;No&lt;/option&gt; &lt;option value="yes"&gt;Yes&lt;/option&gt; &lt;/select&gt; &lt;/div&gt; </code></pre> <div data-role="fieldcontain"> <label for="flip-5">Flip switch:</label> <select name="flip-5" id="flip-5" data-role="slider" data-theme="c" data-track-theme="a"> <option value="no">No</option> <option value="yes">Yes</option> </select> </div> <h2>Calling the switch plugin</h2> <p>This plugin will auto-initialize on any page that contains a <code>select</code> with the <code>data-role="slider"</code> attribute. However, if needed you can directly call the <code>slider</code> plugin on any selector, just like any jQuery plugin:</p> <pre><code> $('select').slider(); </code></pre> </form> </div><!--/content-primary --> <div class="content-secondary"> <div data-role="collapsible" data-collapsed="true" data-theme="b" data-content-theme="d"> <h3>More in this section</h3> <ul data-role="listview" data-theme="c" data-dividertheme="d"> <li data-role="list-divider">Form elements</li> <li><a href="../docs-forms.html">Form basics</a></li> <li><a href="../forms-all.html">Form element gallery</a></li> <li><a href="../forms-all-mini.html">Mini form element gallery</a></li> <li><a href="../textinputs/index.html">Text inputs</a></li> <li><a href="../search/">Search input</a></li> <li><a href="../slider/">Slider</a></li> <li data-theme="a"><a href="index.html">Flip toggle switch</a></li> <li><a href="../radiobuttons/">Radio buttons</a></li> <li><a href="../checkboxes/">Checkboxes</a></li> <li><a href="../selects/">Select menus</a></li> <li><a href="../forms-themes.html">Theming forms</a></li> <li><a href="../forms-all-native.html">Native form elements</a></li> <li><a href="../forms-sample.html">Submitting forms</a></li> </ul> </div> </div> </div><!-- /content --> <div data-role="footer" class="footer-docs" data-theme="c"> <p class="jqm-version"></p> <p>&copy; 2012 jQuery Foundation and other contributors</p> </div> </div><!-- /page --> </body> </html>
src/commons-math3-3.6.1/docs/apidocs/org/apache/commons/math3/distribution/class-use/IntegerDistribution.html
asampley/FactorioRatioAssistant
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Interface org.apache.commons.math3.distribution.IntegerDistribution (Apache Commons Math 3.6.1 API)</title> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Interface org.apache.commons.math3.distribution.IntegerDistribution (Apache Commons Math 3.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/commons/math3/distribution/IntegerDistribution.html" title="interface in org.apache.commons.math3.distribution">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="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><em><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script></em></div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/commons/math3/distribution/class-use/IntegerDistribution.html" target="_top">Frames</a></li> <li><a href="IntegerDistribution.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Interface org.apache.commons.math3.distribution.IntegerDistribution" class="title">Uses of Interface<br>org.apache.commons.math3.distribution.IntegerDistribution</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../org/apache/commons/math3/distribution/IntegerDistribution.html" title="interface in org.apache.commons.math3.distribution">IntegerDistribution</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.apache.commons.math3.distribution">org.apache.commons.math3.distribution</a></td> <td class="colLast"> <div class="block">Implementations of common discrete and continuous distributions.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.apache.commons.math3.random">org.apache.commons.math3.random</a></td> <td class="colLast"> <div class="block">Random number and random data generators.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.apache.commons.math3.distribution"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/apache/commons/math3/distribution/IntegerDistribution.html" title="interface in org.apache.commons.math3.distribution">IntegerDistribution</a> in <a href="../../../../../../org/apache/commons/math3/distribution/package-summary.html">org.apache.commons.math3.distribution</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../../org/apache/commons/math3/distribution/package-summary.html">org.apache.commons.math3.distribution</a> that implement <a href="../../../../../../org/apache/commons/math3/distribution/IntegerDistribution.html" title="interface in org.apache.commons.math3.distribution">IntegerDistribution</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/commons/math3/distribution/AbstractIntegerDistribution.html" title="class in org.apache.commons.math3.distribution">AbstractIntegerDistribution</a></strong></code> <div class="block">Base class for integer-valued discrete distributions.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/commons/math3/distribution/BinomialDistribution.html" title="class in org.apache.commons.math3.distribution">BinomialDistribution</a></strong></code> <div class="block">Implementation of the binomial distribution.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/commons/math3/distribution/EnumeratedIntegerDistribution.html" title="class in org.apache.commons.math3.distribution">EnumeratedIntegerDistribution</a></strong></code> <div class="block">Implementation of an integer-valued <a href="../../../../../../org/apache/commons/math3/distribution/EnumeratedDistribution.html" title="class in org.apache.commons.math3.distribution"><code>EnumeratedDistribution</code></a>.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/commons/math3/distribution/GeometricDistribution.html" title="class in org.apache.commons.math3.distribution">GeometricDistribution</a></strong></code> <div class="block">Implementation of the geometric distribution.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/commons/math3/distribution/HypergeometricDistribution.html" title="class in org.apache.commons.math3.distribution">HypergeometricDistribution</a></strong></code> <div class="block">Implementation of the hypergeometric distribution.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/commons/math3/distribution/PascalDistribution.html" title="class in org.apache.commons.math3.distribution">PascalDistribution</a></strong></code> <div class="block"> Implementation of the Pascal distribution.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/commons/math3/distribution/PoissonDistribution.html" title="class in org.apache.commons.math3.distribution">PoissonDistribution</a></strong></code> <div class="block">Implementation of the Poisson distribution.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/commons/math3/distribution/UniformIntegerDistribution.html" title="class in org.apache.commons.math3.distribution">UniformIntegerDistribution</a></strong></code> <div class="block">Implementation of the uniform integer distribution.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/commons/math3/distribution/ZipfDistribution.html" title="class in org.apache.commons.math3.distribution">ZipfDistribution</a></strong></code> <div class="block">Implementation of the Zipf distribution.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.apache.commons.math3.random"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/apache/commons/math3/distribution/IntegerDistribution.html" title="interface in org.apache.commons.math3.distribution">IntegerDistribution</a> in <a href="../../../../../../org/apache/commons/math3/random/package-summary.html">org.apache.commons.math3.random</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/apache/commons/math3/random/package-summary.html">org.apache.commons.math3.random</a> with parameters of type <a href="../../../../../../org/apache/commons/math3/distribution/IntegerDistribution.html" title="interface in org.apache.commons.math3.distribution">IntegerDistribution</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><span class="strong">RandomDataImpl.</span><code><strong><a href="../../../../../../org/apache/commons/math3/random/RandomDataImpl.html#nextInversionDeviate(org.apache.commons.math3.distribution.IntegerDistribution)">nextInversionDeviate</a></strong>(<a href="../../../../../../org/apache/commons/math3/distribution/IntegerDistribution.html" title="interface in org.apache.commons.math3.distribution">IntegerDistribution</a>&nbsp;distribution)</code> <div class="block"><strong>Deprecated.</strong>&nbsp; <div class="block"><i>use the distribution's sample() method</i></div> </div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/commons/math3/distribution/IntegerDistribution.html" title="interface in org.apache.commons.math3.distribution">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="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><em><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script></em></div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/commons/math3/distribution/class-use/IntegerDistribution.html" target="_top">Frames</a></li> <li><a href="IntegerDistribution.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2003&#x2013;2016 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p> </body> </html>
操作文档/public/plugins/ztree/demo/cn/exhide/radio.html
JunQiGenYuan/DoraCMS
<!DOCTYPE html> <HTML> <HEAD> <TITLE> ZTREE DEMO - Hide With Radio Mode</TITLE> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <link rel="stylesheet" href="../../../css/demo.css" type="text/css"> <link rel="stylesheet" href="../../../css/zTreeStyle/zTreeStyle.css" type="text/css"> <script type="text/javascript" src="../../../js/jquery-1.4.4.min.js"></script> <script type="text/javascript" src="../../../js/jquery.ztree.core-3.5.js"></script> <script type="text/javascript" src="../../../js/jquery.ztree.excheck-3.5.js"></script> <!--<script type="text/javascript" src="../../../js/jquery.ztree.exedit-3.5.js"></script>--> <script type="text/javascript" src="../../../js/jquery.ztree.exhide-3.5.js"></script> <SCRIPT type="text/javascript"> <!-- var setting = { check: { enable: true, chkStyle: "radio" }, data: { key: { title: "title" }, simpleData: { enable: true } }, callback: { onCheck: onCheck } }; var zNodes =[ { id:1, pId:0, name:"父节点1", title:"", checked:true, open:true}, { id:11, pId:1, name:"父节点11", title:"", checked:true}, { id:111, pId:11, name:"叶子节点111", title:"", checked:true, isHidden:true}, { id:112, pId:11, name:"叶子节点112", title:""}, { id:113, pId:11, name:"叶子节点113", title:""}, { id:12, pId:1, name:"父节点12", title:"", isHidden:true}, { id:121, pId:12, name:"叶子节点121", title:""}, { id:122, pId:12, name:"叶子节点122", title:"", isHidden:true}, { id:123, pId:12, name:"叶子节点123", title:""}, { id:2, pId:0, name:"父节点2", title:""}, { id:21, pId:2, name:"父节点21", title:"", isHidden:true}, { id:211, pId:21, name:"叶子节点211", title:""}, { id:212, pId:21, name:"叶子节点212", title:""}, { id:213, pId:21, name:"叶子节点213", title:""}, { id:22, pId:2, name:"父节点22", title:""}, { id:221, pId:22, name:"叶子节点221", title:""}, { id:222, pId:22, name:"叶子节点222", title:""}, { id:223, pId:22, name:"叶子节点223", title:""} ]; function onCheck(e, treeId, treeNode) { count(); } function setTitle(node) { var zTree = $.fn.zTree.getZTreeObj("treeDemo"); var nodes = node ? [node]:zTree.transformToArray(zTree.getNodes()); for (var i=0, l=nodes.length; i<l; i++) { var n = nodes[i]; n.title = "[" + n.id + "] isFirstNode = " + n.isFirstNode + ", isLastNode = " + n.isLastNode; zTree.updateNode(n); } } function count() { function isForceHidden(node) { if (!node.parentTId) return false; var p = node.getParentNode(); return !!p.isHidden ? true : isForceHidden(p); } var zTree = $.fn.zTree.getZTreeObj("treeDemo"), checkCount = zTree.getCheckedNodes(true).length, nocheckCount = zTree.getCheckedNodes(false).length, hiddenNodes = zTree.getNodesByParam("isHidden", true), hiddenCount = hiddenNodes.length; for (var i=0, j=hiddenNodes.length; i<j; i++) { var n = hiddenNodes[i]; if (isForceHidden(n)) { hiddenCount -= 1; } else if (n.isParent) { hiddenCount += zTree.transformToArray(n.children).length; } } $("#isHiddenCount").text(hiddenNodes.length); $("#hiddenCount").text(hiddenCount); $("#checkCount").text(checkCount); $("#nocheckCount").text(nocheckCount); } function showNodes() { var zTree = $.fn.zTree.getZTreeObj("treeDemo"), nodes = zTree.getNodesByParam("isHidden", true); zTree.showNodes(nodes); setTitle(); count(); } function hideNodes() { var zTree = $.fn.zTree.getZTreeObj("treeDemo"), nodes = zTree.getSelectedNodes(); if (nodes.length == 0) { alert("请至少选择一个节点"); return; } zTree.hideNodes(nodes); setTitle(); count(); } $(document).ready(function(){ $.fn.zTree.init($("#treeDemo"), setting, zNodes); $("#hideNodesBtn").bind("click", {type:"rename"}, hideNodes); $("#showNodesBtn").bind("click", {type:"icon"}, showNodes); setTitle(); count(); }); //--> </SCRIPT> </HEAD> <BODY> <h1>配合 radio 的隐藏</h1> <h6>[ 文件路径: exhide/radio.html ]</h6> <div class="content_wrap"> <div class="zTreeDemoBackground left"> <ul id="treeDemo" class="ztree"></ul> </div> <div class="right"> <ul class="info"> <li class="title"><h2>1、setting 配置信息说明</h2> <ul class="list"> <li>使用隐藏功能,无需设置任何参数</li> </ul> </li> <li class="title"><h2>2、treeNode 节点数据说明</h2> <ul class="list"> <li class="highlight_red">初始化时,设置 treeNode.isHidden = true; 可以让节点隐藏</li> <li><p>隐藏、显示节点,看看树的变化:<br/><br/> 试试看:[ <a id="hideNodesBtn" href="#" onclick="return false;">隐藏选中的节点</a> ] &nbsp;&nbsp;&nbsp;&nbsp;[ <a id="showNodesBtn" href="#" onclick="return false;">显示全部被隐藏的节点</a> ]<br/><br/> <ul id="log" class="log" style="height:125px;"> <li>isHidden = true 的节点共 <span id="isHiddenCount" class="highlight_red"></span> 个</li> <li>被隐藏的节点共 <span id="hiddenCount" class="highlight_red"></span> 个</li> <li>当前被勾选的节点共 <span id="checkCount" class="highlight_red"></span> 个</li> <li>当前未被勾选的节点共 <span id="nocheckCount" class="highlight_red"></span> 个</li> <li>隐藏节点后,可以看看仍显示节点的 isFirstNode 和 isLastNode 属性</li> </ul></p> </li> </ul> </li> <li class="title"><h2>3、其他说明</h2> <ul class="list"> <li>隐藏节点操作,会影响 isFirstNode 和 isLastNode 属性,但是对于 getPreNode() 和 getNextNode() 方法无影响</li> </ul> </li> </ul> </div> </div> </BODY> </HTML>
doc/html/qtextedit-qt3.html
liuyanghejerry/qtextended
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Qt 4.4: Qt 3 Support Members for QTextEdit</title> <link href="classic.css" rel="stylesheet" type="text/css" /> </head> <body> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <td align="left" valign="top" width="32"><a href="http://www.trolltech.com/products/qt"><img src="images/qt-logo.png" align="left" border="0" /></a></td> <td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a>&nbsp;&middot; <a href="namespaces.html"><font color="#004faf">All&nbsp;Namespaces</font></a>&nbsp;&middot; <a href="classes.html"><font color="#004faf">All&nbsp;Classes</font></a>&nbsp;&middot; <a href="mainclasses.html"><font color="#004faf">Main&nbsp;Classes</font></a>&nbsp;&middot; <a href="groups.html"><font color="#004faf">Grouped&nbsp;Classes</font></a>&nbsp;&middot; <a href="modules.html"><font color="#004faf">Modules</font></a>&nbsp;&middot; <a href="functions.html"><font color="#004faf">Functions</font></a></td> <td align="right" valign="top" width="230"></td></tr></table><h1 class="title">Qt 3 Support Members for QTextEdit</h1> <p><b>The following class members are part of the <a href="qt3support.html">Qt 3 support layer</a>.</b> They are provided to help you port old code to Qt 4. We advise against using them in new code.</p> <p><ul><li><a href="qtextedit.html">QTextEdit class reference</a></li></ul></p> <h3>Public Types</h3> <ul> <li><div class="fn"/>enum <b><a href="qtextedit-qt3.html#CursorAction-enum">CursorAction</a></b> { MoveBackward, MoveForward, MoveWordBackward, MoveWordForward, ..., MovePageDown }</li> <li><div class="fn"/>enum <b><a href="qtextedit-qt3.html#KeyboardAction-enum">KeyboardAction</a></b> { ActionBackspace, ActionDelete, ActionReturn, ActionKill, ActionWordBackspace, ActionWordDelete }</li> </ul> <h3>Public Functions</h3> <ul> <li><div class="fn"/><b><a href="qtextedit-qt3.html#QTextEdit-4">QTextEdit</a></b> ( QWidget * <i>parent</i>, const char * <i>name</i> )</li> <li><div class="fn"/>bool <b><a href="qtextedit-qt3.html#bold">bold</a></b> () const</li> <li><div class="fn"/>QColor <b><a href="qtextedit-qt3.html#color">color</a></b> () const</li> <li><div class="fn"/>void <b><a href="qtextedit-qt3.html#doKeyboardAction">doKeyboardAction</a></b> ( KeyboardAction <i>action</i> )</li> <li><div class="fn"/>QString <b><a href="qtextedit-qt3.html#family">family</a></b> () const</li> <li><div class="fn"/>bool <b><a href="qtextedit-qt3.html#find-2">find</a></b> ( const QString &amp; <i>exp</i>, bool <i>cs</i>, bool <i>wo</i> )</li> <li><div class="fn"/>bool <b><a href="qtextedit-qt3.html#hasSelectedText">hasSelectedText</a></b> () const</li> <li><div class="fn"/>void <b><a href="qtextedit-qt3.html#insert">insert</a></b> ( const QString &amp; <i>text</i> )</li> <li><div class="fn"/>bool <b><a href="qtextedit-qt3.html#isModified">isModified</a></b> () const</li> <li><div class="fn"/>bool <b><a href="qtextedit-qt3.html#isRedoAvailable">isRedoAvailable</a></b> () const</li> <li><div class="fn"/>bool <b><a href="qtextedit-qt3.html#isUndoAvailable">isUndoAvailable</a></b> () const</li> <li><div class="fn"/>bool <b><a href="qtextedit-qt3.html#italic">italic</a></b> () const</li> <li><div class="fn"/>void <b><a href="qtextedit-qt3.html#moveCursor-2">moveCursor</a></b> ( CursorAction <i>action</i>, QTextCursor::MoveMode <i>mode</i> = QTextCursor::MoveAnchor )</li> <li><div class="fn"/>void <b><a href="qtextedit-qt3.html#moveCursor-3">moveCursor</a></b> ( CursorAction <i>action</i>, bool <i>select</i> )</li> <li><div class="fn"/>int <b><a href="qtextedit-qt3.html#pointSize">pointSize</a></b> () const</li> <li><div class="fn"/>void <b><a href="qtextedit-qt3.html#redo-2">redo</a></b> () const</li> <li><div class="fn"/>QString <b><a href="qtextedit-qt3.html#selectedText">selectedText</a></b> () const</li> <li><div class="fn"/>void <b><a href="qtextedit-qt3.html#setBold">setBold</a></b> ( bool <i>b</i> )</li> <li><div class="fn"/>void <b><a href="qtextedit-qt3.html#setFamily">setFamily</a></b> ( const QString &amp; <i>family</i> )</li> <li><div class="fn"/>void <b><a href="qtextedit-qt3.html#setItalic">setItalic</a></b> ( bool <i>i</i> )</li> <li><div class="fn"/>void <b><a href="qtextedit-qt3.html#setPointSize">setPointSize</a></b> ( int <i>size</i> )</li> <li><div class="fn"/>void <b><a href="qtextedit-qt3.html#setTextFormat">setTextFormat</a></b> ( Qt::TextFormat <i>f</i> )</li> <li><div class="fn"/>void <b><a href="qtextedit-qt3.html#setUnderline">setUnderline</a></b> ( bool <i>b</i> )</li> <li><div class="fn"/>void <b><a href="qtextedit-qt3.html#sync">sync</a></b> ()</li> <li><div class="fn"/>QString <b><a href="qtextedit-qt3.html#text">text</a></b> () const</li> <li><div class="fn"/>Qt::TextFormat <b><a href="qtextedit-qt3.html#textFormat">textFormat</a></b> () const</li> <li><div class="fn"/>bool <b><a href="qtextedit-qt3.html#underline">underline</a></b> () const</li> <li><div class="fn"/>void <b><a href="qtextedit-qt3.html#undo-2">undo</a></b> () const</li> </ul> <ul> <li><div class="fn"/>60 public functions inherited from <a href="qwidget.html#public-functions">QWidget</a></li> <li><div class="fn"/>8 public functions inherited from <a href="qobject.html#public-functions">QObject</a></li> <li><div class="fn"/>8 public functions inherited from <a href="qpaintdevice.html#public-functions">QPaintDevice</a></li> </ul> <h3>Public Slots</h3> <ul> <li><div class="fn"/>void <b><a href="qtextedit-qt3.html#setColor">setColor</a></b> ( const QColor &amp; <i>color</i> )</li> <li><div class="fn"/>void <b><a href="qtextedit-qt3.html#setModified">setModified</a></b> ( bool <i>m</i> = true )</li> </ul> <ul> <li><div class="fn"/>1 public slot inherited from <a href="qwidget.html#public-slots">QWidget</a></li> </ul> <h3>Signals</h3> <ul> <li><div class="fn"/>void <b><a href="qtextedit-qt3.html#currentColorChanged">currentColorChanged</a></b> ( const QColor &amp; <i>color</i> )</li> <li><div class="fn"/>void <b><a href="qtextedit-qt3.html#currentFontChanged">currentFontChanged</a></b> ( const QFont &amp; <i>font</i> )</li> </ul> <hr /> <h2>Member Type Documentation</h2> <h3 class="fn"><a name="CursorAction-enum"></a>enum QTextEdit::CursorAction</h3> <p><table border="1" cellpadding="2" cellspacing="1" width="40%"> <tr><th width="60%">Constant</th><th width="40%">Value</th></tr> <tr><td valign="top"><tt>QTextEdit::MoveBackward</tt></td><td align="center" valign="top"><tt>0</tt></td></tr> <tr><td valign="top"><tt>QTextEdit::MoveForward</tt></td><td align="center" valign="top"><tt>1</tt></td></tr> <tr><td valign="top"><tt>QTextEdit::MoveWordBackward</tt></td><td align="center" valign="top"><tt>2</tt></td></tr> <tr><td valign="top"><tt>QTextEdit::MoveWordForward</tt></td><td align="center" valign="top"><tt>3</tt></td></tr> <tr><td valign="top"><tt>QTextEdit::MoveUp</tt></td><td align="center" valign="top"><tt>4</tt></td></tr> <tr><td valign="top"><tt>QTextEdit::MoveDown</tt></td><td align="center" valign="top"><tt>5</tt></td></tr> <tr><td valign="top"><tt>QTextEdit::MoveLineStart</tt></td><td align="center" valign="top"><tt>6</tt></td></tr> <tr><td valign="top"><tt>QTextEdit::MoveLineEnd</tt></td><td align="center" valign="top"><tt>7</tt></td></tr> <tr><td valign="top"><tt>QTextEdit::MoveHome</tt></td><td align="center" valign="top"><tt>8</tt></td></tr> <tr><td valign="top"><tt>QTextEdit::MoveEnd</tt></td><td align="center" valign="top"><tt>9</tt></td></tr> <tr><td valign="top"><tt>QTextEdit::MovePageUp</tt></td><td align="center" valign="top"><tt>10</tt></td></tr> <tr><td valign="top"><tt>QTextEdit::MovePageDown</tt></td><td align="center" valign="top"><tt>11</tt></td></tr> </table></p> <h3 class="fn"><a name="KeyboardAction-enum"></a>enum QTextEdit::KeyboardAction</h3> <p><table border="1" cellpadding="2" cellspacing="1" width="40%"> <tr><th width="60%">Constant</th><th width="40%">Value</th></tr> <tr><td valign="top"><tt>QTextEdit::ActionBackspace</tt></td><td align="center" valign="top"><tt>0</tt></td></tr> <tr><td valign="top"><tt>QTextEdit::ActionDelete</tt></td><td align="center" valign="top"><tt>1</tt></td></tr> <tr><td valign="top"><tt>QTextEdit::ActionReturn</tt></td><td align="center" valign="top"><tt>2</tt></td></tr> <tr><td valign="top"><tt>QTextEdit::ActionKill</tt></td><td align="center" valign="top"><tt>3</tt></td></tr> <tr><td valign="top"><tt>QTextEdit::ActionWordBackspace</tt></td><td align="center" valign="top"><tt>4</tt></td></tr> <tr><td valign="top"><tt>QTextEdit::ActionWordDelete</tt></td><td align="center" valign="top"><tt>5</tt></td></tr> </table></p> <hr /> <h2>Member Function Documentation</h2> <h3 class="fn"><a name="QTextEdit-4"></a>QTextEdit::QTextEdit ( <a href="qwidget.html">QWidget</a> * <i>parent</i>, const char * <i>name</i> )</h3> <p>Use one of the constructors that doesn't take the <i>name</i> argument and then use <a href="qobject.html#objectName-prop">setObjectName</a>() instead.</p> <h3 class="fn"><a name="bold"></a>bool QTextEdit::bold () const</h3> <p>Use <a href="qtextedit.html#fontWeight">fontWeight</a>() &gt;= <a href="qfont.html#Weight-enum">QFont::Bold</a> instead.</p> <p>See also <a href="qtextedit-qt3.html#setBold">setBold</a>().</p> <h3 class="fn"><a name="color"></a><a href="qcolor.html">QColor</a> QTextEdit::color () const</h3> <p>Use <a href="qtextedit.html#textColor">textColor</a>() instead.</p> <p>See also <a href="qtextedit-qt3.html#setColor">setColor</a>().</p> <h3 class="fn"><a name="currentColorChanged"></a>void QTextEdit::currentColorChanged ( const <a href="qcolor.html">QColor</a> &amp; <i>color</i> )&nbsp;&nbsp;<tt> [signal]</tt></h3> <p>Use <a href="qtextedit.html#currentCharFormatChanged">currentCharFormatChanged</a>() instead.</p> <h3 class="fn"><a name="currentFontChanged"></a>void QTextEdit::currentFontChanged ( const <a href="qfont.html">QFont</a> &amp; <i>font</i> )&nbsp;&nbsp;<tt> [signal]</tt></h3> <p>Use <a href="qtextedit.html#currentCharFormatChanged">currentCharFormatChanged</a>() instead.</p> <h3 class="fn"><a name="doKeyboardAction"></a>void QTextEdit::doKeyboardAction ( <a href="qtextedit-qt3.html#KeyboardAction-enum">KeyboardAction</a> <i>action</i> )</h3> <p>Executes keyboard action <i>action</i>.</p> <p>Use the <a href="qtextcursor.html">QTextCursor</a> class instead.</p> <p>See also <a href="qtextedit.html#textCursor">textCursor</a>().</p> <h3 class="fn"><a name="family"></a><a href="qstring.html">QString</a> QTextEdit::family () const</h3> <p>Use <a href="qtextedit.html#fontFamily">fontFamily</a>() instead.</p> <p>See also <a href="qtextedit-qt3.html#setFamily">setFamily</a>().</p> <h3 class="fn"><a name="find-2"></a>bool QTextEdit::find ( const <a href="qstring.html">QString</a> &amp; <i>exp</i>, bool <i>cs</i>, bool <i>wo</i> )</h3> <p>This is an overloaded member function, provided for convenience.</p> <p>Use the <a href="qtextedit.html#find">find</a>() overload that takes a <a href="qtextdocument.html#FindFlag-enum">QTextDocument::FindFlags</a> argument.</p> <h3 class="fn"><a name="hasSelectedText"></a>bool QTextEdit::hasSelectedText () const</h3> <p>Use <a href="qtextedit.html#textCursor">textCursor</a>().hasSelection() instead.</p> <h3 class="fn"><a name="insert"></a>void QTextEdit::insert ( const <a href="qstring.html">QString</a> &amp; <i>text</i> )</h3> <p>Use <a href="qtextedit.html#insertPlainText">insertPlainText</a>() instead.</p> <h3 class="fn"><a name="isModified"></a>bool QTextEdit::isModified () const</h3> <p>Use <a href="qtextedit.html#document">document</a>()-&gt;isModified() instead.</p> <h3 class="fn"><a name="isRedoAvailable"></a>bool QTextEdit::isRedoAvailable () const</h3> <p>Use <a href="qtextedit.html#document">document</a>()-&gt;isRedoAvailable() instead.</p> <h3 class="fn"><a name="isUndoAvailable"></a>bool QTextEdit::isUndoAvailable () const</h3> <p>Use <a href="qtextedit.html#document">document</a>()-&gt;isUndoAvailable() instead.</p> <h3 class="fn"><a name="italic"></a>bool QTextEdit::italic () const</h3> <p>Use <a href="qtextedit.html#fontItalic">fontItalic</a>() instead.</p> <p>See also <a href="qtextedit-qt3.html#setItalic">setItalic</a>().</p> <h3 class="fn"><a name="moveCursor-2"></a>void QTextEdit::moveCursor ( <a href="qtextedit-qt3.html#CursorAction-enum">CursorAction</a> <i>action</i>, <a href="qtextcursor.html#MoveMode-enum">QTextCursor::MoveMode</a> <i>mode</i> = QTextCursor::MoveAnchor )</h3> <p>This is an overloaded member function, provided for convenience.</p> <p>Use the <a href="qtextcursor.html">QTextCursor</a> class instead.</p> <h3 class="fn"><a name="moveCursor-3"></a>void QTextEdit::moveCursor ( <a href="qtextedit-qt3.html#CursorAction-enum">CursorAction</a> <i>action</i>, bool <i>select</i> )</h3> <p>This is an overloaded member function, provided for convenience.</p> <p>Use the <a href="qtextcursor.html">QTextCursor</a> class instead.</p> <h3 class="fn"><a name="pointSize"></a>int QTextEdit::pointSize () const</h3> <p>Use int(<a href="qtextedit.html#fontPointSize">fontPointSize</a>()+0.5) instead.</p> <p>See also <a href="qtextedit-qt3.html#setPointSize">setPointSize</a>().</p> <h3 class="fn"><a name="redo-2"></a>void QTextEdit::redo () const</h3> <p>This is an overloaded member function, provided for convenience.</p> <p>Use the non-const overload instead.</p> <h3 class="fn"><a name="selectedText"></a><a href="qstring.html">QString</a> QTextEdit::selectedText () const</h3> <p>Use <a href="qtextedit.html#textCursor">textCursor</a>().selectedText() instead.</p> <h3 class="fn"><a name="setBold"></a>void QTextEdit::setBold ( bool <i>b</i> )</h3> <p>Use <a href="qtextedit.html#setFontWeight">setFontWeight</a>() instead.</p> <p>See also <a href="qtextedit-qt3.html#bold">bold</a>().</p> <h3 class="fn"><a name="setColor"></a>void QTextEdit::setColor ( const <a href="qcolor.html">QColor</a> &amp; <i>color</i> )&nbsp;&nbsp;<tt> [slot]</tt></h3> <p>Use <a href="qtextedit.html#setTextColor">setTextColor</a>() instead.</p> <p>See also <a href="qtextedit-qt3.html#color">color</a>().</p> <h3 class="fn"><a name="setFamily"></a>void QTextEdit::setFamily ( const <a href="qstring.html">QString</a> &amp; <i>family</i> )</h3> <p>Use <a href="qtextedit.html#setFontFamily">setFontFamily</a>() instead.</p> <p>See also <a href="qtextedit-qt3.html#family">family</a>().</p> <h3 class="fn"><a name="setItalic"></a>void QTextEdit::setItalic ( bool <i>i</i> )</h3> <p>Use <a href="qtextedit.html#setFontItalic">setFontItalic</a>() instead.</p> <p>See also <a href="qtextedit-qt3.html#italic">italic</a>().</p> <h3 class="fn"><a name="setModified"></a>void QTextEdit::setModified ( bool <i>m</i> = true )&nbsp;&nbsp;<tt> [slot]</tt></h3> <p>Use document-&gt;setModified() instead.</p> <p>See also <a href="qtextedit-qt3.html#isModified">isModified</a>().</p> <h3 class="fn"><a name="setPointSize"></a>void QTextEdit::setPointSize ( int <i>size</i> )</h3> <p>Use <a href="qtextedit.html#setFontPointSize">setFontPointSize</a>() instead.</p> <p>See also <a href="qtextedit-qt3.html#pointSize">pointSize</a>().</p> <h3 class="fn"><a name="setTextFormat"></a>void QTextEdit::setTextFormat ( <a href="qt.html#TextFormat-enum">Qt::TextFormat</a> <i>f</i> )</h3> <p>Sets the text format to format <i>f</i>.</p> <p>See also <a href="qtextedit-qt3.html#textFormat">textFormat</a>().</p> <h3 class="fn"><a name="setUnderline"></a>void QTextEdit::setUnderline ( bool <i>b</i> )</h3> <p>Use <a href="qtextedit.html#setFontUnderline">setFontUnderline</a>() instead.</p> <p>See also <a href="qtextedit-qt3.html#underline">underline</a>().</p> <h3 class="fn"><a name="sync"></a>void QTextEdit::sync ()</h3> <p>Does nothing.</p> <h3 class="fn"><a name="text"></a><a href="qstring.html">QString</a> QTextEdit::text () const</h3> <p>Returns all the text in the text edit as plain text.</p> <p>See also <a href="qtextedit.html#setText">setText</a>().</p> <h3 class="fn"><a name="textFormat"></a><a href="qt.html#TextFormat-enum">Qt::TextFormat</a> QTextEdit::textFormat () const</h3> <p>Returns the text format.</p> <p>See also <a href="qtextedit-qt3.html#setTextFormat">setTextFormat</a>().</p> <h3 class="fn"><a name="underline"></a>bool QTextEdit::underline () const</h3> <p>Use <a href="qtextedit.html#fontUnderline">fontUnderline</a>() instead.</p> <p>See also <a href="qtextedit-qt3.html#setUnderline">setUnderline</a>().</p> <h3 class="fn"><a name="undo-2"></a>void QTextEdit::undo () const</h3> <p>This is an overloaded member function, provided for convenience.</p> <p>Use the non-const overload instead.</p> <p /><address><hr /><div align="center"> <table width="100%" cellspacing="0" border="0"><tr class="address"> <td width="30%" align="left">Copyright &copy; 2008 Nokia</td> <td width="40%" align="center"><a href="trademarks.html">Trademarks</a></td> <td width="30%" align="right"><div align="right">Qt 4.4.3</div></td> </tr></table></div></address></body> </html>
zenodo/modules/theme/templates/zenodo_theme/css.html
tiborsimko/zenodo
{# # This file is part of Zenodo. # Copyright (C) 2015, 2016 CERN. # # Zenodo is free software; you can redistribute it # and/or modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # Zenodo is distributed in the hope that it will be # useful, but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with Zenodo; if not, write to the # Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, # MA 02111-1307, USA. # # In applying this license, CERN does not # waive the privileges and immunities granted to it by virtue of its status # as an Intergovernmental Organization or submit itself to any jurisdiction. -#} <link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,100,italic" rel="stylesheet"> {%- assets "zenodo_theme_css" %} <link href="{{ ASSET_URL }}" rel="stylesheet"> {%- endassets %} <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> <!--[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]-->
website/octopress-grain/theme/includes/sidebar.html
bcopy/raspbuggy
<% if (page.sidebar != false) { %> <aside class="sidebar"> <% (page.asides ?: site.default_asides).each { aside -> %> ${ include aside } <% } %> </aside> <% } %>
tbb-lib/examples/GettingStarted/index.html
rutgers-apl/Atomicity-Violation-Detector
<HTML> <BODY> <H2>Overview</H2> This directory contains the examples referenced by the Intel&reg; Threading Building Blocks Getting Started Guide. <H2>Directories</H2> <DL> <DT><A HREF="sub_string_finder/index.html">sub_string_finder</A> <DD>Finds largest matching substrings. </DL> <HR> <A HREF="../index.html">Up to parent directory</A> <p></p> Copyright &copy; 2005-2014 Intel Corporation. All Rights Reserved. <P></P> Intel is a registered trademark or trademark of Intel Corporation or its subsidiaries in the United States and other countries. <p></p> * Other names and brands may be claimed as the property of others. </BODY> </HTML>
sketchbook/libraries/Ketai/reference/ketai/data/analyzer/IKetaiAnalyzer.html
unoduetre/relaksator
<!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_31) on Wed May 23 12:12:08 CDT 2012 --> <TITLE> IKetaiAnalyzer </TITLE> <META NAME="date" CONTENT="2012-05-23"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="IKetaiAnalyzer"; } } </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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/IKetaiAnalyzer.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-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;<A HREF="../../../ketai/data/analyzer/FaceAnalyzer.html" title="class in ketai.data.analyzer"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../ketai/data/analyzer/MotionAnalyzer.html" title="class in ketai.data.analyzer"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?ketai/data/analyzer/IKetaiAnalyzer.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="IKetaiAnalyzer.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"> ketai.data.analyzer</FONT> <BR> Interface IKetaiAnalyzer</H2> <DL> <DT><B>All Known Implementing Classes:</B> <DD><A HREF="../../../ketai/data/analyzer/AbstractKetaiAnalyzer.html" title="class in ketai.data.analyzer">AbstractKetaiAnalyzer</A>, <A HREF="../../../ketai/data/analyzer/FaceAnalyzer.html" title="class in ketai.data.analyzer">FaceAnalyzer</A>, <A HREF="../../../ketai/data/analyzer/MotionAnalyzer.html" title="class in ketai.data.analyzer">MotionAnalyzer</A>, <A HREF="../../../ketai/data/analyzer/SensorAnalyzer.html" title="class in ketai.data.analyzer">SensorAnalyzer</A></DD> </DL> <HR> <DL> <DT><PRE>public interface <B>IKetaiAnalyzer</B></DL> </PRE> <P> <HR> <P> <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Method Summary</B></FONT></TH> </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="../../../ketai/data/analyzer/IKetaiAnalyzer.html#analyzeData(java.lang.Object)">analyzeData</A></B>(java.lang.Object&nbsp;dataSet)</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;java.lang.String</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../ketai/data/analyzer/IKetaiAnalyzer.html#getAnalysisDescription()">getAnalysisDescription</A></B>()</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;java.lang.String</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../ketai/data/analyzer/IKetaiAnalyzer.html#getAnalyzerName()">getAnalyzerName</A></B>()</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;java.lang.Class&lt;?&gt;</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../ketai/data/analyzer/IKetaiAnalyzer.html#getServiceProviderClass()">getServiceProviderClass</A></B>()</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;java.lang.String</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../ketai/data/analyzer/IKetaiAnalyzer.html#getTableCreationString()">getTableCreationString</A></B>()</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="../../../ketai/data/analyzer/IKetaiAnalyzer.html#registerKetaiEventListener(ketai.data.IKetaiEventListener)">registerKetaiEventListener</A></B>(<A HREF="../../../ketai/data/IKetaiEventListener.html" title="interface in ketai.data">IKetaiEventListener</A>&nbsp;_ketaiEventListener)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <!-- ============ METHOD DETAIL ========== --> <A NAME="method_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Method Detail</B></FONT></TH> </TR> </TABLE> <A NAME="getAnalyzerName()"><!-- --></A><H3> getAnalyzerName</H3> <PRE> java.lang.String <B>getAnalyzerName</B>()</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="getAnalysisDescription()"><!-- --></A><H3> getAnalysisDescription</H3> <PRE> java.lang.String <B>getAnalysisDescription</B>()</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="analyzeData(java.lang.Object)"><!-- --></A><H3> analyzeData</H3> <PRE> void <B>analyzeData</B>(java.lang.Object&nbsp;dataSet)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="getTableCreationString()"><!-- --></A><H3> getTableCreationString</H3> <PRE> java.lang.String <B>getTableCreationString</B>()</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="getServiceProviderClass()"><!-- --></A><H3> getServiceProviderClass</H3> <PRE> java.lang.Class&lt;?&gt; <B>getServiceProviderClass</B>()</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="registerKetaiEventListener(ketai.data.IKetaiEventListener)"><!-- --></A><H3> registerKetaiEventListener</H3> <PRE> void <B>registerKetaiEventListener</B>(<A HREF="../../../ketai/data/IKetaiEventListener.html" title="interface in ketai.data">IKetaiEventListener</A>&nbsp;_ketaiEventListener)</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=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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/IKetaiAnalyzer.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-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;<A HREF="../../../ketai/data/analyzer/FaceAnalyzer.html" title="class in ketai.data.analyzer"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../ketai/data/analyzer/MotionAnalyzer.html" title="class in ketai.data.analyzer"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?ketai/data/analyzer/IKetaiAnalyzer.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="IKetaiAnalyzer.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>
openephyra-0.1.2/doc/info/ephyra/search/searchers/package-tree.html
Eric-LeiYang/Openephyra
<!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_0) on Wed Oct 05 21:20:10 EDT 2011 --> <TITLE> info.ephyra.search.searchers Class Hierarchy </TITLE> <META NAME="date" CONTENT="2011-10-05"> <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="info.ephyra.search.searchers Class Hierarchy"; } } </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="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT>&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;<A HREF="../../../../info/ephyra/search/package-tree.html"><B>PREV</B></A>&nbsp; &nbsp;<A HREF="../../../../info/ephyra/trec/package-tree.html"><B>NEXT</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?info/ephyra/search/searchers/package-tree.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-tree.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> Hierarchy For Package info.ephyra.search.searchers </H2> </CENTER> <DL> <DT><B>Package Hierarchies:</B><DD><A HREF="../../../../overview-tree.html">All Packages</A></DL> <HR> <H2> Class Hierarchy </H2> <UL> <LI TYPE="circle">java.lang.Object<UL> <LI TYPE="circle">java.lang.Thread (implements java.lang.Runnable) <UL> <LI TYPE="circle">info.ephyra.search.searchers.<A HREF="../../../../info/ephyra/search/searchers/Searcher.html" title="class in info.ephyra.search.searchers"><B>Searcher</B></A><UL> <LI TYPE="circle">info.ephyra.search.searchers.<A HREF="../../../../info/ephyra/search/searchers/KnowledgeAnnotator.html" title="class in info.ephyra.search.searchers"><B>KnowledgeAnnotator</B></A><UL> <LI TYPE="circle">info.ephyra.search.searchers.<A HREF="../../../../info/ephyra/search/searchers/WikipediaKA.html" title="class in info.ephyra.search.searchers"><B>WikipediaKA</B></A><LI TYPE="circle">info.ephyra.search.searchers.<A HREF="../../../../info/ephyra/search/searchers/WorldFactbookKA.html" title="class in info.ephyra.search.searchers"><B>WorldFactbookKA</B></A></UL> <LI TYPE="circle">info.ephyra.search.searchers.<A HREF="../../../../info/ephyra/search/searchers/KnowledgeMiner.html" title="class in info.ephyra.search.searchers"><B>KnowledgeMiner</B></A><UL> <LI TYPE="circle">info.ephyra.search.searchers.<A HREF="../../../../info/ephyra/search/searchers/BingKM.html" title="class in info.ephyra.search.searchers"><B>BingKM</B></A><LI TYPE="circle">info.ephyra.search.searchers.<A HREF="../../../../info/ephyra/search/searchers/GoogleKM.html" title="class in info.ephyra.search.searchers"><B>GoogleKM</B></A><LI TYPE="circle">info.ephyra.search.searchers.<A HREF="../../../../info/ephyra/search/searchers/IndriDocumentKM.html" title="class in info.ephyra.search.searchers"><B>IndriDocumentKM</B></A><LI TYPE="circle">info.ephyra.search.searchers.<A HREF="../../../../info/ephyra/search/searchers/IndriKM.html" title="class in info.ephyra.search.searchers"><B>IndriKM</B></A><LI TYPE="circle">info.ephyra.search.searchers.<A HREF="../../../../info/ephyra/search/searchers/YahooKM.html" title="class in info.ephyra.search.searchers"><B>YahooKM</B></A></UL> </UL> </UL> </UL> </UL> <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="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT>&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;<A HREF="../../../../info/ephyra/search/package-tree.html"><B>PREV</B></A>&nbsp; &nbsp;<A HREF="../../../../info/ephyra/trec/package-tree.html"><B>NEXT</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?info/ephyra/search/searchers/package-tree.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-tree.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>
jbpm-designer-client/src/main/resources/org/jbpm/designer/public/css/uberfire-workbench.css
tsurdilo/jbpm-designer
/* * Copyright 2010 Red Hat, Inc. and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* Loading indicator at Startup */ #loading { position: absolute; left: 45%; top: 40%; padding: 2px; z-index: 20001; height: auto; border: 1px solid #ccc; } #loading a { color: #225588; } #loading .loading-indicator { background: white; color: #444; font: bold 13px tahoma, arial, helvetica; padding: 10px; margin: 0; height: auto; } #loading-msg { font: normal 10px arial, tahoma, sans-serif; } /* Workbench styles */ .workbenchFocusIndicator { background-color: #dcdcdc; width: 100%; } .workbenchFocusIndicatorHasFocus { background-color: #e0f020; width: 100%; } .workbenchTabPanelBottom { overflow: hidden; padding: 6px; width: 100%; height: 100%; } .gwt-TabLayoutPanelContentContainer { border: 0px !important; padding: 2px !important; } .gwt-TabLayoutPanelContent { border: 0px !important; } .dropTarget-highlight { z-index: 100000; background-color: #a0a0e0; opacity: 0.50; filter: alpha(opacity = 50); } .dropTarget-compass { z-index: 200000; border-style: none; line-height: 0px; } .gwt-MenuItem-disabled { color: #cdcdcd !important; } .toolBar { cursor: default; height: 36px; width: 100%; border-spacing: 0px; background: #c0c0c0; } .toolBarButton-up, .toolBarButton-up-hovering, .toolBarButton-up-disabled, .toolBarButton-down, .toolBarButton-hovering, .toolBarButton-disabled { text-decoration: none; border-spacing: 0px; padding-top: 5px; padding-left: 4px; padding-right: 4px; padding-bottom: 0px; } .toolBarButton-up { cursor: pointer; cursor: hand; } .toolBarButton-hovering { cursor: pointer; cursor: hand; } .toolBarButton-up-disabled { cursor: default; opacity: .5; filter: alpha(opacity = 45); zoom: 1; } .toolBarButton-down { cursor: pointer; cursor: hand; } .toolBarButton-down-hovering { cursor: pointer; cursor: hand; } .toolBarButton-down-disabled { cursor: default; opacity: 0.5; filter: alpha(opacity = 45); zoom: 1; } .statusBar { cursor: default; height: 36px; width: 100%; border-spacing: 0px; background: #c0c0c0; padding-top: 0px; padding-bottom: 0px; padding-left: 2px; padding-right: 2px; } .tabBarControlsContainer { background-color: #cccccc; height: 100%; padding-top: 4px; padding-left: 3px; padding-right: 3px; } .tabBarControlMaximize { height: 24px; width: 24px; background: url("../images/maximizePanel.png") no-repeat; background-position: -24px 0; } .tabBarControlMaximize:hover { background-position: 0px 0; } .tabBarControlMinimize { height: 24px; width: 24px; background: url("../images/minimizePanel.png") no-repeat; background-position: -24px 0; } .tabBarControlMinimize:hover { background-position: 0px 0; } .navbar-fixed-top, .navbar-fixed-bottom { position: static !important; }
hadoop/docs/api/org/apache/hadoop/security/class-use/UserGroupInformation.html
determinedcheetahs/cheetah_juniper
<!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_31) on Mon Jul 22 15:25:23 PDT 2013 --> <TITLE> Uses of Class org.apache.hadoop.security.UserGroupInformation (Hadoop 1.2.1 API) </TITLE> <META NAME="date" CONTENT="2013-07-22"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.hadoop.security.UserGroupInformation (Hadoop 1.2.1 API)"; } } </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"> <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&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-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;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/hadoop/security//class-useUserGroupInformation.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="UserGroupInformation.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 Class<br>org.apache.hadoop.security.UserGroupInformation</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="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.hadoop.fs"><B>org.apache.hadoop.fs</B></A></TD> <TD>An abstract file system API.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.hadoop.ipc"><B>org.apache.hadoop.ipc</B></A></TD> <TD>Tools to help define network clients and servers.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.hadoop.mapreduce"><B>org.apache.hadoop.mapreduce</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.hadoop.mapreduce.security.token"><B>org.apache.hadoop.mapreduce.security.token</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.hadoop.security"><B>org.apache.hadoop.security</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.hadoop.security.authorize"><B>org.apache.hadoop.security.authorize</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.hadoop.security.token"><B>org.apache.hadoop.security.token</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.hadoop.security.token.delegation"><B>org.apache.hadoop.security.token.delegation</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.hadoop.fs"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A> in <A HREF="../../../../../org/apache/hadoop/fs/package-summary.html">org.apache.hadoop.fs</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../org/apache/hadoop/fs/package-summary.html">org.apache.hadoop.fs</A> with parameters of type <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;void</CODE></FONT></TD> <TD><CODE><B>FileSystem.</B><B><A HREF="../../../../../org/apache/hadoop/fs/FileSystem.html#closeAllForUGI(org.apache.hadoop.security.UserGroupInformation)">closeAllForUGI</A></B>(<A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A>&nbsp;ugi)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Close all cached filesystems for a given UGI.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.hadoop.ipc"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A> in <A HREF="../../../../../org/apache/hadoop/ipc/package-summary.html">org.apache.hadoop.ipc</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Fields in <A HREF="../../../../../org/apache/hadoop/ipc/package-summary.html">org.apache.hadoop.ipc</A> declared as <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A></CODE></FONT></TD> <TD><CODE><B>Server.Connection.</B><B><A HREF="../../../../../org/apache/hadoop/ipc/Server.Connection.html#attemptingUser">attemptingUser</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../org/apache/hadoop/ipc/package-summary.html">org.apache.hadoop.ipc</A> with parameters of type <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A></FONT></TH> </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>Server.</B><B><A HREF="../../../../../org/apache/hadoop/ipc/Server.html#authorize(org.apache.hadoop.security.UserGroupInformation, org.apache.hadoop.ipc.ConnectionHeader, java.net.InetAddress)">authorize</A></B>(<A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A>&nbsp;user, org.apache.hadoop.ipc.ConnectionHeader&nbsp;connection, <A HREF="http://java.sun.com/javase/6/docs/api/java/net/InetAddress.html?is-external=true" title="class or interface in java.net">InetAddress</A>&nbsp;addr)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Authorize the incoming client connection.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>[]</CODE></FONT></TD> <TD><CODE><B>RPC.</B><B><A HREF="../../../../../org/apache/hadoop/ipc/RPC.html#call(java.lang.reflect.Method, java.lang.Object[][], java.net.InetSocketAddress[], org.apache.hadoop.security.UserGroupInformation, org.apache.hadoop.conf.Configuration)">call</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/reflect/Method.html?is-external=true" title="class or interface in java.lang.reflect">Method</A>&nbsp;method, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>[][]&nbsp;params, <A HREF="http://java.sun.com/javase/6/docs/api/java/net/InetSocketAddress.html?is-external=true" title="class or interface in java.net">InetSocketAddress</A>[]&nbsp;addrs, <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A>&nbsp;ticket, <A HREF="../../../../../org/apache/hadoop/conf/Configuration.html" title="class in org.apache.hadoop.conf">Configuration</A>&nbsp;conf)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Expert: Make multiple, parallel calls to a set of servers.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../org/apache/hadoop/io/Writable.html" title="interface in org.apache.hadoop.io">Writable</A>[]</CODE></FONT></TD> <TD><CODE><B>Client.</B><B><A HREF="../../../../../org/apache/hadoop/ipc/Client.html#call(org.apache.hadoop.io.Writable[], java.net.InetSocketAddress[], java.lang.Class, org.apache.hadoop.security.UserGroupInformation)">call</A></B>(<A HREF="../../../../../org/apache/hadoop/io/Writable.html" title="interface in org.apache.hadoop.io">Writable</A>[]&nbsp;params, <A HREF="http://java.sun.com/javase/6/docs/api/java/net/InetSocketAddress.html?is-external=true" title="class or interface in java.net">InetSocketAddress</A>[]&nbsp;addresses, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;?&gt;&nbsp;protocol, <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A>&nbsp;ticket)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>Deprecated.</B>&nbsp;<I>Use <A HREF="../../../../../org/apache/hadoop/ipc/Client.html#call(org.apache.hadoop.io.Writable[], java.net.InetSocketAddress[], java.lang.Class, org.apache.hadoop.security.UserGroupInformation, org.apache.hadoop.conf.Configuration)"><CODE>Client.call(Writable[], InetSocketAddress[], Class, UserGroupInformation, Configuration)</CODE></A> instead</I></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../org/apache/hadoop/io/Writable.html" title="interface in org.apache.hadoop.io">Writable</A>[]</CODE></FONT></TD> <TD><CODE><B>Client.</B><B><A HREF="../../../../../org/apache/hadoop/ipc/Client.html#call(org.apache.hadoop.io.Writable[], java.net.InetSocketAddress[], java.lang.Class, org.apache.hadoop.security.UserGroupInformation, org.apache.hadoop.conf.Configuration)">call</A></B>(<A HREF="../../../../../org/apache/hadoop/io/Writable.html" title="interface in org.apache.hadoop.io">Writable</A>[]&nbsp;params, <A HREF="http://java.sun.com/javase/6/docs/api/java/net/InetSocketAddress.html?is-external=true" title="class or interface in java.net">InetSocketAddress</A>[]&nbsp;addresses, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;?&gt;&nbsp;protocol, <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A>&nbsp;ticket, <A HREF="../../../../../org/apache/hadoop/conf/Configuration.html" title="class in org.apache.hadoop.conf">Configuration</A>&nbsp;conf)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Makes a set of calls in parallel.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../org/apache/hadoop/io/Writable.html" title="interface in org.apache.hadoop.io">Writable</A></CODE></FONT></TD> <TD><CODE><B>Client.</B><B><A HREF="../../../../../org/apache/hadoop/ipc/Client.html#call(org.apache.hadoop.io.Writable, java.net.InetSocketAddress, java.lang.Class, org.apache.hadoop.security.UserGroupInformation, int)">call</A></B>(<A HREF="../../../../../org/apache/hadoop/io/Writable.html" title="interface in org.apache.hadoop.io">Writable</A>&nbsp;param, <A HREF="http://java.sun.com/javase/6/docs/api/java/net/InetSocketAddress.html?is-external=true" title="class or interface in java.net">InetSocketAddress</A>&nbsp;addr, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;?&gt;&nbsp;protocol, <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A>&nbsp;ticket, int&nbsp;rpcTimeout)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>Deprecated.</B>&nbsp;<I>Use <A HREF="../../../../../org/apache/hadoop/ipc/Client.html#call(org.apache.hadoop.io.Writable, org.apache.hadoop.ipc.Client.ConnectionId)"><CODE>Client.call(Writable, ConnectionId)</CODE></A> instead</I></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../org/apache/hadoop/io/Writable.html" title="interface in org.apache.hadoop.io">Writable</A></CODE></FONT></TD> <TD><CODE><B>Client.</B><B><A HREF="../../../../../org/apache/hadoop/ipc/Client.html#call(org.apache.hadoop.io.Writable, java.net.InetSocketAddress, java.lang.Class, org.apache.hadoop.security.UserGroupInformation, int, org.apache.hadoop.conf.Configuration)">call</A></B>(<A HREF="../../../../../org/apache/hadoop/io/Writable.html" title="interface in org.apache.hadoop.io">Writable</A>&nbsp;param, <A HREF="http://java.sun.com/javase/6/docs/api/java/net/InetSocketAddress.html?is-external=true" title="class or interface in java.net">InetSocketAddress</A>&nbsp;addr, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;?&gt;&nbsp;protocol, <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A>&nbsp;ticket, int&nbsp;rpcTimeout, <A HREF="../../../../../org/apache/hadoop/conf/Configuration.html" title="class in org.apache.hadoop.conf">Configuration</A>&nbsp;conf)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Make a call, passing <code>param</code>, to the IPC server running at <code>address</code> which is servicing the <code>protocol</code> protocol, with the <code>ticket</code> credentials, <code>rpcTimeout</code> as timeout and <code>conf</code> as configuration for this connection, returning the value.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../org/apache/hadoop/io/Writable.html" title="interface in org.apache.hadoop.io">Writable</A></CODE></FONT></TD> <TD><CODE><B>Client.</B><B><A HREF="../../../../../org/apache/hadoop/ipc/Client.html#call(org.apache.hadoop.io.Writable, java.net.InetSocketAddress, org.apache.hadoop.security.UserGroupInformation)">call</A></B>(<A HREF="../../../../../org/apache/hadoop/io/Writable.html" title="interface in org.apache.hadoop.io">Writable</A>&nbsp;param, <A HREF="http://java.sun.com/javase/6/docs/api/java/net/InetSocketAddress.html?is-external=true" title="class or interface in java.net">InetSocketAddress</A>&nbsp;addr, <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A>&nbsp;ticket)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>Deprecated.</B>&nbsp;<I>Use <A HREF="../../../../../org/apache/hadoop/ipc/Client.html#call(org.apache.hadoop.io.Writable, org.apache.hadoop.ipc.Client.ConnectionId)"><CODE>Client.call(Writable, ConnectionId)</CODE></A> instead</I></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../org/apache/hadoop/ipc/VersionedProtocol.html" title="interface in org.apache.hadoop.ipc">VersionedProtocol</A></CODE></FONT></TD> <TD><CODE><B>RPC.</B><B><A HREF="../../../../../org/apache/hadoop/ipc/RPC.html#getProxy(java.lang.Class, long, java.net.InetSocketAddress, org.apache.hadoop.security.UserGroupInformation, org.apache.hadoop.conf.Configuration, javax.net.SocketFactory)">getProxy</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../../../org/apache/hadoop/ipc/VersionedProtocol.html" title="interface in org.apache.hadoop.ipc">VersionedProtocol</A>&gt;&nbsp;protocol, long&nbsp;clientVersion, <A HREF="http://java.sun.com/javase/6/docs/api/java/net/InetSocketAddress.html?is-external=true" title="class or interface in java.net">InetSocketAddress</A>&nbsp;addr, <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A>&nbsp;ticket, <A HREF="../../../../../org/apache/hadoop/conf/Configuration.html" title="class in org.apache.hadoop.conf">Configuration</A>&nbsp;conf, <A HREF="http://java.sun.com/javase/6/docs/api/javax/net/SocketFactory.html?is-external=true" title="class or interface in javax.net">SocketFactory</A>&nbsp;factory)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Construct a client-side proxy object that implements the named protocol, talking to a server at the named address.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../org/apache/hadoop/ipc/VersionedProtocol.html" title="interface in org.apache.hadoop.ipc">VersionedProtocol</A></CODE></FONT></TD> <TD><CODE><B>RPC.</B><B><A HREF="../../../../../org/apache/hadoop/ipc/RPC.html#getProxy(java.lang.Class, long, java.net.InetSocketAddress, org.apache.hadoop.security.UserGroupInformation, org.apache.hadoop.conf.Configuration, javax.net.SocketFactory, int)">getProxy</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../../../org/apache/hadoop/ipc/VersionedProtocol.html" title="interface in org.apache.hadoop.ipc">VersionedProtocol</A>&gt;&nbsp;protocol, long&nbsp;clientVersion, <A HREF="http://java.sun.com/javase/6/docs/api/java/net/InetSocketAddress.html?is-external=true" title="class or interface in java.net">InetSocketAddress</A>&nbsp;addr, <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A>&nbsp;ticket, <A HREF="../../../../../org/apache/hadoop/conf/Configuration.html" title="class in org.apache.hadoop.conf">Configuration</A>&nbsp;conf, <A HREF="http://java.sun.com/javase/6/docs/api/javax/net/SocketFactory.html?is-external=true" title="class or interface in javax.net">SocketFactory</A>&nbsp;factory, int&nbsp;rpcTimeout)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Construct a client-side proxy object that implements the named protocol, talking to a server at the named address.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../org/apache/hadoop/ipc/VersionedProtocol.html" title="interface in org.apache.hadoop.ipc">VersionedProtocol</A></CODE></FONT></TD> <TD><CODE><B>RPC.</B><B><A HREF="../../../../../org/apache/hadoop/ipc/RPC.html#getProxy(java.lang.Class, long, java.net.InetSocketAddress, org.apache.hadoop.security.UserGroupInformation, org.apache.hadoop.conf.Configuration, javax.net.SocketFactory, int, org.apache.hadoop.io.retry.RetryPolicy, boolean)">getProxy</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../../../org/apache/hadoop/ipc/VersionedProtocol.html" title="interface in org.apache.hadoop.ipc">VersionedProtocol</A>&gt;&nbsp;protocol, long&nbsp;clientVersion, <A HREF="http://java.sun.com/javase/6/docs/api/java/net/InetSocketAddress.html?is-external=true" title="class or interface in java.net">InetSocketAddress</A>&nbsp;addr, <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A>&nbsp;ticket, <A HREF="../../../../../org/apache/hadoop/conf/Configuration.html" title="class in org.apache.hadoop.conf">Configuration</A>&nbsp;conf, <A HREF="http://java.sun.com/javase/6/docs/api/javax/net/SocketFactory.html?is-external=true" title="class or interface in javax.net">SocketFactory</A>&nbsp;factory, int&nbsp;rpcTimeout, <A HREF="../../../../../org/apache/hadoop/io/retry/RetryPolicy.html" title="interface in org.apache.hadoop.io.retry">RetryPolicy</A>&nbsp;connectionRetryPolicy, boolean&nbsp;checkVersion)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Construct a client-side proxy object that implements the named protocol, talking to a server at the named address.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.hadoop.mapreduce"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A> in <A HREF="../../../../../org/apache/hadoop/mapreduce/package-summary.html">org.apache.hadoop.mapreduce</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Fields in <A HREF="../../../../../org/apache/hadoop/mapreduce/package-summary.html">org.apache.hadoop.mapreduce</A> declared as <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A></CODE></FONT></TD> <TD><CODE><B>JobContext.</B><B><A HREF="../../../../../org/apache/hadoop/mapreduce/JobContext.html#ugi">ugi</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The UserGroupInformation object that has a reference to the current user</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.hadoop.mapreduce.security.token"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A> in <A HREF="../../../../../org/apache/hadoop/mapreduce/security/token/package-summary.html">org.apache.hadoop.mapreduce.security.token</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../org/apache/hadoop/mapreduce/security/token/package-summary.html">org.apache.hadoop.mapreduce.security.token</A> that return <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A></CODE></FONT></TD> <TD><CODE><B>JobTokenIdentifier.</B><B><A HREF="../../../../../org/apache/hadoop/mapreduce/security/token/JobTokenIdentifier.html#getUser()">getUser</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Get the Ugi with the username encoded in the token identifier</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.hadoop.security"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A> in <A HREF="../../../../../org/apache/hadoop/security/package-summary.html">org.apache.hadoop.security</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../org/apache/hadoop/security/package-summary.html">org.apache.hadoop.security</A> that return <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A></CODE></FONT></TD> <TD><CODE><B>UserGroupInformation.</B><B><A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html#createProxyUser(java.lang.String, org.apache.hadoop.security.UserGroupInformation)">createProxyUser</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;user, <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A>&nbsp;realUser)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Create a proxy user using username of the effective user and the ugi of the real user.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A></CODE></FONT></TD> <TD><CODE><B>UserGroupInformation.</B><B><A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html#createProxyUserForTesting(java.lang.String, org.apache.hadoop.security.UserGroupInformation, java.lang.String[])">createProxyUserForTesting</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;user, <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A>&nbsp;realUser, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>[]&nbsp;userGroups)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Create a proxy user UGI for testing HDFS and MapReduce</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A></CODE></FONT></TD> <TD><CODE><B>UserGroupInformation.</B><B><A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html#createRemoteUser(java.lang.String)">createRemoteUser</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;user)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Create a user from a login name.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A></CODE></FONT></TD> <TD><CODE><B>UserGroupInformation.</B><B><A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html#createUserForTesting(java.lang.String, java.lang.String[])">createUserForTesting</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;user, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>[]&nbsp;userGroups)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Create a UGI for testing HDFS and MapReduce</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A></CODE></FONT></TD> <TD><CODE><B>UserGroupInformation.</B><B><A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html#getCurrentUser()">getCurrentUser</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Return the current user, including any doAs in the current stack.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A></CODE></FONT></TD> <TD><CODE><B>UserGroupInformation.</B><B><A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html#getLoginUser()">getLoginUser</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Get the currently logged in user.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A></CODE></FONT></TD> <TD><CODE><B>UserGroupInformation.</B><B><A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html#getRealUser()">getRealUser</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;get RealUser (vs.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A></CODE></FONT></TD> <TD><CODE><B>UserGroupInformation.</B><B><A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html#loginUserFromKeytabAndReturnUGI(java.lang.String, java.lang.String)">loginUserFromKeytabAndReturnUGI</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;user, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;path)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Log a user in from a keytab file.</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../org/apache/hadoop/security/package-summary.html">org.apache.hadoop.security</A> with parameters of type <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A></CODE></FONT></TD> <TD><CODE><B>UserGroupInformation.</B><B><A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html#createProxyUser(java.lang.String, org.apache.hadoop.security.UserGroupInformation)">createProxyUser</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;user, <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A>&nbsp;realUser)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Create a proxy user using username of the effective user and the ugi of the real user.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A></CODE></FONT></TD> <TD><CODE><B>UserGroupInformation.</B><B><A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html#createProxyUserForTesting(java.lang.String, org.apache.hadoop.security.UserGroupInformation, java.lang.String[])">createProxyUserForTesting</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;user, <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A>&nbsp;realUser, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>[]&nbsp;userGroups)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Create a proxy user UGI for testing HDFS and MapReduce</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.hadoop.security.authorize"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A> in <A HREF="../../../../../org/apache/hadoop/security/authorize/package-summary.html">org.apache.hadoop.security.authorize</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../org/apache/hadoop/security/authorize/package-summary.html">org.apache.hadoop.security.authorize</A> with parameters of type <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ServiceAuthorizationManager.</B><B><A HREF="../../../../../org/apache/hadoop/security/authorize/ServiceAuthorizationManager.html#authorize(org.apache.hadoop.security.UserGroupInformation, java.lang.Class, org.apache.hadoop.conf.Configuration, java.net.InetAddress)">authorize</A></B>(<A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A>&nbsp;user, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;?&gt;&nbsp;protocol, <A HREF="../../../../../org/apache/hadoop/conf/Configuration.html" title="class in org.apache.hadoop.conf">Configuration</A>&nbsp;conf, <A HREF="http://java.sun.com/javase/6/docs/api/java/net/InetAddress.html?is-external=true" title="class or interface in java.net">InetAddress</A>&nbsp;addr)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Authorize the user to access the protocol being used.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;void</CODE></FONT></TD> <TD><CODE><B>ProxyUsers.</B><B><A HREF="../../../../../org/apache/hadoop/security/authorize/ProxyUsers.html#authorize(org.apache.hadoop.security.UserGroupInformation, java.lang.String, org.apache.hadoop.conf.Configuration)">authorize</A></B>(<A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A>&nbsp;user, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;remoteAddress, <A HREF="../../../../../org/apache/hadoop/conf/Configuration.html" title="class in org.apache.hadoop.conf">Configuration</A>&nbsp;newConf)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Authorize the superuser which is doing doAs</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>AccessControlList.</B><B><A HREF="../../../../../org/apache/hadoop/security/authorize/AccessControlList.html#isUserAllowed(org.apache.hadoop.security.UserGroupInformation)">isUserAllowed</A></B>(<A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A>&nbsp;ugi)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.hadoop.security.token"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A> in <A HREF="../../../../../org/apache/hadoop/security/token/package-summary.html">org.apache.hadoop.security.token</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../org/apache/hadoop/security/token/package-summary.html">org.apache.hadoop.security.token</A> that return <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>abstract &nbsp;<A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A></CODE></FONT></TD> <TD><CODE><B>TokenIdentifier.</B><B><A HREF="../../../../../org/apache/hadoop/security/token/TokenIdentifier.html#getUser()">getUser</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Get the Ugi with the username encoded in the token identifier</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.hadoop.security.token.delegation"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A> in <A HREF="../../../../../org/apache/hadoop/security/token/delegation/package-summary.html">org.apache.hadoop.security.token.delegation</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../org/apache/hadoop/security/token/delegation/package-summary.html">org.apache.hadoop.security.token.delegation</A> that return <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security">UserGroupInformation</A></CODE></FONT></TD> <TD><CODE><B>AbstractDelegationTokenIdentifier.</B><B><A HREF="../../../../../org/apache/hadoop/security/token/delegation/AbstractDelegationTokenIdentifier.html#getUser()">getUser</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Get the username encoded in the token identifier</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"> <A HREF="../../../../../org/apache/hadoop/security/UserGroupInformation.html" title="class in org.apache.hadoop.security"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&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-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;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/hadoop/security//class-useUserGroupInformation.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="UserGroupInformation.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> Copyright &copy; 2009 The Apache Software Foundation </BODY> </HTML>
themes/hugo-foundation/static/src/pages/index.html
tristan0x/docs-base
<section class="hero"> <div class="row"> <div class="medium-6 large-4 columns"> <h1>Build, Ship, Run</h1> <p>Docker is an open platform for developers and sysadmins to build, ship and run distributed applications anywhere.</p> </div> <div class="medium-5 large-4 columns"> <div class="hero-form"> <h4>Get started with Docker</h4> <input type="text" placeholder="Username" /> <input type="text" placeholder="Password" /> <input type="text" placeholder="Email" /> <a href="#" class="button secondary">Get Started</a> <a href="#">Learn More</a> </div> </div> </div> </section> <section class="customer-and-news row"> <div class="medium-4 columns"> <ul div class="small-block-grid-2"> <li><img src="assets/images/logo-yelp.png"></li> <li><img src="assets/images/logo-gilt.png"></li> <li><img src="assets/images/logo-bbc.png"></li> <li><img src="assets/images/logo-groupon.png"></li> </ul> </div> <div class="medium-8 columns"> <div class="news-item divider"> <p class="news-item-title">Announcing Docker 1.6</p> <p class="news-item-description">Unified release across Docker Engine 1.6, Registry 2.0 and Orchestration Tools accelerate developer experience and enhance sysadmin management.</p> <a href="#">Learn More</a> </div> </div> </section> <!-- BSR SECTION --> <section class="bsr-section"> <div class="row"> <div class="small-12 columns"> <h2>What is Docker?</h2> <p>Docker is a platform of open source and commercial software tool.</p> </div> <div class="medium-4 columns wow fadeInUp" data-wow-offset="40" data-wow-duration="1.5s"> <div class="bsr-item build-item"> <img class="build" src="assets/images/build.svg"> <h2>Build</h2> <p>Docker makes setting up dev environments fast, easy.</p> <a class="show-for-medium-up" href="#build">More</a> </div> </div> <div class="medium-4 columns wow fadeInUp" data-wow-offset="40" data-wow-delay="200ms" data-wow-duration="1.5s"> <div class="bsr-item build-item"> <img class="ship" src="assets/images/ship.svg"> <h2>Ship</h2> <p>Docker allows developers to easily package their apps. </p> <a class="show-for-medium-up" href="#ship">More</a> </div> </div> <div class="medium-4 columns wow fadeInUp" data-wow-offset="40" data-wow-delay="300ms" data-wow-duration="1.5s"> <div class="bsr-item build-item"> <img class="run wow" src="assets/images/run.svg"> <h2>Run</h2> <p>Docker helps teams release more software changes faster.</p> <a class="show-for-medium-up" href="#run">More</a> </div> </div> </div> <!-- Details for Build --> <section id="build" class="bsr-item-detail"> <div class="row"> <div class="columns"> <h3>Build Apps Faster</h3> </div> <div class="medium-8 columns"> <p class="lead">Docker makes setting up dev environments fast, easy and eliminates any concerns of inconsistencies between environments so developers can focus on building the best software.</p> <ul> <li>Cras mattis consectetur purus sit amet fermentum.</li> <li>Nullam id dolor id nibh ultricies vehicula ut id elit.</li> <li>Morbi leo risus, porta ac consectetur ac, vestibulum at eros.</li> </ul> </div> <div class="medium-4 columns"> <blockquote>“Cras mattis consectetur purus sit amet fermentum. Nullam id dolor id nibh ultricies vehicula ut id elit.” <br><img src="http://placehold.it/50x50"> <cite>James Smith, Developer</cite> </blockquote> </div> </div> </section> <!-- Details for Ship --> <section id="ship" class="bsr-item-detail"> <div class="row"> <div class="columns"> <h3>Ship Apps Quickly</h3> </div> <div class="medium-8 columns"> <p class="lead">Docker makes setting up dev environments fast, easy and eliminates any concerns of inconsistencies between environments so developers can focus on building the best software.</p> <ul> <li>Cras mattis consectetur purus sit amet fermentum.</li> <li>Nullam id dolor id nibh ultricies vehicula ut id elit.</li> <li>Morbi leo risus, porta ac consectetur ac, vestibulum at eros.</li> </ul> </div> <div class="medium-4 columns"> <blockquote>“Cras mattis consectetur purus sit amet fermentum. Nullam id dolor id nibh ultricies vehicula ut id elit.” <br><img src="http://placehold.it/50x50"> <cite>James Smith, Developer</cite> </blockquote> </div> </div> </section> <!-- Details for run --> <section id="run" class="bsr-item-detail"> <div class="row"> <div class="columns"> <h3>Run Apps Better</h3> </div> <div class="medium-8 columns"> <p class="lead">Docker makes setting up dev environments fast, easy and eliminates any concerns of inconsistencies between environments so developers can focus on building the best software.</p> <ul> <li>Cras mattis consectetur purus sit amet fermentum.</li> <li>Nullam id dolor id nibh ultricies vehicula ut id elit.</li> <li>Morbi leo risus, porta ac consectetur ac, vestibulum at eros.</li> </ul> </div> <div class="medium-4 columns"> <blockquote>“Cras mattis consectetur purus sit amet fermentum. Nullam id dolor id nibh ultricies vehicula ut id elit.” <br><img src="http://placehold.it/50x50"> <cite>James Smith, Developer</cite> </blockquote> </div> </div> </section> </section> <!-- BENEFITS --> <section class="benefits"> <section class="row"> <div class="medium-4 medium-push-8 columns"> <img class="wow fadeIn" src="http://placehold.it/400x200"> </div> <div class="medium-8 medium-pull-4 columns"> <h2>Ship More Software Faster</h2> <p>Cras mattis consectetur purus sit amet fermentum. Nullam id dolor id nibh ultricies vehicula ut id elit. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam porta sem malesuada magna mollis euismod.</p> <a href="#">More</a> </div> </section> <div class="bubbles wow"> {{>bubble-svg}} </div> <section class="row"> <div class="medium-4 columns"> <img class="wow fadeIn" src="http://placehold.it/400x200"> </div> <div class="medium-8 columns"> <h2>Guarantee your apps work in any environment</h2> <p>Cras mattis consectetur purus sit amet fermentum. Nullam id dolor id nibh ultricies vehicula ut id elit. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam porta sem malesuada magna mollis euismod.</p> <a href="#">More</a> </div> </section> <div class="flip"> <div class="bubbles wow"> {{>bubble-svg}} </div> </div> <section class="row"> <div class="medium-4 medium-push-8 columns"> <img class="wow fadeIn" src="http://placehold.it/400x200"> </div> <div class="medium-8 medium-pull-4 columns"> <h2>Quickly and easily update, roll back, change or scale out as needed</h2> <p>Cras mattis consectetur purus sit amet fermentum. Nullam id dolor id nibh ultricies vehicula ut id elit. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam porta sem malesuada magna mollis euismod.</p> <a href="#">More</a> </div> </section> </section> <section class="cta-illustration"> <a href="#" class="button secondary wow pulse">Get Started With Docker</a> </section>
source/api/apidocs-4.8/root_admin/deleteNetscalerLoadBalancer.html
pdion891/cloudstack-www
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 1.0 Transitional//EN"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" href="../includes/main.css" type="text/css"> <link rel="shortcut icon" href="../favicon.ico" type="image/x-icon"> <title>Apache CloudStack | The Power Behind Your Cloud</title> </head> <body> <div id="insidetopbg"> <div id="inside_wrapper"> <div class="uppermenu_panel"> <div class="uppermenu_box"></div> </div> <div id="main_master"> <div id="inside_header"> <div class="header_top"> <a class="cloud_logo" href="http://cloudstack.org"></a> <div class="mainemenu_panel"></div> </div> </div> <div id="main_content"> <div class="inside_apileftpanel"> <div class="inside_contentpanel" style="width:930px;"> <div class="api_titlebox"> <div class="api_titlebox_left"> <span> Apache CloudStack v4.8.0 Root Admin API Reference </span> <p></p> <h1>deleteNetscalerLoadBalancer</h1> <p> delete a netscaler load balancer device</p> </div> <div class="api_titlebox_right"> <a class="api_backbutton" href="../TOC_Root_Admin.html"></a> </div> </div> <div class="api_tablepanel"> <h2>Request parameters</h2> <table class="apitable"> <tr class="hed"> <td style="width:200px;"><strong>Parameter Name</strong></td><td style="width:500px;">Description</td><td style="width:180px;">Required</td> </tr> <tr> <td style="width:200px;"><strong>lbdeviceid</strong></td><td style="width:500px;"><strong>netscaler load balancer device ID</strong></td><td style="width:180px;"><strong>true</strong></td> </tr> </table> </div> <div class="api_tablepanel"> <h2>Response Tags</h2> <table class="apitable"> <tr class="hed"> <td style="width:200px;"><strong>Response Name</strong></td><td style="width:500px;">Description</td> </tr> <tr> <td style="width:200px;"><strong>displaytext</strong></td><td style="width:500px;">any text associated with the success or failure</td> </tr> <tr> <td style="width:200px;"><strong>success</strong></td><td style="width:500px;">true if operation is executed successfully</td> </tr> </table> </div> </div> </div> </div> </div> <div id="footer"> <div id="comments_thread"> <script type="text/javascript" src="https://comments.apache.org/show_comments.lua?site=test" async="true"></script> <noscript> <iframe width="930" height="500" src="https://comments.apache.org/iframe.lua?site=test&amp;page=4.2.0/rootadmin"></iframe> </noscript> </div> <div id="footer_mainmaster"> <p>Copyright &copy; 2016 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0.</a> <br> Apache, CloudStack, Apache CloudStack, the Apache CloudStack logo, the CloudMonkey logo and the Apache feather logo are trademarks of The Apache Software Foundation.</p> </div> </div> </div> </div> </body> </html>
third_party/WebKit/LayoutTests/imported/csswg-test/css-writing-modes-3/support/embedded-doc-abs-pos-non-replaced-icb-vlr-009.html
vadimtk/chrome4sdp
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <title>Embedded HTML document for abs-pos-non-replaced-icb-vlr-009 in 'writing-mode: vertical-rl'</title> <!-- position absolute and 'vertical-lr' - 'left' and 'width' are 'auto', 'right' is not 'auto' with 'direction: rtl' in initial containing block --> <style type="text/css"> html { direction: rtl; } div { border-left: green solid 25px; border-right: green solid 75px; height: 100px; left: auto; position: absolute; right: 20%; top: 0px; width: auto; -webkit-writing-mode: vertical-lr; } /* " 1. [If] 'left' and 'width' are 'auto' and 'right' is not 'auto', then the width is shrink-to-fit. Then solve for 'left' " 10.3.7 Absolutely positioned, non-replaced elements http://www.w3.org/TR/CSS21/visudet.html#abs-non-replaced-width So: auto : left + 0px : margin-left + 25px : border-left-width + 0px : padding-left + auto : width + 0px : padding-right + 75px : border-right-width + 0px : margin-right + 20% : right ==================== 500px : width of containing block (width of Initial Containing Block) becomes (solve) : left + 0px : margin-left + 25px : border-left-width + 0px : padding-left + 0px : width (shrink-to-fit) + 0px : padding-right + 75px : border-right-width + 0px : margin-right + 400px : right (20% of 500px == 100px) ==================== 500px : width of containing block (width of Initial Containing Block) so used left offset value must be 300px . */ </style> </head> <body> <div></div> </body> </html>
wp-content/plugins/InsertUpdateDelete/Jssor.Slider.FullPack/skin/thumbnail-03.source.html
prasadsilicus/wordpress
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Thumbnail Navigator Skin 03 - Jssor Slider, Carousel, Slideshow with Javascript Source Code</title> </head> <body style="font-family:Arial, Verdana;background-color:#fff;"> <!-- use jssor.slider.min.js instead for release --> <!-- jssor.slider.min.js = (jssor.js + jssor.slider.js) --> <script type="text/javascript" src="../js/jssor.js"></script> <script type="text/javascript" src="../js/jssor.slider.js"></script> <script> init_jssor_slider1 = function (containerId) { var options = { $AutoPlay: false, //[Optional] Whether to auto play, to enable slideshow, this option must be set to true, default value is false $SlideDuration: 500, //[Optional] Specifies default duration (swipe) for slide in milliseconds, default value is 500 $ThumbnailNavigatorOptions: { $Class: $JssorThumbnailNavigator$, //[Required] Class to create thumbnail navigator instance $ChanceToShow: 2, //[Required] 0 Never, 1 Mouse Over, 2 Always $ActionMode: 1, //[Optional] 0 None, 1 act by click, 2 act by mouse hover, 3 both, default value is 1 $AutoCenter: 3, //[Optional] Auto center thumbnail items in the thumbnail navigator container, 0 None, 1 Horizontal, 2 Vertical, 3 Both, default value is 3 $Lanes: 1, //[Optional] Specify lanes to arrange thumbnails, default value is 1 $SpacingX: 3, //[Optional] Horizontal space between each thumbnail in pixel, default value is 0 $SpacingY: 3, //[Optional] Vertical space between each thumbnail in pixel, default value is 0 $DisplayPieces: 9, //[Optional] Number of pieces to display, default value is 1 $ParkingPosition: 260, //[Optional] The offset position to park thumbnail $Orientation: 1, //[Optional] Orientation to arrange thumbnails, 1 horizental, 2 vertical, default value is 1 $DisableDrag: false //[Optional] Disable drag or not, default value is false } }; var jssor_slider1 = new $JssorSlider$(containerId, options); }; </script> <!--#region Jssor Slider Begin --> <!-- To move inline styles to css file/block, please specify a class name for each element. --> <div id="slider1_container" style="position: relative; top: 0px; left: 0px; width: 600px; height: 300px;"> <!-- Slides Container --> <div u="slides" style="cursor: move; position: absolute; left: 0px; top: 0px; width: 600px; height: 300px; overflow: hidden;"> <div> <img u="image" src="../img/photography/002.jpg" /> <img u="thumb" src="../img/photography/thumb-002.jpg" /> </div> <div> <img u="image" src="../img/photography/003.jpg" /> <img u="thumb" src="../img/photography/thumb-003.jpg" /> </div> <div> <img u="image" src="../img/photography/004.jpg" /> <img u="thumb" src="../img/photography/thumb-004.jpg" /> </div> <div> <img u="image" src="../img/photography/005.jpg" /> <img u="thumb" src="../img/photography/thumb-005.jpg" /> </div> <div> <img u="image" src="../img/photography/006.jpg" /> <img u="thumb" src="../img/photography/thumb-006.jpg" /> </div> <div> <img u="image" src="../img/photography/007.jpg" /> <img u="thumb" src="../img/photography/thumb-007.jpg" /> </div> <div> <img u="image" src="../img/photography/008.jpg" /> <img u="thumb" src="../img/photography/thumb-008.jpg" /> </div> <div> <img u="image" src="../img/photography/009.jpg" /> <img u="thumb" src="../img/photography/thumb-009.jpg" /> </div> <div> <img u="image" src="../img/photography/010.jpg" /> <img u="thumb" src="../img/photography/thumb-010.jpg" /> </div> <div> <img u="image" src="../img/photography/011.jpg" /> <img u="thumb" src="../img/photography/thumb-011.jpg" /> </div> </div> <!--#region Thumbnail Navigator Skin Begin --> <!-- Help: http://www.jssor.com/development/slider-with-thumbnail-navigator-jquery.html --> <style> /* jssor slider thumbnail navigator skin 03 css */ /* .jssort03 .p (normal) .jssort03 .p:hover (normal mouseover) .jssort03 .pav (active) .jssort03 .pdn (mousedown) */ .jssort03 { position: absolute; /* size of thumbnail navigator container */ width: 600px; height: 60px; } .jssort03 .p { position: absolute; top: 0; left: 0; width: 62px; height: 32px; } .jssort03 .t { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; } .jssort03 .w, .jssort03 .pav:hover .w { position: absolute; width: 60px; height: 30px; border: white 1px dashed; box-sizing: content-box; } .jssort03 .pdn .w, .jssort03 .pav .w { border-style: solid; } .jssort03 .c { position: absolute; top: 0; left: 0; width: 62px; height: 32px; background-color: #000; filter: alpha(opacity=45); opacity: .45; transition: opacity .6s; -moz-transition: opacity .6s; -webkit-transition: opacity .6s; -o-transition: opacity .6s; } .jssort03 .p:hover .c, .jssort03 .pav .c { filter: alpha(opacity=0); opacity: 0; } .jssort03 .p:hover .c { transition: none; -moz-transition: none; -webkit-transition: none; -o-transition: none; } * html .jssort03 .w { width /**/: 62px; height /**/: 32px; } </style> <!-- thumbnail navigator container --> <div u="thumbnavigator" class="jssort03" style="left: 0px; bottom: 0px;"> <!-- the following background element is optional --> <div style=" background-color: #000; filter:alpha(opacity=30); opacity:.3; width: 100%; height:100%;"></div> <!-- Thumbnail Item Skin Begin --> <div u="slides" style="cursor: default;"> <div u="prototype" class="p"> <div class=w><div u="thumbnailtemplate" class="t"></div></div> <div class=c></div> </div> </div> <!-- Thumbnail Item Skin End --> </div> <!--#endregion Thumbnail Navigator Skin End --> <a style="display: none" href="http://www.jssor.com">Bootstrap Slider</a> <!-- Trigger --> <script> init_jssor_slider1("slider1_container"); </script> </div> <!--#endregion Jssor Slider End --> </body> </html>
webapi/tct-time-tizen-tests/time/TZDate_getUTCHours_extra_argument.html
qiuzhong/crosswalk-test-suite
<!DOCTYPE html> <!-- Copyright (c) 2013 Samsung Electronics Co., Ltd. Licensed under the Apache License, Version 2.0 (the License); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Authors: Beata Koziarek <b.koziarek@samsung.com> --> <html> <head> <title>TZDate_getUTCHours_extra_argument</title> <meta charset="utf-8"/> <script type="text/javascript" src="support/unitcommon.js"></script> </head> <body> <div id="log"></div> <script> //==== TEST: TZDate_getUTCHours_extra_argument //==== LABEL Check if method TZDate::getUTCHours() method accepts extra argument //==== SPEC: Tizen Web API:System:Time:TZDate:getUTCHours M //==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/time.html //==== TEST_CRITERIA MNAEX test(function () { var currentTZDate = tizen.time.getCurrentDateTime(); checkExtraArgument(currentTZDate, "getUTCHours"); }, document.title); </script> </body> </html>
third_party/blink/web_tests/fast/writing-mode/border-styles-vertical-rl.html
scheib/chromium
<style> html { -webkit-writing-mode: vertical-rl; } body { -webkit-text-orientation: sideways-right; } div > div { display: inline-block; } span { padding-inline-start: 15px; padding-inline-end:15px; font-size: 48pt; background-color: #DDD; line-height: 2em; border-width: 20px; border-color: gray; } .sharp, .rounded { margin: 20px; } .rounded span { border-radius: 50%; } </style> <body> <div class="sharp"> <div> <span style="border-style: solid;"> &nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;</span> </div> <div> <span style="border-style: groove;"> &nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;</span> </div> <div> <span style="border-style: ridge;"> &nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;</span> </div> <div> <span style="border-style: outset;"> &nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;</span> </div> <div> <span style="border-style: inset;"> &nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;</span> </div> <div> <span style="border-style: double;"> &nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;</span> </div> </div> <div class="rounded"> <div> <span style="border-style: solid;"> &nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;</span> </div> <div> <span style="border-style: groove;"> &nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;</span> </div> <div> <span style="border-style: ridge;"> &nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;</span> </div> <div> <span style="border-style: outset;"> &nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;</span> </div> <div> <span style="border-style: inset;"> &nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;</span> </div> <div> <span style="border-style: double;"> &nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;</span> </div> </div> </div>
chromium/chrome/browser/resources/settings/search_engines_page/omnibox_extension_entry.html
ric2b/Vivaldi-browser
<style include="settings-shared search-engine-entry"> .name-column { align-items: center; display: flex; flex: 3; word-break: break-word; } .keyword-column { flex: 7; } </style> <div class="list-item" focus-row-container> <div class="name-column"> <site-favicon favicon-url="[[engine.iconURL]]"></site-favicon> <span>[[engine.displayName]]</span> </div> <div class="keyword-column">[[engine.keyword]]</div> <cr-icon-button class="icon-more-vert" on-click="onDotsTap_" title="$i18n{moreActions}" focus-row-control focus-type="menu"> </cr-icon-button> <cr-action-menu role-description="$i18n{menu}"> <button class="dropdown-item" on-click="onManageTap_" id="manage"> $i18n{searchEnginesManageExtension} </button> <button class="dropdown-item" on-click="onDisableTap_" id="disable"> $i18n{disable} </button> </cr-action-menu> </div>
third_party/polymer/components-chromium/core-ajax/core-xhr.html
mohamed--abdel-maksoud/chromium.src
<!-- Copyright (c) 2014 The Polymer Project Authors. All rights reserved. This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as part of the polymer project is also subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt --><!-- /** * @group Polymer Core Elements * * core-xhr can be used to perform XMLHttpRequests. * * <core-xhr id="xhr"></core-xhr> * ... * this.$.xhr.request({url: url, params: params, callback: callback}); * * @element core-xhr */ --><html><head><link rel="import" href="../polymer/polymer.html"> </head><body><polymer-element name="core-xhr" hidden="" assetpath=""> </polymer-element> <script src="core-xhr-extracted.js"></script></body></html>
third_party/blink/web_tests/css1/box_properties/float_on_text_elements.html
scheib/chromium
<!DOCTYPE HTML> <HTML> <HEAD> <TITLE>CSS1 Test Suite: 5.5.25 float</TITLE> <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <META http-equiv="Content-Style-Type" content="text/css"> <LINK rel="stylesheet" type="text/css" media="screen" href="../resources/base.css"> <SCRIPT src="../resources/base.js"></SCRIPT> <STYLE type="text/css"> P { margin: 0; padding: 0; text-align: justify;} .one {float: left; width: 50%; background-color: yellow; padding: 0; margin: 0;} .two {float: left; background-color: yellow; width: 100%; margin: 0; padding: 0; border-width: 0;} .three {float: none;} .four {float: left; font-size: 200%; font-weight: bold; width: 1.5em; background-color: silver;} .five {float: right; width: 20em; background-color: yellow; border: 3px solid red; padding: 5px; margin: 10px;} .six {float: right; width: 20em; background-color: yellow; border: none; padding: 5px; margin: 10px;} .seven {float: right; width: 50%; background-color: yellow; border: 1px solid gray;} .eight {float: left; width: 25%; background-color: #66CCFF; padding: 0; margin: 0} .nine {float: right; width: 25%; background-color: yellow; padding: 0; margin: 0} </STYLE> </HEAD> <BODY><P class="one">This paragraph is of class "one". It has a width of 50% and is floated to the left.</P> <P>This paragraph should start on the right side of a yellow box which contains the previous paragraph. Since the text of this element is much longer than the text in the previous element, the text will wrap around the yellow box. There is no padding, border or margins on this and the previous element, so the text of the two elements should be very close to each other.</P> <BR clear="all"><HR> <P class="two">This paragraph is of class "two". Since the width has been set to 100%, it should automatically be as wide as its parent element allows it to be. Therefore, even though the element is floated, there is no room for other content on the sides and a orange square image should be seen AFTER the paragraph, not next to it. A yellow background has been added to this paragraph for diagnostic purposes. </P> <IMG SRC="../resources/oransqr.gif" class="three" alt="[Image]"> <BR clear="all"><HR> <P class="one">This paragraph is floated to the left and the orange square image should appear to the right of the paragraph. This paragraph has a yellow background and no padding, margin or border. The right edge of this yellow box should be horizontally aligned with the left edge of the yellow box undernearth.</P> <IMG SRC="../resources/oransqr.gif" class="three" alt="[Image]"> <BR clear="all"><HR> <P class="one" STYLE="float: right">This paragraph is floated to the right (using a STYLE attribute) and the orange square image should appear to the left of the paragraph. This paragraph has a yellow background and no padding, margin or border. The left edge of this yellow box should be horizonally aligned with the right edge of the yellow box above.</P> <IMG SRC="../resources/oransqr.gif" class="three" alt="[Image]"> <BR clear="all"><HR> <P><SPAN class="four">T</SPAN>he first letter (a "T") of this paragraph should float left and be twice the font-size of the rest of the paragraph, as well as bold, with a content width of 1.5em and a background-color of silver. The top of the big letter "T" should be vertically aligned with the top of the first line of this paragraph. This is commonly known as "drop-cap".</P> <BR clear="all"><HR> <P class="five">This paragraph should be floated to the right, sort of like a 'sidebar' in a magazine article. Its width is 20em so the box should not be reformatted when the size of the viewport is changed (e.g. when the window is resized). The background color of the element is yellow, and there should be a 3px solid red border outside a 5px wide padding. Also, the element has a 10px wide margin around it where the blue background of the paragraph in the normal flow should shine through.</P> <P STYLE="background-color: #66CCFF;">This paragraph is not floating. If there is enough room, the textual content of the paragraph should appear on the left side of the yellow "sidebar" on the right. The content of this element should flow around the floated element. However, the floated element may or may not be obscured by the blue background of this element, as the specification does not say which is drawn "on top." Even if the floated element is obscured, it still forces the content of this element to flow around it. If the floated element is not obscured, then the blue rectangle of this paragraph should extend 10px above and to the right of the sidebar's red border, due to the margin styles set for the floated element.</P> <BR clear="all"><HR> <DIV STYLE="background-color: #66CCFF; padding: 0px; border: solid red 4px;"> <DIV CLASS="six"> <P>This paragraph is placed inside a DIV element which is floated to the right. The width of the DIV element is 20em. The background is yellow and there is a 5px padding, a 10px margin and no border. Since it is floated, the yellow box should be rendered on top of the background and borders of adjacent non-floated elements. To the left of this yellow box there should be a short paragraph with a blue background and a red border. The yellow box should be rendered on top of the bottom red border. I.e., the bottom red border will appear broken where it's overlaid by the yellow rectangle.</P> </DIV> <P>See description in the box on the right side</P> </DIV> <BR clear="all"><HR> <DIV CLASS="eight"> <P>This paragraph is inside a DIV which is floated left. Its background is blue and the width is 25%.</P> </DIV> <DIV CLASS="nine"> <P>This paragraph is inside a DIV which is floated right. Its background is yellow and the width is 25%.</P> </DIV> <P>This paragraph should appear between a blue box (on the left) and a yellow box (on the right).</P> <BR clear="all"><HR> <DIV CLASS="eight" STYLE="width: 75%"> <DIV CLASS="nine" STYLE="margin-right: 10px"> <P>See description in the box on the left side.</P> </DIV> <P>This paragraph is inside a DIV which is floated left. The background of the DIV element is blue and its width is 75%. This text should all be inside the blue rectangle. The blue DIV element has another DIV element as a child. It has a yellow background color and is floated to the right. Since it is a child of the blue DIV, the yellow DIV should appear inside the blue rectangle. Due to it being floated to the right and having a 10px right margin, the yellow rectange should have a 10px blue stripe on its right side.</P> </DIV> <BR clear="all"><HR> <TABLE border cellspacing="0" cellpadding="3" class="tabletest"> <TR> <TD colspan="2" bgcolor="silver"><STRONG>TABLE Testing Section</STRONG></TD> </TR> <TR> <TD bgcolor="silver">&nbsp;</TD> <TD><P class="one">This paragraph is of class "one". It has a width of 50% and is floated to the left.</P> <P>This paragraph should start on the right side of a yellow box which contains the previous paragraph. Since the text of this element is much longer than the text in the previous element, the text will wrap around the yellow box. There is no padding, border or margins on this and the previous element, so the text of the two elements should be very close to each other.</P> <BR clear="all"><HR> <P class="two">This paragraph is of class "two". Since the width has been set to 100%, it should automatically be as wide as its parent element allows it to be. Therefore, even though the element is floated, there is no room for other content on the sides and a orange square image should be seen AFTER the paragraph, not next to it. A yellow background has been added to this paragraph for diagnostic purposes. </P> <IMG SRC="../resources/oransqr.gif" class="three" alt="[Image]"> <BR clear="all"><HR> <P class="one">This paragraph is floated to the left and the orange square image should appear to the right of the paragraph. This paragraph has a yellow background and no padding, margin or border. The right edge of this yellow box should be horizontally aligned with the left edge of the yellow box undernearth.</P> <IMG SRC="../resources/oransqr.gif" class="three" alt="[Image]"> <BR clear="all"><HR> <P class="one" STYLE="float: right">This paragraph is floated to the right (using a STYLE attribute) and the orange square image should appear to the left of the paragraph. This paragraph has a yellow background and no padding, margin or border. The left edge of this yellow box should be horizonally aligned with the right edge of the yellow box above.</P> <IMG SRC="../resources/oransqr.gif" class="three" alt="[Image]"> <BR clear="all"><HR> <P><SPAN class="four">T</SPAN>he first letter (a "T") of this paragraph should float left and be twice the font-size of the rest of the paragraph, as well as bold, with a content width of 1.5em and a background-color of silver. The top of the big letter "T" should be vertically aligned with the top of the first line of this paragraph. This is commonly known as "drop-cap".</P> <BR clear="all"><HR> <P class="five">This paragraph should be floated to the right, sort of like a 'sidebar' in a magazine article. Its width is 20em so the box should not be reformatted when the size of the viewport is changed (e.g. when the window is resized). The background color of the element is yellow, and there should be a 3px solid red border outside a 5px wide padding. Also, the element has a 10px wide margin around it where the blue background of the paragraph in the normal flow should shine through.</P> <P STYLE="background-color: #66CCFF;">This paragraph is not floating. If there is enough room, the textual content of the paragraph should appear on the left side of the yellow "sidebar" on the right. The content of this element should flow around the floated element. However, the floated element may or may not be obscured by the blue background of this element, as the specification does not say which is drawn "on top." Even if the floated element is obscured, it still forces the content of this element to flow around it. If the floated element is not obscured, then the blue rectangle of this paragraph should extend 10px above and to the right of the sidebar's red border, due to the margin styles set for the floated element.</P> <BR clear="all"><HR> <DIV STYLE="background-color: #66CCFF; padding: 0px; border: solid red 4px;"> <DIV CLASS="six"> <P>This paragraph is placed inside a DIV element which is floated to the right. The width of the DIV element is 20em. The background is yellow and there is a 5px padding, a 10px margin and no border. Since it is floated, the yellow box should be rendered on top of the background and borders of adjacent non-floated elements. To the left of this yellow box there should be a short paragraph with a blue background and a red border. The yellow box should be rendered on top of the bottom red border. I.e., the bottom red border will appear broken where it's overlaid by the yellow rectangle.</P> </DIV> <P>See description in the box on the right side</P> </DIV> <BR clear="all"><HR> <DIV CLASS="eight"> <P>This paragraph is inside a DIV which is floated left. Its background is blue and the width is 25%.</P> </DIV> <DIV CLASS="nine"> <P>This paragraph is inside a DIV which is floated right. Its background is yellow and the width is 25%.</P> </DIV> <P>This paragraph should appear between a blue box (on the left) and a yellow box (on the right).</P> <BR clear="all"><HR> <DIV CLASS="eight" STYLE="width: 75%"> <DIV CLASS="nine" STYLE="margin-right: 10px"> <P>See description in the box on the left side.</P> </DIV> <P>This paragraph is inside a DIV which is floated left. The background of the DIV element is blue and its width is 75%. This text should all be inside the blue rectangle. The blue DIV element has another DIV element as a child. It has a yellow background color and is floated to the right. Since it is a child of the blue DIV, the yellow DIV should appear inside the blue rectangle. Due to it being floated to the right and having a 10px right margin, the yellow rectange should have a 10px blue stripe on its right side.</P> </DIV> <BR clear="all"><HR> </TD></TR></TABLE></BODY> </HTML>
Farsight RPG Community Edition/sheets.html
suldae/roll20-character-sheets
<div class="sheet-main"> <div class="sheet-header section"> </div> <div class="sheet-shortbio section"> <input class="nome" name="attr_nome" type="text" placeholder="Nome del Personaggio"> <input class="giocatore" name="attr_giocatore" type="text" placeholder="Giocatore"> <input class="concetto" name="attr_concetto" type="text" placeholder="Concetto del Personaggio"> <input class="specie" type="text" placeholder="Specie"> <input class="classelivello" type="text" placeholder="Classe e Livello"> </div> <div class="sheet-skill section"> <!--COMBATTIVITA'--> <input class="main-skill esagono" name="attr_combattività" type="number" value=""> <div class="sheet-main-skill"> <label class="main-skill">Combattività</label> <button class="main-skill" name="roll_combattività" type="roll" value="&{template:default} {{name=Combattività}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{combattività})]]}}"></button> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Armi Bianche</label> <button class="sub-skill" name="roll_armibianche" type="roll" value="&{template:default} {{name=Armi Bianche}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{armibianche}+@{combattività})]]}}"></button> <input class="sub-skill" name="attr_armibianche" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Armi Cinetiche</label> <button class="sub-skill" name="roll_armicinetiche" type="roll" value="&{template:default} {{name=Armi Cinetiche}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{armicinetiche}+@{combattività})]]}}"></button> <input class="sub-skill" name="attr_armicinetiche" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Armi Energetiche</label> <button class="sub-skill" name="roll_armienergetiche" type="roll" value="&{template:default} {{name=Armi Energetiche}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{armienergetiche}+@{combattività})]]}}"></button> <input class="sub-skill" name="attr_armienergetiche" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Armi Naturali</label> <button class="sub-skill" name="roll_arminaturali" type="roll" value="&{template:default} {{name=Armi Naturali}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{arminaturali}+@{combattività})]]}}"></button> <input class="sub-skill" name="attr_arminaturali" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Artiglieria</label> <button class="sub-skill" name="roll_artiglieria" type="roll" value="&{template:default} {{name=Artiglieria}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{artiglieria}+@{combattività})]]}}"></button> <input class="sub-skill" name="attr_artiglieria" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Lanciare</label> <button class="sub-skill" name="roll_lanciare" type="roll" value="&{template:default} {{name=Lanciare}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{lanciare}+@{combattività})]]}}"></button> <input class="sub-skill" name="attr_lanciare" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Lottare</label> <button class="sub-skill" name="roll_lottare" type="roll" value="&{template:default} {{name=Lottare}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{lottare}+@{combattività})]]}}"></button> <input class="sub-skill" name="attr_lottare" type="number" value=""> </div> <!--ROBUSTEZZA--> <input class="main-skill esagono" name="attr_robustezza" type="number" value=""> <div class="sheet-main-skill"> <label class="main-skill">Robustezza</label> <button class="main-skill" name="roll_robustezza" type="roll" value="&{template:default} {{name=Robustezza}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{robustezza})]]}}"></button> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Atletica</label> <button class="sub-skill" name="roll_atletica" type="roll" value="&{template:default} {{name=Atletica}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{atletica}+@{robustezza})]]}}"></button> <input class="sub-skill" name="attr_atletica" type="number"value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Forza</label> <button class="sub-skill" name="roll_forza" type="roll" value="&{template:default} {{name=Forza}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{forza}+@{robustezza})]]}}"></button> <input class="sub-skill" name="attr_forza" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">G-Zero</label> <button class="sub-skill" name="roll_g-zero" type="roll" value="&{template:default} {{name=G-Zero}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{g-zero}+@{robustezza})]]}}"></button> <input class="sub-skill" name="attr_g-zero" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Nuotare</label> <button class="sub-skill" name="roll_nuotare" type="roll" value="&{template:default} {{name=Nuotare}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{nuotare}+@{robustezza})]]}}"></button> <input class="sub-skill" name="attr_nuotare" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Scalare</label> <button class="sub-skill" name="roll_scalare" type="roll" value="&{template:default} {{name=Scalare}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{scalare}+@{robustezza})]]}}"></button> <input class="sub-skill" name="attr_scalare" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Tempra</label> <button class="sub-skill" name="roll_tempra" type="roll" value="&{template:default} {{name=Tempra}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{tempra}+@{robustezza})]]}}"></button> <input class="sub-skill" name="attr_tempra" type="number" value=""> </div> <!--DESTREZZA--> <input class="main-skill esagono" name="attr_destrezza" type="number" value=""> <div class="sheet-main-skill"> <label class="main-skill">Destrezza</label> <button class="main-skill" name="roll_destrezza" type="roll" value="&{template:default} {{name=Destrezza}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{destrezza})]]}}"></button> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Acrobazia</label> <button class="sub-skill" name="roll_acrobazia" type="roll" value="&{template:default} {{name=Acrobazia}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{acrobazia}+@{destrezza})]]}}"></button> <input class="sub-skill" name="attr_acrobazia" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Cavalcare</label> <button class="sub-skill" name="roll_cavalcare" type="roll" value="&{template:default} {{name=Cavalcare}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{cavalcare}+@{destrezza})]]}}"></button> <input class="sub-skill" name="attr_cavalcare" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Danza</label> <button class="sub-skill" name="roll_danza" type="roll" value="&{template:default} {{name=Danza}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{danza}+@{destrezza})]]}}"></button> <input class="sub-skill" name="attr_danza" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Furtività</label> <button class="sub-skill" name="roll_furtività" type="roll" value="&{template:default} {{name=Furtività}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{furtività}+@{destrezza})]]}}"></button> <input class="sub-skill" name="attr_furtività" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Manolesta</label> <button class="sub-skill" name="roll_manolesta" type="roll" value="&{template:default} {{name=Manolesta}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{manolesta}+@{destrezza})]]}}"></button> <input class="sub-skill" name="attr_manolesta" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Pilotare</label> <button class="sub-skill" name="roll_pilotare" type="roll" value="&{template:default} {{name=Pilotare}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{pilotare}+@{destrezza})]]}}"></button> <input class="sub-skill" name="attr_pilotare" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Riflessi</label> <button class="sub-skill" name="roll_riflessi" type="roll" value="&{template:default} {{name=Riflessi}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{riflessi}+@{destrezza})]]}}"></button> <input class="sub-skill" name="attr_riflessi" type="number"value=""> </div> <!-- PERCEZIONE --> <input class="main-skill esagono" name="attr_percezione" type="number" value=""> <div class="sheet-main-skill"> <label class="main-skill">Percezione</label> <button class="main-skill" name="roll_percezione" type="roll" value="&{template:default} {{name=Percezione}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{percezione})]]}}"></button> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Allerta</label> <button class="sub-skill" name="roll_allerta" type="roll" value="&{template:default} {{name=Allerta}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{allerta}+@{percezione})]]}}"></button> <input class="sub-skill" name="attr_allerta" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Arti Visive</label> <button class="sub-skill" name="roll_arti-visive" type="roll" value="&{template:default} {{name=Arti Visive}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{arti-visive}+@{percezione})]]}}"></button> <input class="sub-skill" name="attr_arti-visive" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Intuito</label> <button class="sub-skill" name="roll_intuito" type="roll" value="&{template:default} {{name=Intuito}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{intuito}+@{percezione})]]}}"></button> <input class="sub-skill" name="attr_intuito" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Ispezionare</label> <button class="sub-skill" name="roll_ispezionare" type="roll" value="&{template:default} {{name=Ispezionare}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{ispezionare}+@{percezione})]]}}"></button> <input class="sub-skill" name="attr_ispezionare" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Musica</label> <button class="sub-skill" name="roll_musica" type="roll" value="&{template:default} {{name=Musica}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{musica}+@{percezione})]]}}"></button> <input class="sub-skill" name="attr_musica" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Sopravvivenza</label> <button class="sub-skill" name="roll_sopravvivenza" type="roll" value="&{template:default} {{name=Sopravvivenza}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{sopravvivenza}+@{percezione})]]}}"></button> <input class="sub-skill" name="attr_sopravvivenza" type="number" value=""> </div> <!-- INTELLIGENZA --> <input class="main-skill esagono" name="attr_intelligenza" type="number" value=""> <div class="sheet-main-skill"> <label class="main-skill">Intelligenza</label> <button class="main-skill" name="roll_intelligenza" type="roll" value="&{template:default} {{name=Intelligenza}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{intelligenza})]]}}"></button> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Arti Belliche</label> <button class="sub-skill" name="roll_arti-belliche" type="roll" value="&{template:default} {{name=Arti Belliche}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{arti-belliche}+@{intelligenza})]]}}"></button> <input class="sub-skill" name="attr_arti-belliche" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Erudizione</label> <button class="sub-skill" name="roll_erudizione" type="roll" value="&{template:default} {{name=Erudizione}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{erudizione}+@{intelligenza})]]}}"></button> <input class="sub-skill" name="attr_erudizione" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Lucidità</label> <button class="sub-skill" name="roll_lucidità" type="roll" value="&{template:default} {{name=Lucidità}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{lucidità}+@{intelligenza})]]}}"></button> <input class="sub-skill" name="attr_lucidità" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Medicina</label> <button class="sub-skill" name="roll_medicina" type="roll" value="&{template:default} {{name=Medicina}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{medicina}+@{intelligenza})]]}}"></button> <input class="sub-skill" name="attr_medicina" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Natura</label> <button class="sub-skill" name="roll_natura" type="roll" value="&{template:default} {{name=Natura}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{natura}+@{intelligenza})]]}}"></button> <input class="sub-skill" name="attr_natura" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Psicopotere</label> <button class="sub-skill" name="roll_psicopotere" type="roll" value="&{template:default} {{name=Psicopotere}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{psicopotere}+@{intelligenza})]]}}"></button> <input class="sub-skill" name="attr_psicopotere" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Scienza</label> <button class="sub-skill" name="roll_scienza" type="roll" value="&{template:default} {{name=Scienza}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{scienza}+@{intelligenza})]]}}"></button> <input class="sub-skill" name="attr_scienza" type="number" value=""> </div> <!-- VOLONTA' --> <input class="main-skill esagono" name="attr_volontà" type="number" value=""> <div class="sheet-main-skill"> <label class="main-skill">Volontà</label> <button class="main-skill" name="roll_volontà" type="roll" value="&{template:default} {{name=Volontà}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{volontà})]]}}"></button> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Carisma</label> <button class="sub-skill" name="roll_carisma" type="roll" value="&{template:default} {{name=Carisma}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{carisma}+@{volontà})]]}}"></button> <input class="sub-skill" name="attr_carisma" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Commercio</label> <button class="sub-skill" name="roll_commercio" type="roll" value="&{template:default} {{name=Commercio}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{commercio}+@{volontà})]]}}"></button> <input class="sub-skill" name="attr_commercio" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Fermezza</label> <button class="sub-skill" name="roll_fermezza" type="roll" value="&{template:default} {{name=Fermezza}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{fermezza}+@{volontà})]]}}"></button> <input class="sub-skill" name="attr_fermezza" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Intimidire</label> <button class="sub-skill" name="roll_intimidire" type="roll" value="&{template:default} {{name=Intimidire}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{intimidire}+@{volontà})]]}}"></button> <input class="sub-skill" name="attr_intimidire" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Mondanità</label> <button class="sub-skill" name="roll_mondanità" type="roll" value="&{template:default} {{name=Mondanità}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{mondanità}+@{volontà})]]}}"></button> <input class="sub-skill" name="attr_mondanità" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Scaltrezza</label> <button class="sub-skill" name="roll_scaltrezza" type="roll" value="&{template:default} {{name=Scaltrezza}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{scaltrezza}+@{volontà})]]}}"></button> <input class="sub-skill" name="attr_scaltrezza" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Vita di Strada</label> <button class="sub-skill" name="roll_vita-di-strada" type="roll" value="&{template:default} {{name=Vita di Strada}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{vita-di-strada}+@{volontà})]]}}"></button> <input class="sub-skill" name="attr_vita-di-strada" type="number" value=""> </div> <!-- TECNICA --> <input class="main-skill esagono" name="attr_tecnica" type="number" value=""> <div class="sheet-main-skill"> <label class="main-skill">Tecnica</label> <button class="main-skill" name="roll_tecnica" type="roll" value="&{template:default} {{name=Tecnica}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{tecnica})]]}}"></button> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Astronautica</label> <button class="sub-skill" name="roll_astronautica" type="roll" value="&{template:default} {{name=Astronautica}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{astronautica}+@{tecnica})]]}}"></button> <input class="sub-skill" name="attr_astronautica" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Cibernetica</label> <button class="sub-skill" name="roll_cibernetica" type="roll" value="&{template:default} {{name=Cibernetica}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{cibernetica}+@{tecnica})]]}}"></button> <input class="sub-skill" name="attr_cibernetica" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Computer</label> <button class="sub-skill" name="roll_computer" type="roll" value="&{template:default} {{name=Computer}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{computer}+@{tecnica})]]}}"></button> <input class="sub-skill" name="attr_computer" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Esplosivi</label> <button class="sub-skill" name="roll_esplosivi" type="roll" value="&{template:default} {{name=Esplosivi}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{esplosivi}+@{tecnica})]]}}"></button> <input class="sub-skill" name="attr_esplosivi" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Manomettere</label> <button class="sub-skill" name="roll_manomettere" type="roll" value="&{template:default} {{name=Manomettere}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{manomettere}+@{tecnica})]]}}"></button> <input class="sub-skill" name="attr_manomettere" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">Meccatronica</label> <button class="sub-skill" name="roll_meccatronica" type="roll" value="&{template:default} {{name=Meccatronica}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{meccatronica}+@{tecnica})]]}}"></button> <input class="sub-skill" name="attr_meccatronica" type="number" value=""> </div> <div class="sheet-sub-skill"> <label class="sub-skill">mistificazione</label> <button class="sub-skill" name="roll_mistificazione" type="roll" value="&{template:default} {{name=mistificazione}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{mistificazione}+@{tecnica})]]}}"></button> <input class="sub-skill" name="attr_mistificazione" type="number" value=""> </div> </div> <div class="sheet-health section"> <input class="puntivitalitàmax esagono" name="attr_puntivitalità_max" type="number" value=""> <label class="puntivitalità">Punti Vitalità</label> <input class="puntivitalità esagono" name="attr_puntivitalità" type="number" value=""> <input class="sogliamorte esagonosmall" name="attr_sogliamorte" type="number" value=""> <label class="sogliamorte">Soglia di Morte</label> <div class="salvezzamorte"> <label class="salvezzamorte">Tiro Salvezza VS Morte</label> <label class="successo">Successi</label> <input class="successo" type="checkbox" ></input> <input class="successo" type="checkbox" style="margin-left: 15px;"></input> <input class="successo" type="checkbox" style="margin-left: 30px;"></input> <label class="fallimento">Fallimenti</label> <input class="fallimento" type="checkbox"></input> <input class="fallimento" type="checkbox" style="margin-left: 15px;"></input> <input class="fallimento" type="checkbox" style="margin-left: 30px;"></input> </div> <div class="affaticamento"> <label class="affaticamento">Gradi di Sfinimento</label> <input class="affaticamento" type="checkbox" ></input> <input class="affaticamento" type="checkbox" style="margin-left: 15px;"></input> <input class="affaticamento" type="checkbox" style="margin-left: 30px;"></input> <input class="affaticamento" type="checkbox" style="margin-left: 45px;"></input> <input class="affaticamento" type="checkbox" style="margin-left: 60px;"></input> <input class="affaticamento" type="checkbox" style="margin-left: 75px;"></input> </div> <div class="condizioni"> <label class="condizioni">Condizioni e Traumi</label> <div class="repeat-condizioni"> <fieldset class="repeating_condizioni"> <div class="titolo"> <input class="titolo" name="attr_condizioni" type="text"> </div> <input class="sheet-toggle-show" name="show" type="checkbox"> <span class="sheet-toggle-show">Descrizione</span> <textarea class="descrizione" name="attr_condizioni_descrizione"></textarea> </fieldset> </div> </div> </div> <div class="sheet-stats section"> <input class="stat right esagono" name="attr_velocità" type="number" value=""> <div class="stats"> <label class="stat right">Velocità</label> </div> <input class="stat left esagono" name="attr_iniziativa" type="number" value=""> <div class="stats"> <label class="stat left">Iniziativa</label> <button class="stat" name="roll_iniziativa" type="roll" value="&{template:default} {{name=Iniziativa}} {{personaggio=@{nome}}} {{Result=[[2d12+(@{selected|iniziativa}) &{tracker}]]}}"></button> </div> <input class="stat right esagono" name="attr_difesa" type="number" value=""> <div class="stats"> <label class="stat right">Difesa</label> </div> <input class="stat left esagono" name="attr_armatura" type="number" value=""> <div class="stats"> <label class="stat left">Armatura</label> </div> </div> <div class="sheet-attack section"> <!--<rolltemplate class="sheet-rolltemplate-attacco"> <div class="sheet-template-container"> <div class="sheet-template-header">{{name}}</div> {{#attacco}}<div class="sheet-template-row">Attacco: {{attacco}}</div>{{/attacco}} {{#danno}}<div class="sheet-template-row">Danno: {{danno}} <span>Crit: </span>{{dmgcrit}}</div> <div class="sheet-template-row"><span>Tipo: </span>{{tipo}}</div> {{/danno}} {{#atteffect}} <div class="sheet-template-row"> <span class="sheet-template-desc">Effect: </span>{{atteffect}} </div> {{/atteffect}} </rolltemplate> <button class="attacco" name="roll_attacco" type="roll" value="&{template:attacco} {{name=@{arma}}} {{attacco=[[2d12+(@{attacco})]]}} {{danno=[[@{danno}]]}} {{tipo=@{tipo}}}"></button>--> <div class="attacchi"> <div class="repeat-attacchi"> <fieldset class="repeating_attacchi"> <div class="titolo"> <input class="titolo" name="attr_arma" type="text"> <button class="attacco" name="roll_attacco" type="roll" value="&{template:default} {{name=@{arma}}} {{personaggio=@{nome}}} {{attacco=[[2d12+(@{attacco})]]}} {{danno=[[@{danno}]]}} {{tipo=@{tipo}}}"></button> </div> <input class="sheet-toggle-show" name="show" type="checkbox"> <span class="sheet-toggle-show">Descrizione</span> <div class="descrizioneattacco descrizione"> <input class="bonusattacco" name="attr_attacco" type="number" value="" placeholder="Bonus"> <input class="danno" name="attr_danno" type="text" value="" placeholder="Danno"> <input class="tipo" name="attr_tipo" type="text" value="" placeholder="Tipo"> <input class="portata" name="attr_portata" type="text" value="" placeholder="Portata"> <input class="munizioni" name="attr_munizioni" type="number" value="" placeholder="Cariche"> <input class="colpi" name="attr_colpi" type="number" value="" placeholder="Colpi"> </div> </fieldset> </div> </div> </div> <div class="sheet-inv section"> <div class="inventario"> <div class="repeat-inventario"> <fieldset class="repeating_inventario"> <div class="titolo"> <input class="titolo" name="attr_inventario" type="text"> </div> <input class="sheet-toggle-show" name="show" type="checkbox"> <span class="sheet-toggle-show">Descrizione</span> <textarea class="descrizione" name="attr_inventario_descrizione"></textarea> </fieldset> </div> </div> </div> <div class="sheet-traits section"> <div class="tratti"> <div class="repeat-tratti"> <fieldset class="repeating_tratti"> <div class="titolo"> <input class="titolo" name="attr_tratti" type="text"> </div> <input class="sheet-toggle-show" name="show" type="checkbox"> <span class="sheet-toggle-show">Descrizione</span> <textarea class="descrizione" name="attr_tratti_descrizione"></textarea> </fieldset> </div> </div> </div> <div class="sheet-power section"> <input class="puntipsimax esagono" name="attr_punti-psi_max" type="number" value=""> <input class="puntipsi esagono" name="attr_punti-psi" type="number" value=""> <input class="limitepsionico esagonosmall" name="attr_limite-psionico" type="number" value=""> <input class="attaccopsionico esagonosmall" name="attr_attacco-psionico" type="number" value=""> <input class="forzapsionica esagonosmall" name="attr_forza-psionica" type="number" value=""> <div class="power-stats"> <label class="puntipsi">Punti PSI</label> </div> <div class="power-stats"> <label class="attaccopsionico">Attacco Psionico</label> </div> <div class="power-stats"> <label class="forzapsionica">Forza Psionica</label> <label class="limitepsionico">Limite Psionico</label> </div> <div class="power"> <label class="power">Poteri</label> <div class="repeat-power"> <fieldset class="repeating_power"> <div class="titolo"> <input class="titolo" name="attr_power" type="text"> </div> <input class="sheet-toggle-show" name="show" type="checkbox"> <span class="sheet-toggle-show">Descrizione</span> <textarea class="descrizione" name="attr_power_descrizione"></textarea> </fieldset> </div> </div> </div> </div>
fabric_bolt/projects/templates/projects/stage_detail.html
jproffitt/fabric-bolt
{% extends 'projects/stage_base.html' %} {% load render_table from django_tables2 %} {% load sekizai_tags staticfiles %} {% block content %} <div class="row"> <h1 style="margin-bottom:30px;" class="col-lg-12">Stage {{ object.name }} <span class="pull-right"> <a class="btn btn-primary" href="{% url 'projects_stage_update' object.project.pk object.pk %}">Edit Stage</a> <a class="btn btn-danger" href="{% url 'projects_stage_delete' object.project.pk object.pk %}">Delete Stage</a> </span> </h1> </div> <div class="row"> <div class="col-md-8"> <div class="panel panel-default"> <div class="panel-heading"> <h4> Hosts <i class="glyphicon glyphicon-info-sign" data-toggle="tooltip" data-delay="{'show': 300, 'hide': 0 }" data-original-title="These are the hosts that will be deployed to when running tasks for this stage."></i> </h4> </div> <div class="panel-body"> {% render_table hosts %} </div> <div class="panel-footer"> <div class="row"> <div class="col-md-8"> <select name="stage_host" id="stage_host" class="form-control input-sm" style="width: 50%; display: inline-block;"> <option value="">Select Host</option> {% for host in available_hosts %} <option value="{{ host.pk }}">{{ host.name }}</option> {% endfor %} </select> <a class="btn btn-default btn-sm js-add-host" href="{% url 'projects_stage_maphost' object.project.pk object.pk 'host_id' %}"> <i class="glyphicon glyphicon-plus-sign"></i> Add Stage Host </a> <span id="select_host_msg" class="text-danger" style="display: none;">Please Select Host</span> </div> </div> </div> </div> </div> <div class="col-md-4"> <div class="well well-sm" id="task_well"> <div class="text-center" style="padding:6px 0;"> Finding tasks... &#160;&#160;<img src="{% static 'images/ajax-loader.gif' %}"/> </div> </div> </div> </div> {% addtoblock "js" %} <script> (function($){ $(function(){ $('#task_well').load("{% url 'projects_stage_tasks_ajax' object.project_id object.id %}", function(){ $('[data-toggle=tooltip]').tooltip(); $('#all_tasks_dropdown').change(function(){ document.location = $(this).val(); }); } ); $('.js-add-host').click(function(event){ event.preventDefault(); var link = $(this) , host = $('#stage_host').val(); if(host===''){ $('#select_host_msg').show(); return false; }else{ $('#select_host_msg').hide(); } location.href = link.attr('href').replace('host_id', host); }); }); }(jQuery)); </script> {% endaddtoblock %} {% endblock content %}
react-component-template/example/entry.css
tedbreen/ribcage-gen
@import "../"; :root { font-size: 14px; } * { box-sizing: border-box; } body { padding: 0; margin: 0; }
themes/huno/source/css/uno.css
wuQAQ/wuQAQ.github.io
/*@import 'http://fonts.googleapis.com/css?family=Raleway:400,700|Roboto+Slab:300,400)';*/ /* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (public domain) */ @import url(../css/animate.css); html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after { content: ''; content: none; } q:before, q:after { content: ''; content: none; } body { width: 100%; *zoom: 1; } body:before, body:after { content: ""; display: table; } body:after { clear: both; } /* * Foundation Icons v 3.0 * Made by ZURB 2013 http://zurb.com/playground/foundation-icon-fonts-3 * MIT License */ @font-face { font-family: "foundation-icons"; src: url("../fonts/foundation-icons/foundation-icons.eot"); src: url("../fonts/foundation-icons/foundation-icons.eot?#iefix") format("embedded-opentype"), url("../fonts/foundation-icons/foundation-icons.woff") format("woff"), url("../fonts/foundation-icons/foundation-icons.ttf") format("truetype"), url("../fonts/foundation-icons/foundation-icons.svg#fontcustom") format("svg"); font-weight: normal; font-style: normal; } .icon:before { font-family: "foundation-icons"; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; -webkit-font-smoothing: antialiased; display: inline-block; text-decoration: inherit; } .icon-address-book:before { content: "\f100"; } .icon-alert:before { content: "\f101"; } .icon-align-center:before { content: "\f102"; } .icon-align-justify:before { content: "\f103"; } .icon-align-left:before { content: "\f104"; } .icon-align-right:before { content: "\f105"; } .icon-anchor:before { content: "\f106"; } .icon-annotate:before { content: "\f107"; } .icon-archive:before { content: "\f108"; } .icon-arrow-down:before { content: "\f109"; } .icon-arrow-left:before { content: "\f10a"; } .icon-arrow-right:before { content: "\f10b"; } .icon-arrow-up:before { content: "\f10c"; } .icon-arrows-compress:before { content: "\f10d"; } .icon-arrows-expand:before { content: "\f10e"; } .icon-arrows-in:before { content: "\f10f"; } .icon-arrows-out:before { content: "\f110"; } .icon-asl:before { content: "\f111"; } .icon-asterisk:before { content: "\f112"; } .icon-at-sign:before { content: "\f113"; } .icon-background-color:before { content: "\f114"; } .icon-battery-empty:before { content: "\f115"; } .icon-battery-full:before { content: "\f116"; } .icon-battery-half:before { content: "\f117"; } .icon-bitcoin-circle:before { content: "\f118"; } .icon-bitcoin:before { content: "\f119"; } .icon-blind:before { content: "\f11a"; } .icon-bluetooth:before { content: "\f11b"; } .icon-bold:before { content: "\f11c"; } .icon-book-bookmark:before { content: "\f11d"; } .icon-book:before { content: "\f11e"; } .icon-bookmark:before { content: "\f11f"; } .icon-braille:before { content: "\f120"; } .icon-burst-new:before { content: "\f121"; } .icon-burst-sale:before { content: "\f122"; } .icon-burst:before { content: "\f123"; } .icon-calendar:before { content: "\f124"; } .icon-camera:before { content: "\f125"; } .icon-check:before { content: "\f126"; } .icon-checkbox:before { content: "\f127"; } .icon-clipboard-notes:before { content: "\f128"; } .icon-clipboard-pencil:before { content: "\f129"; } .icon-clipboard:before { content: "\f12a"; } .icon-clock:before { content: "\f12b"; } .icon-closed-caption:before { content: "\f12c"; } .icon-cloud:before { content: "\f12d"; } .icon-comment-minus:before { content: "\f12e"; } .icon-comment-quotes:before { content: "\f12f"; } .icon-comment-video:before { content: "\f130"; } .icon-comment:before { content: "\f131"; } .icon-comments:before { content: "\f132"; } .icon-compass:before { content: "\f133"; } .icon-contrast:before { content: "\f134"; } .icon-credit-card:before { content: "\f135"; } .icon-crop:before { content: "\f136"; } .icon-crown:before { content: "\f137"; } .icon-css3:before { content: "\f138"; } .icon-database:before { content: "\f139"; } .icon-die-five:before { content: "\f13a"; } .icon-die-four:before { content: "\f13b"; } .icon-die-one:before { content: "\f13c"; } .icon-die-six:before { content: "\f13d"; } .icon-die-three:before { content: "\f13e"; } .icon-die-two:before { content: "\f13f"; } .icon-dislike:before { content: "\f140"; } .icon-dollar-bill:before { content: "\f141"; } .icon-dollar:before { content: "\f142"; } .icon-download:before { content: "\f143"; } .icon-eject:before { content: "\f144"; } .icon-elevator:before { content: "\f145"; } .icon-euro:before { content: "\f146"; } .icon-eye:before { content: "\f147"; } .icon-fast-forward:before { content: "\f148"; } .icon-female-symbol:before { content: "\f149"; } .icon-female:before { content: "\f14a"; } .icon-filter:before { content: "\f14b"; } .icon-first-aid:before { content: "\f14c"; } .icon-flag:before { content: "\f14d"; } .icon-folder-add:before { content: "\f14e"; } .icon-folder-lock:before { content: "\f14f"; } .icon-folder:before { content: "\f150"; } .icon-foot:before { content: "\f151"; } .icon-foundation:before { content: "\f152"; } .icon-graph-bar:before { content: "\f153"; } .icon-graph-horizontal:before { content: "\f154"; } .icon-graph-pie:before { content: "\f155"; } .icon-graph-trend:before { content: "\f156"; } .icon-guide-dog:before { content: "\f157"; } .icon-hearing-aid:before { content: "\f158"; } .icon-heart:before { content: "\f159"; } .icon-home:before { content: "\f15a"; } .icon-html5:before { content: "\f15b"; } .icon-indent-less:before { content: "\f15c"; } .icon-indent-more:before { content: "\f15d"; } .icon-info:before { content: "\f15e"; } .icon-italic:before { content: "\f15f"; } .icon-key:before { content: "\f160"; } .icon-laptop:before { content: "\f161"; } .icon-layout:before { content: "\f162"; } .icon-lightbulb:before { content: "\f163"; } .icon-like:before { content: "\f164"; } .icon-link:before { content: "\f165"; } .icon-list-bullet:before { content: "\f166"; } .icon-list-number:before { content: "\f167"; } .icon-list-thumbnails:before { content: "\f168"; } .icon-list:before { content: "\f169"; } .icon-lock:before { content: "\f16a"; } .icon-loop:before { content: "\f16b"; } .icon-magnifying-glass:before { content: "\f16c"; } .icon-mail:before { content: "\f16d"; } .icon-male-female:before { content: "\f16e"; } .icon-male-symbol:before { content: "\f16f"; } .icon-male:before { content: "\f170"; } .icon-map:before { content: "\f171"; } .icon-marker:before { content: "\f172"; } .icon-megaphone:before { content: "\f173"; } .icon-microphone:before { content: "\f174"; } .icon-minus-circle:before { content: "\f175"; } .icon-minus:before { content: "\f176"; } .icon-mobile-signal:before { content: "\f177"; } .icon-mobile:before { content: "\f178"; } .icon-monitor:before { content: "\f179"; } .icon-mountains:before { content: "\f17a"; } .icon-music:before { content: "\f17b"; } .icon-next:before { content: "\f17c"; } .icon-no-dogs:before { content: "\f17d"; } .icon-no-smoking:before { content: "\f17e"; } .icon-page-add:before { content: "\f17f"; } .icon-page-copy:before { content: "\f180"; } .icon-page-csv:before { content: "\f181"; } .icon-page-delete:before { content: "\f182"; } .icon-page-doc:before { content: "\f183"; } .icon-page-edit:before { content: "\f184"; } .icon-page-export-csv:before { content: "\f185"; } .icon-page-export-doc:before { content: "\f186"; } .icon-page-export-pdf:before { content: "\f187"; } .icon-page-export:before { content: "\f188"; } .icon-page-filled:before { content: "\f189"; } .icon-page-multiple:before { content: "\f18a"; } .icon-page-pdf:before { content: "\f18b"; } .icon-page-remove:before { content: "\f18c"; } .icon-page-search:before { content: "\f18d"; } .icon-page:before { content: "\f18e"; } .icon-paint-bucket:before { content: "\f18f"; } .icon-paperclip:before { content: "\f190"; } .icon-pause:before { content: "\f191"; } .icon-paw:before { content: "\f192"; } .icon-paypal:before { content: "\f193"; } .icon-pencil:before { content: "\f194"; } .icon-photo:before { content: "\f195"; } .icon-play-circle:before { content: "\f196"; } .icon-play-video:before { content: "\f197"; } .icon-play:before { content: "\f198"; } .icon-plus:before { content: "\f199"; } .icon-pound:before { content: "\f19a"; } .icon-power:before { content: "\f19b"; } .icon-previous:before { content: "\f19c"; } .icon-price-tag:before { content: "\f19d"; } .icon-pricetag-multiple:before { content: "\f19e"; } .icon-print:before { content: "\f19f"; } .icon-prohibited:before { content: "\f1a0"; } .icon-projection-screen:before { content: "\f1a1"; } .icon-puzzle:before { content: "\f1a2"; } .icon-quote:before { content: "\f1a3"; } .icon-record:before { content: "\f1a4"; } .icon-refresh:before { content: "\f1a5"; } .icon-results-demographics:before { content: "\f1a6"; } .icon-results:before { content: "\f1a7"; } .icon-rewind-ten:before { content: "\f1a8"; } .icon-rewind:before { content: "\f1a9"; } .icon-rss:before { content: "\f1aa"; } .icon-safety-cone:before { content: "\f1ab"; } .icon-save:before { content: "\f1ac"; } .icon-share:before { content: "\f1ad"; } .icon-sheriff-badge:before { content: "\f1ae"; } .icon-shield:before { content: "\f1af"; } .icon-shopping-bag:before { content: "\f1b0"; } .icon-shopping-cart:before { content: "\f1b1"; } .icon-shuffle:before { content: "\f1b2"; } .icon-skull:before { content: "\f1b3"; } .icon-social-500px:before { content: "\f1b4"; } .icon-social-adobe:before { content: "\f1b5"; } .icon-social-amazon:before { content: "\f1b6"; } .icon-social-android:before { content: "\f1b7"; } .icon-social-apple:before { content: "\f1b8"; } .icon-social-behance:before { content: "\f1b9"; } .icon-social-bing:before { content: "\f1ba"; } .icon-social-blogger:before { content: "\f1bb"; } .icon-social-delicious:before { content: "\f1bc"; } .icon-social-designer-news:before { content: "\f1bd"; } .icon-social-deviant-art:before { content: "\f1be"; } .icon-social-digg:before { content: "\f1bf"; } .icon-social-dribbble:before { content: "\f1c0"; } .icon-social-drive:before { content: "\f1c1"; } .icon-social-dropbox:before { content: "\f1c2"; } .icon-social-evernote:before { content: "\f1c3"; } .icon-social-facebook:before { content: "\f1c4"; } .icon-social-flickr:before { content: "\f1c5"; } .icon-social-forrst:before { content: "\f1c6"; } .icon-social-foursquare:before { content: "\f1c7"; } .icon-social-game-center:before { content: "\f1c8"; } .icon-social-github:before { content: "\f1c9"; } .icon-social-google-plus:before { content: "\f1ca"; } .icon-social-hacker-news:before { content: "\f1cb"; } .icon-social-hi5:before { content: "\f1cc"; } .icon-social-instagram:before { content: "\f1cd"; } .icon-social-joomla:before { content: "\f1ce"; } .icon-social-lastfm:before { content: "\f1cf"; } .icon-social-linkedin:before { content: "\f1d0"; } .icon-social-medium:before { content: "\f1d1"; } .icon-social-myspace:before { content: "\f1d2"; } .icon-social-orkut:before { content: "\f1d3"; } .icon-social-path:before { content: "\f1d4"; } .icon-social-picasa:before { content: "\f1d5"; } .icon-social-pinterest:before { content: "\f1d6"; } .icon-social-rdio:before { content: "\f1d7"; } .icon-social-reddit:before { content: "\f1d8"; } .icon-social-skillshare:before { content: "\f1d9"; } .icon-social-skype:before { content: "\f1da"; } .icon-social-smashing-mag:before { content: "\f1db"; } .icon-social-snapchat:before { content: "\f1dc"; } .icon-social-spotify:before { content: "\f1dd"; } .icon-social-squidoo:before { content: "\f1de"; } .icon-social-stack-overflow:before { content: "\f1df"; } .icon-social-steam:before { content: "\f1e0"; } .icon-social-stumbleupon:before { content: "\f1e1"; } .icon-social-treehouse:before { content: "\f1e2"; } .icon-social-tumblr:before { content: "\f1e3"; } .icon-social-twitter:before { content: "\f1e4"; } .icon-social-vimeo:before { content: "\f1e5"; } .icon-social-windows:before { content: "\f1e6"; } .icon-social-xbox:before { content: "\f1e7"; } .icon-social-yahoo:before { content: "\f1e8"; } .icon-social-yelp:before { content: "\f1e9"; } .icon-social-youtube:before { content: "\f1ea"; } .icon-social-zerply:before { content: "\f1eb"; } .icon-social-zurb:before { content: "\f1ec"; } .icon-sound:before { content: "\f1ed"; } .icon-star:before { content: "\f1ee"; } .icon-stop:before { content: "\f1ef"; } .icon-strikethrough:before { content: "\f1f0"; } .icon-subscript:before { content: "\f1f1"; } .icon-superscript:before { content: "\f1f2"; } .icon-tablet-landscape:before { content: "\f1f3"; } .icon-tablet-portrait:before { content: "\f1f4"; } .icon-target-two:before { content: "\f1f5"; } .icon-target:before { content: "\f1f6"; } .icon-telephone-accessible:before { content: "\f1f7"; } .icon-telephone:before { content: "\f1f8"; } .icon-text-color:before { content: "\f1f9"; } .icon-thumbnails:before { content: "\f1fa"; } .icon-ticket:before { content: "\f1fb"; } .icon-torso-business:before { content: "\f1fc"; } .icon-torso-female:before { content: "\f1fd"; } .icon-torso:before { content: "\f1fe"; } .icon-torsos-all-female:before { content: "\f1ff"; } .icon-torsos-all:before { content: "\f200"; } .icon-torsos-female-male:before { content: "\f201"; } .icon-torsos-male-female:before { content: "\f202"; } .icon-torsos:before { content: "\f203"; } .icon-trash:before { content: "\f204"; } .icon-trees:before { content: "\f205"; } .icon-trophy:before { content: "\f206"; } .icon-underline:before { content: "\f207"; } .icon-universal-access:before { content: "\f208"; } .icon-unlink:before { content: "\f209"; } .icon-unlock:before { content: "\f20a"; } .icon-upload-cloud:before { content: "\f20b"; } .icon-upload:before { content: "\f20c"; } .icon-usb:before { content: "\f20d"; } .icon-video:before { content: "\f20e"; } .icon-volume-none:before { content: "\f20f"; } .icon-volume-strike:before { content: "\f210"; } .icon-volume:before { content: "\f211"; } .icon-web:before { content: "\f212"; } .icon-wheelchair:before { content: "\f213"; } .icon-widget:before { content: "\f214"; } .icon-wrench:before { content: "\f215"; } .icon-x-circle:before { content: "\f216"; } .icon-x:before { content: "\f217"; } .icon-yen:before { content: "\f218"; } .icon-zoom-in:before { content: "\f219"; } .icon-zoom-out:before { content: "\f21a"; } html, body { height: 100%; } html { height: 100%; max-height: 100%; } body { /*font-family: "Raleway", sans-serif;*/ font-family: "Raleway",Verdana,sans-serif,宋体, serif, "Droid Serif", Helvetica Neue, Helvetica, Arial; font-size: 1em; color: #666666; } ::selection { background: #fae3df; } ::-moz-selection { background: #fae3df; } a { text-decoration: none; color: #006699; } a:hover { color: green; -o-transition: .5s; -ms-transition: .5s; -moz-transition: .5s; -webkit-transition: .5s; } h1, h2, h3, h4, h5, h5 { margin-top: .8em; margin-bottom: .4em; /*font-family: "Roboto Slab", serif;*/ font-family: "Raleway",Verdana,sans-serif,宋体, serif, "Droid Serif", Helvetica Neue, Helvetica, Arial; font-weight: lighter; color: #333333; -webkit-font-smoothing: antialiased; } h1 { margin-top: 0; font-size: 3.2em; line-height: 1.2em; letter-spacing: .05em; } h2 { font-size: 2.2em; } h3 { font-size: 1.8em; } h4 { font-size: 1.4em; } h4 { font-size: 1.2em; } h5 { font-size: 1em; } p { margin-bottom: 1.3em; line-height: 1.7em; } strong { font-weight: bold; } em { font-style: italic; } blockquote { margin: 1em 0; padding: 1em 0; background: #f8f8f8; border: 1px solid #eeeeee; border-radius: 3px; /*font-family: "Roboto Slab", serif;*/ font-family: "Raleway",Verdana,sans-serif,宋体, serif, "Droid Serif", Helvetica Neue, Helvetica, Arial; font-weight: lighter; font-style: italic; font-size: 1.0em; /*text-align: center;*/ } blockquote p:last-child { margin-bottom: 0; } ol, ul { margin: 0 0 1.3em 2.5em; } ol li, ul li { margin: 0 0 .2em 0; line-height: 1.6em; } ol ol, ol ul, ul ol, ul ul { margin: .1em 0 .2em 2em; } ol { list-style-type: decimal; } ul { list-style-type: disc; } code { padding: 2px 4px; background-color: #f8f8f8; color: #d14; border: none; word-wrap: break-word; border-radius: 3px; font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif; font-size: .85em; } .date, .time, .author, .tags { font-size: .8em; color: #c7c7c7; } .date a, .time a, .author a, .tags a { color: #666666; } .date a:hover, .time a:hover, .author a:hover, .tags a:hover { color: #006699; } .excerpt { margin: 0; font-size: .9em; color: #999999; } .intro { font-family: "Roboto Slab", serif; font-size: 1.2em; font-weight: lighter; color: #999999; } .block-heading { display: inline; float: left; width: 940px; margin: 0 10px; position: relative; bottom: -15px; font-size: .8em; font-weight: bold; text-align: center; text-transform: uppercase; letter-spacing: 1px; } .label { position: relative; display: inline-block; padding: 8px 18px 9px 18px; background: #006699; border-radius: 3px; text-align: center; color: #FFF; } .container { position: relative; z-index: 500; width: 940px; margin: 0 auto; } .content-wrapper { z-index: 800; width: 68%; max-width: 960px; margin-left: 32%; } .content-wrapper__inner { margin: 0 10%; padding: 50px 0; } .footer { display: block; padding: 2em 0 0 0; border-top: 2px solid #dddddd; font-size: .7em; color: #b3b3b3; } .footer__copyright { display: block; margin-bottom: .7em; } .footer__copyright a { color: #a6a6a6; text-decoration: underline; } .footer__copyright a:hover { color: #006699; } .avatar, .logo { border-radius: 50%; border: 3px solid #FFF; box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.3); } hr { border: none; } .section-title__divider { width: 30%; margin: 2.2em 0 2.1em 0; border-top: 1px solid #dddddd; } .hidden { display: none !important; } .post-comments { border-top: 1px solid #dddddd; padding: 60px 0; } .post-meta { margin: 0 0 1.4em 0; color: #c7c7c7; } .post-meta__date { margin-right: .5em; } .post-meta__tags { margin-left: .4em; } .post-meta__author { margin-left: 1.5em; } .post-meta__avatar { display: inline-block; width: 22px; height: 22px; margin: 0 .3em -.4em 0; border: none; box-shadow: none; } .post img { max-width: 100%; margin: 0 auto; border-radius: 3px; text-align: center; } .post hr { display: block; width: 30%; margin: 2em 0; border-top: 1px solid #dddddd; } .panel { display: table; width: 100%; height: 100%; } .panel__vertical { display: table-cell; vertical-align: middle; } .panel-title { margin: 0 0 5px 0; font-size: 2.5em; letter-spacing: 4px; color: #FFF; } .panel-subtitle { font-family: "Roboto Slab", serif; font-size: 1.2em; font-weight: lighter; letter-spacing: 3px; color: #cccccc; -webkit-font-smoothing: antialiased; } .panel-cover { display: block; position: fixed; z-index: 900; width: 100%; max-width: none; height: 100%; background: url(../images/background-cover.jpg) top left no-repeat #666666; background-size: cover; } .panel-cover--collapsed { width: 32%; max-width: 430px; } .panel-cover--overlay { display: block; position: absolute; z-index: 0; top: 0; right: 0; bottom: 0; left: 0; background-color: rgba(68, 68, 68, 0.2); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, rgba(68, 68, 68, 0.6)), color-stop(100%, rgba(0, 0, 0, 0.9))); background-image: -webkit-linear-gradient(-410deg, rgba(68, 68, 68, 0.6) 20%, rgba(0, 0, 0, 0.9)); background-image: linear-gradient(140deg,rgba(68, 68, 68, 0.6) 20%, rgba(0, 0, 0, 0.9)); } .panel-cover__logo { margin-bottom: .2em; } .panel-cover__description { margin: 0 30px; } .panel-cover__divider { width: 50%; margin: 20px auto; border-top: 1px solid rgba(255, 255, 255, 0.14); } .panel-cover__divider--secondary { width: 15%; } .panel-main { display: table; width: 100%; height: 100%; } .panel-main__inner { display: table-cell; vertical-align: middle; position: relative; z-index: 800; padding: 0 60px; } .panel-main__content { max-width: 620px; margin: 0 auto; } .panel-main__content--fixed { width: 480px; transition: width 1s; -webkit-transition: width 1s; /* Safari */ } .panel-inverted { font-weight: 100; text-align: center; color: #FFF; text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4); } .panel-inverted a { color: #FFF; } .cover-navigation { margin-top: 10px; } .cover-navigation--social { margin-left: 30px; } .cover-green { background-color: rgba(21, 111, 120, 0.6); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, rgba(21, 111, 120, 0.6)), color-stop(100%, rgba(6, 31, 33, 0.8))); background-image: -webkit-linear-gradient(-410deg, rgba(21, 111, 120, 0.6) 20%, rgba(6, 31, 33, 0.8)); background-image: linear-gradient(140deg,rgba(21, 111, 120, 0.6) 20%, rgba(6, 31, 33, 0.8)); } .cover-purple { background-color: rgba(73, 50, 82, 0.6); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, rgba(73, 50, 82, 0.6)), color-stop(100%, rgba(17, 11, 19, 0.8))); background-image: -webkit-linear-gradient(-410deg, rgba(73, 50, 82, 0.6) 20%, rgba(17, 11, 19, 0.8)); background-image: linear-gradient(140deg,rgba(73, 50, 82, 0.6) 20%, rgba(17, 11, 19, 0.8)); } .cover-red { background-color: rgba(119, 31, 18, 0.6); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, rgba(119, 31, 18, 0.6)), color-stop(100%, rgba(30, 8, 5, 0.8))); background-image: -webkit-linear-gradient(-410deg, rgba(119, 31, 18, 0.6) 20%, rgba(30, 8, 5, 0.8)); background-image: linear-gradient(140deg,rgba(119, 31, 18, 0.6) 20%, rgba(30, 8, 5, 0.8)); } .cover-slate { background-color: rgba(61, 66, 96, 0.6); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, rgba(61, 66, 96, 0.6)), color-stop(100%, rgba(21, 23, 34, 0.8))); background-image: -webkit-linear-gradient(-410deg, rgba(61, 66, 96, 0.6) 20%, rgba(21, 23, 34, 0.8)); background-image: linear-gradient(140deg,rgba(61, 66, 96, 0.6) 20%, rgba(21, 23, 34, 0.8)); } .cover-disabled { background: none; } .btn, .navigation__item a { padding: 10px 20px; border: 1px solid #006699; border-radius: 20px; font-size: .9em; font-weight: bold; letter-spacing: 1px; text-shadow: none; color: #006699; -webkit-font-smoothing: antialiased; } .btn:hover, .navigation__item a:hover { color: #006699; border-color: #006699; } .btn-secondary { border-color: #5ba4e5; color: #5ba4e5; } .btn-secondary:hover { color: #217fd2; border-color: #217fd2; } .btn-tertiary { border-color: #999999; color: #999999; } .btn-tertiary:hover { color: #737373; border-color: #737373; } .btn-large { padding: 10px 24px; font-size: 1.1em; } .btn-small { padding: 8px 12px; font-size: .7em; } .btn-mobile-menu { display: none; position: fixed; z-index: 9999; top: 0; right: 0; left: 0; width: 100%; height: 42px; background: rgba(13, 71, 77, 0.98); border-bottom: 1px solid rgba(255, 255, 255, 0.1); text-align: center; } .btn-mobile-menu__icon, .btn-mobile-close__icon { position: relative; top: 3px; font-size: 36px; color: #FFF; } nav { display: inline-block; position: relative; } .navigation { display: inline-block; float: left; position: relative; margin: 0; list-style-type: none; } .navigation__item { display: inline-block; margin: 3px 3px; line-height: 1em; } .navigation__item a { display: block; position: relative; border-color: #FFF; color: #FFF; opacity: .8; } .navigation__item a:hover { color: #FFF; border-color: #FFF; opacity: 1; } .navigation--social { margin-left: 0em; } .navigation--social a { padding: 6px 8px 6px 9px; } .navigation--social a .label { display: none; } .navigation--social a .icon { display: block; font-size: 1.7em; } .pagination { display: block; margin: 0 0 4em 0; } .pagination__page-number { margin: 0; font-size: .8em; color: #999999; } .pagination__newer { margin-right: 1em; } .pagination__older { margin-left: 1em; } i { font-family: 'entypo'; font-weight: normal; font-style: normal; font-size: 18px; } .icon-social { font-family: 'entypo-social'; font-size: 22px; display: block; position: relative; } .post-list { margin: 0; padding: 0; list-style-type: none; text-align: left; } .post-list li { margin: 0 0 2.2em 0; } .post-list li:last-child hr { display: none; } .post-list__post-title { margin-top: 0; margin-bottom: .2em; font-size: 1.8em; -webkit-font-smoothing: antialiased; font-weight: bold; line-height: 1.3em; } .post-list__post-title a { color: #333333; } .post-list__post-title a:hover { color: #006699; } .post-list__meta { display: block; margin: .7em 0 0 0; font-size: .9em; color: #c7c7c7; } .post-list__meta--date { margin-right: .5em; color: #c7c7c7; } .post-list__meta--tags { margin-left: .5em; } .post-list__divider { width: 30%; margin: 2.2em 0 2.1em 0; border-top: 1px solid #dddddd; } *:focus { outline: none; } input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"] { width: 240px; padding: 1em 1em; background: #FFF; border: 1px solid #dddddd; border-radius: 3px; font-size: .9em; color: #666666; } input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus { border-color: #5ba4e5; } input[type="text"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, input[type="datetime"]::-webkit-input-placeholder, input[type="datetime-local"]::-webkit-input-placeholder, input[type="date"]::-webkit-input-placeholder, input[type="month"]::-webkit-input-placeholder, input[type="time"]::-webkit-input-placeholder, input[type="week"]::-webkit-input-placeholder, input[type="number"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder, input[type="url"]::-webkit-input-placeholder, input[type="search"]::-webkit-input-placeholder, input[type="tel"]::-webkit-input-placeholder { color: #cccccc; } input[type="text"]:-moz-placeholder, input[type="password"]:-moz-placeholder, input[type="datetime"]:-moz-placeholder, input[type="datetime-local"]:-moz-placeholder, input[type="date"]:-moz-placeholder, input[type="month"]:-moz-placeholder, input[type="time"]:-moz-placeholder, input[type="week"]:-moz-placeholder, input[type="number"]:-moz-placeholder, input[type="email"]:-moz-placeholder, input[type="url"]:-moz-placeholder, input[type="search"]:-moz-placeholder, input[type="tel"]:-moz-placeholder { color: #cccccc; } input[type="text"]::-moz-placeholder, input[type="password"]::-moz-placeholder, input[type="datetime"]::-moz-placeholder, input[type="datetime-local"]::-moz-placeholder, input[type="date"]::-moz-placeholder, input[type="month"]::-moz-placeholder, input[type="time"]::-moz-placeholder, input[type="week"]::-moz-placeholder, input[type="number"]::-moz-placeholder, input[type="email"]::-moz-placeholder, input[type="url"]::-moz-placeholder, input[type="search"]::-moz-placeholder, input[type="tel"]::-moz-placeholder { color: #cccccc; } input[type="text"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder, input[type="datetime"]:-ms-input-placeholder, input[type="datetime-local"]:-ms-input-placeholder, input[type="date"]:-ms-input-placeholder, input[type="month"]:-ms-input-placeholder, input[type="time"]:-ms-input-placeholder, input[type="week"]:-ms-input-placeholder, input[type="number"]:-ms-input-placeholder, input[type="email"]:-ms-input-placeholder, input[type="url"]:-ms-input-placeholder, input[type="search"]:-ms-input-placeholder, input[type="tel"]:-ms-input-placeholder { color: #cccccc; } @media all and (min-width: 1300px) { .content-wrapper { margin-left: 430px; } } @media all and (max-width: 1100px) { .panel-cover__logo { width: 70px; } .panel-title { font-size: 2em; } .panel-subtitle { font-size: 1em; } .panel-cover__description { margin: 0 10px; font-size: .9em; } .navigation--social { margin-top: 5px; margin-left: 0; } } @media all and (max-width: 960px) { .btn-mobile-menu { display: block; } .panel-main { display: table; position: relative; } .panel-cover--collapsed { width: 100%; max-width: none; } .panel-main__inner { display: table-cell; padding: 60px 10%; } .panel-cover__description { display: block; max-width: 600px; margin: 0 auto; } .panel-cover__divider--secondary { display: none; } .panel-cover { width: 100%; height: 100%; background-position: center center; } .panel-cover.panel-cover--collapsed { display: block; position: relative; height: auto; padding: 0; background-position: center center; } .panel-cover.panel-cover--collapsed .panel-main__inner { display: block; padding: 70px 0 30px 0; } .panel-cover.panel-cover--collapsed .panel-cover__logo { width: 60px; border-width: 2px; } .panel-cover.panel-cover--collapsed .panel-cover__description { display: none; } .panel-cover.panel-cover--collapsed .panel-cover__divider { display: none; margin: 1em auto; } .navigation-wrapper { display: none; position: fixed; top: 42px; right: 0; left: 0; width: 100%; padding: 20px 0; background: rgba(51, 51, 51, 0.8); border-bottom: 1px solid rgba(255, 255, 255, 0.15); } .navigation-wrapper.visible { display: block; } .cover-navigation { display: block; position: relative; float: left; clear: left; width: 100%; } .cover-navigation .navigation { display: block; width: 100%; } .cover-navigation .navigation li { width: 80%; margin-bottom: .4em; } .cover-navigation.navigation--social { padding-top: 5px; } .cover-navigation.navigation--social .navigation li { display: inline-block; width: 25.8%; } .content-wrapper { width: 80%; max-width: none; margin: 0 auto; } .content-wrapper__inner { margin-right: 0; margin-left: 0; } .navigation__item { width: 100%; margin: 0 0 .4em 0; } } @media all and (max-width: 340px) { .panel-main__inner { padding: 0 5%; } .panel-title { margin-bottom: .1em; font-size: 1.5em; } .panel-subtitle { font-size: .9em; } .btn, .navigation__item a { display: block; margin-bottom: .4em; } } /* add */ table { border-collapse: collapse; width: 100%; margin: 0 0 10px; border-spacing: 0; border: 1px solid #aaa; } table caption { font-weight: bold; text-align: center; } th { font-weight: bold; } th, td { border: 1px solid #aaa; padding: 5px 10px; text-align: left; } .highlight table { border: none; } pre { font-family: }
toolchain/share/doc/gcc-linaro-arm-linux-gnueabihf/html/gdb/Altering.html
Tigrouzen/Samsung_Wave_Kernel_SD_NAND
<html lang="en"> <head> <title>Altering - Debugging with GDB</title> <meta http-equiv="Content-Type" content="text/html"> <meta name="description" content="Debugging with GDB"> <meta name="generator" content="makeinfo 4.13"> <link title="Top" rel="start" href="index.html#Top"> <link rel="prev" href="Symbols.html#Symbols" title="Symbols"> <link rel="next" href="GDB-Files.html#GDB-Files" title="GDB Files"> <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage"> <!-- Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 2011, 2012 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with the Invariant Sections being ``Free Software'' and ``Free Software Needs Free Documentation'', with the Front-Cover Texts being ``A GNU Manual,'' and with the Back-Cover Texts as in (a) below. (a) The FSF's Back-Cover Text is: ``You are free to copy and modify this GNU Manual. Buying copies from GNU Press supports the FSF in developing GNU and promoting software freedom.''--> <meta http-equiv="Content-Style-Type" content="text/css"> <style type="text/css"><!-- pre.display { font-family:inherit } pre.format { font-family:inherit } pre.smalldisplay { font-family:inherit; font-size:smaller } pre.smallformat { font-family:inherit; font-size:smaller } pre.smallexample { font-size:smaller } pre.smalllisp { font-size:smaller } span.sc { font-variant:small-caps } span.roman { font-family:serif; font-weight:normal; } span.sansserif { font-family:sans-serif; font-weight:normal; } --></style> </head> <body> <div class="node"> <a name="Altering"></a> <p> Next:&nbsp;<a rel="next" accesskey="n" href="GDB-Files.html#GDB-Files">GDB Files</a>, Previous:&nbsp;<a rel="previous" accesskey="p" href="Symbols.html#Symbols">Symbols</a>, Up:&nbsp;<a rel="up" accesskey="u" href="index.html#Top">Top</a> <hr> </div> <h2 class="chapter">17 Altering Execution</h2> <p>Once you think you have found an error in your program, you might want to find out for certain whether correcting the apparent error would lead to correct results in the rest of the run. You can find the answer by experiment, using the <span class="sc">gdb</span> features for altering execution of the program. <p>For example, you can store new values into variables or memory locations, give your program a signal, restart it at a different address, or even return prematurely from a function. <ul class="menu"> <li><a accesskey="1" href="Assignment.html#Assignment">Assignment</a>: Assignment to variables <li><a accesskey="2" href="Jumping.html#Jumping">Jumping</a>: Continuing at a different address <li><a accesskey="3" href="Signaling.html#Signaling">Signaling</a>: Giving your program a signal <li><a accesskey="4" href="Returning.html#Returning">Returning</a>: Returning from a function <li><a accesskey="5" href="Calling.html#Calling">Calling</a>: Calling your program's functions <li><a accesskey="6" href="Patching.html#Patching">Patching</a>: Patching your program </ul> </body></html>
lib/boost/doc/html/boost/type_erasure/concept_interface.html
Bloodyaugust/missilewarcpp
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Struct template concept_interface</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="../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> <link rel="up" href="../../boost_typeerasure/reference.html#header.boost.type_erasure.concept_interface_hpp" title="Header &lt;boost/type_erasure/concept_interface.hpp&gt;"> <link rel="prev" href="check_match.html" title="Function check_match"> <link rel="next" href="concept_of.html" title="Struct template concept_of"> </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="check_match.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../boost_typeerasure/reference.html#header.boost.type_erasure.concept_interface_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="concept_of.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.type_erasure.concept_interface"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Struct template concept_interface</span></h2> <p>boost::type_erasure::concept_interface</p> </div> <h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2> <div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: &lt;<a class="link" href="../../boost_typeerasure/reference.html#header.boost.type_erasure.concept_interface_hpp" title="Header &lt;boost/type_erasure/concept_interface.hpp&gt;">boost/type_erasure/concept_interface.hpp</a>&gt; </span><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> Concept<span class="special">,</span> <span class="keyword">typename</span> Base<span class="special">,</span> <span class="keyword">typename</span> ID<span class="special">,</span> <span class="keyword">typename</span> Enable <span class="special">=</span> <span class="keyword">void</span><span class="special">&gt;</span> <span class="keyword">struct</span> <a class="link" href="concept_interface.html" title="Struct template concept_interface">concept_interface</a> <span class="special">:</span> <span class="keyword">public</span> <span class="identifier">Base</span> <span class="special">{</span> <span class="special">}</span><span class="special">;</span></pre></div> <div class="refsect1"> <a name="idp473753904"></a><h2>Description</h2> <p>The <a class="link" href="concept_interface.html" title="Struct template concept_interface">concept_interface</a> class can be specialized to add behavior to an any. An any inherits from all the relevant specializations of <a class="link" href="concept_interface.html" title="Struct template concept_interface">concept_interface</a>.</p> <p><a class="link" href="concept_interface.html" title="Struct template concept_interface">concept_interface</a> can be specialized for either primitive or composite concepts. If a concept <code class="computeroutput">C1</code> contains another concept <code class="computeroutput">C2</code>, then the library guarantees that the specialization of <a class="link" href="concept_interface.html" title="Struct template concept_interface">concept_interface</a> for <code class="computeroutput">C2</code> is a base class of the specialization for <code class="computeroutput">C1</code>. This means that <code class="computeroutput">C1</code> can safely override members of <code class="computeroutput">C2</code>.</p> <p><a class="link" href="concept_interface.html" title="Struct template concept_interface">concept_interface</a> may only be specialized for user-defined concepts. The library owns the specializations of its own built in concepts.</p> <p> The metafunctions <a class="link" href="derived.html" title="Struct template derived">derived</a>, <a class="link" href="rebind_any.html" title="Struct template rebind_any">rebind_any</a>, and <a class="link" href="as_param.html" title="Struct template as_param">as_param</a> (which can be applied to <code class="computeroutput">Base</code>) are useful for determining the argument and return types of functions defined in <a class="link" href="concept_interface.html" title="Struct template concept_interface">concept_interface</a>.</p> <p>For dispatching the function use <a class="link" href="call_idp304107712.html" title="Function call">call</a>. </p> <div class="refsect2"> <a name="idp473769344"></a><h3>Template Parameters</h3> <div class="orderedlist"><ol class="orderedlist" type="1"> <li class="listitem"> <pre class="literallayout"><span class="keyword">typename</span> Concept</pre> <p>The concept that we're specializing <code class="computeroutput"><a class="link" href="concept_interface.html" title="Struct template concept_interface">concept_interface</a></code> for. One of its placeholders should be <code class="computeroutput">ID</code>. </p> </li> <li class="listitem"> <pre class="literallayout"><span class="keyword">typename</span> Base</pre> <p>The base of this class. Specializations of <code class="computeroutput"><a class="link" href="concept_interface.html" title="Struct template concept_interface">concept_interface</a></code> must inherit publicly from this type. </p> </li> <li class="listitem"> <pre class="literallayout"><span class="keyword">typename</span> ID</pre> <p>The placeholder representing this type. </p> </li> <li class="listitem"> <pre class="literallayout"><span class="keyword">typename</span> Enable <span class="special">=</span> <span class="keyword">void</span></pre> <p>A dummy parameter that can be used for SFINAE.</p> </li> </ol></div> </div> </div> </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; 2011-2013 Steven Watanabe<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="check_match.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../boost_typeerasure/reference.html#header.boost.type_erasure.concept_interface_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="concept_of.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
lib/boost/doc/html/boost_asio/reference/ssl__context/impl.html
Bloodyaugust/sugarlabcppboilerplate
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>ssl::context::impl</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="../ssl__context.html" title="ssl::context"> <link rel="prev" href="file_format.html" title="ssl::context::file_format"> <link rel="next" href="impl_type.html" title="ssl::context::impl_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="file_format.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../ssl__context.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="impl_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.ssl__context.impl"></a><a class="link" href="impl.html" title="ssl::context::impl">ssl::context::impl</a> </h4></div></div></div> <p> <a class="indexterm" name="idp165016016"></a> (Deprecated: Use <code class="computeroutput"><span class="identifier">native_handle</span><span class="special">()</span></code>.) Get the underlying implementation in the native type. </p> <pre class="programlisting"><span class="identifier">impl_type</span> <span class="identifier">impl</span><span class="special">();</span> </pre> <p> This function may be used to obtain the underlying implementation of the context. This is intended to allow access to context 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-2015 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="file_format.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../ssl__context.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="impl_type.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
wp-content/themes/takeaway/assets/js/masterslider/skins/light-4/style.css
ankitparsanaa/foodapp
/** * Master Slider * Light 4 */ .ms-skin-light-4 .ms-slide .ms-slide-vpbtn, .ms-skin-light-4 .ms-video-btn{ width: 54px; height: 54px; background: url(light-skin-4.png) no-repeat -14px -150px; top: 50%; left: 50%; margin: -27px 0 0 -27px; } .ms-skin-light-4 .ms-slide .ms-slide-vcbtn { width: 27px; height: 26px; background: url(light-skin-4.png) no-repeat -24px -29px; top: 30px; right: 30px; } /* controls */ .ms-skin-light-4 .ms-nav-next, .ms-skin-light-4 .ms-nav-prev { width: 54px; background: url(light-skin-4.png); background-position: -77px -5px; height: 68px; cursor: pointer; top: 50%; left: -27px; margin-top: -40px; position: absolute; z-index: 10; } .ms-skin-light-4 .ms-nav-next { right: -27px; left: auto; background-position: -79px -83px; } .ms-skin-light-4 .ms-thumb-frame-selected { opacity: 0.6; } .ms-skin-light-4 .ms-thumb-list.ms-dir-h { bottom: -60px; width: 100%; height: 60px; } .ms-skin-light-4 .ms-thumb-list.ms-dir-v { height: 100%; width: 60px; right: -60px; top: 0; } .ms-skin-light-4 .ms-thumb-frame { cursor: pointer; float: left; width: 60px; height: 60px; margin: 1px 0 0 1px; overflow: hidden; } .ms-skin-light-4 .ms-bullets.ms-dir-h { position: absolute; bottom: 20px; right: 50%; width: 100px; } .ms-skin-light-4 .ms-bullets.ms-dir-h .ms-bullets-count { position: relative; right: -50%; } .ms-skin-light-4 .ms-bullet { width: 9px; height: 9px; background: #b9b9b9; margin: 4px; border: solid 1px rgb(163, 163, 163); } .ms-skin-light-4 .ms-bullet-selected { background-color: white; } .ms-skin-light-4 .ms-sbar { position: absolute; } .ms-skin-light-4 .ms-sbar.ms-dir-h { left: 10px; right: 10px; top: 5px } .ms-skin-light-4 .ms-sbar.ms-dir-v { top: 10px; bottom: 10px; right: 5px } .ms-skin-light-4 .ms-sbar .ms-bar { height: 4px; background: #DD00FF; border-radius: 4px; } .ms-skin-light-4 .ms-sbar.ms-dir-v .ms-bar { width: 4px; } .ms-skin-light-4 .ms-timerbar { width: 100%; bottom: 0px; background: rgba(0, 0, 0, 0.16); position: absolute; height: 6px; } .ms-skin-light-4 .ms-time-bar { height: 100%; background: #FFFFFF; } .ms-skin-light-4 .ms-ctimer { position: absolute; top: 30px; left: 30px; cursor: pointer; } .ms-skin-light-4 .ms-ctimer-bullet {} .ms-skin-light-4 .ms-tooltip{ position: absolute; z-index: 110; cursor: auto; } .ms-skin-light-4 .ms-tooltip-top .ms-tooltip-arrow, .ms-skin-light-4 .ms-tooltip-bottom .ms-tooltip-arrow{ border-left: solid 10px transparent; border-right: solid 10px transparent; position: absolute; left: 50%; margin-left: -10px; } .ms-skin-light-4 .ms-tooltip-top .ms-tooltip-arrow{ border-top: solid 10px; border-top-color: silver; border-top-color: rgba(240, 240, 240, 0.88); bottom: -10px; } .ms-skin-light-4 .ms-tooltip-bottom .ms-tooltip-arrow { border-bottom: solid 10px; border-bottom-color: silver; border-bottom-color: rgba(240, 240, 240, 0.88); top: -10px; } .ms-skin-light-4 .ms-tooltip-right .ms-tooltip-arrow, .ms-skin-light-4 .ms-tooltip-left .ms-tooltip-arrow{ border-top: solid 10px transparent; border-bottom: solid 10px transparent; position: absolute; top: 50%; margin-top: -10px; } .ms-skin-light-4 .ms-tooltip-right .ms-tooltip-arrow{ border-right: solid 10px; border-right-color: silver; border-right-color: rgba(240, 240, 240, 0.88); left: -10px; } .ms-skin-light-4 .ms-tooltip-left .ms-tooltip-arrow { border-left: solid 10px; border-left-color: white; border-left-color: rgba(240, 240, 240, 0.88); right: -10px; } @keyframes point-anim{ 0% {transform: scale(0.5); -webkit-transform: scale(0.5); -moz-transform: scale(0.5); -o-transform: scale(0.5); -ms-transform: scale(0.5); opacity: 1; } 100% {transform: scale(0.5); -webkit-transform: scale(0.5); -moz-transform: scale(1.5); -o-transform: scale(1.5); -ms-transform: scale(1.5); opacity: 0; } } @-webkit-keyframes point-anim{ 0% {-webkit-transform: scale(0.5); opacity: 1; } 100% {-webkit-transform: scale(1.5); opacity: 0; } } .ms-skin-light-4 .ms-tooltip-point {cursor: pointer;} .ms-skin-light-4 .ms-tooltip-point .ms-point-center { width: 12px; height: 12px; border-radius: 15px; border: solid 2px #E0E0E0; background: #4b8aac; margin: -8px 0 0 -8px; position: absolute; z-index: 5; } .ms-skin-light-4 .ms-tooltip-point .ms-point-border { width: 22px; height: 22px; background: white; margin: -11px 0 0 -11px; position: absolute; border-radius: 15px; animation: point-anim 1.5s infinite ; -moz-animation: point-anim 1.5s infinite; -webkit-animation: point-anim 1.5s infinite; -o-animation: point-anim 1.5s infinite; } /* In Android browser, using css animations over slider causes some crashes */ .ms-android.ms-skin-light-4 .ms-tooltip-point .ms-point-border{ animation:none; -moz-animation:none; -webkit-animation:none; -o-animation:none; } .ms-skin-light-4 .ms-tooltip { max-width:200px; } .ms-skin-light-4 .ms-tooltip-cont { padding: 10px; background: silver; background: rgba(240, 240, 240, 0.88); text-shadow: 0 1px 0px white; box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.04); } /* retina */ @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and ( min--moz-device-pixel-ratio: 2), only screen and ( -o-min-device-pixel-ratio: 2/1), only screen and ( min-device-pixel-ratio: 2), only screen and ( min-resolution: 192dpi), only screen and ( min-resolution: 2dppx) { .ms-skin-light-4 .ms-slide .ms-slide-vpbtn, .ms-skin-light-4 .ms-video-btn, .ms-skin-light-4 .ms-slide .ms-slide-vcbtn, .ms-skin-light-4 .ms-nav-next, .ms-skin-light-4 .ms-nav-prev{ background-image:url(light-skin-4-retina.png); background-size: 152px 225px; } }
mallet-2.0.6/doc/api/cc/mallet/topics/class-use/HierarchicalLDA.html
napsternxg/twitter_nlp
<!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_10) on Tue Sep 28 15:42:45 EDT 2010 --> <TITLE> Uses of Class cc.mallet.topics.HierarchicalLDA (Mallet 2 API) </TITLE> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="Uses of Class cc.mallet.topics.HierarchicalLDA (Mallet 2 API)"; } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </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=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"> <A HREF="../../../../cc/mallet/topics/HierarchicalLDA.html" title="class in cc.mallet.topics"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&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-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;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?cc/mallet/topics//class-useHierarchicalLDA.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="HierarchicalLDA.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 Class<br>cc.mallet.topics.HierarchicalLDA</B></H2> </CENTER> No usage of cc.mallet.topics.HierarchicalLDA <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"> <A HREF="../../../../cc/mallet/topics/HierarchicalLDA.html" title="class in cc.mallet.topics"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&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-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;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?cc/mallet/topics//class-useHierarchicalLDA.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="HierarchicalLDA.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>
src/UI/Components/ModelViewer/ModelViewer.css
bsparks/roBrowser
body { background-color:#45484d; font-family:Arial; font-size:12px; margin:0; overflow:hidden; } #ModelViewer .warning { display:none; } #ModelViewer .info { text-align:center; width:100%; color:white; margin-top:50px; position:absolute; } #ModelViewer canvas { position:absolute; top:0px; left:0px; } #ModelViewer #run_msg { position:absolute; right:10px; top:12px; text-align:right; color:#fa5; } #ModelViewer .head { position:absolute; width:100%; height:40px; background: #222; z-index:100; display:none; } #ModelViewer .head select { position:relative; top: 8px; left:5px; }
mallet-2.0.6/doc/api/cc/mallet/util/ArrayUtils.html
napsternxg/twitter_nlp
<!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_10) on Tue Sep 28 15:42:20 EDT 2010 --> <TITLE> ArrayUtils (Mallet 2 API) </TITLE> <META NAME="keywords" CONTENT="cc.mallet.util.ArrayUtils class"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="ArrayUtils (Mallet 2 API)"; } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </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=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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/ArrayUtils.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="../../../cc/mallet/util/ArrayListUtils.html" title="class in cc.mallet.util"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../cc/mallet/util/BshInterpreter.html" title="class in cc.mallet.util"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?cc/mallet/util/ArrayUtils.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ArrayUtils.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"> cc.mallet.util</FONT> <BR> Class ArrayUtils</H2> <PRE> java.lang.Object <IMG SRC="../../../resources/inherit.gif" ALT="extended by "><B>cc.mallet.util.ArrayUtils</B> </PRE> <HR> <DL> <DT><PRE>public final class <B>ArrayUtils</B><DT>extends java.lang.Object</DL> </PRE> <P> Static utility methods for arrays (like java.util.Arrays, but more useful). <P> <P> <DL> <DT><B>Version:</B></DT> <DD>$Id: ArrayUtils.java,v 1.1 2007/10/22 21:37:40 mccallum Exp $</DD> <DT><B>Author:</B></DT> <DD><a href="mailto:casutton@cs.umass.edu">Charles Sutton</a></DD> </DL> <HR> <P> <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Method Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../cc/mallet/util/ArrayUtils.html#any(gnu.trove.TDoubleProcedure, double[])">any</A></B>(gnu.trove.TDoubleProcedure&nbsp;proc, double[]&nbsp;v)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns true if the procedure proc returns true for any element of the array v.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../cc/mallet/util/ArrayUtils.html#any(gnu.trove.TObjectProcedure, java.lang.Object[][])">any</A></B>(gnu.trove.TObjectProcedure&nbsp;proc, java.lang.Object[][]&nbsp;v)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns true if the procedure proc returns true for any element of the array v.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;boolean[]</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../cc/mallet/util/ArrayUtils.html#append(boolean[], boolean)">append</A></B>(boolean[]&nbsp;v, boolean&nbsp;elem)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a new array with a single element appended at the end.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;double[]</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../cc/mallet/util/ArrayUtils.html#append(double[], double[])">append</A></B>(double[]&nbsp;a1, double[]&nbsp;a2)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a new array that is the concatenation of a1 and a2.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;int[]</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../cc/mallet/util/ArrayUtils.html#append(int[], int)">append</A></B>(int[]&nbsp;v, int&nbsp;elem)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a new array with a single element appended at the end.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;int[]</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../cc/mallet/util/ArrayUtils.html#append(int[], int[])">append</A></B>(int[]&nbsp;a1, int[]&nbsp;a2)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a new array that is the concatenation of a1 and a2.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;java.lang.Object[]</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../cc/mallet/util/ArrayUtils.html#append(java.lang.Object[], java.lang.Object)">append</A></B>(java.lang.Object[]&nbsp;v, java.lang.Object&nbsp;elem)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a new array with a single element appended at the end.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;int</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../cc/mallet/util/ArrayUtils.html#argmax(double[])">argmax</A></B>(double[]&nbsp;elems)</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>static&nbsp;double</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../cc/mallet/util/ArrayUtils.html#count(int[], int)">count</A></B>(int[]&nbsp;sampled, int&nbsp;val)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the number of times a value occurs in a given array.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../cc/mallet/util/ArrayUtils.html#equals(boolean[][], boolean[][])">equals</A></B>(boolean[][]&nbsp;m1, boolean[][]&nbsp;m2)</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>static&nbsp;double[]</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../cc/mallet/util/ArrayUtils.html#extend(double[], int)">extend</A></B>(double[]&nbsp;a, int&nbsp;additional)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a new array containing all of a, with additional extra space added (zero initialized).</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;int[]</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../cc/mallet/util/ArrayUtils.html#extend(int[], int)">extend</A></B>(int[]&nbsp;a, int&nbsp;additional)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a new array containing all of a, with additional extra space added (zero initialized).</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../cc/mallet/util/ArrayUtils.html#forEach(gnu.trove.TObjectProcedure, java.lang.Object[])">forEach</A></B>(gnu.trove.TObjectProcedure&nbsp;proc, java.lang.Object[]&nbsp;v)</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>static&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../cc/mallet/util/ArrayUtils.html#forEach(gnu.trove.TObjectProcedure, java.lang.Object[][])">forEach</A></B>(gnu.trove.TObjectProcedure&nbsp;proc, java.lang.Object[][]&nbsp;v)</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>static&nbsp;int</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../cc/mallet/util/ArrayUtils.html#indexOf(int[], int)">indexOf</A></B>(int[]&nbsp;array, int&nbsp;obj)</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>static&nbsp;int</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../cc/mallet/util/ArrayUtils.html#indexOf(java.lang.Object[], java.lang.Object)">indexOf</A></B>(java.lang.Object[]&nbsp;array, java.lang.Object&nbsp;obj)</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>static&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../cc/mallet/util/ArrayUtils.html#print(double[])">print</A></B>(double[]&nbsp;v)</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>static&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../cc/mallet/util/ArrayUtils.html#print(int[])">print</A></B>(int[]&nbsp;v)</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>static&nbsp;java.lang.String</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../cc/mallet/util/ArrayUtils.html#toString(double[])">toString</A></B>(double[]&nbsp;v)</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>static&nbsp;java.lang.String</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../cc/mallet/util/ArrayUtils.html#toString(int[])">toString</A></B>(int[]&nbsp;v)</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>static&nbsp;java.lang.String</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../cc/mallet/util/ArrayUtils.html#toString(java.lang.Object[])">toString</A></B>(java.lang.Object[]&nbsp;v)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</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"> <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH> </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> <!-- ============ METHOD DETAIL ========== --> <A NAME="method_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Method Detail</B></FONT></TH> </TR> </TABLE> <A NAME="indexOf(java.lang.Object[], java.lang.Object)"><!-- --></A><H3> indexOf</H3> <PRE> public static int <B>indexOf</B>(java.lang.Object[]&nbsp;array, java.lang.Object&nbsp;obj)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="indexOf(int[], int)"><!-- --></A><H3> indexOf</H3> <PRE> public static int <B>indexOf</B>(int[]&nbsp;array, int&nbsp;obj)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="any(gnu.trove.TDoubleProcedure, double[])"><!-- --></A><H3> any</H3> <PRE> public static boolean <B>any</B>(gnu.trove.TDoubleProcedure&nbsp;proc, double[]&nbsp;v)</PRE> <DL> <DD>Returns true if the procedure proc returns true for any element of the array v. <P> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="any(gnu.trove.TObjectProcedure, java.lang.Object[][])"><!-- --></A><H3> any</H3> <PRE> public static boolean <B>any</B>(gnu.trove.TObjectProcedure&nbsp;proc, java.lang.Object[][]&nbsp;v)</PRE> <DL> <DD>Returns true if the procedure proc returns true for any element of the array v. <P> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="forEach(gnu.trove.TObjectProcedure, java.lang.Object[])"><!-- --></A><H3> forEach</H3> <PRE> public static void <B>forEach</B>(gnu.trove.TObjectProcedure&nbsp;proc, java.lang.Object[]&nbsp;v)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="forEach(gnu.trove.TObjectProcedure, java.lang.Object[][])"><!-- --></A><H3> forEach</H3> <PRE> public static void <B>forEach</B>(gnu.trove.TObjectProcedure&nbsp;proc, java.lang.Object[][]&nbsp;v)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="print(double[])"><!-- --></A><H3> print</H3> <PRE> public static void <B>print</B>(double[]&nbsp;v)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="print(int[])"><!-- --></A><H3> print</H3> <PRE> public static void <B>print</B>(int[]&nbsp;v)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="toString(int[])"><!-- --></A><H3> toString</H3> <PRE> public static java.lang.String <B>toString</B>(int[]&nbsp;v)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="toString(double[])"><!-- --></A><H3> toString</H3> <PRE> public static java.lang.String <B>toString</B>(double[]&nbsp;v)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="toString(java.lang.Object[])"><!-- --></A><H3> toString</H3> <PRE> public static java.lang.String <B>toString</B>(java.lang.Object[]&nbsp;v)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="extend(int[], int)"><!-- --></A><H3> extend</H3> <PRE> public static int[] <B>extend</B>(int[]&nbsp;a, int&nbsp;additional)</PRE> <DL> <DD>Returns a new array containing all of a, with additional extra space added (zero initialized). <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>a</CODE> - <DD><CODE>additional</CODE> - <DT><B>Returns:</B><DD></DL> </DD> </DL> <HR> <A NAME="extend(double[], int)"><!-- --></A><H3> extend</H3> <PRE> public static double[] <B>extend</B>(double[]&nbsp;a, int&nbsp;additional)</PRE> <DL> <DD>Returns a new array containing all of a, with additional extra space added (zero initialized). <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>a</CODE> - <DD><CODE>additional</CODE> - <DT><B>Returns:</B><DD></DL> </DD> </DL> <HR> <A NAME="append(int[], int[])"><!-- --></A><H3> append</H3> <PRE> public static int[] <B>append</B>(int[]&nbsp;a1, int[]&nbsp;a2)</PRE> <DL> <DD>Returns a new array that is the concatenation of a1 and a2. <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>a1</CODE> - <DD><CODE>a2</CODE> - <DT><B>Returns:</B><DD></DL> </DD> </DL> <HR> <A NAME="append(double[], double[])"><!-- --></A><H3> append</H3> <PRE> public static double[] <B>append</B>(double[]&nbsp;a1, double[]&nbsp;a2)</PRE> <DL> <DD>Returns a new array that is the concatenation of a1 and a2. <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>a1</CODE> - <DD><CODE>a2</CODE> - <DT><B>Returns:</B><DD></DL> </DD> </DL> <HR> <A NAME="append(int[], int)"><!-- --></A><H3> append</H3> <PRE> public static int[] <B>append</B>(int[]&nbsp;v, int&nbsp;elem)</PRE> <DL> <DD>Returns a new array with a single element appended at the end. Use this sparingly, for it will allocate a new array. You can easily turn a linear-time algorithm to quadratic this way. <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>v</CODE> - Original array<DD><CODE>elem</CODE> - Element to add to end</DL> </DD> </DL> <HR> <A NAME="append(boolean[], boolean)"><!-- --></A><H3> append</H3> <PRE> public static boolean[] <B>append</B>(boolean[]&nbsp;v, boolean&nbsp;elem)</PRE> <DL> <DD>Returns a new array with a single element appended at the end. Use this sparingly, for it will allocate a new array. You can easily turn a linear-time algorithm to quadratic this way. <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>v</CODE> - Original array<DD><CODE>elem</CODE> - Element to add to end</DL> </DD> </DL> <HR> <A NAME="append(java.lang.Object[], java.lang.Object)"><!-- --></A><H3> append</H3> <PRE> public static java.lang.Object[] <B>append</B>(java.lang.Object[]&nbsp;v, java.lang.Object&nbsp;elem)</PRE> <DL> <DD>Returns a new array with a single element appended at the end. Use this sparingly, for it will allocate a new array. You can easily turn a linear-time algorithm to quadratic this way. <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>v</CODE> - Original array<DD><CODE>elem</CODE> - Element to add to end <DT><B>Returns:</B><DD>Array with length v+1 that is (v0,v1,...,vn,elem). Runtime type will be same as he pased-in array.</DL> </DD> </DL> <HR> <A NAME="count(int[], int)"><!-- --></A><H3> count</H3> <PRE> public static double <B>count</B>(int[]&nbsp;sampled, int&nbsp;val)</PRE> <DL> <DD>Returns the number of times a value occurs in a given array. <P> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="argmax(double[])"><!-- --></A><H3> argmax</H3> <PRE> public static int <B>argmax</B>(double[]&nbsp;elems)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="equals(boolean[][], boolean[][])"><!-- --></A><H3> equals</H3> <PRE> public static boolean <B>equals</B>(boolean[][]&nbsp;m1, boolean[][]&nbsp;m2)</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=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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/ArrayUtils.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="../../../cc/mallet/util/ArrayListUtils.html" title="class in cc.mallet.util"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../cc/mallet/util/BshInterpreter.html" title="class in cc.mallet.util"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?cc/mallet/util/ArrayUtils.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ArrayUtils.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>
templates/backOffice/defaultFournisseur/coupon/type-fragments/free-product.html
Judi95/thelia
{extends file="coupon/type-fragments/base-remove-on-products.html"} {block name="discount-field"} <div class="form-group input-free-product-category-id"> <label for="free-product-category-id">{intl l="Select offrered product category :"}</label> <select required class="form-control" id="free-product-category-id" name="{$offered_category_field_name}"> <option value="0">{intl l="Please select..."}</option> {loop type="category-tree" category=0 name="list-of-category" backend_context="1"} <option style="padding-left: {$LEVEL * 10}px" value="{$ID}" {if $ID == $offered_category_value}selected="selected"{/if}>{$TITLE}</option> {/loop} </select> </div> <div class="loading" id="input-free-products-id-loading" style="display: none"></div> <div class="form-group" id="input-free-products-id" {if $offered_category_value == 0}style="display: none"{/if}> <label for="free-products-id">{intl l="Select offered product :"}</label> <select required class="form-control" id="free-products-id" name="{$offered_product_field_name}"> {loop type="product" category=$offered_category_value|default:0 name="list-of-products" backend_context="1" return_url=false} <option value="{$ID}" {if $ID == $offered_product_value}selected="selected"{/if}>{$TITLE}</option> {/loop} </select> </div> {/block} {block name="javascript-init"} // Hide selected products category selection if the // offered product is not yet selected. if ({$offered_category_value|default:0} == 0) { $('.input-coupon-category-id').hide(); } var $freeCatSelect = $('#free-product-category-id'); $freeCatSelect.change(function(ev) { var $category_id = $(this).val(); $('.input-coupon-category-id').hide(); $('#input-free-products-id').hide(); $('#free-products-id').html(''); if ($category_id != 0) { $('#input-free-products-id-loading').show(); $.ajax({ url: "{url path='/admin/coupon/type-fragments/ajax-products-list'}", type: 'POST', data: { category_id: $category_id }, success: function(options) { $('.input-coupon-category-id').show(); $('#free-products-id').html(options); $('#input-free-products-id').show(); }, complete: function() { $('#input-free-products-id-loading').hide(); } }); } }); {/block}
www/app/features/leaderBoard/leaderBoard.html
reedflinch/gridiron-hackathon
<section class="way-to-go-wrap col-md-12 label-full-row"> <div class="container-fluid"> <div class="row"> <div class="col-md-4 col-md-offset-2"> <h2>Way to go!</h2> <p>You've helped make the <strong>{{selectedDrug.brand_name}}</strong> labels more accurate. Enter your name to be recognized as a contributor.</p> <form> <div class="form-group cf"> <input type="text" class="form-control" id="firstName" placeholder="What's your first name?" ng-model="leader.firstName"> <input type="text" class="form-control" id="lastName" placeholder="What's your last name?" ng-model="leader.lastName"> <input type="text" class="form-control" id="zipCode" placeholder="What's your zip code?" ng-model="leader.zip"> <button type="submit" class="btn btn-default pull-right" ng-click="addLeader(leader)">Submit</button> </div> </form> <h3>Other drug labels that need your help.</h3> </div> <div align="center" class="col-md-4 col-md-offset-2"> <p>Recent Contributors</p> <ul style="list-style-type: none;"> <li ng-repeat="leader in leaders" class="leaders">{{leader.name}} <strong>{{leader.zipcode}}</strong></li> </ul> </div> </div> </div> </section>
source/api/apidocs-4.3/root_admin/resetSSHKeyForVirtualMachine.html
resmo/cloudstack-www
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 1.0 Transitional//EN"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" href="../includes/main.css" type="text/css"> <link rel="shortcut icon" href="../favicon.ico" type="image/x-icon"> <title>Apache CloudStack | The Power Behind Your Cloud</title> </head> <body> <div id="insidetopbg"> <div id="inside_wrapper"> <div class="uppermenu_panel"> <div class="uppermenu_box"></div> </div> <div id="main_master"> <div id="inside_header"> <div class="header_top"> <a class="cloud_logo" href="http://cloudstack.org"></a> <div class="mainemenu_panel"></div> </div> </div> <div id="main_content"> <div class="inside_apileftpanel"> <div class="inside_contentpanel" style="width:930px;"> <div class="api_titlebox"> <div class="api_titlebox_left"> <span> Apache CloudStack v4.3.0 Root Admin API Reference </span> <p></p> <h1>resetSSHKeyForVirtualMachine</h1> <p>Resets the SSH Key for virtual machine. The virtual machine must be in a "Stopped" state. [async]</p> </div> <div class="api_titlebox_right"> <a class="api_backbutton" href="../TOC_Root_Admin.html"></a> </div> </div> <div class="api_tablepanel"> <h2>Request parameters</h2> <table class="apitable"> <tr class="hed"> <td style="width:200px;"><strong>Parameter Name</strong></td><td style="width:500px;">Description</td><td style="width:180px;">Required</td> </tr> <tr> <td style="width:200px;"><strong>id</strong></td><td style="width:500px;"><strong>The ID of the virtual machine</strong></td><td style="width:180px;"><strong>true</strong></td> </tr> <tr> <td style="width:200px;"><strong>keypair</strong></td><td style="width:500px;"><strong>name of the ssh key pair used to login to the virtual machine</strong></td><td style="width:180px;"><strong>true</strong></td> </tr> <tr> <td style="width:200px;"><i>account</i></td><td style="width:500px;"><i>an optional account for the ssh key. Must be used with domainId.</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>domainid</i></td><td style="width:500px;"><i>an optional domainId for the virtual machine. If the account parameter is used, domainId must also be used.</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>projectid</i></td><td style="width:500px;"><i>an optional project for the ssh key</i></td><td style="width:180px;"><i>false</i></td> </tr> </table> </div> <div class="api_tablepanel"> <h2>Response Tags</h2> <table class="apitable"> <tr class="hed"> <td style="width:200px;"><strong>Response Name</strong></td><td style="width:500px;">Description</td> </tr> <tr> <td style="width:200px;"><strong>id</strong></td><td style="width:500px;">the ID of the virtual machine</td> </tr> <tr> <td style="width:200px;"><strong>account</strong></td><td style="width:500px;">the account associated with the virtual machine</td> </tr> <tr> <td style="width:200px;"><strong>cpunumber</strong></td><td style="width:500px;">the number of cpu this virtual machine is running with</td> </tr> <tr> <td style="width:200px;"><strong>cpuspeed</strong></td><td style="width:500px;">the speed of each cpu</td> </tr> <tr> <td style="width:200px;"><strong>cpuused</strong></td><td style="width:500px;">the amount of the vm's CPU currently used</td> </tr> <tr> <td style="width:200px;"><strong>created</strong></td><td style="width:500px;">the date when this virtual machine was created</td> </tr> <tr> <td style="width:200px;"><strong>details</strong></td><td style="width:500px;">Template details in key/value pairs.</td> </tr> <tr> <td style="width:200px;"><strong>diskioread</strong></td><td style="width:500px;">the read (io) of disk on the vm</td> </tr> <tr> <td style="width:200px;"><strong>diskiowrite</strong></td><td style="width:500px;">the write (io) of disk on the vm</td> </tr> <tr> <td style="width:200px;"><strong>diskkbsread</strong></td><td style="width:500px;">the read (bytes) of disk on the vm</td> </tr> <tr> <td style="width:200px;"><strong>diskkbswrite</strong></td><td style="width:500px;">the write (bytes) of disk on the vm</td> </tr> <tr> <td style="width:200px;"><strong>displayname</strong></td><td style="width:500px;">user generated name. The name of the virtual machine is returned if no displayname exists.</td> </tr> <tr> <td style="width:200px;"><strong>displayvm</strong></td><td style="width:500px;">an optional field whether to the display the vm to the end user or not.</td> </tr> <tr> <td style="width:200px;"><strong>domain</strong></td><td style="width:500px;">the name of the domain in which the virtual machine exists</td> </tr> <tr> <td style="width:200px;"><strong>domainid</strong></td><td style="width:500px;">the ID of the domain in which the virtual machine exists</td> </tr> <tr> <td style="width:200px;"><strong>forvirtualnetwork</strong></td><td style="width:500px;">the virtual network for the service offering</td> </tr> <tr> <td style="width:200px;"><strong>group</strong></td><td style="width:500px;">the group name of the virtual machine</td> </tr> <tr> <td style="width:200px;"><strong>groupid</strong></td><td style="width:500px;">the group ID of the virtual machine</td> </tr> <tr> <td style="width:200px;"><strong>guestosid</strong></td><td style="width:500px;">Os type ID of the virtual machine</td> </tr> <tr> <td style="width:200px;"><strong>haenable</strong></td><td style="width:500px;">true if high-availability is enabled, false otherwise</td> </tr> <tr> <td style="width:200px;"><strong>hostid</strong></td><td style="width:500px;">the ID of the host for the virtual machine</td> </tr> <tr> <td style="width:200px;"><strong>hostname</strong></td><td style="width:500px;">the name of the host for the virtual machine</td> </tr> <tr> <td style="width:200px;"><strong>hypervisor</strong></td><td style="width:500px;">the hypervisor on which the template runs</td> </tr> <tr> <td style="width:200px;"><strong>instancename</strong></td><td style="width:500px;">instance name of the user vm; this parameter is returned to the ROOT admin only</td> </tr> <tr> <td style="width:200px;"><strong>isdynamicallyscalable</strong></td><td style="width:500px;">true if vm contains XS/VMWare tools inorder to support dynamic scaling of VM cpu/memory.</td> </tr> <tr> <td style="width:200px;"><strong>isodisplaytext</strong></td><td style="width:500px;">an alternate display text of the ISO attached to the virtual machine</td> </tr> <tr> <td style="width:200px;"><strong>isoid</strong></td><td style="width:500px;">the ID of the ISO attached to the virtual machine</td> </tr> <tr> <td style="width:200px;"><strong>isoname</strong></td><td style="width:500px;">the name of the ISO attached to the virtual machine</td> </tr> <tr> <td style="width:200px;"><strong>keypair</strong></td><td style="width:500px;">ssh key-pair</td> </tr> <tr> <td style="width:200px;"><strong>memory</strong></td><td style="width:500px;">the memory allocated for the virtual machine</td> </tr> <tr> <td style="width:200px;"><strong>name</strong></td><td style="width:500px;">the name of the virtual machine</td> </tr> <tr> <td style="width:200px;"><strong>networkkbsread</strong></td><td style="width:500px;">the incoming network traffic on the vm</td> </tr> <tr> <td style="width:200px;"><strong>networkkbswrite</strong></td><td style="width:500px;">the outgoing network traffic on the host</td> </tr> <tr> <td style="width:200px;"><strong>password</strong></td><td style="width:500px;">the password (if exists) of the virtual machine</td> </tr> <tr> <td style="width:200px;"><strong>passwordenabled</strong></td><td style="width:500px;">true if the password rest feature is enabled, false otherwise</td> </tr> <tr> <td style="width:200px;"><strong>project</strong></td><td style="width:500px;">the project name of the vm</td> </tr> <tr> <td style="width:200px;"><strong>projectid</strong></td><td style="width:500px;">the project id of the vm</td> </tr> <tr> <td style="width:200px;"><strong>publicip</strong></td><td style="width:500px;">public IP address id associated with vm via Static nat rule</td> </tr> <tr> <td style="width:200px;"><strong>publicipid</strong></td><td style="width:500px;">public IP address id associated with vm via Static nat rule</td> </tr> <tr> <td style="width:200px;"><strong>rootdeviceid</strong></td><td style="width:500px;">device ID of the root volume</td> </tr> <tr> <td style="width:200px;"><strong>rootdevicetype</strong></td><td style="width:500px;">device type of the root volume</td> </tr> <tr> <td style="width:200px;"><strong>serviceofferingid</strong></td><td style="width:500px;">the ID of the service offering of the virtual machine</td> </tr> <tr> <td style="width:200px;"><strong>serviceofferingname</strong></td><td style="width:500px;">the name of the service offering of the virtual machine</td> </tr> <tr> <td style="width:200px;"><strong>servicestate</strong></td><td style="width:500px;">State of the Service from LB rule</td> </tr> <tr> <td style="width:200px;"><strong>state</strong></td><td style="width:500px;">the state of the virtual machine</td> </tr> <tr> <td style="width:200px;"><strong>templatedisplaytext</strong></td><td style="width:500px;"> an alternate display text of the template for the virtual machine</td> </tr> <tr> <td style="width:200px;"><strong>templateid</strong></td><td style="width:500px;">the ID of the template for the virtual machine. A -1 is returned if the virtual machine was created from an ISO file.</td> </tr> <tr> <td style="width:200px;"><strong>templatename</strong></td><td style="width:500px;">the name of the template for the virtual machine</td> </tr> <tr> <td style="width:200px;"><strong>zoneid</strong></td><td style="width:500px;">the ID of the availablility zone for the virtual machine</td> </tr> <tr> <td style="width:200px;"><strong>zonename</strong></td><td style="width:500px;">the name of the availability zone for the virtual machine</td> </tr> <tr> <td style="width:200px;"><strong>affinitygroup(*)</strong></td><td style="width:500px;">list of affinity groups associated with the virtual machine</td> <tr> <td style="width:180px; padding-left:25px;"><strong>id</strong></td><td style="width:500px;">the ID of the affinity group</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>account</strong></td><td style="width:500px;">the account owning the affinity group</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>description</strong></td><td style="width:500px;">the description of the affinity group</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>domain</strong></td><td style="width:500px;">the domain name of the affinity group</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>domainid</strong></td><td style="width:500px;">the domain ID of the affinity group</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>name</strong></td><td style="width:500px;">the name of the affinity group</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>type</strong></td><td style="width:500px;">the type of the affinity group</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>virtualmachineIds</strong></td><td style="width:500px;">virtual machine Ids associated with this affinity group </td> </tr> </tr> <tr> <td style="width:200px;"><strong>nic(*)</strong></td><td style="width:500px;">the list of nics associated with vm</td> <tr> <td style="width:180px; padding-left:25px;"><strong>id</strong></td><td style="width:500px;">the ID of the nic</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>broadcasturi</strong></td><td style="width:500px;">the broadcast uri of the nic</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>gateway</strong></td><td style="width:500px;">the gateway of the nic</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>ip6address</strong></td><td style="width:500px;">the IPv6 address of network</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>ip6cidr</strong></td><td style="width:500px;">the cidr of IPv6 network</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>ip6gateway</strong></td><td style="width:500px;">the gateway of IPv6 network</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>ipaddress</strong></td><td style="width:500px;">the ip address of the nic</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>isdefault</strong></td><td style="width:500px;">true if nic is default, false otherwise</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>isolationuri</strong></td><td style="width:500px;">the isolation uri of the nic</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>macaddress</strong></td><td style="width:500px;">true if nic is default, false otherwise</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>netmask</strong></td><td style="width:500px;">the netmask of the nic</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>networkid</strong></td><td style="width:500px;">the ID of the corresponding network</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>networkname</strong></td><td style="width:500px;">the name of the corresponding network</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>secondaryip</strong></td><td style="width:500px;">the Secondary ipv4 addr of nic</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>traffictype</strong></td><td style="width:500px;">the traffic type of the nic</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>type</strong></td><td style="width:500px;">the type of the nic</td> </tr> </tr> <tr> <td style="width:200px;"><strong>securitygroup(*)</strong></td><td style="width:500px;">list of security groups associated with the virtual machine</td> <tr> <td style="width:180px; padding-left:25px;"><strong>id</strong></td><td style="width:500px;">the ID of the security group</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>account</strong></td><td style="width:500px;">the account owning the security group</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>description</strong></td><td style="width:500px;">the description of the security group</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>domain</strong></td><td style="width:500px;">the domain name of the security group</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>domainid</strong></td><td style="width:500px;">the domain ID of the security group</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>name</strong></td><td style="width:500px;">the name of the security group</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>project</strong></td><td style="width:500px;">the project name of the group</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>projectid</strong></td><td style="width:500px;">the project id of the group</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>egressrule(*)</strong></td><td style="width:500px;">the list of egress rules associated with the security group</td> </tr> <tr> <td style="width:165px; padding-left:40px;">account</td><td style="width:500px;">account owning the security group rule</td> </tr> <tr> <td style="width:165px; padding-left:40px;">cidr</td><td style="width:500px;">the CIDR notation for the base IP address of the security group rule</td> </tr> <tr> <td style="width:165px; padding-left:40px;">endport</td><td style="width:500px;">the ending IP of the security group rule </td> </tr> <tr> <td style="width:165px; padding-left:40px;">icmpcode</td><td style="width:500px;">the code for the ICMP message response</td> </tr> <tr> <td style="width:165px; padding-left:40px;">icmptype</td><td style="width:500px;">the type of the ICMP message response</td> </tr> <tr> <td style="width:165px; padding-left:40px;">protocol</td><td style="width:500px;">the protocol of the security group rule</td> </tr> <tr> <td style="width:165px; padding-left:40px;">ruleid</td><td style="width:500px;">the id of the security group rule</td> </tr> <tr> <td style="width:165px; padding-left:40px;">securitygroupname</td><td style="width:500px;">security group name</td> </tr> <tr> <td style="width:165px; padding-left:40px;">startport</td><td style="width:500px;">the starting IP of the security group rule</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>ingressrule(*)</strong></td><td style="width:500px;">the list of ingress rules associated with the security group</td> </tr> <tr> <td style="width:165px; padding-left:40px;">account</td><td style="width:500px;">account owning the security group rule</td> </tr> <tr> <td style="width:165px; padding-left:40px;">cidr</td><td style="width:500px;">the CIDR notation for the base IP address of the security group rule</td> </tr> <tr> <td style="width:165px; padding-left:40px;">endport</td><td style="width:500px;">the ending IP of the security group rule </td> </tr> <tr> <td style="width:165px; padding-left:40px;">icmpcode</td><td style="width:500px;">the code for the ICMP message response</td> </tr> <tr> <td style="width:165px; padding-left:40px;">icmptype</td><td style="width:500px;">the type of the ICMP message response</td> </tr> <tr> <td style="width:165px; padding-left:40px;">protocol</td><td style="width:500px;">the protocol of the security group rule</td> </tr> <tr> <td style="width:165px; padding-left:40px;">ruleid</td><td style="width:500px;">the id of the security group rule</td> </tr> <tr> <td style="width:165px; padding-left:40px;">securitygroupname</td><td style="width:500px;">security group name</td> </tr> <tr> <td style="width:165px; padding-left:40px;">startport</td><td style="width:500px;">the starting IP of the security group rule</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>tags(*)</strong></td><td style="width:500px;">the list of resource tags associated with the rule</td> </tr> <tr> <td style="width:165px; padding-left:40px;">account</td><td style="width:500px;">the account associated with the tag</td> </tr> <tr> <td style="width:165px; padding-left:40px;">customer</td><td style="width:500px;">customer associated with the tag</td> </tr> <tr> <td style="width:165px; padding-left:40px;">domain</td><td style="width:500px;">the domain associated with the tag</td> </tr> <tr> <td style="width:165px; padding-left:40px;">domainid</td><td style="width:500px;">the ID of the domain associated with the tag</td> </tr> <tr> <td style="width:165px; padding-left:40px;">key</td><td style="width:500px;">tag key name</td> </tr> <tr> <td style="width:165px; padding-left:40px;">project</td><td style="width:500px;">the project name where tag belongs to</td> </tr> <tr> <td style="width:165px; padding-left:40px;">projectid</td><td style="width:500px;">the project id the tag belongs to</td> </tr> <tr> <td style="width:165px; padding-left:40px;">resourceid</td><td style="width:500px;">id of the resource</td> </tr> <tr> <td style="width:165px; padding-left:40px;">resourcetype</td><td style="width:500px;">resource type</td> </tr> <tr> <td style="width:165px; padding-left:40px;">value</td><td style="width:500px;">tag value</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>jobid</strong></td><td style="width:500px;">the ID of the latest async job acting on this object</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>jobstatus</strong></td><td style="width:500px;">the current status of the latest async job acting on this object</td> </tr> </tr> <tr> <td style="width:200px;"><strong>tags(*)</strong></td><td style="width:500px;">the list of resource tags associated with vm</td> <tr> <td style="width:180px; padding-left:25px;"><strong>account</strong></td><td style="width:500px;">the account associated with the tag</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>customer</strong></td><td style="width:500px;">customer associated with the tag</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>domain</strong></td><td style="width:500px;">the domain associated with the tag</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>domainid</strong></td><td style="width:500px;">the ID of the domain associated with the tag</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>key</strong></td><td style="width:500px;">tag key name</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>project</strong></td><td style="width:500px;">the project name where tag belongs to</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>projectid</strong></td><td style="width:500px;">the project id the tag belongs to</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>resourceid</strong></td><td style="width:500px;">id of the resource</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>resourcetype</strong></td><td style="width:500px;">resource type</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>value</strong></td><td style="width:500px;">tag value</td> </tr> </tr> <tr> <td style="width:200px;"><strong>jobid</strong></td><td style="width:500px;">the ID of the latest async job acting on this object</td> </tr> <tr> <td style="width:200px;"><strong>jobstatus</strong></td><td style="width:500px;">the current status of the latest async job acting on this object</td> </tr> </table> </div> </div> </div> </div> </div> <div id="footer"> <div id="comments_thread"> <script type="text/javascript" src="https://comments.apache.org/show_comments.lua?site=test" async="true"></script> <noscript> <iframe width="930" height="500" src="https://comments.apache.org/iframe.lua?site=test&amp;page=4.3.0/rootadmin"></iframe> </noscript> </div> <div id="footer_mainmaster"> <p>Copyright &copy; 2013 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0.</a> <br> Apache, CloudStack, Apache CloudStack, the Apache CloudStack logo, the CloudMonkey logo and the Apache feather logo are trademarks of The Apache Software Foundation.</p> </div> </div> </div> </div> </body> </html>
oreilly.ml/high-performance-tensorflow/apache-jmeter-3.1/docs/api/org/apache/jmeter/visualizers/backend/graphite/package-tree.html
shareactorIO/pipeline
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <title>org.apache.jmeter.visualizers.backend.graphite Class Hierarchy (Apache JMeter API)</title> <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.jmeter.visualizers.backend.graphite Class Hierarchy (Apache JMeter 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 class="navBarCell1Rev">Tree</li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><em><b>Apache JMeter</b></em></div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../org/apache/jmeter/visualizers/backend/package-tree.html">Prev</a></li> <li><a href="../../../../../../org/apache/jmeter/visualizers/gui/package-tree.html">Next</a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/jmeter/visualizers/backend/graphite/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.jmeter.visualizers.backend.graphite</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://docs.oracle.com/javase/7/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">org.apache.jmeter.visualizers.backend.<a href="../../../../../../org/apache/jmeter/visualizers/backend/AbstractBackendListenerClient.html" title="class in org.apache.jmeter.visualizers.backend"><span class="strong">AbstractBackendListenerClient</span></a> (implements org.apache.jmeter.visualizers.backend.<a href="../../../../../../org/apache/jmeter/visualizers/backend/BackendListenerClient.html" title="interface in org.apache.jmeter.visualizers.backend">BackendListenerClient</a>) <ul> <li type="circle">org.apache.jmeter.visualizers.backend.graphite.<a href="../../../../../../org/apache/jmeter/visualizers/backend/graphite/GraphiteBackendListenerClient.html" title="class in org.apache.jmeter.visualizers.backend.graphite"><span class="strong">GraphiteBackendListenerClient</span></a> (implements java.lang.<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Runnable.html?is-external=true" title="class or interface in java.lang">Runnable</a>)</li> </ul> </li> <li type="circle">org.apache.commons.pool2.BaseKeyedPooledObjectFactory&lt;K,V&gt; (implements org.apache.commons.pool2.KeyedPooledObjectFactory&lt;K,V&gt;) <ul> <li type="circle">org.apache.jmeter.visualizers.backend.graphite.<a href="../../../../../../org/apache/jmeter/visualizers/backend/graphite/SocketOutputStreamPoolFactory.html" title="class in org.apache.jmeter.visualizers.backend.graphite"><span class="strong">SocketOutputStreamPoolFactory</span></a> (implements org.apache.commons.pool2.KeyedPooledObjectFactory&lt;K,V&gt;)</li> </ul> </li> <li type="circle">java.io.<a href="http://docs.oracle.com/javase/7/docs/api/java/io/OutputStream.html?is-external=true" title="class or interface in java.io"><span class="strong">OutputStream</span></a> (implements java.io.<a href="http://docs.oracle.com/javase/7/docs/api/java/io/Closeable.html?is-external=true" title="class or interface in java.io">Closeable</a>, java.io.<a href="http://docs.oracle.com/javase/7/docs/api/java/io/Flushable.html?is-external=true" title="class or interface in java.io">Flushable</a>) <ul> <li type="circle">java.io.<a href="http://docs.oracle.com/javase/7/docs/api/java/io/FilterOutputStream.html?is-external=true" title="class or interface in java.io"><span class="strong">FilterOutputStream</span></a> <ul> <li type="circle">org.apache.jmeter.visualizers.backend.graphite.<a href="../../../../../../org/apache/jmeter/visualizers/backend/graphite/SocketOutputStream.html" title="class in org.apache.jmeter.visualizers.backend.graphite"><span class="strong">SocketOutputStream</span></a></li> </ul> </li> </ul> </li> <li type="circle">org.apache.jmeter.visualizers.backend.graphite.<a href="../../../../../../org/apache/jmeter/visualizers/backend/graphite/SocketConnectionInfos.html" title="class in org.apache.jmeter.visualizers.backend.graphite"><span class="strong">SocketConnectionInfos</span></a></li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Tree</li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><em><b>Apache JMeter</b></em></div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../org/apache/jmeter/visualizers/backend/package-tree.html">Prev</a></li> <li><a href="../../../../../../org/apache/jmeter/visualizers/gui/package-tree.html">Next</a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/jmeter/visualizers/backend/graphite/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>Copyright &#xA9; 1998-2016 Apache Software Foundation. All Rights Reserved.</small></p> </body> </html>
source/api/apidocs-4.2/root_admin/updateHost.html
resmo/cloudstack-www
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 1.0 Transitional//EN"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" href="../includes/main.css" type="text/css"> <link rel="shortcut icon" href="../favicon.ico" type="image/x-icon"> <title>Apache CloudStack | The Power Behind Your Cloud</title> </head> <body> <div id="insidetopbg"> <div id="inside_wrapper"> <div class="uppermenu_panel"> <div class="uppermenu_box"></div> </div> <div id="main_master"> <div id="inside_header"> <div class="header_top"> <a class="cloud_logo" href="http://cloudstack.org"></a> <div class="mainemenu_panel"></div> </div> </div> <div id="main_content"> <div class="inside_apileftpanel"> <div class="inside_contentpanel" style="width:930px;"> <div class="api_titlebox"> <div class="api_titlebox_left"> <span> Apache CloudStack v4.2.0 Root Admin API Reference </span> <p></p> <h1>updateHost</h1> <p>Updates a host.</p> </div> <div class="api_titlebox_right"> <a class="api_backbutton" href="../TOC_Root_Admin.html"></a> </div> </div> <div class="api_tablepanel"> <h2>Request parameters</h2> <table class="apitable"> <tr class="hed"> <td style="width:200px;"><strong>Parameter Name</strong></td><td style="width:500px;">Description</td><td style="width:180px;">Required</td> </tr> <tr> <td style="width:200px;"><strong>id</strong></td><td style="width:500px;"><strong>the ID of the host to update</strong></td><td style="width:180px;"><strong>true</strong></td> </tr> <tr> <td style="width:200px;"><i>allocationstate</i></td><td style="width:500px;"><i>Change resource state of host, valid values are [Enable, Disable]. Operation may failed if host in states not allowing Enable/Disable</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>hosttags</i></td><td style="width:500px;"><i>list of tags to be added to the host</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>oscategoryid</i></td><td style="width:500px;"><i>the id of Os category to update the host with</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>url</i></td><td style="width:500px;"><i>the new uri for the secondary storage: nfs://host/path</i></td><td style="width:180px;"><i>false</i></td> </tr> </table> </div> <div class="api_tablepanel"> <h2>Response Tags</h2> <table class="apitable"> <tr class="hed"> <td style="width:200px;"><strong>Response Name</strong></td><td style="width:500px;">Description</td> </tr> <tr> <td style="width:200px;"><strong>id</strong></td><td style="width:500px;">the ID of the host</td> </tr> <tr> <td style="width:200px;"><strong>averageload</strong></td><td style="width:500px;">the cpu average load on the host</td> </tr> <tr> <td style="width:200px;"><strong>capabilities</strong></td><td style="width:500px;">capabilities of the host</td> </tr> <tr> <td style="width:200px;"><strong>clusterid</strong></td><td style="width:500px;">the cluster ID of the host</td> </tr> <tr> <td style="width:200px;"><strong>clustername</strong></td><td style="width:500px;">the cluster name of the host</td> </tr> <tr> <td style="width:200px;"><strong>clustertype</strong></td><td style="width:500px;">the cluster type of the cluster that host belongs to</td> </tr> <tr> <td style="width:200px;"><strong>cpuallocated</strong></td><td style="width:500px;">the amount of the host's CPU currently allocated</td> </tr> <tr> <td style="width:200px;"><strong>cpunumber</strong></td><td style="width:500px;">the CPU number of the host</td> </tr> <tr> <td style="width:200px;"><strong>cpuspeed</strong></td><td style="width:500px;">the CPU speed of the host</td> </tr> <tr> <td style="width:200px;"><strong>cpuused</strong></td><td style="width:500px;">the amount of the host's CPU currently used</td> </tr> <tr> <td style="width:200px;"><strong>cpuwithoverprovisioning</strong></td><td style="width:500px;">the amount of the host's CPU after applying the cpu.overprovisioning.factor </td> </tr> <tr> <td style="width:200px;"><strong>created</strong></td><td style="width:500px;">the date and time the host was created</td> </tr> <tr> <td style="width:200px;"><strong>disconnected</strong></td><td style="width:500px;">true if the host is disconnected. False otherwise.</td> </tr> <tr> <td style="width:200px;"><strong>disksizeallocated</strong></td><td style="width:500px;">the host's currently allocated disk size</td> </tr> <tr> <td style="width:200px;"><strong>disksizetotal</strong></td><td style="width:500px;">the total disk size of the host</td> </tr> <tr> <td style="width:200px;"><strong>events</strong></td><td style="width:500px;">events available for the host</td> </tr> <tr> <td style="width:200px;"><strong>hahost</strong></td><td style="width:500px;">true if the host is Ha host (dedicated to vms started by HA process; false otherwise</td> </tr> <tr> <td style="width:200px;"><strong>hasenoughcapacity</strong></td><td style="width:500px;">true if this host has enough CPU and RAM capacity to migrate a VM to it, false otherwise</td> </tr> <tr> <td style="width:200px;"><strong>hosttags</strong></td><td style="width:500px;">comma-separated list of tags for the host</td> </tr> <tr> <td style="width:200px;"><strong>hypervisor</strong></td><td style="width:500px;">the host hypervisor</td> </tr> <tr> <td style="width:200px;"><strong>hypervisorversion</strong></td><td style="width:500px;">the hypervisor version</td> </tr> <tr> <td style="width:200px;"><strong>ipaddress</strong></td><td style="width:500px;">the IP address of the host</td> </tr> <tr> <td style="width:200px;"><strong>islocalstorageactive</strong></td><td style="width:500px;">true if local storage is active, false otherwise</td> </tr> <tr> <td style="width:200px;"><strong>lastpinged</strong></td><td style="width:500px;">the date and time the host was last pinged</td> </tr> <tr> <td style="width:200px;"><strong>managementserverid</strong></td><td style="width:500px;">the management server ID of the host</td> </tr> <tr> <td style="width:200px;"><strong>memoryallocated</strong></td><td style="width:500px;">the amount of the host's memory currently allocated</td> </tr> <tr> <td style="width:200px;"><strong>memorytotal</strong></td><td style="width:500px;">the memory total of the host</td> </tr> <tr> <td style="width:200px;"><strong>memoryused</strong></td><td style="width:500px;">the amount of the host's memory currently used</td> </tr> <tr> <td style="width:200px;"><strong>name</strong></td><td style="width:500px;">the name of the host</td> </tr> <tr> <td style="width:200px;"><strong>networkkbsread</strong></td><td style="width:500px;">the incoming network traffic on the host</td> </tr> <tr> <td style="width:200px;"><strong>networkkbswrite</strong></td><td style="width:500px;">the outgoing network traffic on the host</td> </tr> <tr> <td style="width:200px;"><strong>oscategoryid</strong></td><td style="width:500px;">the OS category ID of the host</td> </tr> <tr> <td style="width:200px;"><strong>oscategoryname</strong></td><td style="width:500px;">the OS category name of the host</td> </tr> <tr> <td style="width:200px;"><strong>podid</strong></td><td style="width:500px;">the Pod ID of the host</td> </tr> <tr> <td style="width:200px;"><strong>podname</strong></td><td style="width:500px;">the Pod name of the host</td> </tr> <tr> <td style="width:200px;"><strong>removed</strong></td><td style="width:500px;">the date and time the host was removed</td> </tr> <tr> <td style="width:200px;"><strong>resourcestate</strong></td><td style="width:500px;">the resource state of the host</td> </tr> <tr> <td style="width:200px;"><strong>state</strong></td><td style="width:500px;">the state of the host</td> </tr> <tr> <td style="width:200px;"><strong>suitableformigration</strong></td><td style="width:500px;">true if this host is suitable(has enough capacity and satisfies all conditions like hosttags, max guests vm limit etc) to migrate a VM to it , false otherwise</td> </tr> <tr> <td style="width:200px;"><strong>type</strong></td><td style="width:500px;">the host type</td> </tr> <tr> <td style="width:200px;"><strong>version</strong></td><td style="width:500px;">the host version</td> </tr> <tr> <td style="width:200px;"><strong>zoneid</strong></td><td style="width:500px;">the Zone ID of the host</td> </tr> <tr> <td style="width:200px;"><strong>zonename</strong></td><td style="width:500px;">the Zone name of the host</td> </tr> <tr> <td style="width:200px;"><strong>jobid</strong></td><td style="width:500px;">the ID of the latest async job acting on this object</td> </tr> <tr> <td style="width:200px;"><strong>jobstatus</strong></td><td style="width:500px;">the current status of the latest async job acting on this object</td> </tr> </table> </div> </div> </div> </div> </div> <div id="footer"> <div id="comments_thread"> <script type="text/javascript" src="https://comments.apache.org/show_comments.lua?site=test" async="true"></script> <noscript> <iframe width="930" height="500" src="https://comments.apache.org/iframe.lua?site=test&amp;page=4.2.0/rootadmin"></iframe> </noscript> </div> <div id="footer_mainmaster"> <p>Copyright &copy; 2013 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0.</a> <br> Apache, CloudStack, Apache CloudStack, the Apache CloudStack logo, the CloudMonkey logo and the Apache feather logo are trademarks of The Apache Software Foundation.</p> </div> </div> </div> </div> </body> </html>
site/javadoc/r0.4.0/quarks/runtime/etiao/graph/model/package-tree.html
queeniema/incubator-edgent-website
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0) on Mon Mar 07 09:03:17 PST 2016 --> <title>quarks.runtime.etiao.graph.model Class Hierarchy (Quarks v0.4.0)</title> <meta name="date" content="2016-03-07"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="quarks.runtime.etiao.graph.model Class Hierarchy (Quarks v0.4.0)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div role="navigation" title ="TOP_Navigation" aria-label ="Top Navigation Bar"/> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li>Use</li> <li class="navBarCell1Rev">Tree</li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../quarks/runtime/etiao/graph/package-tree.html">Prev</a></li> <li><a href="../../../../../quarks/runtime/etiao/mbeans/package-tree.html">Next</a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?quarks/runtime/etiao/graph/model/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;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 role="main" title ="quarks.runtime.etiao.graph.model Class Hierarchy" aria-labelledby ="Header1"/> <div class="header"> <h1 class="title" id="Header1">Hierarchy For Package quarks.runtime.etiao.graph.model</h1> <span class="packageHierarchyLabel">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.Object <ul> <li type="circle">quarks.runtime.etiao.graph.model.<a href="../../../../../quarks/runtime/etiao/graph/model/EdgeType.html" title="class in quarks.runtime.etiao.graph.model"><span class="typeNameLink">EdgeType</span></a></li> <li type="circle">quarks.runtime.etiao.graph.model.<a href="../../../../../quarks/runtime/etiao/graph/model/GraphType.html" title="class in quarks.runtime.etiao.graph.model"><span class="typeNameLink">GraphType</span></a></li> <li type="circle">quarks.runtime.etiao.graph.model.<a href="../../../../../quarks/runtime/etiao/graph/model/InvocationType.html" title="class in quarks.runtime.etiao.graph.model"><span class="typeNameLink">InvocationType</span></a>&lt;I,O&gt;</li> <li type="circle">quarks.runtime.etiao.graph.model.<a href="../../../../../quarks/runtime/etiao/graph/model/VertexType.html" title="class in quarks.runtime.etiao.graph.model"><span class="typeNameLink">VertexType</span></a>&lt;I,O&gt;</li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div role="navigation" title ="Bottom_NAVIGATION" aria-label ="Bottom Navigation Bar"/> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li>Use</li> <li class="navBarCell1Rev">Tree</li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><a href="http://quarks-edge.github.io">quarks-edge community @ github.com</a></div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../quarks/runtime/etiao/graph/package-tree.html">Prev</a></li> <li><a href="../../../../../quarks/runtime/etiao/mbeans/package-tree.html">Next</a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?quarks/runtime/etiao/graph/model/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;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 ======= --> <div role="contentinfo" title ="contentinfo_title" aria-label ="Contains footer note"/> <p class="legalCopy"><small>Copyright IBM 2015,2016 - 2f6ad0e-20160307-0902</small></p> </body> </html>
site/javadoc/r0.4.0/quarks/connectors/pubsub/class-use/PublishSubscribe.html
queeniema/incubator-edgent-website
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0) on Mon Mar 07 09:03:18 PST 2016 --> <title>Uses of Class quarks.connectors.pubsub.PublishSubscribe (Quarks v0.4.0)</title> <meta name="date" content="2016-03-07"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class quarks.connectors.pubsub.PublishSubscribe (Quarks v0.4.0)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div role="navigation" title ="TOP_Navigation" aria-label ="Top Navigation Bar"/> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../quarks/connectors/pubsub/PublishSubscribe.html" title="class in quarks.connectors.pubsub">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="../../../../index-all.html">Index</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?quarks/connectors/pubsub/class-use/PublishSubscribe.html" target="_top">Frames</a></li> <li><a href="PublishSubscribe.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;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 quarks.connectors.pubsub.PublishSubscribe" class="title">Uses of Class<br>quarks.connectors.pubsub.PublishSubscribe</h2> </div> <div role="main" title ="Uses of Class quarks.connectors.pubsub.PublishSubscribe" aria-label ="quarks.connectors.pubsub.PublishSubscribe"/> <div class="classUseContainer">No usage of quarks.connectors.pubsub.PublishSubscribe</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div role="navigation" title ="Bottom_NAVIGATION" aria-label ="Bottom Navigation Bar"/> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../quarks/connectors/pubsub/PublishSubscribe.html" title="class in quarks.connectors.pubsub">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="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><a href="http://quarks-edge.github.io">quarks-edge community @ github.com</a></div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?quarks/connectors/pubsub/class-use/PublishSubscribe.html" target="_top">Frames</a></li> <li><a href="PublishSubscribe.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;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 ======= --> <div role="contentinfo" title ="contentinfo_title" aria-label ="Contains footer note"/> <p class="legalCopy"><small>Copyright IBM 2015,2016 - 2f6ad0e-20160307-0902</small></p> </body> </html>
third_party/blink/web_tests/media/video-load-readyState.html
scheib/chromium
<!DOCTYPE html> <title>Test media element readystate value on load.</title> <script src="../resources/testharness.js"></script> <script src="../resources/testharnessreport.js"></script> <video></video> <script> async_test(function(t) { var video = document.querySelector("video"); assert_equals(video.readyState, HTMLMediaElement.HAVE_NOTHING); video.onloadstart = t.step_func(function() {}); video.onloadedmetadata = t.step_func(function() {}); video.onloadeddata = t.step_func(function() {}); video.oncanplay = t.step_func(function() {}); video.onplay = t.unreached_func(); video.onplaying = t.unreached_func(); video.oncanplaythrough = t.step_func_done(function () { assert_equals(video.readyState, HTMLMediaElement.HAVE_ENOUGH_DATA); }); video.src = "content/test.ogv"; }); </script>
third_party/blink/web_tests/fast/dom/Document/document-open-01.html
scheib/chromium
<!DOCTYPE HTML> <title>contentDocument.open test for creating new window</title> <script src="../../../resources/testharness.js"></script> <script src="../../../resources/testharnessreport.js"></script> <body> <script> test(function() { frame = document.body.appendChild(document.createElement("iframe")); frame.contentWindow.open = function() { assert_unreached('FAIL: contentDocument.open must not invoke contentWindow.open, contentDocument.open must open a new window with only internal implementation.'); } w = frame.contentDocument.open(1, 1, 1); assert_equals(typeof(w), 'object', 'w should be a window object'); }); </script> </body>
trace-viewer/src/linux_perf_android_parser_test.html
xhteam/external-chromium-trace
<!DOCTYPE html> <html> <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --> <head> <title>LinuxPerfAndroidParser tests</title> <script src="base.js"></script> </head> <body> <script> 'use strict'; base.require('unittest'); base.require('test_utils'); base.require('linux_perf_importer'); function testAndroidUserlandImport() { var lines = [ 'SurfaceFlinger-4831 [001] ...1 80909.598554: tracing_mark_write: B|4829|onMessageReceived', 'SurfaceFlinger-4831 [001] ...1 80909.598572: tracing_mark_write: B|4829|handleMessageInvalidate', 'SurfaceFlinger-4831 [001] ...1 80909.598590: tracing_mark_write: B|4829|latchBuffer', 'SurfaceFlinger-4831 [001] ...1 80909.598604: tracing_mark_write: E', 'SurfaceFlinger-4831 [001] ...1 80909.598627: tracing_mark_write: B|4829|latchBuffer', 'SurfaceFlinger-4831 [001] ...1 80909.598651: tracing_mark_write: B|4829|updateTexImage', 'SurfaceFlinger-4831 [001] ...1 80909.598675: tracing_mark_write: B|4829|acquireBuffer', 'SurfaceFlinger-4831 [001] ...1 80909.598695: tracing_mark_write: B|4829|' + 'com.android.launcher/com.android.launcher2.Launcher: 0', 'SurfaceFlinger-4831 [001] ...1 80909.598709: tracing_mark_write: E', 'SurfaceFlinger-4831 [001] ...1 80909.598733: tracing_mark_write: C|4829|' + 'com.android.launcher/com.android.launcher2.Launcher|0', 'SurfaceFlinger-4831 [001] ...1 80909.598746: tracing_mark_write: E', 'SurfaceFlinger-4831 [001] ...1 80909.598844: tracing_mark_write: B|4829|releaseBuffer', 'SurfaceFlinger-4831 [001] ...1 80909.598862: tracing_mark_write: B|4829|' + 'com.android.launcher/com.android.launcher2.Launcher: 2', 'SurfaceFlinger-4831 [001] ...1 80909.598876: tracing_mark_write: E', 'SurfaceFlinger-4831 [001] ...1 80909.598892: tracing_mark_write: E', 'SurfaceFlinger-4831 [001] ...1 80909.598925: tracing_mark_write: E', 'SurfaceFlinger-4831 [001] ...1 80909.598955: tracing_mark_write: E', 'SurfaceFlinger-4831 [001] ...1 80909.598988: tracing_mark_write: B|4829|latchBuffer', 'SurfaceFlinger-4831 [001] ...1 80909.599001: tracing_mark_write: E', 'SurfaceFlinger-4831 [001] ...1 80909.599021: tracing_mark_write: B|4829|latchBuffer', 'SurfaceFlinger-4831 [001] ...1 80909.599036: tracing_mark_write: E', 'SurfaceFlinger-4831 [001] ...1 80909.599068: tracing_mark_write: E', 'SurfaceFlinger-4831 [001] ...1 80909.599087: tracing_mark_write: E', 'SurfaceFlinger-4831 [001] ...1 80909.599104: tracing_mark_write: E' ]; var m = new tracing.TimelineModel(lines.join('\n'), false); assertEquals(0, m.importErrors.length); var threads = m.getAllThreads(); assertEquals(1, threads.length); var thread = threads[0]; assertEquals(4829, thread.pid); assertEquals(4831, thread.tid); assertEquals('SurfaceFlinger', thread.name); assertEquals(11, thread.slices.length); } function testAndroidUserlandImportWithSpacesInThreadName() { var lines = [ 'Surface Flinger -4831 [001] ...1 80909.598590: tracing_mark_write: B|4829|latchBuffer', 'Surface Flinger -4831 [001] ...1 80909.598604: tracing_mark_write: E', ]; var m = new tracing.TimelineModel(lines.join('\n'), false); assertEquals(0, m.importErrors.length); var threads = m.getAllThreads(); assertEquals(1, threads.length); var thread = threads[0]; assertEquals(4829, thread.pid); assertEquals(4831, thread.tid); assertEquals('Surface Flinger ', thread.name); assertEquals(1, thread.slices.length); } function testAndroidUserlandLegacyKernelImport() { var lines = [ 'SurfaceFlinger-4831 [001] ...1 80909.598554: 0: B|4829|onMessageReceived', 'SurfaceFlinger-4831 [001] ...1 80909.598572: 0: B|4829|handleMessageInvalidate', 'SurfaceFlinger-4831 [001] ...1 80909.598590: 0: B|4829|latchBuffer', 'SurfaceFlinger-4831 [001] ...1 80909.598604: 0: E', 'SurfaceFlinger-4831 [001] ...1 80909.598627: 0: B|4829|latchBuffer', 'SurfaceFlinger-4831 [001] ...1 80909.598651: 0: B|4829|updateTexImage', 'SurfaceFlinger-4831 [001] ...1 80909.598675: 0: B|4829|acquireBuffer', 'SurfaceFlinger-4831 [001] ...1 80909.598695: 0: B|4829|' + 'com.android.launcher/com.android.launcher2.Launcher: 0', 'SurfaceFlinger-4831 [001] ...1 80909.598709: 0: E', 'SurfaceFlinger-4831 [001] ...1 80909.598733: 0: C|4829|' + 'com.android.launcher/com.android.launcher2.Launcher|0', 'SurfaceFlinger-4831 [001] ...1 80909.598746: 0: E', 'SurfaceFlinger-4831 [001] ...1 80909.598844: 0: B|4829|releaseBuffer', 'SurfaceFlinger-4831 [001] ...1 80909.598862: 0: B|4829|' + 'com.android.launcher/com.android.launcher2.Launcher: 2', 'SurfaceFlinger-4831 [001] ...1 80909.598876: 0: E', 'SurfaceFlinger-4831 [001] ...1 80909.598892: 0: E', 'SurfaceFlinger-4831 [001] ...1 80909.598925: 0: E', 'SurfaceFlinger-4831 [001] ...1 80909.598955: 0: E', 'SurfaceFlinger-4831 [001] ...1 80909.598988: 0: B|4829|latchBuffer', 'SurfaceFlinger-4831 [001] ...1 80909.599001: 0: E', 'SurfaceFlinger-4831 [001] ...1 80909.599021: 0: B|4829|latchBuffer', 'SurfaceFlinger-4831 [001] ...1 80909.599036: 0: E', 'SurfaceFlinger-4831 [001] ...1 80909.599068: 0: E', 'SurfaceFlinger-4831 [001] ...1 80909.599087: 0: E', 'SurfaceFlinger-4831 [001] ...1 80909.599104: 0: E' ]; var m = new tracing.TimelineModel(lines.join('\n'), false); assertEquals(0, m.importErrors.length); var threads = m.getAllThreads(); assertEquals(1, threads.length); var thread = threads[0]; assertEquals(4829, thread.pid); assertEquals(4831, thread.tid); assertEquals('SurfaceFlinger', thread.name); assertEquals(11, thread.slices.length); } </script> </body> </html>
wegas-resources/src/main/webapp/lib/yui3/build/autocomplete-list/assets/autocomplete-list-core.css
ghiringh/Wegas
/* YUI 3.17.2 (build 9c3c78e) Copyright 2014 Yahoo! Inc. All rights reserved. Licensed under the BSD License. http://yuilibrary.com/license/ */ .yui3-aclist { position: absolute; z-index: 1; } .yui3-aclist-hidden { visibility: hidden; } .yui3-aclist-aria { /* Hide from sighted users, show to screen readers. */ left: -9999px; position: absolute; } .yui3-aclist-list { list-style: none; margin: 0; overflow: hidden; padding: 0; } .yui3-aclist-item { cursor: pointer; list-style: none; padding: 2px 5px; } .yui3-aclist-item-active { outline: #afafaf dotted thin; }
app/views/sprint13v3/dob-check.html
gavinelliott/gysp
{% extends 'layout.html' %} {% block pageTitle %} State Pension Activation {% endblock %} {% block content %} <!-- #page-container --> <main id="content" role="main" class="group"> {% include 'includes/parts/phase-banner.html' %} <div class="grid-row"> <div class="column-two-thirds"> <h1 class="heading-xlarge">Your date of birth</h1> <div class="form-group"> <fieldset> <legend> <span class="form-label-bold visuallyhidden"> Your date of birth </span> <span class="form-hint" id="dob-hint">For example, 31 3 1980</span> </legend> <div class="form-date"> <div class="form-group form-group-day"> <label class="form-label" for="dob-day">Day</label> <input class="form-control" id="dob-day" name="dob-day" type="number" pattern="[0-9]*" min="0" max="31" aria-describedby="dob-hint"> </div> <div class="form-group form-group-month"> <label class="form-label" for="dob-month">Month</label> <input class="form-control" id="dob-month" name="dob-month" type="number" pattern="[0-9]*" min="0" max="12"> </div> <div class="form-group form-group-year"> <label class="form-label" for="dob-year">Year</label> <input class="form-control" id="dob-year" name="dob-year" type="number" pattern="[0-9]*" min="0" max="2016"> </div> </div> </fieldset> </div> <div class="form-group" class="get-started" id="get-started" style="margin-bottom: 70px;"> <form method="post"> <button class="button" role="button" type="submit">Continue</button> </form> </div> </div> <div class="column-one-third"> {% include 'includes/parts/help.html' %} </div> </div> </main><!-- / #page-container --> {% endblock %}
workbench/phyloblast/dendrogram/d3test/d3/examples/splom/splom.css
adebali/adebali.github.io
line { stroke: #eee; shape-rendering: crispEdges; } rect { cursor: crosshair; }
src/server/client/bower_components/phaser/docs/TileSprite.js.html
nicroto/nsv
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Phaser Source: D:/wamp/www/phaser/src/gameobjects/TileSprite.js</title> <!--[if lt IE 9]> <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <link type="text/css" rel="stylesheet" href="styles/default.css"> <link type="text/css" rel="stylesheet" href="styles/sunlight.default.css"> <link type="text/css" rel="stylesheet" href="styles/site.cerulean.css"> </head> <body> <div class="container-fluid"> <div class="navbar navbar-fixed-top navbar-inverse"> <div style="position: absolute; width: 143px; height: 31px; right: 10px; top: 10px; z-index: 1050"><a href="http://phaser.io"><img src="img/phaser.png" border="0" /></a></div> <div class="navbar-inner"> <a class="brand" href="index.html">Phaser API</a> <ul class="nav"> <li class="dropdown"> <a href="namespaces.list.html" class="dropdown-toggle" data-toggle="dropdown">Namespaces<b class="caret"></b></a> <ul class="dropdown-menu "> <li class="class-depth-0"> <a href="Phaser.html">Phaser</a> </li> <li class="class-depth-0"> <a href="PIXI.html">PIXI</a> </li> </ul> </li> <li class="dropdown"> <a href="classes.list.html" class="dropdown-toggle" data-toggle="dropdown">Classes<b class="caret"></b></a> <ul class="dropdown-menu "> <li class="class-depth-1"> <a href="Phaser.Animation.html">Animation</a> </li> <li class="class-depth-1"> <a href="Phaser.AnimationManager.html">AnimationManager</a> </li> <li class="class-depth-1"> <a href="Phaser.AnimationParser.html">AnimationParser</a> </li> <li class="class-depth-1"> <a href="Phaser.ArrayList.html">ArrayList</a> </li> <li class="class-depth-1"> <a href="Phaser.ArraySet.html">ArraySet</a> </li> <li class="class-depth-1"> <a href="Phaser.ArrayUtils.html">ArrayUtils</a> </li> <li class="class-depth-1"> <a href="Phaser.AudioSprite.html">AudioSprite</a> </li> <li class="class-depth-1"> <a href="Phaser.BitmapData.html">BitmapData</a> </li> <li class="class-depth-1"> <a href="Phaser.BitmapText.html">BitmapText</a> </li> <li class="class-depth-1"> <a href="Phaser.Button.html">Button</a> </li> <li class="class-depth-1"> <a href="Phaser.Cache.html">Cache</a> </li> <li class="class-depth-1"> <a href="Phaser.Camera.html">Camera</a> </li> <li class="class-depth-1"> <a href="Phaser.Canvas.html">Canvas</a> </li> <li class="class-depth-1"> <a href="Phaser.Circle.html">Circle</a> </li> <li class="class-depth-1"> <a href="Phaser.Color.html">Color</a> </li> <li class="class-depth-1"> <a href="Phaser.Device.html">Device</a> </li> <li class="class-depth-1"> <a href="Phaser.DOM.html">DOM</a> </li> <li class="class-depth-1"> <a href="Phaser.Easing.html">Easing</a> </li> <li class="class-depth-1"> <a href="Phaser.Ellipse.html">Ellipse</a> </li> <li class="class-depth-1"> <a href="Phaser.Events.html">Events</a> </li> <li class="class-depth-1"> <a href="Phaser.Filter.html">Filter</a> </li> <li class="class-depth-1"> <a href="Phaser.FlexGrid.html">FlexGrid</a> </li> <li class="class-depth-1"> <a href="Phaser.FlexLayer.html">FlexLayer</a> </li> <li class="class-depth-1"> <a href="Phaser.Frame.html">Frame</a> </li> <li class="class-depth-1"> <a href="Phaser.FrameData.html">FrameData</a> </li> <li class="class-depth-1"> <a href="Phaser.Game.html">Game</a> </li> <li class="class-depth-1"> <a href="Phaser.GameObjectCreator.html">GameObjectCreator</a> </li> <li class="class-depth-1"> <a href="Phaser.GameObjectFactory.html">GameObjectFactory</a> </li> <li class="class-depth-1"> <a href="Phaser.Gamepad.html">Gamepad</a> </li> <li class="class-depth-1"> <a href="Phaser.GamepadButton.html">GamepadButton</a> </li> <li class="class-depth-1"> <a href="Phaser.Graphics.html">Graphics</a> </li> <li class="class-depth-1"> <a href="Phaser.Group.html">Group</a> </li> <li class="class-depth-1"> <a href="Phaser.Image.html">Image</a> </li> <li class="class-depth-1"> <a href="Phaser.Input.html">Input</a> </li> <li class="class-depth-1"> <a href="Phaser.InputHandler.html">InputHandler</a> </li> <li class="class-depth-1"> <a href="Phaser.Key.html">Key</a> </li> <li class="class-depth-1"> <a href="Phaser.Keyboard.html">Keyboard</a> </li> <li class="class-depth-1"> <a href="Phaser.Line.html">Line</a> </li> <li class="class-depth-1"> <a href="Phaser.LinkedList.html">LinkedList</a> </li> <li class="class-depth-1"> <a href="Phaser.Loader.html">Loader</a> </li> <li class="class-depth-1"> <a href="Phaser.LoaderParser.html">LoaderParser</a> </li> <li class="class-depth-1"> <a href="Phaser.Math.html">Math</a> </li> <li class="class-depth-1"> <a href="Phaser.Mouse.html">Mouse</a> </li> <li class="class-depth-1"> <a href="Phaser.MSPointer.html">MSPointer</a> </li> <li class="class-depth-1"> <a href="Phaser.Net.html">Net</a> </li> <li class="class-depth-1"> <a href="Phaser.Particle.html">Particle</a> </li> <li class="class-depth-1"> <a href="Phaser.Particles.html">Particles</a> </li> <li class="class-depth-2"> <a href="Phaser.Particles.Arcade.html">Arcade</a> </li> <li class="class-depth-3"> <a href="Phaser.Particles.Arcade.Emitter.html">Emitter</a> </li> <li class="class-depth-1"> <a href="Phaser.Physics.html">Physics</a> </li> <li class="class-depth-2"> <a href="Phaser.Physics.Arcade.html">Arcade</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.Arcade.Body.html">Body</a> </li> <li class="class-depth-2"> <a href="Phaser.Physics.Ninja.html">Ninja</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.Ninja.AABB.html">AABB</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.Ninja.Body.html">Body</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.Ninja.Circle.html">Circle</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.Ninja.Tile.html">Tile</a> </li> <li class="class-depth-2"> <a href="Phaser.Physics.P2.html">P2</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.Body.html">Body</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.BodyDebug.html">BodyDebug</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.CollisionGroup.html">CollisionGroup</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.ContactMaterial.html">ContactMaterial</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.DistanceConstraint.html">DistanceConstraint</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.FixtureList.html">FixtureList</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.GearConstraint.html">GearConstraint</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.InversePointProxy.html">InversePointProxy</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.LockConstraint.html">LockConstraint</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.Material.html">Material</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.PointProxy.html">PointProxy</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.PrismaticConstraint.html">PrismaticConstraint</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.RevoluteConstraint.html">RevoluteConstraint</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.RotationalSpring.html">RotationalSpring</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.Spring.html">Spring</a> </li> <li class="class-depth-1"> <a href="Phaser.Plugin.html">Plugin</a> </li> <li class="class-depth-1"> <a href="Phaser.PluginManager.html">PluginManager</a> </li> <li class="class-depth-1"> <a href="Phaser.Point.html">Point</a> </li> <li class="class-depth-1"> <a href="Phaser.Pointer.html">Pointer</a> </li> <li class="class-depth-1"> <a href="Phaser.Polygon.html">Polygon</a> </li> <li class="class-depth-1"> <a href="Phaser.QuadTree.html">QuadTree</a> </li> <li class="class-depth-1"> <a href="Phaser.RandomDataGenerator.html">RandomDataGenerator</a> </li> <li class="class-depth-1"> <a href="Phaser.Rectangle.html">Rectangle</a> </li> <li class="class-depth-1"> <a href="Phaser.RenderTexture.html">RenderTexture</a> </li> <li class="class-depth-1"> <a href="Phaser.RequestAnimationFrame.html">RequestAnimationFrame</a> </li> <li class="class-depth-1"> <a href="Phaser.RetroFont.html">RetroFont</a> </li> <li class="class-depth-1"> <a href="Phaser.Rope.html">Rope</a> </li> <li class="class-depth-1"> <a href="Phaser.ScaleManager.html">ScaleManager</a> </li> <li class="class-depth-1"> <a href="Phaser.Signal.html">Signal</a> </li> <li class="class-depth-1"> <a href="Phaser.SignalBinding.html">SignalBinding</a> </li> <li class="class-depth-1"> <a href="Phaser.SinglePad.html">SinglePad</a> </li> <li class="class-depth-1"> <a href="Phaser.Sound.html">Sound</a> </li> <li class="class-depth-1"> <a href="Phaser.SoundManager.html">SoundManager</a> </li> <li class="class-depth-1"> <a href="Phaser.Sprite.html">Sprite</a> </li> <li class="class-depth-1"> <a href="Phaser.SpriteBatch.html">SpriteBatch</a> </li> <li class="class-depth-1"> <a href="Phaser.Stage.html">Stage</a> </li> <li class="class-depth-1"> <a href="Phaser.State.html">State</a> </li> <li class="class-depth-1"> <a href="Phaser.StateManager.html">StateManager</a> </li> <li class="class-depth-1"> <a href="Phaser.Text.html">Text</a> </li> <li class="class-depth-1"> <a href="Phaser.Tile.html">Tile</a> </li> <li class="class-depth-1"> <a href="Phaser.Tilemap.html">Tilemap</a> </li> <li class="class-depth-1"> <a href="Phaser.TilemapLayer.html">TilemapLayer</a> </li> <li class="class-depth-1"> <a href="Phaser.TilemapParser.html">TilemapParser</a> </li> <li class="class-depth-1"> <a href="Phaser.Tileset.html">Tileset</a> </li> <li class="class-depth-1"> <a href="Phaser.TileSprite.html">TileSprite</a> </li> <li class="class-depth-1"> <a href="Phaser.Time.html">Time</a> </li> <li class="class-depth-1"> <a href="Phaser.Timer.html">Timer</a> </li> <li class="class-depth-1"> <a href="Phaser.TimerEvent.html">TimerEvent</a> </li> <li class="class-depth-1"> <a href="Phaser.Touch.html">Touch</a> </li> <li class="class-depth-1"> <a href="Phaser.Tween.html">Tween</a> </li> <li class="class-depth-1"> <a href="Phaser.TweenData.html">TweenData</a> </li> <li class="class-depth-1"> <a href="Phaser.TweenManager.html">TweenManager</a> </li> <li class="class-depth-1"> <a href="Phaser.Utils.html">Utils</a> </li> <li class="class-depth-2"> <a href="Phaser.Utils.Debug.html">Debug</a> </li> <li class="class-depth-1"> <a href="Phaser.World.html">World</a> </li> <li class="class-depth-1"> <a href="PIXI.AbstractFilter.html">AbstractFilter</a> </li> <li class="class-depth-1"> <a href="PIXI.AjaxRequest.html">AjaxRequest</a> </li> <li class="class-depth-1"> <a href="PIXI.AlphaMaskFilter.html">AlphaMaskFilter</a> </li> <li class="class-depth-1"> <a href="PIXI.AsciiFilter.html">AsciiFilter</a> </li> <li class="class-depth-1"> <a href="PIXI.AssetLoader.html">AssetLoader</a> </li> <li class="class-depth-1"> <a href="PIXI.AtlasLoader.html">AtlasLoader</a> </li> <li class="class-depth-1"> <a href="PIXI.BaseTexture.html">BaseTexture</a> </li> <li class="class-depth-1"> <a href="PIXI.BitmapFontLoader.html">BitmapFontLoader</a> </li> <li class="class-depth-1"> <a href="PIXI.BitmapText.html">BitmapText</a> </li> <li class="class-depth-1"> <a href="PIXI.BlurFilter.html">BlurFilter</a> </li> <li class="class-depth-1"> <a href="PIXI.BlurXFilter.html">BlurXFilter</a> </li> <li class="class-depth-1"> <a href="PIXI.BlurYFilter.html">BlurYFilter</a> </li> <li class="class-depth-1"> <a href="PIXI.CanvasBuffer.html">CanvasBuffer</a> </li> <li class="class-depth-1"> <a href="PIXI.CanvasGraphics.html">CanvasGraphics</a> </li> <li class="class-depth-1"> <a href="PIXI.CanvasMaskManager.html">CanvasMaskManager</a> </li> <li class="class-depth-1"> <a href="PIXI.CanvasRenderer.html">CanvasRenderer</a> </li> <li class="class-depth-1"> <a href="PIXI.CanvasTinter.html">CanvasTinter</a> </li> <li class="class-depth-1"> <a href="PIXI.Circle.html">Circle</a> </li> <li class="class-depth-1"> <a href="PIXI.ColorMatrixFilter.html">ColorMatrixFilter</a> </li> <li class="class-depth-1"> <a href="PIXI.ColorStepFilter.html">ColorStepFilter</a> </li> <li class="class-depth-1"> <a href="PIXI.ComplexPrimitiveShader.html">ComplexPrimitiveShader</a> </li> <li class="class-depth-1"> <a href="PIXI.ConvolutionFilter.html">ConvolutionFilter</a> </li> <li class="class-depth-1"> <a href="PIXI.CrossHatchFilter.html">CrossHatchFilter</a> </li> <li class="class-depth-1"> <a href="PIXI.DisplacementFilter.html">DisplacementFilter</a> </li> <li class="class-depth-1"> <a href="PIXI.DisplayObject.html">DisplayObject</a> </li> <li class="class-depth-1"> <a href="PIXI.DisplayObjectContainer.html">DisplayObjectContainer</a> </li> <li class="class-depth-1"> <a href="PIXI.DotScreenFilter.html">DotScreenFilter</a> </li> <li class="class-depth-1"> <a href="PIXI.Ellipse.html">Ellipse</a> </li> <li class="class-depth-1"> <a href="PIXI.Event.html">Event</a> </li> <li class="class-depth-1"> <a href="PIXI.EventTarget.html">EventTarget</a> </li> <li class="class-depth-1"> <a href="PIXI.FilterBlock.html">FilterBlock</a> </li> <li class="class-depth-1"> <a href="PIXI.FilterTexture.html">FilterTexture</a> </li> <li class="class-depth-1"> <a href="PIXI.Graphics.html">Graphics</a> </li> <li class="class-depth-1"> <a href="PIXI.GraphicsData.html">GraphicsData</a> </li> <li class="class-depth-1"> <a href="PIXI.GrayFilter.html">GrayFilter</a> </li> <li class="class-depth-1"> <a href="PIXI.ImageLoader.html">ImageLoader</a> </li> <li class="class-depth-1"> <a href="PIXI.InteractionData.html">InteractionData</a> </li> <li class="class-depth-1"> <a href="PIXI.InteractionManager.html">InteractionManager</a> </li> <li class="class-depth-1"> <a href="PIXI.InvertFilter.html">InvertFilter</a> </li> <li class="class-depth-1"> <a href="PIXI.JsonLoader.html">JsonLoader</a> </li> <li class="class-depth-1"> <a href="PIXI.Matrix.html">Matrix</a> </li> <li class="class-depth-1"> <a href="PIXI.MovieClip.html">MovieClip</a> </li> <li class="class-depth-1"> <a href="PIXI.NoiseFilter.html">NoiseFilter</a> </li> <li class="class-depth-1"> <a href="PIXI.NormalMapFilter.html">NormalMapFilter</a> </li> <li class="class-depth-1"> <a href="PIXI.PixelateFilter.html">PixelateFilter</a> </li> <li class="class-depth-1"> <a href="PIXI.PIXI.html">PIXI</a> </li> <li class="class-depth-1"> <a href="PIXI.PixiFastShader.html">PixiFastShader</a> </li> <li class="class-depth-1"> <a href="PIXI.PixiShader.html">PixiShader</a> </li> <li class="class-depth-1"> <a href="PIXI.Point.html">Point</a> </li> <li class="class-depth-1"> <a href="PIXI.Polygon.html">Polygon</a> </li> <li class="class-depth-1"> <a href="PIXI.PolyK.html">PolyK</a> </li> <li class="class-depth-1"> <a href="PIXI.PrimitiveShader.html">PrimitiveShader</a> </li> <li class="class-depth-1"> <a href="PIXI.Rectangle.html">Rectangle</a> </li> <li class="class-depth-1"> <a href="PIXI.RenderTexture.html">RenderTexture</a> </li> <li class="class-depth-1"> <a href="PIXI.RGBSplitFilter.html">RGBSplitFilter</a> </li> <li class="class-depth-1"> <a href="PIXI.Rope.html">Rope</a> </li> <li class="class-depth-1"> <a href="PIXI.RoundedRectangle.html">RoundedRectangle</a> </li> <li class="class-depth-1"> <a href="PIXI.SepiaFilter.html">SepiaFilter</a> </li> <li class="class-depth-1"> <a href="PIXI.SmartBlurFilter.html">SmartBlurFilter</a> </li> <li class="class-depth-1"> <a href="PIXI.Spine.html">Spine</a> </li> <li class="class-depth-1"> <a href="PIXI.SpineLoader.html">SpineLoader</a> </li> <li class="class-depth-1"> <a href="PIXI.SpineTextureLoader.html">SpineTextureLoader</a> </li> <li class="class-depth-1"> <a href="PIXI.Sprite.html">Sprite</a> </li> <li class="class-depth-1"> <a href="PIXI.SpriteBatch.html">SpriteBatch</a> </li> <li class="class-depth-1"> <a href="PIXI.SpriteSheetLoader.html">SpriteSheetLoader</a> </li> <li class="class-depth-1"> <a href="PIXI.Stage.html">Stage</a> </li> <li class="class-depth-1"> <a href="PIXI.Strip.html">Strip</a> </li> <li class="class-depth-1"> <a href="PIXI.StripShader.html">StripShader</a> </li> <li class="class-depth-1"> <a href="PIXI.Text.html">Text</a> </li> <li class="class-depth-1"> <a href="PIXI.Texture.html">Texture</a> </li> <li class="class-depth-1"> <a href="PIXI.TilingSprite.html">TilingSprite</a> </li> <li class="class-depth-1"> <a href="PIXI.TiltShiftFilter.html">TiltShiftFilter</a> </li> <li class="class-depth-1"> <a href="PIXI.TiltShiftXFilter.html">TiltShiftXFilter</a> </li> <li class="class-depth-1"> <a href="PIXI.TiltShiftYFilter.html">TiltShiftYFilter</a> </li> <li class="class-depth-1"> <a href="PIXI.TwistFilter.html">TwistFilter</a> </li> <li class="class-depth-1"> <a href="PIXI.VideoTexture.html">VideoTexture</a> </li> <li class="class-depth-1"> <a href="PIXI.WebGLBlendModeManager.html">WebGLBlendModeManager</a> </li> <li class="class-depth-1"> <a href="PIXI.WebGLFastSpriteBatch.html">WebGLFastSpriteBatch</a> </li> <li class="class-depth-1"> <a href="PIXI.WebGLFilterManager.html">WebGLFilterManager</a> </li> <li class="class-depth-1"> <a href="PIXI.WebGLRenderer.html">WebGLRenderer</a> </li> </ul> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Core<b class="caret"></b></a> <ul class="dropdown-menu "> <li class="class-depth-1"><a href="Phaser.Game.html">Game</a></li> <li class="class-depth-1"><a href="Phaser.Group.html">Group</a></li> <li class="class-depth-1"><a href="Phaser.World.html">World</a></li> <li class="class-depth-1"><a href="Phaser.Loader.html">Loader</a></li> <li class="class-depth-1"><a href="Phaser.Time.html">Time</a></li> <li class="class-depth-1"><a href="Phaser.Camera.html">Camera</a></li> <li class="class-depth-1"><a href="Phaser.StateManager.html">State Manager</a></li> <li class="class-depth-1"><a href="Phaser.TweenManager.html">Tween Manager</a></li> <li class="class-depth-1"><a href="Phaser.SoundManager.html">Sound Manager</a></li> <li class="class-depth-1"><a href="Phaser.InputManager.html">Input Manager</a></li> <li class="class-depth-1"><a href="Phaser.ScaleManager.html">Scale Manager</a></li> </ul> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Game Objects<b class="caret"></b></a> <ul class="dropdown-menu "> <li class="class-depth-1"><a href="Phaser.GameObjectFactory.html">Factory (game.add)</a></li> <li class="class-depth-1"><a href="Phaser.GameObjectCreator.html">Creator (game.make)</a></li> <li class="class-depth-1"><a href="Phaser.Sprite.html">Sprite</a></li> <li class="class-depth-1"><a href="Phaser.Image.html">Image</a></li> <li class="class-depth-1"><a href="Phaser.Sound.html">Sound</a></li> <li class="class-depth-1"><a href="Phaser.Emitter.html">Emitter</a></li> <li class="class-depth-1"><a href="Phaser.Particle.html">Particle</a></li> <li class="class-depth-1"><a href="Phaser.Text.html">Text</a></li> <li class="class-depth-1"><a href="Phaser.Tween.html">Tween</a></li> <li class="class-depth-1"><a href="Phaser.BitmapText.html">BitmapText</a></li> <li class="class-depth-1"><a href="Phaser.Tilemap.html">Tilemap</a></li> <li class="class-depth-1"><a href="Phaser.BitmapData.html">BitmapData</a></li> <li class="class-depth-1"><a href="Phaser.RetroFont.html">RetroFont</a></li> <li class="class-depth-1"><a href="Phaser.Button.html">Button</a></li> <li class="class-depth-1"><a href="Phaser.Animation.html">Animation</a></li> <li class="class-depth-1"><a href="Phaser.Graphics.html">Graphics</a></li> <li class="class-depth-1"><a href="Phaser.RenderTexture.html">RenderTexture</a></li> <li class="class-depth-1"><a href="Phaser.TileSprite.html">TileSprite</a></li> </ul> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Geometry<b class="caret"></b></a> <ul class="dropdown-menu "> <li class="class-depth-1"><a href="Phaser.Circle.html">Circle</a></li> <li class="class-depth-1"><a href="Phaser.Rectangle.html">Rectangle</a></li> <li class="class-depth-1"><a href="Phaser.Point.html">Point</a></li> <li class="class-depth-1"><a href="Phaser.Line.html">Line</a></li> <li class="class-depth-1"><a href="Phaser.Ellipse.html">Ellipse</a></li> <li class="class-depth-1"><a href="Phaser.Polygon.html">Polygon</a></li> </ul> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Physics<b class="caret"></b></a> <ul class="dropdown-menu "> <li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li> <li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li> <li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li> <li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li> <li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li> <li class="class-depth-2"><a href="Phaser.Physics.P2.CollisionGroup.html">CollisionGroup</a></li> <li class="class-depth-2"><a href="Phaser.Physics.P2.ContactMaterial.html">ContactMaterial</a></li> <li class="class-depth-1"><a href="Phaser.Physics.Ninja.html">Ninja Physics</a></li> <li class="class-depth-2"><a href="Phaser.Physics.Body.html">Body</a></li> </ul> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Input<b class="caret"></b></a> <ul class="dropdown-menu "> <li class="class-depth-1"><a href="Phaser.InputHandler.html">Input Handler</a></li> <li class="class-depth-1"><a href="Phaser.Pointer.html">Pointer</a></li> <li class="class-depth-1"><a href="Phaser.Mouse.html">Mouse</a></li> <li class="class-depth-1"><a href="Phaser.Keyboard.html">Keyboard</a></li> <li class="class-depth-1"><a href="Phaser.Key.html">Key</a></li> <li class="class-depth-1"><a href="Phaser.Gamepad.html">Gamepad</a></li> </ul> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Community<b class="caret"></b></a> <ul class="dropdown-menu "> <li class="class-depth-1"><a href="https://github.com/photonstorm/phaser">Phaser Github</a></li> <li class="class-depth-1"><a href="http://examples.phaser.io">Phaser Examples</a></li> <li class="class-depth-1"><a href="https://github.com/photonstorm/phaser-plugins">Phaser Plugins</a></li> <li class="class-depth-1"><a href="http://www.html5gamedevs.com/forum/14-phaser/">Forum</a></li> <li class="class-depth-1"><a href="http://stackoverflow.com/questions/tagged/phaser-framework">Stack Overflow</a></li> <li class="class-depth-1"><a href="https://confirmsubscription.com/h/r/369DE48E3E86AF1E">Newsletter</a></li> <li class="class-depth-1"><a href="https://twitter.com/photonstorm">Twitter</a></li> <li class="class-depth-1"><a href="http://www.html5gamedevs.com/topic/4470-official-phaserio-irc-channel-phaserio-on-freenode/">IRC</a></li> <li class="class-depth-1"><a href="https://leanpub.com/u/photonstorm">Phaser Books</a></li> <li class="class-depth-1"><a href="https://www.gittip.com/photonstorm/">GitTip</a></li> </ul> </li> </ul> </div> </div> <div class="row-fluid"> <div class="span12"> <div id="main"> <h1 class="page-title">Source: D:/wamp/www/phaser/src/gameobjects/TileSprite.js</h1> <section> <article> <pre class="sunlight-highlight-javascript linenums">/** * @author Richard Davey &lt;rich@photonstorm.com> * @copyright 2014 Photon Storm Ltd. * @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License} */ /** * A TileSprite is a Sprite that has a repeating texture. The texture can be scrolled and scaled and will automatically wrap on the edges as it does so. * Please note that TileSprites, as with normal Sprites, have no input handler or physics bodies by default. Both need enabling. * * @class Phaser.TileSprite * @constructor * @extends PIXI.TilingSprite * @param {Phaser.Game} game - A reference to the currently running game. * @param {number} x - The x coordinate (in world space) to position the TileSprite at. * @param {number} y - The y coordinate (in world space) to position the TileSprite at. * @param {number} width - The width of the TileSprite. * @param {number} height - The height of the TileSprite. * @param {string|Phaser.RenderTexture|Phaser.BitmapData|PIXI.Texture} key - This is the image or texture used by the TileSprite during rendering. It can be a string which is a reference to the Cache entry, or an instance of a RenderTexture or PIXI.Texture. * @param {string|number} frame - If this TileSprite is using part of a sprite sheet or texture atlas you can specify the exact frame to use by giving a string or numeric index. */ Phaser.TileSprite = function (game, x, y, width, height, key, frame) { x = x || 0; y = y || 0; width = width || 256; height = height || 256; key = key || null; frame = frame || null; /** * @property {Phaser.Game} game - A reference to the currently running Game. */ this.game = game; /** * @property {string} name - The user defined name given to this Sprite. * @default */ this.name = ''; /** * @property {number} type - The const type of this object. * @readonly */ this.type = Phaser.TILESPRITE; /** * @property {number} z - The z-depth value of this object within its Group (remember the World is a Group as well). No two objects in a Group can have the same z value. */ this.z = 0; /** * @property {Phaser.Events} events - The Events you can subscribe to that are dispatched when certain things happen on this Sprite or its components. */ this.events = new Phaser.Events(this); /** * @property {Phaser.AnimationManager} animations - This manages animations of the sprite. You can modify animations through it (see Phaser.AnimationManager) */ this.animations = new Phaser.AnimationManager(this); /** * @property {string|Phaser.RenderTexture|Phaser.BitmapData|PIXI.Texture} key - This is the image or texture used by the Sprite during rendering. It can be a string which is a reference to the Cache entry, or an instance of a RenderTexture, BitmapData or PIXI.Texture. */ this.key = key; /** * @property {number} _frame - Internal cache var. * @private */ this._frame = 0; /** * @property {string} _frameName - Internal cache var. * @private */ this._frameName = ''; /** * @property {Phaser.Point} _scroll - Internal cache var. * @private */ this._scroll = new Phaser.Point(); PIXI.TilingSprite.call(this, PIXI.TextureCache['__default'], width, height); this.position.set(x, y); /** * @property {Phaser.InputHandler|null} input - The Input Handler for this object. Needs to be enabled with image.inputEnabled = true before you can use it. */ this.input = null; /** * @property {Phaser.Point} world - The world coordinates of this Sprite. This differs from the x/y coordinates which are relative to the Sprites container. */ this.world = new Phaser.Point(x, y); /** * Should this Sprite be automatically culled if out of range of the camera? * A culled sprite has its renderable property set to 'false'. * Be advised this is quite an expensive operation, as it has to calculate the bounds of the object every frame, so only enable it if you really need it. * * @property {boolean} autoCull - A flag indicating if the Sprite should be automatically camera culled or not. * @default */ this.autoCull = false; /** * If true the Sprite checks if it is still within the world each frame, when it leaves the world it dispatches Sprite.events.onOutOfBounds * and optionally kills the sprite (if Sprite.outOfBoundsKill is true). By default this is disabled because the Sprite has to calculate its * bounds every frame to support it, and not all games need it. Enable it by setting the value to true. * @property {boolean} checkWorldBounds * @default */ this.checkWorldBounds = false; /** * @property {Phaser.Point} cameraOffset - If this object is fixedToCamera then this stores the x/y offset that its drawn at, from the top-left of the camera view. */ this.cameraOffset = new Phaser.Point(); /** * By default Sprites won't add themselves to any physics system and their physics body will be `null`. * To enable them for physics you need to call `game.physics.enable(sprite, system)` where `sprite` is this object * and `system` is the Physics system you want to use to manage this body. Once enabled you can access all physics related properties via `Sprite.body`. * * Important: Enabling a Sprite for P2 or Ninja physics will automatically set `Sprite.anchor` to 0.5 so the physics body is centered on the Sprite. * If you need a different result then adjust or re-create the Body shape offsets manually, and/or reset the anchor after enabling physics. * * @property {Phaser.Physics.Arcade.Body|Phaser.Physics.P2.Body|Phaser.Physics.Ninja.Body|null} body * @default */ this.body = null; /** * @property {boolean} alive - A useful boolean to control if the TileSprite is alive or dead (in terms of your gameplay, it doesn't effect rendering). * @default */ this.alive = true; /** * A small internal cache: * 0 = previous position.x * 1 = previous position.y * 2 = previous rotation * 3 = renderID * 4 = fresh? (0 = no, 1 = yes) * 5 = outOfBoundsFired (0 = no, 1 = yes) * 6 = exists (0 = no, 1 = yes) * 7 = fixed to camera (0 = no, 1 = yes) * 8 = destroy phase? (0 = no, 1 = yes) * @property {Array} _cache * @private */ this._cache = [ 0, 0, 0, 0, 1, 0, 1, 0, 0 ]; this.loadTexture(key, frame); }; Phaser.TileSprite.prototype = Object.create(PIXI.TilingSprite.prototype); Phaser.TileSprite.prototype.constructor = Phaser.TileSprite; /** * Automatically called by World.preUpdate. * * @method Phaser.TileSprite#preUpdate * @memberof Phaser.TileSprite */ Phaser.TileSprite.prototype.preUpdate = function() { if (this._cache[4] === 1 && this.exists) { this.world.setTo(this.parent.position.x + this.position.x, this.parent.position.y + this.position.y); this.worldTransform.tx = this.world.x; this.worldTransform.ty = this.world.y; this._cache[0] = this.world.x; this._cache[1] = this.world.y; this._cache[2] = this.rotation; if (this.body) { this.body.preUpdate(); } this._cache[4] = 0; return false; } this._cache[0] = this.world.x; this._cache[1] = this.world.y; this._cache[2] = this.rotation; if (!this.exists || !this.parent.exists) { // Reset the renderOrderID this._cache[3] = -1; return false; } // Cache the bounds if we need it if (this.autoCull || this.checkWorldBounds) { this._bounds.copyFrom(this.getBounds()); } if (this.autoCull) { // Won't get rendered but will still get its transform updated this.renderable = this.game.world.camera.screenView.intersects(this._bounds); } if (this.checkWorldBounds) { // The Sprite is already out of the world bounds, so let's check to see if it has come back again if (this._cache[5] === 1 && this.game.world.bounds.intersects(this._bounds)) { this._cache[5] = 0; this.events.onEnterBounds$dispatch(this); } else if (this._cache[5] === 0 && !this.game.world.bounds.intersects(this._bounds)) { // The Sprite WAS in the screen, but has now left. this._cache[5] = 1; this.events.onOutOfBounds$dispatch(this); } } this.world.setTo(this.game.camera.x + this.worldTransform.tx, this.game.camera.y + this.worldTransform.ty); if (this.visible) { this._cache[3] = this.game.stage.currentRenderOrderID++; } this.animations.update(); if (this._scroll.x !== 0) { this.tilePosition.x += this._scroll.x * this.game.time.physicsElapsed; } if (this._scroll.y !== 0) { this.tilePosition.y += this._scroll.y * this.game.time.physicsElapsed; } if (this.body) { this.body.preUpdate(); } // Update any Children for (var i = 0, len = this.children.length; i &lt; len; i++) { this.children[i].preUpdate(); } return true; }; /** * Override and use this function in your own custom objects to handle any update requirements you may have. * * @method Phaser.TileSprite#update * @memberof Phaser.TileSprite */ Phaser.TileSprite.prototype.update = function() { }; /** * Internal function called by the World postUpdate cycle. * * @method Phaser.TileSprite#postUpdate * @memberof Phaser.TileSprite */ Phaser.TileSprite.prototype.postUpdate = function() { if (this.exists && this.body) { this.body.postUpdate(); } // Fixed to Camera? if (this._cache[7] === 1) { this.position.x = this.game.camera.view.x + this.cameraOffset.x; this.position.y = this.game.camera.view.y + this.cameraOffset.y; } // Update any Children for (var i = 0, len = this.children.length; i &lt; len; i++) { this.children[i].postUpdate(); } }; /** * Sets this TileSprite to automatically scroll in the given direction until stopped via TileSprite.stopScroll(). * The scroll speed is specified in pixels per second. * A negative x value will scroll to the left. A positive x value will scroll to the right. * A negative y value will scroll up. A positive y value will scroll down. * * @method Phaser.TileSprite#autoScroll * @memberof Phaser.TileSprite * @param {number} x - Horizontal scroll speed in pixels per second. * @param {number} y - Vertical scroll speed in pixels per second. */ Phaser.TileSprite.prototype.autoScroll = function(x, y) { this._scroll.set(x, y); }; /** * Stops an automatically scrolling TileSprite. * * @method Phaser.TileSprite#stopScroll * @memberof Phaser.TileSprite */ Phaser.TileSprite.prototype.stopScroll = function() { this._scroll.set(0, 0); }; /** * Changes the Texture the TileSprite is using entirely. The old texture is removed and the new one is referenced or fetched from the Cache. * This causes a WebGL texture update, so use sparingly or in low-intensity portions of your game. * * @method Phaser.TileSprite#loadTexture * @memberof Phaser.TileSprite * @param {string|Phaser.RenderTexture|Phaser.BitmapData|PIXI.Texture} key - This is the image or texture used by the TileSprite during rendering. It can be a string which is a reference to the Cache entry, or an instance of a RenderTexture, BitmapData or PIXI.Texture. * @param {string|number} frame - If this TileSprite is using part of a sprite sheet or texture atlas you can specify the exact frame to use by giving a string or numeric index. */ Phaser.TileSprite.prototype.loadTexture = function (key, frame) { frame = frame || 0; this.key = key; if (key instanceof Phaser.RenderTexture) { this.key = key.key; this.setTexture(key); } else if (key instanceof Phaser.BitmapData) { this.setTexture(key.texture); } else if (key instanceof PIXI.Texture) { this.setTexture(key); } else { if (key === null || typeof key === 'undefined') { this.key = '__default'; this.setTexture(PIXI.TextureCache[this.key]); } else if (typeof key === 'string' && !this.game.cache.checkImageKey(key)) { console.warn("Texture with key '" + key + "' not found."); this.key = '__missing'; this.setTexture(PIXI.TextureCache[this.key]); } else { this.setTexture(new PIXI.Texture(PIXI.BaseTextureCache[key])); this.animations.loadFrameData(this.game.cache.getFrameData(key), frame); } } this.texture.baseTexture.dirty(); }; /** * Sets the Texture frame the TileSprite uses for rendering. * This is primarily an internal method used by TileSprite.loadTexture, although you may call it directly. * * @method Phaser.TileSprite#setFrame * @memberof Phaser.TileSprite * @param {Phaser.Frame} frame - The Frame to be used by the TileSprite texture. */ Phaser.TileSprite.prototype.setFrame = function(frame) { this.texture.frame.x = frame.x; this.texture.frame.y = frame.y; this.texture.frame.width = frame.width; this.texture.frame.height = frame.height; this.texture.crop.x = frame.x; this.texture.crop.y = frame.y; this.texture.crop.width = frame.width; this.texture.crop.height = frame.height; if (frame.trimmed) { if (this.texture.trim) { this.texture.trim.x = frame.spriteSourceSizeX; this.texture.trim.y = frame.spriteSourceSizeY; this.texture.trim.width = frame.sourceSizeW; this.texture.trim.height = frame.sourceSizeH; } else { this.texture.trim = { x: frame.spriteSourceSizeX, y: frame.spriteSourceSizeY, width: frame.sourceSizeW, height: frame.sourceSizeH }; } this.texture.width = frame.sourceSizeW; this.texture.height = frame.sourceSizeH; this.texture.frame.width = frame.sourceSizeW; this.texture.frame.height = frame.sourceSizeH; } else if (!frame.trimmed && this.texture.trim) { this.texture.trim = null; } this.texture._updateUvs(); }; /** * Destroys the TileSprite. This removes it from its parent group, destroys the event and animation handlers if present * and nulls its reference to game, freeing it up for garbage collection. * * @method Phaser.TileSprite#destroy * @memberof Phaser.TileSprite * @param {boolean} [destroyChildren=true] - Should every child of this object have its destroy method called? */ Phaser.TileSprite.prototype.destroy = function(destroyChildren) { if (this.game === null || this.destroyPhase) { return; } if (typeof destroyChildren === 'undefined') { destroyChildren = true; } this._cache[8] = 1; if (this.events) { this.events.onDestroy$dispatch(this); } if (this.filters) { this.filters = null; } if (this.parent) { if (this.parent instanceof Phaser.Group) { this.parent.remove(this); } else { this.parent.removeChild(this); } } this.animations.destroy(); this.events.destroy(); var i = this.children.length; if (destroyChildren) { while (i--) { this.children[i].destroy(destroyChildren); } } else { while (i--) { this.removeChild(this.children[i]); } } this.exists = false; this.visible = false; this.alive = false; this.filters = null; this.mask = null; this.game = null; this._cache[8] = 0; }; /** * Play an animation based on the given key. The animation should previously have been added via sprite.animations.add() * If the requested animation is already playing this request will be ignored. If you need to reset an already running animation do so directly on the Animation object itself. * * @method Phaser.TileSprite#play * @memberof Phaser.TileSprite * @param {string} name - The name of the animation to be played, e.g. "fire", "walk", "jump". * @param {number} [frameRate=null] - The framerate to play the animation at. The speed is given in frames per second. If not provided the previously set frameRate of the Animation is used. * @param {boolean} [loop=false] - Should the animation be looped after playback. If not provided the previously set loop value of the Animation is used. * @param {boolean} [killOnComplete=false] - If set to true when the animation completes (only happens if loop=false) the parent Sprite will be killed. * @return {Phaser.Animation} A reference to playing Animation instance. */ Phaser.TileSprite.prototype.play = function (name, frameRate, loop, killOnComplete) { return this.animations.play(name, frameRate, loop, killOnComplete); }; /** * Resets the TileSprite. This places the TileSprite at the given x/y world coordinates, resets the tilePosition and then * sets alive, exists, visible and renderable all to true. Also resets the outOfBounds state. * If the TileSprite has a physics body that too is reset. * * @method Phaser.TileSprite#reset * @memberof Phaser.TileSprite * @param {number} x - The x coordinate (in world space) to position the Sprite at. * @param {number} y - The y coordinate (in world space) to position the Sprite at. * @return (Phaser.TileSprite) This instance. */ Phaser.TileSprite.prototype.reset = function(x, y) { this.world.setTo(x, y); this.position.x = x; this.position.y = y; this.alive = true; this.exists = true; this.visible = true; this.renderable = true; this._outOfBoundsFired = false; this.tilePosition.x = 0; this.tilePosition.y = 0; if (this.body) { this.body.reset(x, y, false, false); } this._cache[4] = 1; return this; }; /** * Indicates the rotation of the Sprite, in degrees, from its original orientation. Values from 0 to 180 represent clockwise rotation; values from 0 to -180 represent counterclockwise rotation. * Values outside this range are added to or subtracted from 360 to obtain a value within the range. For example, the statement player.angle = 450 is the same as player.angle = 90. * If you wish to work in radians instead of degrees use the property Sprite.rotation instead. Working in radians is also a little faster as it doesn't have to convert the angle. * * @name Phaser.TileSprite#angle * @property {number} angle - The angle of this Sprite in degrees. */ Object.defineProperty(Phaser.TileSprite.prototype, "angle", { get: function() { return Phaser.Math.wrapAngle(Phaser.Math.radToDeg(this.rotation)); }, set: function(value) { this.rotation = Phaser.Math.degToRad(Phaser.Math.wrapAngle(value)); } }); /** * @name Phaser.TileSprite#frame * @property {number} frame - Gets or sets the current frame index and updates the Texture Cache for display. */ Object.defineProperty(Phaser.TileSprite.prototype, "frame", { get: function () { return this.animations.frame; }, set: function (value) { if (value !== this.animations.frame) { this.animations.frame = value; } } }); /** * @name Phaser.TileSprite#frameName * @property {string} frameName - Gets or sets the current frame name and updates the Texture Cache for display. */ Object.defineProperty(Phaser.TileSprite.prototype, "frameName", { get: function () { return this.animations.frameName; }, set: function (value) { if (value !== this.animations.frameName) { this.animations.frameName = value; } } }); /** * An TileSprite that is fixed to the camera uses its x/y coordinates as offsets from the top left of the camera. These are stored in TileSprite.cameraOffset. * Note that the cameraOffset values are in addition to any parent in the display list. * So if this TileSprite was in a Group that has x: 200, then this will be added to the cameraOffset.x * * @name Phaser.TileSprite#fixedToCamera * @property {boolean} fixedToCamera - Set to true to fix this TileSprite to the Camera at its current world coordinates. */ Object.defineProperty(Phaser.TileSprite.prototype, "fixedToCamera", { get: function () { return !!this._cache[7]; }, set: function (value) { if (value) { this._cache[7] = 1; this.cameraOffset.set(this.x, this.y); } else { this._cache[7] = 0; } } }); /** * TileSprite.exists controls if the core game loop and physics update this TileSprite or not. * When you set TileSprite.exists to false it will remove its Body from the physics world (if it has one) and also set TileSprite.visible to false. * Setting TileSprite.exists to true will re-add the Body to the physics world (if it has a body) and set TileSprite.visible to true. * * @name Phaser.TileSprite#exists * @property {boolean} exists - If the TileSprite is processed by the core game update and physics. */ Object.defineProperty(Phaser.TileSprite.prototype, "exists", { get: function () { return !!this._cache[6]; }, set: function (value) { if (value) { // exists = true this._cache[6] = 1; if (this.body && this.body.type === Phaser.Physics.P2JS) { this.body.addToWorld(); } this.visible = true; } else { // exists = false this._cache[6] = 0; if (this.body && this.body.type === Phaser.Physics.P2JS) { this.body.safeRemove = true; } this.visible = false; } } }); /** * By default a TileSprite won't process any input events at all. By setting inputEnabled to true the Phaser.InputHandler is * activated for this object and it will then start to process click/touch events and more. * * @name Phaser.TileSprite#inputEnabled * @property {boolean} inputEnabled - Set to true to allow this object to receive input events. */ Object.defineProperty(Phaser.TileSprite.prototype, "inputEnabled", { get: function () { return (this.input && this.input.enabled); }, set: function (value) { if (value) { if (this.input === null) { this.input = new Phaser.InputHandler(this); this.input.start(); } else if (this.input && !this.input.enabled) { this.input.start(); } } else { if (this.input && this.input.enabled) { this.input.stop(); } } } }); /** * The position of the TileSprite on the x axis relative to the local coordinates of the parent. * * @name Phaser.TileSprite#x * @property {number} x - The position of the TileSprite on the x axis relative to the local coordinates of the parent. */ Object.defineProperty(Phaser.TileSprite.prototype, "x", { get: function () { return this.position.x; }, set: function (value) { this.position.x = value; if (this.body && this.body.type === Phaser.Physics.ARCADE && this.body.phase === 2) { this.body._reset = 1; } } }); /** * The position of the TileSprite on the y axis relative to the local coordinates of the parent. * * @name Phaser.TileSprite#y * @property {number} y - The position of the TileSprite on the y axis relative to the local coordinates of the parent. */ Object.defineProperty(Phaser.TileSprite.prototype, "y", { get: function () { return this.position.y; }, set: function (value) { this.position.y = value; if (this.body && this.body.type === Phaser.Physics.ARCADE && this.body.phase === 2) { this.body._reset = 1; } } }); /** * @name Phaser.TileSprite#destroyPhase * @property {boolean} destroyPhase - True if this object is currently being destroyed. */ Object.defineProperty(Phaser.TileSprite.prototype, "destroyPhase", { get: function () { return !!this._cache[8]; } }); </pre> </article> </section> </div> <div class="clearfix"></div> <footer> <span class="copyright"> Phaser Copyright © 2012-2014 Photon Storm Ltd. </span> <br /> <span class="jsdoc-message"> Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-dev</a> on Thu Dec 04 2014 11:32:25 GMT-0000 (GMT) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>. </span> </footer> </div> <br clear="both"> </div> </div> <script src="scripts/sunlight.js"></script> <script src="scripts/sunlight.javascript.js"></script> <script src="scripts/sunlight-plugin.doclinks.js"></script> <script src="scripts/sunlight-plugin.linenumbers.js"></script> <script src="scripts/sunlight-plugin.menu.js"></script> <script src="scripts/jquery.min.js"></script> <script src="scripts/jquery.scrollTo.js"></script> <script src="scripts/jquery.localScroll.js"></script> <script src="scripts/bootstrap-dropdown.js"></script> <script src="scripts/toc.js"></script> <script> Sunlight.highlightAll({lineNumbers:true, showMenu: true, enableDoclinks :true}); </script> <script> $( function () { $( "#toc" ).toc( { anchorName : function(i, heading, prefix) { return $(heading).attr("id") || ( prefix + i ); }, selectors : "h1,h2,h3,h4", showAndHide : false, scrollTo : 60 } ); $( "#toc>ul" ).addClass( "nav nav-pills nav-stacked" ); $( "#main span[id^='toc']" ).addClass( "toc-shim" ); } ); </script> </body> </html>
views/main.html
gbockus/gbockus.github.io
<div class="jumbotron"> <h1>'Allo, 'Allo!</h1> <p class="lead"> <img src="images/yeoman.d2754b85.png" alt="I'm Yeoman"><br> Always a pleasure scaffolding your apps. </p> <p><a class="btn btn-lg btn-success" ng-href="#">Splendid!<span class="glyphicon glyphicon-ok"></span></a></p> </div> <div class="row marketing"> <h4>HTML5 Boilerplate</h4> <p> HTML5 Boilerplate is a professional front-end template for building fast, robust, and adaptable web apps or sites. </p> <h4>Angular</h4> <p> AngularJS is a toolset for building the framework most suited to your application development. </p> <h4>Karma</h4> <p>Spectacular Test Runner for JavaScript.</p> </div>
vendor/ncurses/doc/html/man/form_cursor.3x.html
pmq20/ruby-compiler
<!-- * t **************************************************************************** * Copyright (c) 1998-2006,2010 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * * copy of this software and associated documentation files (the * * "Software"), to deal in the Software without restriction, including * * without limitation the rights to use, copy, modify, merge, publish, * * distribute, distribute with modifications, sublicense, and/or sell * * copies of the Software, and to permit persons to whom the Software is * * furnished to do so, subject to the following conditions: * * * * The above copyright notice and this permission notice shall be included * * in all copies or substantial portions of the Software. * * * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, * * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * * THE USE OR OTHER DEALINGS IN THE SOFTWARE. * * * * Except as contained in this notice, the name(s) of the above copyright * * holders shall not be used in advertising or otherwise to promote the * * sale, use or other dealings in this Software without prior written * * authorization. * **************************************************************************** * @Id: form_cursor.3x,v 1.8 2010/12/04 18:40:45 tom Exp @ --> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> <HTML> <HEAD> <meta http-equiv="Content-Type" content="text/html; charset=us-ascii"> <meta name="generator" content="Manpage converted by man2html - see http://invisible-island.net/scripts/readme.html#others_scripts"> <TITLE>form_cursor 3x</TITLE> <link rev=made href="mailto:bug-ncurses@gnu.org"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </HEAD> <BODY> <H1 class="no-header">form_cursor 3x</H1> <PRE> <STRONG><A HREF="form_cursor.3x.html">form_cursor(3x)</A></STRONG> <STRONG><A HREF="form_cursor.3x.html">form_cursor(3x)</A></STRONG> </PRE> <H2><a name="h2-NAME">NAME</a></H2><PRE> <STRONG>form_cursor</STRONG> - position a form window cursor </PRE> <H2><a name="h2-SYNOPSIS">SYNOPSIS</a></H2><PRE> <STRONG>#include</STRONG> <STRONG>&lt;form.h&gt;</STRONG> int pos_form_cursor(FORM *form); </PRE> <H2><a name="h2-DESCRIPTION">DESCRIPTION</a></H2><PRE> The function <STRONG>pos_form_cursor</STRONG> restores the cursor to the position required for the forms driver to continue pro- cessing requests. This is useful after <STRONG>curses</STRONG> routines have been called to do screen-painting in response to a form operation. </PRE> <H2><a name="h2-RETURN-VALUE">RETURN VALUE</a></H2><PRE> This routine returns one of the following: <STRONG>E_OK</STRONG> The routine succeeded. <STRONG>E_BAD_ARGUMENT</STRONG> Routine detected an incorrect or out-of-range argu- ment. <STRONG>E_NOT_POSTED</STRONG> The form has not been posted. <STRONG>E_SYSTEM_ERROR</STRONG> System error occurred (see <STRONG>errno</STRONG>). </PRE> <H2><a name="h2-SEE-ALSO">SEE ALSO</a></H2><PRE> <STRONG><A HREF="ncurses.3x.html">curses(3x)</A></STRONG>, <STRONG><A HREF="form.3x.html">form(3x)</A></STRONG>. </PRE> <H2><a name="h2-NOTES">NOTES</a></H2><PRE> The header file <STRONG>&lt;form.h&gt;</STRONG> automatically includes the header file <STRONG>&lt;curses.h&gt;</STRONG>. </PRE> <H2><a name="h2-PORTABILITY">PORTABILITY</a></H2><PRE> These routines emulate the System V forms library. They were not supported on Version 7 or BSD versions. </PRE> <H2><a name="h2-AUTHORS">AUTHORS</a></H2><PRE> Juergen Pfeifer. Manual pages and adaptation for new curses by Eric S. Raymond. <STRONG><A HREF="form_cursor.3x.html">form_cursor(3x)</A></STRONG> </PRE> <div class="nav"> <ul> <li><a href="#h2-NAME">NAME</a></li> <li><a href="#h2-SYNOPSIS">SYNOPSIS</a></li> <li><a href="#h2-DESCRIPTION">DESCRIPTION</a></li> <li><a href="#h2-RETURN-VALUE">RETURN VALUE</a></li> <li><a href="#h2-SEE-ALSO">SEE ALSO</a></li> <li><a href="#h2-NOTES">NOTES</a></li> <li><a href="#h2-PORTABILITY">PORTABILITY</a></li> <li><a href="#h2-AUTHORS">AUTHORS</a></li> </ul> </div> </BODY> </HTML>
tests/wpt/web-platform-tests/shadow-dom/untriaged/elements-and-dom-objects/extensions-to-event-interface/event-path-001.html
krunal3103/servo
<!DOCTYPE html> <!-- Distributed under both the W3C Test Suite License [1] and the W3C 3-clause BSD License [2]. To contribute to a W3C Test Suite, see the policies and contribution forms [3]. [1] http://www.w3.org/Consortium/Legal/2008/04-testsuite-license [2] http://www.w3.org/Consortium/Legal/2008/03-bsd-license [3] http://www.w3.org/2004/10/27-testcases --> <html> <head> <title>Shadow DOM Test - event path</title> <link rel="author" title="Kazuhito Hokamura" href="mailto:k.hokamura@gmail.com"> <link rel="help" href="https://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/shadow/index.html#extensions-to-event"> <meta name="assert" content="Extensions to Event Interface: event.deepPath() cross the shadow boundary"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="../../../../html/resources/common.js"></script> <script src="../../../resources/shadow-dom-utils.js"></script> </head> <body> <div id="log"></div> <script> var t = async_test('event.deepPath() cross the shadow boundary'); t.step(unit(function(ctx) { var doc = newRenderedHTMLDocument(ctx); var host = doc.createElement('div'); var shadowRoot = host.attachShadow({mode: 'open'}); var child = doc.createElement('div'); doc.body.appendChild(host); shadowRoot.appendChild(child); child.addEventListener('click', t.step_func(function(e) { assert_equals(e.deepPath().length, 7, 'deepPath().length'); assert_equals(e.deepPath()[0], child, 'deepPath()[0] should be child'); assert_equals(e.deepPath()[1], shadowRoot, 'deepPath()[1] should be shadowRoot'); assert_equals(e.deepPath()[2], host, 'deepPath()[2] should be host'); assert_equals(e.deepPath()[3], doc.body, 'deepPath()[3] should be body'); assert_equals(e.deepPath()[4], doc.documentElement, 'deepPath()[4] should be html'); assert_equals(e.deepPath()[5], doc, 'deepPath()[5] should be document'); assert_equals(e.deepPath()[6], ctx.iframes[0].contentWindow, 'deepPath()[6] should be window'); t.done(); })); var event = doc.createEvent('HTMLEvents'); event.initEvent('click', true, false); child.dispatchEvent(event); })); </script> </body> </html>
lms/templates/login.html
nanolearning/edx-platform
<%inherit file="main.html" /> <%! from microsite_configuration import microsite %> <%namespace name='static' file='static_content.html'/> <%! from django.core.urlresolvers import reverse %> <%! from django.utils.translation import ugettext as _ %> <%! from third_party_auth import provider, pipeline %> <%block name="pagetitle">${_("Log into your {platform_name} Account").format(platform_name=platform_name)}</%block> <%block name="bodyclass">view-login</%block> <%block name="js_extra"> <script type="text/javascript"> $(function() { // adding js class for styling with accessibility in mind $('body').addClass('js'); // show forgot password modal UI if URL contains matching DOM ID if ($.deparam.fragment()['forgot-password-modal'] !== undefined) { $('.pwd-reset').click(); } // new window/tab opening $('a[rel="external"], a[class="new-vp"]') .click( function() { window.open( $(this).attr('href') ); return false; }); // form field label styling on focus $("form :input").focus(function() { $("label[for='" + this.id + "']").parent().addClass("is-focused"); }).blur(function() { $("label").parent().removeClass("is-focused"); }); }); (function() { toggleSubmitButton(true); $('#login-form').on('submit', function() { toggleSubmitButton(false); }); $('#login-form').on('ajax:error', function() { toggleSubmitButton(true); }); $('#login-form').on('ajax:success', function(event, json, xhr) { if(json.success) { var u=decodeURI(window.location.search); next=u.split("next=")[1]; if (next && !isExternal(next)) { location.href=next; } else if(json.redirect_url){ location.href=json.redirect_url; } else { location.href="${reverse('dashboard')}"; } } else if(json.hasOwnProperty('redirect')) { var u=decodeURI(window.location.search); if (!isExternal(json.redirect)) { // a paranoid check. Our server is the one providing json.redirect location.href=json.redirect+u; } // else we just remain on this page, which is fine since this particular path implies a login failure // that has been generated via packet tampering (json.redirect has been messed with). } else { toggleSubmitButton(true); $('.message.submission-error').addClass('is-shown').focus(); $('.message.submission-error .message-copy').html(json.value); } }); $("#forgot-password-link").click(function() { $("#forgot-password-modal").show(); $("#forgot-password-modal .close-modal").focus(); }); })(this); function toggleSubmitButton(enable) { var $submitButton = $('form .form-actions #submit'); if(enable) { $submitButton. removeClass('is-disabled'). removeProp('disabled'). html("${_('Log into My {platform_name} Account').format(platform_name=platform_name)} <span class='orn-plus'>+</span> ${_('Access My Courses')}"); } else { $submitButton. addClass('is-disabled'). prop('disabled', true). text("${_(u'Processing your account information…')}"); } } function thirdPartySignin(event, url) { event.preventDefault(); window.location.href = url; } (function post_form_if_pipeline_running(pipeline_running) { // If the pipeline is running, the user has already authenticated via a // third-party provider. We want to invoke /login_ajax to loop in the // code that does logging and sets cookies on the request. It is most // consistent to do that by using the same mechanism that is used when // the use does first-party sign-in: POSTing the sign-in form. if (pipeline_running) { $('#login-form').submit(); } })(${pipeline_running}) </script> </%block> <section class="introduction"> <header> <h1 class="title"> <span class="title-super">${_("Please log in")}</span> <span class="title-sub">${_("to access your account and courses")}</span> </h1> </header> </section> <section class="login container"> <section role="main" class="content"> <form role="form" id="login-form" method="post" data-remote="true" action="/login_ajax" novalidate> <!-- status messages --> <div role="alert" class="status message"> <h3 class="message-title">${_("We're Sorry, {platform_name} accounts are unavailable currently").format(platform_name=platform_name)}</h3> </div> <div role="alert" class="status message submission-error" tabindex="-1"> <h3 class="message-title">${_("The following errors occurred while logging you in:")} </h3> <ul class="message-copy"> <li>${_("Your email or password is incorrect")}</li> </ul> </div> <p class="instructions sr"> ${_('Please provide the following information to log into your {platform_name} account. Required fields are noted by <strong class="indicator">bold text and an asterisk (*)</strong>.').format(platform_name=platform_name)} </p> <div class="group group-form group-form-requiredinformation"> <h2 class="sr">${_('Required Information')}</h2> <ol class="list-input"> <li class="field required text" id="field-email"> <label for="email">${_('E-mail')}</label> <input class="" id="email" type="email" name="email" value="" placeholder="${_('example: username@domain.com')}" required aria-required="true" aria-described-by="email-tip" /> <span class="tip tip-input" id="email-tip">${_("This is the e-mail address you used to register with {platform}").format(platform=platform_name)}</span> </li> <li class="field required password" id="field-password"> <label for="password">${_('Password')}</label> <input id="password" type="password" name="password" value="" required aria-required="true" /> <span class="tip tip-input"> <a href="#forgot-password-modal" rel="leanModal" class="pwd-reset action action-forgotpw" id="forgot-password-link" role="button" aria-haspopup="true">${_('Forgot password?')}</a> </span> </li> </ol> </div> <div class="group group-form group-form-secondary group-form-accountpreferences"> <h2 class="sr">${_('Account Preferences')}</h2> <ol class="list-input"> <li class="field required checkbox" id="field-remember"> <input id="remember-yes" type="checkbox" name="remember" value="true" /> <label for="remember-yes">${_('Remember me')}</label> </li> </ol> </div> % if course_id and enrollment_action: <input type="hidden" name="enrollment_action" value="${enrollment_action | h}" /> <input type="hidden" name="course_id" value="${course_id | h}" /> % endif <div class="form-actions"> <button name="submit" type="submit" id="submit" class="action action-primary action-update"></button> </div> </form> % if settings.FEATURES.get('ENABLE_THIRD_PARTY_AUTH'): <hr /> <p class="instructions"> ## Developers: this is a sentence fragment, which is usually frowned upon. The design of the pags uses this fragment to provide an "else" clause underneath a number of choices. It's OK to leave it. ## Translators: this is the last choice of a number of choices of how to log in to the site. ${_('or, if you have connected one of these providers, log in below.')} </p> <div class="form-actions form-third-party-auth"> % for enabled in provider.Registry.enabled(): ## Translators: provider_name is the name of an external, third-party user authentication provider (like Google or LinkedIn). <button type="submit" class="button button-primary" onclick="thirdPartySignin(event, '${pipeline.get_login_url(enabled.NAME, pipeline.AUTH_ENTRY_LOGIN)}');"><span class="icon ${enabled.ICON_CLASS}"></span>${_('Sign in with {provider_name}').format(provider_name=enabled.NAME)}</button> % endfor </div> % endif </section> <aside role="complementary"> <% # allow for microsite overrides on the registration sidebars, otherwise default to pre-existing ones sidebar_file = microsite.get_template_path('login-sidebar.html') %> <%include file="${sidebar_file}" /> </aside> </section>
wicket-examples/src/main/java/org/apache/wicket/examples/compref/BookmarkablePageLinkPage.html
topicusonderwijs/wicket
<?xml version="1.0" encoding="UTF-8"?> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:wicket="http://wicket.apache.org"> <head> <title>Wicket Examples - component reference</title> <link rel="stylesheet" type="text/css" href="style.css"/> </head> <body> <span wicket:id="mainNavigation"/> <h1>wicket.markup.html.link.BookmarkablePageLink</h1> <wicket:link><a href="Index.html">[back to the reference]</a></wicket:link> <p> The BookmarkablePageLink component allows you to navigate to Bookmarkable pages. A page is bookmarkable when it has a public default constructor and/or a public constructor with a PageParameters argument. </p> <p> <a wicket:id="pageLinkNoArgs">go to our bookmarkable page without passing any arguments</a> </p> <p> <a wicket:id="pageLinkWithArgs">go to our bookmarkable page passing a message argument</a> </p> <span wicket:id="explainPanel">panel contents come here</span> </body> </html>
modules/flowable-ui-admin/src/main/webapp/views/task-delegate-popup.html
robsoncardosoti/flowable-engine
<div class="modal-header-wrapper"> <div class="modal-header"> <div class="pull-right"> <a class="action" ng-click="cancel()">&times; {{'GENERAL.ACTION.CANCEL-AND-CLOSE' | translate}}</a> </div> <h2>{{'TASK.POPUP.DELEGATE.TITLE' | translate}} '{{task.name &amp;&amp; task.name || task.id}}'</h2> </div> </div> <div class="modal-body no-overflow"> <p>{{'TASK.POPUP.DELEGATE.MESSAGE' | translate}} '{{task.name &amp;&amp; task.name + ' (' + task.id + ')' || task.id}}'?</p> <div class="input-group input-group-sm type-ahead-scrollable"> <label for="user" translate="TASK.POPUP.DELEGATE.DELEGATE-TO"></label> <input id="user" type="text" users-typeahead user-model="status.user" user-display-model="newAssignee" user-status="active" class="form-control" auto-focus> </div> </div> <div class="modal-footer-wrapper"> <div class="modal-footer"> <div class="pull-right"> <button type="button" class="btn btn-sm btn-default" ng-click="cancel()" ng-disabled="status.loading" translate="GENERAL.ACTION.CANCEL"> </button> <button type="button" class="btn btn-sm btn-default" ng-click="ok()" ng-disabled="status.loading || !status.user" translate="TASK.POPUP.DELEGATE.CONFIRM"> </button> </div> <loading-indicator></loading-indicator> </div> </div>
modules/distribution/repository/resources/dashboard/gadgets/swfobject1-5/swfobject.html
dnwick/product-cep
<!-- ~ Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <!-- saved from url=(0014)about:internet --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>SWFObject embed by Geoff Stearns (basic) @ deconcept</title> <!-- SWFObject embed by Geoff Stearns geoff@deconcept.com http://blog.deconcept.com/swfobject/ --> <script type="text/javascript" src="swfobject.js"></script> <style type="text/css"> body { background-color: #eeeeee; font: .8em/1.3em verdana,arial,helvetica,sans-serif; } #info { width: 300px; overflow: auto; } #flashcontent { border: solid 1px #000; width: 300px; height: 300px; float: left; margin: 15px 20px; } </style> </head> <body> <div id="flashcontent"> <strong>You need to upgrade your Flash Player</strong> This is replaced by the Flash content. Place your alternate content here and users without the Flash plugin or with Javascript turned off will see this. Content here allows you to leave out <code>noscript</code> tags. Include a link to <a href="swfobject.html?detectflash=false">bypass the detection</a> if you wish. </div> <script type="text/javascript"> // <![CDATA[ var so = new SWFObject("so_tester.swf", "sotester", "300", "300", "9", "#FF6600"); so.addVariable("flashVarText", "this is passed in via FlashVars for example only"); // this line is optional, but this example uses the variable and displays this text inside the flash movie so.write("flashcontent"); // ]]> </script> <div id="info"> <p> This Flash movie was embedded using the <a href="http://blog.deconcept.com/swfobject/">SWFObject</a> embed method by <a href="http://blog.deconcept.com/">Geoff Stearns</a>. </p> <p>Other sample embeds:</p> <ul> <li>Basic Flash Embed with alternate content</li> <li><a href="fullpage.html">Full page Flash embed</a></li> <li><a href="expressinstall.html">Basic Flash Embed with Express Install allowed</a></li> </ul> <p>You can also <a href="flashversion.html">view your installed Flash version</a>.</p> <p> <a href="view-source:http://blog.deconcept.com/swfobject/swfobject.html">View source</a> (in mozilla, firefox) | <a href="swfobject_source.js">View Javascript</a>. </p> <p> <a href="http://blog.deconcept.com/swfobject/swfobject1-4.zip">Download Source</a>. </p> </div> <p style="clear: both;margin-left: 20px"><a href="http://validator.w3.org/check?uri=referer">Validate XHTML</a> and <a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a></p> </body> </html>
venv/bin/libs/range/doc/html/range/reference/algorithms/mutating/rotate.html
NixaSoftware/CVis
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>rotate</title> <link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.75.2"> <link rel="home" href="../../../../index.html" title="Chapter&#160;1.&#160;Range 2.0"> <link rel="up" href="../mutating.html" title="Mutating algorithms"> <link rel="prev" href="reverse_copy.html" title="reverse_copy"> <link rel="next" href="rotate_copy.html" title="rotate_copy"> </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="reverse_copy.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../mutating.html"><img src="../../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="rotate_copy.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section range_reference_algorithms_mutating_rotate"> <div class="titlepage"><div><div><h5 class="title"> <a name="range.reference.algorithms.mutating.rotate"></a><a class="link" href="rotate.html" title="rotate">rotate</a> </h5></div></div></div> <h6> <a name="range.reference.algorithms.mutating.rotate.h0"></a> <span><a name="range.reference.algorithms.mutating.rotate.prototype"></a></span><a class="link" href="rotate.html#range.reference.algorithms.mutating.rotate.prototype">Prototype</a> </h6> <p> </p> <pre class="programlisting"><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">class</span> <span class="identifier">ForwardRange</span><span class="special">&gt;</span> <span class="identifier">ForwardRange</span><span class="special">&amp;</span> <span class="identifier">rotate</span><span class="special">(</span><span class="identifier">ForwardRange</span><span class="special">&amp;</span> <span class="identifier">rng</span><span class="special">,</span> <span class="keyword">typename</span> <span class="identifier">range_iterator</span><span class="special">&lt;</span><span class="identifier">ForwardRange</span><span class="special">&gt;::</span><span class="identifier">type</span> <span class="identifier">middle</span><span class="special">);</span> <span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">class</span> <span class="identifier">ForwardRange</span><span class="special">&gt;</span> <span class="keyword">const</span> <span class="identifier">ForwardRange</span><span class="special">&amp;</span> <span class="identifier">rotate</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">ForwardRange</span><span class="special">&amp;</span> <span class="identifier">rng</span><span class="special">,</span> <span class="keyword">typename</span> <span class="identifier">range_iterator</span><span class="special">&lt;</span><span class="keyword">const</span> <span class="identifier">ForwardRange</span><span class="special">&gt;::</span><span class="identifier">type</span> <span class="identifier">middle</span><span class="special">);</span> </pre> <p> </p> <h6> <a name="range.reference.algorithms.mutating.rotate.h1"></a> <span><a name="range.reference.algorithms.mutating.rotate.description"></a></span><a class="link" href="rotate.html#range.reference.algorithms.mutating.rotate.description">Description</a> </h6> <p> <code class="computeroutput"><span class="identifier">rotate</span></code> rotates the elements in a range. It exchanges the two ranges <code class="computeroutput"><span class="special">[</span><span class="identifier">begin</span><span class="special">(</span><span class="identifier">rng</span><span class="special">),</span> <span class="identifier">middle</span><span class="special">)</span></code> and <code class="computeroutput"><span class="special">[</span><span class="identifier">middle</span><span class="special">,</span> <span class="identifier">end</span><span class="special">(</span><span class="identifier">rng</span><span class="special">))</span></code>. Returns a reference to <code class="computeroutput"><span class="identifier">rng</span></code>. </p> <h6> <a name="range.reference.algorithms.mutating.rotate.h2"></a> <span><a name="range.reference.algorithms.mutating.rotate.definition"></a></span><a class="link" href="rotate.html#range.reference.algorithms.mutating.rotate.definition">Definition</a> </h6> <p> Defined in the header file <code class="computeroutput"><span class="identifier">boost</span><span class="special">/</span><span class="identifier">range</span><span class="special">/</span><span class="identifier">algorithm</span><span class="special">/</span><span class="identifier">rotate</span><span class="special">.</span><span class="identifier">hpp</span></code> </p> <h6> <a name="range.reference.algorithms.mutating.rotate.h3"></a> <span><a name="range.reference.algorithms.mutating.rotate.requirements"></a></span><a class="link" href="rotate.html#range.reference.algorithms.mutating.rotate.requirements">Requirements</a> </h6> <div class="itemizedlist"><ul class="itemizedlist" type="disc"> <li class="listitem"> <code class="computeroutput"><span class="identifier">ForwardRange</span></code> is a model of the <a class="link" href="../../../concepts/forward_range.html" title="Forward Range">Forward Range</a> Concept. </li> <li class="listitem"> <code class="computeroutput"><span class="identifier">ForwardRange</span></code> is mutable. </li> </ul></div> <h6> <a name="range.reference.algorithms.mutating.rotate.h4"></a> <span><a name="range.reference.algorithms.mutating.rotate.precondition_"></a></span><a class="link" href="rotate.html#range.reference.algorithms.mutating.rotate.precondition_">Precondition:</a> </h6> <div class="itemizedlist"><ul class="itemizedlist" type="disc"> <li class="listitem"> <code class="computeroutput"><span class="special">[</span><span class="identifier">begin</span><span class="special">(</span><span class="identifier">rng</span><span class="special">),</span> <span class="identifier">middle</span><span class="special">)</span></code> is a valid range. </li> <li class="listitem"> <code class="computeroutput"><span class="special">[</span><span class="identifier">middle</span><span class="special">,</span> <span class="identifier">end</span><span class="special">(</span><span class="identifier">rng</span><span class="special">))</span></code> is a valid range. </li> </ul></div> <h6> <a name="range.reference.algorithms.mutating.rotate.h5"></a> <span><a name="range.reference.algorithms.mutating.rotate.complexity"></a></span><a class="link" href="rotate.html#range.reference.algorithms.mutating.rotate.complexity">Complexity</a> </h6> <p> Linear. At most <code class="computeroutput"><span class="identifier">distance</span><span class="special">(</span><span class="identifier">rng</span><span class="special">)</span></code> swaps are performed. </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-2010 Thorsten Ottosen, Neil Groves<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="reverse_copy.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../mutating.html"><img src="../../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="rotate_copy.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
dfsadmin/help/rw.zh_TW.Big5.html
rcuvgd/Webmin
<header>¥iŪ¼g¦s¨ú</header> ³o­Ó¨M©w¤F­þ¨Ç¥D¾÷¥i¥HŪ¼g³o­Ó¤À¨É. ³oÃ䦳¤T­Ó¿ï¾Üµ¹³o­Ó¿ï¶µ: <ul> <li><b>µL</b><br> ¨S¦³¥D¾÷¥i¥HŪ¼g. <li><b>¥þ³¡ªº¥D¾÷</b><br> ¥ô¦ó¥D¾÷³£¥i¥HŪ¼g³o­Ó¤À¨É. ¦pªG±z¦³³s±µ¨ìºô»Úºô¸ô¤W, ³oªí¥Ü¤F¥@¬É¤Wªº¥ô¦ó¤H³£¥i¥HŪ¼g³o­Ó¥Ø¿ý¤UªºÀÉ®×. <li><b>¦C¥Xªº¥D¾÷</b><br> <if $gconfig{'os_version'} < 7> ¦C¦b³o­Ó¦Cªí¤¤ªº¥D¾÷©Î IP ¦ì§}¥i¥HŪ¼g³o­Ó¤À¨É. <else> ²Å¦X³o­Ó¦Cªí¤¤ªº¥D¾÷¥i¥HŪ¼g³o­Ó¤À¨É. ¥D¾÷¥i¥H¥Î¤U¦Cªº¤è¦¡«ü©w:<p> <dl> <dt><b>¥D¾÷¦WºÙ©Î IP ¦ì§}</b> (¨Ò¦p <i>ftp.foo.com</i> ©Î <i>1.2.3.4</i>) <dd>²Å¦X§¹¥þ¬Û¦P©óµ¹¤©¦WºÙ©Î¦ì§}ªº¥D¾÷ <dt><b>ºô¸ô¸s²Õ</b> (¨Ò¦p <i>engineering</i>) <dd>²Å¦XÄÝ©ó³o­Óºô¸ô¸s²Õªº¥ô¦ó¥D¾÷ <dt><b>DNS ºô°ì</b> (¨Ò¦p <i>.foo.com</i>) <dd>²Å¦X³o­Óºô°ì¤¤ªº¥ô¦ó¥D¾÷ <dt><b>ºô¸ô</b> (¨Ò¦p <i>@10.254.1</i>) <dd>²Å¦X³o­Óºô¸ô¤¤ªº¥ô¦ó¥D¾÷ <dt><b>ºô¸ô/¤lºô¸ô¾B¸n</b> (¨Ò¦p <i>@10.254.1/24</i>) <dd>²Å¦X³o­Óºô¸ô¤¤ªº¥ô¦ó¥D¾÷ </dl><p> ¦¹¥~, ¥ô¦ó¤W­±ªº¼Ð°O³£¥i¥H¦³ <i>-</i> ªº«e¸m¦r¤¸, ³oªí¥Ü³o¨Ç¥D¾÷, ºô¸ô¸s²Õ, ºô°ì©Îºô¸ô<b>¤£</b>³Q¤¹³\. ³o¦b¶È©Úµ´¾ã²Õ¸s²Õ¤¤ªº¨ä¤¤¤@­Ó¦¨­û®É±N·|¦³¥Î. </if> </ul> <hr>
api/master/Thelia/Model/Base/ModuleConfig.html
sitecrafting/thelia.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="robots" content="index, follow, all" /> <title>Thelia\Model\Base\ModuleConfig | Thelia 2 API</title> <link rel="stylesheet" type="text/css" href="../../../css/bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="../../../css/bootstrap-theme.min.css"> <link rel="stylesheet" type="text/css" href="../../../css/sami.css"> <script src="../../../js/jquery-1.11.1.min.js"></script> <script src="../../../js/bootstrap.min.js"></script> <script src="../../../js/typeahead.min.js"></script> <script src="../../../sami.js"></script> <meta name="MobileOptimized" content="width"> <meta name="HandheldFriendly" content="true"> <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1"> </head> <body id="class" data-name="class:Thelia_Model_Base_ModuleConfig" data-root-path="../../../"> <div id="content"> <div id="left-column"> <div id="control-panel"> <form id="search-form" action="../../../search.html" method="GET"> <span class="glyphicon glyphicon-search"></span> <input name="search" class="typeahead form-control" type="search" placeholder="Search"> </form> </div> <div id="api-tree"></div> </div> <div id="right-column"> <nav id="site-nav" class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-elements"> <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">Thelia 2 API</a> </div> <div class="collapse navbar-collapse" id="navbar-elements"> <ul class="nav navbar-nav"> <li><a href="../../../classes.html">Classes</a></li> <li><a href="../../../namespaces.html">Namespaces</a></li> <li><a href="../../../interfaces.html">Interfaces</a></li> <li><a href="../../../traits.html">Traits</a></li> <li><a href="../../../doc-index.html">Index</a></li> <li><a href="../../../search.html">Search</a></li> </ul> </div> </div> </nav> <div class="namespace-breadcrumbs"> <ol class="breadcrumb"> <li><span class="label label-default">class</span></li> <li><a href="../../../Thelia.html">Thelia</a></li> <li><a href="../../../Thelia/Model.html">Model</a></li> <li><a href="../../../Thelia/Model/Base.html">Base</a></li> <li>ModuleConfig</li> </ol> </div> <div id="page-content"> <div class="page-header"> <h1>ModuleConfig</h1> </div> <p> class <strong>ModuleConfig</strong> implements <abbr title="Propel\Runtime\ActiveRecord\ActiveRecordInterface">ActiveRecordInterface</abbr> </p> <h2>Constants</h2> <table class="table table-condensed"> <tr> <td>TABLE_MAP</td> <td class="last"> <p><em>TableMap class name</em></p> <p></p> </td> </tr> </table> <h2>Methods</h2> <div class="container-fluid underlined"> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method___construct">__construct</a>() <p>Initializes internal state of Thelia\Model\Base\ModuleConfig object.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> boolean </div> <div class="col-md-8 type"> <a href="#method_isModified">isModified</a>() <p>Returns whether the object has been modified.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> boolean </div> <div class="col-md-8 type"> <a href="#method_isColumnModified">isColumnModified</a>( string $col) <p>Has specified column been modified?</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> array </div> <div class="col-md-8 type"> <a href="#method_getModifiedColumns">getModifiedColumns</a>() <p>Get the columns that have been modified in this object.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> boolean </div> <div class="col-md-8 type"> <a href="#method_isNew">isNew</a>() <p>Returns whether the object has ever been saved. This will be false, if the object was retrieved from storage or was created and then saved.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_setNew">setNew</a>( boolean $b) <p>Setter for the isNew attribute. This method will be called by Propel-generated children and objects.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> boolean </div> <div class="col-md-8 type"> <a href="#method_isDeleted">isDeleted</a>() <p>Whether this object has been deleted.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> void </div> <div class="col-md-8 type"> <a href="#method_setDeleted">setDeleted</a>( boolean $b) <p>Specify whether this object has been deleted.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> void </div> <div class="col-md-8 type"> <a href="#method_resetModified">resetModified</a>( string $col = null) <p>Sets the modified state for the object to be false.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> boolean </div> <div class="col-md-8 type"> <a href="#method_equals">equals</a>( mixed $obj) <p>Compares this with another <code>ModuleConfig</code> instance. If <code>obj</code> is an instance of <code>ModuleConfig</code>, delegates to <code>equals(ModuleConfig)</code>. Otherwise, returns <code>false</code>.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> int </div> <div class="col-md-8 type"> <a href="#method_hashCode">hashCode</a>() <p>If the primary key is not null, return the hashcode of the primary key. Otherwise, return the hash code of the object.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> array </div> <div class="col-md-8 type"> <a href="#method_getVirtualColumns">getVirtualColumns</a>() <p>Get the associative array of the virtual columns in this object</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> boolean </div> <div class="col-md-8 type"> <a href="#method_hasVirtualColumn">hasVirtualColumn</a>( string $name) <p>Checks the existence of a virtual column in this object</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> mixed </div> <div class="col-md-8 type"> <a href="#method_getVirtualColumn">getVirtualColumn</a>( string $name) <p>Get the value of a virtual column in this object</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Model/Base/ModuleConfig.html"><abbr title="Thelia\Model\Base\ModuleConfig">ModuleConfig</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_setVirtualColumn">setVirtualColumn</a>( string $name, mixed $value) <p>Set the value of a virtual column in this object</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Model/Base/ModuleConfig.html"><abbr title="Thelia\Model\Base\ModuleConfig">ModuleConfig</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_importFrom">importFrom</a>( mixed $parser, string $data) <p>Populate the current object from a string, using a given parser format <code> $book = new Book(); $book->importFrom('JSON', '{"Id":9012,"Title":"Don Juan","ISBN":"0140422161","Price":12.99,"PublisherId":1234,"AuthorId":5678}'); </code></p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> string </div> <div class="col-md-8 type"> <a href="#method_exportTo">exportTo</a>( mixed $parser, boolean $includeLazyLoadColumns = true) <p>Export the current object properties to a string, using a given parser format <code> $book = BookQuery::create()->findPk(9012); echo $book->exportTo('JSON'); => {"Id":9012,"Title":"Don Juan","ISBN":"0140422161","Price":12.99,"PublisherId":1234,"AuthorId":5678}'); </code></p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method___sleep">__sleep</a>() <p>Clean up internal collections prior to serializing Avoids recursive loops that turn into segmentation faults when serializing</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> int </div> <div class="col-md-8 type"> <a href="#method_getId">getId</a>() <p>Get the [id] column value.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> int </div> <div class="col-md-8 type"> <a href="#method_getModuleId">getModuleId</a>() <p>Get the [module_id] column value.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> string </div> <div class="col-md-8 type"> <a href="#method_getName">getName</a>() <p>Get the [name] column value.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> mixed </div> <div class="col-md-8 type"> <a href="#method_getCreatedAt">getCreatedAt</a>( string $format = NULL) <p>Get the [optionally formatted] temporal [created_at] column value.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> mixed </div> <div class="col-md-8 type"> <a href="#method_getUpdatedAt">getUpdatedAt</a>( string $format = NULL) <p>Get the [optionally formatted] temporal [updated_at] column value.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_setId">setId</a>( int $v) <p>Set the value of [id] column.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_setModuleId">setModuleId</a>( int $v) <p>Set the value of [module_id] column.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_setName">setName</a>( string $v) <p>Set the value of [name] column.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_setCreatedAt">setCreatedAt</a>( mixed $v) <p>Sets the value of [created_at] column to a normalized version of the date/time value specified.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_setUpdatedAt">setUpdatedAt</a>( mixed $v) <p>Sets the value of [updated_at] column to a normalized version of the date/time value specified.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> boolean </div> <div class="col-md-8 type"> <a href="#method_hasOnlyDefaultValues">hasOnlyDefaultValues</a>() <p>Indicates whether the columns in this object are only set to default values.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> int </div> <div class="col-md-8 type"> <a href="#method_hydrate">hydrate</a>( array $row, int $startcol, boolean $rehydrate = false, string $indexType = TableMap::TYPE_NUM) <p>Hydrates (populates) the object variables with values from the database resultset.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_ensureConsistency">ensureConsistency</a>() <p>Checks and repairs the internal consistency of the object.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> void </div> <div class="col-md-8 type"> <a href="#method_reload">reload</a>( boolean $deep = false, <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Reloads this object from datastore based on primary key and (optionally) resets all associated objects.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> void </div> <div class="col-md-8 type"> <a href="#method_delete">delete</a>( <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Removes this object from datastore and sets delete attribute.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> int </div> <div class="col-md-8 type"> <a href="#method_save">save</a>( <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Persists this object to the database.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> mixed </div> <div class="col-md-8 type"> <a href="#method_getByName">getByName</a>( string $name, string $type = TableMap::TYPE_PHPNAME) <p>Retrieves a field from the object by name passed in as a string.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> mixed </div> <div class="col-md-8 type"> <a href="#method_getByPosition">getByPosition</a>( int $pos) <p>Retrieves a field from the object by Position as specified in the xml schema.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> array </div> <div class="col-md-8 type"> <a href="#method_toArray">toArray</a>( string $keyType = TableMap::TYPE_PHPNAME, boolean $includeLazyLoadColumns = true, array $alreadyDumpedObjects = array(), boolean $includeForeignObjects = false) <p>Exports the object as an array.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> void </div> <div class="col-md-8 type"> <a href="#method_setByName">setByName</a>( string $name, mixed $value, string $type = TableMap::TYPE_PHPNAME) <p>Sets a field from the object by name passed in as a string.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> void </div> <div class="col-md-8 type"> <a href="#method_setByPosition">setByPosition</a>( int $pos, mixed $value) <p>Sets a field from the object by Position as specified in the xml schema.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> void </div> <div class="col-md-8 type"> <a href="#method_fromArray">fromArray</a>( array $arr, string $keyType = TableMap::TYPE_PHPNAME) <p>Populates the object using an array.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> <abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> </div> <div class="col-md-8 type"> <a href="#method_buildCriteria">buildCriteria</a>() <p>Build a Criteria object containing the values of all modified columns in this object.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> <abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> </div> <div class="col-md-8 type"> <a href="#method_buildPkeyCriteria">buildPkeyCriteria</a>() <p>Builds a Criteria object containing the primary key for this object.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> int </div> <div class="col-md-8 type"> <a href="#method_getPrimaryKey">getPrimaryKey</a>() <p>Returns the primary key for this object (row).</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> void </div> <div class="col-md-8 type"> <a href="#method_setPrimaryKey">setPrimaryKey</a>( int $key) <p>Generic method to set the primary key (id column).</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> boolean </div> <div class="col-md-8 type"> <a href="#method_isPrimaryKeyNull">isPrimaryKeyNull</a>() <p>Returns true if the primary key for this object is null.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_copyInto">copyInto</a>( object $copyObj, boolean $deepCopy = false, boolean $makeNew = true) <p>Sets contents of passed object to values from current object.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_copy">copy</a>( boolean $deepCopy = false) <p>Makes a copy of this object that will be inserted as a new row in table when saved.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_setModule">setModule</a>( <abbr title="Thelia\Model\Base\Thelia\Model\Module">Module</abbr> $v = null) <p>Declares an association between this object and a ChildModule object.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Model/Module.html"><abbr title="Thelia\Model\Module">Module</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_getModule">getModule</a>( <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Get the associated ChildModule object</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> void </div> <div class="col-md-8 type"> <a href="#method_initRelation">initRelation</a>( string $relationName) <p>Initializes a collection based on the name of a relation.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> void </div> <div class="col-md-8 type"> <a href="#method_clearModuleConfigI18ns">clearModuleConfigI18ns</a>() <p>Clears out the collModuleConfigI18ns collection</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_resetPartialModuleConfigI18ns">resetPartialModuleConfigI18ns</a>($v = true) <p>Reset is the collModuleConfigI18ns collection loaded partially.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> void </div> <div class="col-md-8 type"> <a href="#method_initModuleConfigI18ns">initModuleConfigI18ns</a>( boolean $overrideExisting = true) <p>Initializes the collModuleConfigI18ns collection.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> <abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/ModuleConfigI18n.html"><abbr title="Thelia\Model\ModuleConfigI18n">ModuleConfigI18n</abbr></a>[] </div> <div class="col-md-8 type"> <a href="#method_getModuleConfigI18ns">getModuleConfigI18ns</a>( <abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Gets an array of ChildModuleConfigI18n objects which contain a foreign key that references this object.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_setModuleConfigI18ns">setModuleConfigI18ns</a>( <abbr title="Thelia\Model\Base\Propel\Runtime\Collection\Collection">Collection</abbr> $moduleConfigI18ns, <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Sets a collection of ModuleConfigI18n objects related by a one-to-many relationship to the current object.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> int </div> <div class="col-md-8 type"> <a href="#method_countModuleConfigI18ns">countModuleConfigI18ns</a>( <abbr title="Thelia\Model\Base\Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, boolean $distinct = false, <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Returns the number of related ModuleConfigI18n objects.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_addModuleConfigI18n">addModuleConfigI18n</a>( <abbr title="Thelia\Model\Base\Thelia\Model\ModuleConfigI18n">ModuleConfigI18n</abbr> $l) <p>Method called to associate a ChildModuleConfigI18n object to this object through the ChildModuleConfigI18n foreign key attribute.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_removeModuleConfigI18n">removeModuleConfigI18n</a>( <a href="../../../Thelia/Model/Base/ModuleConfigI18n.html"><abbr title="Thelia\Model\Base\ModuleConfigI18n">ModuleConfigI18n</abbr></a> $moduleConfigI18n) <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_clear">clear</a>() <p>Clears the current object and sets all attributes to their default values</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_clearAllReferences">clearAllReferences</a>( boolean $deep = false) <p>Resets all references to other model objects or collections of model objects.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> string </div> <div class="col-md-8 type"> <a href="#method___toString">__toString</a>() <p>Return the string representation of this object</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_setLocale">setLocale</a>( string $locale = &#039;en_US&#039;) <p>Sets the locale for translations</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> string </div> <div class="col-md-8 type"> <a href="#method_getLocale">getLocale</a>() <p>Gets the locale for translations</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Model/ModuleConfigI18n.html"><abbr title="Thelia\Model\ModuleConfigI18n">ModuleConfigI18n</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_getTranslation">getTranslation</a>( string $locale = &#039;en_US&#039;, <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Returns the current translation for a given locale</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_removeTranslation">removeTranslation</a>( string $locale = &#039;en_US&#039;, <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Remove the translation for a given locale</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Model/ModuleConfigI18n.html"><abbr title="Thelia\Model\ModuleConfigI18n">ModuleConfigI18n</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_getCurrentTranslation">getCurrentTranslation</a>( <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Returns the current translation</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> string </div> <div class="col-md-8 type"> <a href="#method_getValue">getValue</a>() <p>Get the [value] column value.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Model/ModuleConfigI18n.html"><abbr title="Thelia\Model\ModuleConfigI18n">ModuleConfigI18n</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_setValue">setValue</a>( string $v) <p>Set the value of [value] column.</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_keepUpdateDateUnchanged">keepUpdateDateUnchanged</a>() <p>Mark the current object so that the update date doesn't get updated during next save</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> boolean </div> <div class="col-md-8 type"> <a href="#method_preSave">preSave</a>( <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Code to be run before persisting the object</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_postSave">postSave</a>( <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Code to be run after persisting the object</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> boolean </div> <div class="col-md-8 type"> <a href="#method_preInsert">preInsert</a>( <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Code to be run before inserting to database</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_postInsert">postInsert</a>( <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Code to be run after inserting to database</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> boolean </div> <div class="col-md-8 type"> <a href="#method_preUpdate">preUpdate</a>( <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Code to be run before updating the object in database</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_postUpdate">postUpdate</a>( <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Code to be run after updating the object in database</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> boolean </div> <div class="col-md-8 type"> <a href="#method_preDelete">preDelete</a>( <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Code to be run before deleting the object in database</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_postDelete">postDelete</a>( <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Code to be run after deleting the object in database</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> array|string </div> <div class="col-md-8 type"> <a href="#method___call">__call</a>( string $name, mixed $params) <p>Derived method to catches calls to undefined methods.</p> </div> <div class="col-md-2"></div> </div> </div> <h2>Details</h2> <div id="method-details"> <div class="method-item"> <h3 id="method___construct"> <div class="location">at line 134</div> <code> <strong>__construct</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Initializes internal state of Thelia\Model\Base\ModuleConfig object.</p> </div> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_isModified"> <div class="location">at line 143</div> <code> boolean <strong>isModified</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Returns whether the object has been modified.</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> boolean</td> <td>True if the object has been modified.</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_isColumnModified"> <div class="location">at line 154</div> <code> boolean <strong>isColumnModified</strong>( string $col)</code> </h3> <div class="details"> <div class="method-description"> <p>Has specified column been modified?</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> string</td> <td>$col</td> <td>column fully qualified name (TableMap::TYPE<em>COLNAME), e.g. Book::AUTHOR</em>ID</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> boolean</td> <td>True if $col has been modified.</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getModifiedColumns"> <div class="location">at line 163</div> <code> array <strong>getModifiedColumns</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Get the columns that have been modified in this object.</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> array</td> <td>A unique list of the modified column names for this object.</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_isNew"> <div class="location">at line 175</div> <code> boolean <strong>isNew</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Returns whether the object has ever been saved. This will be false, if the object was retrieved from storage or was created and then saved.</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> boolean</td> <td>true, if the object has never been persisted.</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_setNew"> <div class="location">at line 186</div> <code> <strong>setNew</strong>( boolean $b)</code> </h3> <div class="details"> <div class="method-description"> <p>Setter for the isNew attribute. This method will be called by Propel-generated children and objects.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> boolean</td> <td>$b</td> <td>the state of the object.</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_isDeleted"> <div class="location">at line 195</div> <code> boolean <strong>isDeleted</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Whether this object has been deleted.</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> boolean</td> <td>The deleted state of this object.</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_setDeleted"> <div class="location">at line 205</div> <code> void <strong>setDeleted</strong>( boolean $b)</code> </h3> <div class="details"> <div class="method-description"> <p>Specify whether this object has been deleted.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> boolean</td> <td>$b</td> <td>The deleted state of this object.</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> void</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_resetModified"> <div class="location">at line 215</div> <code> void <strong>resetModified</strong>( string $col = null)</code> </h3> <div class="details"> <div class="method-description"> <p>Sets the modified state for the object to be false.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> string</td> <td>$col</td> <td>If supplied, only the specified column is reset.</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> void</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_equals"> <div class="location">at line 234</div> <code> boolean <strong>equals</strong>( mixed $obj)</code> </h3> <div class="details"> <div class="method-description"> <p>Compares this with another <code>ModuleConfig</code> instance. If <code>obj</code> is an instance of <code>ModuleConfig</code>, delegates to <code>equals(ModuleConfig)</code>. Otherwise, returns <code>false</code>.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> mixed</td> <td>$obj</td> <td>The object to compare to.</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> boolean</td> <td>Whether equal to the object specified.</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_hashCode"> <div class="location">at line 259</div> <code> int <strong>hashCode</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>If the primary key is not null, return the hashcode of the primary key. Otherwise, return the hash code of the object.</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> int</td> <td>Hashcode</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getVirtualColumns"> <div class="location">at line 273</div> <code> array <strong>getVirtualColumns</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Get the associative array of the virtual columns in this object</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> array</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_hasVirtualColumn"> <div class="location">at line 284</div> <code> boolean <strong>hasVirtualColumn</strong>( string $name)</code> </h3> <div class="details"> <div class="method-description"> <p>Checks the existence of a virtual column in this object</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> string</td> <td>$name</td> <td>The virtual column name</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> boolean</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getVirtualColumn"> <div class="location">at line 297</div> <code> mixed <strong>getVirtualColumn</strong>( string $name)</code> </h3> <div class="details"> <div class="method-description"> <p>Get the value of a virtual column in this object</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> string</td> <td>$name</td> <td>The virtual column name</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> mixed</td> <td></td> </tr> </table> <h4>Exceptions</h4> <table class="table table-condensed"> <tr> <td><abbr title="Propel\Runtime\Exception\PropelException">PropelException</abbr></td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_setVirtualColumn"> <div class="location">at line 314</div> <code> <a href="../../../Thelia/Model/Base/ModuleConfig.html"><abbr title="Thelia\Model\Base\ModuleConfig">ModuleConfig</abbr></a> <strong>setVirtualColumn</strong>( string $name, mixed $value)</code> </h3> <div class="details"> <div class="method-description"> <p>Set the value of a virtual column in this object</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> string</td> <td>$name</td> <td>The virtual column name</td> </tr> <tr> <td> mixed</td> <td>$value</td> <td>The value to give to the virtual column</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Model/Base/ModuleConfig.html"><abbr title="Thelia\Model\Base\ModuleConfig">ModuleConfig</abbr></a></td> <td>The current object, for fluid interface</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_importFrom"> <div class="location">at line 346</div> <code> <a href="../../../Thelia/Model/Base/ModuleConfig.html"><abbr title="Thelia\Model\Base\ModuleConfig">ModuleConfig</abbr></a> <strong>importFrom</strong>( mixed $parser, string $data)</code> </h3> <div class="details"> <div class="method-description"> <p>Populate the current object from a string, using a given parser format <code> $book = new Book(); $book->importFrom('JSON', '{"Id":9012,"Title":"Don Juan","ISBN":"0140422161","Price":12.99,"PublisherId":1234,"AuthorId":5678}'); </code></p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> mixed</td> <td>$parser</td> <td>A AbstractParser instance, or a format name ('XML', 'YAML', 'JSON', 'CSV')</td> </tr> <tr> <td> string</td> <td>$data</td> <td>The source data to import from</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Model/Base/ModuleConfig.html"><abbr title="Thelia\Model\Base\ModuleConfig">ModuleConfig</abbr></a></td> <td>The current object, for fluid interface</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_exportTo"> <div class="location">at line 369</div> <code> string <strong>exportTo</strong>( mixed $parser, boolean $includeLazyLoadColumns = true)</code> </h3> <div class="details"> <div class="method-description"> <p>Export the current object properties to a string, using a given parser format <code> $book = BookQuery::create()->findPk(9012); echo $book->exportTo('JSON'); => {"Id":9012,"Title":"Don Juan","ISBN":"0140422161","Price":12.99,"PublisherId":1234,"AuthorId":5678}'); </code></p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> mixed</td> <td>$parser</td> <td>A AbstractParser instance, or a format name ('XML', 'YAML', 'JSON', 'CSV')</td> </tr> <tr> <td> boolean</td> <td>$includeLazyLoadColumns</td> <td>(optional) Whether to include lazy load(ed) columns. Defaults to TRUE.</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> string</td> <td>The exported data</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method___sleep"> <div class="location">at line 382</div> <code> <strong>__sleep</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Clean up internal collections prior to serializing Avoids recursive loops that turn into segmentation faults when serializing</p> </div> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_getId"> <div class="location">at line 394</div> <code> int <strong>getId</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Get the [id] column value.</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> int</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getModuleId"> <div class="location">at line 405</div> <code> int <strong>getModuleId</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Get the [module_id] column value.</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> int</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getName"> <div class="location">at line 416</div> <code> string <strong>getName</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Get the [name] column value.</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> string</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getCreatedAt"> <div class="location">at line 433</div> <code> mixed <strong>getCreatedAt</strong>( string $format = NULL)</code> </h3> <div class="details"> <div class="method-description"> <p>Get the [optionally formatted] temporal [created_at] column value.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> string</td> <td>$format</td> <td>The date/time format string (either date()-style or strftime()-style). If format is NULL, then the raw \DateTime object will be returned.</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> mixed</td> <td>Formatted date/time value as string or \DateTime object (if format is NULL), NULL if column is NULL, and 0 if column value is 0000-00-00 00:00:00</td> </tr> </table> <h4>Exceptions</h4> <table class="table table-condensed"> <tr> <td><abbr title="Propel\Runtime\Exception\PropelException">PropelException</abbr></td> <td><ul> <li>if unable to parse/validate the date/time value.</li> </ul> </td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getUpdatedAt"> <div class="location">at line 453</div> <code> mixed <strong>getUpdatedAt</strong>( string $format = NULL)</code> </h3> <div class="details"> <div class="method-description"> <p>Get the [optionally formatted] temporal [updated_at] column value.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> string</td> <td>$format</td> <td>The date/time format string (either date()-style or strftime()-style). If format is NULL, then the raw \DateTime object will be returned.</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> mixed</td> <td>Formatted date/time value as string or \DateTime object (if format is NULL), NULL if column is NULL, and 0 if column value is 0000-00-00 00:00:00</td> </tr> </table> <h4>Exceptions</h4> <table class="table table-condensed"> <tr> <td><abbr title="Propel\Runtime\Exception\PropelException">PropelException</abbr></td> <td><ul> <li>if unable to parse/validate the date/time value.</li> </ul> </td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_setId"> <div class="location">at line 468</div> <code> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a> <strong>setId</strong>( int $v)</code> </h3> <div class="details"> <div class="method-description"> <p>Set the value of [id] column.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> int</td> <td>$v</td> <td>new value</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_setModuleId"> <div class="location">at line 489</div> <code> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a> <strong>setModuleId</strong>( int $v)</code> </h3> <div class="details"> <div class="method-description"> <p>Set the value of [module_id] column.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> int</td> <td>$v</td> <td>new value</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_setName"> <div class="location">at line 514</div> <code> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a> <strong>setName</strong>( string $v)</code> </h3> <div class="details"> <div class="method-description"> <p>Set the value of [name] column.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> string</td> <td>$v</td> <td>new value</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_setCreatedAt"> <div class="location">at line 536</div> <code> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a> <strong>setCreatedAt</strong>( mixed $v)</code> </h3> <div class="details"> <div class="method-description"> <p>Sets the value of [created_at] column to a normalized version of the date/time value specified.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> mixed</td> <td>$v</td> <td>string, integer (timestamp), or \DateTime value. Empty strings are treated as NULL.</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_setUpdatedAt"> <div class="location">at line 557</div> <code> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a> <strong>setUpdatedAt</strong>( mixed $v)</code> </h3> <div class="details"> <div class="method-description"> <p>Sets the value of [updated_at] column to a normalized version of the date/time value specified.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> mixed</td> <td>$v</td> <td>string, integer (timestamp), or \DateTime value. Empty strings are treated as NULL.</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_hasOnlyDefaultValues"> <div class="location">at line 579</div> <code> boolean <strong>hasOnlyDefaultValues</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Indicates whether the columns in this object are only set to default values.</p> <p>This method can be used in conjunction with isModified() to indicate whether an object is both modified <em>and</em> has some values set which are non-default.</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> boolean</td> <td>Whether the columns in this object are only been set with default values.</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_hydrate"> <div class="location">at line 603</div> <code> int <strong>hydrate</strong>( array $row, int $startcol, boolean $rehydrate = false, string $indexType = TableMap::TYPE_NUM)</code> </h3> <div class="details"> <div class="method-description"> <p>Hydrates (populates) the object variables with values from the database resultset.</p> <p>An offset (0-based "start column") is specified so that objects can be hydrated with a subset of the columns in the resultset rows. This is needed, for example, for results of JOIN queries where the resultset row includes columns from two or more tables.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> array</td> <td>$row</td> <td>The row returned by DataFetcher->fetch().</td> </tr> <tr> <td> int</td> <td>$startcol</td> <td>0-based offset column which indicates which restultset column to start with.</td> </tr> <tr> <td> boolean</td> <td>$rehydrate</td> <td>Whether this object is being re-hydrated from the database.</td> </tr> <tr> <td> string</td> <td>$indexType</td> <td>The index type of $row. Mostly DataFetcher->getIndexType(). One of the class type constants TableMap::TYPE<em>PHPNAME, TableMap::TYPE</em>STUDLYPHPNAME TableMap::TYPE<em>COLNAME, TableMap::TYPE</em>FIELDNAME, TableMap::TYPE_NUM.</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> int</td> <td>next starting column</td> </tr> </table> <h4>Exceptions</h4> <table class="table table-condensed"> <tr> <td><abbr title="Propel\Runtime\Exception\PropelException">PropelException</abbr></td> <td><ul> <li>Any caught Exception will be rewrapped as a PropelException.</li> </ul> </td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_ensureConsistency"> <div class="location">at line 656</div> <code> <strong>ensureConsistency</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Checks and repairs the internal consistency of the object.</p> <p>This method is executed after an already-instantiated object is re-hydrated from the database. It exists to check any foreign keys to make sure that the objects related to the current object are correct based on foreign key.</p> <p>You can override this method in the stub class, but you should always invoke the base method from the overridden method (i.e. parent::ensureConsistency()), in case your model changes.</p> </div> <div class="tags"> <h4>Exceptions</h4> <table class="table table-condensed"> <tr> <td><abbr title="Propel\Runtime\Exception\PropelException">PropelException</abbr></td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_reload"> <div class="location">at line 673</div> <code> void <strong>reload</strong>( boolean $deep = false, <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <div class="method-description"> <p>Reloads this object from datastore based on primary key and (optionally) resets all associated objects.</p> <p>This will only work if the object has been saved and has a valid primary key set.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> boolean</td> <td>$deep</td> <td>(optional) Whether to also de-associated any related objects.</td> </tr> <tr> <td> <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>(optional) The ConnectionInterface connection to use.</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> void</td> <td></td> </tr> </table> <h4>Exceptions</h4> <table class="table table-condensed"> <tr> <td><abbr title="Propel\Runtime\Exception\PropelException">PropelException</abbr></td> <td><ul> <li>if this object is deleted, unsaved or doesn't have pk match in db</li> </ul> </td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_delete"> <div class="location">at line 715</div> <code> void <strong>delete</strong>( <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <div class="method-description"> <p>Removes this object from datastore and sets delete attribute.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td></td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> void</td> <td></td> </tr> </table> <h4>Exceptions</h4> <table class="table table-condensed"> <tr> <td><abbr title="Propel\Runtime\Exception\PropelException">PropelException</abbr></td> <td></td> </tr> </table> <h4>See also</h4> <table class="table table-condensed"> <tr> <td>ModuleConfig::setDeleted()</td> <td></td> </tr> <tr> <td>ModuleConfig::isDeleted()</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_save"> <div class="location">at line 757</div> <code> int <strong>save</strong>( <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <div class="method-description"> <p>Persists this object to the database.</p> <p>If the object is new, it inserts it; otherwise an update is performed. All modified related objects will also be persisted in the doSave() method. This method wraps all precipitate database operations in a single transaction.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td></td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> int</td> <td>The number of rows affected by this insert/update and any referring fk objects' save() operations.</td> </tr> </table> <h4>Exceptions</h4> <table class="table table-condensed"> <tr> <td><abbr title="Propel\Runtime\Exception\PropelException">PropelException</abbr></td> <td></td> </tr> </table> <h4>See also</h4> <table class="table table-condensed"> <tr> <td>doSave()</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getByName"> <div class="location">at line 976</div> <code> mixed <strong>getByName</strong>( string $name, string $type = TableMap::TYPE_PHPNAME)</code> </h3> <div class="details"> <div class="method-description"> <p>Retrieves a field from the object by name passed in as a string.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> string</td> <td>$name</td> <td>name</td> </tr> <tr> <td> string</td> <td>$type</td> <td>The type of fieldname the $name is of: one of the class type constants TableMap::TYPE<em>PHPNAME, TableMap::TYPE</em>STUDLYPHPNAME TableMap::TYPE<em>COLNAME, TableMap::TYPE</em>FIELDNAME, TableMap::TYPE<em>NUM. Defaults to TableMap::TYPE</em>PHPNAME.</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> mixed</td> <td>Value of field.</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getByPosition"> <div class="location">at line 991</div> <code> mixed <strong>getByPosition</strong>( int $pos)</code> </h3> <div class="details"> <div class="method-description"> <p>Retrieves a field from the object by Position as specified in the xml schema.</p> <p>Zero-based.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> int</td> <td>$pos</td> <td>position in xml schema</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> mixed</td> <td>Value of field at $pos</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_toArray"> <div class="location">at line 1030</div> <code> array <strong>toArray</strong>( string $keyType = TableMap::TYPE_PHPNAME, boolean $includeLazyLoadColumns = true, array $alreadyDumpedObjects = array(), boolean $includeForeignObjects = false)</code> </h3> <div class="details"> <div class="method-description"> <p>Exports the object as an array.</p> <p>You can specify the key type of the array by passing one of the class type constants.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> string</td> <td>$keyType</td> <td>(optional) One of the class type constants TableMap::TYPE<em>PHPNAME, TableMap::TYPE</em>STUDLYPHPNAME, TableMap::TYPE<em>COLNAME, TableMap::TYPE</em>FIELDNAME, TableMap::TYPE<em>NUM. Defaults to TableMap::TYPE</em>PHPNAME.</td> </tr> <tr> <td> boolean</td> <td>$includeLazyLoadColumns</td> <td>(optional) Whether to include lazy loaded columns. Defaults to TRUE.</td> </tr> <tr> <td> array</td> <td>$alreadyDumpedObjects</td> <td>List of objects to skip to avoid recursion</td> </tr> <tr> <td> boolean</td> <td>$includeForeignObjects</td> <td>(optional) Whether to include hydrated related objects. Default to FALSE.</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> array</td> <td>an associative array containing the field names (as keys) and field values</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_setByName"> <div class="location">at line 1072</div> <code> void <strong>setByName</strong>( string $name, mixed $value, string $type = TableMap::TYPE_PHPNAME)</code> </h3> <div class="details"> <div class="method-description"> <p>Sets a field from the object by name passed in as a string.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> string</td> <td>$name</td> <td></td> </tr> <tr> <td> mixed</td> <td>$value</td> <td>field value</td> </tr> <tr> <td> string</td> <td>$type</td> <td>The type of fieldname the $name is of: one of the class type constants TableMap::TYPE<em>PHPNAME, TableMap::TYPE</em>STUDLYPHPNAME TableMap::TYPE<em>COLNAME, TableMap::TYPE</em>FIELDNAME, TableMap::TYPE<em>NUM. Defaults to TableMap::TYPE</em>PHPNAME.</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> void</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_setByPosition"> <div class="location">at line 1087</div> <code> void <strong>setByPosition</strong>( int $pos, mixed $value)</code> </h3> <div class="details"> <div class="method-description"> <p>Sets a field from the object by Position as specified in the xml schema.</p> <p>Zero-based.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> int</td> <td>$pos</td> <td>position in xml schema</td> </tr> <tr> <td> mixed</td> <td>$value</td> <td>field value</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> void</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_fromArray"> <div class="location">at line 1125</div> <code> void <strong>fromArray</strong>( array $arr, string $keyType = TableMap::TYPE_PHPNAME)</code> </h3> <div class="details"> <div class="method-description"> <p>Populates the object using an array.</p> <p>This is particularly useful when populating an object from one of the request arrays (e.g. $_POST). This method goes through the column names, checking to see whether a matching key exists in populated array. If so the setByName() method is called for that column.</p> <p>You can specify the key type of the array by additionally passing one of the class type constants TableMap::TYPE<em>PHPNAME, TableMap::TYPE</em>STUDLYPHPNAME, TableMap::TYPE<em>COLNAME, TableMap::TYPE</em>FIELDNAME, TableMap::TYPE<em>NUM. The default key type is the column's TableMap::TYPE</em>PHPNAME.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> array</td> <td>$arr</td> <td>An array to populate the object from.</td> </tr> <tr> <td> string</td> <td>$keyType</td> <td>The type of keys the array uses.</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> void</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_buildCriteria"> <div class="location">at line 1141</div> <code> <abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> <strong>buildCriteria</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Build a Criteria object containing the values of all modified columns in this object.</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr></td> <td>The Criteria object containing all modified values.</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_buildPkeyCriteria"> <div class="location">at line 1162</div> <code> <abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> <strong>buildPkeyCriteria</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Builds a Criteria object containing the primary key for this object.</p> <p>Unlike buildCriteria() this method includes the primary key values regardless of whether or not they have been modified.</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr></td> <td>The Criteria object containing value(s) for primary key(s).</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getPrimaryKey"> <div class="location">at line 1174</div> <code> int <strong>getPrimaryKey</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Returns the primary key for this object (row).</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> int</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_setPrimaryKey"> <div class="location">at line 1185</div> <code> void <strong>setPrimaryKey</strong>( int $key)</code> </h3> <div class="details"> <div class="method-description"> <p>Generic method to set the primary key (id column).</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> int</td> <td>$key</td> <td>Primary key.</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> void</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_isPrimaryKeyNull"> <div class="location">at line 1194</div> <code> boolean <strong>isPrimaryKeyNull</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Returns true if the primary key for this object is null.</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> boolean</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_copyInto"> <div class="location">at line 1211</div> <code> <strong>copyInto</strong>( object $copyObj, boolean $deepCopy = false, boolean $makeNew = true)</code> </h3> <div class="details"> <div class="method-description"> <p>Sets contents of passed object to values from current object.</p> <p>If desired, this method can also make copies of all associated (fkey referrers) objects.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> object</td> <td>$copyObj</td> <td>An object of \Thelia\Model\ModuleConfig (or compatible) type.</td> </tr> <tr> <td> boolean</td> <td>$deepCopy</td> <td>Whether to also copy all rows that refer (by fkey) to the current row.</td> </tr> <tr> <td> boolean</td> <td>$makeNew</td> <td>Whether to reset autoincrement PKs and make the object new.</td> </tr> </table> <h4>Exceptions</h4> <table class="table table-condensed"> <tr> <td><abbr title="Propel\Runtime\Exception\PropelException">PropelException</abbr></td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_copy"> <div class="location">at line 1249</div> <code> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a> <strong>copy</strong>( boolean $deepCopy = false)</code> </h3> <div class="details"> <div class="method-description"> <p>Makes a copy of this object that will be inserted as a new row in table when saved.</p> <p>It creates a new object filling in the simple attributes, but skipping any primary keys that are defined for the table.</p> <p>If desired, this method can also make copies of all associated (fkey referrers) objects.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> boolean</td> <td>$deepCopy</td> <td>Whether to also copy all rows that refer (by fkey) to the current row.</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a></td> <td>Clone of current object.</td> </tr> </table> <h4>Exceptions</h4> <table class="table table-condensed"> <tr> <td><abbr title="Propel\Runtime\Exception\PropelException">PropelException</abbr></td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_setModule"> <div class="location">at line 1266</div> <code> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a> <strong>setModule</strong>( <abbr title="Thelia\Model\Base\Thelia\Model\Module">Module</abbr> $v = null)</code> </h3> <div class="details"> <div class="method-description"> <p>Declares an association between this object and a ChildModule object.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> <abbr title="Thelia\Model\Base\Thelia\Model\Module">Module</abbr></td> <td>$v</td> <td></td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> <h4>Exceptions</h4> <table class="table table-condensed"> <tr> <td><abbr title="Propel\Runtime\Exception\PropelException">PropelException</abbr></td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getModule"> <div class="location">at line 1294</div> <code> <a href="../../../Thelia/Model/Module.html"><abbr title="Thelia\Model\Module">Module</abbr></a> <strong>getModule</strong>( <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <div class="method-description"> <p>Get the associated ChildModule object</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>Optional Connection object.</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Model/Module.html"><abbr title="Thelia\Model\Module">Module</abbr></a></td> <td>The associated ChildModule object.</td> </tr> </table> <h4>Exceptions</h4> <table class="table table-condensed"> <tr> <td><abbr title="Propel\Runtime\Exception\PropelException">PropelException</abbr></td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_initRelation"> <div class="location">at line 1319</div> <code> void <strong>initRelation</strong>( string $relationName)</code> </h3> <div class="details"> <div class="method-description"> <p>Initializes a collection based on the name of a relation.</p> <p>Avoids crafting an 'init[$relationName]s' method name that wouldn't work when StandardEnglishPluralizer is used.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> string</td> <td>$relationName</td> <td>The name of the relation to initialize</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> void</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_clearModuleConfigI18ns"> <div class="location">at line 1335</div> <code> void <strong>clearModuleConfigI18ns</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Clears out the collModuleConfigI18ns collection</p> <p>This does not modify the database; however, it will remove any associated objects, causing them to be refetched by subsequent calls to accessor method.</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> void</td> <td></td> </tr> </table> <h4>See also</h4> <table class="table table-condensed"> <tr> <td>addModuleConfigI18ns()</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_resetPartialModuleConfigI18ns"> <div class="location">at line 1343</div> <code> <strong>resetPartialModuleConfigI18ns</strong>($v = true)</code> </h3> <div class="details"> <div class="method-description"> <p>Reset is the collModuleConfigI18ns collection loaded partially.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td></td> <td>$v</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_initModuleConfigI18ns"> <div class="location">at line 1360</div> <code> void <strong>initModuleConfigI18ns</strong>( boolean $overrideExisting = true)</code> </h3> <div class="details"> <div class="method-description"> <p>Initializes the collModuleConfigI18ns collection.</p> <p>By default this just sets the collModuleConfigI18ns collection to an empty array (like clearcollModuleConfigI18ns()); however, you may wish to override this method in your stub class to provide setting appropriate to your application -- for example, setting the initial array to the values stored in database.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> boolean</td> <td>$overrideExisting</td> <td>If set to true, the method call initializes the collection even if it is not empty</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> void</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getModuleConfigI18ns"> <div class="location">at line 1383</div> <code> <abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/ModuleConfigI18n.html"><abbr title="Thelia\Model\ModuleConfigI18n">ModuleConfigI18n</abbr></a>[] <strong>getModuleConfigI18ns</strong>( <abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <div class="method-description"> <p>Gets an array of ChildModuleConfigI18n objects which contain a foreign key that references this object.</p> <p>If the $criteria is not null, it is used to always fetch the results from the database. Otherwise the results are fetched from the database the first time, then cached. Next time the same method is called without $criteria, the cached collection is returned. If this ChildModuleConfig is new, it will return an empty collection or the current collection; the criteria is ignored on a new object.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> <abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr></td> <td>$criteria</td> <td>optional Criteria object to narrow the query</td> </tr> <tr> <td> <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>optional connection object</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/ModuleConfigI18n.html"><abbr title="Thelia\Model\ModuleConfigI18n">ModuleConfigI18n</abbr></a>[]</td> <td>List of ChildModuleConfigI18n objects</td> </tr> </table> <h4>Exceptions</h4> <table class="table table-condensed"> <tr> <td><abbr title="Propel\Runtime\Exception\PropelException">PropelException</abbr></td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_setModuleConfigI18ns"> <div class="location">at line 1439</div> <code> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a> <strong>setModuleConfigI18ns</strong>( <abbr title="Thelia\Model\Base\Propel\Runtime\Collection\Collection">Collection</abbr> $moduleConfigI18ns, <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <div class="method-description"> <p>Sets a collection of ModuleConfigI18n objects related by a one-to-many relationship to the current object.</p> <p>It will also schedule objects for deletion based on a diff between old objects (aka persisted) and new objects from the given Propel collection.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> <abbr title="Thelia\Model\Base\Propel\Runtime\Collection\Collection">Collection</abbr></td> <td>$moduleConfigI18ns</td> <td>A Propel collection.</td> </tr> <tr> <td> <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>Optional connection object</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_countModuleConfigI18ns"> <div class="location">at line 1473</div> <code> int <strong>countModuleConfigI18ns</strong>( <abbr title="Thelia\Model\Base\Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, boolean $distinct = false, <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <div class="method-description"> <p>Returns the number of related ModuleConfigI18n objects.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> <abbr title="Thelia\Model\Base\Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr></td> <td>$criteria</td> <td></td> </tr> <tr> <td> boolean</td> <td>$distinct</td> <td></td> </tr> <tr> <td> <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td></td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> int</td> <td>Count of related ModuleConfigI18n objects.</td> </tr> </table> <h4>Exceptions</h4> <table class="table table-condensed"> <tr> <td><abbr title="Propel\Runtime\Exception\PropelException">PropelException</abbr></td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_addModuleConfigI18n"> <div class="location">at line 1505</div> <code> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a> <strong>addModuleConfigI18n</strong>( <abbr title="Thelia\Model\Base\Thelia\Model\ModuleConfigI18n">ModuleConfigI18n</abbr> $l)</code> </h3> <div class="details"> <div class="method-description"> <p>Method called to associate a ChildModuleConfigI18n object to this object through the ChildModuleConfigI18n foreign key attribute.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> <abbr title="Thelia\Model\Base\Thelia\Model\ModuleConfigI18n">ModuleConfigI18n</abbr></td> <td>$l</td> <td>ChildModuleConfigI18n</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_removeModuleConfigI18n"> <div class="location">at line 1536</div> <code> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a> <strong>removeModuleConfigI18n</strong>( <a href="../../../Thelia/Model/Base/ModuleConfigI18n.html"><abbr title="Thelia\Model\Base\ModuleConfigI18n">ModuleConfigI18n</abbr></a> $moduleConfigI18n)</code> </h3> <div class="details"> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Model/Base/ModuleConfigI18n.html"><abbr title="Thelia\Model\Base\ModuleConfigI18n">ModuleConfigI18n</abbr></a></td> <td>$moduleConfigI18n</td> <td>The moduleConfigI18n object to remove.</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_clear"> <div class="location">at line 1554</div> <code> <strong>clear</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Clears the current object and sets all attributes to their default values</p> </div> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_clearAllReferences"> <div class="location">at line 1577</div> <code> <strong>clearAllReferences</strong>( boolean $deep = false)</code> </h3> <div class="details"> <div class="method-description"> <p>Resets all references to other model objects or collections of model objects.</p> <p>This method is a user-space workaround for PHP's inability to garbage collect objects with circular references (even in PHP 5.3). This is currently necessary when using Propel in certain daemon or large-volume/high-memory operations.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> boolean</td> <td>$deep</td> <td>Whether to also clear the references on all referrer objects.</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method___toString"> <div class="location">at line 1600</div> <code> string <strong>__toString</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Return the string representation of this object</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> string</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_setLocale"> <div class="location">at line 1614</div> <code> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a> <strong>setLocale</strong>( string $locale = &#039;en_US&#039;)</code> </h3> <div class="details"> <div class="method-description"> <p>Sets the locale for translations</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> string</td> <td>$locale</td> <td>Locale to use for the translation, e.g. 'fr_FR'</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getLocale"> <div class="location">at line 1626</div> <code> string <strong>getLocale</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Gets the locale for translations</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> string</td> <td>$locale Locale to use for the translation, e.g. 'fr_FR'</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getTranslation"> <div class="location">at line 1638</div> <code> <a href="../../../Thelia/Model/ModuleConfigI18n.html"><abbr title="Thelia\Model\ModuleConfigI18n">ModuleConfigI18n</abbr></a> <strong>getTranslation</strong>( string $locale = &#039;en_US&#039;, <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <div class="method-description"> <p>Returns the current translation for a given locale</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> string</td> <td>$locale</td> <td>Locale to use for the translation, e.g. 'fr_FR'</td> </tr> <tr> <td> <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>an optional connection object</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Model/ModuleConfigI18n.html"><abbr title="Thelia\Model\ModuleConfigI18n">ModuleConfigI18n</abbr></a></td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_removeTranslation"> <div class="location">at line 1673</div> <code> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a> <strong>removeTranslation</strong>( string $locale = &#039;en_US&#039;, <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <div class="method-description"> <p>Remove the translation for a given locale</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> string</td> <td>$locale</td> <td>Locale to use for the translation, e.g. 'fr_FR'</td> </tr> <tr> <td> <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>an optional connection object</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getCurrentTranslation"> <div class="location">at line 1699</div> <code> <a href="../../../Thelia/Model/ModuleConfigI18n.html"><abbr title="Thelia\Model\ModuleConfigI18n">ModuleConfigI18n</abbr></a> <strong>getCurrentTranslation</strong>( <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <div class="method-description"> <p>Returns the current translation</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>an optional connection object</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Model/ModuleConfigI18n.html"><abbr title="Thelia\Model\ModuleConfigI18n">ModuleConfigI18n</abbr></a></td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getValue"> <div class="location">at line 1710</div> <code> string <strong>getValue</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Get the [value] column value.</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> string</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_setValue"> <div class="location">at line 1722</div> <code> <a href="../../../Thelia/Model/ModuleConfigI18n.html"><abbr title="Thelia\Model\ModuleConfigI18n">ModuleConfigI18n</abbr></a> <strong>setValue</strong>( string $v)</code> </h3> <div class="details"> <div class="method-description"> <p>Set the value of [value] column.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> string</td> <td>$v</td> <td>new value</td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Model/ModuleConfigI18n.html"><abbr title="Thelia\Model\ModuleConfigI18n">ModuleConfigI18n</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_keepUpdateDateUnchanged"> <div class="location">at line 1735</div> <code> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a> <strong>keepUpdateDateUnchanged</strong>()</code> </h3> <div class="details"> <div class="method-description"> <p>Mark the current object so that the update date doesn't get updated during next save</p> </div> <div class="tags"> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Thelia/Model/ModuleConfig.html"><abbr title="Thelia\Model\ModuleConfig">ModuleConfig</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_preSave"> <div class="location">at line 1747</div> <code> boolean <strong>preSave</strong>( <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <div class="method-description"> <p>Code to be run before persisting the object</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td></td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> boolean</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_postSave"> <div class="location">at line 1756</div> <code> <strong>postSave</strong>( <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <div class="method-description"> <p>Code to be run after persisting the object</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_preInsert"> <div class="location">at line 1766</div> <code> boolean <strong>preInsert</strong>( <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <div class="method-description"> <p>Code to be run before inserting to database</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td></td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> boolean</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_postInsert"> <div class="location">at line 1775</div> <code> <strong>postInsert</strong>( <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <div class="method-description"> <p>Code to be run after inserting to database</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_preUpdate"> <div class="location">at line 1785</div> <code> boolean <strong>preUpdate</strong>( <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <div class="method-description"> <p>Code to be run before updating the object in database</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td></td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> boolean</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_postUpdate"> <div class="location">at line 1794</div> <code> <strong>postUpdate</strong>( <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <div class="method-description"> <p>Code to be run after updating the object in database</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_preDelete"> <div class="location">at line 1804</div> <code> boolean <strong>preDelete</strong>( <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <div class="method-description"> <p>Code to be run before deleting the object in database</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td></td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> boolean</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_postDelete"> <div class="location">at line 1813</div> <code> <strong>postDelete</strong>( <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <div class="method-description"> <p>Code to be run after deleting the object in database</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> <abbr title="Thelia\Model\Base\Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method___call"> <div class="location">at line 1830</div> <code> array|string <strong>__call</strong>( string $name, mixed $params)</code> </h3> <div class="details"> <div class="method-description"> <p>Derived method to catches calls to undefined methods.</p> <p>Provides magic import/export method support (fromXML()/toXML(), fromYAML()/toYAML(), etc.). Allows to define default __call() behavior if you overwrite __call()</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> string</td> <td>$name</td> <td></td> </tr> <tr> <td> mixed</td> <td>$params</td> <td></td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> array|string</td> <td></td> </tr> </table> </div> </div> </div> </div> </div> <div id="footer"> Generated by <a href="http://sami.sensiolabs.org/">Sami, the API Documentation Generator</a>. </div> </div> </div> </body> </html>
src/lib/opentype.js/examples/font-editor.html
create3000/cobweb
<!-- A simple font editor in HTML --> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Font Editor</title> <style> body { margin: 0; padding: 0; background: #f6f6f6; font: 14px Helvetica,Arial,sans-serif; color: #333; } .header { position: absolute; top: 0; left: 0; height: 40px; width: 100%; background: #333; color: #f6f6f6; } .header h1 { font-size: 18px; line-height: 40px; margin: 0; padding: 0 10px; display: inline-block; } .header .actions { float: right; margin-right: 10px; line-height: 40px; } .header .actions button { background: #333; color: #ccc; border: 1px solid #666; border-radius: 2px; padding: 5px 5px; } .header .actions button:hover { background: #444; color: #f6f6f6; } .glyphs { position: absolute; top: 40px; left: 0; height: 40px; width: 100%; overflow-x: auto; overflow-y: hidden; border-bottom: 2px solid #f6f6f6; background: #ddd; } .glyphs span { margin: 0; padding: 0; display: inline-block; border-right: 1px solid #ccc; font-size: 24px; width: 40px; text-align: center; height: 40px; line-height: 40px; color: #666; } .glyphs span.selected { background: #f6f6f6; color: #333; } .glyphs span:hover { background: #f6f6f6; } .editor { position: absolute; top: 80px; left: 0; bottom: 0; width: 100%; } canvas { border: 1px solid #ccc; } </style> <script src="../dist/opentype.js"></script> </head> <body> <div class="wrap"> <div class="header"> <h1>Font Editor</h1> <span class="actions"> <button onclick="downloadFont()">Download OTF</button> </span> </div> <div id="glyphs" class="glyphs"> </div> <div class="editor" id="editor"> <canvas id="c" width="800" height="600"></canvas> </div> </div> <script> var HEADER_HEIGHT = 80; var EDITOR_WIDTH = 800; var EDITOR_HEIGHT = 600; var GRID_SIZE = 30; var ORIGIN_X = 2; var ORIGIN_Y = 10; var DRAG_ON = 'on'; var DRAG_OFF = 'off'; var gFont = null; var gCurrentGlyphName = null ; var gCanvas = document.getElementById('c'); var gCtx = gCanvas.getContext('2d'); var gDragMode = null; function drawGrid(ctx) { ctx.strokeStyle = '#ccc'; ctx.beginPath(); for (var y = GRID_SIZE; y < EDITOR_HEIGHT; y += GRID_SIZE) { ctx.moveTo(0, y + 0.5); ctx.lineTo(EDITOR_WIDTH, y + 0.5); } for (var x = GRID_SIZE; x < EDITOR_WIDTH; x += GRID_SIZE) { ctx.moveTo(x + 0.5, 0); ctx.lineTo(x + 0.5, EDITOR_HEIGHT); } ctx.stroke(); } function drawBlocks(ctx, blocks) { ctx.fillStyle = '#333'; var keys = Object.keys(blocks); for (var i = 0; i < keys.length; i += 1) { var coords = keys[i].split(',').map(parseFloat); var x = coords[0]; var y = coords[1]; ctx.fillRect((ORIGIN_X + x) * GRID_SIZE, (ORIGIN_Y - y) * GRID_SIZE, GRID_SIZE, GRID_SIZE); } } function drawAdvanceWidth(ctx, glyph) { ctx.strokeStyle = 'gold'; ctx.lineWidth = 2; ctx.beginPath(); var x = (ORIGIN_X + glyph.advanceWidth) * GRID_SIZE; ctx.moveTo(x, 0); ctx.lineTo(x, EDITOR_HEIGHT); ctx.stroke(); ctx.lineWidth = 1; } function drawBaseline(ctx) { ctx.strokeStyle = 'black'; ctx.lineWidth = 2; ctx.beginPath(); var y = ORIGIN_Y * GRID_SIZE; var x = ORIGIN_X * GRID_SIZE; ctx.moveTo(0, y); ctx.lineTo(EDITOR_WIDTH, y); ctx.moveTo(x, 0); ctx.lineTo(x, EDITOR_HEIGHT); ctx.stroke(); ctx.lineWidth = 1; } function draw() { var ctx = gCtx; var glyph = gFont.glyphMap[gCurrentGlyphName]; ctx.fillStyle = '#f6f6f6'; ctx.fillRect(0, 0, EDITOR_WIDTH, EDITOR_HEIGHT); drawGrid(ctx); drawBlocks(ctx, glyph.blocks); drawAdvanceWidth(ctx, glyph); drawBaseline(ctx); } function canvasMouseDown(e) { e.preventDefault(); var x = Math.floor(e.pageX / GRID_SIZE) - ORIGIN_X; var y = ORIGIN_Y - Math.floor((e.pageY - HEADER_HEIGHT) / GRID_SIZE); var glyph = gFont.glyphMap[gCurrentGlyphName]; var k = '' + x + ',' + y; if (glyph.blocks[k]) { delete glyph.blocks[k]; gDragMode = DRAG_OFF; } else { glyph.blocks[k] = true; gDragMode = DRAG_ON; } window.addEventListener('mousemove', canvasMouseDragged); window.addEventListener('mouseup', canvasMouseUp); saveFont(); draw(); } function canvasMouseDragged(e) { e.preventDefault(); var x = Math.floor(e.pageX / GRID_SIZE) - ORIGIN_X; var y = ORIGIN_Y - Math.floor((e.pageY - HEADER_HEIGHT) / GRID_SIZE); var glyph = gFont.glyphMap[gCurrentGlyphName]; var k = '' + x + ',' + y; if (gDragMode === DRAG_ON) { glyph.blocks[k] = true; } else { delete glyph.blocks[k]; } draw(); } function canvasMouseUp(e) { saveFont(); window.removeEventListener('mousemove', canvasMouseDragged); window.removeEventListener('mouseup', canvasMouseUp); } function onGlyphClicked(e) { var glyphName = e.target.getAttribute('data-name'); selectGlyph(glyphName); } function ensureGlyph(glyphName) { if (!gFont.glyphMap[glyphName]) { var newGlyph = { name: glyphName, unicode: glyphName.charCodeAt(0), advanceWidth: 7, blocks: {} }; gFont.glyphMap[glyphName] = newGlyph; } } function selectGlyph(glyphName) { gCurrentGlyphName = glyphName; ensureGlyph(glyphName); var els = document.querySelectorAll('#glyphs span'); for (var i = 0; i < els.length; i += 1) { els[i].className = ''; } document.querySelector('#glyphs span[data-name="' + glyphName + '"]').className = 'selected'; draw(); } function createGlyphDiv(parent, glyphName) { var glyphSpan = document.createElement('span'); glyphSpan.textContent = glyphName; glyphSpan.setAttribute('data-name', glyphName); glyphSpan.addEventListener('click', onGlyphClicked); parent.appendChild(glyphSpan); } function loadFont() { if (window.localStorage['font']) { return JSON.parse(window.localStorage['font']); } else { return { familyName: 'My Font', styleName: 'Regular', unitsPerEm: 10 * GRID_SIZE, glyphMap: {} }; } } function saveFont() { window.localStorage['font'] = JSON.stringify(gFont); } function blocksToPath(blocks) { var path = new opentype.Path(); var keys = Object.keys(blocks); for (var i = 0; i < keys.length; i += 1) { var k = keys[i]; var coords = keys[i].split(',').map(parseFloat); var x = coords[0] * GRID_SIZE; var y = coords[1] * GRID_SIZE; path.moveTo(x, y); path.lineTo(x + GRID_SIZE, y); path.lineTo(x + GRID_SIZE, y + GRID_SIZE); path.lineTo(x, y + GRID_SIZE); } return path; } function downloadFont() { // Our glyphs are not opentype Glyph objects. // We need to convert the blocks to paths. var glyphs = []; glyphs.push(new opentype.Glyph({ name: '.notdef', unicode: 0, path: new opentype.Path() })); var keys = Object.keys(gFont.glyphMap); for (var i = 0; i < keys.length; i += 1) { var glyph = gFont.glyphMap[keys[i]]; var newGlyph = new opentype.Glyph(glyph); newGlyph.advanceWidth = newGlyph.advanceWidth * GRID_SIZE; newGlyph.path = blocksToPath(glyph.blocks); glyphs.push(newGlyph); } var options = JSON.parse(JSON.stringify(gFont)); options.glyphs = glyphs; var oFont = new opentype.Font(options); console.log(oFont.toTables()); oFont.download(); } function init() { gFont = loadFont(); var allLetters = 'ABC'; var glyphsDiv = document.getElementById('glyphs'); for (var i = 0; i < allLetters.length; i += 1) { createGlyphDiv(glyphsDiv, allLetters[i]); } selectGlyph('A'); draw(); gCanvas.addEventListener('mousedown', canvasMouseDown); } document.addEventListener('DOMContentLoaded', init); </script> </body> </html>
target/classes/org/olat/test/guidemo/_content/guidemo-panes.html
RLDevOps/Demo
$r.render("sourceview") <h4>Panes</h4> $r.render("panes")
css/bootstrap.css
amayaroldan/Photorama
/*! * Bootstrap v3.3.5 (http://getbootstrap.com) * Copyright 2011-2015 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ html { font-family: sans-serif; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } ::-webkit-scrollbar { width:6px; height:8px; -webkit-border-radius:20px; } ::-webkit-scrollbar-track { -webkit-border-radius: 0px; border-radius: 0px; -webkit-box-shadow: inset 0 0 1px #fff; } ::-webkit-scrollbar-thumb { background-color: #eee; -webkit-border-radius: 0px; border-radius: 0px; } ::-webkit-scrollbar-thumb:window-inactive { background-color: #eee; } body { margin: 0; } article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; } audio, canvas, progress, video { display: inline-block; vertical-align: baseline; } audio:not([controls]) { display: none; height: 0; } [hidden], template { display: none; } a { background-color: transparent; } a:active, a:hover { outline: 0; } abbr[title] { border-bottom: 1px dotted; } b, strong { font-weight: bold; } dfn { font-style: italic; } h1 { margin: .67em 0; font-size: 2em; } mark { color: #000; background: #ff0; } small { font-size: 80%; } sub, sup { position: relative; font-size: 75%; line-height: 0; vertical-align: baseline; } sup { top: -.5em; } sub { bottom: -.25em; } img { border: 0; } svg:not(:root) { overflow: hidden; } figure { margin: 1em 40px; } hr { height: 0; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; } pre { overflow: auto; } code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } button, input, optgroup, select, textarea { margin: 0; font: inherit; color: inherit; } button { overflow: visible; } button, select { text-transform: none; } button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; } button[disabled], html input[disabled] { cursor: default; } button::-moz-focus-inner, input::-moz-focus-inner { padding: 0; border: 0; } input { line-height: normal; } input[type="checkbox"], input[type="radio"] { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; padding: 0; } input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } input[type="search"] { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; -webkit-appearance: textfield; } input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } fieldset { padding: .35em .625em .75em; margin: 0 2px; border: 1px solid #c0c0c0; } legend { padding: 0; border: 0; } textarea { overflow: auto; } optgroup { font-weight: bold; } table { border-spacing: 0; border-collapse: collapse; } td, th { padding: 0; } /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ @media print { *, *:before, *:after { color: #000 !important; text-shadow: none !important; background: transparent !important; -webkit-box-shadow: none !important; box-shadow: none !important; } a, a:visited { text-decoration: underline; } a[href]:after { content: " (" attr(href) ")"; } abbr[title]:after { content: " (" attr(title) ")"; } a[href^="#"]:after, a[href^="javascript:"]:after { content: ""; } pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } thead { display: table-header-group; } tr, img { page-break-inside: avoid; } img { max-width: 100% !important; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { page-break-after: avoid; } .navbar { display: none; } .btn > .caret, .dropup > .btn > .caret { border-top-color: #000 !important; } .label { border: 1px solid #000; } .table { border-collapse: collapse !important; } .table td, .table th { background-color: #fff !important; } .table-bordered th, .table-bordered td { border: 1px solid #ddd !important; } } /* Social list */ .social-icons { margin: 0; padding: 0 0 48px; list-style-type: none; } .social-icons li { display: inline-block; padding: 0 12px; } .social-icons a { display: block; font-size: 24px; height: 72px; width: 72px; line-height: 72px; border-radius: 50%; -webkit-transition: all .2s; -moz-transition: all .2s; -o-transition: all .2s; -ms-transition: all .2s; transition: all .2s; } .social-icons i { vertical-align: middle; } .social-mini { margin: 0; padding: 0 0 24px; list-style-type: none; } .social-mini li { display: inline-block; font-size: 16px; padding: 0 12px; } @font-face { font-family: 'Glyphicons Halflings'; src: url('../fonts/glyphicons-halflings-regular.eot'); src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); } .glyphicon { position: relative; top: 1px; display: inline-block; font-family: 'Glyphicons Halflings'; font-style: normal; font-weight: normal; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .glyphicon-asterisk:before { content: "\2a"; } .glyphicon-plus:before { content: "\2b"; } .glyphicon-euro:before, .glyphicon-eur:before { content: "\20ac"; } .glyphicon-minus:before { content: "\2212"; } .glyphicon-cloud:before { content: "\2601"; } .glyphicon-envelope:before { content: "\2709"; } .glyphicon-pencil:before { content: "\270f"; } .glyphicon-glass:before { content: "\e001"; } .glyphicon-music:before { content: "\e002"; } .glyphicon-search:before { content: "\e003"; } .glyphicon-heart:before { content: "\e005"; } .glyphicon-star:before { content: "\e006"; } .glyphicon-star-empty:before { content: "\e007"; } .glyphicon-user:before { content: "\e008"; } .glyphicon-film:before { content: "\e009"; } .glyphicon-th-large:before { content: "\e010"; } .glyphicon-th:before { content: "\e011"; } .glyphicon-th-list:before { content: "\e012"; } .glyphicon-ok:before { content: "\e013"; } .glyphicon-remove:before { content: "\e014"; } .glyphicon-zoom-in:before { content: "\e015"; } .glyphicon-zoom-out:before { content: "\e016"; } .glyphicon-off:before { content: "\e017"; } .glyphicon-signal:before { content: "\e018"; } .glyphicon-cog:before { content: "\e019"; } .glyphicon-trash:before { content: "\e020"; } .glyphicon-home:before { content: "\e021"; } .glyphicon-file:before { content: "\e022"; } .glyphicon-time:before { content: "\e023"; } .glyphicon-road:before { content: "\e024"; } .glyphicon-download-alt:before { content: "\e025"; } .glyphicon-download:before { content: "\e026"; } .glyphicon-upload:before { content: "\e027"; } .glyphicon-inbox:before { content: "\e028"; } .glyphicon-play-circle:before { content: "\e029"; } .glyphicon-repeat:before { content: "\e030"; } .glyphicon-refresh:before { content: "\e031"; } .glyphicon-list-alt:before { content: "\e032"; } .glyphicon-lock:before { content: "\e033"; } .glyphicon-flag:before { content: "\e034"; } .glyphicon-headphones:before { content: "\e035"; } .glyphicon-volume-off:before { content: "\e036"; } .glyphicon-volume-down:before { content: "\e037"; } .glyphicon-volume-up:before { content: "\e038"; } .glyphicon-qrcode:before { content: "\e039"; } .glyphicon-barcode:before { content: "\e040"; } .glyphicon-tag:before { content: "\e041"; } .glyphicon-tags:before { content: "\e042"; } .glyphicon-book:before { content: "\e043"; } .glyphicon-bookmark:before { content: "\e044"; } .glyphicon-print:before { content: "\e045"; } .glyphicon-camera:before { content: "\e046"; } .glyphicon-font:before { content: "\e047"; } .glyphicon-bold:before { content: "\e048"; } .glyphicon-italic:before { content: "\e049"; } .glyphicon-text-height:before { content: "\e050"; } .glyphicon-text-width:before { content: "\e051"; } .glyphicon-align-left:before { content: "\e052"; } .glyphicon-align-center:before { content: "\e053"; } .glyphicon-align-right:before { content: "\e054"; } .glyphicon-align-justify:before { content: "\e055"; } .glyphicon-list:before { content: "\e056"; } .glyphicon-indent-left:before { content: "\e057"; } .glyphicon-indent-right:before { content: "\e058"; } .glyphicon-facetime-video:before { content: "\e059"; } .glyphicon-picture:before { content: "\e060"; } .glyphicon-map-marker:before { content: "\e062"; } .glyphicon-adjust:before { content: "\e063"; } .glyphicon-tint:before { content: "\e064"; } .glyphicon-edit:before { content: "\e065"; } .glyphicon-share:before { content: "\e066"; } .glyphicon-check:before { content: "\e067"; } .glyphicon-move:before { content: "\e068"; } .glyphicon-step-backward:before { content: "\e069"; } .glyphicon-fast-backward:before { content: "\e070"; } .glyphicon-backward:before { content: "\e071"; } .glyphicon-play:before { content: "\e072"; } .glyphicon-pause:before { content: "\e073"; } .glyphicon-stop:before { content: "\e074"; } .glyphicon-forward:before { content: "\e075"; } .glyphicon-fast-forward:before { content: "\e076"; } .glyphicon-step-forward:before { content: "\e077"; } .glyphicon-eject:before { content: "\e078"; } .glyphicon-chevron-left:before { content: "\e079"; } .glyphicon-chevron-right:before { content: "\e080"; } .glyphicon-plus-sign:before { content: "\e081"; } .glyphicon-minus-sign:before { content: "\e082"; } .glyphicon-remove-sign:before { content: "\e083"; } .glyphicon-ok-sign:before { content: "\e084"; } .glyphicon-question-sign:before { content: "\e085"; } .glyphicon-info-sign:before { content: "\e086"; } .glyphicon-screenshot:before { content: "\e087"; } .glyphicon-remove-circle:before { content: "\e088"; } .glyphicon-ok-circle:before { content: "\e089"; } .glyphicon-ban-circle:before { content: "\e090"; } .glyphicon-arrow-left:before { content: "\e091"; } .glyphicon-arrow-right:before { content: "\e092"; } .glyphicon-arrow-up:before { content: "\e093"; } .glyphicon-arrow-down:before { content: "\e094"; } .glyphicon-share-alt:before { content: "\e095"; } .glyphicon-resize-full:before { content: "\e096"; } .glyphicon-resize-small:before { content: "\e097"; } .glyphicon-exclamation-sign:before { content: "\e101"; } .glyphicon-gift:before { content: "\e102"; } .glyphicon-leaf:before { content: "\e103"; } .glyphicon-fire:before { content: "\e104"; } .glyphicon-eye-open:before { content: "\e105"; } .glyphicon-eye-close:before { content: "\e106"; } .glyphicon-warning-sign:before { content: "\e107"; } .glyphicon-plane:before { content: "\e108"; } .glyphicon-calendar:before { content: "\e109"; } .glyphicon-random:before { content: "\e110"; } .glyphicon-comment:before { content: "\e111"; } .glyphicon-magnet:before { content: "\e112"; } .glyphicon-chevron-up:before { content: "\e113"; } .glyphicon-chevron-down:before { content: "\e114"; } .glyphicon-retweet:before { content: "\e115"; } .glyphicon-shopping-cart:before { content: "\e116"; } .glyphicon-folder-close:before { content: "\e117"; } .glyphicon-folder-open:before { content: "\e118"; } .glyphicon-resize-vertical:before { content: "\e119"; } .glyphicon-resize-horizontal:before { content: "\e120"; } .glyphicon-hdd:before { content: "\e121"; } .glyphicon-bullhorn:before { content: "\e122"; } .glyphicon-bell:before { content: "\e123"; } .glyphicon-certificate:before { content: "\e124"; } .glyphicon-thumbs-up:before { content: "\e125"; } .glyphicon-thumbs-down:before { content: "\e126"; } .glyphicon-hand-right:before { content: "\e127"; } .glyphicon-hand-left:before { content: "\e128"; } .glyphicon-hand-up:before { content: "\e129"; } .glyphicon-hand-down:before { content: "\e130"; } .glyphicon-circle-arrow-right:before { content: "\e131"; } .glyphicon-circle-arrow-left:before { content: "\e132"; } .glyphicon-circle-arrow-up:before { content: "\e133"; } .glyphicon-circle-arrow-down:before { content: "\e134"; } .glyphicon-globe:before { content: "\e135"; } .glyphicon-wrench:before { content: "\e136"; } .glyphicon-tasks:before { content: "\e137"; } .glyphicon-filter:before { content: "\e138"; } .glyphicon-briefcase:before { content: "\e139"; } .glyphicon-fullscreen:before { content: "\e140"; } .glyphicon-dashboard:before { content: "\e141"; } .glyphicon-paperclip:before { content: "\e142"; } .glyphicon-heart-empty:before { content: "\e143"; } .glyphicon-link:before { content: "\e144"; } .glyphicon-phone:before { content: "\e145"; } .glyphicon-pushpin:before { content: "\e146"; } .glyphicon-usd:before { content: "\e148"; } .glyphicon-gbp:before { content: "\e149"; } .glyphicon-sort:before { content: "\e150"; } .glyphicon-sort-by-alphabet:before { content: "\e151"; } .glyphicon-sort-by-alphabet-alt:before { content: "\e152"; } .glyphicon-sort-by-order:before { content: "\e153"; } .glyphicon-sort-by-order-alt:before { content: "\e154"; } .glyphicon-sort-by-attributes:before { content: "\e155"; } .glyphicon-sort-by-attributes-alt:before { content: "\e156"; } .glyphicon-unchecked:before { content: "\e157"; } .glyphicon-expand:before { content: "\e158"; } .glyphicon-collapse-down:before { content: "\e159"; } .glyphicon-collapse-up:before { content: "\e160"; } .glyphicon-log-in:before { content: "\e161"; } .glyphicon-flash:before { content: "\e162"; } .glyphicon-log-out:before { content: "\e163"; } .glyphicon-new-window:before { content: "\e164"; } .glyphicon-record:before { content: "\e165"; } .glyphicon-save:before { content: "\e166"; } .glyphicon-open:before { content: "\e167"; } .glyphicon-saved:before { content: "\e168"; } .glyphicon-import:before { content: "\e169"; } .glyphicon-export:before { content: "\e170"; } .glyphicon-send:before { content: "\e171"; } .glyphicon-floppy-disk:before { content: "\e172"; } .glyphicon-floppy-saved:before { content: "\e173"; } .glyphicon-floppy-remove:before { content: "\e174"; } .glyphicon-floppy-save:before { content: "\e175"; } .glyphicon-floppy-open:before { content: "\e176"; } .glyphicon-credit-card:before { content: "\e177"; } .glyphicon-transfer:before { content: "\e178"; } .glyphicon-cutlery:before { content: "\e179"; } .glyphicon-header:before { content: "\e180"; } .glyphicon-compressed:before { content: "\e181"; } .glyphicon-earphone:before { content: "\e182"; } .glyphicon-phone-alt:before { content: "\e183"; } .glyphicon-tower:before { content: "\e184"; } .glyphicon-stats:before { content: "\e185"; } .glyphicon-sd-video:before { content: "\e186"; } .glyphicon-hd-video:before { content: "\e187"; } .glyphicon-subtitles:before { content: "\e188"; } .glyphicon-sound-stereo:before { content: "\e189"; } .glyphicon-sound-dolby:before { content: "\e190"; } .glyphicon-sound-5-1:before { content: "\e191"; } .glyphicon-sound-6-1:before { content: "\e192"; } .glyphicon-sound-7-1:before { content: "\e193"; } .glyphicon-copyright-mark:before { content: "\e194"; } .glyphicon-registration-mark:before { content: "\e195"; } .glyphicon-cloud-download:before { content: "\e197"; } .glyphicon-cloud-upload:before { content: "\e198"; } .glyphicon-tree-conifer:before { content: "\e199"; } .glyphicon-tree-deciduous:before { content: "\e200"; } .glyphicon-cd:before { content: "\e201"; } .glyphicon-save-file:before { content: "\e202"; } .glyphicon-open-file:before { content: "\e203"; } .glyphicon-level-up:before { content: "\e204"; } .glyphicon-copy:before { content: "\e205"; } .glyphicon-paste:before { content: "\e206"; } .glyphicon-alert:before { content: "\e209"; } .glyphicon-equalizer:before { content: "\e210"; } .glyphicon-king:before { content: "\e211"; } .glyphicon-queen:before { content: "\e212"; } .glyphicon-pawn:before { content: "\e213"; } .glyphicon-bishop:before { content: "\e214"; } .glyphicon-knight:before { content: "\e215"; } .glyphicon-baby-formula:before { content: "\e216"; } .glyphicon-tent:before { content: "\26fa"; } .glyphicon-blackboard:before { content: "\e218"; } .glyphicon-bed:before { content: "\e219"; } .glyphicon-apple:before { content: "\f8ff"; } .glyphicon-erase:before { content: "\e221"; } .glyphicon-hourglass:before { content: "\231b"; } .glyphicon-lamp:before { content: "\e223"; } .glyphicon-duplicate:before { content: "\e224"; } .glyphicon-piggy-bank:before { content: "\e225"; } .glyphicon-scissors:before { content: "\e226"; } .glyphicon-bitcoin:before { content: "\e227"; } .glyphicon-btc:before { content: "\e227"; } .glyphicon-xbt:before { content: "\e227"; } .glyphicon-yen:before { content: "\00a5"; } .glyphicon-jpy:before { content: "\00a5"; } .glyphicon-ruble:before { content: "\20bd"; } .glyphicon-rub:before { content: "\20bd"; } .glyphicon-scale:before { content: "\e230"; } .glyphicon-ice-lolly:before { content: "\e231"; } .glyphicon-ice-lolly-tasted:before { content: "\e232"; } .glyphicon-education:before { content: "\e233"; } .glyphicon-option-horizontal:before { content: "\e234"; } .glyphicon-option-vertical:before { content: "\e235"; } .glyphicon-menu-hamburger:before { content: "\e236"; } .glyphicon-modal-window:before { content: "\e237"; } .glyphicon-oil:before { content: "\e238"; } .glyphicon-grain:before { content: "\e239"; } .glyphicon-sunglasses:before { content: "\e240"; } .glyphicon-text-size:before { content: "\e241"; } .glyphicon-text-color:before { content: "\e242"; } .glyphicon-text-background:before { content: "\e243"; } .glyphicon-object-align-top:before { content: "\e244"; } .glyphicon-object-align-bottom:before { content: "\e245"; } .glyphicon-object-align-horizontal:before { content: "\e246"; } .glyphicon-object-align-left:before { content: "\e247"; } .glyphicon-object-align-vertical:before { content: "\e248"; } .glyphicon-object-align-right:before { content: "\e249"; } .glyphicon-triangle-right:before { content: "\e250"; } .glyphicon-triangle-left:before { content: "\e251"; } .glyphicon-triangle-bottom:before { content: "\e252"; } .glyphicon-triangle-top:before { content: "\e253"; } .glyphicon-console:before { content: "\e254"; } .glyphicon-superscript:before { content: "\e255"; } .glyphicon-subscript:before { content: "\e256"; } .glyphicon-menu-left:before { content: "\e257"; } .glyphicon-menu-right:before { content: "\e258"; } .glyphicon-menu-down:before { content: "\e259"; } .glyphicon-menu-up:before { content: "\e260"; } * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } html { font-size: 10px; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } body { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.42857143; color: #333; background-color: #fff; } input, button, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; } a { color: #337ab7; text-decoration: none; } a:hover, a:focus { color: #23527c; text-decoration: underline; } a:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } figure { margin: 0; } img { vertical-align: middle; } .img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img { display: block; max-width: 100%; height: auto; } .img-rounded { border-radius: 6px; } .img-thumbnail { display: inline-block; max-width: 100%; height: auto; padding: 4px; line-height: 1.42857143; background-color: #fff; border: 1px solid #ddd; border-radius: 4px; -webkit-transition: all .2s ease-in-out; -o-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } .img-circle { border-radius: 50%; max-width: 50px; margin: 0 auto 12px; } hr { margin-top: 20px; margin-bottom: 20px; border: 0; border-top: 1px solid #eee; } .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; } .sr-only-focusable:active, .sr-only-focusable:focus { position: static; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; } [role="button"] { cursor: pointer; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: inherit; font-weight: 500; line-height: 1.1; color: inherit; } h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small { font-weight: normal; line-height: 1; color: #777; } h1, .h1, h2, .h2, h3, .h3 { margin-top: 20px; margin-bottom: 10px; } h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small { font-size: 65%; } h4, .h4, h5, .h5, h6, .h6 { margin-top: 10px; margin-bottom: 10px; } h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small { font-size: 75%; } h1, .h1 { font-size: 36px; } h2, .h2 { font-size: 30px; } h3, .h3 { font-size: 24px; } h4, .h4 { font-size: 18px; } h5, .h5 { font-size: 14px; } h6, .h6 { font-size: 12px; } p { margin: 0 0 10px; } .lead { margin-bottom: 20px; font-size: 16px; font-weight: 300; line-height: 1.4; } @media (min-width: 768px) { .lead { font-size: 21px; } } small, .small { font-size: 85%; } mark, .mark { padding: .2em; background-color: #fcf8e3; } .text-left { text-align: left; } .text-right { text-align: right; } .text-center { text-align: center; } .text-justify { text-align: justify; } .text-nowrap { white-space: nowrap; } .text-lowercase { text-transform: lowercase; } .text-uppercase { text-transform: uppercase; } .text-capitalize { text-transform: capitalize; } .text-muted { color: #777; } .text-primary { color: #337ab7; } a.text-primary:hover, a.text-primary:focus { color: #286090; } .text-success { color: #3c763d; } a.text-success:hover, a.text-success:focus { color: #2b542c; } .text-info { color: #31708f; } a.text-info:hover, a.text-info:focus { color: #245269; } .text-warning { color: #8a6d3b; } a.text-warning:hover, a.text-warning:focus { color: #66512c; } .text-danger { color: #a94442; } a.text-danger:hover, a.text-danger:focus { color: #843534; } .bg-primary { color: #fff; background-color: #337ab7; } a.bg-primary:hover, a.bg-primary:focus { background-color: #286090; } .bg-success { background-color: #dff0d8; } a.bg-success:hover, a.bg-success:focus { background-color: #c1e2b3; } .bg-info { background-color: #d9edf7; } a.bg-info:hover, a.bg-info:focus { background-color: #afd9ee; } .bg-warning { background-color: #fcf8e3; } a.bg-warning:hover, a.bg-warning:focus { background-color: #f7ecb5; } .bg-danger { background-color: #f2dede; } a.bg-danger:hover, a.bg-danger:focus { background-color: #e4b9b9; } .page-header { padding-bottom: 9px; margin: 40px 0 20px; border-bottom: 1px solid #eee; } ul, ol { margin-top: 0; margin-bottom: 10px; } ul ul, ol ul, ul ol, ol ol { margin-bottom: 0; } .list-unstyled { padding-left: 0; list-style: none; } .list-inline { padding-left: 0; margin-left: -5px; list-style: none; } .list-inline > li { display: inline-block; padding-right: 5px; padding-left: 5px; } dl { margin-top: 0; margin-bottom: 20px; } dt, dd { line-height: 1.42857143; } dt { font-weight: bold; } dd { margin-left: 0; } @media (min-width: 768px) { .dl-horizontal dt { float: left; width: 160px; overflow: hidden; clear: left; text-align: right; text-overflow: ellipsis; white-space: nowrap; } .dl-horizontal dd { margin-left: 180px; } } abbr[title], abbr[data-original-title] { cursor: help; border-bottom: 1px dotted #777; } .initialism { font-size: 90%; text-transform: uppercase; } blockquote { padding: 10px 20px; margin: 0 0 20px; font-size: 17.5px; border-left: 5px solid #eee; } blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child { margin-bottom: 0; } blockquote footer, blockquote small, blockquote .small { display: block; font-size: 80%; line-height: 1.42857143; color: #777; } blockquote footer:before, blockquote small:before, blockquote .small:before { content: '\2014 \00A0'; } .blockquote-reverse, blockquote.pull-right { padding-right: 15px; padding-left: 0; text-align: right; border-right: 5px solid #eee; border-left: 0; } .blockquote-reverse footer:before, blockquote.pull-right footer:before, .blockquote-reverse small:before, blockquote.pull-right small:before, .blockquote-reverse .small:before, blockquote.pull-right .small:before { content: ''; } .blockquote-reverse footer:after, blockquote.pull-right footer:after, .blockquote-reverse small:after, blockquote.pull-right small:after, .blockquote-reverse .small:after, blockquote.pull-right .small:after { content: '\00A0 \2014'; } address { margin-bottom: 20px; font-style: normal; line-height: 1.42857143; } code, kbd, pre, samp { font-family: Menlo, Monaco, Consolas, "Courier New", monospace; } code { padding: 2px 4px; font-size: 90%; color: #c7254e; background-color: #f9f2f4; border-radius: 4px; } kbd { padding: 2px 4px; font-size: 90%; color: #fff; background-color: #333; border-radius: 3px; -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); } kbd kbd { padding: 0; font-size: 100%; font-weight: bold; -webkit-box-shadow: none; box-shadow: none; } pre { display: block; padding: 9.5px; margin: 0 0 10px; font-size: 13px; line-height: 1.42857143; color: #333; word-break: break-all; word-wrap: break-word; background-color: #f5f5f5; border: 1px solid #ccc; border-radius: 4px; } pre code { padding: 0; font-size: inherit; color: inherit; white-space: pre-wrap; background-color: transparent; border-radius: 0; } .pre-scrollable { max-height: 340px; overflow-y: scroll; } .container { padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; } @media (min-width: 768px) { .container { width: 750px; } } @media (min-width: 992px) { .container { width: 970px; } } @media (min-width: 1200px) { .container { width: 1170px; } } .container-fluid { padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; } .row { margin-right: -15px; margin-left: -15px; } .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { position: relative; min-height: 1px; padding-right: 15px; padding-left: 15px; } .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { float: left; } .col-xs-12 { width: 100%; } .col-xs-11 { width: 91.66666667%; } .col-xs-10 { width: 83.33333333%; } .col-xs-9 { width: 75%; } .col-xs-8 { width: 66.66666667%; } .col-xs-7 { width: 58.33333333%; } .col-xs-6 { width: 50%; } .col-xs-5 { width: 41.66666667%; } .col-xs-4 { width: 33.33333333%; } .col-xs-3 { width: 25%; } .col-xs-2 { width: 16.66666667%; } .col-xs-1 { width: 8.33333333%; } .col-xs-pull-12 { right: 100%; } .col-xs-pull-11 { right: 91.66666667%; } .col-xs-pull-10 { right: 83.33333333%; } .col-xs-pull-9 { right: 75%; } .col-xs-pull-8 { right: 66.66666667%; } .col-xs-pull-7 { right: 58.33333333%; } .col-xs-pull-6 { right: 50%; } .col-xs-pull-5 { right: 41.66666667%; } .col-xs-pull-4 { right: 33.33333333%; } .col-xs-pull-3 { right: 25%; } .col-xs-pull-2 { right: 16.66666667%; } .col-xs-pull-1 { right: 8.33333333%; } .col-xs-pull-0 { right: auto; } .col-xs-push-12 { left: 100%; } .col-xs-push-11 { left: 91.66666667%; } .col-xs-push-10 { left: 83.33333333%; } .col-xs-push-9 { left: 75%; } .col-xs-push-8 { left: 66.66666667%; } .col-xs-push-7 { left: 58.33333333%; } .col-xs-push-6 { left: 50%; } .col-xs-push-5 { left: 41.66666667%; } .col-xs-push-4 { left: 33.33333333%; } .col-xs-push-3 { left: 25%; } .col-xs-push-2 { left: 16.66666667%; } .col-xs-push-1 { left: 8.33333333%; } .col-xs-push-0 { left: auto; } .col-xs-offset-12 { margin-left: 100%; } .col-xs-offset-11 { margin-left: 91.66666667%; } .col-xs-offset-10 { margin-left: 83.33333333%; } .col-xs-offset-9 { margin-left: 75%; } .col-xs-offset-8 { margin-left: 66.66666667%; } .col-xs-offset-7 { margin-left: 58.33333333%; } .col-xs-offset-6 { margin-left: 50%; } .col-xs-offset-5 { margin-left: 41.66666667%; } .col-xs-offset-4 { margin-left: 33.33333333%; } .col-xs-offset-3 { margin-left: 25%; } .col-xs-offset-2 { margin-left: 16.66666667%; } .col-xs-offset-1 { margin-left: 8.33333333%; } .col-xs-offset-0 { margin-left: 0; } @media (min-width: 768px) { .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { float: left; } .col-sm-12 { width: 100%; } .col-sm-11 { width: 91.66666667%; } .col-sm-10 { width: 83.33333333%; } .col-sm-9 { width: 75%; } .col-sm-8 { width: 66.66666667%; } .col-sm-7 { width: 58.33333333%; } .col-sm-6 { width: 50%; } .col-sm-5 { width: 41.66666667%; } .col-sm-4 { width: 33.33333333%; } .col-sm-3 { width: 25%; } .col-sm-2 { width: 16.66666667%; } .col-sm-1 { width: 8.33333333%; } .col-sm-pull-12 { right: 100%; } .col-sm-pull-11 { right: 91.66666667%; } .col-sm-pull-10 { right: 83.33333333%; } .col-sm-pull-9 { right: 75%; } .col-sm-pull-8 { right: 66.66666667%; } .col-sm-pull-7 { right: 58.33333333%; } .col-sm-pull-6 { right: 50%; } .col-sm-pull-5 { right: 41.66666667%; } .col-sm-pull-4 { right: 33.33333333%; } .col-sm-pull-3 { right: 25%; } .col-sm-pull-2 { right: 16.66666667%; } .col-sm-pull-1 { right: 8.33333333%; } .col-sm-pull-0 { right: auto; } .col-sm-push-12 { left: 100%; } .col-sm-push-11 { left: 91.66666667%; } .col-sm-push-10 { left: 83.33333333%; } .col-sm-push-9 { left: 75%; } .col-sm-push-8 { left: 66.66666667%; } .col-sm-push-7 { left: 58.33333333%; } .col-sm-push-6 { left: 50%; } .col-sm-push-5 { left: 41.66666667%; } .col-sm-push-4 { left: 33.33333333%; } .col-sm-push-3 { left: 25%; } .col-sm-push-2 { left: 16.66666667%; } .col-sm-push-1 { left: 8.33333333%; } .col-sm-push-0 { left: auto; } .col-sm-offset-12 { margin-left: 100%; } .col-sm-offset-11 { margin-left: 91.66666667%; } .col-sm-offset-10 { margin-left: 83.33333333%; } .col-sm-offset-9 { margin-left: 75%; } .col-sm-offset-8 { margin-left: 66.66666667%; } .col-sm-offset-7 { margin-left: 58.33333333%; } .col-sm-offset-6 { margin-left: 50%; } .col-sm-offset-5 { margin-left: 41.66666667%; } .col-sm-offset-4 { margin-left: 33.33333333%; } .col-sm-offset-3 { margin-left: 25%; } .col-sm-offset-2 { margin-left: 16.66666667%; } .col-sm-offset-1 { margin-left: 8.33333333%; } .col-sm-offset-0 { margin-left: 0; } } @media (min-width: 992px) { .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { float: left; } .col-md-12 { width: 100%; } .col-md-11 { width: 91.66666667%; } .col-md-10 { width: 83.33333333%; } .col-md-9 { width: 75%; } .col-md-8 { width: 66.66666667%; } .col-md-7 { width: 58.33333333%; } .col-md-6 { width: 50%; } .col-md-5 { width: 41.66666667%; } .col-md-4 { width: 33.33333333%; } .col-md-3 { width: 25%; } .col-md-2 { width: 16.66666667%; } .col-md-1 { width: 8.33333333%; } .col-md-pull-12 { right: 100%; } .col-md-pull-11 { right: 91.66666667%; } .col-md-pull-10 { right: 83.33333333%; } .col-md-pull-9 { right: 75%; } .col-md-pull-8 { right: 66.66666667%; } .col-md-pull-7 { right: 58.33333333%; } .col-md-pull-6 { right: 50%; } .col-md-pull-5 { right: 41.66666667%; } .col-md-pull-4 { right: 33.33333333%; } .col-md-pull-3 { right: 25%; } .col-md-pull-2 { right: 16.66666667%; } .col-md-pull-1 { right: 8.33333333%; } .col-md-pull-0 { right: auto; } .col-md-push-12 { left: 100%; } .col-md-push-11 { left: 91.66666667%; } .col-md-push-10 { left: 83.33333333%; } .col-md-push-9 { left: 75%; } .col-md-push-8 { left: 66.66666667%; } .col-md-push-7 { left: 58.33333333%; } .col-md-push-6 { left: 50%; } .col-md-push-5 { left: 41.66666667%; } .col-md-push-4 { left: 33.33333333%; } .col-md-push-3 { left: 25%; } .col-md-push-2 { left: 16.66666667%; } .col-md-push-1 { left: 8.33333333%; } .col-md-push-0 { left: auto; } .col-md-offset-12 { margin-left: 100%; } .col-md-offset-11 { margin-left: 91.66666667%; } .col-md-offset-10 { margin-left: 83.33333333%; } .col-md-offset-9 { margin-left: 75%; } .col-md-offset-8 { margin-left: 66.66666667%; } .col-md-offset-7 { margin-left: 58.33333333%; } .col-md-offset-6 { margin-left: 50%; } .col-md-offset-5 { margin-left: 41.66666667%; } .col-md-offset-4 { margin-left: 33.33333333%; } .col-md-offset-3 { margin-left: 25%; } .col-md-offset-2 { margin-left: 16.66666667%; } .col-md-offset-1 { margin-left: 8.33333333%; } .col-md-offset-0 { margin-left: 0; } } @media (min-width: 1200px) { .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { float: left; } .col-lg-12 { width: 100%; } .col-lg-11 { width: 91.66666667%; } .col-lg-10 { width: 83.33333333%; } .col-lg-9 { width: 75%; } .col-lg-8 { width: 66.66666667%; } .col-lg-7 { width: 58.33333333%; } .col-lg-6 { width: 50%; } .col-lg-5 { width: 41.66666667%; } .col-lg-4 { width: 33.33333333%; } .col-lg-3 { width: 25%; } .col-lg-2 { width: 16.66666667%; } .col-lg-1 { width: 8.33333333%; } .col-lg-pull-12 { right: 100%; } .col-lg-pull-11 { right: 91.66666667%; } .col-lg-pull-10 { right: 83.33333333%; } .col-lg-pull-9 { right: 75%; } .col-lg-pull-8 { right: 66.66666667%; } .col-lg-pull-7 { right: 58.33333333%; } .col-lg-pull-6 { right: 50%; } .col-lg-pull-5 { right: 41.66666667%; } .col-lg-pull-4 { right: 33.33333333%; } .col-lg-pull-3 { right: 25%; } .col-lg-pull-2 { right: 16.66666667%; } .col-lg-pull-1 { right: 8.33333333%; } .col-lg-pull-0 { right: auto; } .col-lg-push-12 { left: 100%; } .col-lg-push-11 { left: 91.66666667%; } .col-lg-push-10 { left: 83.33333333%; } .col-lg-push-9 { left: 75%; } .col-lg-push-8 { left: 66.66666667%; } .col-lg-push-7 { left: 58.33333333%; } .col-lg-push-6 { left: 50%; } .col-lg-push-5 { left: 41.66666667%; } .col-lg-push-4 { left: 33.33333333%; } .col-lg-push-3 { left: 25%; } .col-lg-push-2 { left: 16.66666667%; } .col-lg-push-1 { left: 8.33333333%; } .col-lg-push-0 { left: auto; } .col-lg-offset-12 { margin-left: 100%; } .col-lg-offset-11 { margin-left: 91.66666667%; } .col-lg-offset-10 { margin-left: 83.33333333%; } .col-lg-offset-9 { margin-left: 75%; } .col-lg-offset-8 { margin-left: 66.66666667%; } .col-lg-offset-7 { margin-left: 58.33333333%; } .col-lg-offset-6 { margin-left: 50%; } .col-lg-offset-5 { margin-left: 41.66666667%; } .col-lg-offset-4 { margin-left: 33.33333333%; } .col-lg-offset-3 { margin-left: 25%; } .col-lg-offset-2 { margin-left: 16.66666667%; } .col-lg-offset-1 { margin-left: 8.33333333%; } .col-lg-offset-0 { margin-left: 0; } } table { background-color: transparent; } caption { padding-top: 8px; padding-bottom: 8px; color: #777; text-align: left; } th { text-align: left; } .table { width: 100%; max-width: 100%; margin-bottom: 20px; } .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td { padding: 8px; line-height: 1.42857143; vertical-align: top; border-top: 1px solid #ddd; } .table > thead > tr > th { vertical-align: bottom; border-bottom: 2px solid #ddd; } .table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > th, .table > caption + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr:first-child > td { border-top: 0; } .table > tbody + tbody { border-top: 2px solid #ddd; } .table .table { background-color: #fff; } .table-condensed > thead > tr > th, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > td { padding: 5px; } .table-bordered { border: 1px solid #ddd; } .table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td { border: 1px solid #ddd; } .table-bordered > thead > tr > th, .table-bordered > thead > tr > td { border-bottom-width: 2px; } .table-striped > tbody > tr:nth-of-type(odd) { background-color: #f9f9f9; } .table-hover > tbody > tr:hover { background-color: #f5f5f5; } table col[class*="col-"] { position: static; display: table-column; float: none; } table td[class*="col-"], table th[class*="col-"] { position: static; display: table-cell; float: none; } .table > thead > tr > td.active, .table > tbody > tr > td.active, .table > tfoot > tr > td.active, .table > thead > tr > th.active, .table > tbody > tr > th.active, .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > tbody > tr.active > td, .table > tfoot > tr.active > td, .table > thead > tr.active > th, .table > tbody > tr.active > th, .table > tfoot > tr.active > th { background-color: #f5f5f5; } .table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th { background-color: #e8e8e8; } .table > thead > tr > td.success, .table > tbody > tr > td.success, .table > tfoot > tr > td.success, .table > thead > tr > th.success, .table > tbody > tr > th.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > tbody > tr.success > td, .table > tfoot > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr.success > th, .table > tfoot > tr.success > th { background-color: #dff0d8; } .table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th { background-color: #d0e9c6; } .table > thead > tr > td.info, .table > tbody > tr > td.info, .table > tfoot > tr > td.info, .table > thead > tr > th.info, .table > tbody > tr > th.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > tbody > tr.info > td, .table > tfoot > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr.info > th, .table > tfoot > tr.info > th { background-color: #d9edf7; } .table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th { background-color: #c4e3f3; } .table > thead > tr > td.warning, .table > tbody > tr > td.warning, .table > tfoot > tr > td.warning, .table > thead > tr > th.warning, .table > tbody > tr > th.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > tbody > tr.warning > td, .table > tfoot > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr.warning > th, .table > tfoot > tr.warning > th { background-color: #fcf8e3; } .table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th { background-color: #faf2cc; } .table > thead > tr > td.danger, .table > tbody > tr > td.danger, .table > tfoot > tr > td.danger, .table > thead > tr > th.danger, .table > tbody > tr > th.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > tbody > tr.danger > td, .table > tfoot > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr.danger > th, .table > tfoot > tr.danger > th { background-color: #f2dede; } .table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th { background-color: #ebcccc; } .table-responsive { min-height: .01%; overflow-x: auto; } @media screen and (max-width: 767px) { .table-responsive { width: 100%; margin-bottom: 15px; overflow-y: hidden; -ms-overflow-style: -ms-autohiding-scrollbar; border: 1px solid #ddd; } .table-responsive > .table { margin-bottom: 0; } .table-responsive > .table > thead > tr > th, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr > td { white-space: nowrap; } .table-responsive > .table-bordered { border: 0; } .table-responsive > .table-bordered > thead > tr > th:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; } .table-responsive > .table-bordered > thead > tr > th:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; } .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > th, .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > td { border-bottom: 0; } } fieldset { min-width: 0; padding: 0; margin: 0; border: 0; } legend { display: block; width: 100%; padding: 0; margin-bottom: 20px; font-size: 21px; line-height: inherit; color: #333; border: 0; border-bottom: 1px solid #e5e5e5; } label { display: inline-block; max-width: 100%; margin-bottom: 5px; font-weight: bold; } input[type="search"] { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } input[type="radio"], input[type="checkbox"] { margin: 4px 0 0; margin-top: 1px \9; line-height: normal; } input[type="file"] { display: block; } input[type="range"] { display: block; width: 100%; } select[multiple], select[size] { height: auto; } input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } output { display: block; padding-top: 7px; font-size: 14px; line-height: 1.42857143; color: #555; } .form-control { display: block; width: 100%; height: 34px; padding: 6px 12px; font-size: 14px; line-height: 1.42857143; color: #555; background-color: #fff; background-image: none; border: 1px solid #ccc; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; } .form-control:focus { border-color: #66afe9; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); } .form-control::-moz-placeholder { color: #999; opacity: 1; } .form-control:-ms-input-placeholder { color: #999; } .form-control::-webkit-input-placeholder { color: #999; } .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { background-color: #eee; opacity: 1; } .form-control[disabled], fieldset[disabled] .form-control { cursor: not-allowed; } textarea.form-control { height: auto; } input[type="search"] { -webkit-appearance: none; } @media screen and (-webkit-min-device-pixel-ratio: 0) { input[type="date"].form-control, input[type="time"].form-control, input[type="datetime-local"].form-control, input[type="month"].form-control { line-height: 34px; } input[type="date"].input-sm, input[type="time"].input-sm, input[type="datetime-local"].input-sm, input[type="month"].input-sm, .input-group-sm input[type="date"], .input-group-sm input[type="time"], .input-group-sm input[type="datetime-local"], .input-group-sm input[type="month"] { line-height: 30px; } input[type="date"].input-lg, input[type="time"].input-lg, input[type="datetime-local"].input-lg, input[type="month"].input-lg, .input-group-lg input[type="date"], .input-group-lg input[type="time"], .input-group-lg input[type="datetime-local"], .input-group-lg input[type="month"] { line-height: 46px; } } .form-group { margin-bottom: 15px; } .radio, .checkbox { position: relative; display: block; margin-top: 10px; margin-bottom: 10px; } .radio label, .checkbox label { min-height: 20px; padding-left: 20px; margin-bottom: 0; font-weight: normal; cursor: pointer; } .radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] { position: absolute; margin-top: 4px \9; margin-left: -20px; } .radio + .radio, .checkbox + .checkbox { margin-top: -5px; } .radio-inline, .checkbox-inline { position: relative; display: inline-block; padding-left: 20px; margin-bottom: 0; font-weight: normal; vertical-align: middle; cursor: pointer; } .radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline { margin-top: 0; margin-left: 10px; } input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"].disabled, input[type="checkbox"].disabled, fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"] { cursor: not-allowed; } .radio-inline.disabled, .checkbox-inline.disabled, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox-inline { cursor: not-allowed; } .radio.disabled label, .checkbox.disabled label, fieldset[disabled] .radio label, fieldset[disabled] .checkbox label { cursor: not-allowed; } .form-control-static { min-height: 34px; padding-top: 7px; padding-bottom: 7px; margin-bottom: 0; } .form-control-static.input-lg, .form-control-static.input-sm { padding-right: 0; padding-left: 0; } .input-sm { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } select.input-sm { height: 30px; line-height: 30px; } textarea.input-sm, select[multiple].input-sm { height: auto; } .form-group-sm .form-control { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .form-group-sm select.form-control { height: 30px; line-height: 30px; } .form-group-sm textarea.form-control, .form-group-sm select[multiple].form-control { height: auto; } .form-group-sm .form-control-static { height: 30px; min-height: 32px; padding: 6px 10px; font-size: 12px; line-height: 1.5; } .input-lg { height: 46px; padding: 10px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; } select.input-lg { height: 46px; line-height: 46px; } textarea.input-lg, select[multiple].input-lg { height: auto; } .form-group-lg .form-control { height: 46px; padding: 10px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; } .form-group-lg select.form-control { height: 46px; line-height: 46px; } .form-group-lg textarea.form-control, .form-group-lg select[multiple].form-control { height: auto; } .form-group-lg .form-control-static { height: 46px; min-height: 38px; padding: 11px 16px; font-size: 18px; line-height: 1.3333333; } .has-feedback { position: relative; } .has-feedback .form-control { padding-right: 42.5px; } .form-control-feedback { position: absolute; top: 0; right: 0; z-index: 2; display: block; width: 34px; height: 34px; line-height: 34px; text-align: center; pointer-events: none; } .input-lg + .form-control-feedback, .input-group-lg + .form-control-feedback, .form-group-lg .form-control + .form-control-feedback { width: 46px; height: 46px; line-height: 46px; } .input-sm + .form-control-feedback, .input-group-sm + .form-control-feedback, .form-group-sm .form-control + .form-control-feedback { width: 30px; height: 30px; line-height: 30px; } .has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label { color: #3c763d; } .has-success .form-control { border-color: #3c763d; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); } .has-success .form-control:focus { border-color: #2b542c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; } .has-success .input-group-addon { color: #3c763d; background-color: #dff0d8; border-color: #3c763d; } .has-success .form-control-feedback { color: #3c763d; } .has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label { color: #8a6d3b; } .has-warning .form-control { border-color: #8a6d3b; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); } .has-warning .form-control:focus { border-color: #66512c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; } .has-warning .input-group-addon { color: #8a6d3b; background-color: #fcf8e3; border-color: #8a6d3b; } .has-warning .form-control-feedback { color: #8a6d3b; } .has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label { color: #a94442; } .has-error .form-control { border-color: #a94442; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); } .has-error .form-control:focus { border-color: #843534; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; } .has-error .input-group-addon { color: #a94442; background-color: #f2dede; border-color: #a94442; } .has-error .form-control-feedback { color: #a94442; } .has-feedback label ~ .form-control-feedback { top: 25px; } .has-feedback label.sr-only ~ .form-control-feedback { top: 0; } .help-block { display: block; margin-top: 5px; margin-bottom: 10px; color: #737373; } @media (min-width: 768px) { .form-inline .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } .form-inline .form-control { display: inline-block; width: auto; vertical-align: middle; } .form-inline .form-control-static { display: inline-block; } .form-inline .input-group { display: inline-table; vertical-align: middle; } .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .form-inline .input-group .form-control { width: auto; } .form-inline .input-group > .form-control { width: 100%; } .form-inline .control-label { margin-bottom: 0; vertical-align: middle; } .form-inline .radio, .form-inline .checkbox { display: inline-block; margin-top: 0; margin-bottom: 0; vertical-align: middle; } .form-inline .radio label, .form-inline .checkbox label { padding-left: 0; } .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] { position: relative; margin-left: 0; } .form-inline .has-feedback .form-control-feedback { top: 0; } } .form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline { padding-top: 7px; margin-top: 0; margin-bottom: 0; } .form-horizontal .radio, .form-horizontal .checkbox { min-height: 27px; } .form-horizontal .form-group { margin-right: -15px; margin-left: -15px; } @media (min-width: 768px) { .form-horizontal .control-label { padding-top: 7px; margin-bottom: 0; text-align: right; } } .form-horizontal .has-feedback .form-control-feedback { right: 15px; } @media (min-width: 768px) { .form-horizontal .form-group-lg .control-label { padding-top: 14.333333px; font-size: 18px; } } @media (min-width: 768px) { .form-horizontal .form-group-sm .control-label { padding-top: 6px; font-size: 12px; } } .btn { display: inline-block; padding: 6px 12px; margin-bottom: 0; font-size: 14px; font-weight: normal; line-height: 1.42857143; text-align: center; white-space: nowrap; vertical-align: middle; -ms-touch-action: manipulation; touch-action: manipulation; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-image: none; border: 1px solid transparent; border-radius: 4px; } .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } .btn:hover, .btn:focus, .btn.focus { color: #333; text-decoration: none; } .btn:active, .btn.active { background-image: none; outline: 0; -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); } .btn.disabled, .btn[disabled], fieldset[disabled] .btn { cursor: not-allowed; filter: alpha(opacity=65); -webkit-box-shadow: none; box-shadow: none; opacity: .65; } a.btn.disabled, fieldset[disabled] a.btn { pointer-events: none; } .btn-default { color: #333; background-color: #fff; border-color: #ccc; } .btn-default:focus, .btn-default.focus { color: #333; background-color: #e6e6e6; border-color: #8c8c8c; } .btn-default:hover { color: #333; background-color: #e6e6e6; border-color: #adadad; } .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { color: #333; background-color: #e6e6e6; border-color: #adadad; } .btn-default:active:hover, .btn-default.active:hover, .open > .dropdown-toggle.btn-default:hover, .btn-default:active:focus, .btn-default.active:focus, .open > .dropdown-toggle.btn-default:focus, .btn-default:active.focus, .btn-default.active.focus, .open > .dropdown-toggle.btn-default.focus { color: #333; background-color: #d4d4d4; border-color: #8c8c8c; } .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { background-image: none; } .btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled.focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default.focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active { background-color: #fff; border-color: #ccc; } .btn-default .badge { color: #fff; background-color: #333; } .btn-primary { color: #fff; background-color: #337ab7; border-color: #2e6da4; } .btn-primary:focus, .btn-primary.focus { color: #fff; background-color: #286090; border-color: #122b40; } .btn-primary:hover { color: #fff; background-color: #286090; border-color: #204d74; } .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { color: #fff; background-color: #286090; border-color: #204d74; } .btn-primary:active:hover, .btn-primary.active:hover, .open > .dropdown-toggle.btn-primary:hover, .btn-primary:active:focus, .btn-primary.active:focus, .open > .dropdown-toggle.btn-primary:focus, .btn-primary:active.focus, .btn-primary.active.focus, .open > .dropdown-toggle.btn-primary.focus { color: #fff; background-color: #204d74; border-color: #122b40; } .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { background-image: none; } .btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active { background-color: #337ab7; border-color: #2e6da4; } .btn-primary .badge { color: #337ab7; background-color: #fff; } .btn-success { color: #fff; background-color: #5cb85c; border-color: #4cae4c; } .btn-success:focus, .btn-success.focus { color: #fff; background-color: #449d44; border-color: #255625; } .btn-success:hover { color: #fff; background-color: #449d44; border-color: #398439; } .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success { color: #fff; background-color: #449d44; border-color: #398439; } .btn-success:active:hover, .btn-success.active:hover, .open > .dropdown-toggle.btn-success:hover, .btn-success:active:focus, .btn-success.active:focus, .open > .dropdown-toggle.btn-success:focus, .btn-success:active.focus, .btn-success.active.focus, .open > .dropdown-toggle.btn-success.focus { color: #fff; background-color: #398439; border-color: #255625; } .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success { background-image: none; } .btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled.focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success.focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active { background-color: #5cb85c; border-color: #4cae4c; } .btn-success .badge { color: #5cb85c; background-color: #fff; } .btn-info { color: #fff; background-color: #5bc0de; border-color: #46b8da; } .btn-info:focus, .btn-info.focus { color: #fff; background-color: #31b0d5; border-color: #1b6d85; } .btn-info:hover { color: #fff; background-color: #31b0d5; border-color: #269abc; } .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info { color: #fff; background-color: #31b0d5; border-color: #269abc; } .btn-info:active:hover, .btn-info.active:hover, .open > .dropdown-toggle.btn-info:hover, .btn-info:active:focus, .btn-info.active:focus, .open > .dropdown-toggle.btn-info:focus, .btn-info:active.focus, .btn-info.active.focus, .open > .dropdown-toggle.btn-info.focus { color: #fff; background-color: #269abc; border-color: #1b6d85; } .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info { background-image: none; } .btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled.focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info.focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active { background-color: #5bc0de; border-color: #46b8da; } .btn-info .badge { color: #5bc0de; background-color: #fff; } .btn-warning { color: #fff; background-color: #f0ad4e; border-color: #eea236; } .btn-warning:focus, .btn-warning.focus { color: #fff; background-color: #ec971f; border-color: #985f0d; } .btn-warning:hover { color: #fff; background-color: #ec971f; border-color: #d58512; } .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning { color: #fff; background-color: #ec971f; border-color: #d58512; } .btn-warning:active:hover, .btn-warning.active:hover, .open > .dropdown-toggle.btn-warning:hover, .btn-warning:active:focus, .btn-warning.active:focus, .open > .dropdown-toggle.btn-warning:focus, .btn-warning:active.focus, .btn-warning.active.focus, .open > .dropdown-toggle.btn-warning.focus { color: #fff; background-color: #d58512; border-color: #985f0d; } .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning { background-image: none; } .btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled.focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning.focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active { background-color: #f0ad4e; border-color: #eea236; } .btn-warning .badge { color: #f0ad4e; background-color: #fff; } .btn-danger { color: #fff; background-color: #d9534f; border-color: #d43f3a; } .btn-danger:focus, .btn-danger.focus { color: #fff; background-color: #c9302c; border-color: #761c19; } .btn-danger:hover { color: #fff; background-color: #c9302c; border-color: #ac2925; } .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger { color: #fff; background-color: #c9302c; border-color: #ac2925; } .btn-danger:active:hover, .btn-danger.active:hover, .open > .dropdown-toggle.btn-danger:hover, .btn-danger:active:focus, .btn-danger.active:focus, .open > .dropdown-toggle.btn-danger:focus, .btn-danger:active.focus, .btn-danger.active.focus, .open > .dropdown-toggle.btn-danger.focus { color: #fff; background-color: #ac2925; border-color: #761c19; } .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger { background-image: none; } .btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled.focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger.focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active { background-color: #d9534f; border-color: #d43f3a; } .btn-danger .badge { color: #d9534f; background-color: #fff; } .btn-link { font-weight: normal; color: #337ab7; border-radius: 0; } .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link { background-color: transparent; -webkit-box-shadow: none; box-shadow: none; } .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { border-color: transparent; } .btn-link:hover, .btn-link:focus { color: #23527c; text-decoration: underline; background-color: transparent; } .btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus { color: #777; text-decoration: none; } .btn-lg, .btn-group-lg > .btn { padding: 10px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; } .btn-sm, .btn-group-sm > .btn { padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .btn-xs, .btn-group-xs > .btn { padding: 1px 5px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .btn-block { display: block; width: 100%; } .btn-block + .btn-block { margin-top: 5px; } input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block { width: 100%; } .fade { opacity: 0; -webkit-transition: opacity .15s linear; -o-transition: opacity .15s linear; transition: opacity .15s linear; } .fade.in { opacity: 1; } .collapse { display: none; } .collapse.in { display: block; } tr.collapse.in { display: table-row; } tbody.collapse.in { display: table-row-group; } .collapsing { position: relative; height: 0; overflow: hidden; -webkit-transition-timing-function: ease; -o-transition-timing-function: ease; transition-timing-function: ease; -webkit-transition-duration: .35s; -o-transition-duration: .35s; transition-duration: .35s; -webkit-transition-property: height, visibility; -o-transition-property: height, visibility; transition-property: height, visibility; } .caret { display: inline-block; width: 0; height: 0; margin-left: 2px; vertical-align: middle; border-top: 4px dashed; border-top: 4px solid \9; border-right: 4px solid transparent; border-left: 4px solid transparent; } .dropup, .dropdown { position: relative; } .dropdown-toggle:focus { outline: 0; } .dropdown-menu { position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 160px; padding: 5px 0; margin: 2px 0 0; font-size: 14px; text-align: left; list-style: none; background-color: #fff; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #ccc; border: 1px solid rgba(0, 0, 0, .15); border-radius: 4px; -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175); box-shadow: 0 6px 12px rgba(0, 0, 0, .175); } .dropdown-menu.pull-right { right: 0; left: auto; } .dropdown-menu .divider { height: 1px; margin: 9px 0; overflow: hidden; background-color: #e5e5e5; } .dropdown-menu > li > a { display: block; padding: 3px 20px; clear: both; font-weight: normal; line-height: 1.42857143; color: #333; white-space: nowrap; } .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { color: #262626; text-decoration: none; background-color: #f5f5f5; } .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus { color: #fff; text-decoration: none; background-color: #337ab7; outline: 0; } .dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { color: #777; } .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { text-decoration: none; cursor: not-allowed; background-color: transparent; background-image: none; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); } .open > .dropdown-menu { display: block; } .open > a { outline: 0; } .dropdown-menu-right { right: 0; left: auto; } .dropdown-menu-left { right: auto; left: 0; } .dropdown-header { display: block; padding: 3px 20px; font-size: 12px; line-height: 1.42857143; color: #777; white-space: nowrap; } .dropdown-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 990; } .pull-right > .dropdown-menu { right: 0; left: auto; } .dropup .caret, .navbar-fixed-bottom .dropdown .caret { content: ""; border-top: 0; border-bottom: 4px dashed; border-bottom: 4px solid \9; } .dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu { top: auto; bottom: 100%; margin-bottom: 2px; } @media (min-width: 768px) { .navbar-right .dropdown-menu { right: 0; left: auto; } .navbar-right .dropdown-menu-left { right: auto; left: 0; } } .btn-group, .btn-group-vertical { position: relative; display: inline-block; vertical-align: middle; } .btn-group > .btn, .btn-group-vertical > .btn { position: relative; float: left; } .btn-group > .btn:hover, .btn-group-vertical > .btn:hover, .btn-group > .btn:focus, .btn-group-vertical > .btn:focus, .btn-group > .btn:active, .btn-group-vertical > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn.active { z-index: 2; } .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group { margin-left: -1px; } .btn-toolbar { margin-left: -5px; } .btn-toolbar .btn, .btn-toolbar .btn-group, .btn-toolbar .input-group { float: left; } .btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group { margin-left: 5px; } .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { border-radius: 0; } .btn-group > .btn:first-child { margin-left: 0; } .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { border-top-right-radius: 0; border-bottom-right-radius: 0; } .btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) { border-top-left-radius: 0; border-bottom-left-radius: 0; } .btn-group > .btn-group { float: left; } .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { border-top-right-radius: 0; border-bottom-right-radius: 0; } .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { border-top-left-radius: 0; border-bottom-left-radius: 0; } .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { outline: 0; } .btn-group > .btn + .dropdown-toggle { padding-right: 8px; padding-left: 8px; } .btn-group > .btn-lg + .dropdown-toggle { padding-right: 12px; padding-left: 12px; } .btn-group.open .dropdown-toggle { -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); } .btn-group.open .dropdown-toggle.btn-link { -webkit-box-shadow: none; box-shadow: none; } .btn .caret { margin-left: 0; } .btn-lg .caret { border-width: 5px 5px 0; border-bottom-width: 0; } .dropup .btn-lg .caret { border-width: 0 5px 5px; } .btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn { display: block; float: none; width: 100%; max-width: 100%; } .btn-group-vertical > .btn-group > .btn { float: none; } .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group { margin-top: -1px; margin-left: 0; } .btn-group-vertical > .btn:not(:first-child):not(:last-child) { border-radius: 0; } .btn-group-vertical > .btn:first-child:not(:last-child) { border-top-right-radius: 4px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical > .btn:last-child:not(:first-child) { border-top-left-radius: 0; border-top-right-radius: 0; border-bottom-left-radius: 4px; } .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { border-top-left-radius: 0; border-top-right-radius: 0; } .btn-group-justified { display: table; width: 100%; table-layout: fixed; border-collapse: separate; } .btn-group-justified > .btn, .btn-group-justified > .btn-group { display: table-cell; float: none; width: 1%; } .btn-group-justified > .btn-group .btn { width: 100%; } .btn-group-justified > .btn-group .dropdown-menu { left: auto; } [data-toggle="buttons"] > .btn input[type="radio"], [data-toggle="buttons"] > .btn-group > .btn input[type="radio"], [data-toggle="buttons"] > .btn input[type="checkbox"], [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] { position: absolute; clip: rect(0, 0, 0, 0); pointer-events: none; } .input-group { position: relative; display: table; border-collapse: separate; } .input-group[class*="col-"] { float: none; padding-right: 0; padding-left: 0; } .input-group .form-control { position: relative; z-index: 2; float: left; width: 100%; margin-bottom: 0; } .input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn { height: 46px; padding: 10px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; } select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn { height: 46px; line-height: 46px; } textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn, select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn { height: auto; } .input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn { height: 30px; line-height: 30px; } textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn, select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn { height: auto; } .input-group-addon, .input-group-btn, .input-group .form-control { display: table-cell; } .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) { border-radius: 0; } .input-group-addon, .input-group-btn { width: 1%; white-space: nowrap; vertical-align: middle; } .input-group-addon { padding: 6px 12px; font-size: 14px; font-weight: normal; line-height: 1; color: #555; text-align: center; background-color: #eee; border: 1px solid #ccc; border-radius: 4px; } .input-group-addon.input-sm { padding: 5px 10px; font-size: 12px; border-radius: 3px; } .input-group-addon.input-lg { padding: 10px 16px; font-size: 18px; border-radius: 6px; } .input-group-addon input[type="radio"], .input-group-addon input[type="checkbox"] { margin-top: 0; } .input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn { border-top-right-radius: 0; border-bottom-right-radius: 0; } .input-group-addon:first-child { border-right: 0; } .input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn { border-top-left-radius: 0; border-bottom-left-radius: 0; } .input-group-addon:last-child { border-left: 0; } .input-group-btn { position: relative; font-size: 0; white-space: nowrap; } .input-group-btn > .btn { position: relative; } .input-group-btn > .btn + .btn { margin-left: -1px; } .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active { z-index: 2; } .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group { margin-right: -1px; } .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group { z-index: 2; margin-left: -1px; } .nav { padding-left: 0; margin-bottom: 0; list-style: none; } .nav > li { position: relative; display: block; } .nav > li > a { position: relative; display: block; padding: 10px 15px; } .nav > li > a:hover, .nav > li > a:focus { text-decoration: none; background-color: #eee; } .nav > li.disabled > a { color: #777; } .nav > li.disabled > a:hover, .nav > li.disabled > a:focus { color: #777; text-decoration: none; cursor: not-allowed; background-color: transparent; } .nav .open > a, .nav .open > a:hover, .nav .open > a:focus { background-color: #eee; border-color: #337ab7; } .nav .nav-divider { height: 1px; margin: 9px 0; overflow: hidden; background-color: #e5e5e5; } .nav > li > a > img { max-width: none; } .nav-tabs { border-bottom: 1px solid #ddd; } .nav-tabs > li { float: left; margin-bottom: -1px; } .nav-tabs > li > a { margin-right: 2px; line-height: 1.42857143; border: 1px solid transparent; border-radius: 4px 4px 0 0; } .nav-tabs > li > a:hover { border-color: #eee #eee #ddd; } .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { color: #555; cursor: default; background-color: #fff; border: 1px solid #ddd; border-bottom-color: transparent; } .nav-tabs.nav-justified { width: 100%; border-bottom: 0; } .nav-tabs.nav-justified > li { float: none; } .nav-tabs.nav-justified > li > a { margin-bottom: 5px; text-align: center; } .nav-tabs.nav-justified > .dropdown .dropdown-menu { top: auto; left: auto; } @media (min-width: 768px) { .nav-tabs.nav-justified > li { display: table-cell; width: 1%; } .nav-tabs.nav-justified > li > a { margin-bottom: 0; } } .nav-tabs.nav-justified > li > a { margin-right: 0; border-radius: 4px; } .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { border: 1px solid #ddd; } @media (min-width: 768px) { .nav-tabs.nav-justified > li > a { border-bottom: 1px solid #ddd; border-radius: 4px 4px 0 0; } .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { border-bottom-color: #fff; } } .nav-pills > li { float: left; } .nav-pills > li > a { border-radius: 4px; } .nav-pills > li + li { margin-left: 2px; } .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { color: #fff; background-color: #337ab7; } .nav-stacked > li { float: none; } .nav-stacked > li + li { margin-top: 2px; margin-left: 0; } .nav-justified { width: 100%; } .nav-justified > li { float: none; } .nav-justified > li > a { margin-bottom: 5px; text-align: center; } .nav-justified > .dropdown .dropdown-menu { top: auto; left: auto; } @media (min-width: 768px) { .nav-justified > li { display: table-cell; width: 1%; } .nav-justified > li > a { margin-bottom: 0; } } .nav-tabs-justified { border-bottom: 0; } .nav-tabs-justified > li > a { margin-right: 0; border-radius: 4px; } .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus { border: 1px solid #ddd; } @media (min-width: 768px) { .nav-tabs-justified > li > a { border-bottom: 1px solid #ddd; border-radius: 4px 4px 0 0; } .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus { border-bottom-color: #fff; } } .tab-content > .tab-pane { display: none; } .tab-content > .active { display: block; } .nav-tabs .dropdown-menu { margin-top: -1px; border-top-left-radius: 0; border-top-right-radius: 0; } .navbar { position: relative; min-height: 50px; margin-bottom: 20px; border: 1px solid transparent; } @media (min-width: 768px) { .navbar { border-radius: 4px; } } @media (min-width: 768px) { .navbar-header { float: left; } } .navbar-collapse { padding-right: 15px; padding-left: 15px; overflow-x: visible; -webkit-overflow-scrolling: touch; border-top: 1px solid transparent; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0); } .navbar-collapse.in { overflow-y: auto; } @media (min-width: 768px) { .navbar-collapse { width: auto; border-top: 0; -webkit-box-shadow: none; box-shadow: none; } .navbar-collapse.collapse { display: block !important; height: auto !important; padding-bottom: 0; overflow: visible !important; } .navbar-collapse.in { overflow-y: visible; } .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { padding-right: 0; padding-left: 0; } } .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { max-height: 340px; } @media (max-device-width: 480px) and (orientation: landscape) { .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { max-height: 200px; } } .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse { margin-right: -15px; margin-left: -15px; } @media (min-width: 768px) { .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse { margin-right: 0; margin-left: 0; } } .navbar-static-top { z-index: 1000; border-width: 0 0 1px; } @media (min-width: 768px) { .navbar-static-top { border-radius: 0; } } .navbar-fixed-top, .navbar-fixed-bottom { position: fixed; right: 0; left: 0; z-index: 1030; } @media (min-width: 768px) { .navbar-fixed-top, .navbar-fixed-bottom { border-radius: 0; } } .navbar-fixed-top { top: 0; border-width: 0 0 1px; } .navbar-fixed-bottom { bottom: 0; margin-bottom: 0; border-width: 1px 0 0; } .navbar-brand { float: left; height: 50px; padding: 15px 15px; font-size: 18px; line-height: 20px; } .navbar-brand:hover, .navbar-brand:focus { text-decoration: none; } .navbar-brand > img { display: block; } @media (min-width: 768px) { .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand { margin-left: -15px; } } .navbar-toggle { position: relative; float: right; padding: 9px 10px; margin-top: 8px; margin-right: 15px; margin-bottom: 8px; background-color: transparent; background-image: none; border: 1px solid transparent; border-radius: 4px; } .navbar-toggle:focus { outline: 0; } .navbar-toggle .icon-bar { display: block; width: 22px; height: 2px; border-radius: 1px; } .navbar-toggle .icon-bar + .icon-bar { margin-top: 4px; } @media (min-width: 768px) { .navbar-toggle { display: none; } } .navbar-nav { margin: 7.5px -15px; overflow-x: hidden; color: white; background-color: #3c763d; } .navbar-nav > li > a { padding-top: 10px; padding-bottom: 10px; line-height: 20px; } @media (max-width: 767px) { .navbar-nav .open .dropdown-menu { position: static; float: none; width: auto; margin-top: 0; background-color: transparent; border: 0; -webkit-box-shadow: none; box-shadow: none; } .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header { padding: 5px 15px 5px 25px; } .navbar-nav .open .dropdown-menu > li > a { line-height: 20px; } .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus { background-image: none; } } @media (min-width: 768px) { .navbar-nav { float: left; margin: 0; } .navbar-nav > li { float: left; } .navbar-nav > li > a { padding-top: 15px; padding-bottom: 15px; } } .navbar-form { padding: 10px 15px; margin-top: 8px; margin-right: -15px; margin-bottom: 8px; margin-left: -15px; border-top: 1px solid transparent; border-bottom: 1px solid transparent; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); } @media (min-width: 768px) { .navbar-form .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } .navbar-form .form-control { display: inline-block; width: auto; vertical-align: middle; } .navbar-form .form-control-static { display: inline-block; } .navbar-form .input-group { display: inline-table; vertical-align: middle; } .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn, .navbar-form .input-group .form-control { width: auto; } .navbar-form .input-group > .form-control { width: 100%; } .navbar-form .control-label { margin-bottom: 0; vertical-align: middle; } .navbar-form .radio, .navbar-form .checkbox { display: inline-block; margin-top: 0; margin-bottom: 0; vertical-align: middle; } .navbar-form .radio label, .navbar-form .checkbox label { padding-left: 0; } .navbar-form .radio input[type="radio"], .navbar-form .checkbox input[type="checkbox"] { position: relative; margin-left: 0; } .navbar-form .has-feedback .form-control-feedback { top: 0; } } @media (max-width: 767px) { .navbar-form .form-group { margin-bottom: 5px; } .navbar-form .form-group:last-child { margin-bottom: 0; } } @media (min-width: 768px) { .navbar-form { width: auto; padding-top: 0; padding-bottom: 0; margin-right: 0; margin-left: 0; border: 0; -webkit-box-shadow: none; box-shadow: none; } } .navbar-nav > li > .dropdown-menu { margin-top: 0; border-top-left-radius: 0; border-top-right-radius: 0; } .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { margin-bottom: 0; border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .navbar-btn { margin-top: 8px; margin-bottom: 8px; } .navbar-btn.btn-sm { margin-top: 10px; margin-bottom: 10px; } .navbar-btn.btn-xs { margin-top: 14px; margin-bottom: 14px; } .navbar-text { margin-top: 15px; margin-bottom: 15px; } @media (min-width: 768px) { .navbar-text { float: left; margin-right: 15px; margin-left: 15px; } } @media (min-width: 768px) { .navbar-left { float: left !important; } .navbar-right { background-color: transparent; float: right !important; margin-right: -15px; } .navbar-right ~ .navbar-right { margin-right: 0; } } .navbar-default { background-color: transparent; } .navbar-default .navbar-brand { color: white; } .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { color: #337ab7; background-color: transparent; } .navbar-default .navbar-text { color: #777; } .navbar-default .navbar-nav > li > a { color: white; } .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { color: #337ab7; background-color: transparent; } .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { color: #555; background-color: #e7e7e7; } .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { color: #ccc; background-color: transparent; } .navbar-default .navbar-toggle { border-color: #ddd; } .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { background-color: #ddd; } .navbar-default .navbar-toggle .icon-bar { background-color: #888; } .navbar-default .navbar-collapse, .navbar-default .navbar-form { border-color: #e7e7e7; border-style: none; } .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { color: #555; background-color: #e7e7e7; } @media (max-width: 767px) { .navbar-default .navbar-nav .open .dropdown-menu > li > a { color: #777; } .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { color: #333; background-color: transparent; } .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { color: #555; background-color: #e7e7e7; } .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { color: #ccc; background-color: transparent; } } .navbar-default .navbar-link { color: #777; } .navbar-default .navbar-link:hover { color: #333; } .navbar-default .btn-link { color: #777; } .navbar-default .btn-link:hover, .navbar-default .btn-link:focus { color: #333; } .navbar-default .btn-link[disabled]:hover, fieldset[disabled] .navbar-default .btn-link:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:focus { color: #ccc; } .navbar-inverse { background-color: #222; border-color: #080808; } .navbar-inverse .navbar-brand { color: #9d9d9d; } .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { color: #fff; background-color: transparent; } .navbar-inverse .navbar-text { color: #9d9d9d; } .navbar-inverse .navbar-nav > li > a { color: #9d9d9d; } .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { color: #fff; background-color: transparent; } .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { color: #fff; background-color: #080808; } .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { color: #444; background-color: transparent; } .navbar-inverse .navbar-toggle { border-color: #333; } .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { background-color: #333; } .navbar-inverse .navbar-toggle .icon-bar { background-color: #fff; } .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form { border-color: #101010; } .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { color: #fff; background-color: #080808; } @media (max-width: 767px) { .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { border-color: #080808; } .navbar-inverse .navbar-nav .open .dropdown-menu .divider { background-color: #080808; } .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { color: #9d9d9d; } .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { color: #fff; background-color: transparent; } .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { color: #fff; background-color: #080808; } .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { color: #444; background-color: transparent; } } .navbar-inverse .navbar-link { color: #9d9d9d; } .navbar-inverse .navbar-link:hover { color: #fff; } .navbar-inverse .btn-link { color: #9d9d9d; } .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { color: #fff; } .navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:focus { color: #444; } .breadcrumb { padding: 8px 15px; margin-bottom: 20px; list-style: none; background-color: #f5f5f5; border-radius: 4px; } .breadcrumb > li { display: inline-block; } .breadcrumb > li + li:before { padding: 0 5px; color: #ccc; content: "/\00a0"; } .breadcrumb > .active { color: #777; } .pagination { display: inline-block; padding-left: 0; margin: 20px 0; border-radius: 4px; } .pagination > li { display: inline; } .pagination > li > a, .pagination > li > span { position: relative; float: left; padding: 6px 12px; margin-left: -1px; line-height: 1.42857143; color: #337ab7; text-decoration: none; background-color: #fff; border: 1px solid #ddd; } .pagination > li:first-child > a, .pagination > li:first-child > span { margin-left: 0; border-top-left-radius: 4px; border-bottom-left-radius: 4px; } .pagination > li:last-child > a, .pagination > li:last-child > span { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } .pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus { z-index: 3; color: #23527c; background-color: #eee; border-color: #ddd; } .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus { z-index: 2; color: #fff; cursor: default; background-color: #337ab7; border-color: #337ab7; } .pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus { color: #777; cursor: not-allowed; background-color: #fff; border-color: #ddd; } .pagination-lg > li > a, .pagination-lg > li > span { padding: 10px 16px; font-size: 18px; line-height: 1.3333333; } .pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } .pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } .pagination-sm > li > a, .pagination-sm > li > span { padding: 5px 10px; font-size: 12px; line-height: 1.5; } .pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } .pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } .pager { padding-left: 0; margin: 20px 0; text-align: center; list-style: none; } .pager li { display: inline; } .pager li > a, .pager li > span { display: inline-block; padding: 5px 14px; background-color: black; } .pager li > a:hover, .pager li > a:focus { text-decoration: none; background-color: black; } .pager .next > a, .pager .next > span { float: right; } .pager .previous > a, .pager .previous > span { float: left; } .pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focus, .pager .disabled > span { color: #777; cursor: not-allowed; background-color: #fff; } .label { display: inline; padding: .2em .6em .3em; font-size: 75%; font-weight: bold; line-height: 1; color: #fff; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: .25em; } a.label:hover, a.label:focus { color: #fff; text-decoration: none; cursor: pointer; } .label:empty { display: none; } .btn .label { position: relative; top: -1px; } .label-default { background-color: #777; } .label-default[href]:hover, .label-default[href]:focus { background-color: #5e5e5e; } .label-primary { background-color: #337ab7; } .label-primary[href]:hover, .label-primary[href]:focus { background-color: #286090; } .label-success { background-color: #5cb85c; } .label-success[href]:hover, .label-success[href]:focus { background-color: #449d44; } .label-info { background-color: #5bc0de; } .label-info[href]:hover, .label-info[href]:focus { background-color: #31b0d5; } .label-warning { background-color: #f0ad4e; } .label-warning[href]:hover, .label-warning[href]:focus { background-color: #ec971f; } .label-danger { background-color: #d9534f; } .label-danger[href]:hover, .label-danger[href]:focus { background-color: #c9302c; } .badge { display: inline-block; min-width: 10px; padding: 3px 7px; font-size: 12px; font-weight: bold; line-height: 1; color: #fff; text-align: center; white-space: nowrap; vertical-align: middle; background-color: #777; border-radius: 10px; } .badge:empty { display: none; } .btn .badge { position: relative; top: -1px; } .btn-xs .badge, .btn-group-xs > .btn .badge { top: 0; padding: 1px 5px; } a.badge:hover, a.badge:focus { color: #fff; text-decoration: none; cursor: pointer; } .list-group-item.active > .badge, .nav-pills > .active > a > .badge { color: #337ab7; background-color: #fff; } .list-group-item > .badge { float: right; } .list-group-item > .badge + .badge { margin-right: 5px; } .nav-pills > li > a > .badge { margin-left: 3px; } .jumbotron { padding-top: 30px; padding-bottom: 30px; margin-bottom: 30px; color: inherit; background-color: #eee; } .jumbotron h1, .jumbotron .h1 { color: inherit; } .jumbotron p { margin-bottom: 15px; font-size: 21px; font-weight: 200; } .jumbotron > hr { border-top-color: #d5d5d5; } .container .jumbotron, .container-fluid .jumbotron { border-radius: 6px; } .jumbotron .container { max-width: 100%; } @media screen and (min-width: 768px) { .jumbotron { padding-top: 48px; padding-bottom: 48px; } .container .jumbotron, .container-fluid .jumbotron { padding-right: 60px; padding-left: 60px; } .jumbotron h1, .jumbotron .h1 { font-size: 63px; } } .thumbnail { display: block; padding: 4px; margin-bottom: 20px; line-height: 1.42857143; background-color: #fff; border: 1px solid #ddd; border-radius: 4px; -webkit-transition: border .2s ease-in-out; -o-transition: border .2s ease-in-out; transition: border .2s ease-in-out; } .thumbnail > img, .thumbnail a > img { margin-right: auto; margin-left: auto; } a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active { border-color: #337ab7; } .thumbnail .caption { padding: 9px; color: #333; } .alert { padding: 15px; margin-bottom: 20px; border: 1px solid transparent; border-radius: 4px; } .alert h4 { margin-top: 0; color: inherit; } .alert .alert-link { font-weight: bold; } .alert > p, .alert > ul { margin-bottom: 0; } .alert > p + p { margin-top: 5px; } .alert-dismissable, .alert-dismissible { padding-right: 35px; } .alert-dismissable .close, .alert-dismissible .close { position: relative; top: -2px; right: -21px; color: inherit; } .alert-success { color: #3c763d; background-color: #dff0d8; border-color: #d6e9c6; } .alert-success hr { border-top-color: #c9e2b3; } .alert-success .alert-link { color: #2b542c; } .alert-info { color: #31708f; background-color: #d9edf7; border-color: #bce8f1; } .alert-info hr { border-top-color: #a6e1ec; } .alert-info .alert-link { color: #245269; } .alert-warning { color: #8a6d3b; background-color: #fcf8e3; border-color: #faebcc; } .alert-warning hr { border-top-color: #f7e1b5; } .alert-warning .alert-link { color: #66512c; } .alert-danger { color: #a94442; background-color: #f2dede; border-color: #ebccd1; } .alert-danger hr { border-top-color: #e4b9c0; } .alert-danger .alert-link { color: #843534; } @-webkit-keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } @-o-keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } @keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } .progress { height: 20px; margin-bottom: 20px; overflow: hidden; background-color: #f5f5f5; border-radius: 4px; -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); } .progress-bar { float: left; width: 0; height: 100%; font-size: 12px; line-height: 20px; color: #fff; text-align: center; background-color: #337ab7; -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); -webkit-transition: width .6s ease; -o-transition: width .6s ease; transition: width .6s ease; } .progress-striped .progress-bar, .progress-bar-striped { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); -webkit-background-size: 40px 40px; background-size: 40px 40px; } .progress.active .progress-bar, .progress-bar.active { -webkit-animation: progress-bar-stripes 2s linear infinite; -o-animation: progress-bar-stripes 2s linear infinite; animation: progress-bar-stripes 2s linear infinite; } .progress-bar-success { background-color: #5cb85c; } .progress-striped .progress-bar-success { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); } .progress-bar-info { background-color: #5bc0de; } .progress-striped .progress-bar-info { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); } .progress-bar-warning { background-color: #f0ad4e; } .progress-striped .progress-bar-warning { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); } .progress-bar-danger { background-color: #d9534f; } .progress-striped .progress-bar-danger { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); } .media { margin-top: 15px; } .media:first-child { margin-top: 0; } .media, .media-body { overflow: hidden; zoom: 1; } .media-body { width: 10000px; } .media-object { display: block; } .media-object.img-thumbnail { max-width: none; } .media-right, .media > .pull-right { padding-left: 10px; } .media-left, .media > .pull-left { padding-right: 10px; } .media-left, .media-right, .media-body { display: table-cell; vertical-align: top; } .media-middle { vertical-align: middle; } .media-bottom { vertical-align: bottom; } .media-heading { margin-top: 0; margin-bottom: 5px; } .media-list { padding-left: 0; list-style: none; } .list-group { padding-left: 0; margin-bottom: 20px; } .list-group-item { text-decoration: none; position: relative; display: inline-block; padding: 10px 15px; margin-bottom: -1px; color: #fff; background-color: #000; } .list-group-item:first-child { border-radius: 8px; } .list-group-item:last-child { margin-bottom: 0; border-radius: 8px; } a.list-group-item, button.list-group-item { color: #555; } a.list-group-item .list-group-item-heading, button.list-group-item .list-group-item-heading { color: #333; } a.list-group-item:hover, button.list-group-item:hover, a.list-group-item:focus, button.list-group-item:focus { color: #dd1144; text-decoration: none; background-color: #000; } button.list-group-item { width: 100%; text-align: left; } .list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus { color: #777; cursor: not-allowed; background-color: #eee; } .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading { color: inherit; } .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text { color: #777; } .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus { z-index: 2; color: #fff; background-color: #337ab7; border-color: #337ab7; } .list-group-item.active .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active .list-group-item-heading > small, .list-group-item.active:hover .list-group-item-heading > small, .list-group-item.active:focus .list-group-item-heading > small, .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading > .small { color: inherit; } .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text { color: #c7ddef; } .list-group-item-success { color: #3c763d; background-color: #dff0d8; } a.list-group-item-success, button.list-group-item-success { color: #3c763d; } a.list-group-item-success .list-group-item-heading, button.list-group-item-success .list-group-item-heading { color: inherit; } a.list-group-item-success:hover, button.list-group-item-success:hover, a.list-group-item-success:focus, button.list-group-item-success:focus { color: #3c763d; background-color: #d0e9c6; } a.list-group-item-success.active, button.list-group-item-success.active, a.list-group-item-success.active:hover, button.list-group-item-success.active:hover, a.list-group-item-success.active:focus, button.list-group-item-success.active:focus { color: #fff; background-color: #3c763d; border-color: #3c763d; } .list-group-item-info { color: #31708f; background-color: #d9edf7; } a.list-group-item-info, button.list-group-item-info { color: #31708f; } a.list-group-item-info .list-group-item-heading, button.list-group-item-info .list-group-item-heading { color: inherit; } a.list-group-item-info:hover, button.list-group-item-info:hover, a.list-group-item-info:focus, button.list-group-item-info:focus { color: #31708f; background-color: #c4e3f3; } a.list-group-item-info.active, button.list-group-item-info.active, a.list-group-item-info.active:hover, button.list-group-item-info.active:hover, a.list-group-item-info.active:focus, button.list-group-item-info.active:focus { color: #fff; background-color: #31708f; border-color: #31708f; } .list-group-item-warning { color: #8a6d3b; background-color: #fcf8e3; } a.list-group-item-warning, button.list-group-item-warning { color: #8a6d3b; } a.list-group-item-warning .list-group-item-heading, button.list-group-item-warning .list-group-item-heading { color: inherit; } a.list-group-item-warning:hover, button.list-group-item-warning:hover, a.list-group-item-warning:focus, button.list-group-item-warning:focus { color: #8a6d3b; background-color: #faf2cc; } a.list-group-item-warning.active, button.list-group-item-warning.active, a.list-group-item-warning.active:hover, button.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus, button.list-group-item-warning.active:focus { color: #fff; background-color: #8a6d3b; border-color: #8a6d3b; } .list-group-item-danger { color: #a94442; background-color: #f2dede; } a.list-group-item-danger, button.list-group-item-danger { color: #a94442; } a.list-group-item-danger .list-group-item-heading, button.list-group-item-danger .list-group-item-heading { color: inherit; } a.list-group-item-danger:hover, button.list-group-item-danger:hover, a.list-group-item-danger:focus, button.list-group-item-danger:focus { color: #a94442; background-color: #ebcccc; } a.list-group-item-danger.active, button.list-group-item-danger.active, a.list-group-item-danger.active:hover, button.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus, button.list-group-item-danger.active:focus { color: #fff; background-color: #a94442; border-color: #a94442; } .list-group-item-heading { margin-top: 0; margin-bottom: 5px; } .list-group-item-text { margin-bottom: 0; line-height: 1.3; } .panel { margin-bottom: 20px; background-color: #fff; border: 1px solid transparent; border-radius: 4px; -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05); box-shadow: 0 1px 1px rgba(0, 0, 0, .05); } .panel-body { padding: 15px; } .panel-heading { padding: 10px 15px; border-bottom: 1px solid transparent; border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel-heading > .dropdown .dropdown-toggle { color: inherit; } .panel-title { margin-top: 0; margin-bottom: 0; font-size: 16px; color: inherit; } .panel-title > a, .panel-title > small, .panel-title > .small, .panel-title > small > a, .panel-title > .small > a { color: inherit; } .panel-footer { padding: 10px 15px; background-color: #f5f5f5; border-top: 1px solid #ddd; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .list-group, .panel > .panel-collapse > .list-group { margin-bottom: 0; } .panel > .list-group .list-group-item, .panel > .panel-collapse > .list-group .list-group-item { border-width: 1px 0; border-radius: 0; } .panel > .list-group:first-child .list-group-item:first-child, .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { border-top: 0; border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel > .list-group:last-child .list-group-item:last-child, .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { border-bottom: 0; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { border-top-left-radius: 0; border-top-right-radius: 0; } .panel-heading + .list-group .list-group-item:first-child { border-top-width: 0; } .list-group + .panel-footer { border-top-width: 0; } .panel > .table, .panel > .table-responsive > .table, .panel > .panel-collapse > .table { margin-bottom: 0; } .panel > .table caption, .panel > .table-responsive > .table caption, .panel > .panel-collapse > .table caption { padding-right: 15px; padding-left: 15px; } .panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child { border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel > .table:first-child > thead:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { border-top-left-radius: 3px; } .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { border-top-right-radius: 3px; } .panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child { border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .table:last-child > tbody:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { border-bottom-left-radius: 3px; } .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { border-bottom-right-radius: 3px; } .panel > .panel-body + .table, .panel > .panel-body + .table-responsive, .panel > .table + .panel-body, .panel > .table-responsive + .panel-body { border-top: 1px solid #ddd; } .panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child td { border-top: 0; } .panel > .table-bordered, .panel > .table-responsive > .table-bordered { border: 0; } .panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; } .panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; } .panel > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { border-bottom: 0; } .panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { border-bottom: 0; } .panel > .table-responsive { margin-bottom: 0; border: 0; } .panel-group { margin-bottom: 20px; } .panel-group .panel { margin-bottom: 0; border-radius: 4px; } .panel-group .panel + .panel { margin-top: 5px; } .panel-group .panel-heading { border-bottom: 0; } .panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .panel-heading + .panel-collapse > .list-group { border-top: 1px solid #ddd; } .panel-group .panel-footer { border-top: 0; } .panel-group .panel-footer + .panel-collapse .panel-body { border-bottom: 1px solid #ddd; } .panel-default { border-color: #ddd; } .panel-default > .panel-heading { color: #333; background-color: #f5f5f5; border-color: #ddd; } .panel-default > .panel-heading + .panel-collapse > .panel-body { border-top-color: #ddd; } .panel-default > .panel-heading .badge { color: #f5f5f5; background-color: #333; } .panel-default > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #ddd; } .panel-primary { border-color: #337ab7; } .panel-primary > .panel-heading { color: #fff; background-color: #337ab7; border-color: #337ab7; } .panel-primary > .panel-heading + .panel-collapse > .panel-body { border-top-color: #337ab7; } .panel-primary > .panel-heading .badge { color: #337ab7; background-color: #fff; } .panel-primary > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #337ab7; } .panel-success { border-color: #d6e9c6; } .panel-success > .panel-heading { color: #3c763d; background-color: #dff0d8; border-color: #d6e9c6; } .panel-success > .panel-heading + .panel-collapse > .panel-body { border-top-color: #d6e9c6; } .panel-success > .panel-heading .badge { color: #dff0d8; background-color: #3c763d; } .panel-success > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #d6e9c6; } .panel-info { border-color: #bce8f1; } .panel-info > .panel-heading { color: #31708f; background-color: #d9edf7; border-color: #bce8f1; } .panel-info > .panel-heading + .panel-collapse > .panel-body { border-top-color: #bce8f1; } .panel-info > .panel-heading .badge { color: #d9edf7; background-color: #31708f; } .panel-info > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #bce8f1; } .panel-warning { border-color: #faebcc; } .panel-warning > .panel-heading { color: #8a6d3b; background-color: #fcf8e3; border-color: #faebcc; } .panel-warning > .panel-heading + .panel-collapse > .panel-body { border-top-color: #faebcc; } .panel-warning > .panel-heading .badge { color: #fcf8e3; background-color: #8a6d3b; } .panel-warning > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #faebcc; } .panel-danger { border-color: #ebccd1; } .panel-danger > .panel-heading { color: #a94442; background-color: #f2dede; border-color: #ebccd1; } .panel-danger > .panel-heading + .panel-collapse > .panel-body { border-top-color: #ebccd1; } .panel-danger > .panel-heading .badge { color: #f2dede; background-color: #a94442; } .panel-danger > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #ebccd1; } .embed-responsive { position: relative; display: block; height: 0; padding: 0; overflow: hidden; } .embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video { position: absolute; top: 0; bottom: 0; left: 0; width: 100%; height: 100%; border: 0; } .embed-responsive-16by9 { padding-bottom: 56.25%; } .embed-responsive-4by3 { padding-bottom: 75%; } .well { min-height: 20px; padding: 19px; margin-bottom: 20px; background-color: #f5f5f5; border: 1px solid #e3e3e3; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); } .well blockquote { border-color: #ddd; border-color: rgba(0, 0, 0, .15); } .well-lg { padding: 24px; border-radius: 6px; } .well-sm { padding: 9px; border-radius: 3px; } .close { float: right; font-size: 21px; font-weight: bold; line-height: 1; color: #000; text-shadow: 0 1px 0 #fff; filter: alpha(opacity=20); opacity: .2; } .close:hover, .close:focus { color: #000; text-decoration: none; cursor: pointer; filter: alpha(opacity=50); opacity: .5; } button.close { -webkit-appearance: none; padding: 0; cursor: pointer; background: transparent; border: 0; } .modal-open { overflow: hidden; } .modal { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1050; display: none; overflow: hidden; -webkit-overflow-scrolling: touch; outline: 0; } .modal.fade .modal-dialog { -webkit-transition: -webkit-transform .3s ease-out; -o-transition: -o-transform .3s ease-out; transition: transform .3s ease-out; -webkit-transform: translate(0, -25%); -ms-transform: translate(0, -25%); -o-transform: translate(0, -25%); transform: translate(0, -25%); } .modal.in .modal-dialog { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); } .modal-open .modal { overflow-x: hidden; overflow-y: auto; } .modal-dialog { position: relative; width: auto; margin: 10px; } .modal-content { position: relative; background-color: #fff; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #999; border: 1px solid rgba(0, 0, 0, .2); border-radius: 6px; outline: 0; -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5); box-shadow: 0 3px 9px rgba(0, 0, 0, .5); } .modal-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1040; background-color: #000; } .modal-backdrop.fade { filter: alpha(opacity=0); opacity: 0; } .modal-backdrop.in { filter: alpha(opacity=50); opacity: .5; } .modal-header { min-height: 16.42857143px; padding: 15px; border-bottom: 1px solid #e5e5e5; } .modal-header .close { margin-top: -2px; } .modal-title { margin: 0; line-height: 1.42857143; } .modal-body { position: relative; padding: 15px; } .modal-footer { padding: 15px; text-align: right; border-top: 1px solid #e5e5e5; } .modal-footer .btn + .btn { margin-bottom: 0; margin-left: 5px; } .modal-footer .btn-group .btn + .btn { margin-left: -1px; } .modal-footer .btn-block + .btn-block { margin-left: 0; } .modal-scrollbar-measure { position: absolute; top: -9999px; width: 50px; height: 50px; overflow: scroll; } @media (min-width: 768px) { .modal-dialog { width: 600px; margin: 30px auto; } .modal-content { -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5); box-shadow: 0 5px 15px rgba(0, 0, 0, .5); } .modal-sm { width: 300px; } } @media (min-width: 992px) { .modal-lg { width: 900px; } } .tooltip { position: absolute; z-index: 1070; display: block; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 12px; font-style: normal; font-weight: normal; line-height: 1.42857143; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; letter-spacing: normal; word-break: normal; word-spacing: normal; word-wrap: normal; white-space: normal; filter: alpha(opacity=0); opacity: 0; line-break: auto; } .tooltip.in { filter: alpha(opacity=90); opacity: .9; } .tooltip.top { padding: 5px 0; margin-top: -3px; } .tooltip.right { padding: 0 5px; margin-left: 3px; } .tooltip.bottom { padding: 5px 0; margin-top: 3px; } .tooltip.left { padding: 0 5px; margin-left: -3px; } .tooltip-inner { max-width: 200px; padding: 3px 8px; color: #fff; text-align: center; background-color: #000; border-radius: 4px; } .tooltip-arrow { position: absolute; width: 0; height: 0; border-color: transparent; border-style: solid; } .tooltip.top .tooltip-arrow { bottom: 0; left: 50%; margin-left: -5px; border-width: 5px 5px 0; border-top-color: #000; } .tooltip.top-left .tooltip-arrow { right: 5px; bottom: 0; margin-bottom: -5px; border-width: 5px 5px 0; border-top-color: #000; } .tooltip.top-right .tooltip-arrow { bottom: 0; left: 5px; margin-bottom: -5px; border-width: 5px 5px 0; border-top-color: #000; } .tooltip.right .tooltip-arrow { top: 50%; left: 0; margin-top: -5px; border-width: 5px 5px 5px 0; border-right-color: #000; } .tooltip.left .tooltip-arrow { top: 50%; right: 0; margin-top: -5px; border-width: 5px 0 5px 5px; border-left-color: #000; } .tooltip.bottom .tooltip-arrow { top: 0; left: 50%; margin-left: -5px; border-width: 0 5px 5px; border-bottom-color: #000; } .tooltip.bottom-left .tooltip-arrow { top: 0; right: 5px; margin-top: -5px; border-width: 0 5px 5px; border-bottom-color: #000; } .tooltip.bottom-right .tooltip-arrow { top: 0; left: 5px; margin-top: -5px; border-width: 0 5px 5px; border-bottom-color: #000; } .popover { position: absolute; top: 0; left: 0; z-index: 1060; display: none; max-width: 276px; padding: 1px; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: normal; line-height: 1.42857143; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; letter-spacing: normal; word-break: normal; word-spacing: normal; word-wrap: normal; white-space: normal; background-color: #fff; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #ccc; border: 1px solid rgba(0, 0, 0, .2); border-radius: 6px; -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2); box-shadow: 0 5px 10px rgba(0, 0, 0, .2); line-break: auto; } .popover.top { margin-top: -10px; } .popover.right { margin-left: 10px; } .popover.bottom { margin-top: 10px; } .popover.left { margin-left: -10px; } .popover-title { padding: 8px 14px; margin: 0; font-size: 14px; background-color: #f7f7f7; border-bottom: 1px solid #ebebeb; border-radius: 5px 5px 0 0; } .popover-content { padding: 9px 14px; } .popover > .arrow, .popover > .arrow:after { position: absolute; display: block; width: 0; height: 0; border-color: transparent; border-style: solid; } .popover > .arrow { border-width: 11px; } .popover > .arrow:after { content: ""; border-width: 10px; } .popover.top > .arrow { bottom: -11px; left: 50%; margin-left: -11px; border-top-color: #999; border-top-color: rgba(0, 0, 0, .25); border-bottom-width: 0; } .popover.top > .arrow:after { bottom: 1px; margin-left: -10px; content: " "; border-top-color: #fff; border-bottom-width: 0; } .popover.right > .arrow { top: 50%; left: -11px; margin-top: -11px; border-right-color: #999; border-right-color: rgba(0, 0, 0, .25); border-left-width: 0; } .popover.right > .arrow:after { bottom: -10px; left: 1px; content: " "; border-right-color: #fff; border-left-width: 0; } .popover.bottom > .arrow { top: -11px; left: 50%; margin-left: -11px; border-top-width: 0; border-bottom-color: #999; border-bottom-color: rgba(0, 0, 0, .25); } .popover.bottom > .arrow:after { top: 1px; margin-left: -10px; content: " "; border-top-width: 0; border-bottom-color: #fff; } .popover.left > .arrow { top: 50%; right: -11px; margin-top: -11px; border-right-width: 0; border-left-color: #999; border-left-color: rgba(0, 0, 0, .25); } .popover.left > .arrow:after { right: 1px; bottom: -10px; content: " "; border-right-width: 0; border-left-color: #fff; } .carousel { position: relative; } .carousel-inner { position: relative; width: 100%; overflow: hidden; } .carousel-inner > .item { position: relative; display: none; -webkit-transition: .6s ease-in-out left; -o-transition: .6s ease-in-out left; transition: .6s ease-in-out left; } .carousel-inner > .item > img, .carousel-inner > .item > a > img { line-height: 1; } @media all and (transform-3d), (-webkit-transform-3d) { .carousel-inner > .item { -webkit-transition: -webkit-transform .6s ease-in-out; -o-transition: -o-transform .6s ease-in-out; transition: transform .6s ease-in-out; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-perspective: 1000px; perspective: 1000px; } .carousel-inner > .item.next, .carousel-inner > .item.active.right { left: 0; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } .carousel-inner > .item.prev, .carousel-inner > .item.active.left { left: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active { left: 0; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev { display: block; } .carousel-inner > .active { left: 0; } .carousel-inner > .next, .carousel-inner > .prev { position: absolute; top: 0; width: 100%; } .carousel-inner > .next { left: 100%; } .carousel-inner > .prev { left: -100%; } .carousel-inner > .next.left, .carousel-inner > .prev.right { left: 0; } .carousel-inner > .active.left { left: -100%; } .carousel-inner > .active.right { left: 100%; } .carousel-control { position: absolute; top: 0; bottom: 0; left: 0; width: 15%; font-size: 20px; color: #fff; text-align: center; text-shadow: 0 1px 2px rgba(0, 0, 0, .6); filter: alpha(opacity=50); opacity: .5; } .carousel-control.left { background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001))); background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); background-repeat: repeat-x; } .carousel-control.right { right: 0; left: auto; background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5))); background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); background-repeat: repeat-x; } .carousel-control:hover, .carousel-control:focus { color: #fff; text-decoration: none; filter: alpha(opacity=90); outline: 0; opacity: .9; } .carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right { position: absolute; top: 50%; z-index: 5; display: inline-block; margin-top: -10px; } .carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left { left: 50%; margin-left: -10px; } .carousel-control .icon-next, .carousel-control .glyphicon-chevron-right { right: 50%; margin-right: -10px; } .carousel-control .icon-prev, .carousel-control .icon-next { width: 20px; height: 20px; font-family: serif; line-height: 1; } .carousel-control .icon-prev:before { content: '\2039'; } .carousel-control .icon-next:before { content: '\203a'; } .carousel-indicators { position: absolute; bottom: 10px; left: 50%; z-index: 15; width: 60%; padding-left: 0; margin-left: -30%; text-align: center; list-style: none; } .carousel-indicators li { display: inline-block; width: 10px; height: 10px; margin: 1px; text-indent: -999px; cursor: pointer; background-color: #000 \9; background-color: rgba(0, 0, 0, 0); border: 1px solid #fff; border-radius: 10px; } .carousel-indicators .active { width: 12px; height: 12px; margin: 0; background-color: #fff; } .carousel-caption { position: absolute; right: 15%; bottom: 20px; left: 15%; z-index: 10; padding-top: 20px; padding-bottom: 20px; color: #fff; text-align: center; text-shadow: 0 1px 2px rgba(0, 0, 0, .6); } .carousel-caption .btn { text-shadow: none; } @media screen and (min-width: 768px) { .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next { width: 30px; height: 30px; margin-top: -15px; font-size: 30px; } .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev { margin-left: -15px; } .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next { margin-right: -15px; } .carousel-caption { right: 20%; left: 20%; padding-bottom: 30px; } .carousel-indicators { bottom: 20px; } } .clearfix:before, .clearfix:after, .dl-horizontal dd:before, .dl-horizontal dd:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .pager:before, .pager:after, .panel-body:before, .panel-body:after, .modal-footer:before, .modal-footer:after { display: table; content: " "; } .clearfix:after, .dl-horizontal dd:after, .container:after, .container-fluid:after, .row:after, .form-horizontal .form-group:after, .btn-toolbar:after, .btn-group-vertical > .btn-group:after, .nav:after, .navbar:after, .navbar-header:after, .navbar-collapse:after, .pager:after, .panel-body:after, .modal-footer:after { clear: both; } .center-block { display: block; margin-right: auto; margin-left: auto; } .pull-right { float: right !important; } .pull-left { float: left !important; } .hide { display: none !important; } .show { display: block !important; } .invisible { visibility: hidden; } .text-hide { font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0; } .hidden { display: none !important; } .affix { position: fixed; } @-ms-viewport { width: device-width; } .visible-xs, .visible-sm, .visible-md, .visible-lg { display: none !important; } .visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block { display: none !important; } @media (max-width: 767px) { .visible-xs { display: block !important; } table.visible-xs { display: table !important; } tr.visible-xs { display: table-row !important; } th.visible-xs, td.visible-xs { display: table-cell !important; } } @media (max-width: 767px) { .visible-xs-block { display: block !important; } } @media (max-width: 767px) { .visible-xs-inline { display: inline !important; } } @media (max-width: 767px) { .visible-xs-inline-block { display: inline-block !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm { display: block !important; } table.visible-sm { display: table !important; } tr.visible-sm { display: table-row !important; } th.visible-sm, td.visible-sm { display: table-cell !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm-block { display: block !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm-inline { display: inline !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm-inline-block { display: inline-block !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md { display: block !important; } table.visible-md { display: table !important; } tr.visible-md { display: table-row !important; } th.visible-md, td.visible-md { display: table-cell !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md-block { display: block !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md-inline { display: inline !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md-inline-block { display: inline-block !important; } } @media (min-width: 1200px) { .visible-lg { display: block !important; } table.visible-lg { display: table !important; } tr.visible-lg { display: table-row !important; } th.visible-lg, td.visible-lg { display: table-cell !important; } } @media (min-width: 1200px) { .visible-lg-block { display: block !important; } } @media (min-width: 1200px) { .visible-lg-inline { display: inline !important; } } @media (min-width: 1200px) { .visible-lg-inline-block { display: inline-block !important; } } @media (max-width: 767px) { .hidden-xs { display: none !important; } } @media (min-width: 768px) and (max-width: 991px) { .hidden-sm { display: none !important; } } @media (min-width: 992px) and (max-width: 1199px) { .hidden-md { display: none !important; } } @media (min-width: 1200px) { .hidden-lg { display: none !important; } } .visible-print { display: none !important; } @media print { .visible-print { display: block !important; } table.visible-print { display: table !important; } tr.visible-print { display: table-row !important; } th.visible-print, td.visible-print { display: table-cell !important; } } .visible-print-block { display: none !important; } @media print { .visible-print-block { display: block !important; } } .visible-print-inline { display: none !important; } @media print { .visible-print-inline { display: inline !important; } } .visible-print-inline-block { display: none !important; } @media print { .visible-print-inline-block { display: inline-block !important; } } @media print { .hidden-print { display: none !important; } } /*# sourceMappingURL=bootstrap.css.map */
third_party/google-closure-library/closure/goog/labs/net/webchannel/webchannelbase_test.html
scheib/chromium
<!DOCTYPE html><!-- DO NOT EDIT. This file auto-generated by generate_closure_unit_tests.js --><!-- Copyright 2017 The Closure Library Authors. All Rights Reserved. Use of this source code is governed by the Apache License, Version 2.0. See the COPYING file for details. --><html><head><meta charset="UTF-8"> <script src="../../../base.js"></script> <script>goog.require('goog.labs.net.webChannel.webChannelBaseTest');</script> <title>Closure Unit Tests - goog.labs.net.webChannel.webChannelBaseTest</title><!-- Copyright 2017 The Closure Library Authors. All Rights Reserved. Use of this source code is governed by the Apache License, Version 2.0. See the COPYING file for details. --> </head><body><div id="debug" style="font-size: small"> </div></body></html>
LayoutTests/animations/animation-iteration-event-destroy-renderer.html
hgl888/blink-crosswalk-efl
<html> <head> <title>Destroy and Hide Element in Animation End Event</title> <style type="text/css" media="screen"> .box { height: 100px; width: 100px; margin: 10px; background-color: blue; -webkit-animation-duration: 0.2s; -webkit-animation-iteration-count: 2; } @-webkit-keyframes move { from { -webkit-transform: translate(0px, 0px); } to { -webkit-transform: translate(100px, 0px); } } </style> <script type="text/javascript" charset="utf-8"> if (window.testRunner) { testRunner.dumpAsText(); testRunner.waitUntilDone(); } var numDone = 0; function animationIterated() { ++numDone; if (numDone == 2) { if (window.GCController) GCController.collect(); document.getElementById('results').innerHTML = 'Did not crash, so PASSED'; if (window.testRunner) testRunner.notifyDone(); } } function startTest() { var box1 = document.getElementById('box1'); box1.addEventListener('webkitAnimationIteration', function() { box1.parentNode.removeChild(box1); animationIterated(); }, false); box1.style.webkitAnimationName = 'move'; var box2 = document.getElementById('box2'); box2.addEventListener('webkitAnimationIteration', function() { box2.style.display = 'none'; animationIterated(); }, false); box2.style.webkitAnimationName = 'move'; } window.addEventListener('load', startTest, false); </script> </head> <body> <p>Tests element removal and hiding within the webkitAnimationIteration event handler. Should not crash.</p> <div id="container"> <div id="box1" class="box"></div> <div id="box2" class="box"></div> </div> <div id="results"></div> </body> </html>
episode-199/todo/public/stylesheets/application.css
DouglasAllen/railscasts-episodes
body { background-color: #4B7399; font-family: Verdana, Helvetica, Arial; font-size: 14px; } a img { border: none; } a { color: #0000FF; } .clear { clear: both; height: 0px; overflow: hidden; } #container { width: 75%; min-width: 525px; margin: 0 auto; background-color: #FFF; padding: 20px 40px; border: solid 1px black; margin-top: 20px; } #flash_notice, #flash_error { padding: 5px 8px; margin: 10px 0; } #flash_notice { background-color: #CFC; border: solid 1px #6C6; } #flash_error { background-color: #FCC; border: solid 1px #C66; } .fieldWithErrors { display: inline; } #errorExplanation { width: 400px; border: 2px solid #CF0000; padding: 0px; padding-bottom: 12px; margin-bottom: 20px; background-color: #f0f0f0; } #errorExplanation h2 { text-align: left; font-weight: bold; padding: 5px 5px 5px 15px; font-size: 12px; margin: 0px; background-color: #c00; color: #fff; } #errorExplanation p { color: #333; margin-bottom: 0; padding: 8px; } #errorExplanation ul { margin: 2px 24px; } #errorExplanation ul li { font-size: 12px; list-style: disc; } .project h2 { margin-bottom: 2px; } .project .actions { font-size: 12px; margin: 0; }
web/public/libs/dojo/1.8.3/dojox/mobile/themes/common/domButtons/DomButtonWhiteMinus.css
ISTang/sitemap
.mblDomButtonWhiteMinus { position: relative; width: 29px; height: 29px; } .mblDomButtonWhiteMinus > div { position: absolute; top: 12px; left: 8px; width: 13px; height: 3px; margin: 0px; font-size: 1px; background-color: white; border-top: 1px solid #4a5a71; }
user/wsc_upnp/libupnp-1.4.6/docs/dist/html/ixml/ixmlFreeDOMString.html
Bytewerk/uClinux-ipcam
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <TITLE>EXPORT_SPEC void ixmlFreeDOMString</TITLE> <META NAME="GENERATOR" CONTENT="DOC++ 3.4.10"> </HEAD> <BODY BGCOLOR="#ffffff"> <H2>EXPORT_SPEC void <A HREF="#DOC.DOCU">ixmlFreeDOMString</A></H2><H2>(DOMString buf )</H2><BLOCKQUOTE>Frees a <B>DOMString</B>.</BLOCKQUOTE> <A NAME="DOC.DOCU"></A> <HR> <H2>Documentation</H2> <BLOCKQUOTE>Frees a <B>DOMString</B>. <P></BLOCKQUOTE> <DL><DT><DT><B>Parameters:</B><DD><B>buf</B> - The <B>DOMString</B> to free. <BR><DT><B>Returns:</B><DD> [void] This function does not return a value. <BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR> <BR> This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>. </BODY> </HTML>
docs/api/class_mix_e_r_p_1_1_net_1_1_front_end_1_1_controls_1_1_web_report-members.html
mixerp/mixerp
<!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>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="mixerp.png"/></td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.10 --> <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>Packages</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</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="hierarchy.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('class_mix_e_r_p_1_1_net_1_1_front_end_1_1_controls_1_1_web_report.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">MixERP.Net.FrontEnd.Controls.WebReport Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="class_mix_e_r_p_1_1_net_1_1_front_end_1_1_controls_1_1_web_report.html">MixERP.Net.FrontEnd.Controls.WebReport</a>, including all inherited members.</p> <table class="directory"> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>AddParameterToCollection</b>(Collection&lt; KeyValuePair&lt; string, object &gt;&gt; parameter) (defined in <a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a>)</td><td class="entry"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>AutoInitialize</b> (defined in <a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a>)</td><td class="entry"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Catalog</b> (defined in <a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a>)</td><td class="entry"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>CreateChildControls</b>() (defined in <a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a>)</td><td class="entry"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Dispose</b>() (defined in <a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a>)</td><td class="entry"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>Html</b> (defined in <a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a>)</td><td class="entry"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>ImageButtonCssClass</b> (defined in <a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a>)</td><td class="entry"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>InitializeReport</b>() (defined in <a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a>)</td><td class="entry"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>InvalidLocationErrorMessage</b> (defined in <a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a>)</td><td class="entry"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>NoHeader</b> (defined in <a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a>)</td><td class="entry"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html#adbc6bcaf984a39ec8c8d4251d9b1f346">ParameterCollection</a></td><td class="entry"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>Path</b> (defined in <a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a>)</td><td class="entry"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>RecreateChildControls</b>() (defined in <a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a>)</td><td class="entry"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>Render</b>(HtmlTextWriter w) (defined in <a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a>)</td><td class="entry"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>ReportNotFoundErrorMessage</b> (defined in <a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a>)</td><td class="entry"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>RunningTotalText</b> (defined in <a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a>)</td><td class="entry"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_report.html">MixERP.Net.WebControls.ReportEngine.Report</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>WebReport</b>() (defined in <a class="el" href="class_mix_e_r_p_1_1_net_1_1_front_end_1_1_controls_1_1_web_report.html">MixERP.Net.FrontEnd.Controls.WebReport</a>)</td><td class="entry"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_front_end_1_1_controls_1_1_web_report.html">MixERP.Net.FrontEnd.Controls.WebReport</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.10 </li> </ul> </div> </body> </html>
venv/bin/doc/html/boost/heap/stability_counter_type.html
NixaSoftware/CVis
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Struct template stability_counter_type</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="../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> <link rel="up" href="../../heap/reference.html#header.boost.heap.policies_hpp" title="Header &lt;boost/heap/policies.hpp&gt;"> <link rel="prev" href="stable.html" title="Struct template stable"> <link rel="next" href="constant_time_size.html" title="Struct template constant_time_size"> </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="stable.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../heap/reference.html#header.boost.heap.policies_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="constant_time_size.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.heap.stability_counter_type"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Struct template stability_counter_type</span></h2> <p>boost::heap::stability_counter_type &#8212; Specifies the type for stability counter. </p> </div> <h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2> <div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: &lt;<a class="link" href="../../heap/reference.html#header.boost.heap.policies_hpp" title="Header &lt;boost/heap/policies.hpp&gt;">boost/heap/policies.hpp</a>&gt; </span><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> IntType<span class="special">&gt;</span> <span class="keyword">struct</span> <a class="link" href="stability_counter_type.html" title="Struct template stability_counter_type">stability_counter_type</a> <span class="special">{</span> <span class="special">}</span><span class="special">;</span></pre></div> </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; 2010, 2011 Tim Blechmann<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="stable.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../heap/reference.html#header.boost.heap.policies_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="constant_time_size.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
webapps/examples/index.html
Novemser/TomcatTest
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD><TITLE>Apache Tomcat Examples</TITLE> <META http-equiv=Content-Type content="text/html"> </HEAD> <BODY> <P> <H3>Apache Tomcat Examples</H3> <P></P> <ul> <li><a href="servlets">Servlets examples</a></li> <li><a href="jsp">JSP Examples</a></li> </ul> </BODY></HTML>
webroot/bower_components/ammap3/samples/_JSON_changingProjections.html
si-quimera/avante
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>amMap examples</title> <link rel="stylesheet" href="../ammap/ammap.css" type="text/css"> <script src="../ammap/ammap.js" type="text/javascript"></script> <!-- map file should be included after ammap.js --> <script src="../ammap/maps/js/worldLow.js" type="text/javascript"></script> <link rel="stylesheet" href="style.css" type="text/css"> <script> // svg path for target icon var targetSVG = "M9,0C4.029,0,0,4.029,0,9s4.029,9,9,9s9-4.029,9-9S13.971,0,9,0z M9,15.93 c-3.83,0-6.93-3.1-6.93-6.93S5.17,2.07,9,2.07s6.93,3.1,6.93,6.93S12.83,15.93,9,15.93 M12.5,9c0,1.933-1.567,3.5-3.5,3.5S5.5,10.933,5.5,9S7.067,5.5,9,5.5 S12.5,7.067,12.5,9z"; // svg path for plane icon var planeSVG = "m2,106h28l24,30h72l-44,-133h35l80,132h98c21,0 21,34 0,34l-98,0 -80,134h-35l43,-133h-71l-24,30h-28l15,-47"; var map = AmCharts.makeChart("mapdiv", { type: "map", dataProvider: { map: "worldLow", lines: [{ id: "line1", arc: -0.85, alpha: 0.3, latitudes: [48.8567, 43.8163, 34.3, 23], longitudes: [2.3510, -79.4287, -118.15, -82] }], images: [{ svgPath: targetSVG, title: "Paris", latitude: 48.8567, longitude: 2.3510 }, { svgPath: targetSVG, title: "Toronto", latitude: 43.8163, longitude: -79.4287 }, { svgPath: targetSVG, title: "Los Angeles", latitude: 34.3, longitude: -118.15 }, { svgPath: targetSVG, title: "Havana", latitude: 23, longitude: -82 },{ svgPath: planeSVG, positionOnLine: 0, color: "#585869", animateAlongLine: true, lineId: "line1", flipDirection: true, loop: true, scale: 0.03, positionScale: 1.8 }] }, areasSettings: { unlistedAreasColor: "#8dd9ef" }, imagesSettings: { color: "#585869", rollOverColor: "#585869", selectedColor: "#585869", pauseDuration: 0.2, animationDuration: 2.5, adjustAnimationSpeed: true }, linesSettings: { color: "#585869", alpha: 0.4 } }); </script> </head> <body> <div id="mapdiv" style="width: 100%; background-color:#d5eff7; height: 500px;"></div> <br> <div style="text-align:center; font-size:10px"> <a href="#" onclick="map.setProjection('winkel3')">Winkel 3</a> | <a href="#" onclick="map.setProjection('eckert3')">Eckert 3</a> | <a href="#" onclick="map.setProjection('eckert5')">Eckert 5</a> | <a href="#" onclick="map.setProjection('eckert6')">Eckert 6</a> | <a href="#" onclick="map.setProjection('miller')">Miller</a> | <a href="#" onclick="map.setProjection('equirectangular')">Equirectangular</a> | <a href="#" onclick="map.setProjection('mercator')">Mercator</a> </div> </body> </html>
src/vs/workbench/parts/debug/browser/media/exceptionWidget.css
Zalastax/vscode
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ .monaco-editor .zone-widget.exception-widget-container { overflow: hidden; } .monaco-editor .zone-widget .zone-widget-container.exception-widget { padding: 6px 10px; white-space: pre-wrap; -webkit-user-select: text; -ms-user-select: text; -khtml-user-select: text; -moz-user-select: text; -o-user-select: text; user-select: text; } .monaco-editor .zone-widget .zone-widget-container.exception-widget .title { font-weight: bold; } .monaco-editor .zone-widget .zone-widget-container.exception-widget .description, .monaco-editor .zone-widget .zone-widget-container.exception-widget .stack-trace { font-family: Monaco, Menlo, Consolas, "Droid Sans Mono", "Inconsolata", "Courier New", monospace, "Droid Sans Fallback"; } .monaco-editor .zone-widget .zone-widget-container.exception-widget .stack-trace { margin-top: 0.5em; } .monaco-editor .zone-widget .zone-widget-container.exception-widget a { text-decoration: underline; cursor: pointer; } /* High Contrast Theming */ .monaco-workbench.mac .zone-widget .zone-widget-container.exception-widget { font-size: 11px; } .monaco-workbench.windows .zone-widget .zone-widget-container.exception-widget, .monaco-workbench.linux .zone-widget .zone-widget-container.exception-widget { font-size: 13px; }
quark_base/modules/mod_news_pro_gk5/tmpl/portal_modes/jomsocial_photos/style.css
ytsebro/slavic
/* Portal Mode - News Blocks */ .gkNspPM-JomSocialPhotos { overflow: hidden; text-align: center; } .gkNspPM-JomSocialPhotos > div { background: #152136; left: 50%; line-height: 1; margin: 0 auto -3px auto; position: relative; -webkit-transform: translateX(-50%); -moz-transform: translateX(-50%); -ms-transform: translateX(-50%); -o-transform: translateX(-50%); transform: translateX(-50%); } .gkNspPM-JomSocialPhotos figure { display: inline-block; position: relative; } .gkNspPM-JomSocialPhotos[data-cols="1"] figure { max-width: 100%; } .gkNspPM-JomSocialPhotos[data-cols="2"] figure { max-width: 50%; } .gkNspPM-JomSocialPhotos[data-cols="3"] figure { max-width: 33.333333%; } .gkNspPM-JomSocialPhotos[data-cols="4"] figure { max-width: 25%; } .gkNspPM-JomSocialPhotos[data-cols="5"] figure { max-width: 20%; } .gkNspPM-JomSocialPhotos[data-cols="6"] figure { max-width: 16.666666%; } .gkNspPM-JomSocialPhotos[data-cols="7"] figure { max-width: 14.285714%; } .gkNspPM-JomSocialPhotos[data-cols="8"] figure { max-width: 12.5%; } .gkNspPM-JomSocialPhotos figcaption { background: rgba(0, 0, 0, .75); height: 100%; opacity: 0; padding: 50px; position: absolute; text-align: left; top: 0; -webkit-transform: scale(0.5); -moz-transform: scale(0.5); -ms-transform: scale(0.5); -o-transform: scale(0.5); transform: scale(0.5); -webkit-transition: all .3s ease-out; -moz-transition: all .3s ease-out; -ms-transition: all .3s ease-out; -o-transition: all .3s ease-out; transition: all .3s ease-out; width: 100%; z-index: 3; } .gkNspPM-JomSocialPhotos figure:hover figcaption { opacity: 1; -webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); transform: scale(1); } .gkNspPM-JomSocialPhotos figure img { display: block; opacity: 0.5; -webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); transform: scale(1); -webkit-transition: all .4s ease-out; -moz-transition: all .4s ease-out; -ms-transition: all .4s ease-out; -o-transition: all .4s ease-out; transition: all .4s ease-out; } .gkNspPM-JomSocialPhotos figure img.hide { opacity: 0; -webkit-transform: scale(0.5); -moz-transform: scale(0.5); -ms-transform: scale(0.5); -o-transform: scale(0.5); transform: scale(0.5); } .gkNspPM-JomSocialPhotos figcaption small { color: #fff; display: block; font-size: 14px; font-weight: 700; margin: 0 0 20px 0; opacity: 0; position: relative; text-transform: uppercase; top: 35px; -webkit-transition: all .3s ease-out; -moz-transition: all .3s ease-out; -ms-transition: all .3s ease-out; -o-transition: all .3s ease-out; transition: all .3s ease-out; -webkit-transition-delay: .15s; -moz-transition-delay: .15s; -ms-transition-delay: .15s; -o-transition-delay: .15s; transition-delay: .15s; } .gkNspPM-JomSocialPhotos figure:hover figcaption small { opacity: 1; top: 0; } .gkNspPM-JomSocialPhotos figcaption p { color: #b7c0ce; font-size: 12px; height: 32px; line-height: 16px; margin: 0 0 10px 0; overflow: hidden; opacity: 0; position: relative; text-overflow: ellipsis; top: 25px; -webkit-transition: all .3s ease-out; -moz-transition: all .3s ease-out; -ms-transition: all .3s ease-out; -o-transition: all .3s ease-out; transition: all .3s ease-out; -webkit-transition-delay: .25s; -moz-transition-delay: .25s; -ms-transition-delay: .25s; -o-transition-delay: .25s; transition-delay: .25s; } .gkNspPM-JomSocialPhotos figure:hover figcaption p { opacity: 1; top: 0; } .gkNspPM-JomSocialPhotos figcaption a { opacity: 0; position: relative; top: 20px; } .gkNspPM-JomSocialPhotos figcaption a:active, .gkNspPM-JomSocialPhotos figcaption a:focus, .gkNspPM-JomSocialPhotos figcaption a:hover { color: #fff; } .gkNspPM-JomSocialPhotos figure:hover figcaption a { opacity: 1; top: 0; -webkit-transition: all .3s ease-out; -moz-transition: all .3s ease-out; -ms-transition: all .3s ease-out; -o-transition: all .3s ease-out; transition: all .3s ease-out; -webkit-transition-delay: .35s; -moz-transition-delay: .35s; -ms-transition-delay: .35s; -o-transition-delay: .35s; transition-delay: .35s; } /* Mobile devices */ @media (max-width: 1040px) { .gkNspPM-JomSocialPhotos[data-cols="1"] figure, .gkNspPM-JomSocialPhotos[data-cols="2"] figure { width: 420px!important; } .gkNspPM-JomSocialPhotos[data-cols="3"] figure { width: 280px!important; } .gkNspPM-JomSocialPhotos[data-cols="4"] figure { width: 205px!important; } .gkNspPM-JomSocialPhotos figcaption { padding: 22px; } } @media (max-width: 840px) { .gkNspPM-JomSocialPhotos[data-cols="1"] figure, .gkNspPM-JomSocialPhotos[data-cols="2"] figure { width: 340px!important; } .gkNspPM-JomSocialPhotos[data-cols="3"] figure { width: 220px!important; } .gkNspPM-JomSocialPhotos[data-cols="4"] figure { width: 180px!important; } }
pdns/docs/markdown/theme/css/base.css
lochiiconnectivity/pdns
body { padding-top: 70px; font-size: 13px; padding-bottom: 30px; } h1 { font-size: 26px; } h2 { font-size: 18px; } h3 { font-size: 15px; } h4 { font-size: 13px; } .dropdown-menu { font-size: 13px; } ul.nav li.main { font-weight: bold; } div.col-md-3 { padding-left: 0; } div.source-links { float: right; } /* * Side navigation * * Scrollspy and affixed enhanced navigation to highlight sections and secondary * sections of docs content. */ /* By default it's not affixed in mobile views, so undo that */ .bs-sidebar.affix { height: 100%; overflow: auto; position: static; } .bs-sidebar.well { padding: 0; } /* First level of nav */ .bs-sidenav { margin-top: 30px; margin-bottom: 30px; padding-top: 10px; padding-bottom: 10px; border-radius: 5px; } /* All levels of nav */ .bs-sidebar .nav > li > a { display: block; padding: 2px 10px 2px; } .bs-sidebar .nav > li > a:hover, .bs-sidebar .nav > li > a:focus { text-decoration: none; border-right: 1px solid; } .bs-sidebar .nav > .active > a, .bs-sidebar .nav > .active:hover > a, .bs-sidebar .nav > .active:focus > a { font-weight: bold; background-color: transparent; border-right: 1px solid; } /* Nav: second level (shown on .active) */ .bs-sidebar .nav .nav { display: none; /* Hide by default, but at >768px, show it */ margin-bottom: 8px; } .bs-sidebar .nav .nav > li > a { padding-top: 3px; padding-bottom: 3px; padding-left: 30px; font-size: 90%; } .navbar-nav > li > a { padding: 15px 7px; } /* Show and affix the side nav when space allows it */ @media (min-width: 1200px) { .bs-sidebar .nav > .active > ul { display: block; } /* Widen the fixed sidebar */ .bs-sidebar.affix, .bs-sidebar.affix-bottom { width: 213px; } .bs-sidebar.affix { position: fixed; /* Undo the static from mobile first approach */ top: 60px; height: 90%; } .bs-sidebar.affix-bottom { position: absolute; /* Undo the static from mobile first approach */ } .bs-sidebar.affix-bottom .bs-sidenav, .bs-sidebar.affix .bs-sidenav { margin-top: 0; margin-bottom: 0; } } @media (min-width: 1200px) { /* Widen the fixed sidebar again */ .bs-sidebar.affix-bottom, .bs-sidebar.affix { width: 263px; } } /* Footer */ .footer { position: fixed; bottom: 0px; width: 100%; height: 30px; background-color: #222; } .footer-bar > li > a { padding-top: 5px; padding-bottom: 5px; }
solr/vendor/docs/solr-analytics/org/apache/solr/analytics/util/AnalyticsParsers.Parser.html
lahmann/vufind
<!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_71) on Tue Feb 16 15:23:20 EST 2016 --> <meta http-equiv="Content-Type" content="text/html" charset="utf-8"> <title>AnalyticsParsers.Parser (Solr 5.5.0 API)</title> <meta name="date" content="2016-02-16"> <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="AnalyticsParsers.Parser (Solr 5.5.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 class="navBarCell1Rev">Class</li> <li><a href="class-use/AnalyticsParsers.Parser.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/apache/solr/analytics/util/AnalyticsParsers.NumericParser.html" title="interface in org.apache.solr.analytics.util"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../../org/apache/solr/analytics/util/MedianCalculator.html" title="class in org.apache.solr.analytics.util"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/solr/analytics/util/AnalyticsParsers.Parser.html" target="_top">Frames</a></li> <li><a href="AnalyticsParsers.Parser.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.apache.solr.analytics.util</div> <h2 title="Interface AnalyticsParsers.Parser" class="title">Interface AnalyticsParsers.Parser</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Known Subinterfaces:</dt> <dd><a href="../../../../../org/apache/solr/analytics/util/AnalyticsParsers.NumericParser.html" title="interface in org.apache.solr.analytics.util">AnalyticsParsers.NumericParser</a></dd> </dl> <dl> <dt>Enclosing class:</dt> <dd><a href="../../../../../org/apache/solr/analytics/util/AnalyticsParsers.html" title="class in org.apache.solr.analytics.util">AnalyticsParsers</a></dd> </dl> <hr> <br> <pre>public static interface <span class="strong">AnalyticsParsers.Parser</span></pre> <div class="block">For use in classes that grab values by docValue. Converts a BytesRef object into the correct readable text.</div> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/solr/analytics/util/AnalyticsParsers.Parser.html#parse(org.apache.lucene.util.BytesRef)">parse</a></strong>(<a href="http://lucene.apache.org/core/5_5_0/core/org/apache/lucene/util/BytesRef.html?is-external=true" title="class or interface in org.apache.lucene.util">BytesRef</a>&nbsp;bytes)</code>&nbsp;</td> </tr> </table> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="parse(org.apache.lucene.util.BytesRef)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>parse</h4> <pre><a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;parse(<a href="http://lucene.apache.org/core/5_5_0/core/org/apache/lucene/util/BytesRef.html?is-external=true" title="class or interface in org.apache.lucene.util">BytesRef</a>&nbsp;bytes) throws <a href="http://download.oracle.com/javase/7/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></pre> <dl><dt><span class="strong">Throws:</span></dt> <dd><code><a href="http://download.oracle.com/javase/7/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></code></dd></dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><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="navBarCell1Rev">Class</li> <li><a href="class-use/AnalyticsParsers.Parser.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/apache/solr/analytics/util/AnalyticsParsers.NumericParser.html" title="interface in org.apache.solr.analytics.util"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../../org/apache/solr/analytics/util/MedianCalculator.html" title="class in org.apache.solr.analytics.util"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/solr/analytics/util/AnalyticsParsers.Parser.html" target="_top">Frames</a></li> <li><a href="AnalyticsParsers.Parser.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small> <i>Copyright &copy; 2000-2016 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>
www/lib/leaflet.locatecontrol/dist/L.Control.Locate.min.css
MarkusKonk/GoWest2
.leaflet-control-locate a{font-size:1.4em;color:#444}.leaflet-control-locate.active a{color:#2074B6}.leaflet-control-locate.active.following a{color:#FC8428} /*# sourceMappingURL=L.Control.Locate.min.css.map */
examples/webgl_raymarching_reflect.html
jeffgoku/three.js
<!DOCTYPE html> <html lang="en"> <head> <title>three.js webgl - raymarching - reflect</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> <style type="text/css"> html, body { height: 100%; } body { background-color: black; margin: 0; padding: 0; } a { color: skyblue } #container { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; } #info { position: absolute; color: white; font-size: 13px; bottom: 10px; width: 100%; text-align: center; z-index: 100; } </style> </head> <body> <div id="info"> <a href="http://threejs.org" target="_blank" rel="noopener">three.js</a> - webgl raymarching example - reflect by <a href="https://github.com/gam0022" target="_blank" rel="noopener">gam0022</a> (<a href="http://qiita.com/gam0022/items/03699a07e4a4b5f2d41f" target="_blank" rel="noopener">article</a>) </div> <div id="container"> <canvas id="canvas"></canvas> </div> <script id="fragment_shader" type="x-shader/x-fragment"> precision highp float; uniform vec2 resolution; uniform mat4 viewMatrix; uniform vec3 cameraPosition; uniform mat4 cameraWorldMatrix; uniform mat4 cameraProjectionMatrixInverse; const float EPS = 0.01; const float OFFSET = EPS * 100.0; const vec3 lightDir = vec3( -0.48666426339228763, 0.8111071056538127, -0.3244428422615251 ); // distance functions vec3 opRep( vec3 p, float interval ) { vec2 q = mod( p.xz, interval ) - interval * 0.5; return vec3( q.x, p.y, q.y ); } float sphereDist( vec3 p, float r ) { return length( opRep( p, 3.0 ) ) - r; } float floorDist( vec3 p ){ return dot(p, vec3( 0.0, 1.0, 0.0 ) ) + 1.0; } vec4 minVec4( vec4 a, vec4 b ) { return ( a.a < b.a ) ? a : b; } float checkeredPattern( vec3 p ) { float u = 1.0 - floor( mod( p.x, 2.0 ) ); float v = 1.0 - floor( mod( p.z, 2.0 ) ); if ( ( u == 1.0 && v < 1.0 ) || ( u < 1.0 && v == 1.0 ) ) { return 0.2; } else { return 1.0; } } vec3 hsv2rgb( vec3 c ) { vec4 K = vec4( 1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0 ); vec3 p = abs( fract( c.xxx + K.xyz ) * 6.0 - K.www ); return c.z * mix( K.xxx, clamp( p - K.xxx, 0.0, 1.0 ), c.y ); } float sceneDist( vec3 p ) { return min( sphereDist( p, 1.0 ), floorDist( p ) ); } vec4 sceneColor( vec3 p ) { return minVec4( // 3 * 6 / 2 = 9 vec4( hsv2rgb(vec3( ( p.z + p.x ) / 9.0, 1.0, 1.0 ) ), sphereDist( p, 1.0 ) ), vec4( vec3( 0.5 ) * checkeredPattern( p ), floorDist( p ) ) ); } vec3 getNormal( vec3 p ) { return normalize(vec3( sceneDist(p + vec3( EPS, 0.0, 0.0 ) ) - sceneDist(p + vec3( -EPS, 0.0, 0.0 ) ), sceneDist(p + vec3( 0.0, EPS, 0.0 ) ) - sceneDist(p + vec3( 0.0, -EPS, 0.0 ) ), sceneDist(p + vec3( 0.0, 0.0, EPS ) ) - sceneDist(p + vec3( 0.0, 0.0, -EPS ) ) )); } float getShadow( vec3 ro, vec3 rd ) { float h = 0.0; float c = 0.0; float r = 1.0; float shadowCoef = 0.5; for ( float t = 0.0; t < 50.0; t++ ) { h = sceneDist( ro + rd * c ); if ( h < EPS ) return shadowCoef; r = min( r, h * 16.0 / c ); c += h; } return 1.0 - shadowCoef + r * shadowCoef; } vec3 getRayColor( vec3 origin, vec3 ray, out vec3 pos, out vec3 normal, out bool hit ) { // marching loop float dist; float depth = 0.0; pos = origin; for ( int i = 0; i < 64; i++ ){ dist = sceneDist( pos ); depth += dist; pos = origin + depth * ray; if ( abs(dist) < EPS ) break; } // hit check and calc color vec3 color; if ( abs(dist) < EPS ) { normal = getNormal( pos ); float diffuse = clamp( dot( lightDir, normal ), 0.1, 1.0 ); float specular = pow( clamp( dot( reflect( lightDir, normal ), ray ), 0.0, 1.0 ), 10.0 ); float shadow = getShadow( pos + normal * OFFSET, lightDir ); color = ( sceneColor( pos ).rgb * diffuse + vec3( 0.8 ) * specular ) * max( 0.5, shadow ); hit = true; } else { color = vec3( 0.0 ); } return color - pow( clamp( 0.05 * depth, 0.0, 0.6 ), 2.0 ); } void main(void) { // screen position vec2 screenPos = ( gl_FragCoord.xy * 2.0 - resolution ) / resolution; // ray direction in normalized device coordinate vec4 ndcRay = vec4( screenPos.xy, 1.0, 1.0 ); // convert ray direction from normalized device coordinate to world coordinate vec3 ray = ( cameraWorldMatrix * cameraProjectionMatrixInverse * ndcRay ).xyz; ray = normalize( ray ); // camera position vec3 cPos = cameraPosition; // cast ray vec3 color = vec3( 0.0 ); vec3 pos, normal; bool hit; float alpha = 1.0; for ( int i = 0; i < 3; i++ ) { color += alpha * getRayColor( cPos, ray, pos, normal, hit ); alpha *= 0.3; ray = normalize( reflect( ray, normal ) ); cPos = pos + normal * OFFSET; if ( !hit ) break; } gl_FragColor = vec4( color, 1.0 ); } </script> <script id="vertex_shader" type="x-shader/x-vertex"> attribute vec3 position; void main(void) { gl_Position = vec4(position, 1.0); } </script> <script src="../build/three.js"></script> <script src="js/controls/OrbitControls.js"></script> <script src="js/libs/stats.min.js"></script> <script src="js/libs/dat.gui.min.js"></script> <script> var dolly, camera, scene, renderer; var geometry, material, mesh; var stats; var config = { saveImage: function () { renderer.render( scene, camera ); window.open( canvas.toDataURL() ); }, resolution: '512' }; init(); render(); function init() { renderer = new THREE.WebGLRenderer( { canvas: canvas } ); renderer.setPixelRatio( window.devicePixelRatio ); renderer.setSize( config.resolution, config.resolution ); window.addEventListener( 'resize', onWindowResize ); // Scene scene = new THREE.Scene(); dolly = new THREE.Group(); scene.add( dolly ); camera = new THREE.PerspectiveCamera( 60, canvas.width / canvas.height, 1, 2000 ); camera.position.z = 4; dolly.add( camera ); geometry = new THREE.PlaneBufferGeometry( 2.0, 2.0 ); material = new THREE.RawShaderMaterial( { uniforms: { resolution: { value: new THREE.Vector2( canvas.width, canvas.height ) }, cameraWorldMatrix: { value: camera.matrixWorld }, cameraProjectionMatrixInverse: { value: new THREE.Matrix4().getInverse( camera.projectionMatrix ) } }, vertexShader: document.getElementById( 'vertex_shader' ).textContent, fragmentShader: document.getElementById( 'fragment_shader' ).textContent } ); mesh = new THREE.Mesh( geometry, material ); mesh.frustumCulled = false; scene.add( mesh ); // Controls var controls = new THREE.OrbitControls( camera, canvas ); // GUI var gui = new dat.GUI(); gui.add( config, 'saveImage' ).name( 'Save Image' ); gui.add( config, 'resolution', [ '256', '512', '800', 'full' ] ).name( 'Resolution' ).onChange( onWindowResize ); stats = new Stats(); document.body.appendChild( stats.dom ); } function onWindowResize() { if ( config.resolution === 'full' ) { renderer.setSize( window.innerWidth, window.innerHeight ); } else { renderer.setSize( config.resolution, config.resolution ); } camera.aspect = canvas.width / canvas.height; camera.updateProjectionMatrix(); material.uniforms.resolution.value.set( canvas.width, canvas.height ); material.uniforms.cameraProjectionMatrixInverse.value.getInverse( camera.projectionMatrix ); } function render( time ) { stats.begin(); dolly.position.z = - time / 1000; renderer.render( scene, camera ); stats.end(); requestAnimationFrame( render ); } </script> </body> </html>
javadoc/bytecode/NEG.html
DinuBerinde/Kitten
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_40) on Sun Mar 22 14:53:03 CET 2015 --> <title>NEG</title> <meta name="date" content="2015-03-22"> <link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style"> <script type="text/javascript" src="../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="NEG"; } } catch(err) { } //--> var methods = {"i0":10,"i1":10,"i2":10}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/NEG.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../deprecated-list.html">Deprecated</a></li> <li><a href="../index-files/index-1.html">Index</a></li> <li><a href="../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../bytecode/NE.html" title="class in bytecode"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../bytecode/NEW.html" title="class in bytecode"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../index.html?bytecode/NEG.html" target="_top">Frames</a></li> <li><a href="NEG.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">bytecode</div> <h2 title="Class NEG" class="title">Class NEG</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li><a href="../bytecode/Bytecode.html" title="class in bytecode">bytecode.Bytecode</a></li> <li> <ul class="inheritance"> <li><a href="../bytecode/NonBranchingBytecode.html" title="class in bytecode">bytecode.NonBranchingBytecode</a></li> <li> <ul class="inheritance"> <li><a href="../bytecode/SequentialBytecode.html" title="class in bytecode">bytecode.SequentialBytecode</a></li> <li> <ul class="inheritance"> <li><a href="../bytecode/NonCallingSequentialBytecode.html" title="class in bytecode">bytecode.NonCallingSequentialBytecode</a></li> <li> <ul class="inheritance"> <li>bytecode.NEG</li> </ul> </li> </ul> </li> </ul> </li> </ul> </li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Implemented Interfaces:</dt> <dd><a href="../bytecode/NonCallingBytecode.html" title="interface in bytecode">NonCallingBytecode</a></dd> </dl> <hr> <br> <pre>public class <span class="typeNameLabel">NEG</span> extends <a href="../bytecode/NonCallingSequentialBytecode.html" title="class in bytecode">NonCallingSequentialBytecode</a></pre> <div class="block">A bytecode that negates the top element of the stack. It works on numerical values as well as on Boolean values. <br><br> ..., value -&gt; ..., negation of value</div> <dl> <dt><span class="simpleTagLabel">Author:</span></dt> <dd><A HREF="mailto:fausto.spoto@univr.it">Fausto Spoto</A></dd> </dl> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../bytecode/NEG.html#NEG-types.BooleanType-">NEG</a></span>(<a href="../types/BooleanType.html" title="class in types">BooleanType</a>&nbsp;type)</code> <div class="block">Constructs a bytecode that negates the Boolean top element of the stack</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../bytecode/NEG.html#NEG-types.NumericalType-">NEG</a></span>(<a href="../types/NumericalType.html" title="class in types">NumericalType</a>&nbsp;type)</code> <div class="block">Constructs a bytecode that negates the numerical top element of the stack.</div> </td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>org.apache.bcel.generic.InstructionList</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../bytecode/NEG.html#generateJavaBytecode-javaBytecodeGenerator.JavaClassGenerator-">generateJavaBytecode</a></span>(<a href="../javaBytecodeGenerator/JavaClassGenerator.html" title="class in javaBytecodeGenerator">JavaClassGenerator</a>&nbsp;classGen)</code> <div class="block">Generates the Java bytecode corresponding to this Kitten bytecode.</div> </td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code><a href="../types/Type.html" title="class in types">Type</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../bytecode/NEG.html#getType--">getType</a></span>()</code> <div class="block">Yields the type of the value that is negated by this bytecode.</div> </td> </tr> <tr id="i2" class="altColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../bytecode/NEG.html#toString--">toString</a></span>()</code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.bytecode.SequentialBytecode"> <!-- --> </a> <h3>Methods inherited from class&nbsp;bytecode.<a href="../bytecode/SequentialBytecode.html" title="class in bytecode">SequentialBytecode</a></h3> <code><a href="../bytecode/SequentialBytecode.html#followedBy-translation.Block-">followedBy</a></code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>equals, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="NEG-types.BooleanType-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>NEG</h4> <pre>public&nbsp;NEG(<a href="../types/BooleanType.html" title="class in types">BooleanType</a>&nbsp;type)</pre> <div class="block">Constructs a bytecode that negates the Boolean top element of the stack</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>type</code> - the Boolean type</dd> </dl> </li> </ul> <a name="NEG-types.NumericalType-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>NEG</h4> <pre>public&nbsp;NEG(<a href="../types/NumericalType.html" title="class in types">NumericalType</a>&nbsp;type)</pre> <div class="block">Constructs a bytecode that negates the numerical top element of the stack.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>type</code> - the type of the numerical constant that is negated</dd> </dl> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="getType--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getType</h4> <pre>public&nbsp;<a href="../types/Type.html" title="class in types">Type</a>&nbsp;getType()</pre> <div class="block">Yields the type of the value that is negated by this bytecode. This is either the Boolean type or a numerical type.</div> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>the type of the value that is negated by this bytecode</dd> </dl> </li> </ul> <a name="toString--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>toString</h4> <pre>public&nbsp;java.lang.String&nbsp;toString()</pre> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code><a href="../bytecode/Bytecode.html#toString--">toString</a></code>&nbsp;in class&nbsp;<code><a href="../bytecode/Bytecode.html" title="class in bytecode">Bytecode</a></code></dd> </dl> </li> </ul> <a name="generateJavaBytecode-javaBytecodeGenerator.JavaClassGenerator-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>generateJavaBytecode</h4> <pre>public&nbsp;org.apache.bcel.generic.InstructionList&nbsp;generateJavaBytecode(<a href="../javaBytecodeGenerator/JavaClassGenerator.html" title="class in javaBytecodeGenerator">JavaClassGenerator</a>&nbsp;classGen)</pre> <div class="block">Generates the Java bytecode corresponding to this Kitten bytecode. Namely, it generates an <code>ineg</code> Java bytecode if <a href="../bytecode/NEG.html#type"><code>type</code></a> is <code>int</code>, an <code>fneg</code> Java bytecode if <a href="../bytecode/NEG.html#type"><code>type</code></a> is <code>float</code> and the code <br> <code>ifeq</code> <i>after</i><br> <code>iconst 0</code><br> <code>goto</code> <i>end</i><br> <i>after:</i> <code>iconst 1</code><br> <i>end:</i> <code>nop</code> <br> if <a href="../bytecode/NEG.html#type"><code>type</code></a> is <code>boolean</code>, since in the Java bytecode the integer constant <i>0</i> is used for <i>false</i> and <i>1</i> is used for <i>true</i>.</div> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../bytecode/NonBranchingBytecode.html#generateJavaBytecode-javaBytecodeGenerator.JavaClassGenerator-">generateJavaBytecode</a></code>&nbsp;in class&nbsp;<code><a href="../bytecode/NonBranchingBytecode.html" title="class in bytecode">NonBranchingBytecode</a></code></dd> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>classGen</code> - the Java class generator to be used for this generation</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>the Java <code>ineg</code> or similar bytecode, if <a href="../bytecode/NEG.html#type"><code>type</code></a> is the corresponding numerical type, or the sequence seen above if <a href="../bytecode/NEG.html#type"><code>type</code></a> is <code>boolean</code></dd> </dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/NEG.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../deprecated-list.html">Deprecated</a></li> <li><a href="../index-files/index-1.html">Index</a></li> <li><a href="../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../bytecode/NE.html" title="class in bytecode"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../bytecode/NEW.html" title="class in bytecode"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../index.html?bytecode/NEG.html" target="_top">Frames</a></li> <li><a href="NEG.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
wordlist/fuzzdb/docs/misc/html-element-index/css/index.html
GHubgenius/wfuzz-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>Index DOT Css: Index Page</title> <meta name="description" content="Index DOT Css is a complete reference to Css: The properties, the syntax, the history, and the browsers. If you need to know something about CSS, this is where you will find the answers."> <meta name="keywords" content="css, css1, css2, style, style sheet, stylesheet, cascading style sheets, browser history, browsers, Internet Explorer, Mosaic, Mozilla, Netscape, Opera, design, site creation, site design, layout, reference, tags, html, xhtml, authoring, html history, wilbur, cougar, html 2.0, html 3.2, html 4.0, xhtml 1.0, xhtml 1.1, hypertext markup language, hypertext, resource, material, help, frequently asked questions, FAQ, examples, tips, charts, compatibility, web standards, web development, dhtml, script, frames, tables, positioning, layers"> <link rel="stylesheet" type="text/css" href="../ss/2.css" id="thecss"> <script type="text/javascript" src="../scripts/csschange.js"></script> <script type="text/javascript" src="../scripts/search.js"></script> <script type="text/javascript"> function preload() { if (document.images) { img1=new Image(); img1.src="../images/plushi.gif"; img2=new Image(); img2.src="../images/minushi.gif"; } } function swapIt(imgName,loc) { if (document.images) { eval ("document.images[imgName].src = '../images/" + loc + ".gif'"); } return true; } </script> </HEAD> <BODY onload="readSS();preload();setSearchRoot();"> <map name="tab"> <area shape="rect" coords="16,4,137,27" href="../html/index.html" alt="[link to Index DOT Html]" title="[link to Index DOT Html]"> </map> <map name="navbar"> <area shape="rect" coords="0,0,142,52" href="../setcss.htm" title="Change the stylesheet for the site"> <area shape="rect" coords="143,0,260,52" href="../misc/donate.htm" title="Donate: Support the site"> <area shape="rect" coords="261,0,350,52" href="../misc/discuss.htm" title="Chat/Discussion forums"> </map> <form method="GET" action="http://www.google.com/custom"> <div align="center"> <table cellpadding=0 cellspacing=0 class="ltop"> <tr> <th>&#160;&#160;&#160;&#160;&#160;&#160;</th> <th nowrap><div class="indexsitetitle"><big>Index&#160;&#160;D O T&#160;&#160;Css</big></div> <div class="reallysmall">T h e&#160;&#160;A d v a n c e d&#160;&#160;C S S&#160;&#160;R e f e r e n c e</div></th> <th class="ltdvdr">&#160;&#160;&#160;&#160;</th> <th rowspan=2> <table cellpadding=0 cellspacing=0 width="350"> <tr><td colspan=2 bgcolor="#cccccc"><img src="../images/toolbartop.jpg" height="52" width="350" usemap="#navbar" border=0></td></tr> <tr><td bgcolor="#cccccc"><input type=image src="../images/toolbarbl.jpg" height="48" width="150" border=0 title="[Search now]"></a></td> <td bgcolor="#cccccc" align=left><input type=text name=q size=18 maxlength=255 class="srchbox"> <input type=hidden name=domains value="www.blooberry.com"> <input type=hidden name="sitesearch" value="www.blooberry.com"></td></tr> </table></th> </tr> <tr> <th>&#160;&#160;&#160;&#160;</th> <th class="lbot">By <a href="../misc/email.htm">Brian Wilson</a> Last Update: Oct. 1 2003</th> <td class="lbdvdr">&nbsp;</td> </tr> </table> </div> <br><br> <div align="center"> <table cellpadding=0 cellspacing=0 border=0> <tr> <td align=left valign=bottom><img src="../images/csstab.gif" width="335" height="28" border=0 usemap="#tab"></td> <td rowspan=2>&#160;&#160;</td> <td>&#160;</td> </tr> <tr> <td valign=top> <table class="mainbox" cellspacing=0><tr><td> <table border=0 cellspacing=0> <tr> <th align=left valign=bottom class="field" nowrap>&#160;<big><u class="colheaders"><b>CSS&#160;Language</b></u></big>&#160;</th> <td rowspan=2>&#160;&#160;</td> <th align=left valign=bottom class="field" nowrap>&#160;<big><u class="colheaders"><b>Historical&#160;Information</b></u></big>&#160;</th> </tr> <tr> <td valign=top nowrap> &#160;<a href="index2.htm" onmouseover="swapIt('p1','plushi');" onmouseout="swapIt('p1','plus');"><img src="../images/plus.gif" name="p1" width="20" height="20" align="top" border=0 alt="[expand]"></a> <b class="subheading"><a href="propindex/font.htm">Property&#160;Index</a></b><br> &#160;<a href="index10.htm" onmouseover="swapIt('p15','plushi');" onmouseout="swapIt('p15','plus');"><img src="../images/plus.gif" name="p15" width="20" height="20" align="top" border=0 alt="[expand]"></a> <b class="subheading"><a href="syntax/selectors/selectors.htm">Selectors</a></b><br> &#160;<a href="index3.htm" onmouseover="swapIt('p2','plushi');" onmouseout="swapIt('p2','plus');"><img src="../images/plus.gif" name="p2" width="20" height="20" align="top" border=0 alt="[expand]"></a> <b class="subheading"><a href="syntax/syntax.htm">CSS&#160;Syntax</a></b><br> &#160;<a href="index4.htm" onmouseover="swapIt('p3','plushi');" onmouseout="swapIt('p3','plus');"><img src="../images/plus.gif" name="p3" width="20" height="20" align="top" border=0 alt="[expand]"></a> <b class="subheading"><a href="index4.htm">CSS&#160;Topics</a></b><br></td> <td valign=top nowrap> &#160;<a href="index5.htm" onmouseover="swapIt('p4','plushi');" onmouseout="swapIt('p4','plus');"><img src="../images/plus.gif" name="p4" width="20" height="20" align="top" border=0 alt="[expand]"></a> <b class="subheading"><a href="supportkey/syntax.htm">CSS&#160;Support&#160;History</a></b><br> &#160;<a href="index6.htm" onmouseover="swapIt('p5','plushi');" onmouseout="swapIt('p5','plus');"><img src="../images/plus.gif" name="p5" width="20" height="20" align="top" border=0 alt="[expand]"></a>&#160;<b class="subheading"><a href="../history/css.htm">CSS&#160;Spec&#160;History</a></b><br> &#160;<a href="index7.htm" onmouseover="swapIt('p6','plushi');" onmouseout="swapIt('p6','plus');"><img src="../images/plus.gif" name="p6" width="20" height="20" align="top" border=0 alt="[expand]"></a> <b class="subheading"><a href="../history/browsers.htm">Browser&#160;History</a></b><br></td> </tr> <tr><td colspan=3><hr size=1 width="85%"></td></tr> <tr> <th align=left valign=bottom class="field" nowrap>&#160;<big><u class="colheaders"><b>Site&#160;Information</b></u></big>&#160;</th> <td rowspan=2>&#160;&#160;</td> <th align=left valign=bottom class="field" nowrap>&#160;<big><u class="colheaders"><b>General&#160;Information</b></u></big>&#160;<br></th> </tr> <tr> <td valign=top nowrap><small class="smalltext"> &#160;<a href="index9.htm" onmouseover="swapIt('p8','plushi');" onmouseout="swapIt('p8','plus');"><img src="../images/plus.gif" name="p8" align="top" border=0 alt="[expand]"></a>&#160;<a href="index9.htm">More&#160;About&#160;The&#160;Site...</a><br> &#160;&#160;&#160;&#183;&#160;&#160;&#160;<a href="../misc/downloads.htm">Downloads</a>&#160;|&#160;<a href="../misc/mirrors.htm">Mirrors</a><br></small></td> <td valign=top nowrap><small class="smalltext"> &#160;&#160;&#160;&#183;&#160;&#160;&#160;<a href="topics/related.htm">Related CSS Links</a><br> &#160;&#160;&#160;&#183;&#160;&#160;&#160;<a href="topics/stylefaq.htm">CSS FAQ</a><br> &#160;&#160;&#160;&#183;&#160;&#160;&#160;<a href="examples/examples.htm">CSS Examples</a><br> &#160;&#160;&#160;&#183;&#160;&#160;&#160;<a href="syntax/generalbugs.htm">General CSS Bugs</a><br></small></td> </tr> </table> </td></tr> </table></td> <td rowspan=2 valign=top align=left> <table border=0 cellspacing=1 cellpadding="3" class="sidebarbox"> <tr><th class="field"><big><b class="colheaders">What's New</b></big> <span class="sidebar">[<a href="../misc/new.htm">more...</a>]</span></th></tr> <tr> <td><table cellpadding="0" cellspacing="0"> <tr><td colspan="3" class="sidebar"><b class=alert2>Latest Browsers:</b></td></tr> <tr><td class="sidebar"><b>&#160;&#160;&#183;&#160;Firefox:</b></td><td class="sidebar">&nbsp;1.0.4</td><td class="sidebar">&nbsp;[May '05]</td></tr> <tr><td class="sidebar"><b>&#160;&#160;&#183;&#160;IE:</b></td><td class="sidebar">&nbsp;6SP1</td><td class="sidebar">&nbsp;[Sep '02]</td></tr> <tr><td class="sidebar"><b>&#160;&#160;&#183;&#160;Mozilla:</b></td><td class="sidebar">&nbsp;1.7.8</td><td class="sidebar">&nbsp;[May '05]</td></tr> <tr><td class="sidebar"><b>&#160;&#160;&#183;&#160;Opera:</b></td><td class="sidebar">&nbsp;8.01</td><td class="sidebar">&nbsp;[Jun '05]</td></tr> <tr><td class="sidebar"><b>&#160;&#160;&#183;&#160;Safari:</b></td><td class="sidebar">&nbsp;2.0</td><td class="sidebar">&nbsp;[Apr '05]</td></tr> </table> <hr> <span class="sidebar"><b class="alert2">Major Updates:</b><br> &#160;&#183;&#160;All HTML/CSS support grids updated<br> &#160;&#183;&#160;All browser/standards histories updated<br> &#160;&#183;&#160;Added/fixed/clarified 100's of issues<br>&#160;&#160;&#160;from reader emails <!--#include virtual="../othernews.txt" --> </span> </td> </tr> </table> </td> </tr> </table> </div> </form> <br><br> </BODY> </HTML>
web_client/ea_web-github/addons/web_calendar/static/lib/dhtmlxScheduler/samples/06_timeline/01_slots.html
odoousers2014/LibrERP
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8"> <title>For demo purpose only :: &1</title> </head> <script src='../../codebase/dhtmlxscheduler.js' type="text/javascript" charset="utf-8"></script> <script src='../../codebase/ext/dhtmlxscheduler_timeline.js' type="text/javascript" charset="utf-8"></script> <link rel='stylesheet' type='text/css' href='../../codebase/dhtmlxscheduler.css'> <style type="text/css" media="screen"> html, body{ margin:0px; padding:0px; height:100%; overflow:hidden; } .white_cell{ background-color:white; } .green_cell{ background-color:#95FF95; } .yellow_cell{ background-color:#FFFF79; } .red_cell{ background-color:#FF5353; } </style> <script type="text/javascript" charset="utf-8"> function init() { scheduler.locale.labels.matrix_tab = "Matrix" scheduler.locale.labels.section_custom="Section"; scheduler.config.details_on_create=true; scheduler.config.details_on_dblclick=true; scheduler.config.xml_date="%Y-%m-%d %H:%i"; scheduler.config.multi_day = true; brief_mode = true; //=============== //Configuration //=============== var sections=[ {key:1, label:"Section A"}, {key:2, label:"Section B"}, {key:3, label:"Section C"}, {key:4, label:"Section D"} ]; scheduler.createTimelineView({ name: "matrix", x_unit: "day", x_date: "%d %M", x_step: 1, x_size: 15, y_unit: sections, y_property: "section_id" }); //=============== //Customization //=============== scheduler.templates.matrix_cell_class = function(evs,x,y){ if (!evs) { var day = x.getDay(); return (day==0 || day == 6) ? "yellow_cell" : "white_cell"; } if (evs.length<3) return "green_cell"; if (evs.length<5) return "yellow_cell"; return "red_cell"; }; scheduler.templates.matrix_scalex_class = function(date){ if (date.getDay()==0 || date.getDay()==6) return "yellow_cell"; return ""; } //=============== //Data loading //=============== scheduler.config.lightbox.sections=[ {name:"description", height:130, map_to:"text", type:"textarea" , focus:true}, {name:"custom", height:23, type:"select", options:sections, map_to:"section_id" }, {name:"time", height:72, type:"time", map_to:"auto"} ] scheduler.init('scheduler_here',new Date(2009,5,30),"matrix"); scheduler.load("../common/units.xml"); } </script> <body onload="init();"> <div id="scheduler_here" class="dhx_cal_container" style='width:100%; height:100%;'> <div class="dhx_cal_navline"> <div class="dhx_cal_prev_button">&nbsp;</div> <div class="dhx_cal_next_button">&nbsp;</div> <div class="dhx_cal_today_button"></div> <div class="dhx_cal_date"></div> <div class="dhx_cal_tab" name="day_tab" style="right:204px;"></div> <div class="dhx_cal_tab" name="week_tab" style="right:140px;"></div> <div class="dhx_cal_tab" name="matrix_tab" style="right:280px;"></div> <div class="dhx_cal_tab" name="month_tab" style="right:76px;"></div> </div> <div class="dhx_cal_header"> </div> <div class="dhx_cal_data"> </div> </div> </body>
app/product/productSearch.html
arnessa1015/AngularJSClass
<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <title>Products</title> <script src="/app/node_modules/jquery/dist/jquery.min.js"></script> <script src="/app/node_modules/bootstrap/dist/js/bootstrap.min.js"></script> <link rel="stylesheet" href="/app/node_modules/bootstrap/dist/css/bootstrap.min.css"/> <link rel="stylesheet" href="/assets/css/site.css"/> </head> <body class="container"> <div> <nav class="navbar navbar-default navbar-fixed-top"> <button class="navbar-toggle collapsed" data-toggle="collapse" data-target="#topNavbar"> <span class="glyphicon glyphicon-menu-hamburger"></span></button> <div id="topNavbar" class="navbar-collapse collapse"> <ul class="nav navbar-nav"> <li><a href="/app/index.html">Northwind Traders</a></li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Things to do <span class="caret"></span></a> <ul class="dropdown-menu"> <li><a href="/app/product/productSearch.html"><span class="glyphicon glyphicon-search"></span> Search</a></li> <li><a href="aboutUs.html" data-toggle="tooltip" data-placement="right" title="Coming soon!"><span class="glyphicon glyphicon-info-sign"></span> About us</a></li> <li><a href="contactUs.html" data-toggle="tooltip" data-placement="right" title="Coming soon!"><span class="glyphicon glyphicon-envelope"></span> Contact us</a></li> <li><a href="/app/product/productList.html"><span class="glyphicon glyphicon-list-alt"></span> Catalog</a></li> </ul> </li> <li><a href="/checkout"><span class="glyphicon glyphicon-shopping-cart"></span> Your cart <span class="badge">0</span></a></li> </ul> <p class="navbar-text">Welcome! <a href="/login">Log in</a></p> <form action="/search" method="GET" class="navbar-form navbar-left"> <input type="search" name="searchString" id="searchString" title="Enter a product description" placeholder="Search" class="form-control"> <button class="btn"><span class="glyphicon glyphicon-search"></span></button> </form> </div> </nav> <header class="jumbotron img-rounded row"> <img class="img-responsive col-sm-3" src="/assets/img/ChefHatLogo.png" alt="Northwind logo"> <h1 class="col-sm-9">Northwind Traders <small>Fine foods for restaurants</small> </h1> </header> </div> <main class="row"> <h1>Search for products</h1> <div id="searchedTerm" class="text-primary bg-primary">You're searching for 'cho'</div> <span> Enter all or part of the description: </span> <input name="search" type="text" id="search"> <button id="go" class="btn btn-primary">Search</button> <span> Category: </span> <select name="category" id="category"> <option>All categories</option> <option>Condiments</option> <option>Dairy Products</option> <option>Beverages</option> <option>Grains/Cereals</option> <option>Confections</option> <option selected>Meat/Poultry</option> <option>Produce</option> <option>Seafood</option> </select> <div class="table"> <div class="row hidden-xs"> <div class="col-sm-2">Photo</div> <div class="col-sm-5">Name</div> <div class="col-sm-3">Quantity Per Unit</div> <div class="col-sm-2">Price</div> </div> <div class="row"> <div class="col-sm-2"><a href="/app/product/productDetail.html"><img class="img-responsive" src="/assets/img/ProductImages/19.jpg"></a></div> <div class="col-sm-5"><a href="/app/product/productDetail.html">Teatime Chocolate Biscuits</a></div> <div class="col-sm-3">10 boxes x 12 pieces</div> <div class="col-sm-2">US$9.20</div> </div> <div class="row"> <div class="col-sm-2"><a href="/app/product/productDetail.html"><img class="img-responsive" src="/assets/img/ProductImages/27.jpg"></a></div> <div class="col-sm-5"><a href="/app/product/productDetail.html">Schoggi Schokolade</a></div> <div class="col-sm-3">100 - 100 g pieces</div> <div class="col-sm-2">US$43.90</div> </div> <div class="row"> <div class="col-sm-2"><a href="/app/product/productDetail.html"><img class="img-responsive" src="/assets/img/ProductImages/41.jpg"></a></div> <div class="col-sm-5"><a href="/app/product/productDetail.html">Jack's New England Clam Chowder <span class="label label-success">Featured</span></a></div> <div class="col-sm-3">12 - 12 oz cans</div> <div class="col-sm-2">US$9.65</div> </div> <div class="row"> <div class="col-sm-2"><a href="/app/product/productDetail.html"><img class="img-responsive" src="/assets/img/ProductImages/48.jpg"></a></div> <div class="col-sm-5"><a href="/app/product/productDetail.html">Chocolade</a></div> <div class="col-sm-3">10 pkgs.</div> <div class="col-sm-2">US$12.75</div> </div> <div class="row"> <div class="text-success bg-success">4 products found.</div> </div> </div> </main> <footer class="row"> <span>Copyright © Northwind Traders</span> <ul class="list-unstyled list-inline text-center"> <li><a href="https://www.facebook.com/pages/Northwind-Traders/101856779971208">Facebook</a></li> <li><a href="https://twitter.com/NWTNews">Twitter</a></li> <li><a href="https://www.linkedin.com/company/northwind-ventures-dba-northwind-technologies-?trk=company_logo">LinkedIn</a> </li> </ul> </footer> </body> </html>
tests/wpt/web-platform-tests/conformance-checkers/html/elements/picture/srcset-microsyntax-unique-descriptors-integer-and-decimals-x-novalid.html
UK992/servo
<!DOCTYPE html> <!-- DO NOT EDIT! This test has been generated by /conformance-checkers/tools/picture.py. --> <meta charset=utf-8> <title>invalid srcset-microsyntax-unique-descriptors-integer-and-decimals-x</title> <img srcset='x 1x, y 1.0x' src=x alt>
doc/com/intel/hadoop/graphbuilder/idnormalize/mapreduce/class-use/SortDictMR.html
jy4618272/graphbuilder
<!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 Thu Nov 08 03:57:19 PST 2012 --> <TITLE> Uses of Class com.intel.hadoop.graphbuilder.idnormalize.mapreduce.SortDictMR </TITLE> <META NAME="date" CONTENT="2012-11-08"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class com.intel.hadoop.graphbuilder.idnormalize.mapreduce.SortDictMR"; } } </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"> <A HREF="../../../../../../../com/intel/hadoop/graphbuilder/idnormalize/mapreduce/SortDictMR.html" title="class in com.intel.hadoop.graphbuilder.idnormalize.mapreduce"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&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?com/intel/hadoop/graphbuilder/idnormalize/mapreduce//class-useSortDictMR.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="SortDictMR.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 Class<br>com.intel.hadoop.graphbuilder.idnormalize.mapreduce.SortDictMR</B></H2> </CENTER> No usage of com.intel.hadoop.graphbuilder.idnormalize.mapreduce.SortDictMR <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"> <A HREF="../../../../../../../com/intel/hadoop/graphbuilder/idnormalize/mapreduce/SortDictMR.html" title="class in com.intel.hadoop.graphbuilder.idnormalize.mapreduce"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&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?com/intel/hadoop/graphbuilder/idnormalize/mapreduce//class-useSortDictMR.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="SortDictMR.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>
org/examples/canvas_lights_pointlights.html
camellhf/three.js.sourcecode
<!DOCTYPE html> <html lang="en"> <head> <title>three.js canvas - point light</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> <style> body { background-color: #000000; margin: 0px; overflow: hidden; } #info { position: absolute; top: 0px; width: 100%; color: #ffffff; padding: 5px; font-family: Monospace; font-size: 13px; text-align: center; } a { color: #ff0080; text-decoration: none; } a:hover { color: #0080ff; } </style> </head> <body> <div id="container"></div> <div id="info"> <a href="http://threejs.org" target="_blank">three.js</a> - point lights demo.<br /> Walt Disney head by <a href="http://davidoreilly.com/post/18087489343/disneyhead" target="_blank">David OReilly</a> </div> <script src="../build/three.min.js"></script> <script> var camera, scene, renderer, light1, light2, light3, loader, mesh; init(); animate(); function init() { var container = document.getElementById( 'container' ); camera = new THREE.PerspectiveCamera( 60, window.innerWidth / window.innerHeight, 1, 1000 ); camera.position.set( 0, - 6, 100 ); scene = new THREE.Scene(); scene.add( new THREE.AmbientLight( 0x00020 ) ); light1 = new THREE.PointLight( 0xff0040, 1, 50 ); scene.add( light1 ); light2 = new THREE.PointLight( 0x0040ff, 1, 50 ); scene.add( light2 ); light3 = new THREE.PointLight( 0x80ff80, 1, 50 ); scene.add( light3 ); var PI2 = Math.PI * 2; var program = function ( context ) { context.beginPath(); context.arc( 0, 0, 0.5, 0, PI2, true ); context.fill(); } var sprite = new THREE.Sprite( new THREE.SpriteCanvasMaterial( { color: 0xff0040, program: program } ) ); light1.add( sprite ); var sprite = new THREE.Sprite( new THREE.SpriteCanvasMaterial( { color: 0x0040ff, program: program } ) ); light2.add( sprite ); var sprite = new THREE.Sprite( new THREE.SpriteCanvasMaterial( { color: 0x80ff80, program: program } ) ); light3.add( sprite ); loader = new THREE.JSONLoader(); loader.load( 'obj/WaltHeadLo.js', function ( geometry ) { mesh = new THREE.Mesh( geometry, new THREE.MeshLambertMaterial( { color: 0xffffff, shading: THREE.FlatShading, overdraw: 0.5 } ) ); scene.add( mesh ); } ); renderer = new THREE.CanvasRenderer(); renderer.setSize( window.innerWidth, window.innerHeight ); container.appendChild( renderer.domElement ); // window.addEventListener( 'resize', onWindowResize, false ); } function onWindowResize() { camera.aspect = window.innerWidth / window.innerHeight; camera.updateProjectionMatrix(); renderer.setSize( window.innerWidth, window.innerHeight ); } // function animate() { requestAnimationFrame( animate ); render(); } function render() { var time = Date.now() * 0.0005; if ( mesh ) mesh.rotation.y -= 0.01; light1.position.x = Math.sin( time * 0.7 ) * 30; light1.position.y = Math.cos( time * 0.5 ) * 40; light1.position.z = Math.cos( time * 0.3 ) * 30; light2.position.x = Math.cos( time * 0.3 ) * 30; light2.position.y = Math.sin( time * 0.5 ) * 40; light2.position.z = Math.sin( time * 0.7 ) * 30; light3.position.x = Math.sin( time * 0.7 ) * 30; light3.position.y = Math.cos( time * 0.3 ) * 40; light3.position.z = Math.sin( time * 0.5 ) * 30; renderer.render( scene, camera ); } </script> </body> </html>
third_party/blink/web_tests/external/wpt/scroll-animations/css/at-scroll-timeline-element-offsets.html
scheib/chromium
<!DOCTYPE html> <title>@scroll-timeline: Element-based offsets</title> <link rel="help" src="https://drafts.csswg.org/scroll-animations-1/#scroll-timeline-at-rule"> <link rel="help" src="https://drafts.csswg.org/scroll-animations-1/#element-based-offset-section"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/web-animations/testcommon.js"></script> <style> #scroller { overflow: scroll; width: 100px; height: 100px; } .filler { height: 150px; background-color: darkgray; } .offset { height: 50px; background-color: green; } @keyframes expand { from { width: 100px; } to { width: 200px; } } @scroll-timeline timeline_start_start { source: selector(#scroller); start: selector(#offset1); end: selector(#offset2); } @scroll-timeline timeline_end_end { source: selector(#scroller); start: selector(#offset1) end; end: selector(#offset2) end; } @scroll-timeline timeline_end_start { source: selector(#scroller); start: selector(#offset1) end; end: selector(#offset2) start; } @scroll-timeline timeline_end_1_end { source: selector(#scroller); start: selector(#offset1) end 1; end: selector(#offset2) end; } @scroll-timeline timeline_end_start_05 { source: selector(#scroller); start: selector(#offset1) end; end: selector(#offset2) 0.5; } @scroll-timeline timeline_start_400px { source: selector(#scroller); start: selector(#offset1); end: 400px; } @scroll-timeline timeline_50px_end { source: selector(#scroller); start: 50px; end: selector(#offset2) end; } @scroll-timeline timeline_outside { source: selector(#scroller); start: selector(#offset_outside); end: auto; } @scroll-timeline timeline_display_none { source: selector(#scroller); start: selector(#offset_display_none); end: auto; } @scroll-timeline timeline_null_target { source: selector(#scroller); start: selector(#no_such_id); end: selector(#no_such_id); } #container > div { width: 0px; animation-name: expand; animation-duration: 10s; animation-timing-function: linear; } /* Ensure stable expectations if feature is not supported */ @supports not (animation-timeline:foo) { #container > div { animation-play-state: paused; } } #element_start_start { animation-timeline: timeline_start_start; } #element_end_end { animation-timeline: timeline_end_end; } #element_end_start { animation-timeline: timeline_end_start; } #element_end_1_end { animation-timeline: timeline_end_1_end; } #element_end_start_05 { animation-timeline: timeline_end_start_05; } #element_start_400px { animation-timeline: timeline_start_400px; } #element_50px_end { animation-timeline: timeline_50px_end; } #element_outside { animation-timeline: timeline_outside; } #element_display_none { animation-timeline: timeline_display_none; } #element_null_target { animation-timeline: timeline_null_target; } </style> <div id=scroller> <div id=contents> <div class=filler></div> <div class=offset id=offset1></div> <div class=filler></div> <div class=offset id=offset2></div> <div class=filler></div> </div> </div> <div id=offset_outside></div> <div id=offset_display_none style="display:none"></div> <div id=container> <div id=element_start_start></div> <div id=element_end_end></div> <div id=element_end_start></div> <div id=element_end_1_end></div> <div id=element_end_start_05></div> <div id=element_start_400px></div> <div id=element_50px_end></div> <div id=element_outside></div> <div id=element_display_none></div> <div id=element_null_target></div> </div> <script> // The contents of the scroller looks approximately like this: // // +-------+ // | | // | 150px | filler // | | // +-------+ // +-------+ // | 50px | #offset1 // +-------+ // +-------+ // | | // | 150px | filler // | | // +-------+ // +-------+ // | 50px | #offset2 // +-------+ // +-------+ // | | // | 150px | filler // | | // +-------+ // // The height of the scrollport is 100px. // Scrolls top to 'offset', waits for a frame, then call the provided // assertions function. function test_scroll(element, offset, assertions, description) { promise_test(async (t) => { scroller.scrollTop = offset; await waitForNextFrame(); assertions(); }, `${description} [${element.id}]`); } // Tests that the computed value of 'width' on element is the expected value // after scrolling top to the specifed offset. function test_width_at_scroll_top(element, offset, expected) { test_scroll(element, offset, () => { assert_equals(getComputedStyle(element).width, expected); }, `Scroll at offset ${offset} updates animation correctly`); } // [200, 400] test_width_at_scroll_top(element_start_start, 0, '0px'); test_width_at_scroll_top(element_start_start, 199, '0px'); test_width_at_scroll_top(element_start_start, 200, '100px'); test_width_at_scroll_top(element_start_start, 300, '150px'); test_width_at_scroll_top(element_start_start, 398, '199px'); test_width_at_scroll_top(element_start_start, 400, '0px'); // [50, 250] test_width_at_scroll_top(element_end_end, 0, '0px'); test_width_at_scroll_top(element_end_end, 49, '0px'); test_width_at_scroll_top(element_end_end, 50, '100px'); test_width_at_scroll_top(element_end_end, 150, '150px'); test_width_at_scroll_top(element_end_end, 248, '199px'); test_width_at_scroll_top(element_end_end, 250, '0px'); // [50, 400] test_width_at_scroll_top(element_end_start, 0, '0px'); test_width_at_scroll_top(element_end_start, 49, '0px'); test_width_at_scroll_top(element_end_start, 50, '100px'); test_width_at_scroll_top(element_end_start, 225, '150px'); test_width_at_scroll_top(element_end_start, 393, '198px'); test_width_at_scroll_top(element_end_start, 400, '0px'); // [100, 250] test_width_at_scroll_top(element_end_1_end, 0, '0px'); test_width_at_scroll_top(element_end_1_end, 99, '0px'); test_width_at_scroll_top(element_end_1_end, 100, '100px'); test_width_at_scroll_top(element_end_1_end, 175, '150px'); test_width_at_scroll_top(element_end_1_end, 247, '198px'); test_width_at_scroll_top(element_end_1_end, 250, '0px'); // [50, 375] test_width_at_scroll_top(element_end_start_05, 0, '0px'); test_width_at_scroll_top(element_end_start_05, 49, '0px'); test_width_at_scroll_top(element_end_start_05, 50, '100px'); test_width_at_scroll_top(element_end_start_05, 206, '148px'); test_width_at_scroll_top(element_end_start_05, 362, '196px'); test_width_at_scroll_top(element_end_start_05, 375, '0px'); // [200, 300] test_width_at_scroll_top(element_start_400px, 0, '0px'); test_width_at_scroll_top(element_start_400px, 199, '0px'); test_width_at_scroll_top(element_start_400px, 200, '100px'); test_width_at_scroll_top(element_start_400px, 300, '150px'); test_width_at_scroll_top(element_start_400px, 398, '199px'); test_width_at_scroll_top(element_start_400px, 400, '0px'); // [50, 250] test_width_at_scroll_top(element_50px_end, 0, '0px'); test_width_at_scroll_top(element_50px_end, 49, '0px'); test_width_at_scroll_top(element_50px_end, 50, '100px'); test_width_at_scroll_top(element_50px_end, 150, '150px'); test_width_at_scroll_top(element_50px_end, 248, '199px'); test_width_at_scroll_top(element_50px_end, 250, '0px'); // Offset not a decendant of scroller (=> no effect value) test_width_at_scroll_top(element_outside, 0, '0px'); test_width_at_scroll_top(element_outside, 100, '0px'); test_width_at_scroll_top(element_outside, 200, '0px'); test_width_at_scroll_top(element_outside, 300, '0px'); test_width_at_scroll_top(element_outside, 400, '0px'); test_width_at_scroll_top(element_outside, 450, '0px'); // Target of element-based offset has no layout box (=> no effect value) test_width_at_scroll_top(element_display_none, 0, '0px'); test_width_at_scroll_top(element_display_none, 100, '0px'); test_width_at_scroll_top(element_display_none, 200, '0px'); test_width_at_scroll_top(element_display_none, 300, '0px'); test_width_at_scroll_top(element_display_none, 400, '0px'); test_width_at_scroll_top(element_display_none, 450, '0px'); // Target of element-based offset is null (=> no effect value) test_width_at_scroll_top(element_null_target, 0, '0px'); test_width_at_scroll_top(element_null_target, 100, '0px'); test_width_at_scroll_top(element_null_target, 200, '0px'); test_width_at_scroll_top(element_null_target, 300, '0px'); test_width_at_scroll_top(element_null_target, 400, '0px'); test_width_at_scroll_top(element_null_target, 450, '0px'); </script>
third_party/web_platform_tests/dom/nodes/Document-implementation.html
youtube/cobalt
<!DOCTYPE html> <meta charset=utf-8> <title>Document.implementation</title> <link rel=help href="https://dom.spec.whatwg.org/#dom-document-implementation"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <div id="log"></div> <script> test(function() { var implementation = document.implementation; assert_true(implementation instanceof DOMImplementation, "implementation should implement DOMImplementation"); assert_equals(document.implementation, implementation); }, "Getting implementation off the same document"); test(function() { var doc = document.implementation.createHTMLDocument(); assert_not_equals(document.implementation, doc.implementation); }, "Getting implementation off different documents"); </script>
libs/slick2d/javadoc/org/newdawn/slick/command/class-use/InputProviderListener.html
j-dong/trashjam2017
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_34) on Mon Jun 03 22:20:33 BST 2013 --> <TITLE> Uses of Interface org.newdawn.slick.command.InputProviderListener (Slick - The 2D Library) </TITLE> <META NAME="date" CONTENT="2013-06-03"> <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 Interface org.newdawn.slick.command.InputProviderListener (Slick - The 2D Library)"; } } </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"> <A HREF="../../../../../org/newdawn/slick/command/InputProviderListener.html" title="interface in org.newdawn.slick.command"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&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-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;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/newdawn/slick/command//class-useInputProviderListener.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="InputProviderListener.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 Interface<br>org.newdawn.slick.command.InputProviderListener</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="../../../../../org/newdawn/slick/command/InputProviderListener.html" title="interface in org.newdawn.slick.command">InputProviderListener</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.newdawn.slick.command"><B>org.newdawn.slick.command</B></A></TD> <TD>Provides abstract input by mapping physical device inputs (mouse, keyboard and controllers) to abstract commands that are relevant to a particular game.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.newdawn.slick.tests"><B>org.newdawn.slick.tests</B></A></TD> <TD>Tests for the facilities provided by the library.&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.newdawn.slick.command"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../org/newdawn/slick/command/InputProviderListener.html" title="interface in org.newdawn.slick.command">InputProviderListener</A> in <A HREF="../../../../../org/newdawn/slick/command/package-summary.html">org.newdawn.slick.command</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../org/newdawn/slick/command/package-summary.html">org.newdawn.slick.command</A> with parameters of type <A HREF="../../../../../org/newdawn/slick/command/InputProviderListener.html" title="interface in org.newdawn.slick.command">InputProviderListener</A></FONT></TH> </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>InputProvider.</B><B><A HREF="../../../../../org/newdawn/slick/command/InputProvider.html#addListener(org.newdawn.slick.command.InputProviderListener)">addListener</A></B>(<A HREF="../../../../../org/newdawn/slick/command/InputProviderListener.html" title="interface in org.newdawn.slick.command">InputProviderListener</A>&nbsp;listener)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Add a listener to the provider.</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>InputProvider.</B><B><A HREF="../../../../../org/newdawn/slick/command/InputProvider.html#removeListener(org.newdawn.slick.command.InputProviderListener)">removeListener</A></B>(<A HREF="../../../../../org/newdawn/slick/command/InputProviderListener.html" title="interface in org.newdawn.slick.command">InputProviderListener</A>&nbsp;listener)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Remove a listener from this provider.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.newdawn.slick.tests"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../org/newdawn/slick/command/InputProviderListener.html" title="interface in org.newdawn.slick.command">InputProviderListener</A> in <A HREF="../../../../../org/newdawn/slick/tests/package-summary.html">org.newdawn.slick.tests</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Classes in <A HREF="../../../../../org/newdawn/slick/tests/package-summary.html">org.newdawn.slick.tests</A> that implement <A HREF="../../../../../org/newdawn/slick/command/InputProviderListener.html" title="interface in org.newdawn.slick.command">InputProviderListener</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../org/newdawn/slick/tests/InputProviderTest.html" title="class in org.newdawn.slick.tests">InputProviderTest</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A test for abstract input via InputProvider</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"> <A HREF="../../../../../org/newdawn/slick/command/InputProviderListener.html" title="interface in org.newdawn.slick.command"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&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-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;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/newdawn/slick/command//class-useInputProviderListener.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="InputProviderListener.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> <i>Copyright &#169; 2006 New Dawn Software. All Rights Reserved.</i> </BODY> </HTML>
third_party/blink/web_tests/external/wpt/web-animations/responsive/verticalAlign.html
chromium/chromium
<!DOCTYPE html> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <div id='container'> <div id='element'></div> </div> <script> var element = document.getElementById('element'); var container = document.getElementById('container'); test(function() { element.style.fontSize = '10px'; var player = element.animate([{verticalAlign: '3em'}, {verticalAlign: '5em'}], 10); player.pause(); player.currentTime = 5; element.style.fontSize = '20px'; assert_equals(getComputedStyle(element).verticalAlign, '80px'); }, 'verticalAlign responsive to style changes'); </script>
wp-content/themes/yoo_master_wp/css/font1/opensans.css
newflit/yoo
/* Copyright (C) YOOtheme GmbH, http://www.gnu.org/licenses/gpl.html GNU/GPL */ body { font-family: "OpenSansLight"; }
kyotocabinet/doc/api/classkyotocabinet_1_1TinyHashMap_1_1Iterator.html
sapo/kyoto
<!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"/> <title>Kyoto Cabinet: kyotocabinet::TinyHashMap::Iterator Class Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">Kyoto Cabinet </div> </td> </tr> </tbody> </table> </div> <!-- Generated by Doxygen 1.7.6.1 --> <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> </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="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="namespacekyotocabinet.html">kyotocabinet</a> </li> <li class="navelem"><a class="el" href="classkyotocabinet_1_1TinyHashMap.html">TinyHashMap</a> </li> <li class="navelem"><a class="el" href="classkyotocabinet_1_1TinyHashMap_1_1Iterator.html">Iterator</a> </li> </ul> </div> </div> <div class="header"> <div class="summary"> <a href="#pub-methods">Public Member Functions</a> &#124; <a href="#friends">Friends</a> </div> <div class="headertitle"> <div class="title">kyotocabinet::TinyHashMap::Iterator Class Reference</div> </div> </div><!--header--> <div class="contents"> <!-- doxytag: class="kyotocabinet::TinyHashMap::Iterator" --> <p><a class="el" href="classkyotocabinet_1_1TinyHashMap_1_1Iterator.html" title="Iterator of records.">Iterator</a> of records. <a href="classkyotocabinet_1_1TinyHashMap_1_1Iterator.html#details">More...</a></p> <p><code>#include &lt;kcmap.h&gt;</code></p> <p><a href="classkyotocabinet_1_1TinyHashMap_1_1Iterator-members.html">List of all members.</a></p> <table class="memberdecls"> <tr><td colspan="2"><h2><a name="pub-methods"></a> Public Member Functions</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classkyotocabinet_1_1TinyHashMap_1_1Iterator.html#a43ebcee59269ef2094c530061a280f5d">Iterator</a> (<a class="el" href="classkyotocabinet_1_1TinyHashMap.html">TinyHashMap</a> *map)</td></tr> <tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructor. <a href="#a43ebcee59269ef2094c530061a280f5d"></a><br/></td></tr> <tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classkyotocabinet_1_1TinyHashMap_1_1Iterator.html#a06fcdca617233a75ad9e1268ce48fa87">~Iterator</a> ()</td></tr> <tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor. <a href="#a06fcdca617233a75ad9e1268ce48fa87"></a><br/></td></tr> <tr><td class="memItemLeft" align="right" valign="top">const char *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classkyotocabinet_1_1TinyHashMap_1_1Iterator.html#a46b1f3627cfd5fc7baa3c5d8e6dec47f">get_key</a> (size_t *sp)</td></tr> <tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the key of the current record. <a href="#a46b1f3627cfd5fc7baa3c5d8e6dec47f"></a><br/></td></tr> <tr><td class="memItemLeft" align="right" valign="top">const char *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classkyotocabinet_1_1TinyHashMap_1_1Iterator.html#a44d2e387ee466f4a40e5af033452110c">get_value</a> (size_t *sp)</td></tr> <tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the value of the current record. <a href="#a44d2e387ee466f4a40e5af033452110c"></a><br/></td></tr> <tr><td class="memItemLeft" align="right" valign="top">const char *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classkyotocabinet_1_1TinyHashMap_1_1Iterator.html#a380323d0d6ef7b6768b11fcf10407790">get</a> (size_t *ksp, const char **vbp, size_t *vsp)</td></tr> <tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Get a pair of the key and the value of the current record. <a href="#a380323d0d6ef7b6768b11fcf10407790"></a><br/></td></tr> <tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classkyotocabinet_1_1TinyHashMap_1_1Iterator.html#abbc96f3a51b8dfbd596a9b69b69f4b53">step</a> ()</td></tr> <tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Step the cursor to the next record. <a href="#abbc96f3a51b8dfbd596a9b69b69f4b53"></a><br/></td></tr> <tr><td colspan="2"><h2><a name="friends"></a> Friends</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="afa0031e3ce6b9954988a99feb8ba24ea"></a><!-- doxytag: member="kyotocabinet::TinyHashMap::Iterator::TinyHashMap" ref="afa0031e3ce6b9954988a99feb8ba24ea" args="" --> class&#160;</td><td class="memItemRight" valign="bottom"><b>TinyHashMap</b></td></tr> </table> <hr/><a name="details" id="details"></a><h2>Detailed Description</h2> <div class="textblock"><p><a class="el" href="classkyotocabinet_1_1TinyHashMap_1_1Iterator.html" title="Iterator of records.">Iterator</a> of records. </p> </div><hr/><h2>Constructor &amp; Destructor Documentation</h2> <a class="anchor" id="a43ebcee59269ef2094c530061a280f5d"></a><!-- doxytag: member="kyotocabinet::TinyHashMap::Iterator::Iterator" ref="a43ebcee59269ef2094c530061a280f5d" args="(TinyHashMap *map)" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="classkyotocabinet_1_1TinyHashMap_1_1Iterator.html#a43ebcee59269ef2094c530061a280f5d">kyotocabinet::TinyHashMap::Iterator::Iterator</a> </td> <td>(</td> <td class="paramtype"><a class="el" href="classkyotocabinet_1_1TinyHashMap.html">TinyHashMap</a> *&#160;</td> <td class="paramname"><em>map</em></td><td>)</td> <td><code> [explicit]</code></td> </tr> </table> </div> <div class="memdoc"> <p>Constructor. </p> <dl class="params"><dt><b>Parameters:</b></dt><dd> <table class="params"> <tr><td class="paramname">map</td><td>the container. </td></tr> </table> </dd> </dl> <dl class="note"><dt><b>Note:</b></dt><dd>This object will not be invalidated even when the map object is updated once. However, phantom records may be retrieved if they are removed after creation of each iterator. </dd></dl> </div> </div> <a class="anchor" id="a06fcdca617233a75ad9e1268ce48fa87"></a><!-- doxytag: member="kyotocabinet::TinyHashMap::Iterator::~Iterator" ref="a06fcdca617233a75ad9e1268ce48fa87" args="()" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="classkyotocabinet_1_1TinyHashMap_1_1Iterator.html#a06fcdca617233a75ad9e1268ce48fa87">kyotocabinet::TinyHashMap::Iterator::~Iterator</a> </td> <td>(</td> <td class="paramname"></td><td>)</td> <td></td> </tr> </table> </div> <div class="memdoc"> <p>Destructor. </p> </div> </div> <hr/><h2>Member Function Documentation</h2> <a class="anchor" id="a46b1f3627cfd5fc7baa3c5d8e6dec47f"></a><!-- doxytag: member="kyotocabinet::TinyHashMap::Iterator::get_key" ref="a46b1f3627cfd5fc7baa3c5d8e6dec47f" args="(size_t *sp)" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">const char* <a class="el" href="classkyotocabinet_1_1TinyHashMap_1_1Iterator.html#a46b1f3627cfd5fc7baa3c5d8e6dec47f">kyotocabinet::TinyHashMap::Iterator::get_key</a> </td> <td>(</td> <td class="paramtype">size_t *&#160;</td> <td class="paramname"><em>sp</em></td><td>)</td> <td></td> </tr> </table> </div> <div class="memdoc"> <p>Get the key of the current record. </p> <dl class="params"><dt><b>Parameters:</b></dt><dd> <table class="params"> <tr><td class="paramname">sp</td><td>the pointer to the variable into which the size of the region of the return value is assigned. </td></tr> </table> </dd> </dl> <dl class="return"><dt><b>Returns:</b></dt><dd>the pointer to the key region of the current record, or NULL on failure. </dd></dl> </div> </div> <a class="anchor" id="a44d2e387ee466f4a40e5af033452110c"></a><!-- doxytag: member="kyotocabinet::TinyHashMap::Iterator::get_value" ref="a44d2e387ee466f4a40e5af033452110c" args="(size_t *sp)" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">const char* <a class="el" href="classkyotocabinet_1_1TinyHashMap_1_1Iterator.html#a44d2e387ee466f4a40e5af033452110c">kyotocabinet::TinyHashMap::Iterator::get_value</a> </td> <td>(</td> <td class="paramtype">size_t *&#160;</td> <td class="paramname"><em>sp</em></td><td>)</td> <td></td> </tr> </table> </div> <div class="memdoc"> <p>Get the value of the current record. </p> <dl class="params"><dt><b>Parameters:</b></dt><dd> <table class="params"> <tr><td class="paramname">sp</td><td>the pointer to the variable into which the size of the region of the return value is assigned. </td></tr> </table> </dd> </dl> <dl class="return"><dt><b>Returns:</b></dt><dd>the pointer to the value region of the current record, or NULL on failure. </dd></dl> </div> </div> <a class="anchor" id="a380323d0d6ef7b6768b11fcf10407790"></a><!-- doxytag: member="kyotocabinet::TinyHashMap::Iterator::get" ref="a380323d0d6ef7b6768b11fcf10407790" args="(size_t *ksp, const char **vbp, size_t *vsp)" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">const char* <a class="el" href="classkyotocabinet_1_1TinyHashMap_1_1Iterator.html#a380323d0d6ef7b6768b11fcf10407790">kyotocabinet::TinyHashMap::Iterator::get</a> </td> <td>(</td> <td class="paramtype">size_t *&#160;</td> <td class="paramname"><em>ksp</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">const char **&#160;</td> <td class="paramname"><em>vbp</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">size_t *&#160;</td> <td class="paramname"><em>vsp</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div> <div class="memdoc"> <p>Get a pair of the key and the value of the current record. </p> <dl class="params"><dt><b>Parameters:</b></dt><dd> <table class="params"> <tr><td class="paramname">ksp</td><td>the pointer to the variable into which the size of the region of the return value is assigned. </td></tr> <tr><td class="paramname">vbp</td><td>the pointer to the variable into which the pointer to the value region is assigned. </td></tr> <tr><td class="paramname">vsp</td><td>the pointer to the variable into which the size of the value region is assigned. </td></tr> </table> </dd> </dl> <dl class="return"><dt><b>Returns:</b></dt><dd>the pointer to the key region, or NULL on failure. </dd></dl> </div> </div> <a class="anchor" id="abbc96f3a51b8dfbd596a9b69b69f4b53"></a><!-- doxytag: member="kyotocabinet::TinyHashMap::Iterator::step" ref="abbc96f3a51b8dfbd596a9b69b69f4b53" args="()" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">void <a class="el" href="classkyotocabinet_1_1TinyHashMap_1_1Iterator.html#abbc96f3a51b8dfbd596a9b69b69f4b53">kyotocabinet::TinyHashMap::Iterator::step</a> </td> <td>(</td> <td class="paramname"></td><td>)</td> <td></td> </tr> </table> </div> <div class="memdoc"> <p>Step the cursor to the next record. </p> </div> </div> </div><!-- contents --> <hr class="footer"/><address class="footer"><small> Generated on Fri May 25 2012 01:21:36 for Kyoto Cabinet by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.7.6.1 </small></address> </body> </html>
reference/For.html
battosai30/Energia
<!DOCTYPE html> <html> <head> <title>Energia Reference - For </title> <link rel="shortcut icon" type="image/x-icon" href="http://energia.nu/img/eicon.png"> <link rel='stylesheet' href='energiaWideRender.css' type='text/css' /> <!--HeaderText--><style type='text/css'></style> <meta name='robots' content='index,follow' /> <meta name="Author" content="Robert Wessels" /> <meta name="Publisher" content="Energia" /> <meta name="Keywords" content="Energia, Wiring, Processing, Maker, LaunchPad, Arduino, Texas Instruments, Sketch, MSP430, mspgcc, mpsdebug, Electronic Arts, Programming, C, C++, Robert Wessels" /> <meta name="Description" content="Energia is a rapid prototyping platform for the Texas Instruments MCU Launchpad. Energia is based on Wiring and Arduino and uses the Processing IDE." /> <meta name="Copyright" content="All contents copyright Robert Wessels" /> </head> <body> <div id="page"> <!--PageHeaderFmt--> <div id="pageheader"> <div class="title"><a href='http://energia.nu'>Energia</a></div> </div> <!--/PageHeaderFmt--> <!--PageLeftFmt--> <div id="pagenav"> <div id="navbar"> <p><a class='wikilink' href='http://energia.nu/'>Home</a> <a class='wikilink' href='http://energia.nu/download'>Download</a> <a class='wikilink' href='Guide_index.html'>Getting Started</a> <a class='wikilink' href='index.html'>Reference</a> <a class="wikilink" href="http://energia.nu/help.html">Getting Help</a> <a class="nav" href="http://energia.nu/faq.html">FAQ</a> <a class="wikilink" href="http://energia.nu/projects.html">Projects Using Energia</a> <a class="nav" href="http://energia.nu/contact.html">Contact Us</a> </p> <p class='vspace'></p> </div> </div> <!--/PageLeftFmt--> <div id="pagetext"> <!--PageText--> <div id='wikitext'> <p class='vspace'></p><h2>for statements</h2> <h4>Desciption</h4> <p>The <strong>for</strong> statement is used to repeat a block of statements enclosed in curly braces. An increment counter is usually used to increment and terminate the loop. The <strong>for</strong> statement is useful for any repetitive operation, and is often used in combination with arrays to operate on collections of data/pins. </p> <p class='vspace'></p><p>There are three parts to the <strong>for</strong> loop header: </p> <p class='vspace'></p><p><code><strong>for</strong> (<strong>initialization</strong>;<strong> condition</strong>;<strong> increment</strong>) {</code> </p> <p class='vspace'></p><p><code> //statement(s);</code> </p> <p class='vspace'></p><p><code>}</code> </p><div><img height='220px' src='img/ForLoopIllustrated.png' alt='' title='' /></div> <p class='vspace'></p><p>The <strong>initialization</strong> happens first and exactly once. Each time through the loop, the <strong>condition</strong> is tested; if it's true, the statement block, and the <strong>increment</strong> is executed, then the <strong>condition</strong> is tested again. When the <strong>condition</strong> becomes false, the loop ends. </p> <p class='vspace'></p><h4>Example</h4> <pre> // Dim an LED using a PWM pin int PWMpin = GREEN_LED; // LED in series with resistor on pin 14 void setup() { // no setup needed } void loop() { for (int i=0; i &lt;= 255; i++){ analogWrite(PWMpin, i); delay(10); } } </pre> <p class='vspace'></p><h4>Coding Tips</h4> <p>The C <strong>for</strong> loop is much more flexible than <strong>for</strong> loops found in some other computer languages, including BASIC. Any or all of the three header elements may be omitted, although the semicolons are required. Also the statements for initialization, condition, and increment can be any valid C statements with unrelated variables, and use any C datatypes including floats. These types of unusual <strong>for</strong> statements may provide solutions to some rare programming problems. </p> <p class='vspace'></p><p>For example, using a multiplication in the increment line will generate a logarithmic progression:<br /> </p><pre>for(int x = 2; x &lt; 100; x = x * 1.5){ println(x); } </pre> <p class='vspace'></p><p>Generates: 2,3,4,6,9,13,19,28,42,63,94 </p> <p class='vspace'></p><p>Another example, fade an LED up and down with one <strong>for</strong> loop: </p> <p class='vspace'></p><pre>void loop() { int x = 1; for (int i = 0; i &gt; -1; i = i + x){ analogWrite(PWMpin, i); if (i == 255) x = -1; // switch direction at peak delay(10); } } </pre> <p class='vspace'></p><h4>See also</h4> <ul><li><a class='wikilink' href='While.html'>while</a> </li></ul><p class='vspace'></p><p><a class='wikilink' href='index.html'>Reference Home</a> </p> <p class='vspace'></p><p><em>Corrections, suggestions, and new documentation should be posted to the <a class='urllink' href='http://forum.43oh.com/forum/28-energia/' rel='nofollow'>Forum</a>.</em> </p> <p class='vspace'></p><p>The text of the Energia Reference is licensed under a <a class='urllink' href='http://creativecommons.org/licenses/by-sa/3.0/' rel='nofollow'>Creative Commons Attribution-ShareAlike 3.0 License</a>. Energia reference is based on Arduino reference. Code samples in the reference are released into the public domain. </p> </div> </div> <!--PageFooterFmt--> <div id="pagefooter"> &copy;Energia | <a href='#'>Edit Page</a> | <a href='#'>Page History</a> | <a href='#' target='_blank'>Printable View</a> | <a href='#'>All Recent Site Changes</a> </div> <!--/PageFooterFmt--> </div> </body> </html>
wts/tests/webgl/webglrenderingcontext_SHADER_TYPE_value.html
hgl888/web-testing-service
<!DOCTYPE html> <!-- Copyright (c) 2014 Intel Corporation. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of works must retain the original copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the original copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Intel Corporation nor the names of its contributors may be used to endorse or promote products derived from this work without specific prior written permission. THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: Cao, Jun <junx.cao@intel.com> --> <html> <head> <title>WebGL Test: webglrenderingcontext_SHADER_TYPE_value</title> <link rel="author" title="Intel" href="http://www.intel.com" /> <link rel="help" href="https://www.khronos.org/registry/webgl/specs/1.0/" /> <meta name="flags" content="" /> <meta name="assert" content="Check if WebGLRenderingContext.SHADER_TYPE constant value is 0x8B4F"/> <script src="../resources/testharness.js"></script> <script src="../resources/testharnessreport.js"></script> <script src="support/webgl.js"></script> </head> <body> <div id="log"></div> <canvas id="canvas" width="200" height="100" style="border:1px solid #c3c3c3;"> Your browser does not support the canvas element. </canvas> <script> getwebgl(); webgl_constant_value(webgl, 'SHADER_TYPE', 0x8B4F); </script> </body> </html>
inclinometer/js/html/scenario2_polling.html
gforguru/Windows-universal-samples
<!-- Copyright (c) Microsoft Corporation. All rights reserved --> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <link rel="stylesheet" href="/css/scenario2_Polling.css" /> <script src="/js/scenario2_Polling.js"></script> </head> <body> <div> <p>Polls for inclinometer data and displays the pitch, roll and yaw values at a set interval.</p> <button class="action" id="scenario2Open">Enable</button> <button class="action secondary" id="scenario2Revoke">Disable</button> <br /> <br /> X: <a id="readingOutputX">no data</a> <br /> Y: <a id="readingOutputY">no data</a> <br /> Z: <a id="readingOutputZ">no data</a> <br /> Yaw Accuracy: <a id="eventOutputYawAccuracy">no data</a> <br /> </div> </body> </html>
ajax/libs/mini.css/2.3.0/mini-nord.css
sashberd/cdnjs
@charset "UTF-8"; /* Flavor name: Nord (mini-nord) Author: tphecca (https://github.com/tphecca) Maintainers: tphecca mini.css version: v2.3.0 */ /* Browsers resets and base typography. */ html { font-size: 16px; } html, * { font-family: -apple-system, BlinkMacSystemFont,"Segoe UI","Roboto", "Droid Sans","Helvetica Neue", Helvetica, Arial, sans-serif; line-height: 1.5; -webkit-text-size-adjust: 100%; } * { font-size: 1em; } body { margin: 0; color: #2E3440; background: #ECEFF4; } article, aside, section, figcaption, figure, main, details, menu { display: block; } summary { display: list-item; } abbr[title] { border-bottom: none; text-decoration: underline; } audio, video { display: inline-block; } svg:not(:root) { overflow: hidden; } input { overflow: visible; } img { max-width: 100%; height: auto; } dfn { font-style: italic; } h1, h2, h3, h4, h5, h6 { line-height: 1.2em; margin: 12px 8px; font-weight: 500; } h1 small, h2 small, h3 small, h4 small, h5 small, h6 small { color: #424242; display: block; margin-top: -4px; } h1 { font-size: 2em; } h2 { font-size: 1.5em; } h3 { font-size: 1.25em; } h4 { font-size: 1.1em; } h5 { font-size: 1em; } h6 { font-size: 0.85em; } p { margin: 1px 8px; } ol, ul { margin: 1px 8px 10px; padding-left: 28px; } b, strong { font-weight: 700; } hr { box-sizing: content-box; border: 0; overflow: visible; line-height: 1.25em; margin: 8px; height: 0.0625rem; background: linear-gradient(to right, #ECEFF4, #D8DEE9, #ECEFF4); } blockquote { display: block; position: relative; font-style: italic; background: #D8DEE9; margin: 8px 10px; padding: 6px 10px 24px; border-left: 3px solid #616161; border-radius: 0 2px 2px 0; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.15); } blockquote:after { position: absolute; font-style: normal; font-size: 0.85em; color: #616161; left: 10px; bottom: 0; content: "— " attr(cite); } code, kbd, pre, samp { font-family: monospace, monospace; } code { border-radius: 2px; background: #E5E9F0; padding: 2px 4px; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.15); } pre { overflow: auto; border-radius: 0 2px 2px 0; background: #E5E9F0; padding: 12px; margin: 8px 10px; border-left: 3px solid #5E81AC; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.15); } kbd { border-radius: 2px; background: #2E3440; color: #ECEFF4; padding: 2px 4px; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.15); } small, sup, sub { font-size: 75%; } sup { top: -8px; } sub { bottom: -4px; } sup, sub { line-height: 0; position: relative; vertical-align: baseline; } a { color: #88C0D0; text-decoration: underline; opacity: 1; transition: opacity 0.3s; } a:visited { color: #5E81AC; } a:hover, a:focus { opacity: 0.75; } figcaption { font-size: 80%; color: #424242; } /* Definitions for the grid system. */ .container { margin: 0 auto; padding: 0 10px; } .row { box-sizing: border-box; display: -webkit-box; -webkit-box-flex: 0; -webkit-box-orient: horizontal; -webkit-box-direction: normal; display: -webkit-flex; display: flex; -webkit-flex: 0 1 auto; flex: 0 1 auto; -webkit-flex-flow: row wrap; flex-flow: row wrap; } .col-sm, [class^='col-sm-'], [class^='col-sm-offset-'], .row[class*='cols-sm-'] > * { box-sizing: border-box; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; padding: 0 4px; } .col-sm, .row.cols-sm > * { -webkit-box-flex: 1; max-width: 100%; -webkit-flex-grow: 1; flex-grow: 1; -webkit-flex-basis: 0; flex-basis: 0; } .col-sm-1, .row.cols-sm-1 > * { max-width: 8.33333%; -webkit-flex-basis: 8.33333%; flex-basis: 8.33333%; } .col-sm-2, .row.cols-sm-2 > * { max-width: 16.66667%; -webkit-flex-basis: 16.66667%; flex-basis: 16.66667%; } .col-sm-3, .row.cols-sm-3 > * { max-width: 25%; -webkit-flex-basis: 25%; flex-basis: 25%; } .col-sm-4, .row.cols-sm-4 > * { max-width: 33.33333%; -webkit-flex-basis: 33.33333%; flex-basis: 33.33333%; } .col-sm-5, .row.cols-sm-5 > * { max-width: 41.66667%; -webkit-flex-basis: 41.66667%; flex-basis: 41.66667%; } .col-sm-6, .row.cols-sm-6 > * { max-width: 50%; -webkit-flex-basis: 50%; flex-basis: 50%; } .col-sm-7, .row.cols-sm-7 > * { max-width: 58.33333%; -webkit-flex-basis: 58.33333%; flex-basis: 58.33333%; } .col-sm-8, .row.cols-sm-8 > * { max-width: 66.66667%; -webkit-flex-basis: 66.66667%; flex-basis: 66.66667%; } .col-sm-9, .row.cols-sm-9 > * { max-width: 75%; -webkit-flex-basis: 75%; flex-basis: 75%; } .col-sm-10, .row.cols-sm-10 > * { max-width: 83.33333%; -webkit-flex-basis: 83.33333%; flex-basis: 83.33333%; } .col-sm-11, .row.cols-sm-11 > * { max-width: 91.66667%; -webkit-flex-basis: 91.66667%; flex-basis: 91.66667%; } .col-sm-12, .row.cols-sm-12 > * { max-width: 100%; -webkit-flex-basis: 100%; flex-basis: 100%; } .col-sm-offset-0 { margin-left: 0; } .col-sm-offset-1 { margin-left: 8.33333%; } .col-sm-offset-2 { margin-left: 16.66667%; } .col-sm-offset-3 { margin-left: 25%; } .col-sm-offset-4 { margin-left: 33.33333%; } .col-sm-offset-5 { margin-left: 41.66667%; } .col-sm-offset-6 { margin-left: 50%; } .col-sm-offset-7 { margin-left: 58.33333%; } .col-sm-offset-8 { margin-left: 66.66667%; } .col-sm-offset-9 { margin-left: 75%; } .col-sm-offset-10 { margin-left: 83.33333%; } .col-sm-offset-11 { margin-left: 91.66667%; } .col-sm-normal { -webkit-order: initial; order: initial; } .col-sm-first { -webkit-order: -999; order: -999; } .col-sm-last { -webkit-order: 999; order: 999; } @media screen and (min-width: 768px) { .col-md, [class^='col-md-'], [class^='col-md-offset-'], .row[class*='cols-md-'] > * { box-sizing: border-box; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; padding: 0 4px; } .col-md, .row.cols-md > * { -webkit-box-flex: 1; max-width: 100%; -webkit-flex-grow: 1; flex-grow: 1; -webkit-flex-basis: 0; flex-basis: 0; } .col-md-1, .row.cols-md-1 > * { max-width: 8.33333%; -webkit-flex-basis: 8.33333%; flex-basis: 8.33333%; } .col-md-2, .row.cols-md-2 > * { max-width: 16.66667%; -webkit-flex-basis: 16.66667%; flex-basis: 16.66667%; } .col-md-3, .row.cols-md-3 > * { max-width: 25%; -webkit-flex-basis: 25%; flex-basis: 25%; } .col-md-4, .row.cols-md-4 > * { max-width: 33.33333%; -webkit-flex-basis: 33.33333%; flex-basis: 33.33333%; } .col-md-5, .row.cols-md-5 > * { max-width: 41.66667%; -webkit-flex-basis: 41.66667%; flex-basis: 41.66667%; } .col-md-6, .row.cols-md-6 > * { max-width: 50%; -webkit-flex-basis: 50%; flex-basis: 50%; } .col-md-7, .row.cols-md-7 > * { max-width: 58.33333%; -webkit-flex-basis: 58.33333%; flex-basis: 58.33333%; } .col-md-8, .row.cols-md-8 > * { max-width: 66.66667%; -webkit-flex-basis: 66.66667%; flex-basis: 66.66667%; } .col-md-9, .row.cols-md-9 > * { max-width: 75%; -webkit-flex-basis: 75%; flex-basis: 75%; } .col-md-10, .row.cols-md-10 > * { max-width: 83.33333%; -webkit-flex-basis: 83.33333%; flex-basis: 83.33333%; } .col-md-11, .row.cols-md-11 > * { max-width: 91.66667%; -webkit-flex-basis: 91.66667%; flex-basis: 91.66667%; } .col-md-12, .row.cols-md-12 > * { max-width: 100%; -webkit-flex-basis: 100%; flex-basis: 100%; } .col-md-offset-0 { margin-left: 0; } .col-md-offset-1 { margin-left: 8.33333%; } .col-md-offset-2 { margin-left: 16.66667%; } .col-md-offset-3 { margin-left: 25%; } .col-md-offset-4 { margin-left: 33.33333%; } .col-md-offset-5 { margin-left: 41.66667%; } .col-md-offset-6 { margin-left: 50%; } .col-md-offset-7 { margin-left: 58.33333%; } .col-md-offset-8 { margin-left: 66.66667%; } .col-md-offset-9 { margin-left: 75%; } .col-md-offset-10 { margin-left: 83.33333%; } .col-md-offset-11 { margin-left: 91.66667%; } .col-md-normal { -webkit-order: initial; order: initial; } .col-md-first { -webkit-order: -999; order: -999; } .col-md-last { -webkit-order: 999; order: 999; } } @media screen and (min-width: 1280px) { .col-lg, [class^='col-lg-'], [class^='col-lg-offset-'], .row[class*='cols-lg-'] > * { box-sizing: border-box; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; padding: 0 4px; } .col-lg, .row.cols-lg > * { -webkit-box-flex: 1; max-width: 100%; -webkit-flex-grow: 1; flex-grow: 1; -webkit-flex-basis: 0; flex-basis: 0; } .col-lg-1, .row.cols-lg-1 > * { max-width: 8.33333%; -webkit-flex-basis: 8.33333%; flex-basis: 8.33333%; } .col-lg-2, .row.cols-lg-2 > * { max-width: 16.66667%; -webkit-flex-basis: 16.66667%; flex-basis: 16.66667%; } .col-lg-3, .row.cols-lg-3 > * { max-width: 25%; -webkit-flex-basis: 25%; flex-basis: 25%; } .col-lg-4, .row.cols-lg-4 > * { max-width: 33.33333%; -webkit-flex-basis: 33.33333%; flex-basis: 33.33333%; } .col-lg-5, .row.cols-lg-5 > * { max-width: 41.66667%; -webkit-flex-basis: 41.66667%; flex-basis: 41.66667%; } .col-lg-6, .row.cols-lg-6 > * { max-width: 50%; -webkit-flex-basis: 50%; flex-basis: 50%; } .col-lg-7, .row.cols-lg-7 > * { max-width: 58.33333%; -webkit-flex-basis: 58.33333%; flex-basis: 58.33333%; } .col-lg-8, .row.cols-lg-8 > * { max-width: 66.66667%; -webkit-flex-basis: 66.66667%; flex-basis: 66.66667%; } .col-lg-9, .row.cols-lg-9 > * { max-width: 75%; -webkit-flex-basis: 75%; flex-basis: 75%; } .col-lg-10, .row.cols-lg-10 > * { max-width: 83.33333%; -webkit-flex-basis: 83.33333%; flex-basis: 83.33333%; } .col-lg-11, .row.cols-lg-11 > * { max-width: 91.66667%; -webkit-flex-basis: 91.66667%; flex-basis: 91.66667%; } .col-lg-12, .row.cols-lg-12 > * { max-width: 100%; -webkit-flex-basis: 100%; flex-basis: 100%; } .col-lg-offset-0 { margin-left: 0; } .col-lg-offset-1 { margin-left: 8.33333%; } .col-lg-offset-2 { margin-left: 16.66667%; } .col-lg-offset-3 { margin-left: 25%; } .col-lg-offset-4 { margin-left: 33.33333%; } .col-lg-offset-5 { margin-left: 41.66667%; } .col-lg-offset-6 { margin-left: 50%; } .col-lg-offset-7 { margin-left: 58.33333%; } .col-lg-offset-8 { margin-left: 66.66667%; } .col-lg-offset-9 { margin-left: 75%; } .col-lg-offset-10 { margin-left: 83.33333%; } .col-lg-offset-11 { margin-left: 91.66667%; } .col-lg-normal { -webkit-order: initial; order: initial; } .col-lg-first { -webkit-order: -999; order: -999; } .col-lg-last { -webkit-order: 999; order: 999; } } /* Definitions for forms and input elements. */ form { border: 1px solid #D8DEE9; margin: 8px; padding: 12px 10px 18px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 2px 3px rgba(0, 0, 0, 0.15); } fieldset { border: 1px solid #D8DEE9; border-radius: 2px; margin: 2px; padding: 6px 8px 8px; } legend { box-sizing: border-box; display: table; max-width: 100%; white-space: normal; font-weight: 700; font-size: 0.925em; padding: 2px 4px; } label { padding: 4px 8px; } .input-group { display: inline-block; } .input-group.fluid { display: -webkit-box; -webkit-box-pack: justify; display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; } .input-group.fluid > input { -webkit-box-flex: 1; max-width: 100%; -webkit-flex-grow: 1; flex-grow: 1; -webkit-flex-basis: 0; flex-basis: 0; } @media screen and (max-width: 767px) { .input-group.fluid { -webkit-box-orient: vertical; -webkit-align-items: stretch; align-items: stretch; -webkit-flex-direction: column; flex-direction: column; } } .input-group.vertical { display: -webkit-box; -webkit-box-orient: vertical; -webkit-box-pack: justify; display: -webkit-flex; display: flex; -webkit-flex-direction: column; flex-direction: column; -webkit-align-items: stretch; align-items: stretch; -webkit-justify-content: center; justify-content: center; } .input-group.vertical > input { -webkit-box-flex: 1; max-width: 100%; -webkit-flex-grow: 1; flex-grow: 1; -webkit-flex-basis: 0; flex-basis: 0; } [type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; } textarea { overflow: auto; } [type="search"] { -webkit-appearance: textfield; outline-offset: -2px; } [type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration { -webkit-appearance: none; } input:not([type]), [type="text"], [type="email"], [type="number"], [type="search"], [type="password"], [type="url"], [type="tel"], textarea, select { box-sizing: border-box; background: #E5E9F0; color: #2E3440; border: 1px solid #D8DEE9; border-radius: 1px; margin: 2px; padding: 8px 12px; } input:not([type="button"]):not([type="submit"]):not([type="reset"]):hover, input:not([type="button"]):not([type="submit"]):not([type="reset"]):focus, textarea:hover, textarea:focus, select:hover, select:focus { border-color: #81A1C1; box-shadow: none; } input:not([type="button"]):not([type="submit"]):not([type="reset"]):disabled, input:not([type="button"]):not([type="submit"]):not([type="reset"])[disabled], textarea:disabled, textarea[disabled], select:disabled, select[disabled] { cursor: not-allowed; opacity: 0.75; } input:not([type="button"]):not([type="submit"]):not([type="reset"]):invalid, input:not([type="button"]):not([type="submit"]):not([type="reset"]):focus:invalid, textarea:invalid, textarea:focus:invalid, select:invalid, select:focus:invalid { border-color: #BF616A; box-shadow: none; } input:not([type="button"]):not([type="submit"]):not([type="reset"])[readonly], textarea[readonly], select[readonly] { background: #e0e0e0; border-color: #bdbdbd; } ::-webkit-input-placeholder { opacity: 1; color: #616161; } ::-moz-placeholder { opacity: 1; color: #616161; } ::-ms-placeholder { opacity: 1; color: #616161; } ::placeholder { opacity: 1; color: #616161; } button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; } button, html [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; } button { overflow: visible; text-transform: none; } button, [type="button"], [type="submit"], [type="reset"], a.button, label.button, .button, a[role="button"], label[role="button"], [role="button"] { display: inline-block; background: rgba(216, 222, 233, 0.65); color: #2E3440; border: 0; border-radius: 2px; padding: 8px 12px; margin: 8px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.15); text-decoration: none; transition: background 0.3s; cursor: pointer; } button:hover, button:focus, [type="button"]:hover, [type="button"]:focus, [type="submit"]:hover, [type="submit"]:focus, [type="reset"]:hover, [type="reset"]:focus, a.button:hover, a.button:focus, label.button:hover, label.button:focus, .button:hover, .button:focus, a[role="button"]:hover, a[role="button"]:focus, label[role="button"]:hover, label[role="button"]:focus, [role="button"]:hover, [role="button"]:focus { background: rgba(216, 222, 233, 0.8); opacity: 1; } button:disabled, button[disabled], [type="button"]:disabled, [type="button"][disabled], [type="submit"]:disabled, [type="submit"][disabled], [type="reset"]:disabled, [type="reset"][disabled], a.button:disabled, a.button[disabled], label.button:disabled, label.button[disabled], .button:disabled, .button[disabled], a[role="button"]:disabled, a[role="button"][disabled], label[role="button"]:disabled, label[role="button"][disabled], [role="button"]:disabled, [role="button"][disabled] { cursor: not-allowed; opacity: 0.65; } input[type="file"] { border: 0; height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; clip: rect(0 0 0 0); -webkit-clip-path: inset(100%); clip-path: inset(100%); } .button-group { display: -webkit-box; display: -webkit-flex; display: flex; border: 1px solid #9e9e9e; border-radius: 2px; margin: 8px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 2px 3px rgba(0, 0, 0, 0.15); } .button-group > button, .button-group [type="button"], .button-group > [type="submit"], .button-group > [type="reset"], .button-group > .button, .button-group > [role="button"] { margin: 0; -webkit-box-flex: 1; max-width: 100%; -webkit-flex: 1 1 auto; flex: 1 1 auto; text-align: center; border: 0; border-radius: 0; box-shadow: none; } .button-group > :not(:first-child) { border-left: 1px solid #9e9e9e; } @media screen and (max-width: 767px) { .button-group { -webkit-box-orient: vertical; -webkit-flex-direction: column; flex-direction: column; } .button-group > :not(:first-child) { border: 0; border-top: 1px solid #9e9e9e; } } [type="checkbox"], [type="radio"] { height: 1px; width: 1px; margin: -1px; overflow: hidden; position: absolute; clip: rect(0 0 0 0); -webkit-clip-path: inset(100%); clip-path: inset(100%); } .input-group [type="checkbox"] + label, .input-group [type="radio"] + label { position: relative; margin-left: 20px; cursor: pointer; } .input-group [type="checkbox"] + label:before, .input-group [type="radio"] + label:before { display: inline-block; position: absolute; bottom: 6px; left: 0; width: 16px; height: 16px; content: ''; border: 1px solid #D8DEE9; border-radius: 1px; background: #E5E9F0; color: #2E3440; margin-left: -20px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.15); } .input-group [type="checkbox"] + label:hover:before, .input-group [type="checkbox"] + label:focus:before, .input-group [type="radio"] + label:hover:before, .input-group [type="radio"] + label:focus:before { border-color: #81A1C1; } .input-group [type="checkbox"]:focus + label:before, .input-group [type="radio"]:focus + label:before { border-color: #81A1C1; } .input-group [type="radio"] + label:before, .input-group [type="radio"] + label:after { border-radius: 50%; } .input-group [type="checkbox"][disabled] + label, .input-group [type="radio"][disabled] + label, .input-group [type="checkbox"]:disabled + label, .input-group [type="radio"]:disabled + label { cursor: not-allowed; } .input-group [type="checkbox"][disabled] + label:before, .input-group [type="checkbox"][disabled] + label:after, .input-group [type="radio"][disabled] + label:before, .input-group [type="radio"][disabled] + label:after, .input-group [type="checkbox"]:disabled + label:before, .input-group [type="checkbox"]:disabled + label:after, .input-group [type="radio"]:disabled + label:before, .input-group [type="radio"]:disabled + label:after { opacity: 0.75; } .input-group [type="checkbox"]:checked + label:after, .input-group [type="radio"]:checked + label:after { position: absolute; background: #2E3440; content: ''; margin-left: -20px; bottom: 10px; left: 4px; width: 10px; height: 10px; } .input-group [type="checkbox"] + label.switch:before, .input-group [type="radio"] + label.switch:before { bottom: 8px; width: 28px; height: 14px; border: 0; border-radius: 8px; background: #D8DEE9; margin-left: -38px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.15); } .input-group [type="checkbox"] + label.switch:after, .input-group [type="radio"] + label.switch:after { display: inline-block; content: ''; position: absolute; left: 0; width: 20px; height: 20px; background: #ECEFF4; border-radius: 100%; bottom: 5px; margin-left: -48px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.15); transition: left 0.3s; } .input-group [type="checkbox"]:checked + label.switch:after, .input-group [type="radio"]:checked + label.switch:after { left: 28px; width: 20px; height: 20px; bottom: 5px; margin-left: -48px; background: #5E81AC; } /* Custom elements for forms and input elements. */ button.primary, [type="button"].primary, [type="submit"].primary, [type="reset"].primary, .button.primary, [role="button"].primary { background: rgba(94, 129, 172, 0.9); color: #ECEFF4; } button.primary:hover, button.primary:focus, [type="button"].primary:hover, [type="button"].primary:focus, [type="submit"].primary:hover, [type="submit"].primary:focus, [type="reset"].primary:hover, [type="reset"].primary:focus, .button.primary:hover, .button.primary:focus, [role="button"].primary:hover, [role="button"].primary:focus { background: #5e81ac; } button.secondary, [type="button"].secondary, [type="submit"].secondary, [type="reset"].secondary, .button.secondary, [role="button"].secondary { background: rgba(191, 97, 106, 0.85); color: #ECEFF4; } button.secondary:hover, button.secondary:focus, [type="button"].secondary:hover, [type="button"].secondary:focus, [type="submit"].secondary:hover, [type="submit"].secondary:focus, [type="reset"].secondary:hover, [type="reset"].secondary:focus, .button.secondary:hover, .button.secondary:focus, [role="button"].secondary:hover, [role="button"].secondary:focus { background: #bf616a; } button.tertiary, [type="button"].tertiary, [type="submit"].tertiary, [type="reset"].tertiary, .button.tertiary, [role="button"].tertiary { background: rgba(163, 190, 140, 0.85); color: #ECEFF4; } button.tertiary:hover, button.tertiary:focus, [type="button"].tertiary:hover, [type="button"].tertiary:focus, [type="submit"].tertiary:hover, [type="submit"].tertiary:focus, [type="reset"].tertiary:hover, [type="reset"].tertiary:focus, .button.tertiary:hover, .button.tertiary:focus, [role="button"].tertiary:hover, [role="button"].tertiary:focus { background: #a3be8c; } button.inverse, [type="button"].inverse, [type="submit"].inverse, [type="reset"].inverse, .button.inverse, [role="button"].inverse { background: #2e3440; color: #ECEFF4; } button.inverse:hover, button.inverse:focus, [type="button"].inverse:hover, [type="button"].inverse:focus, [type="submit"].inverse:hover, [type="submit"].inverse:focus, [type="reset"].inverse:hover, [type="reset"].inverse:focus, .button.inverse:hover, .button.inverse:focus, [role="button"].inverse:hover, [role="button"].inverse:focus { background: rgba(46, 52, 64, 0.9); } button.small, [type="button"].small, [type="submit"].small, [type="reset"].small, .button.small, [role="button"].small { border-radius: 1px; padding: 4px 6px; margin: 6px 8px; } button.large, [type="button"].large, [type="submit"].large, [type="reset"].large, .button.large, [role="button"].large { border-radius: 4px; padding: 12px 18px; margin: 10px 8px; } /* Definitions for navigation elements. */ header { display: block; height: 44px; background: #2E3440; color: #ECEFF4; padding: 2px 8px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18), 0 2px 3px rgba(0, 0, 0, 0.26); white-space: nowrap; overflow-x: auto; overflow-y: hidden; } header .logo { color: #ECEFF4; font-size: 1.75em; line-height: 1.2; margin: 1px 6px 1px 1px; padding: 3px 0 0; transition: opacity 0.3s; } header button, header [type="button"], header a.button, header label.button, header .button, header a[role="button"], header label[role="button"], header [role="button"] { background: #2E3440; color: #ECEFF4; vertical-align: top; margin: 2px 0 0; box-shadow: none; } header button:hover, header button:focus, header [type="button"]:hover, header [type="button"]:focus, header a.button:hover, header a.button:focus, header label.button:hover, header label.button:focus, header .button:hover, header .button:focus, header a[role="button"]:hover, header a[role="button"]:focus, header label[role="button"]:hover, header label[role="button"]:focus, header [role="button"]:hover, header [role="button"]:focus { background: #37474f; } header .logo, header a.button, header a[role="button"] { text-decoration: none; } header.row { box-sizing: content-box; } nav { display: block; border: 1px solid #D8DEE9; margin: 2px; padding: 8px 8px 16px 20px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 2px 3px rgba(0, 0, 0, 0.15); } nav a, nav a:visited { display: block; color: #88C0D0; text-decoration: none; } nav .sublink-1 { padding-left: 12px; position: relative; } nav .sublink-1:before { position: absolute; left: 3px; top: -1px; content: ''; height: 100%; border: 1px solid #81A1C1; border-left: 0; } nav .sublink-2 { padding-left: 24px; position: relative; } nav .sublink-2:before { position: absolute; left: 3px; top: -1px; content: ''; height: 100%; border: 1px solid #81A1C1; border-left: 0; } footer { display: block; background: #434C5E; color: #ECEFF4; margin: 18px 0 0; padding: 22px 10px 12px; font-size: 85%; } footer a, footer a:visited { color: #88C0D0; } header.sticky, footer.sticky { position: -webkit-sticky; position: sticky; z-index: 1101; } header.sticky { top: 0; } footer.sticky { bottom: 0; } .drawer-toggle:before { position: relative; top: 7px; font-family: sans-serif; font-size: 40px; line-height: 0.125; content: '\2261'; } .drawer { display: block; box-sizing: border-box; position: fixed; top: 0; width: 320px; height: 100vh; overflow-y: auto; background: #ECEFF4; border: 1px solid #D8DEE9; margin: 0; z-index: 1110; } .drawer:not(.right) { left: -320px; transition: left 0.3s; } .drawer.right { right: -320px; transition: right 0.3s; } .drawer .close { position: absolute; top: 12px; right: 4px; z-index: 1111; padding: 0; } @media screen and (max-width: 320px) { .drawer { width: 100%; } } @media screen and (min-width: 768px) { .drawer:not(.persistent) { position: static; height: 100%; z-index: 1100; } .drawer:not(.persistent) .close { display: none; } .drawer-toggle:not(.persistent) { display: none; } } :checked + .drawer:not(.right) { left: 0; } :checked + .drawer.right { right: 0; } /* Definitions for the responsive table component. */ table { border-collapse: separate; border-spacing: 0; border: 1px solid #D8DEE9; margin: 0 auto; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 2px 3px rgba(0, 0, 0, 0.15); } table caption { font-size: 1.5em; margin: 6px 8px 12px; } table tr { padding: 8px; } table th, table td { padding: 10px; border-left: 1px solid #D8DEE9; border-top: 1px solid #D8DEE9; } table td { background: #ECEFF4; } table thead th { border-top: 0; } table th { background: #D8DEE9; } table th:first-child, table td:first-child { border-left: 0; } @media screen and (max-width: 767px) { table:not(.preset) { border-collapse: collapse; border: 0; width: 100%; box-shadow: none; } table:not(.preset) thead, table:not(.preset) th { border: 0; height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; clip: rect(0 0 0 0); -webkit-clip-path: inset(100%); clip-path: inset(100%); } table:not(.preset) tr { display: block; border: 1px solid #D8DEE9; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 2px 3px rgba(0, 0, 0, 0.15); margin-bottom: 10px; } table:not(.preset) td { display: block; border: 0; border-bottom: 1px solid #D8DEE9; text-align: right; } table:not(.preset) td:before { content: attr(data-label); float: left; font-weight: 700; } table:not(.preset) td:last-child { border-bottom: 0; } } @media screen and (min-width: 768px) { table.horizontal, table.scrollable { display: -webkit-box; -webkit-box-flex: 0; -webkit-box-orient: horizontal; -webkit-box-direction: normal; display: -webkit-flex; display: flex; -webkit-flex: 0 1 auto; flex: 0 1 auto; -webkit-flex-flow: row wrap; flex-flow: row wrap; padding: 8px; } table.horizontal caption, table.scrollable caption { -webkit-box-flex: 1; max-width: 100%; -webkit-flex: 0 0 100%; flex: 0 0 100%; } table.horizontal thead, table.horizontal tbody, table.scrollable thead, table.scrollable tbody { display: -webkit-box; -webkit-box-flex: 0; -webkit-box-orient: horizontal; -webkit-box-direction: normal; display: -webkit-flex; display: flex; } table.horizontal thead, table.scrollable thead { z-index: 999; } table.horizontal tr, table.scrollable tr { display: -webkit-box; display: -webkit-flex; display: flex; } table.horizontal thead, table.horizontal tbody { -webkit-flex-flow: row nowrap; flex-flow: row nowrap; } table.horizontal tbody { overflow: auto; -webkit-box-pack: justify; -webkit-justify-content: space-between; justify-content: space-between; -webkit-flex: 1 0 0; flex: 1 0 0; } table.horizontal tr { -webkit-box-flex: 1; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; -webkit-flex: 1 0 auto; flex: 1 0 auto; } table.horizontal th, table.horizontal td { width: 100%; border: 1px solid #D8DEE9; } table.horizontal th:not(:first-child), table.horizontal td:not(:first-child) { border-top: 0; } table.horizontal th { text-align: right; } table.horizontal thead tr:first-child { padding-left: 0; } table.horizontal tbody tr:first-child > td { padding-left: 20px; } table.scrollable { overflow: auto; max-height: 400px; border: 0; padding-top: 0; } table.scrollable thead, table.scrollable tbody { -webkit-box-flex: 1; max-width: 100%; -webkit-flex-flow: row wrap; flex-flow: row wrap; -webkit-flex: 0 0 100%; flex: 0 0 100%; border: 1px solid #D8DEE9; } table.scrollable tbody { border-top: 0; margin-top: -0.0625rem; } table.scrollable tr { -webkit-box-flex: 0; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-flow: row wrap; flex-flow: row wrap; -webkit-flex: 0 0 100%; flex: 0 0 100%; padding: 0; } table.scrollable th, table.scrollable td { -webkit-box-flex: 1; -webkit-flex: 1 0 0%; flex: 1 0 0%; overflow: hidden; text-overflow: ellipsis; } table.scrollable thead { position: sticky; top: 0; } } @media screen and (max-width: 767px) { table.horizontal.preset, table.scrollable.preset { display: -webkit-box; -webkit-box-flex: 0; -webkit-box-orient: horizontal; -webkit-box-direction: normal; display: -webkit-flex; display: flex; -webkit-flex: 0 1 auto; flex: 0 1 auto; -webkit-flex-flow: row wrap; flex-flow: row wrap; padding: 8px; } table.horizontal.preset caption, table.scrollable.preset caption { -webkit-box-flex: 1; max-width: 100%; -webkit-flex: 0 0 100%; flex: 0 0 100%; } table.horizontal.preset thead, table.horizontal.preset tbody, table.scrollable.preset thead, table.scrollable.preset tbody { display: -webkit-box; -webkit-box-flex: 0; -webkit-box-orient: horizontal; -webkit-box-direction: normal; display: -webkit-flex; display: flex; } table.horizontal.preset thead, table.scrollable.preset thead { z-index: 999; } table.horizontal.preset tr, table.scrollable.preset tr { display: -webkit-box; display: -webkit-flex; display: flex; } table.horizontal.preset thead, table.horizontal.preset tbody { -webkit-flex-flow: row nowrap; flex-flow: row nowrap; } table.horizontal.preset tbody { overflow: auto; -webkit-box-pack: justify; -webkit-justify-content: space-between; justify-content: space-between; -webkit-flex: 1 0 0; flex: 1 0 0; } table.horizontal.preset tr { -webkit-box-flex: 1; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; -webkit-flex: 1 0 auto; flex: 1 0 auto; } table.horizontal.preset th, table.horizontal.preset td { width: 100%; border: 1px solid #D8DEE9; } table.horizontal.preset th:not(:first-child), table.horizontal.preset td:not(:first-child) { border-top: 0; } table.horizontal.preset th { text-align: right; } table.horizontal.preset thead tr:first-child { padding-left: 0; } table.horizontal.preset tbody tr:first-child > td { padding-left: 20px; } table.scrollable.preset { overflow: auto; max-height: 400px; border: 0; padding-top: 0; } table.scrollable.preset thead, table.scrollable.preset tbody { -webkit-box-flex: 1; max-width: 100%; -webkit-flex-flow: row wrap; flex-flow: row wrap; -webkit-flex: 0 0 100%; flex: 0 0 100%; border: 1px solid #D8DEE9; } table.scrollable.preset tbody { border-top: 0; margin-top: -0.0625rem; } table.scrollable.preset tr { -webkit-box-flex: 0; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-flow: row wrap; flex-flow: row wrap; -webkit-flex: 0 0 100%; flex: 0 0 100%; padding: 0; } table.scrollable.preset th, table.scrollable.preset td { -webkit-box-flex: 1; -webkit-flex: 1 0 0%; flex: 1 0 0%; overflow: hidden; text-overflow: ellipsis; } table.scrollable.preset thead { position: sticky; top: 0; } } table.striped tr:nth-of-type(2n) > td { background: #E5E9F0; } @media screen and (max-width: 767px) { table.striped:not(.preset) tr:nth-of-type(2n) { background: #E5E9F0; } } /* Definitions for cards and containers. */ .card { display: -webkit-box; -webkit-box-orient: vertical; -webkit-box-pack: justify; -webkit-box-align: center; display: -webkit-flex; display: flex; -webkit-flex-direction: column; flex-direction: column; -webkit-justify-content: space-between; justify-content: space-between; -webkit-align-self: center; align-self: center; position: relative; width: 100%; border: 1px solid #D8DEE9; margin: 2px 10px 20px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18), 0 2px 3px rgba(0, 0, 0, 0.26); overflow: hidden; } .card > .section { box-sizing: border-box; margin: 0; border: 0; border-radius: 0; border-bottom: 1px solid #E5E9F0; padding: 6px 8px 6px; width: 100%; } .card > .section.media { height: 200px; padding: 0; -o-object-fit: cover; object-fit: cover; } .card > .section:last-child { border-bottom: 0; } @media screen and (min-width: 320px) { .card { max-width: 320px; } } /* Custom elements for cards and containers. */ @media screen and (min-width: 480px) { .card.large { max-width: 480px; } } @media screen and (min-width: 240px) { .card.small { max-width: 240px; } } .card.fluid { max-width: 100%; width: auto; } .card.warning { background: #EBCB8B; border: 1px solid #D08770; } .card.warning > .section { border-bottom: 1px solid #D08770; } .card.warning > .section:last-child { border-bottom: 0; } .card.error { background: #BF616A; color: #ECEFF4; border: 1px solid #BF616A; } .card.error > .section { border-bottom: 1px solid #BF616A; } .card.error > .section:last-child { border-bottom: 0; } .card > .section.darker { background: #D8DEE9; } .card > .section.double-padded { padding: 10px 12px 10px; } /* Definitions for tabs/horizontal accordions. */ .tabs { width: 100%; opacity: 1; display: -webkit-box; -webkit-box-pack: justify; display: -webkit-flex; display: flex; -webkit-justify-content: space-between; justify-content: space-between; -webkit-flex-wrap: wrap; flex-wrap: wrap; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18), 0 2px 3px rgba(0, 0, 0, 0.26); } .tabs > label { -webkit-box-flex: 1; -webkit-flex-grow: 1; flex-grow: 1; -webkit-order: 1; order: 1; display: inline-block; height: 26px; cursor: pointer; transition: background 0.3s; background: #D8DEE9; border: 1px solid #9e9e9e; padding: 8px 12px; } .tabs > label:hover, .tabs > label:focus { background: rgba(216, 222, 233, 0.8); } .tabs > [type="radio"], .tabs > [type="checkbox"] { display: none; visibility: hidden; } .tabs > label + div { -webkit-flex-basis: auto; flex-basis: auto; -webkit-order: 2; order: 2; height: 1px; width: 1px; margin: -1px; overflow: hidden; position: absolute; clip: rect(0 0 0 0); -webkit-clip-path: inset(100%); clip-path: inset(100%); -webkit-transform: scaleY(0); transform: scaleY(0); -webkit-transform-origin: top; transform-origin: top; transition: -webkit-transform 0.3s, transform 0.3s; } .tabs > label:not(:first-of-type) { border-left: 0; } .tabs > :checked + label { background: #4C566A; color: #ECEFF4; border-bottom-color: #5E81AC; } .tabs > :checked + label:hover, .tabs > :checked + label:focus { background: rgba(76, 86, 106, 0.8); } .tabs > :checked + label + div { box-sizing: border-box; position: relative; height: 400px; width: 100%; overflow: auto; margin: 0; -webkit-transform: scaleY(1); transform: scaleY(1); border: 1px solid #9e9e9e; border-top: 0; padding: 8px; clip: auto; -webkit-clip-path: inset(0%); clip-path: inset(0%); } .tabs.stacked { -webkit-box-orient: vertical; -webkit-flex-direction: column; flex-direction: column; } .tabs.stacked > label { -webkit-order: initial; order: initial; } .tabs.stacked > :checked + label { border: 1px solid #9e9e9e; } .tabs.stacked > label + div { -webkit-order: initial; order: initial; -webkit-transform-origin: top; transform-origin: top; } .tabs.stacked > label:not(:first-of-type) { border: 1px solid #9e9e9e; border-top: 0; } .tabs.stacked > :checked + label + div { height: auto; } @media screen and (max-width: 767px) { .tabs { -webkit-box-orient: vertical; -webkit-flex-direction: column; flex-direction: column; } .tabs > label { -webkit-order: initial; order: initial; } .tabs > :checked + label { border: 1px solid #9e9e9e; } .tabs > label + div { -webkit-order: initial; order: initial; } .tabs > label:not(:first-of-type) { border: 1px solid #9e9e9e; border-top: 0; } } /* Definitions for contextual background elements, toasts and tooltips. */ mark { background: #5E81AC; color: #ECEFF4; font-size: 95%; line-height: 1; border-radius: 2px; padding: 2px 4px; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.15); } mark.inline-block { display: inline-block; } .toast { position: fixed; background: #424242; bottom: 24px; left: 50%; transform: translate(-50%, -50%); color: #ECEFF4; border-radius: 32px; padding: 12px 24px; z-index: 1111; } .tooltip { position: relative; display: inline-block; } .tooltip:before, .tooltip:after { position: absolute; opacity: 0; clip: rect(0 0 0 0); -webkit-clip-path: inset(100%); clip-path: inset(100%); transition: all 0.3s; z-index: 1010; left: 50%; } .tooltip:not(.bottom):before, .tooltip:not(.bottom):after { bottom: 75%; } .tooltip.bottom:before, .tooltip.bottom:after { top: 75%; } .tooltip:hover:before, .tooltip:hover:after, .tooltip:focus:before, .tooltip:focus:after { opacity: 1; clip: auto; -webkit-clip-path: inset(0%); clip-path: inset(0%); } .tooltip:before { content: ''; background: transparent; border: 6px solid transparent; left: 50%; left: calc(50% - 6px); } .tooltip:not(.bottom):before { border-top-color: #2E3440; } .tooltip.bottom:before { border-bottom-color: #2E3440; } .tooltip:after { content: attr(aria-label); background: #2E3440; border-radius: 2px; color: #ECEFF4; padding: 6px; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.15); white-space: nowrap; -webkit-transform: translateX(-50%); transform: translateX(-50%); } .tooltip:not(.bottom):after { margin-bottom: 12px; } .tooltip.bottom:after { margin-top: 12px; } .modal { position: fixed; top: 0; left: 0; display: none; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.45); } .modal .card { margin: 0 auto; max-height: 50vh; overflow: auto; } .modal .card .close { position: absolute; top: 12px; right: 4px; padding: 0; } :checked + .modal { display: -webkit-box; -webkit-box-flex: 0; display: -webkit-flex; display: flex; -webkit-flex: 0 1 auto; flex: 0 1 auto; z-index: 1200; } :checked + .modal .card .close { z-index: 1211; } /* Custom contextual background elements and alerts. */ mark.secondary { background: #BF616A; } mark.tertiary { background: #A3BE8C; } mark.tag { border-radius: 200px; padding: 4px 8px; } mark.inline-block { font-size: 100%; line-height: 1.35; padding: 5px; } .toast.small { border-radius: 24px; padding: 8px 16px; } .toast.large { border-radius: 48px; padding: 18px 36px; } /* Definitions for progress elements and spinners. */ progress { display: block; vertical-align: baseline; -webkit-appearance: none; -moz-appearance: none; appearance: none; height: 14px; width: 90%; width: calc(100% - 16px); margin: 2px 8px; border: 0; border-radius: 1px; box-shadow: 0 0.5px 1px rgba(0, 0, 0, 0.1), 0 0.5px 0.5px rgba(0, 0, 0, 0.15); background: #D8DEE9; color: #5E81AC; } progress::-webkit-progress-value { background: #5E81AC; border-top-left-radius: 1px; border-bottom-left-radius: 1px; } progress::-webkit-progress-bar { background: #D8DEE9; } progress::-moz-progress-bar { background: #5E81AC; border-top-left-radius: 1px; border-bottom-left-radius: 1px; } progress[value="1000"]::-webkit-progress-value { border-radius: 1px; } progress[value="1000"]::-moz-progress-bar { border-radius: 1px; } @-webkit-keyframes spinner-donut-anim { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); } } @keyframes spinner-donut-anim { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .spinner-donut { display: inline-block; border: 4px solid #D8DEE9; border-left: 4px solid #5E81AC; border-radius: 50%; width: 20px; height: 20px; -webkit-animation: spinner-donut-anim 1.2s linear infinite; animation: spinner-donut-anim 1.2s linear infinite; } /* Custom elements for progress elements and spinners. */ progress.inline { display: inline-block; vertical-align: middle; width: 60%; } progress.secondary { color: #BF616A; } progress.secondary::-webkit-progress-value { background: #BF616A; } progress.secondary::-moz-progress-bar { background: #BF616A; } progress.tertiary { color: #A3BE8C; } progress.tertiary::-webkit-progress-value { background: #A3BE8C; } progress.tertiary::-moz-progress-bar { background: #A3BE8C; } .spinner-donut.secondary { border: 4px solid #D8DEE9; border-left: 4px solid #BF616A; } .spinner-donut.tertiary { border: 4px solid #D8DEE9; border-left: 4px solid #A3BE8C; } .spinner-donut.large { border-width: 6px; width: 32px; height: 32px; } /* Definitions for utilities and helper classes. */ .hidden { display: none !important; } .visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; margin: -1px !important; border: 0 !important; padding: 0 !important; clip: rect(0 0 0 0) !important; -webkit-clip-path: inset(100%) !important; clip-path: inset(100%) !important; overflow: hidden !important; } ul.breadcrumbs { display: -webkit-box; display: -webkit-flex; display: flex; list-style: none; margin: 10px 8px; padding: 0; border-radius: 4px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.15); } ul.breadcrumbs li { -webkit-box-flex: 1; max-width: 100%; -webkit-flex-grow: 1; flex-grow: 1; -webkit-flex-basis: 0; flex-basis: 0; position: relative; text-align: center; background: #D8DEE9; height: 32px; line-height: 32px; margin-right: 18px; } ul.breadcrumbs li:before, ul.breadcrumbs li:after { content: ""; position: absolute; top: 0; width: 0; height: 0; border: 0 solid #D8DEE9; border-width: 16px 8px; } ul.breadcrumbs li:before { left: -16px; border-left-color: transparent; } ul.breadcrumbs li:after { left: 100%; border-color: transparent; border-left-color: #D8DEE9; } ul.breadcrumbs li:first-child:before { border: 0; } ul.breadcrumbs li:last-child { margin-right: 0; } ul.breadcrumbs li:last-child:after { border: 0; } .close { display: inline-block; width: 32px; font-family: sans-serif; font-size: 32px; line-height: 1; font-weight: 700; border-radius: 2rem; background: rgba(236, 239, 244, 0); vertical-align: top; cursor: pointer; transition: background 0.3s; } .close:hover, .close:focus { background: #eceff4; } .close:before { content: "\00D7"; display: block; text-align: center; } /* Custom elements for utilities and helper classes. */ .bordered { border: 1px solid rgba(0, 0, 0, 0.25) !important; } .rounded { border-radius: 2px !important; } .circular { border-radius: 50% !important; } .responsive-margin { margin: 4px !important; } @media screen and (min-width: 768px) { .responsive-margin { margin: 6px !important; } } @media screen and (min-width: 1280px) { .responsive-margin { margin: 8px !important; } } .responsive-padding { padding: 2px 4px !important; } @media screen and (min-width: 768px) { .responsive-padding { padding: 4px 6px !important; } } @media screen and (min-width: 1280px) { .responsive-padding { padding: 6px 8px !important; } } .shadow-none { box-shadow: none !important; } .shadow-small { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.15) !important; } .shadow-medium { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.15) !important; } .shadow-large { box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 2px 3px rgba(0, 0, 0, 0.15) !important; } @media screen and (max-width: 767px) { .hidden-sm { display: none !important; } } @media screen and (min-width: 768px) and (max-width: 1279px) { .hidden-md { display: none !important; } } @media screen and (min-width: 1280px) { .hidden-lg { display: none !important; } } @media screen and (max-width: 767px) { .visually-hidden-sm { position: absolute !important; width: 1px !important; height: 1px !important; margin: -1px !important; border: 0 !important; padding: 0 !important; clip: rect(0 0 0 0) !important; -webkit-clip-path: inset(100%) !important; clip-path: inset(100%) !important; overflow: hidden !important; } } @media screen and (min-width: 768px) and (max-width: 1279px) { .visually-hidden-md { position: absolute !important; width: 1px !important; height: 1px !important; margin: -1px !important; border: 0 !important; padding: 0 !important; clip: rect(0 0 0 0) !important; -webkit-clip-path: inset(100%) !important; clip-path: inset(100%) !important; overflow: hidden !important; } } @media screen and (min-width: 1280px) { .visually-hidden-lg { position: absolute !important; width: 1px !important; height: 1px !important; margin: -1px !important; border: 0 !important; padding: 0 !important; clip: rect(0 0 0 0) !important; -webkit-clip-path: inset(100%) !important; clip-path: inset(100%) !important; overflow: hidden !important; } }
venv/bin/libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1scalar__matrix_1_1const__iterator2.html
NixaSoftware/CVis
<!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"/> <title>ublas: boost::numeric::ublas::scalar_matrix&lt; T, ALLOC &gt;::const_iterator2 Class Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="doxygen.css" rel="stylesheet" type="text/css"/> </head> <body> <!-- Generated by Doxygen 1.6.1 --> <div class="navigation" id="top"> <div class="tabs"> <ul> <li><a href="index.html"><span>Main&nbsp;Page</span></a></li> <li><a href="pages.html"><span>Related&nbsp;Pages</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> </ul> </div> <div class="tabs"> <ul> <li><a href="annotated.html"><span>Class&nbsp;List</span></a></li> <li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&nbsp;Members</span></a></li> </ul> </div> <div class="navpath"><b>boost</b>::<b>numeric</b>::<b>ublas</b>::<a class="el" href="classboost_1_1numeric_1_1ublas_1_1scalar__matrix.html">scalar_matrix</a>::<a class="el" href="classboost_1_1numeric_1_1ublas_1_1scalar__matrix_1_1const__iterator2.html">const_iterator2</a> </div> </div> <div class="contents"> <h1>boost::numeric::ublas::scalar_matrix&lt; T, ALLOC &gt;::const_iterator2 Class Reference</h1><!-- doxytag: class="boost::numeric::ublas::scalar_matrix::const_iterator2" --> <p><a href="classboost_1_1numeric_1_1ublas_1_1scalar__matrix_1_1const__iterator2-members.html">List of all members.</a></p> <table border="0" cellpadding="0" cellspacing="0"> <tr><td colspan="2"><h2>Public Types</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a401f7012cf659e653f44ab78b77e8186"></a><!-- doxytag: member="boost::numeric::ublas::scalar_matrix::const_iterator2::value_type" ref="a401f7012cf659e653f44ab78b77e8186" args="" --> typedef scalar_matrix::value_type&nbsp;</td><td class="memItemRight" valign="bottom"><b>value_type</b></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af7c8953bd8dd0af72dc201bb321564ef"></a><!-- doxytag: member="boost::numeric::ublas::scalar_matrix::const_iterator2::difference_type" ref="af7c8953bd8dd0af72dc201bb321564ef" args="" --> typedef <br class="typebreak"/> scalar_matrix::difference_type&nbsp;</td><td class="memItemRight" valign="bottom"><b>difference_type</b></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a10808afc0f5adffe69c85602bb850e8f"></a><!-- doxytag: member="boost::numeric::ublas::scalar_matrix::const_iterator2::reference" ref="a10808afc0f5adffe69c85602bb850e8f" args="" --> typedef <br class="typebreak"/> scalar_matrix::const_reference&nbsp;</td><td class="memItemRight" valign="bottom"><b>reference</b></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a02e76e1b04856b04fa4360f0fc3b9497"></a><!-- doxytag: member="boost::numeric::ublas::scalar_matrix::const_iterator2::pointer" ref="a02e76e1b04856b04fa4360f0fc3b9497" args="" --> typedef <br class="typebreak"/> scalar_matrix::const_pointer&nbsp;</td><td class="memItemRight" valign="bottom"><b>pointer</b></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5e125acee0d98bcfd91877cca29aa4bd"></a><!-- doxytag: member="boost::numeric::ublas::scalar_matrix::const_iterator2::dual_iterator_type" ref="a5e125acee0d98bcfd91877cca29aa4bd" args="" --> typedef <a class="el" href="classboost_1_1numeric_1_1ublas_1_1scalar__matrix_1_1const__iterator1.html">const_iterator1</a>&nbsp;</td><td class="memItemRight" valign="bottom"><b>dual_iterator_type</b></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a7f4b705686dd4a15f4b519e0a960ee3b"></a><!-- doxytag: member="boost::numeric::ublas::scalar_matrix::const_iterator2::dual_reverse_iterator_type" ref="a7f4b705686dd4a15f4b519e0a960ee3b" args="" --> typedef const_reverse_iterator1&nbsp;</td><td class="memItemRight" valign="bottom"><b>dual_reverse_iterator_type</b></td></tr> <tr><td colspan="2"><h2>Public Member Functions</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a3c34f596077d98fd95a1c35949a3631d"></a><!-- doxytag: member="boost::numeric::ublas::scalar_matrix::const_iterator2::const_iterator2" ref="a3c34f596077d98fd95a1c35949a3631d" args="(const scalar_matrix &amp;m, const const_subiterator_type &amp;it1, const const_subiterator_type &amp;it2)" --> BOOST_UBLAS_INLINE&nbsp;</td><td class="memItemRight" valign="bottom"><b>const_iterator2</b> (const <a class="el" href="classboost_1_1numeric_1_1ublas_1_1scalar__matrix.html">scalar_matrix</a> &amp;m, const const_subiterator_type &amp;it1, const const_subiterator_type &amp;it2)</td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a29094383d57f5802c72d87581a95d05b"></a><!-- doxytag: member="boost::numeric::ublas::scalar_matrix::const_iterator2::operator++" ref="a29094383d57f5802c72d87581a95d05b" args="()" --> BOOST_UBLAS_INLINE <br class="typebreak"/> <a class="el" href="classboost_1_1numeric_1_1ublas_1_1scalar__matrix_1_1const__iterator2.html">const_iterator2</a> &amp;&nbsp;</td><td class="memItemRight" valign="bottom"><b>operator++</b> ()</td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af99a055acc057228251e093e76683f62"></a><!-- doxytag: member="boost::numeric::ublas::scalar_matrix::const_iterator2::operator&#45;&#45;" ref="af99a055acc057228251e093e76683f62" args="()" --> BOOST_UBLAS_INLINE <br class="typebreak"/> <a class="el" href="classboost_1_1numeric_1_1ublas_1_1scalar__matrix_1_1const__iterator2.html">const_iterator2</a> &amp;&nbsp;</td><td class="memItemRight" valign="bottom"><b>operator--</b> ()</td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad4ce5b70c7465455af393b184970f8d0"></a><!-- doxytag: member="boost::numeric::ublas::scalar_matrix::const_iterator2::operator+=" ref="ad4ce5b70c7465455af393b184970f8d0" args="(difference_type n)" --> BOOST_UBLAS_INLINE <br class="typebreak"/> <a class="el" href="classboost_1_1numeric_1_1ublas_1_1scalar__matrix_1_1const__iterator2.html">const_iterator2</a> &amp;&nbsp;</td><td class="memItemRight" valign="bottom"><b>operator+=</b> (difference_type n)</td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="acfb22ed8b9df08fd4b1d5c52957ee99f"></a><!-- doxytag: member="boost::numeric::ublas::scalar_matrix::const_iterator2::operator&#45;=" ref="acfb22ed8b9df08fd4b1d5c52957ee99f" args="(difference_type n)" --> BOOST_UBLAS_INLINE <br class="typebreak"/> <a class="el" href="classboost_1_1numeric_1_1ublas_1_1scalar__matrix_1_1const__iterator2.html">const_iterator2</a> &amp;&nbsp;</td><td class="memItemRight" valign="bottom"><b>operator-=</b> (difference_type n)</td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab7eaf6128a65f8943e79443a926c36b5"></a><!-- doxytag: member="boost::numeric::ublas::scalar_matrix::const_iterator2::operator&#45;" ref="ab7eaf6128a65f8943e79443a926c36b5" args="(const const_iterator2 &amp;it) const " --> BOOST_UBLAS_INLINE difference_type&nbsp;</td><td class="memItemRight" valign="bottom"><b>operator-</b> (const <a class="el" href="classboost_1_1numeric_1_1ublas_1_1scalar__matrix_1_1const__iterator2.html">const_iterator2</a> &amp;it) const </td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aeb547fd84e58983c0dc6f04f6572c1ba"></a><!-- doxytag: member="boost::numeric::ublas::scalar_matrix::const_iterator2::operator*" ref="aeb547fd84e58983c0dc6f04f6572c1ba" args="() const " --> BOOST_UBLAS_INLINE const_reference&nbsp;</td><td class="memItemRight" valign="bottom"><b>operator*</b> () const </td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2a8719f206f708d101b21c1ca621ddd0"></a><!-- doxytag: member="boost::numeric::ublas::scalar_matrix::const_iterator2::operator[]" ref="a2a8719f206f708d101b21c1ca621ddd0" args="(difference_type n) const " --> BOOST_UBLAS_INLINE const_reference&nbsp;</td><td class="memItemRight" valign="bottom"><b>operator[]</b> (difference_type n) const </td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5bc1708e5b0bd227c70d912ad87e3744"></a><!-- doxytag: member="boost::numeric::ublas::scalar_matrix::const_iterator2::begin" ref="a5bc1708e5b0bd227c70d912ad87e3744" args="() const " --> BOOST_UBLAS_INLINE <a class="el" href="classboost_1_1numeric_1_1ublas_1_1scalar__matrix_1_1const__iterator1.html">const_iterator1</a>&nbsp;</td><td class="memItemRight" valign="bottom"><b>begin</b> () const </td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab5a745a2f400a2940d111cc384143780"></a><!-- doxytag: member="boost::numeric::ublas::scalar_matrix::const_iterator2::end" ref="ab5a745a2f400a2940d111cc384143780" args="() const " --> BOOST_UBLAS_INLINE <a class="el" href="classboost_1_1numeric_1_1ublas_1_1scalar__matrix_1_1const__iterator1.html">const_iterator1</a>&nbsp;</td><td class="memItemRight" valign="bottom"><b>end</b> () const </td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a6ef9a6d5d3ff3d12a6a8bd58da97d55b"></a><!-- doxytag: member="boost::numeric::ublas::scalar_matrix::const_iterator2::rbegin" ref="a6ef9a6d5d3ff3d12a6a8bd58da97d55b" args="() const " --> BOOST_UBLAS_INLINE <br class="typebreak"/> const_reverse_iterator1&nbsp;</td><td class="memItemRight" valign="bottom"><b>rbegin</b> () const </td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a8f4288c81a02f5f97aef2a253c117cc7"></a><!-- doxytag: member="boost::numeric::ublas::scalar_matrix::const_iterator2::rend" ref="a8f4288c81a02f5f97aef2a253c117cc7" args="() const " --> BOOST_UBLAS_INLINE <br class="typebreak"/> const_reverse_iterator1&nbsp;</td><td class="memItemRight" valign="bottom"><b>rend</b> () const </td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a9315e93cf5ee5a6cde93777960f2bf28"></a><!-- doxytag: member="boost::numeric::ublas::scalar_matrix::const_iterator2::index1" ref="a9315e93cf5ee5a6cde93777960f2bf28" args="() const " --> BOOST_UBLAS_INLINE size_type&nbsp;</td><td class="memItemRight" valign="bottom"><b>index1</b> () const </td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="afa522f31c3cb6375b79e78e16889abf4"></a><!-- doxytag: member="boost::numeric::ublas::scalar_matrix::const_iterator2::index2" ref="afa522f31c3cb6375b79e78e16889abf4" args="() const " --> BOOST_UBLAS_INLINE size_type&nbsp;</td><td class="memItemRight" valign="bottom"><b>index2</b> () const </td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a54e7279d6ab5932b307da42699525182"></a><!-- doxytag: member="boost::numeric::ublas::scalar_matrix::const_iterator2::operator=" ref="a54e7279d6ab5932b307da42699525182" args="(const const_iterator2 &amp;it)" --> BOOST_UBLAS_INLINE <br class="typebreak"/> <a class="el" href="classboost_1_1numeric_1_1ublas_1_1scalar__matrix_1_1const__iterator2.html">const_iterator2</a> &amp;&nbsp;</td><td class="memItemRight" valign="bottom"><b>operator=</b> (const <a class="el" href="classboost_1_1numeric_1_1ublas_1_1scalar__matrix_1_1const__iterator2.html">const_iterator2</a> &amp;it)</td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a6b370faad5fb0983bcd47c752a3db1e6"></a><!-- doxytag: member="boost::numeric::ublas::scalar_matrix::const_iterator2::operator==" ref="a6b370faad5fb0983bcd47c752a3db1e6" args="(const const_iterator2 &amp;it) const " --> BOOST_UBLAS_INLINE bool&nbsp;</td><td class="memItemRight" valign="bottom"><b>operator==</b> (const <a class="el" href="classboost_1_1numeric_1_1ublas_1_1scalar__matrix_1_1const__iterator2.html">const_iterator2</a> &amp;it) const </td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad4ec764444421dd412d3c81cb42497bf"></a><!-- doxytag: member="boost::numeric::ublas::scalar_matrix::const_iterator2::operator&lt;" ref="ad4ec764444421dd412d3c81cb42497bf" args="(const const_iterator2 &amp;it) const " --> BOOST_UBLAS_INLINE bool&nbsp;</td><td class="memItemRight" valign="bottom"><b>operator&lt;</b> (const <a class="el" href="classboost_1_1numeric_1_1ublas_1_1scalar__matrix_1_1const__iterator2.html">const_iterator2</a> &amp;it) const </td></tr> </table> <h3>template&lt;class T, class ALLOC&gt;<br/> class boost::numeric::ublas::scalar_matrix&lt; T, ALLOC &gt;::const_iterator2</h3> </div> <hr size="1"/><address style="text-align: right;"><small>Generated on Sun Jul 4 20:31:06 2010 for ublas by&nbsp; <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address> </body> </html>
wp-content/upgrade/contact-form-plugin.tmp/contact-form-plugin/bws_menu/css/general_style.css
xpander54/ays
#adminmenu #toplevel_page_bws_plugins div.wp-menu-image, .admin-color-classic #adminmenu #toplevel_page_bws_plugins div.wp-menu-image, #adminmenu #toplevel_page_bws_plugins:hover div.wp-menu-image, #adminmenu #toplevel_page_bws_plugins.wp-has-current-submenu div.wp-menu-image { background: url("../images/icon_16_single.png") no-repeat scroll center center transparent; } #adminmenu #toplevel_page_bws_plugins.wp-not-current-submenu div.wp-menu-image { opacity: 0.7; } #toplevel_page_bws_plugins .wp-submenu .wp-first-item { display: none; } /* * styles for rate-support div on the settings page */ .bws-plugin-reviews { background: none repeat scroll 0 0 #BEE1F1; border: 1px solid #70A8C2; border-radius: 3px; max-width: 700px; } .bws-plugin-reviews-rate { padding: 10px; border-bottom: 1px dashed #70A8C2; } .bws-plugin-reviews-support { padding: 10px; } /* * styles for Go PRO tab */ .bws_go_pro_tab { background-color: #2A95C5; border-color: #11688F; color: #FFFFFF; font-weight: normal; text-shadow: none; } .bws_go_pro_tab:hover { background-color: #2080AB; color: #FFFFFF; border-color: #11688F; } .bws_go_pro_tab.nav-tab-active { background: none repeat scroll 0 0 rgba(0, 0, 0, 0); border-color: #CCCCCC #CCCCCC #F1F1F1; color: #000000; } /* * styles for pro_version settings and tooltip */ td.bws_pro_version, tr.bws_pro_version, .nav-tab.bws_plugin_menu_pro_version, .nav-tab.bws_plugin_menu_pro_version:hover { background: rgba(248, 226, 104, 0.11) url("../images/pattern_bg.png"); border: 1px solid #AAA; } td.bws_pro_version_tooltip { border: 1px solid #AAA; position: inherit; } .bws_pro_version_bloc { position: relative; margin: 5px 0; border: 1px solid #AAAAAA; max-width: 800px; } .bws_table_bg { background: #f8e268 url("../images/pattern.png"); opacity: 0.11; filter:progid:DXImageTransform.Microsoft.Alpha(opacity=11); /* IE 5.5+*/ -moz-opacity: 0.11; /* Mozilla 1.6 и ниже */ width: 100%; height: 100%; position: absolute; z-index: 1; } .bws_pro_version_table_bloc table.bws_pro_version { background: transparent; margin: 0; border: none; width: 100%; } table.bws_pro_version { background: #E0E0E0; border: 1px solid #AAA; margin-bottom: 5px; width: auto; } table.bws_pro_version tbody { display: block; } table.bws_pro_version th, table.bws_pro_version td { padding-left: 10px; } .bws_pro_version_tooltip { background: #FFF; border-top: 1px solid #AAA; position: relative; z-index: 2; padding: 10px; font-size: 14px; } .bws_pro_version_tooltip .bws_button { background: #dd5738; border: none; text-decoration: none; color: #fff; padding: 5px 17px; border-radius: 2px; margin: 5px 10px; float: right; } .bws_pro_version_tooltip .bws_info { float: left; padding-top: 10px; } div.bws_pro_version { padding: 5px 10px; } a.bws_plugin_pro_version { display: block; background: rgba(248, 226, 104, 0.11) url("../images/pattern_bg.png"); border: 1px solid #AAA; padding: 5px; text-decoration: none; color: #666; } .bws_pro_version_single_link, .bws_pro_version_single_link:hover { text-decoration: none; color: #666; } /* style for mini-block (ex. google map) */ .bws_pro_version_bloc_mini .bws_pro_version_table_bloc table.bws_pro_version { width: auto; } .bws_pro_version_bloc_mini .bws_pro_version_tooltip { padding: 10px 61px; text-align: center; width: 200px; } .bws_pro_version_bloc_mini .bws_pro_version_tooltip a { display: inline-block; line-height: 1.5; } .bws_pro_version_bloc_mini .bws_pro_version_tooltip .bws_button { margin: 10px 10px 5px; padding: 5px 50px; float: none; } /* #### Mobile Phones Portrait or Landscape #### */ @media screen and (max-device-width: 640px) { .bws_pro_version_tooltip { padding: 10px; text-align: center; } .bws_pro_version_tooltip .bws_info { float: none; text-align: center; } .bws_pro_version_tooltip a { display: inline-block; line-height: 1.5; } .bws_pro_version_tooltip .bws_info a { display: block; } .bws_pro_version_tooltip .bws_button { margin: 10px 10px 5px; padding: 5px 50px; float: none; } } /* * styles for banner */ .bws_banner_on_plugin_page { border: 1px solid #d4d4d4; margin: 12px 0; background: #FFF; position: relative; overflow: hidden } .bws_banner_on_plugin_page .text { color: #000; font-size: 15px; line-height: 26px; margin: 18px 18px 14px; float: left; width: auto; max-width: 80%; } .bws_banner_on_plugin_page .text span { font-size: 12px; opacity: 0.7; } .bws_banner_on_plugin_page .button { float: left; border: none; font-size: 14px; margin: 18px 0 18px 16px; padding: 12px 0; color: #FFF; text-shadow: none; font-weight: bold; background: #0074A2; -moz-border-radius: 3px; border-radius: 3px; -webkit-border-radius: 3px; text-decoration: none; height: 50px; text-align: center; text-transform: uppercase; width: 147px; box-shadow: none; line-height: 26px; } .bws_banner_on_plugin_page .button:hover, .bws_banner_on_plugin_page .button:focus { background: #222; color: #FFF; } .bws_banner_on_plugin_page .icon { float: right; margin: 12px 8px 8px 0; } .bws_banner_on_plugin_page .close_icon { float: right; margin: 8px; cursor: pointer; } /* #### Mobile Phones Portrait or Landscape #### */ @media screen and (max-device-width: 640px) { .bws_banner_on_plugin_page .text, .bws_banner_on_plugin_page .icon, .bws_banner_on_plugin_page .button_div, .bws_banner_on_plugin_page .button { float: none; text-align: center; max-width: 100%; } }
plugins/content/sigplus/engines/boxplus/slider/css/boxplus.transition.css
L16jovenesTIC/portal-web
/*! * @file * @brief boxplus image transition stylesheet * @author Levente Hunyadi * @version 1.4.2 * @remarks Copyright (C) 2009-2010 Levente Hunyadi * @remarks Licensed under GNU/GPLv3, see http://www.gnu.org/licenses/gpl-3.0.html * @see http://hunyadi.info.hu/projects/boxplus */ .boxplus-wrapper { margin:6px; border:0 none transparent !important; padding:0 !important; } .boxplus-transition { position:relative !important; } .boxplus-transition, .boxplus-transition > div, .boxplus-transition > ul { margin:0 !important; border:0 none transparent !important; padding:0 !important; } .boxplus-transition > a { display:block !important; position:absolute !important; height:100% !important; width:100% !important; } /* slices */ .boxplus-transition > div { position:absolute !important; } .boxplus-transition, .boxplus-transition > div { background-color:#000 !important; background-repeat:no-repeat !important; background-attachment:scroll !important; } .boxplus-transition > ul { visibility:hidden !important; position:relative !important; /* rules below for page aesthetics only */ } .boxplus-transition > ul > li { position:absolute !important; /* rules below for page aesthetics only */ top:0 !important; left:0 !important; } /* overlay navigation buttons */ .boxplus-transition > div.boxplus-prev, .boxplus-transition > div.boxplus-next { background:transparent url(transparent.gif) no-repeat scroll center center !important; z-index:2 !important; } .boxplus-transition > div.boxplus-prev.boxplus-disabled, .boxplus-transition > div.boxplus-next.boxplus-disabled { display:none !important; } .boxplus-transition.boxplus-horizontal > div.boxplus-prev, .boxplus-transition.boxplus-horizontal > div.boxplus-next { height:100% !important; } .boxplus-transition.boxplus-vertical > div.boxplus-prev, .boxplus-transition.boxplus-vertical > div.boxplus-next { width:100% !important; } .boxplus-transition.boxplus-horizontal > div.boxplus-prev { left:0 !important; background-position:left center !important; } .boxplus-transition.boxplus-horizontal > div.boxplus-prev.boxplus-large { width:57px !important; } .boxplus-transition.boxplus-horizontal > div.boxplus-prev.boxplus-large:hover { background-image:url(btnLeftLarge.png) !important; } .boxplus-transition.boxplus-horizontal > div.boxplus-prev.boxplus-small { width:29px !important; } .boxplus-transition.boxplus-horizontal > div.boxplus-prev.boxplus-small:hover { background-image:url(btnLeftSmall.png) !important; } .boxplus-transition.boxplus-horizontal > div.boxplus-next { right:0 !important; background-position:right center !important; } .boxplus-transition.boxplus-horizontal > div.boxplus-next.boxplus-large { width:57px !important; } .boxplus-transition.boxplus-horizontal > div.boxplus-next.boxplus-large:hover { background-image:url(btnRightLarge.png) !important; } .boxplus-transition.boxplus-horizontal > div.boxplus-next.boxplus-small { width:29px !important; } .boxplus-transition.boxplus-horizontal > div.boxplus-next.boxplus-small:hover { background-image:url(btnRightSmall.png) !important; } .boxplus-transition.boxplus-vertical > div.boxplus-prev { top:0 !important; background-position:center top !important; } .boxplus-transition.boxplus-vertical > div.boxplus-prev.boxplus-large { height:57px !important; } .boxplus-transition.boxplus-vertical > div.boxplus-prev.boxplus-large:hover { background-image:url(btnUpLarge.png) !important; } .boxplus-transition.boxplus-vertical > div.boxplus-prev.boxplus-small { height:29px !important; } .boxplus-transition.boxplus-vertical > div.boxplus-prev.boxplus-small:hover { background-image:url(btnUpSmall.png) !important; } .boxplus-transition.boxplus-vertical > div.boxplus-next { bottom:0 !important; background-position:center bottom !important; } .boxplus-transition.boxplus-vertical > div.boxplus-next.boxplus-large { height:57px !important; } .boxplus-transition.boxplus-vertical > div.boxplus-next.boxplus-large:hover { background-image:url(btnDownLarge.png) !important; } .boxplus-transition.boxplus-vertical > div.boxplus-next.boxplus-small { height:29px !important; } .boxplus-transition.boxplus-vertical > div.boxplus-next.boxplus-small:hover { background-image:url(btnDownSmall.png) !important; }
yui/examples/charts/charts-skins_clean.html
recap/weevilscout
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <title>Skinning a Chart Example</title> <style type="text/css"> /*margin and padding on body element can introduce errors in determining element position and are not recommended; we turn them off as a foundation for YUI CSS treatments. */ body { margin:0; padding:0; } </style> <link rel="stylesheet" type="text/css" href="../../build/fonts/fonts-min.css" /> <script type="text/javascript" src="../../build/yahoo-dom-event/yahoo-dom-event.js"></script> <script type="text/javascript" src="../../build/json/json-min.js"></script> <script type="text/javascript" src="../../build/element/element-min.js"></script> <script type="text/javascript" src="../../build/datasource/datasource-min.js"></script> <script type="text/javascript" src="../../build/swf/swf-min.js"></script> <script type="text/javascript" src="../../build/charts/charts-min.js"></script> <!--begin custom header content for this example--> <style type="text/css"> #chart { width: 580px; height: 400px; } .chart_title { display: block; font-size: 1.2em; font-weight: bold; margin-bottom: 0.4em; } </style> <!--end custom header content for this example--> </head> <body class="yui-skin-sam"> <h1>Skinning a Chart Example</h1> <div class="exampleIntro"> <p>This example demonstrates how to modify the <a href="http://developer.yahoo.com/yui/charts/">YUI Charts Control</a>'s styles to give it a custom appearance.</p> <p>Please note: The YUI Charts Control requires Flash Player 9.0.45 or higher. The latest version of Flash Player is available at the <a href="http://www.adobe.com/go/getflashplayer">Adobe Flash Player Download Center</a>.</p> </div> <!--BEGIN SOURCE CODE FOR EXAMPLE =============================== --> <span class="chart_title">Wilson's Supermarket - Product Comparison</span> <div id="chart">Unable to load Flash content. The YUI Charts Control requires Flash Player 9.0.45 or higher. You can download the latest version of Flash Player from the <a href="http://www.adobe.com/go/getflashplayer">Adobe Flash Player Download Center</a>.</p></div> <script type="text/javascript"> YAHOO.widget.Chart.SWFURL = "../../build/charts/assets/charts.swf"; //--- data YAHOO.example.salesComparison = [ { month: "Oct", pork: 1354, beef: 1442 }, { month: "Nov", pork: 1326, beef: 1496 }, { month: "Dec", pork: 1292, beef: 1582 }, { month: "Jan", pork: 1387, beef: 1597 }, { month: "Feb", pork: 1376, beef: 1603 } ]; var salesData = new YAHOO.util.DataSource( YAHOO.example.salesComparison ); salesData.responseType = YAHOO.util.DataSource.TYPE_JSARRAY; salesData.responseSchema = { fields: [ "month", "pork", "beef" ] }; //--- chart var seriesDef = [ { yField: "pork", displayName: "Sales of Pork", style: { image: "assets/tube.png", mode: "no-repeat", color: 0x2e434d, size: 40 } }, { yField: "beef", displayName: "Sales of Beef", style: { image: "assets/tube.png", mode: "no-repeat", color: 0xc2d81e, size: 40 } } ]; var mychart = new YAHOO.widget.ColumnChart( "chart", salesData, { series: seriesDef, xField: "month", style: { border: {color: 0x96acb4, size: 12}, font: {name: "Arial Black", size: 14, color: 0x586b71}, dataTip: { border: {color: 0x2e434d, size: 2}, font: {name: "Arial Black", size: 13, color: 0x586b71} }, xAxis: { color: 0x2e434d }, yAxis: { color: 0x2e434d, majorTicks: {color: 0x2e434d, length: 4}, minorTicks: {color: 0x2e434d, length: 2}, majorGridLines: {size: 0} } } }); </script> <!--END SOURCE CODE FOR EXAMPLE =============================== --> </body> </html>
Topics/08. jQuery Overview/demos/1. selection/1. selectors.html
TelerikAcademy/JavaScript-UI-and-DOM
<!DOCTYPE html> <html> <head> <title></title> <script type="text/javascript" src="../jquery-1.11.3.js"></script> </head> <body> <header> <h1>The Header</h1> </header> <section> <div id="content"> <strong>Messages: </strong> <ul id="message-list"> </ul> </div> </section> <aside class="widget"> <h2>Widget 1</h2> <ul> <li> <a href="#">Item 1</a> </li> <li> <a href="#">Item 1</a> </li> <li> <a href="#">Item 1</a> </li> </ul> </aside> <script type="text/javascript"> function printContent(text) { $("#message-list").append("<li>Message: <strong>" + text + "</strong></li>"); } var $items = $("ul li"); printContent($items.length); printContent($(".widget").text()); </script> </body> </html>
themes/edx.org/cms/templates/widgets/sock.html
ahmedaljazzar/edx-platform
<%page expression_filter="h" args="online_help_token"/> <%! from django.utils.translation import ugettext as _ from django.urls import reverse %> <div class="wrapper-sock wrapper"> <ul class="list-actions list-cta"> <li class="action-item"> <a href="#sock" class="cta cta-show-sock"><span class="icon fa fa-question-circle" aria-hidden="true"></span> <span class="copy-show is-shown">${_("Looking for help with {studio_name}?").format(studio_name=settings.STUDIO_SHORT_NAME)}</span> <span class="copy-hide is-hidden">${_("Hide {studio_name} Help").format(studio_name=settings.STUDIO_SHORT_NAME)}</span> </a> </li> </ul> <div class="wrapper-inner wrapper"> <section class="sock" id="sock"> <header> <h2 class="title sr-only">${_("{studio_name} Documentation").format(studio_name=settings.STUDIO_NAME)}</h2> </header> <div class="support"> <%! from django.conf import settings partner_email = settings.PARTNER_SUPPORT_EMAIL links = [{ 'href': 'http://docs.edx.org', 'sr_mouseover_text': _('Access documentation on http://docs.edx.org'), 'text': _('edX Documentation'), 'condition': True }, { 'href': 'https://partners.edx.org', 'sr_mouseover_text': _('Access Course Staff Support on the Partner Portal to submit or review support tickets'), 'text': _('edX Partner Portal'), 'condition': True }, { 'href': 'https://www.edx.org/course/overview-creating-edx-course-edx-edx101#.VO4eaLPF-n1', 'sr_mouseover_text': _('Enroll in edX101: Overview of Creating an edX Course'), 'text': _('Enroll in edX101'), 'condition': True }, { 'href': 'https://www.edx.org/course/creating-course-edx-studio-edx-studiox', 'sr_mouseover_text': _('Enroll in StudioX: Creating a Course with edX Studio'), 'text': _('Enroll in StudioX'), 'condition': True }, { 'href': 'mailto:{email}'.format(email=partner_email), 'sr_mouseover_text': _('Send an email to {email}').format(email=partner_email), 'text': _('Contact Us'), 'condition': bool(partner_email) }] %> <ul class="list-actions"> % for link in links: % if link['condition']: <li class="action-item"> <a href="${link['href']}" title="${link['sr_mouseover_text']}" rel="external" class="action action-primary">${link['text']}</a> <span class="tip">${link['sr_mouseover_text']}</span> </li> %endif % endfor </ul> </div> </section> </div> </div>
zutils/base2/xml/third_party/tinyxml/docs/tinyxml_8h-source.html
wubenqi/zutils
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> <title>TinyXml: tinyxml.h Source File</title> <link href="doxygen.css" rel="stylesheet" type="text/css"> <link href="tabs.css" rel="stylesheet" type="text/css"> </head><body> <!-- Generated by Doxygen 1.4.7 --> <div class="tabs"> <ul> <li><a href="index.html"><span>Main&nbsp;Page</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li id="current"><a href="files.html"><span>Files</span></a></li> <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li> </ul></div> <h1>tinyxml.h</h1><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span> <a name="l00002"></a>00002 <span class="comment">www.sourceforge.net/projects/tinyxml</span> <a name="l00003"></a>00003 <span class="comment">Original code (2.0 and earlier )copyright (c) 2000-2006 Lee Thomason (www.grinninglizard.com)</span> <a name="l00004"></a>00004 <span class="comment"></span> <a name="l00005"></a>00005 <span class="comment">This software is provided 'as-is', without any express or implied</span> <a name="l00006"></a>00006 <span class="comment">warranty. In no event will the authors be held liable for any</span> <a name="l00007"></a>00007 <span class="comment">damages arising from the use of this software.</span> <a name="l00008"></a>00008 <span class="comment"></span> <a name="l00009"></a>00009 <span class="comment">Permission is granted to anyone to use this software for any</span> <a name="l00010"></a>00010 <span class="comment">purpose, including commercial applications, and to alter it and</span> <a name="l00011"></a>00011 <span class="comment">redistribute it freely, subject to the following restrictions:</span> <a name="l00012"></a>00012 <span class="comment"></span> <a name="l00013"></a>00013 <span class="comment">1. The origin of this software must not be misrepresented; you must</span> <a name="l00014"></a>00014 <span class="comment">not claim that you wrote the original software. If you use this</span> <a name="l00015"></a>00015 <span class="comment">software in a product, an acknowledgment in the product documentation</span> <a name="l00016"></a>00016 <span class="comment">would be appreciated but is not required.</span> <a name="l00017"></a>00017 <span class="comment"></span> <a name="l00018"></a>00018 <span class="comment">2. Altered source versions must be plainly marked as such, and</span> <a name="l00019"></a>00019 <span class="comment">must not be misrepresented as being the original software.</span> <a name="l00020"></a>00020 <span class="comment"></span> <a name="l00021"></a>00021 <span class="comment">3. This notice may not be removed or altered from any source</span> <a name="l00022"></a>00022 <span class="comment">distribution.</span> <a name="l00023"></a>00023 <span class="comment">*/</span> <a name="l00024"></a>00024 <a name="l00025"></a>00025 <a name="l00026"></a>00026 <span class="preprocessor">#ifndef TINYXML_INCLUDED</span> <a name="l00027"></a>00027 <span class="preprocessor"></span><span class="preprocessor">#define TINYXML_INCLUDED</span> <a name="l00028"></a>00028 <span class="preprocessor"></span> <a name="l00029"></a>00029 <span class="preprocessor">#ifdef _MSC_VER</span> <a name="l00030"></a>00030 <span class="preprocessor"></span><span class="preprocessor">#pragma warning( push )</span> <a name="l00031"></a>00031 <span class="preprocessor"></span><span class="preprocessor">#pragma warning( disable : 4530 )</span> <a name="l00032"></a>00032 <span class="preprocessor"></span><span class="preprocessor">#pragma warning( disable : 4786 )</span> <a name="l00033"></a>00033 <span class="preprocessor"></span><span class="preprocessor">#endif</span> <a name="l00034"></a>00034 <span class="preprocessor"></span> <a name="l00035"></a>00035 <span class="preprocessor">#include &lt;ctype.h&gt;</span> <a name="l00036"></a>00036 <span class="preprocessor">#include &lt;stdio.h&gt;</span> <a name="l00037"></a>00037 <span class="preprocessor">#include &lt;stdlib.h&gt;</span> <a name="l00038"></a>00038 <span class="preprocessor">#include &lt;string.h&gt;</span> <a name="l00039"></a>00039 <span class="preprocessor">#include &lt;assert.h&gt;</span> <a name="l00040"></a>00040 <a name="l00041"></a>00041 <span class="comment">// Help out windows:</span> <a name="l00042"></a>00042 <span class="preprocessor">#if defined( _DEBUG ) &amp;&amp; !defined( DEBUG )</span> <a name="l00043"></a>00043 <span class="preprocessor"></span><span class="preprocessor">#define DEBUG</span> <a name="l00044"></a>00044 <span class="preprocessor"></span><span class="preprocessor">#endif</span> <a name="l00045"></a>00045 <span class="preprocessor"></span> <a name="l00046"></a>00046 <span class="preprocessor">#ifdef TIXML_USE_STL</span> <a name="l00047"></a>00047 <span class="preprocessor"></span><span class="preprocessor"> #include &lt;string&gt;</span> <a name="l00048"></a>00048 <span class="preprocessor"> #include &lt;iostream&gt;</span> <a name="l00049"></a>00049 <span class="preprocessor"> #include &lt;sstream&gt;</span> <a name="l00050"></a>00050 <span class="preprocessor"> #define TIXML_STRING std::string</span> <a name="l00051"></a>00051 <span class="preprocessor"></span><span class="preprocessor">#else</span> <a name="l00052"></a>00052 <span class="preprocessor"></span><span class="preprocessor"> #include "tinystr.h"</span> <a name="l00053"></a>00053 <span class="preprocessor"> #define TIXML_STRING TiXmlString</span> <a name="l00054"></a>00054 <span class="preprocessor"></span><span class="preprocessor">#endif</span> <a name="l00055"></a>00055 <span class="preprocessor"></span> <a name="l00056"></a>00056 <span class="comment">// Deprecated library function hell. Compilers want to use the</span> <a name="l00057"></a>00057 <span class="comment">// new safe versions. This probably doesn't fully address the problem,</span> <a name="l00058"></a>00058 <span class="comment">// but it gets closer. There are too many compilers for me to fully</span> <a name="l00059"></a>00059 <span class="comment">// test. If you get compilation troubles, undefine TIXML_SAFE</span> <a name="l00060"></a>00060 <span class="preprocessor">#define TIXML_SAFE</span> <a name="l00061"></a>00061 <span class="preprocessor"></span> <a name="l00062"></a>00062 <span class="preprocessor">#ifdef TIXML_SAFE</span> <a name="l00063"></a>00063 <span class="preprocessor"></span><span class="preprocessor"> #if defined(_MSC_VER) &amp;&amp; (_MSC_VER &gt;= 1400 )</span> <a name="l00064"></a>00064 <span class="preprocessor"></span> <span class="comment">// Microsoft visual studio, version 2005 and higher.</span> <a name="l00065"></a>00065 <span class="preprocessor"> #define TIXML_SNPRINTF _snprintf_s</span> <a name="l00066"></a>00066 <span class="preprocessor"></span><span class="preprocessor"> #define TIXML_SNSCANF _snscanf_s</span> <a name="l00067"></a>00067 <span class="preprocessor"></span><span class="preprocessor"> #define TIXML_SSCANF sscanf_s</span> <a name="l00068"></a>00068 <span class="preprocessor"></span><span class="preprocessor"> #elif defined(_MSC_VER) &amp;&amp; (_MSC_VER &gt;= 1200 )</span> <a name="l00069"></a>00069 <span class="preprocessor"></span> <span class="comment">// Microsoft visual studio, version 6 and higher.</span> <a name="l00070"></a>00070 <span class="comment">//#pragma message( "Using _sn* functions." )</span> <a name="l00071"></a>00071 <span class="preprocessor"> #define TIXML_SNPRINTF _snprintf</span> <a name="l00072"></a>00072 <span class="preprocessor"></span><span class="preprocessor"> #define TIXML_SNSCANF _snscanf</span> <a name="l00073"></a>00073 <span class="preprocessor"></span><span class="preprocessor"> #define TIXML_SSCANF sscanf</span> <a name="l00074"></a>00074 <span class="preprocessor"></span><span class="preprocessor"> #elif defined(__GNUC__) &amp;&amp; (__GNUC__ &gt;= 3 )</span> <a name="l00075"></a>00075 <span class="preprocessor"></span> <span class="comment">// GCC version 3 and higher.s</span> <a name="l00076"></a>00076 <span class="comment">//#warning( "Using sn* functions." )</span> <a name="l00077"></a>00077 <span class="preprocessor"> #define TIXML_SNPRINTF snprintf</span> <a name="l00078"></a>00078 <span class="preprocessor"></span><span class="preprocessor"> #define TIXML_SNSCANF snscanf</span> <a name="l00079"></a>00079 <span class="preprocessor"></span><span class="preprocessor"> #define TIXML_SSCANF sscanf</span> <a name="l00080"></a>00080 <span class="preprocessor"></span><span class="preprocessor"> #else</span> <a name="l00081"></a>00081 <span class="preprocessor"></span><span class="preprocessor"> #define TIXML_SSCANF sscanf</span> <a name="l00082"></a>00082 <span class="preprocessor"></span><span class="preprocessor"> #endif</span> <a name="l00083"></a>00083 <span class="preprocessor"></span><span class="preprocessor">#endif </span> <a name="l00084"></a>00084 <span class="preprocessor"></span> <a name="l00085"></a>00085 <span class="keyword">class </span><a class="code" href="classTiXmlDocument.html">TiXmlDocument</a>; <a name="l00086"></a>00086 <span class="keyword">class </span><a class="code" href="classTiXmlElement.html">TiXmlElement</a>; <a name="l00087"></a>00087 <span class="keyword">class </span><a class="code" href="classTiXmlComment.html">TiXmlComment</a>; <a name="l00088"></a>00088 <span class="keyword">class </span><a class="code" href="classTiXmlUnknown.html">TiXmlUnknown</a>; <a name="l00089"></a>00089 <span class="keyword">class </span><a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>; <a name="l00090"></a>00090 <span class="keyword">class </span><a class="code" href="classTiXmlText.html">TiXmlText</a>; <a name="l00091"></a>00091 <span class="keyword">class </span><a class="code" href="classTiXmlDeclaration.html">TiXmlDeclaration</a>; <a name="l00092"></a>00092 <span class="keyword">class </span>TiXmlParsingData; <a name="l00093"></a>00093 <a name="l00094"></a>00094 <span class="keyword">const</span> <span class="keywordtype">int</span> TIXML_MAJOR_VERSION = 2; <a name="l00095"></a>00095 <span class="keyword">const</span> <span class="keywordtype">int</span> TIXML_MINOR_VERSION = 5; <a name="l00096"></a>00096 <span class="keyword">const</span> <span class="keywordtype">int</span> TIXML_PATCH_VERSION = 3; <a name="l00097"></a>00097 <a name="l00098"></a>00098 <span class="comment">/* Internal structure for tracking location of items </span> <a name="l00099"></a>00099 <span class="comment"> in the XML file.</span> <a name="l00100"></a>00100 <span class="comment">*/</span> <a name="l00101"></a>00101 <span class="keyword">struct </span>TiXmlCursor <a name="l00102"></a>00102 { <a name="l00103"></a>00103 TiXmlCursor() { Clear(); } <a name="l00104"></a>00104 <span class="keywordtype">void</span> Clear() { row = col = -1; } <a name="l00105"></a>00105 <a name="l00106"></a>00106 <span class="keywordtype">int</span> row; <span class="comment">// 0 based.</span> <a name="l00107"></a>00107 <span class="keywordtype">int</span> col; <span class="comment">// 0 based.</span> <a name="l00108"></a>00108 }; <a name="l00109"></a>00109 <a name="l00110"></a>00110 <a name="l00129"></a><a class="code" href="classTiXmlVisitor.html">00129</a> <span class="keyword">class </span><a class="code" href="classTiXmlVisitor.html">TiXmlVisitor</a> <a name="l00130"></a>00130 { <a name="l00131"></a>00131 <span class="keyword">public</span>: <a name="l00132"></a>00132 <span class="keyword">virtual</span> ~<a class="code" href="classTiXmlVisitor.html">TiXmlVisitor</a>() {} <a name="l00133"></a>00133 <a name="l00135"></a><a class="code" href="classTiXmlVisitor.html#07baecb52dd7d8716ae2a48ad0956ee0">00135</a> <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlVisitor.html#07baecb52dd7d8716ae2a48ad0956ee0">VisitEnter</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlDocument.html">TiXmlDocument</a>&amp; <span class="comment">/*doc*/</span> ) { <span class="keywordflow">return</span> <span class="keyword">true</span>; } <a name="l00137"></a><a class="code" href="classTiXmlVisitor.html#a0ade4f27087447e93974e975c3246ad">00137</a> <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlVisitor.html#a0ade4f27087447e93974e975c3246ad">VisitExit</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlDocument.html">TiXmlDocument</a>&amp; <span class="comment">/*doc*/</span> ) { <span class="keywordflow">return</span> <span class="keyword">true</span>; } <a name="l00138"></a>00138 <a name="l00140"></a><a class="code" href="classTiXmlVisitor.html#f6c6178ffa517bbdba95d70490875fff">00140</a> <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlVisitor.html#07baecb52dd7d8716ae2a48ad0956ee0">VisitEnter</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlElement.html">TiXmlElement</a>&amp; <span class="comment">/*element*/</span>, <span class="keyword">const</span> <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>* <span class="comment">/*firstAttribute*/</span> ) { <span class="keywordflow">return</span> <span class="keyword">true</span>; } <a name="l00142"></a><a class="code" href="classTiXmlVisitor.html#ec2b1f8116226d52f3a1b95dafd3a32c">00142</a> <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlVisitor.html#a0ade4f27087447e93974e975c3246ad">VisitExit</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlElement.html">TiXmlElement</a>&amp; <span class="comment">/*element*/</span> ) { <span class="keywordflow">return</span> <span class="keyword">true</span>; } <a name="l00143"></a>00143 <a name="l00145"></a><a class="code" href="classTiXmlVisitor.html#fad71c71ce6473fb9b4b64cd92de4a19">00145</a> <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlVisitor.html#fad71c71ce6473fb9b4b64cd92de4a19">Visit</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlDeclaration.html">TiXmlDeclaration</a>&amp; <span class="comment">/*declaration*/</span> ) { <span class="keywordflow">return</span> <span class="keyword">true</span>; } <a name="l00147"></a><a class="code" href="classTiXmlVisitor.html#399b8ebca5cd14664974a32d2ce029e5">00147</a> <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlVisitor.html#fad71c71ce6473fb9b4b64cd92de4a19">Visit</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlText.html">TiXmlText</a>&amp; <span class="comment">/*text*/</span> ) { <span class="keywordflow">return</span> <span class="keyword">true</span>; } <a name="l00149"></a><a class="code" href="classTiXmlVisitor.html#53a60e7a528627b31af3161972cc7fa2">00149</a> <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlVisitor.html#fad71c71ce6473fb9b4b64cd92de4a19">Visit</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlComment.html">TiXmlComment</a>&amp; <span class="comment">/*comment*/</span> ) { <span class="keywordflow">return</span> <span class="keyword">true</span>; } <a name="l00151"></a><a class="code" href="classTiXmlVisitor.html#7e284d607d275c51dac1adb58159ce28">00151</a> <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlVisitor.html#fad71c71ce6473fb9b4b64cd92de4a19">Visit</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlUnknown.html">TiXmlUnknown</a>&amp; <span class="comment">/*unknown*/</span> ) { <span class="keywordflow">return</span> <span class="keyword">true</span>; } <a name="l00152"></a>00152 }; <a name="l00153"></a>00153 <a name="l00154"></a>00154 <span class="comment">// Only used by Attribute::Query functions</span> <a name="l00155"></a>00155 <span class="keyword">enum</span> <a name="l00156"></a>00156 { <a name="l00157"></a>00157 TIXML_SUCCESS, <a name="l00158"></a>00158 TIXML_NO_ATTRIBUTE, <a name="l00159"></a>00159 TIXML_WRONG_TYPE <a name="l00160"></a>00160 }; <a name="l00161"></a>00161 <a name="l00162"></a>00162 <a name="l00163"></a>00163 <span class="comment">// Used by the parsing routines.</span> <a name="l00164"></a>00164 <span class="keyword">enum</span> TiXmlEncoding <a name="l00165"></a>00165 { <a name="l00166"></a>00166 TIXML_ENCODING_UNKNOWN, <a name="l00167"></a>00167 TIXML_ENCODING_UTF8, <a name="l00168"></a>00168 TIXML_ENCODING_LEGACY <a name="l00169"></a>00169 }; <a name="l00170"></a>00170 <a name="l00171"></a>00171 <span class="keyword">const</span> TiXmlEncoding TIXML_DEFAULT_ENCODING = TIXML_ENCODING_UNKNOWN; <a name="l00172"></a>00172 <a name="l00195"></a><a class="code" href="classTiXmlBase.html">00195</a> <span class="keyword">class </span><a class="code" href="classTiXmlBase.html">TiXmlBase</a> <a name="l00196"></a>00196 { <a name="l00197"></a>00197 <span class="keyword">friend</span> <span class="keyword">class </span><a class="code" href="classTiXmlNode.html">TiXmlNode</a>; <a name="l00198"></a>00198 <span class="keyword">friend</span> <span class="keyword">class </span><a class="code" href="classTiXmlElement.html">TiXmlElement</a>; <a name="l00199"></a>00199 <span class="keyword">friend</span> <span class="keyword">class </span><a class="code" href="classTiXmlDocument.html">TiXmlDocument</a>; <a name="l00200"></a>00200 <a name="l00201"></a>00201 <span class="keyword">public</span>: <a name="l00202"></a>00202 <a class="code" href="classTiXmlBase.html">TiXmlBase</a>() : <a class="code" href="classTiXmlBase.html#b242c01590191f644569fa89a080d97c">userData</a>(0) {} <a name="l00203"></a>00203 <span class="keyword">virtual</span> ~<a class="code" href="classTiXmlBase.html">TiXmlBase</a>() {} <a name="l00204"></a>00204 <a name="l00214"></a>00214 <span class="keyword">virtual</span> <span class="keywordtype">void</span> <a class="code" href="classTiXmlBase.html#0de56b3f2ef14c65091a3b916437b512">Print</a>( FILE* cfile, <span class="keywordtype">int</span> depth ) <span class="keyword">const </span>= 0; <a name="l00215"></a>00215 <a name="l00222"></a><a class="code" href="classTiXmlBase.html#0f799ec645bfb8d8a969e83478f379c1">00222</a> <span class="keyword">static</span> <span class="keywordtype">void</span> <a class="code" href="classTiXmlBase.html#0f799ec645bfb8d8a969e83478f379c1">SetCondenseWhiteSpace</a>( <span class="keywordtype">bool</span> condense ) { condenseWhiteSpace = condense; } <a name="l00223"></a>00223 <a name="l00225"></a><a class="code" href="classTiXmlBase.html#d4b1472531c647a25b1840a87ae42438">00225</a> <span class="keyword">static</span> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlBase.html#d4b1472531c647a25b1840a87ae42438">IsWhiteSpaceCondensed</a>() { <span class="keywordflow">return</span> condenseWhiteSpace; } <a name="l00226"></a>00226 <a name="l00245"></a><a class="code" href="classTiXmlBase.html#024bceb070188df92c2a8d8852dd0853">00245</a> <span class="keywordtype">int</span> <a class="code" href="classTiXmlBase.html#024bceb070188df92c2a8d8852dd0853">Row</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> location.row + 1; } <a name="l00246"></a><a class="code" href="classTiXmlBase.html#b54bfb9b70fe6dd276e7b279cab7f003">00246</a> <span class="keywordtype">int</span> <a class="code" href="classTiXmlBase.html#b54bfb9b70fe6dd276e7b279cab7f003">Column</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> location.col + 1; } <a name="l00247"></a>00247 <a name="l00248"></a><a class="code" href="classTiXmlBase.html#c6b3e0f790930d4970ec30764e937b5d">00248</a> <span class="keywordtype">void</span> <a class="code" href="classTiXmlBase.html#c6b3e0f790930d4970ec30764e937b5d">SetUserData</a>( <span class="keywordtype">void</span>* user ) { <a class="code" href="classTiXmlBase.html#b242c01590191f644569fa89a080d97c">userData</a> = user; } <a name="l00249"></a><a class="code" href="classTiXmlBase.html#6559a530ca6763fc301a14d77ed28c17">00249</a> <span class="keywordtype">void</span>* <a class="code" href="classTiXmlBase.html#6559a530ca6763fc301a14d77ed28c17">GetUserData</a>() { <span class="keywordflow">return</span> <a class="code" href="classTiXmlBase.html#b242c01590191f644569fa89a080d97c">userData</a>; } <a name="l00250"></a><a class="code" href="classTiXmlBase.html#d0120210e4680ef2088601753ce0ede4">00250</a> <span class="keyword">const</span> <span class="keywordtype">void</span>* <a class="code" href="classTiXmlBase.html#6559a530ca6763fc301a14d77ed28c17">GetUserData</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> <a class="code" href="classTiXmlBase.html#b242c01590191f644569fa89a080d97c">userData</a>; } <a name="l00251"></a>00251 <a name="l00252"></a>00252 <span class="comment">// Table that returs, for a given lead byte, the total number of bytes</span> <a name="l00253"></a>00253 <span class="comment">// in the UTF-8 sequence.</span> <a name="l00254"></a>00254 <span class="keyword">static</span> <span class="keyword">const</span> <span class="keywordtype">int</span> utf8ByteTable[256]; <a name="l00255"></a>00255 <a name="l00256"></a>00256 <span class="keyword">virtual</span> <span class="keyword">const</span> <span class="keywordtype">char</span>* <a class="code" href="classTiXmlDocument.html#17ebabe36926ef398e78dec0d0ad0378">Parse</a>( <span class="keyword">const</span> <span class="keywordtype">char</span>* p, <a name="l00257"></a>00257 TiXmlParsingData* data, <a name="l00258"></a>00258 TiXmlEncoding encoding <span class="comment">/*= TIXML_ENCODING_UNKNOWN */</span> ) = 0; <a name="l00259"></a>00259 <a name="l00263"></a>00263 <span class="keyword">static</span> <span class="keywordtype">void</span> <a class="code" href="classTiXmlBase.html#6bd8c315c1acb09e34107b8736505948">EncodeString</a>( <span class="keyword">const</span> TIXML_STRING&amp; str, TIXML_STRING* out ); <a name="l00264"></a>00264 <a name="l00265"></a>00265 <span class="keyword">enum</span> <a name="l00266"></a>00266 { <a name="l00267"></a>00267 TIXML_NO_ERROR = 0, <a name="l00268"></a>00268 TIXML_ERROR, <a name="l00269"></a>00269 TIXML_ERROR_OPENING_FILE, <a name="l00270"></a>00270 TIXML_ERROR_OUT_OF_MEMORY, <a name="l00271"></a>00271 TIXML_ERROR_PARSING_ELEMENT, <a name="l00272"></a>00272 TIXML_ERROR_FAILED_TO_READ_ELEMENT_NAME, <a name="l00273"></a>00273 TIXML_ERROR_READING_ELEMENT_VALUE, <a name="l00274"></a>00274 TIXML_ERROR_READING_ATTRIBUTES, <a name="l00275"></a>00275 TIXML_ERROR_PARSING_EMPTY, <a name="l00276"></a>00276 TIXML_ERROR_READING_END_TAG, <a name="l00277"></a>00277 TIXML_ERROR_PARSING_UNKNOWN, <a name="l00278"></a>00278 TIXML_ERROR_PARSING_COMMENT, <a name="l00279"></a>00279 TIXML_ERROR_PARSING_DECLARATION, <a name="l00280"></a>00280 TIXML_ERROR_DOCUMENT_EMPTY, <a name="l00281"></a>00281 TIXML_ERROR_EMBEDDED_NULL, <a name="l00282"></a>00282 TIXML_ERROR_PARSING_CDATA, <a name="l00283"></a>00283 TIXML_ERROR_DOCUMENT_TOP_ONLY, <a name="l00284"></a>00284 <a name="l00285"></a>00285 TIXML_ERROR_STRING_COUNT <a name="l00286"></a>00286 }; <a name="l00287"></a>00287 <a name="l00288"></a>00288 <span class="keyword">protected</span>: <a name="l00289"></a>00289 <a name="l00290"></a>00290 <span class="keyword">static</span> <span class="keyword">const</span> <span class="keywordtype">char</span>* SkipWhiteSpace( <span class="keyword">const</span> <span class="keywordtype">char</span>*, TiXmlEncoding encoding ); <a name="l00291"></a>00291 <span class="keyword">inline</span> <span class="keyword">static</span> <span class="keywordtype">bool</span> IsWhiteSpace( <span class="keywordtype">char</span> c ) <a name="l00292"></a>00292 { <a name="l00293"></a>00293 <span class="keywordflow">return</span> ( isspace( (<span class="keywordtype">unsigned</span> <span class="keywordtype">char</span>) c ) || c == <span class="charliteral">'\n'</span> || c == <span class="charliteral">'\r'</span> ); <a name="l00294"></a>00294 } <a name="l00295"></a>00295 <span class="keyword">inline</span> <span class="keyword">static</span> <span class="keywordtype">bool</span> IsWhiteSpace( <span class="keywordtype">int</span> c ) <a name="l00296"></a>00296 { <a name="l00297"></a>00297 <span class="keywordflow">if</span> ( c &lt; 256 ) <a name="l00298"></a>00298 <span class="keywordflow">return</span> IsWhiteSpace( (<span class="keywordtype">char</span>) c ); <a name="l00299"></a>00299 <span class="keywordflow">return</span> <span class="keyword">false</span>; <span class="comment">// Again, only truly correct for English/Latin...but usually works.</span> <a name="l00300"></a>00300 } <a name="l00301"></a>00301 <a name="l00302"></a>00302 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l00303"></a>00303 <span class="preprocessor"></span> <span class="keyword">static</span> <span class="keywordtype">bool</span> StreamWhiteSpace( std::istream * in, TIXML_STRING * tag ); <a name="l00304"></a>00304 <span class="keyword">static</span> <span class="keywordtype">bool</span> StreamTo( std::istream * in, <span class="keywordtype">int</span> character, TIXML_STRING * tag ); <a name="l00305"></a>00305 <span class="preprocessor"> #endif</span> <a name="l00306"></a>00306 <span class="preprocessor"></span> <a name="l00307"></a>00307 <span class="comment">/* Reads an XML name into the string provided. Returns</span> <a name="l00308"></a>00308 <span class="comment"> a pointer just past the last character of the name,</span> <a name="l00309"></a>00309 <span class="comment"> or 0 if the function has an error.</span> <a name="l00310"></a>00310 <span class="comment"> */</span> <a name="l00311"></a>00311 <span class="keyword">static</span> <span class="keyword">const</span> <span class="keywordtype">char</span>* ReadName( <span class="keyword">const</span> <span class="keywordtype">char</span>* p, TIXML_STRING* name, TiXmlEncoding encoding ); <a name="l00312"></a>00312 <a name="l00313"></a>00313 <span class="comment">/* Reads text. Returns a pointer past the given end tag.</span> <a name="l00314"></a>00314 <span class="comment"> Wickedly complex options, but it keeps the (sensitive) code in one place.</span> <a name="l00315"></a>00315 <span class="comment"> */</span> <a name="l00316"></a>00316 <span class="keyword">static</span> <span class="keyword">const</span> <span class="keywordtype">char</span>* ReadText( <span class="keyword">const</span> <span class="keywordtype">char</span>* in, <span class="comment">// where to start</span> <a name="l00317"></a>00317 TIXML_STRING* text, <span class="comment">// the string read</span> <a name="l00318"></a>00318 <span class="keywordtype">bool</span> ignoreWhiteSpace, <span class="comment">// whether to keep the white space</span> <a name="l00319"></a>00319 <span class="keyword">const</span> <span class="keywordtype">char</span>* endTag, <span class="comment">// what ends this text</span> <a name="l00320"></a>00320 <span class="keywordtype">bool</span> ignoreCase, <span class="comment">// whether to ignore case in the end tag</span> <a name="l00321"></a>00321 TiXmlEncoding encoding ); <span class="comment">// the current encoding</span> <a name="l00322"></a>00322 <a name="l00323"></a>00323 <span class="comment">// If an entity has been found, transform it into a character.</span> <a name="l00324"></a>00324 <span class="keyword">static</span> <span class="keyword">const</span> <span class="keywordtype">char</span>* GetEntity( <span class="keyword">const</span> <span class="keywordtype">char</span>* in, <span class="keywordtype">char</span>* value, <span class="keywordtype">int</span>* length, TiXmlEncoding encoding ); <a name="l00325"></a>00325 <a name="l00326"></a>00326 <span class="comment">// Get a character, while interpreting entities.</span> <a name="l00327"></a>00327 <span class="comment">// The length can be from 0 to 4 bytes.</span> <a name="l00328"></a>00328 <span class="keyword">inline</span> <span class="keyword">static</span> <span class="keyword">const</span> <span class="keywordtype">char</span>* GetChar( <span class="keyword">const</span> <span class="keywordtype">char</span>* p, <span class="keywordtype">char</span>* _value, <span class="keywordtype">int</span>* length, TiXmlEncoding encoding ) <a name="l00329"></a>00329 { <a name="l00330"></a>00330 assert( p ); <a name="l00331"></a>00331 <span class="keywordflow">if</span> ( encoding == TIXML_ENCODING_UTF8 ) <a name="l00332"></a>00332 { <a name="l00333"></a>00333 *length = utf8ByteTable[ *((<span class="keyword">const</span> <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span>*)p) ]; <a name="l00334"></a>00334 assert( *length &gt;= 0 &amp;&amp; *length &lt; 5 ); <a name="l00335"></a>00335 } <a name="l00336"></a>00336 <span class="keywordflow">else</span> <a name="l00337"></a>00337 { <a name="l00338"></a>00338 *length = 1; <a name="l00339"></a>00339 } <a name="l00340"></a>00340 <a name="l00341"></a>00341 <span class="keywordflow">if</span> ( *length == 1 ) <a name="l00342"></a>00342 { <a name="l00343"></a>00343 <span class="keywordflow">if</span> ( *p == <span class="charliteral">'&amp;'</span> ) <a name="l00344"></a>00344 <span class="keywordflow">return</span> GetEntity( p, _value, length, encoding ); <a name="l00345"></a>00345 *_value = *p; <a name="l00346"></a>00346 <span class="keywordflow">return</span> p+1; <a name="l00347"></a>00347 } <a name="l00348"></a>00348 <span class="keywordflow">else</span> <span class="keywordflow">if</span> ( *length ) <a name="l00349"></a>00349 { <a name="l00350"></a>00350 <span class="comment">//strncpy( _value, p, *length ); // lots of compilers don't like this function (unsafe),</span> <a name="l00351"></a>00351 <span class="comment">// and the null terminator isn't needed</span> <a name="l00352"></a>00352 <span class="keywordflow">for</span>( <span class="keywordtype">int</span> i=0; p[i] &amp;&amp; i&lt;*length; ++i ) { <a name="l00353"></a>00353 _value[i] = p[i]; <a name="l00354"></a>00354 } <a name="l00355"></a>00355 <span class="keywordflow">return</span> p + (*length); <a name="l00356"></a>00356 } <a name="l00357"></a>00357 <span class="keywordflow">else</span> <a name="l00358"></a>00358 { <a name="l00359"></a>00359 <span class="comment">// Not valid text.</span> <a name="l00360"></a>00360 <span class="keywordflow">return</span> 0; <a name="l00361"></a>00361 } <a name="l00362"></a>00362 } <a name="l00363"></a>00363 <a name="l00364"></a>00364 <span class="comment">// Return true if the next characters in the stream are any of the endTag sequences.</span> <a name="l00365"></a>00365 <span class="comment">// Ignore case only works for english, and should only be relied on when comparing</span> <a name="l00366"></a>00366 <span class="comment">// to English words: StringEqual( p, "version", true ) is fine.</span> <a name="l00367"></a>00367 <span class="keyword">static</span> <span class="keywordtype">bool</span> StringEqual( <span class="keyword">const</span> <span class="keywordtype">char</span>* p, <a name="l00368"></a>00368 <span class="keyword">const</span> <span class="keywordtype">char</span>* endTag, <a name="l00369"></a>00369 <span class="keywordtype">bool</span> ignoreCase, <a name="l00370"></a>00370 TiXmlEncoding encoding ); <a name="l00371"></a>00371 <a name="l00372"></a>00372 <span class="keyword">static</span> <span class="keyword">const</span> <span class="keywordtype">char</span>* errorString[ TIXML_ERROR_STRING_COUNT ]; <a name="l00373"></a>00373 <a name="l00374"></a>00374 TiXmlCursor location; <a name="l00375"></a>00375 <a name="l00377"></a><a class="code" href="classTiXmlBase.html#b242c01590191f644569fa89a080d97c">00377</a> <span class="keywordtype">void</span>* <a class="code" href="classTiXmlBase.html#b242c01590191f644569fa89a080d97c">userData</a>; <a name="l00378"></a>00378 <a name="l00379"></a>00379 <span class="comment">// None of these methods are reliable for any language except English.</span> <a name="l00380"></a>00380 <span class="comment">// Good for approximation, not great for accuracy.</span> <a name="l00381"></a>00381 <span class="keyword">static</span> <span class="keywordtype">int</span> IsAlpha( <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> anyByte, TiXmlEncoding encoding ); <a name="l00382"></a>00382 <span class="keyword">static</span> <span class="keywordtype">int</span> IsAlphaNum( <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> anyByte, TiXmlEncoding encoding ); <a name="l00383"></a>00383 <span class="keyword">inline</span> <span class="keyword">static</span> <span class="keywordtype">int</span> ToLower( <span class="keywordtype">int</span> v, TiXmlEncoding encoding ) <a name="l00384"></a>00384 { <a name="l00385"></a>00385 <span class="keywordflow">if</span> ( encoding == TIXML_ENCODING_UTF8 ) <a name="l00386"></a>00386 { <a name="l00387"></a>00387 <span class="keywordflow">if</span> ( v &lt; 128 ) <span class="keywordflow">return</span> tolower( v ); <a name="l00388"></a>00388 <span class="keywordflow">return</span> v; <a name="l00389"></a>00389 } <a name="l00390"></a>00390 <span class="keywordflow">else</span> <a name="l00391"></a>00391 { <a name="l00392"></a>00392 <span class="keywordflow">return</span> tolower( v ); <a name="l00393"></a>00393 } <a name="l00394"></a>00394 } <a name="l00395"></a>00395 <span class="keyword">static</span> <span class="keywordtype">void</span> ConvertUTF32ToUTF8( <span class="keywordtype">unsigned</span> <span class="keywordtype">long</span> input, <span class="keywordtype">char</span>* output, <span class="keywordtype">int</span>* length ); <a name="l00396"></a>00396 <a name="l00397"></a>00397 <span class="keyword">private</span>: <a name="l00398"></a>00398 <a class="code" href="classTiXmlBase.html">TiXmlBase</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlBase.html">TiXmlBase</a>&amp; ); <span class="comment">// not implemented.</span> <a name="l00399"></a>00399 <span class="keywordtype">void</span> operator=( <span class="keyword">const</span> <a class="code" href="classTiXmlBase.html">TiXmlBase</a>&amp; base ); <span class="comment">// not allowed.</span> <a name="l00400"></a>00400 <a name="l00401"></a>00401 <span class="keyword">struct </span>Entity <a name="l00402"></a>00402 { <a name="l00403"></a>00403 <span class="keyword">const</span> <span class="keywordtype">char</span>* str; <a name="l00404"></a>00404 <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> strLength; <a name="l00405"></a>00405 <span class="keywordtype">char</span> chr; <a name="l00406"></a>00406 }; <a name="l00407"></a>00407 <span class="keyword">enum</span> <a name="l00408"></a>00408 { <a name="l00409"></a>00409 NUM_ENTITY = 5, <a name="l00410"></a>00410 MAX_ENTITY_LENGTH = 6 <a name="l00411"></a>00411 <a name="l00412"></a>00412 }; <a name="l00413"></a>00413 <span class="keyword">static</span> Entity entity[ NUM_ENTITY ]; <a name="l00414"></a>00414 <span class="keyword">static</span> <span class="keywordtype">bool</span> condenseWhiteSpace; <a name="l00415"></a>00415 }; <a name="l00416"></a>00416 <a name="l00417"></a>00417 <a name="l00424"></a><a class="code" href="classTiXmlNode.html">00424</a> <span class="keyword">class </span><a class="code" href="classTiXmlNode.html">TiXmlNode</a> : <span class="keyword">public</span> <a class="code" href="classTiXmlBase.html">TiXmlBase</a> <a name="l00425"></a>00425 { <a name="l00426"></a>00426 <span class="keyword">friend</span> <span class="keyword">class </span><a class="code" href="classTiXmlDocument.html">TiXmlDocument</a>; <a name="l00427"></a>00427 <span class="keyword">friend</span> <span class="keyword">class </span><a class="code" href="classTiXmlElement.html">TiXmlElement</a>; <a name="l00428"></a>00428 <a name="l00429"></a>00429 <span class="keyword">public</span>: <a name="l00430"></a>00430 <span class="preprocessor"> #ifdef TIXML_USE_STL </span> <a name="l00431"></a>00431 <span class="preprocessor"></span> <a name="l00435"></a>00435 <span class="keyword">friend</span> std::istream&amp; <a class="code" href="classTiXmlNode.html#b57bd426563c926844f65a78412e18b9">operator &gt;&gt; </a>(std::istream&amp; in, <a class="code" href="classTiXmlNode.html">TiXmlNode</a>&amp; base); <a name="l00436"></a>00436 <a name="l00453"></a>00453 <span class="keyword">friend</span> std::ostream&amp; <a class="code" href="classTiXmlNode.html#86cd49cfb17a844c0010b3136ac966c7">operator&lt;&lt; </a>(std::ostream&amp; out, <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>&amp; base); <a name="l00454"></a>00454 <a name="l00456"></a>00456 <span class="keyword">friend</span> std::string&amp; <a class="code" href="classTiXmlNode.html#86cd49cfb17a844c0010b3136ac966c7">operator&lt;&lt; </a>(std::string&amp; out, <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>&amp; base ); <a name="l00457"></a>00457 <a name="l00458"></a>00458 <span class="preprocessor"> #endif</span> <a name="l00459"></a>00459 <span class="preprocessor"></span> <a name="l00463"></a><a class="code" href="classTiXmlNode.html#836eded4920ab9e9ef28496f48cd95a2">00463</a> <span class="keyword">enum</span> <a class="code" href="classTiXmlNode.html#836eded4920ab9e9ef28496f48cd95a2">NodeType</a> <a name="l00464"></a>00464 { <a name="l00465"></a>00465 DOCUMENT, <a name="l00466"></a>00466 ELEMENT, <a name="l00467"></a>00467 COMMENT, <a name="l00468"></a>00468 UNKNOWN, <a name="l00469"></a>00469 TEXT, <a name="l00470"></a>00470 DECLARATION, <a name="l00471"></a>00471 TYPECOUNT <a name="l00472"></a>00472 }; <a name="l00473"></a>00473 <a name="l00474"></a>00474 <span class="keyword">virtual</span> ~<a class="code" href="classTiXmlNode.html">TiXmlNode</a>(); <a name="l00475"></a>00475 <a name="l00488"></a><a class="code" href="classTiXmlNode.html#77943eb90d12c2892b1337a9f5918b41">00488</a> <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="classTiXmlNode.html#77943eb90d12c2892b1337a9f5918b41">Value</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> value.c_str (); } <a name="l00489"></a>00489 <a name="l00490"></a>00490 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l00491"></a>00491 <span class="preprocessor"></span> <a name="l00495"></a><a class="code" href="classTiXmlNode.html#6d9e505619d39bf50bfd9609c9169ea5">00495</a> <span class="keyword">const</span> std::string&amp; <a class="code" href="classTiXmlNode.html#6d9e505619d39bf50bfd9609c9169ea5">ValueStr</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> value; } <a name="l00496"></a>00496 <span class="preprocessor"> #endif</span> <a name="l00497"></a>00497 <span class="preprocessor"></span> <a name="l00498"></a>00498 <span class="keyword">const</span> TIXML_STRING&amp; ValueTStr()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> value; } <a name="l00499"></a>00499 <a name="l00509"></a><a class="code" href="classTiXmlNode.html#2a38329ca5d3f28f98ce932b8299ae90">00509</a> <span class="keywordtype">void</span> <a class="code" href="classTiXmlNode.html#2a38329ca5d3f28f98ce932b8299ae90">SetValue</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> * _value) { value = _value;} <a name="l00510"></a>00510 <a name="l00511"></a>00511 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l00513"></a><a class="code" href="classTiXmlNode.html#2598d5f448042c1abbeae4503dd45ff2">00513</a> <span class="preprocessor"> void SetValue( const std::string&amp; _value ) { value = _value; }</span> <a name="l00514"></a>00514 <span class="preprocessor"></span><span class="preprocessor"> #endif</span> <a name="l00515"></a>00515 <span class="preprocessor"></span> <a name="l00517"></a>00517 <span class="keywordtype">void</span> <a class="code" href="classTiXmlNode.html#708e7f953df61d4d2d12f73171550a4b">Clear</a>(); <a name="l00518"></a>00518 <a name="l00520"></a><a class="code" href="classTiXmlNode.html#b643043132ffd794f8602685d34a982e">00520</a> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#b643043132ffd794f8602685d34a982e">Parent</a>() { <span class="keywordflow">return</span> parent; } <a name="l00521"></a>00521 <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#b643043132ffd794f8602685d34a982e">Parent</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> parent; } <a name="l00522"></a>00522 <a name="l00523"></a><a class="code" href="classTiXmlNode.html#44c8eee26bbe2d1b2762038df9dde2f0">00523</a> <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#44c8eee26bbe2d1b2762038df9dde2f0">FirstChild</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> firstChild; } <a name="l00524"></a>00524 <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#44c8eee26bbe2d1b2762038df9dde2f0">FirstChild</a>() { <span class="keywordflow">return</span> firstChild; } <a name="l00525"></a>00525 <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#44c8eee26bbe2d1b2762038df9dde2f0">FirstChild</a>( <span class="keyword">const</span> <span class="keywordtype">char</span> * value ) <span class="keyword">const</span>; <a name="l00526"></a>00526 <a name="l00527"></a><a class="code" href="classTiXmlNode.html#bc8bf32be6419ec453a731868de19554">00527</a> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#44c8eee26bbe2d1b2762038df9dde2f0">FirstChild</a>( <span class="keyword">const</span> <span class="keywordtype">char</span> * _value ) { <a name="l00528"></a>00528 <span class="comment">// Call through to the const version - safe since nothing is changed. Exiting syntax: cast this to a const (always safe)</span> <a name="l00529"></a>00529 <span class="comment">// call the method, cast the return back to non-const.</span> <a name="l00530"></a>00530 <span class="keywordflow">return</span> const_cast&lt; TiXmlNode* &gt; ((const_cast&lt; const TiXmlNode* &gt;(<span class="keyword">this</span>))-&gt;FirstChild( _value )); <a name="l00531"></a>00531 } <a name="l00532"></a>00532 <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* LastChild()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> lastChild; } <a name="l00533"></a><a class="code" href="classTiXmlNode.html#6432d2b2495f6caf9cb4278df706a031">00533</a> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* LastChild() { <span class="keywordflow">return</span> lastChild; } <a name="l00534"></a>00534 <a name="l00535"></a>00535 <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* LastChild( <span class="keyword">const</span> <span class="keywordtype">char</span> * value ) <span class="keyword">const</span>; <a name="l00536"></a><a class="code" href="classTiXmlNode.html#bad5bf1059c48127b958711ef89e8e5d">00536</a> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* LastChild( <span class="keyword">const</span> <span class="keywordtype">char</span> * _value ) { <a name="l00537"></a>00537 <span class="keywordflow">return</span> const_cast&lt; TiXmlNode* &gt; ((const_cast&lt; const TiXmlNode* &gt;(<span class="keyword">this</span>))-&gt;LastChild( _value )); <a name="l00538"></a>00538 } <a name="l00539"></a>00539 <a name="l00540"></a>00540 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l00541"></a><a class="code" href="classTiXmlNode.html#07f6200a5956c723c5b52d70f29c46f6">00541</a> <span class="preprocessor"></span> <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#44c8eee26bbe2d1b2762038df9dde2f0">FirstChild</a>( <span class="keyword">const</span> std::string&amp; _value )<span class="keyword"> const </span>{ <span class="keywordflow">return</span> <a class="code" href="classTiXmlNode.html#44c8eee26bbe2d1b2762038df9dde2f0">FirstChild</a> (_value.c_str ()); } <a name="l00542"></a><a class="code" href="classTiXmlNode.html#10d2669ccb5e29e02fcb0e4408685ef6">00542</a> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#44c8eee26bbe2d1b2762038df9dde2f0">FirstChild</a>( <span class="keyword">const</span> std::string&amp; _value ) { <span class="keywordflow">return</span> <a class="code" href="classTiXmlNode.html#44c8eee26bbe2d1b2762038df9dde2f0">FirstChild</a> (_value.c_str ()); } <a name="l00543"></a><a class="code" href="classTiXmlNode.html#256d0cdbfcfeccae83f3a1c9747a8b63">00543</a> <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* LastChild( <span class="keyword">const</span> std::string&amp; _value )<span class="keyword"> const </span>{ <span class="keywordflow">return</span> LastChild (_value.c_str ()); } <a name="l00544"></a><a class="code" href="classTiXmlNode.html#69772c9202f70553f940b15c06b07be3">00544</a> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* LastChild( <span class="keyword">const</span> std::string&amp; _value ) { <span class="keywordflow">return</span> LastChild (_value.c_str ()); } <a name="l00545"></a>00545 <span class="preprocessor"> #endif</span> <a name="l00546"></a>00546 <span class="preprocessor"></span> <a name="l00563"></a>00563 <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#8621196ba3705fa226bef4a761cc51b6">IterateChildren</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* previous ) <span class="keyword">const</span>; <a name="l00564"></a>00564 <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#8621196ba3705fa226bef4a761cc51b6">IterateChildren</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* previous ) { <a name="l00565"></a>00565 <span class="keywordflow">return</span> const_cast&lt; TiXmlNode* &gt;( (const_cast&lt; const TiXmlNode* &gt;(<span class="keyword">this</span>))-&gt;IterateChildren( previous ) ); <a name="l00566"></a>00566 } <a name="l00567"></a>00567 <a name="l00569"></a>00569 <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#8621196ba3705fa226bef4a761cc51b6">IterateChildren</a>( <span class="keyword">const</span> <span class="keywordtype">char</span> * value, <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* previous ) <span class="keyword">const</span>; <a name="l00570"></a>00570 <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#8621196ba3705fa226bef4a761cc51b6">IterateChildren</a>( <span class="keyword">const</span> <span class="keywordtype">char</span> * _value, <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* previous ) { <a name="l00571"></a>00571 <span class="keywordflow">return</span> const_cast&lt; TiXmlNode* &gt;( (const_cast&lt; const TiXmlNode* &gt;(<span class="keyword">this</span>))-&gt;IterateChildren( _value, previous ) ); <a name="l00572"></a>00572 } <a name="l00573"></a>00573 <a name="l00574"></a>00574 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l00575"></a><a class="code" href="classTiXmlNode.html#1cbaaf8e82c09ad763d52616d75724df">00575</a> <span class="preprocessor"></span> <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#8621196ba3705fa226bef4a761cc51b6">IterateChildren</a>( <span class="keyword">const</span> std::string&amp; _value, <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* previous )<span class="keyword"> const </span>{ <span class="keywordflow">return</span> <a class="code" href="classTiXmlNode.html#8621196ba3705fa226bef4a761cc51b6">IterateChildren</a> (_value.c_str (), previous); } <a name="l00576"></a><a class="code" href="classTiXmlNode.html#16e9ad53e2f5445b14bf325c90aa862c">00576</a> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#8621196ba3705fa226bef4a761cc51b6">IterateChildren</a>( <span class="keyword">const</span> std::string&amp; _value, <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* previous ) { <span class="keywordflow">return</span> <a class="code" href="classTiXmlNode.html#8621196ba3705fa226bef4a761cc51b6">IterateChildren</a> (_value.c_str (), previous); } <a name="l00577"></a>00577 <span class="preprocessor"> #endif</span> <a name="l00578"></a>00578 <span class="preprocessor"></span> <a name="l00582"></a>00582 <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#d7d4630e1a2a916edda16be22448a8ba">InsertEndChild</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>&amp; addThis ); <a name="l00583"></a>00583 <a name="l00584"></a>00584 <a name="l00594"></a>00594 <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#5d29442ae46de6d0168429156197bfc6">LinkEndChild</a>( <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* addThis ); <a name="l00595"></a>00595 <a name="l00599"></a>00599 <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#0c146fa2fff0157b681594102f48cbc7">InsertBeforeChild</a>( <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* beforeThis, <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>&amp; addThis ); <a name="l00600"></a>00600 <a name="l00604"></a>00604 <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#d9b75e54ec19301c8b4d5ff583d0b3d5">InsertAfterChild</a>( <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* afterThis, <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>&amp; addThis ); <a name="l00605"></a>00605 <a name="l00609"></a>00609 <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#0c49e739a17b9938050c22cd89617fbd">ReplaceChild</a>( <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* replaceThis, <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>&amp; withThis ); <a name="l00610"></a>00610 <a name="l00612"></a>00612 <span class="keywordtype">bool</span> <a class="code" href="classTiXmlNode.html#e19d8510efc90596552f4feeac9a8fbf">RemoveChild</a>( <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* removeThis ); <a name="l00613"></a>00613 <a name="l00615"></a><a class="code" href="classTiXmlNode.html#c2cd892768726270e511b2ab32de4d10">00615</a> <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#c2cd892768726270e511b2ab32de4d10">PreviousSibling</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> prev; } <a name="l00616"></a>00616 <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#c2cd892768726270e511b2ab32de4d10">PreviousSibling</a>() { <span class="keywordflow">return</span> prev; } <a name="l00617"></a>00617 <a name="l00619"></a>00619 <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#c2cd892768726270e511b2ab32de4d10">PreviousSibling</a>( <span class="keyword">const</span> <span class="keywordtype">char</span> * ) <span class="keyword">const</span>; <a name="l00620"></a>00620 <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#c2cd892768726270e511b2ab32de4d10">PreviousSibling</a>( <span class="keyword">const</span> <span class="keywordtype">char</span> *_prev ) { <a name="l00621"></a>00621 <span class="keywordflow">return</span> const_cast&lt; TiXmlNode* &gt;( (const_cast&lt; const TiXmlNode* &gt;(<span class="keyword">this</span>))-&gt;PreviousSibling( _prev ) ); <a name="l00622"></a>00622 } <a name="l00623"></a>00623 <a name="l00624"></a>00624 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l00625"></a><a class="code" href="classTiXmlNode.html#658276f57d35d5d4256d1dc1a2c398ab">00625</a> <span class="preprocessor"></span> <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#c2cd892768726270e511b2ab32de4d10">PreviousSibling</a>( <span class="keyword">const</span> std::string&amp; _value )<span class="keyword"> const </span>{ <span class="keywordflow">return</span> <a class="code" href="classTiXmlNode.html#c2cd892768726270e511b2ab32de4d10">PreviousSibling</a> (_value.c_str ()); } <a name="l00626"></a><a class="code" href="classTiXmlNode.html#cc8a0434c7f401d4a3b6dee77c1a5912">00626</a> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#c2cd892768726270e511b2ab32de4d10">PreviousSibling</a>( <span class="keyword">const</span> std::string&amp; _value ) { <span class="keywordflow">return</span> <a class="code" href="classTiXmlNode.html#c2cd892768726270e511b2ab32de4d10">PreviousSibling</a> (_value.c_str ()); } <a name="l00627"></a><a class="code" href="classTiXmlNode.html#1b94d2f7fa7ab25a5a8e8d4340c449c9">00627</a> <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#f854baeba384f5fe9859f5aee03b548e">NextSibling</a>( <span class="keyword">const</span> std::string&amp; _value)<span class="keyword"> const </span>{ <span class="keywordflow">return</span> <a class="code" href="classTiXmlNode.html#f854baeba384f5fe9859f5aee03b548e">NextSibling</a> (_value.c_str ()); } <a name="l00628"></a><a class="code" href="classTiXmlNode.html#1757c1f4d01e8c9596ffdbd561c76aea">00628</a> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#f854baeba384f5fe9859f5aee03b548e">NextSibling</a>( <span class="keyword">const</span> std::string&amp; _value) { <span class="keywordflow">return</span> <a class="code" href="classTiXmlNode.html#f854baeba384f5fe9859f5aee03b548e">NextSibling</a> (_value.c_str ()); } <a name="l00629"></a>00629 <span class="preprocessor"> #endif</span> <a name="l00630"></a>00630 <span class="preprocessor"></span> <a name="l00632"></a><a class="code" href="classTiXmlNode.html#f854baeba384f5fe9859f5aee03b548e">00632</a> <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#f854baeba384f5fe9859f5aee03b548e">NextSibling</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> next; } <a name="l00633"></a>00633 <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#f854baeba384f5fe9859f5aee03b548e">NextSibling</a>() { <span class="keywordflow">return</span> next; } <a name="l00634"></a>00634 <a name="l00636"></a>00636 <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#f854baeba384f5fe9859f5aee03b548e">NextSibling</a>( <span class="keyword">const</span> <span class="keywordtype">char</span> * ) <span class="keyword">const</span>; <a name="l00637"></a>00637 <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#f854baeba384f5fe9859f5aee03b548e">NextSibling</a>( <span class="keyword">const</span> <span class="keywordtype">char</span>* _next ) { <a name="l00638"></a>00638 <span class="keywordflow">return</span> const_cast&lt; TiXmlNode* &gt;( (const_cast&lt; const TiXmlNode* &gt;(<span class="keyword">this</span>))-&gt;NextSibling( _next ) ); <a name="l00639"></a>00639 } <a name="l00640"></a>00640 <a name="l00645"></a>00645 <span class="keyword">const</span> <a class="code" href="classTiXmlElement.html">TiXmlElement</a>* <a class="code" href="classTiXmlNode.html#73acf929d49d10bd0e5fb3d31b0372d1">NextSiblingElement</a>() <span class="keyword">const</span>; <a name="l00646"></a>00646 <a class="code" href="classTiXmlElement.html">TiXmlElement</a>* <a class="code" href="classTiXmlNode.html#73acf929d49d10bd0e5fb3d31b0372d1">NextSiblingElement</a>() { <a name="l00647"></a>00647 <span class="keywordflow">return</span> const_cast&lt; TiXmlElement* &gt;( (const_cast&lt; const TiXmlNode* &gt;(<span class="keyword">this</span>))-&gt;NextSiblingElement() ); <a name="l00648"></a>00648 } <a name="l00649"></a>00649 <a name="l00654"></a>00654 <span class="keyword">const</span> <a class="code" href="classTiXmlElement.html">TiXmlElement</a>* <a class="code" href="classTiXmlNode.html#73acf929d49d10bd0e5fb3d31b0372d1">NextSiblingElement</a>( <span class="keyword">const</span> <span class="keywordtype">char</span> * ) <span class="keyword">const</span>; <a name="l00655"></a>00655 <a class="code" href="classTiXmlElement.html">TiXmlElement</a>* <a class="code" href="classTiXmlNode.html#73acf929d49d10bd0e5fb3d31b0372d1">NextSiblingElement</a>( <span class="keyword">const</span> <span class="keywordtype">char</span> *_next ) { <a name="l00656"></a>00656 <span class="keywordflow">return</span> const_cast&lt; TiXmlElement* &gt;( (const_cast&lt; const TiXmlNode* &gt;(<span class="keyword">this</span>))-&gt;NextSiblingElement( _next ) ); <a name="l00657"></a>00657 } <a name="l00658"></a>00658 <a name="l00659"></a>00659 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l00660"></a><a class="code" href="classTiXmlNode.html#7572d0af9d1e696ee3f05d8bb5ebb463">00660</a> <span class="preprocessor"></span> <span class="keyword">const</span> <a class="code" href="classTiXmlElement.html">TiXmlElement</a>* <a class="code" href="classTiXmlNode.html#73acf929d49d10bd0e5fb3d31b0372d1">NextSiblingElement</a>( <span class="keyword">const</span> std::string&amp; _value)<span class="keyword"> const </span>{ <span class="keywordflow">return</span> <a class="code" href="classTiXmlNode.html#73acf929d49d10bd0e5fb3d31b0372d1">NextSiblingElement</a> (_value.c_str ()); } <a name="l00661"></a><a class="code" href="classTiXmlNode.html#506958e34406729a4e4c5326ea39d081">00661</a> <a class="code" href="classTiXmlElement.html">TiXmlElement</a>* <a class="code" href="classTiXmlNode.html#73acf929d49d10bd0e5fb3d31b0372d1">NextSiblingElement</a>( <span class="keyword">const</span> std::string&amp; _value) { <span class="keywordflow">return</span> <a class="code" href="classTiXmlNode.html#73acf929d49d10bd0e5fb3d31b0372d1">NextSiblingElement</a> (_value.c_str ()); } <a name="l00662"></a>00662 <span class="preprocessor"> #endif</span> <a name="l00663"></a>00663 <span class="preprocessor"></span> <a name="l00665"></a>00665 <span class="keyword">const</span> <a class="code" href="classTiXmlElement.html">TiXmlElement</a>* <a class="code" href="classTiXmlNode.html#f4fb652f6bd79ae0d5ce7d0f7d3c0fba">FirstChildElement</a>() <span class="keyword">const</span>; <a name="l00666"></a>00666 <a class="code" href="classTiXmlElement.html">TiXmlElement</a>* <a class="code" href="classTiXmlNode.html#f4fb652f6bd79ae0d5ce7d0f7d3c0fba">FirstChildElement</a>() { <a name="l00667"></a>00667 <span class="keywordflow">return</span> const_cast&lt; TiXmlElement* &gt;( (const_cast&lt; const TiXmlNode* &gt;(<span class="keyword">this</span>))-&gt;FirstChildElement() ); <a name="l00668"></a>00668 } <a name="l00669"></a>00669 <a name="l00671"></a>00671 <span class="keyword">const</span> <a class="code" href="classTiXmlElement.html">TiXmlElement</a>* <a class="code" href="classTiXmlNode.html#f4fb652f6bd79ae0d5ce7d0f7d3c0fba">FirstChildElement</a>( <span class="keyword">const</span> <span class="keywordtype">char</span> * _value ) <span class="keyword">const</span>; <a name="l00672"></a>00672 <a class="code" href="classTiXmlElement.html">TiXmlElement</a>* <a class="code" href="classTiXmlNode.html#f4fb652f6bd79ae0d5ce7d0f7d3c0fba">FirstChildElement</a>( <span class="keyword">const</span> <span class="keywordtype">char</span> * _value ) { <a name="l00673"></a>00673 <span class="keywordflow">return</span> const_cast&lt; TiXmlElement* &gt;( (const_cast&lt; const TiXmlNode* &gt;(<span class="keyword">this</span>))-&gt;FirstChildElement( _value ) ); <a name="l00674"></a>00674 } <a name="l00675"></a>00675 <a name="l00676"></a>00676 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l00677"></a><a class="code" href="classTiXmlNode.html#327ad4bbd90073c5dfc931b07314f5f7">00677</a> <span class="preprocessor"></span> <span class="keyword">const</span> <a class="code" href="classTiXmlElement.html">TiXmlElement</a>* <a class="code" href="classTiXmlNode.html#f4fb652f6bd79ae0d5ce7d0f7d3c0fba">FirstChildElement</a>( <span class="keyword">const</span> std::string&amp; _value )<span class="keyword"> const </span>{ <span class="keywordflow">return</span> <a class="code" href="classTiXmlNode.html#f4fb652f6bd79ae0d5ce7d0f7d3c0fba">FirstChildElement</a> (_value.c_str ()); } <a name="l00678"></a><a class="code" href="classTiXmlNode.html#7f1d7291880534c1e5cdeb392d8c1f45">00678</a> <a class="code" href="classTiXmlElement.html">TiXmlElement</a>* <a class="code" href="classTiXmlNode.html#f4fb652f6bd79ae0d5ce7d0f7d3c0fba">FirstChildElement</a>( <span class="keyword">const</span> std::string&amp; _value ) { <span class="keywordflow">return</span> <a class="code" href="classTiXmlNode.html#f4fb652f6bd79ae0d5ce7d0f7d3c0fba">FirstChildElement</a> (_value.c_str ()); } <a name="l00679"></a>00679 <span class="preprocessor"> #endif</span> <a name="l00680"></a>00680 <span class="preprocessor"></span> <a name="l00685"></a><a class="code" href="classTiXmlNode.html#57b99d5c97d67a42b9752f5210a1ba5e">00685</a> <span class="keywordtype">int</span> <a class="code" href="classTiXmlNode.html#57b99d5c97d67a42b9752f5210a1ba5e">Type</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> type; } <a name="l00686"></a>00686 <a name="l00690"></a>00690 <span class="keyword">const</span> <a class="code" href="classTiXmlDocument.html">TiXmlDocument</a>* <a class="code" href="classTiXmlNode.html#80e397fa973cf5323e33b07154b024f3">GetDocument</a>() <span class="keyword">const</span>; <a name="l00691"></a>00691 <a class="code" href="classTiXmlDocument.html">TiXmlDocument</a>* <a class="code" href="classTiXmlNode.html#80e397fa973cf5323e33b07154b024f3">GetDocument</a>() { <a name="l00692"></a>00692 <span class="keywordflow">return</span> const_cast&lt; TiXmlDocument* &gt;( (const_cast&lt; const TiXmlNode* &gt;(<span class="keyword">this</span>))-&gt;GetDocument() ); <a name="l00693"></a>00693 } <a name="l00694"></a>00694 <a name="l00696"></a><a class="code" href="classTiXmlNode.html#eed21ad30630ef6e7faf096127edc9f3">00696</a> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlNode.html#eed21ad30630ef6e7faf096127edc9f3">NoChildren</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> !firstChild; } <a name="l00697"></a>00697 <a name="l00698"></a><a class="code" href="classTiXmlNode.html#8a4cda4b15c29f64cff419309aebed08">00698</a> <span class="keyword">virtual</span> <span class="keyword">const</span> <a class="code" href="classTiXmlDocument.html">TiXmlDocument</a>* <a class="code" href="classTiXmlNode.html#8a4cda4b15c29f64cff419309aebed08">ToDocument</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> 0; } <a name="l00699"></a><a class="code" href="classTiXmlNode.html#72abed96dc9667ab9e0a2a275301bb1c">00699</a> <span class="keyword">virtual</span> <span class="keyword">const</span> <a class="code" href="classTiXmlElement.html">TiXmlElement</a>* <a class="code" href="classTiXmlNode.html#72abed96dc9667ab9e0a2a275301bb1c">ToElement</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> 0; } <a name="l00700"></a><a class="code" href="classTiXmlNode.html#a0a5086f9eaee910bbfdc7f975e26574">00700</a> <span class="keyword">virtual</span> <span class="keyword">const</span> <a class="code" href="classTiXmlComment.html">TiXmlComment</a>* <a class="code" href="classTiXmlNode.html#a0a5086f9eaee910bbfdc7f975e26574">ToComment</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> 0; } <a name="l00701"></a><a class="code" href="classTiXmlNode.html#fd7205cf31d7a376929f8a36930627a2">00701</a> <span class="keyword">virtual</span> <span class="keyword">const</span> <a class="code" href="classTiXmlUnknown.html">TiXmlUnknown</a>* <a class="code" href="classTiXmlNode.html#fd7205cf31d7a376929f8a36930627a2">ToUnknown</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> 0; } <a name="l00702"></a><a class="code" href="classTiXmlNode.html#95a46a52c525992d6b4ee08beb14cd69">00702</a> <span class="keyword">virtual</span> <span class="keyword">const</span> <a class="code" href="classTiXmlText.html">TiXmlText</a>* <a class="code" href="classTiXmlNode.html#95a46a52c525992d6b4ee08beb14cd69">ToText</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> 0; } <a name="l00703"></a><a class="code" href="classTiXmlNode.html#9f43e6984fc7d4afd6eb32714c6b7b72">00703</a> <span class="keyword">virtual</span> <span class="keyword">const</span> <a class="code" href="classTiXmlDeclaration.html">TiXmlDeclaration</a>* <a class="code" href="classTiXmlNode.html#9f43e6984fc7d4afd6eb32714c6b7b72">ToDeclaration</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> 0; } <a name="l00704"></a>00704 <a name="l00705"></a><a class="code" href="classTiXmlNode.html#6a4c8ac28ee7a745d059db6691e03bae">00705</a> <span class="keyword">virtual</span> <a class="code" href="classTiXmlDocument.html">TiXmlDocument</a>* <a class="code" href="classTiXmlNode.html#8a4cda4b15c29f64cff419309aebed08">ToDocument</a>() { <span class="keywordflow">return</span> 0; } <a name="l00706"></a><a class="code" href="classTiXmlNode.html#a65d000223187d22a4dcebd7479e9ebc">00706</a> <span class="keyword">virtual</span> <a class="code" href="classTiXmlElement.html">TiXmlElement</a>* <a class="code" href="classTiXmlNode.html#72abed96dc9667ab9e0a2a275301bb1c">ToElement</a>() { <span class="keywordflow">return</span> 0; } <a name="l00707"></a><a class="code" href="classTiXmlNode.html#383e06a0787f7063953934867990f849">00707</a> <span class="keyword">virtual</span> <a class="code" href="classTiXmlComment.html">TiXmlComment</a>* <a class="code" href="classTiXmlNode.html#a0a5086f9eaee910bbfdc7f975e26574">ToComment</a>() { <span class="keywordflow">return</span> 0; } <a name="l00708"></a><a class="code" href="classTiXmlNode.html#06de5af852668c7e4af0d09c205f0b0d">00708</a> <span class="keyword">virtual</span> <a class="code" href="classTiXmlUnknown.html">TiXmlUnknown</a>* <a class="code" href="classTiXmlNode.html#fd7205cf31d7a376929f8a36930627a2">ToUnknown</a>() { <span class="keywordflow">return</span> 0; } <a name="l00709"></a><a class="code" href="classTiXmlNode.html#3ddfbcac78fbea041fad57e5c6d60a03">00709</a> <span class="keyword">virtual</span> <a class="code" href="classTiXmlText.html">TiXmlText</a>* <a class="code" href="classTiXmlNode.html#95a46a52c525992d6b4ee08beb14cd69">ToText</a>() { <span class="keywordflow">return</span> 0; } <a name="l00710"></a><a class="code" href="classTiXmlNode.html#4027136ca820ff4a636b607231b6a6df">00710</a> <span class="keyword">virtual</span> <a class="code" href="classTiXmlDeclaration.html">TiXmlDeclaration</a>* <a class="code" href="classTiXmlNode.html#9f43e6984fc7d4afd6eb32714c6b7b72">ToDeclaration</a>() { <span class="keywordflow">return</span> 0; } <a name="l00711"></a>00711 <a name="l00715"></a>00715 <span class="keyword">virtual</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlNode.html#4508cc3a2d7a98e96a54cc09c37a78a4">Clone</a>() <span class="keyword">const </span>= 0; <a name="l00716"></a>00716 <a name="l00739"></a>00739 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlNode.html#cc0f88b7462c6cb73809d410a4f5bb86">Accept</a>( <a class="code" href="classTiXmlVisitor.html">TiXmlVisitor</a>* visitor ) <span class="keyword">const </span>= 0; <a name="l00740"></a>00740 <a name="l00741"></a>00741 <span class="keyword">protected</span>: <a name="l00742"></a>00742 <a class="code" href="classTiXmlNode.html">TiXmlNode</a>( <a class="code" href="classTiXmlNode.html#836eded4920ab9e9ef28496f48cd95a2">NodeType</a> _type ); <a name="l00743"></a>00743 <a name="l00744"></a>00744 <span class="comment">// Copy to the allocated object. Shared functionality between Clone, Copy constructor,</span> <a name="l00745"></a>00745 <span class="comment">// and the assignment operator.</span> <a name="l00746"></a>00746 <span class="keywordtype">void</span> CopyTo( <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* target ) <span class="keyword">const</span>; <a name="l00747"></a>00747 <a name="l00748"></a>00748 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l00749"></a>00749 <span class="preprocessor"></span> <span class="comment">// The real work of the input operator.</span> <a name="l00750"></a>00750 <span class="keyword">virtual</span> <span class="keywordtype">void</span> StreamIn( std::istream* in, TIXML_STRING* tag ) = 0; <a name="l00751"></a>00751 <span class="preprocessor"> #endif</span> <a name="l00752"></a>00752 <span class="preprocessor"></span> <a name="l00753"></a>00753 <span class="comment">// Figure out what is at *p, and parse it. Returns null if it is not an xml node.</span> <a name="l00754"></a>00754 <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* Identify( <span class="keyword">const</span> <span class="keywordtype">char</span>* start, TiXmlEncoding encoding ); <a name="l00755"></a>00755 <a name="l00756"></a>00756 <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* parent; <a name="l00757"></a>00757 <a class="code" href="classTiXmlNode.html#836eded4920ab9e9ef28496f48cd95a2">NodeType</a> type; <a name="l00758"></a>00758 <a name="l00759"></a>00759 <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* firstChild; <a name="l00760"></a>00760 <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* lastChild; <a name="l00761"></a>00761 <a name="l00762"></a>00762 TIXML_STRING value; <a name="l00763"></a>00763 <a name="l00764"></a>00764 <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* prev; <a name="l00765"></a>00765 <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* next; <a name="l00766"></a>00766 <a name="l00767"></a>00767 <span class="keyword">private</span>: <a name="l00768"></a>00768 <a class="code" href="classTiXmlNode.html">TiXmlNode</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>&amp; ); <span class="comment">// not implemented.</span> <a name="l00769"></a>00769 <span class="keywordtype">void</span> operator=( <span class="keyword">const</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>&amp; base ); <span class="comment">// not allowed.</span> <a name="l00770"></a>00770 }; <a name="l00771"></a>00771 <a name="l00772"></a>00772 <a name="l00780"></a><a class="code" href="classTiXmlAttribute.html">00780</a> <span class="keyword">class </span><a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a> : <span class="keyword">public</span> <a class="code" href="classTiXmlBase.html">TiXmlBase</a> <a name="l00781"></a>00781 { <a name="l00782"></a>00782 <span class="keyword">friend</span> <span class="keyword">class </span>TiXmlAttributeSet; <a name="l00783"></a>00783 <a name="l00784"></a>00784 <span class="keyword">public</span>: <a name="l00786"></a><a class="code" href="classTiXmlAttribute.html#9cfa3c8179873fd485d83003b114f8e1">00786</a> <a class="code" href="classTiXmlAttribute.html#9cfa3c8179873fd485d83003b114f8e1">TiXmlAttribute</a>() : <a class="code" href="classTiXmlBase.html">TiXmlBase</a>() <a name="l00787"></a>00787 { <a name="l00788"></a>00788 document = 0; <a name="l00789"></a>00789 prev = next = 0; <a name="l00790"></a>00790 } <a name="l00791"></a>00791 <a name="l00792"></a>00792 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l00794"></a><a class="code" href="classTiXmlAttribute.html#052213522caac3979960e0714063861d">00794</a> <span class="preprocessor"> TiXmlAttribute( const std::string&amp; _name, const std::string&amp; _value )</span> <a name="l00795"></a>00795 <span class="preprocessor"></span> { <a name="l00796"></a>00796 name = _name; <a name="l00797"></a>00797 value = _value; <a name="l00798"></a>00798 document = 0; <a name="l00799"></a>00799 prev = next = 0; <a name="l00800"></a>00800 } <a name="l00801"></a>00801 <span class="preprocessor"> #endif</span> <a name="l00802"></a>00802 <span class="preprocessor"></span> <a name="l00804"></a><a class="code" href="classTiXmlAttribute.html#759d0b76fb8fcf765ecab243bc14f05e">00804</a> <a class="code" href="classTiXmlAttribute.html#9cfa3c8179873fd485d83003b114f8e1">TiXmlAttribute</a>( <span class="keyword">const</span> <span class="keywordtype">char</span> * _name, <span class="keyword">const</span> <span class="keywordtype">char</span> * _value ) <a name="l00805"></a>00805 { <a name="l00806"></a>00806 name = _name; <a name="l00807"></a>00807 value = _value; <a name="l00808"></a>00808 document = 0; <a name="l00809"></a>00809 prev = next = 0; <a name="l00810"></a>00810 } <a name="l00811"></a>00811 <a name="l00812"></a><a class="code" href="classTiXmlAttribute.html#298a57287d305904ba6bd96ae6f78d3d">00812</a> <span class="keyword">const</span> <span class="keywordtype">char</span>* <a class="code" href="classTiXmlAttribute.html#298a57287d305904ba6bd96ae6f78d3d">Name</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> name.c_str(); } <a name="l00813"></a><a class="code" href="classTiXmlAttribute.html#0f874490eac8ca00ee0070765d0e97e3">00813</a> <span class="keyword">const</span> <span class="keywordtype">char</span>* <a class="code" href="classTiXmlAttribute.html#0f874490eac8ca00ee0070765d0e97e3">Value</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> value.c_str(); } <a name="l00814"></a>00814 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l00815"></a><a class="code" href="classTiXmlAttribute.html#87705c3ccf9ee9417beb4f7cbacd4d33">00815</a> <span class="preprocessor"></span> <span class="keyword">const</span> std::string&amp; <a class="code" href="classTiXmlAttribute.html#87705c3ccf9ee9417beb4f7cbacd4d33">ValueStr</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> value; } <a name="l00816"></a>00816 <span class="preprocessor"> #endif</span> <a name="l00817"></a>00817 <span class="preprocessor"></span> <span class="keywordtype">int</span> <a class="code" href="classTiXmlAttribute.html#a1a20ad59dc7e89a0ab265396360d50f">IntValue</a>() <span class="keyword">const</span>; <a name="l00818"></a>00818 <span class="keywordtype">double</span> <a class="code" href="classTiXmlAttribute.html#2880ddef53fc7522c99535273954d230">DoubleValue</a>() <span class="keyword">const</span>; <a name="l00819"></a>00819 <a name="l00820"></a>00820 <span class="comment">// Get the tinyxml string representation</span> <a name="l00821"></a>00821 <span class="keyword">const</span> TIXML_STRING&amp; NameTStr()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> name; } <a name="l00822"></a>00822 <a name="l00832"></a>00832 <span class="keywordtype">int</span> <a class="code" href="classTiXmlAttribute.html#d6c93088ee21af41a107931223339344">QueryIntValue</a>( <span class="keywordtype">int</span>* _value ) <span class="keyword">const</span>; <a name="l00834"></a>00834 <span class="keywordtype">int</span> <a class="code" href="classTiXmlAttribute.html#c87b2a8489906a5d7aa2875f20be3513">QueryDoubleValue</a>( <span class="keywordtype">double</span>* _value ) <span class="keyword">const</span>; <a name="l00835"></a>00835 <a name="l00836"></a><a class="code" href="classTiXmlAttribute.html#b7fa3d21ff8d7c5764cf9af15b667a99">00836</a> <span class="keywordtype">void</span> <a class="code" href="classTiXmlAttribute.html#b7fa3d21ff8d7c5764cf9af15b667a99">SetName</a>( <span class="keyword">const</span> <span class="keywordtype">char</span>* _name ) { name = _name; } <a name="l00837"></a><a class="code" href="classTiXmlAttribute.html#2dae44178f668b3cb48101be4f2236a0">00837</a> <span class="keywordtype">void</span> <a class="code" href="classTiXmlAttribute.html#2dae44178f668b3cb48101be4f2236a0">SetValue</a>( <span class="keyword">const</span> <span class="keywordtype">char</span>* _value ) { value = _value; } <a name="l00838"></a>00838 <a name="l00839"></a>00839 <span class="keywordtype">void</span> <a class="code" href="classTiXmlAttribute.html#7e065df640116a62ea4f4b7da5449cc8">SetIntValue</a>( <span class="keywordtype">int</span> _value ); <a name="l00840"></a>00840 <span class="keywordtype">void</span> <a class="code" href="classTiXmlAttribute.html#0316da31373496c4368ad549bf711394">SetDoubleValue</a>( <span class="keywordtype">double</span> _value ); <a name="l00841"></a>00841 <a name="l00842"></a>00842 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l00844"></a><a class="code" href="classTiXmlAttribute.html#b296ff0c9a8c701055cd257a8a976e57">00844</a> <span class="preprocessor"> void SetName( const std::string&amp; _name ) { name = _name; } </span> <a name="l00846"></a><a class="code" href="classTiXmlAttribute.html#b43f67a0cc3ec1d80e62606500f0925f">00846</a> <span class="preprocessor"> void SetValue( const std::string&amp; _value ) { value = _value; }</span> <a name="l00847"></a>00847 <span class="preprocessor"></span><span class="preprocessor"> #endif</span> <a name="l00848"></a>00848 <span class="preprocessor"></span> <a name="l00850"></a>00850 <span class="keyword">const</span> <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>* <a class="code" href="classTiXmlAttribute.html#1c78e92e223a40843f644ba48ef69f67">Next</a>() <span class="keyword">const</span>; <a name="l00851"></a>00851 <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>* <a class="code" href="classTiXmlAttribute.html#1c78e92e223a40843f644ba48ef69f67">Next</a>() { <a name="l00852"></a>00852 <span class="keywordflow">return</span> const_cast&lt; TiXmlAttribute* &gt;( (const_cast&lt; const TiXmlAttribute* &gt;(<span class="keyword">this</span>))-&gt;Next() ); <a name="l00853"></a>00853 } <a name="l00854"></a>00854 <a name="l00856"></a>00856 <span class="keyword">const</span> <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>* <a class="code" href="classTiXmlAttribute.html#6ebbfe333fe76cd834bd6cbcca3130cf">Previous</a>() <span class="keyword">const</span>; <a name="l00857"></a>00857 <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>* <a class="code" href="classTiXmlAttribute.html#6ebbfe333fe76cd834bd6cbcca3130cf">Previous</a>() { <a name="l00858"></a>00858 <span class="keywordflow">return</span> const_cast&lt; TiXmlAttribute* &gt;( (const_cast&lt; const TiXmlAttribute* &gt;(<span class="keyword">this</span>))-&gt;Previous() ); <a name="l00859"></a>00859 } <a name="l00860"></a>00860 <a name="l00861"></a>00861 <span class="keywordtype">bool</span> operator==( <span class="keyword">const</span> <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>&amp; rhs )<span class="keyword"> const </span>{ <span class="keywordflow">return</span> rhs.<a class="code" href="classTiXmlAttribute.html#fcbe165f33f08cf9b24daa33f0ee951a">name</a> == name; } <a name="l00862"></a>00862 <span class="keywordtype">bool</span> operator&lt;( <span class="keyword">const</span> <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>&amp; rhs )<span class="keyword"> const </span>{ <span class="keywordflow">return</span> name &lt; rhs.<a class="code" href="classTiXmlAttribute.html#fcbe165f33f08cf9b24daa33f0ee951a">name</a>; } <a name="l00863"></a>00863 <span class="keywordtype">bool</span> operator&gt;( <span class="keyword">const</span> <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>&amp; rhs )<span class="keyword"> const </span>{ <span class="keywordflow">return</span> name &gt; rhs.<a class="code" href="classTiXmlAttribute.html#fcbe165f33f08cf9b24daa33f0ee951a">name</a>; } <a name="l00864"></a>00864 <a name="l00865"></a>00865 <span class="comment">/* Attribute parsing starts: first letter of the name</span> <a name="l00866"></a>00866 <span class="comment"> returns: the next char after the value end quote</span> <a name="l00867"></a>00867 <span class="comment"> */</span> <a name="l00868"></a>00868 <span class="keyword">virtual</span> <span class="keyword">const</span> <span class="keywordtype">char</span>* Parse( <span class="keyword">const</span> <span class="keywordtype">char</span>* p, TiXmlParsingData* data, TiXmlEncoding encoding ); <a name="l00869"></a>00869 <a name="l00870"></a>00870 <span class="comment">// Prints this Attribute to a FILE stream.</span> <a name="l00871"></a><a class="code" href="classTiXmlAttribute.html#cc04956c1d5c4c31fe74f7a7528d109a">00871</a> <span class="keyword">virtual</span> <span class="keywordtype">void</span> <a class="code" href="classTiXmlAttribute.html#cc04956c1d5c4c31fe74f7a7528d109a">Print</a>( FILE* cfile, <span class="keywordtype">int</span> depth )<span class="keyword"> const </span>{ <a name="l00872"></a>00872 <a class="code" href="classTiXmlAttribute.html#cc04956c1d5c4c31fe74f7a7528d109a">Print</a>( cfile, depth, 0 ); <a name="l00873"></a>00873 } <a name="l00874"></a>00874 <span class="keywordtype">void</span> <a class="code" href="classTiXmlAttribute.html#cc04956c1d5c4c31fe74f7a7528d109a">Print</a>( FILE* cfile, <span class="keywordtype">int</span> depth, TIXML_STRING* str ) <span class="keyword">const</span>; <a name="l00875"></a>00875 <a name="l00876"></a>00876 <span class="comment">// [internal use]</span> <a name="l00877"></a>00877 <span class="comment">// Set the document pointer so the attribute can report errors.</span> <a name="l00878"></a>00878 <span class="keywordtype">void</span> SetDocument( <a class="code" href="classTiXmlDocument.html">TiXmlDocument</a>* doc ) { document = doc; } <a name="l00879"></a>00879 <a name="l00880"></a>00880 <span class="keyword">private</span>: <a name="l00881"></a>00881 <a class="code" href="classTiXmlAttribute.html#9cfa3c8179873fd485d83003b114f8e1">TiXmlAttribute</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>&amp; ); <span class="comment">// not implemented.</span> <a name="l00882"></a>00882 <span class="keywordtype">void</span> operator=( <span class="keyword">const</span> <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>&amp; base ); <span class="comment">// not allowed.</span> <a name="l00883"></a>00883 <a name="l00884"></a>00884 <a class="code" href="classTiXmlDocument.html">TiXmlDocument</a>* document; <span class="comment">// A pointer back to a document, for error reporting.</span> <a name="l00885"></a>00885 TIXML_STRING name; <a name="l00886"></a>00886 TIXML_STRING value; <a name="l00887"></a>00887 <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>* prev; <a name="l00888"></a>00888 <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>* next; <a name="l00889"></a>00889 }; <a name="l00890"></a>00890 <a name="l00891"></a>00891 <a name="l00892"></a>00892 <span class="comment">/* A class used to manage a group of attributes.</span> <a name="l00893"></a>00893 <span class="comment"> It is only used internally, both by the ELEMENT and the DECLARATION.</span> <a name="l00894"></a>00894 <span class="comment"> </span> <a name="l00895"></a>00895 <span class="comment"> The set can be changed transparent to the Element and Declaration</span> <a name="l00896"></a>00896 <span class="comment"> classes that use it, but NOT transparent to the Attribute</span> <a name="l00897"></a>00897 <span class="comment"> which has to implement a next() and previous() method. Which makes</span> <a name="l00898"></a>00898 <span class="comment"> it a bit problematic and prevents the use of STL.</span> <a name="l00899"></a>00899 <span class="comment"></span> <a name="l00900"></a>00900 <span class="comment"> This version is implemented with circular lists because:</span> <a name="l00901"></a>00901 <span class="comment"> - I like circular lists</span> <a name="l00902"></a>00902 <span class="comment"> - it demonstrates some independence from the (typical) doubly linked list.</span> <a name="l00903"></a>00903 <span class="comment">*/</span> <a name="l00904"></a>00904 <span class="keyword">class </span>TiXmlAttributeSet <a name="l00905"></a>00905 { <a name="l00906"></a>00906 <span class="keyword">public</span>: <a name="l00907"></a>00907 TiXmlAttributeSet(); <a name="l00908"></a>00908 ~TiXmlAttributeSet(); <a name="l00909"></a>00909 <a name="l00910"></a>00910 <span class="keywordtype">void</span> Add( <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>* attribute ); <a name="l00911"></a>00911 <span class="keywordtype">void</span> Remove( <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>* attribute ); <a name="l00912"></a>00912 <a name="l00913"></a>00913 <span class="keyword">const</span> <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>* First()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> ( sentinel.next == &amp;sentinel ) ? 0 : sentinel.next; } <a name="l00914"></a>00914 <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>* First() { <span class="keywordflow">return</span> ( sentinel.next == &amp;sentinel ) ? 0 : sentinel.next; } <a name="l00915"></a>00915 <span class="keyword">const</span> <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>* Last()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> ( sentinel.prev == &amp;sentinel ) ? 0 : sentinel.prev; } <a name="l00916"></a>00916 <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>* Last() { <span class="keywordflow">return</span> ( sentinel.prev == &amp;sentinel ) ? 0 : sentinel.prev; } <a name="l00917"></a>00917 <a name="l00918"></a>00918 <span class="keyword">const</span> <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>* Find( <span class="keyword">const</span> <span class="keywordtype">char</span>* _name ) <span class="keyword">const</span>; <a name="l00919"></a>00919 <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>* Find( <span class="keyword">const</span> <span class="keywordtype">char</span>* _name ) { <a name="l00920"></a>00920 <span class="keywordflow">return</span> const_cast&lt; TiXmlAttribute* &gt;( (const_cast&lt; const TiXmlAttributeSet* &gt;(<span class="keyword">this</span>))-&gt;Find( _name ) ); <a name="l00921"></a>00921 } <a name="l00922"></a>00922 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l00923"></a>00923 <span class="preprocessor"></span> <span class="keyword">const</span> <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>* Find( <span class="keyword">const</span> std::string&amp; _name ) <span class="keyword">const</span>; <a name="l00924"></a>00924 <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>* Find( <span class="keyword">const</span> std::string&amp; _name ) { <a name="l00925"></a>00925 <span class="keywordflow">return</span> const_cast&lt; TiXmlAttribute* &gt;( (const_cast&lt; const TiXmlAttributeSet* &gt;(<span class="keyword">this</span>))-&gt;Find( _name ) ); <a name="l00926"></a>00926 } <a name="l00927"></a>00927 <a name="l00928"></a>00928 <span class="preprocessor"> #endif</span> <a name="l00929"></a>00929 <span class="preprocessor"></span> <a name="l00930"></a>00930 <span class="keyword">private</span>: <a name="l00931"></a>00931 <span class="comment">//*ME: Because of hidden/disabled copy-construktor in TiXmlAttribute (sentinel-element),</span> <a name="l00932"></a>00932 <span class="comment">//*ME: this class must be also use a hidden/disabled copy-constructor !!!</span> <a name="l00933"></a>00933 TiXmlAttributeSet( <span class="keyword">const</span> TiXmlAttributeSet&amp; ); <span class="comment">// not allowed</span> <a name="l00934"></a>00934 <span class="keywordtype">void</span> operator=( <span class="keyword">const</span> TiXmlAttributeSet&amp; ); <span class="comment">// not allowed (as TiXmlAttribute)</span> <a name="l00935"></a>00935 <a name="l00936"></a>00936 <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a> sentinel; <a name="l00937"></a>00937 }; <a name="l00938"></a>00938 <a name="l00939"></a>00939 <a name="l00944"></a><a class="code" href="classTiXmlElement.html">00944</a> <span class="keyword">class </span><a class="code" href="classTiXmlElement.html">TiXmlElement</a> : <span class="keyword">public</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a> <a name="l00945"></a>00945 { <a name="l00946"></a>00946 <span class="keyword">public</span>: <a name="l00948"></a>00948 <a class="code" href="classTiXmlElement.html#01bc3ab372d35da08efcbbe65ad90c60">TiXmlElement</a> (<span class="keyword">const</span> <span class="keywordtype">char</span> * in_value); <a name="l00949"></a>00949 <a name="l00950"></a>00950 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l00952"></a>00952 <span class="preprocessor"> TiXmlElement( const std::string&amp; _value );</span> <a name="l00953"></a>00953 <span class="preprocessor"></span><span class="preprocessor"> #endif</span> <a name="l00954"></a>00954 <span class="preprocessor"></span> <a name="l00955"></a>00955 <a class="code" href="classTiXmlElement.html#01bc3ab372d35da08efcbbe65ad90c60">TiXmlElement</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlElement.html">TiXmlElement</a>&amp; ); <a name="l00956"></a>00956 <a name="l00957"></a>00957 <span class="keywordtype">void</span> operator=( <span class="keyword">const</span> <a class="code" href="classTiXmlElement.html">TiXmlElement</a>&amp; base ); <a name="l00958"></a>00958 <a name="l00959"></a>00959 <span class="keyword">virtual</span> ~<a class="code" href="classTiXmlElement.html">TiXmlElement</a>(); <a name="l00960"></a>00960 <a name="l00964"></a>00964 <span class="keyword">const</span> <span class="keywordtype">char</span>* <a class="code" href="classTiXmlElement.html#e419a442a9701a62b0c3d8fd1cbdd12d">Attribute</a>( <span class="keyword">const</span> <span class="keywordtype">char</span>* name ) <span class="keyword">const</span>; <a name="l00965"></a>00965 <a name="l00972"></a>00972 <span class="keyword">const</span> <span class="keywordtype">char</span>* <a class="code" href="classTiXmlElement.html#e419a442a9701a62b0c3d8fd1cbdd12d">Attribute</a>( <span class="keyword">const</span> <span class="keywordtype">char</span>* name, <span class="keywordtype">int</span>* i ) <span class="keyword">const</span>; <a name="l00973"></a>00973 <a name="l00980"></a>00980 <span class="keyword">const</span> <span class="keywordtype">char</span>* <a class="code" href="classTiXmlElement.html#e419a442a9701a62b0c3d8fd1cbdd12d">Attribute</a>( <span class="keyword">const</span> <span class="keywordtype">char</span>* name, <span class="keywordtype">double</span>* d ) <span class="keyword">const</span>; <a name="l00981"></a>00981 <a name="l00989"></a>00989 <span class="keywordtype">int</span> <a class="code" href="classTiXmlElement.html#ea0bfe471380f281c5945770ddbf52b9">QueryIntAttribute</a>( <span class="keyword">const</span> <span class="keywordtype">char</span>* name, <span class="keywordtype">int</span>* _value ) <span class="keyword">const</span>; <a name="l00991"></a>00991 <span class="keywordtype">int</span> <a class="code" href="classTiXmlElement.html#898d7730ecc341f0bffc7a9dadbf1ce7">QueryDoubleAttribute</a>( <span class="keyword">const</span> <span class="keywordtype">char</span>* name, <span class="keywordtype">double</span>* _value ) <span class="keyword">const</span>; <a name="l00993"></a><a class="code" href="classTiXmlElement.html#a04d3af11601ef5a5f88295203a843be">00993</a> <span class="keywordtype">int</span> <a class="code" href="classTiXmlElement.html#a04d3af11601ef5a5f88295203a843be">QueryFloatAttribute</a>( <span class="keyword">const</span> <span class="keywordtype">char</span>* name, <span class="keywordtype">float</span>* _value )<span class="keyword"> const </span>{ <a name="l00994"></a>00994 <span class="keywordtype">double</span> d; <a name="l00995"></a>00995 <span class="keywordtype">int</span> result = <a class="code" href="classTiXmlElement.html#898d7730ecc341f0bffc7a9dadbf1ce7">QueryDoubleAttribute</a>( name, &amp;d ); <a name="l00996"></a>00996 <span class="keywordflow">if</span> ( result == TIXML_SUCCESS ) { <a name="l00997"></a>00997 *_value = (float)d; <a name="l00998"></a>00998 } <a name="l00999"></a>00999 <span class="keywordflow">return</span> result; <a name="l01000"></a>01000 } <a name="l01001"></a>01001 <a name="l01002"></a>01002 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l01003"></a>01003 <span class="preprocessor"></span> <a name="l01011"></a><a class="code" href="classTiXmlElement.html#e3b9a03b0a56663a40801c7256683576">01011</a> <span class="keyword">template</span>&lt; <span class="keyword">typename</span> T &gt; <span class="keywordtype">int</span> <a class="code" href="classTiXmlElement.html#e3b9a03b0a56663a40801c7256683576">QueryValueAttribute</a>( <span class="keyword">const</span> std::string&amp; name, T* outValue )<span class="keyword"> const</span> <a name="l01012"></a>01012 <span class="keyword"> </span>{ <a name="l01013"></a>01013 <span class="keyword">const</span> <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>* node = attributeSet.Find( name ); <a name="l01014"></a>01014 <span class="keywordflow">if</span> ( !node ) <a name="l01015"></a>01015 <span class="keywordflow">return</span> TIXML_NO_ATTRIBUTE; <a name="l01016"></a>01016 <a name="l01017"></a>01017 std::stringstream sstream( node-&gt;<a class="code" href="classTiXmlAttribute.html#87705c3ccf9ee9417beb4f7cbacd4d33">ValueStr</a>() ); <a name="l01018"></a>01018 sstream &gt;&gt; *outValue; <a name="l01019"></a>01019 <span class="keywordflow">if</span> ( !sstream.fail() ) <a name="l01020"></a>01020 <span class="keywordflow">return</span> TIXML_SUCCESS; <a name="l01021"></a>01021 <span class="keywordflow">return</span> TIXML_WRONG_TYPE; <a name="l01022"></a>01022 } <a name="l01023"></a>01023 <span class="comment">/*</span> <a name="l01024"></a>01024 <span class="comment"> This is - in theory - a bug fix for "QueryValueAtribute returns truncated std::string"</span> <a name="l01025"></a>01025 <span class="comment"> but template specialization is hard to get working cross-compiler. Leaving the bug for now.</span> <a name="l01026"></a>01026 <span class="comment"> </span> <a name="l01027"></a>01027 <span class="comment"> // The above will fail for std::string because the space character is used as a seperator.</span> <a name="l01028"></a>01028 <span class="comment"> // Specialize for strings. Bug [ 1695429 ] QueryValueAtribute returns truncated std::string</span> <a name="l01029"></a>01029 <span class="comment"> template&lt;&gt; int QueryValueAttribute( const std::string&amp; name, std::string* outValue ) const</span> <a name="l01030"></a>01030 <span class="comment"> {</span> <a name="l01031"></a>01031 <span class="comment"> const TiXmlAttribute* node = attributeSet.Find( name );</span> <a name="l01032"></a>01032 <span class="comment"> if ( !node )</span> <a name="l01033"></a>01033 <span class="comment"> return TIXML_NO_ATTRIBUTE;</span> <a name="l01034"></a>01034 <span class="comment"> *outValue = node-&gt;ValueStr();</span> <a name="l01035"></a>01035 <span class="comment"> return TIXML_SUCCESS;</span> <a name="l01036"></a>01036 <span class="comment"> }</span> <a name="l01037"></a>01037 <span class="comment"> */</span> <a name="l01038"></a>01038 <span class="preprocessor"> #endif</span> <a name="l01039"></a>01039 <span class="preprocessor"></span> <a name="l01043"></a>01043 <span class="keywordtype">void</span> <a class="code" href="classTiXmlElement.html#bf0b3bd7f0e4c746a89ec6e7f101fc32">SetAttribute</a>( <span class="keyword">const</span> <span class="keywordtype">char</span>* name, <span class="keyword">const</span> <span class="keywordtype">char</span> * _value ); <a name="l01044"></a>01044 <a name="l01045"></a>01045 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l01046"></a>01046 <span class="preprocessor"></span> <span class="keyword">const</span> std::string* <a class="code" href="classTiXmlElement.html#e419a442a9701a62b0c3d8fd1cbdd12d">Attribute</a>( <span class="keyword">const</span> std::string&amp; name ) <span class="keyword">const</span>; <a name="l01047"></a>01047 <span class="keyword">const</span> std::string* <a class="code" href="classTiXmlElement.html#e419a442a9701a62b0c3d8fd1cbdd12d">Attribute</a>( <span class="keyword">const</span> std::string&amp; name, <span class="keywordtype">int</span>* i ) <span class="keyword">const</span>; <a name="l01048"></a>01048 <span class="keyword">const</span> std::string* <a class="code" href="classTiXmlElement.html#e419a442a9701a62b0c3d8fd1cbdd12d">Attribute</a>( <span class="keyword">const</span> std::string&amp; name, <span class="keywordtype">double</span>* d ) <span class="keyword">const</span>; <a name="l01049"></a>01049 <span class="keywordtype">int</span> <a class="code" href="classTiXmlElement.html#ea0bfe471380f281c5945770ddbf52b9">QueryIntAttribute</a>( <span class="keyword">const</span> std::string&amp; name, <span class="keywordtype">int</span>* _value ) <span class="keyword">const</span>; <a name="l01050"></a>01050 <span class="keywordtype">int</span> <a class="code" href="classTiXmlElement.html#898d7730ecc341f0bffc7a9dadbf1ce7">QueryDoubleAttribute</a>( <span class="keyword">const</span> std::string&amp; name, <span class="keywordtype">double</span>* _value ) <span class="keyword">const</span>; <a name="l01051"></a>01051 <a name="l01053"></a>01053 <span class="keywordtype">void</span> <a class="code" href="classTiXmlElement.html#bf0b3bd7f0e4c746a89ec6e7f101fc32">SetAttribute</a>( <span class="keyword">const</span> std::string&amp; name, <span class="keyword">const</span> std::string&amp; _value ); <a name="l01055"></a>01055 <span class="keywordtype">void</span> <a class="code" href="classTiXmlElement.html#bf0b3bd7f0e4c746a89ec6e7f101fc32">SetAttribute</a>( <span class="keyword">const</span> std::string&amp; name, <span class="keywordtype">int</span> _value ); <a name="l01056"></a>01056 <span class="preprocessor"> #endif</span> <a name="l01057"></a>01057 <span class="preprocessor"></span> <a name="l01061"></a>01061 <span class="keywordtype">void</span> <a class="code" href="classTiXmlElement.html#bf0b3bd7f0e4c746a89ec6e7f101fc32">SetAttribute</a>( <span class="keyword">const</span> <span class="keywordtype">char</span> * name, <span class="keywordtype">int</span> value ); <a name="l01062"></a>01062 <a name="l01066"></a>01066 <span class="keywordtype">void</span> <a class="code" href="classTiXmlElement.html#0d1dd975d75496778177e35abfe0ec0b">SetDoubleAttribute</a>( <span class="keyword">const</span> <span class="keywordtype">char</span> * name, <span class="keywordtype">double</span> value ); <a name="l01067"></a>01067 <a name="l01070"></a>01070 <span class="keywordtype">void</span> <a class="code" href="classTiXmlElement.html#56979767deca794376b1dfa69a525b2a">RemoveAttribute</a>( <span class="keyword">const</span> <span class="keywordtype">char</span> * name ); <a name="l01071"></a>01071 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l01072"></a><a class="code" href="classTiXmlElement.html#1afa6aea716511326a608e4c05df4f3a">01072</a> <span class="preprocessor"></span> <span class="keywordtype">void</span> <a class="code" href="classTiXmlElement.html#56979767deca794376b1dfa69a525b2a">RemoveAttribute</a>( <span class="keyword">const</span> std::string&amp; name ) { <a class="code" href="classTiXmlElement.html#56979767deca794376b1dfa69a525b2a">RemoveAttribute</a> (name.c_str ()); } <a name="l01073"></a>01073 <span class="preprocessor"> #endif</span> <a name="l01074"></a>01074 <span class="preprocessor"></span> <a name="l01075"></a><a class="code" href="classTiXmlElement.html#516054c9073647d6cb29b6abe9fa0592">01075</a> <span class="keyword">const</span> <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>* <a class="code" href="classTiXmlElement.html#516054c9073647d6cb29b6abe9fa0592">FirstAttribute</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> attributeSet.First(); } <a name="l01076"></a>01076 <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>* <a class="code" href="classTiXmlElement.html#516054c9073647d6cb29b6abe9fa0592">FirstAttribute</a>() { <span class="keywordflow">return</span> attributeSet.First(); } <a name="l01077"></a><a class="code" href="classTiXmlElement.html#86191b49f9177be132b85b14655f1381">01077</a> <span class="keyword">const</span> <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>* <a class="code" href="classTiXmlElement.html#86191b49f9177be132b85b14655f1381">LastAttribute</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> attributeSet.Last(); } <a name="l01078"></a>01078 <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>* <a class="code" href="classTiXmlElement.html#86191b49f9177be132b85b14655f1381">LastAttribute</a>() { <span class="keywordflow">return</span> attributeSet.Last(); } <a name="l01079"></a>01079 <a name="l01112"></a>01112 <span class="keyword">const</span> <span class="keywordtype">char</span>* <a class="code" href="classTiXmlElement.html#f3282294986cdb216646ea1f67af2c87">GetText</a>() <span class="keyword">const</span>; <a name="l01113"></a>01113 <a name="l01115"></a>01115 <span class="keyword">virtual</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlElement.html#a464535ea1994db337cb6a8ce4b588b5">Clone</a>() <span class="keyword">const</span>; <a name="l01116"></a>01116 <span class="comment">// Print the Element to a FILE stream.</span> <a name="l01117"></a>01117 <span class="keyword">virtual</span> <span class="keywordtype">void</span> <a class="code" href="classTiXmlElement.html#fbf52736e70fc91ec9d760721d6f4fd2">Print</a>( FILE* cfile, <span class="keywordtype">int</span> depth ) <span class="keyword">const</span>; <a name="l01118"></a>01118 <a name="l01119"></a>01119 <span class="comment">/* Attribtue parsing starts: next char past '&lt;'</span> <a name="l01120"></a>01120 <span class="comment"> returns: next char past '&gt;'</span> <a name="l01121"></a>01121 <span class="comment"> */</span> <a name="l01122"></a>01122 <span class="keyword">virtual</span> <span class="keyword">const</span> <span class="keywordtype">char</span>* Parse( <span class="keyword">const</span> <span class="keywordtype">char</span>* p, TiXmlParsingData* data, TiXmlEncoding encoding ); <a name="l01123"></a>01123 <a name="l01124"></a><a class="code" href="classTiXmlElement.html#c5b8d0e25fa23fd9acbb6d146082901c">01124</a> <span class="keyword">virtual</span> <span class="keyword">const</span> <a class="code" href="classTiXmlElement.html">TiXmlElement</a>* <a class="code" href="classTiXmlElement.html#c5b8d0e25fa23fd9acbb6d146082901c">ToElement</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> <span class="keyword">this</span>; } <a name="l01125"></a><a class="code" href="classTiXmlElement.html#9def86337ea7a755eb41cac980f60c7a">01125</a> <span class="keyword">virtual</span> <a class="code" href="classTiXmlElement.html">TiXmlElement</a>* <a class="code" href="classTiXmlElement.html#c5b8d0e25fa23fd9acbb6d146082901c">ToElement</a>() { <span class="keywordflow">return</span> <span class="keyword">this</span>; } <a name="l01126"></a>01126 <a name="l01129"></a>01129 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlElement.html#71a81b2afb0d42be1543d1c404dee6f5">Accept</a>( <a class="code" href="classTiXmlVisitor.html">TiXmlVisitor</a>* visitor ) <span class="keyword">const</span>; <a name="l01130"></a>01130 <a name="l01131"></a>01131 <span class="keyword">protected</span>: <a name="l01132"></a>01132 <a name="l01133"></a>01133 <span class="keywordtype">void</span> CopyTo( <a class="code" href="classTiXmlElement.html">TiXmlElement</a>* target ) <span class="keyword">const</span>; <a name="l01134"></a>01134 <span class="keywordtype">void</span> ClearThis(); <span class="comment">// like clear, but initializes 'this' object as well</span> <a name="l01135"></a>01135 <a name="l01136"></a>01136 <span class="comment">// Used to be public [internal use]</span> <a name="l01137"></a>01137 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l01138"></a>01138 <span class="preprocessor"></span> <span class="keyword">virtual</span> <span class="keywordtype">void</span> StreamIn( std::istream * in, TIXML_STRING * tag ); <a name="l01139"></a>01139 <span class="preprocessor"> #endif</span> <a name="l01140"></a>01140 <span class="preprocessor"></span> <span class="comment">/* [internal use]</span> <a name="l01141"></a>01141 <span class="comment"> Reads the "value" of the element -- another element, or text.</span> <a name="l01142"></a>01142 <span class="comment"> This should terminate with the current end tag.</span> <a name="l01143"></a>01143 <span class="comment"> */</span> <a name="l01144"></a>01144 <span class="keyword">const</span> <span class="keywordtype">char</span>* ReadValue( <span class="keyword">const</span> <span class="keywordtype">char</span>* in, TiXmlParsingData* prevData, TiXmlEncoding encoding ); <a name="l01145"></a>01145 <a name="l01146"></a>01146 <span class="keyword">private</span>: <a name="l01147"></a>01147 <a name="l01148"></a>01148 TiXmlAttributeSet attributeSet; <a name="l01149"></a>01149 }; <a name="l01150"></a>01150 <a name="l01151"></a>01151 <a name="l01154"></a><a class="code" href="classTiXmlComment.html">01154</a> <span class="keyword">class </span><a class="code" href="classTiXmlComment.html">TiXmlComment</a> : <span class="keyword">public</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a> <a name="l01155"></a>01155 { <a name="l01156"></a>01156 <span class="keyword">public</span>: <a name="l01158"></a><a class="code" href="classTiXmlComment.html#aa3252031d3e8bd3a2bf51a1c61201b7">01158</a> <a class="code" href="classTiXmlComment.html#aa3252031d3e8bd3a2bf51a1c61201b7">TiXmlComment</a>() : <a class="code" href="classTiXmlNode.html">TiXmlNode</a>( <a class="code" href="classTiXmlNode.html">TiXmlNode</a>::COMMENT ) {} <a name="l01160"></a><a class="code" href="classTiXmlComment.html#37e7802ef17bc03ebe5ae79bf0713d47">01160</a> <a class="code" href="classTiXmlComment.html#aa3252031d3e8bd3a2bf51a1c61201b7">TiXmlComment</a>( <span class="keyword">const</span> <span class="keywordtype">char</span>* _value ) : <a class="code" href="classTiXmlNode.html">TiXmlNode</a>( <a class="code" href="classTiXmlNode.html">TiXmlNode</a>::COMMENT ) { <a name="l01161"></a>01161 <a class="code" href="classTiXmlNode.html#2a38329ca5d3f28f98ce932b8299ae90">SetValue</a>( _value ); <a name="l01162"></a>01162 } <a name="l01163"></a>01163 <a class="code" href="classTiXmlComment.html#aa3252031d3e8bd3a2bf51a1c61201b7">TiXmlComment</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlComment.html">TiXmlComment</a>&amp; ); <a name="l01164"></a>01164 <span class="keywordtype">void</span> operator=( <span class="keyword">const</span> <a class="code" href="classTiXmlComment.html">TiXmlComment</a>&amp; base ); <a name="l01165"></a>01165 <a name="l01166"></a>01166 <span class="keyword">virtual</span> ~<a class="code" href="classTiXmlComment.html">TiXmlComment</a>() {} <a name="l01167"></a>01167 <a name="l01169"></a>01169 <span class="keyword">virtual</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlComment.html#0d6662bdc52488b9e12b3c7a0453d028">Clone</a>() <span class="keyword">const</span>; <a name="l01170"></a>01170 <span class="comment">// Write this Comment to a FILE stream.</span> <a name="l01171"></a>01171 <span class="keyword">virtual</span> <span class="keywordtype">void</span> <a class="code" href="classTiXmlComment.html#6b316527aaa8da0370cd68c22a5a0f5f">Print</a>( FILE* cfile, <span class="keywordtype">int</span> depth ) <span class="keyword">const</span>; <a name="l01172"></a>01172 <a name="l01173"></a>01173 <span class="comment">/* Attribtue parsing starts: at the ! of the !--</span> <a name="l01174"></a>01174 <span class="comment"> returns: next char past '&gt;'</span> <a name="l01175"></a>01175 <span class="comment"> */</span> <a name="l01176"></a>01176 <span class="keyword">virtual</span> <span class="keyword">const</span> <span class="keywordtype">char</span>* Parse( <span class="keyword">const</span> <span class="keywordtype">char</span>* p, TiXmlParsingData* data, TiXmlEncoding encoding ); <a name="l01177"></a>01177 <a name="l01178"></a><a class="code" href="classTiXmlComment.html#00fb4215c20a2399ea05ac9b9e7e68a0">01178</a> <span class="keyword">virtual</span> <span class="keyword">const</span> <a class="code" href="classTiXmlComment.html">TiXmlComment</a>* <a class="code" href="classTiXmlComment.html#00fb4215c20a2399ea05ac9b9e7e68a0">ToComment</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> <span class="keyword">this</span>; } <a name="l01179"></a><a class="code" href="classTiXmlComment.html#cc7c7e07e13c23f17797d642981511df">01179</a> <span class="keyword">virtual</span> <a class="code" href="classTiXmlComment.html">TiXmlComment</a>* <a class="code" href="classTiXmlComment.html#00fb4215c20a2399ea05ac9b9e7e68a0">ToComment</a>() { <span class="keywordflow">return</span> <span class="keyword">this</span>; } <a name="l01180"></a>01180 <a name="l01183"></a>01183 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlComment.html#f3ac1b99fbbe9ea4fb6e14146156e43e">Accept</a>( <a class="code" href="classTiXmlVisitor.html">TiXmlVisitor</a>* visitor ) <span class="keyword">const</span>; <a name="l01184"></a>01184 <a name="l01185"></a>01185 <span class="keyword">protected</span>: <a name="l01186"></a>01186 <span class="keywordtype">void</span> CopyTo( <a class="code" href="classTiXmlComment.html">TiXmlComment</a>* target ) <span class="keyword">const</span>; <a name="l01187"></a>01187 <a name="l01188"></a>01188 <span class="comment">// used to be public</span> <a name="l01189"></a>01189 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l01190"></a>01190 <span class="preprocessor"></span> <span class="keyword">virtual</span> <span class="keywordtype">void</span> StreamIn( std::istream * in, TIXML_STRING * tag ); <a name="l01191"></a>01191 <span class="preprocessor"> #endif</span> <a name="l01192"></a>01192 <span class="preprocessor"></span><span class="comment">// virtual void StreamOut( TIXML_OSTREAM * out ) const;</span> <a name="l01193"></a>01193 <a name="l01194"></a>01194 <span class="keyword">private</span>: <a name="l01195"></a>01195 <a name="l01196"></a>01196 }; <a name="l01197"></a>01197 <a name="l01198"></a>01198 <a name="l01204"></a><a class="code" href="classTiXmlText.html">01204</a> <span class="keyword">class </span><a class="code" href="classTiXmlText.html">TiXmlText</a> : <span class="keyword">public</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a> <a name="l01205"></a>01205 { <a name="l01206"></a>01206 <span class="keyword">friend</span> <span class="keyword">class </span><a class="code" href="classTiXmlElement.html">TiXmlElement</a>; <a name="l01207"></a>01207 <span class="keyword">public</span>: <a name="l01212"></a><a class="code" href="classTiXmlText.html#f659e77c6b87d684827f35a8f4895960">01212</a> <a class="code" href="classTiXmlText.html#f659e77c6b87d684827f35a8f4895960">TiXmlText</a> (<span class="keyword">const</span> <span class="keywordtype">char</span> * initValue ) : <a class="code" href="classTiXmlNode.html">TiXmlNode</a> (<a class="code" href="classTiXmlNode.html">TiXmlNode</a>::TEXT) <a name="l01213"></a>01213 { <a name="l01214"></a>01214 <a class="code" href="classTiXmlNode.html#2a38329ca5d3f28f98ce932b8299ae90">SetValue</a>( initValue ); <a name="l01215"></a>01215 cdata = <span class="keyword">false</span>; <a name="l01216"></a>01216 } <a name="l01217"></a>01217 <span class="keyword">virtual</span> ~<a class="code" href="classTiXmlText.html">TiXmlText</a>() {} <a name="l01218"></a>01218 <a name="l01219"></a>01219 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l01221"></a><a class="code" href="classTiXmlText.html#439792f6183a3d3fb6f2bc2b16fa5691">01221</a> <span class="preprocessor"> TiXmlText( const std::string&amp; initValue ) : TiXmlNode (TiXmlNode::TEXT)</span> <a name="l01222"></a>01222 <span class="preprocessor"></span> { <a name="l01223"></a>01223 <a class="code" href="classTiXmlNode.html#2a38329ca5d3f28f98ce932b8299ae90">SetValue</a>( initValue ); <a name="l01224"></a>01224 cdata = <span class="keyword">false</span>; <a name="l01225"></a>01225 } <a name="l01226"></a>01226 <span class="preprocessor"> #endif</span> <a name="l01227"></a>01227 <span class="preprocessor"></span> <a name="l01228"></a>01228 <a class="code" href="classTiXmlText.html#f659e77c6b87d684827f35a8f4895960">TiXmlText</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlText.html">TiXmlText</a>&amp; copy ) : <a class="code" href="classTiXmlNode.html">TiXmlNode</a>( <a class="code" href="classTiXmlNode.html">TiXmlNode</a>::TEXT ) { copy.<a class="code" href="classTiXmlText.html#dcec7d9b6fccfc5777452bb97e6031c1">CopyTo</a>( <span class="keyword">this</span> ); } <a name="l01229"></a>01229 <span class="keywordtype">void</span> operator=( <span class="keyword">const</span> <a class="code" href="classTiXmlText.html">TiXmlText</a>&amp; base ) { base.<a class="code" href="classTiXmlText.html#dcec7d9b6fccfc5777452bb97e6031c1">CopyTo</a>( <span class="keyword">this</span> ); } <a name="l01230"></a>01230 <a name="l01231"></a>01231 <span class="comment">// Write this text object to a FILE stream.</span> <a name="l01232"></a>01232 <span class="keyword">virtual</span> <span class="keywordtype">void</span> <a class="code" href="classTiXmlText.html#0cafbf6f236c7f02d12b2bffc2b7976b">Print</a>( FILE* cfile, <span class="keywordtype">int</span> depth ) <span class="keyword">const</span>; <a name="l01233"></a>01233 <a name="l01235"></a><a class="code" href="classTiXmlText.html#d1a6a6b83fa2271022dd97c072a2b586">01235</a> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlText.html#d1a6a6b83fa2271022dd97c072a2b586">CDATA</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> cdata; } <a name="l01237"></a><a class="code" href="classTiXmlText.html#cb17ff7c5d09b2c839393445a3de5ea9">01237</a> <span class="keywordtype">void</span> <a class="code" href="classTiXmlText.html#cb17ff7c5d09b2c839393445a3de5ea9">SetCDATA</a>( <span class="keywordtype">bool</span> _cdata ) { cdata = _cdata; } <a name="l01238"></a>01238 <a name="l01239"></a>01239 <span class="keyword">virtual</span> <span class="keyword">const</span> <span class="keywordtype">char</span>* Parse( <span class="keyword">const</span> <span class="keywordtype">char</span>* p, TiXmlParsingData* data, TiXmlEncoding encoding ); <a name="l01240"></a>01240 <a name="l01241"></a><a class="code" href="classTiXmlText.html#895bf34ffad17f7439ab2a52b9651648">01241</a> <span class="keyword">virtual</span> <span class="keyword">const</span> <a class="code" href="classTiXmlText.html">TiXmlText</a>* <a class="code" href="classTiXmlText.html#895bf34ffad17f7439ab2a52b9651648">ToText</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> <span class="keyword">this</span>; } <a name="l01242"></a><a class="code" href="classTiXmlText.html#e7c3a8fd3e4dbf6c0c4363a943d72f5b">01242</a> <span class="keyword">virtual</span> <a class="code" href="classTiXmlText.html">TiXmlText</a>* <a class="code" href="classTiXmlText.html#895bf34ffad17f7439ab2a52b9651648">ToText</a>() { <span class="keywordflow">return</span> <span class="keyword">this</span>; } <a name="l01243"></a>01243 <a name="l01246"></a>01246 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlText.html#8483d4415ce9de6c4fa8f63d067d5de6">Accept</a>( <a class="code" href="classTiXmlVisitor.html">TiXmlVisitor</a>* content ) <span class="keyword">const</span>; <a name="l01247"></a>01247 <a name="l01248"></a>01248 <span class="keyword">protected</span> : <a name="l01250"></a>01250 <span class="keyword">virtual</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlText.html#0c411e93a27537369479d034cc82da3b">Clone</a>() <span class="keyword">const</span>; <a name="l01251"></a>01251 <span class="keywordtype">void</span> CopyTo( <a class="code" href="classTiXmlText.html">TiXmlText</a>* target ) <span class="keyword">const</span>; <a name="l01252"></a>01252 <a name="l01253"></a>01253 <span class="keywordtype">bool</span> Blank() <span class="keyword">const</span>; <span class="comment">// returns true if all white space and new lines</span> <a name="l01254"></a>01254 <span class="comment">// [internal use]</span> <a name="l01255"></a>01255 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l01256"></a>01256 <span class="preprocessor"></span> <span class="keyword">virtual</span> <span class="keywordtype">void</span> StreamIn( std::istream * in, TIXML_STRING * tag ); <a name="l01257"></a>01257 <span class="preprocessor"> #endif</span> <a name="l01258"></a>01258 <span class="preprocessor"></span> <a name="l01259"></a>01259 <span class="keyword">private</span>: <a name="l01260"></a>01260 <span class="keywordtype">bool</span> cdata; <span class="comment">// true if this should be input and output as a CDATA style text element</span> <a name="l01261"></a>01261 }; <a name="l01262"></a>01262 <a name="l01263"></a>01263 <a name="l01277"></a><a class="code" href="classTiXmlDeclaration.html">01277</a> <span class="keyword">class </span><a class="code" href="classTiXmlDeclaration.html">TiXmlDeclaration</a> : <span class="keyword">public</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a> <a name="l01278"></a>01278 { <a name="l01279"></a>01279 <span class="keyword">public</span>: <a name="l01281"></a><a class="code" href="classTiXmlDeclaration.html#a0484d059bea0ea1acb47c9094382d79">01281</a> <a class="code" href="classTiXmlDeclaration.html#a0484d059bea0ea1acb47c9094382d79">TiXmlDeclaration</a>() : <a class="code" href="classTiXmlNode.html">TiXmlNode</a>( <a class="code" href="classTiXmlNode.html">TiXmlNode</a>::DECLARATION ) {} <a name="l01282"></a>01282 <a name="l01283"></a>01283 <span class="preprocessor">#ifdef TIXML_USE_STL</span> <a name="l01285"></a>01285 <span class="preprocessor"> TiXmlDeclaration( const std::string&amp; _version,</span> <a name="l01286"></a>01286 <span class="preprocessor"></span> <span class="keyword">const</span> std::string&amp; _encoding, <a name="l01287"></a>01287 <span class="keyword">const</span> std::string&amp; _standalone ); <a name="l01288"></a>01288 <span class="preprocessor">#endif</span> <a name="l01289"></a>01289 <span class="preprocessor"></span> <a name="l01291"></a>01291 <a class="code" href="classTiXmlDeclaration.html#a0484d059bea0ea1acb47c9094382d79">TiXmlDeclaration</a>( <span class="keyword">const</span> <span class="keywordtype">char</span>* _version, <a name="l01292"></a>01292 <span class="keyword">const</span> <span class="keywordtype">char</span>* _encoding, <a name="l01293"></a>01293 <span class="keyword">const</span> <span class="keywordtype">char</span>* _standalone ); <a name="l01294"></a>01294 <a name="l01295"></a>01295 <a class="code" href="classTiXmlDeclaration.html#a0484d059bea0ea1acb47c9094382d79">TiXmlDeclaration</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlDeclaration.html">TiXmlDeclaration</a>&amp; copy ); <a name="l01296"></a>01296 <span class="keywordtype">void</span> operator=( <span class="keyword">const</span> <a class="code" href="classTiXmlDeclaration.html">TiXmlDeclaration</a>&amp; copy ); <a name="l01297"></a>01297 <a name="l01298"></a>01298 <span class="keyword">virtual</span> ~<a class="code" href="classTiXmlDeclaration.html">TiXmlDeclaration</a>() {} <a name="l01299"></a>01299 <a name="l01301"></a><a class="code" href="classTiXmlDeclaration.html#02ee557b1a4545c3219ed377c103ec76">01301</a> <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="classTiXmlDeclaration.html#02ee557b1a4545c3219ed377c103ec76">Version</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> version.c_str (); } <a name="l01303"></a><a class="code" href="classTiXmlDeclaration.html#5d974231f9e9a2f0542f15f3a46cdb76">01303</a> <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="classTiXmlDeclaration.html#5d974231f9e9a2f0542f15f3a46cdb76">Encoding</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> encoding.c_str (); } <a name="l01305"></a><a class="code" href="classTiXmlDeclaration.html#9ff06afc033d7ef730ec7c6825b97ad9">01305</a> <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="classTiXmlDeclaration.html#9ff06afc033d7ef730ec7c6825b97ad9">Standalone</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> standalone.c_str (); } <a name="l01306"></a>01306 <a name="l01308"></a>01308 <span class="keyword">virtual</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlDeclaration.html#7cf459186040141cda7a180a6585ce2e">Clone</a>() <span class="keyword">const</span>; <a name="l01309"></a>01309 <span class="comment">// Print this declaration to a FILE stream.</span> <a name="l01310"></a>01310 <span class="keyword">virtual</span> <span class="keywordtype">void</span> Print( FILE* cfile, <span class="keywordtype">int</span> depth, TIXML_STRING* str ) <span class="keyword">const</span>; <a name="l01311"></a><a class="code" href="classTiXmlDeclaration.html#bf6303db4bd05b5be554036817ff1cb4">01311</a> <span class="keyword">virtual</span> <span class="keywordtype">void</span> Print( FILE* cfile, <span class="keywordtype">int</span> depth )<span class="keyword"> const </span>{ <a name="l01312"></a>01312 Print( cfile, depth, 0 ); <a name="l01313"></a>01313 } <a name="l01314"></a>01314 <a name="l01315"></a>01315 <span class="keyword">virtual</span> <span class="keyword">const</span> <span class="keywordtype">char</span>* Parse( <span class="keyword">const</span> <span class="keywordtype">char</span>* p, TiXmlParsingData* data, TiXmlEncoding encoding ); <a name="l01316"></a>01316 <a name="l01317"></a><a class="code" href="classTiXmlDeclaration.html#1e085d3fefd1dbf5ccdbff729931a967">01317</a> <span class="keyword">virtual</span> <span class="keyword">const</span> <a class="code" href="classTiXmlDeclaration.html">TiXmlDeclaration</a>* <a class="code" href="classTiXmlDeclaration.html#1e085d3fefd1dbf5ccdbff729931a967">ToDeclaration</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> <span class="keyword">this</span>; } <a name="l01318"></a><a class="code" href="classTiXmlDeclaration.html#6bd3d1daddcaeb9543c24bfd090969ce">01318</a> <span class="keyword">virtual</span> <a class="code" href="classTiXmlDeclaration.html">TiXmlDeclaration</a>* <a class="code" href="classTiXmlDeclaration.html#1e085d3fefd1dbf5ccdbff729931a967">ToDeclaration</a>() { <span class="keywordflow">return</span> <span class="keyword">this</span>; } <a name="l01319"></a>01319 <a name="l01322"></a>01322 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlDeclaration.html#22315a535983b86535cdba3458669e3e">Accept</a>( <a class="code" href="classTiXmlVisitor.html">TiXmlVisitor</a>* visitor ) <span class="keyword">const</span>; <a name="l01323"></a>01323 <a name="l01324"></a>01324 <span class="keyword">protected</span>: <a name="l01325"></a>01325 <span class="keywordtype">void</span> CopyTo( <a class="code" href="classTiXmlDeclaration.html">TiXmlDeclaration</a>* target ) <span class="keyword">const</span>; <a name="l01326"></a>01326 <span class="comment">// used to be public</span> <a name="l01327"></a>01327 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l01328"></a>01328 <span class="preprocessor"></span> <span class="keyword">virtual</span> <span class="keywordtype">void</span> StreamIn( std::istream * in, TIXML_STRING * tag ); <a name="l01329"></a>01329 <span class="preprocessor"> #endif</span> <a name="l01330"></a>01330 <span class="preprocessor"></span> <a name="l01331"></a>01331 <span class="keyword">private</span>: <a name="l01332"></a>01332 <a name="l01333"></a>01333 TIXML_STRING version; <a name="l01334"></a>01334 TIXML_STRING encoding; <a name="l01335"></a>01335 TIXML_STRING standalone; <a name="l01336"></a>01336 }; <a name="l01337"></a>01337 <a name="l01338"></a>01338 <a name="l01346"></a><a class="code" href="classTiXmlUnknown.html">01346</a> <span class="keyword">class </span><a class="code" href="classTiXmlUnknown.html">TiXmlUnknown</a> : <span class="keyword">public</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a> <a name="l01347"></a>01347 { <a name="l01348"></a>01348 <span class="keyword">public</span>: <a name="l01349"></a>01349 <a class="code" href="classTiXmlUnknown.html">TiXmlUnknown</a>() : <a class="code" href="classTiXmlNode.html">TiXmlNode</a>( TiXmlNode::UNKNOWN ) {} <a name="l01350"></a>01350 <span class="keyword">virtual</span> ~<a class="code" href="classTiXmlUnknown.html">TiXmlUnknown</a>() {} <a name="l01351"></a>01351 <a name="l01352"></a>01352 <a class="code" href="classTiXmlUnknown.html">TiXmlUnknown</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlUnknown.html">TiXmlUnknown</a>&amp; copy ) : <a class="code" href="classTiXmlNode.html">TiXmlNode</a>( TiXmlNode::UNKNOWN ) { copy.<a class="code" href="classTiXmlUnknown.html#08ca7b225a2bcb604d3c72e199d33408">CopyTo</a>( <span class="keyword">this</span> ); } <a name="l01353"></a>01353 <span class="keywordtype">void</span> operator=( <span class="keyword">const</span> <a class="code" href="classTiXmlUnknown.html">TiXmlUnknown</a>&amp; copy ) { copy.<a class="code" href="classTiXmlUnknown.html#08ca7b225a2bcb604d3c72e199d33408">CopyTo</a>( <span class="keyword">this</span> ); } <a name="l01354"></a>01354 <a name="l01356"></a>01356 <span class="keyword">virtual</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlUnknown.html#0960bb7428b3f341da46244229604d73">Clone</a>() <span class="keyword">const</span>; <a name="l01357"></a>01357 <span class="comment">// Print this Unknown to a FILE stream.</span> <a name="l01358"></a>01358 <span class="keyword">virtual</span> <span class="keywordtype">void</span> <a class="code" href="classTiXmlUnknown.html#31ba089a40fb5a1869750fce09b0bacb">Print</a>( FILE* cfile, <span class="keywordtype">int</span> depth ) <span class="keyword">const</span>; <a name="l01359"></a>01359 <a name="l01360"></a>01360 <span class="keyword">virtual</span> <span class="keyword">const</span> <span class="keywordtype">char</span>* Parse( <span class="keyword">const</span> <span class="keywordtype">char</span>* p, TiXmlParsingData* data, TiXmlEncoding encoding ); <a name="l01361"></a>01361 <a name="l01362"></a><a class="code" href="classTiXmlUnknown.html#b0313e5fe77987d746ac1a97a254419d">01362</a> <span class="keyword">virtual</span> <span class="keyword">const</span> <a class="code" href="classTiXmlUnknown.html">TiXmlUnknown</a>* <a class="code" href="classTiXmlUnknown.html#b0313e5fe77987d746ac1a97a254419d">ToUnknown</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> <span class="keyword">this</span>; } <a name="l01363"></a><a class="code" href="classTiXmlUnknown.html#67c9fd22940e8c47f706a72cdd2e332c">01363</a> <span class="keyword">virtual</span> <a class="code" href="classTiXmlUnknown.html">TiXmlUnknown</a>* <a class="code" href="classTiXmlUnknown.html#b0313e5fe77987d746ac1a97a254419d">ToUnknown</a>() { <span class="keywordflow">return</span> <span class="keyword">this</span>; } <a name="l01364"></a>01364 <a name="l01367"></a>01367 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlUnknown.html#d7122e5135581b3c832a1a3217760a93">Accept</a>( <a class="code" href="classTiXmlVisitor.html">TiXmlVisitor</a>* content ) <span class="keyword">const</span>; <a name="l01368"></a>01368 <a name="l01369"></a>01369 <span class="keyword">protected</span>: <a name="l01370"></a>01370 <span class="keywordtype">void</span> CopyTo( <a class="code" href="classTiXmlUnknown.html">TiXmlUnknown</a>* target ) <span class="keyword">const</span>; <a name="l01371"></a>01371 <a name="l01372"></a>01372 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l01373"></a>01373 <span class="preprocessor"></span> <span class="keyword">virtual</span> <span class="keywordtype">void</span> StreamIn( std::istream * in, TIXML_STRING * tag ); <a name="l01374"></a>01374 <span class="preprocessor"> #endif</span> <a name="l01375"></a>01375 <span class="preprocessor"></span> <a name="l01376"></a>01376 <span class="keyword">private</span>: <a name="l01377"></a>01377 <a name="l01378"></a>01378 }; <a name="l01379"></a>01379 <a name="l01380"></a>01380 <a name="l01385"></a><a class="code" href="classTiXmlDocument.html">01385</a> <span class="keyword">class </span><a class="code" href="classTiXmlDocument.html">TiXmlDocument</a> : <span class="keyword">public</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a> <a name="l01386"></a>01386 { <a name="l01387"></a>01387 <span class="keyword">public</span>: <a name="l01389"></a>01389 <a class="code" href="classTiXmlDocument.html#9f5e84335708fde98400230f9f12659c">TiXmlDocument</a>(); <a name="l01391"></a>01391 <a class="code" href="classTiXmlDocument.html#9f5e84335708fde98400230f9f12659c">TiXmlDocument</a>( <span class="keyword">const</span> <span class="keywordtype">char</span> * documentName ); <a name="l01392"></a>01392 <a name="l01393"></a>01393 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l01395"></a>01395 <span class="preprocessor"> TiXmlDocument( const std::string&amp; documentName );</span> <a name="l01396"></a>01396 <span class="preprocessor"></span><span class="preprocessor"> #endif</span> <a name="l01397"></a>01397 <span class="preprocessor"></span> <a name="l01398"></a>01398 <a class="code" href="classTiXmlDocument.html#9f5e84335708fde98400230f9f12659c">TiXmlDocument</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlDocument.html">TiXmlDocument</a>&amp; copy ); <a name="l01399"></a>01399 <span class="keywordtype">void</span> operator=( <span class="keyword">const</span> <a class="code" href="classTiXmlDocument.html">TiXmlDocument</a>&amp; copy ); <a name="l01400"></a>01400 <a name="l01401"></a>01401 <span class="keyword">virtual</span> ~<a class="code" href="classTiXmlDocument.html">TiXmlDocument</a>() {} <a name="l01402"></a>01402 <a name="l01407"></a>01407 <span class="keywordtype">bool</span> <a class="code" href="classTiXmlDocument.html#4c852a889c02cf251117fd1d9fe1845f">LoadFile</a>( TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING ); <a name="l01409"></a>01409 <span class="keywordtype">bool</span> <a class="code" href="classTiXmlDocument.html#21c0aeb0d0a720169ad4ac89523ebe93">SaveFile</a>() <span class="keyword">const</span>; <a name="l01411"></a>01411 <span class="keywordtype">bool</span> <a class="code" href="classTiXmlDocument.html#4c852a889c02cf251117fd1d9fe1845f">LoadFile</a>( <span class="keyword">const</span> <span class="keywordtype">char</span> * filename, TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING ); <a name="l01413"></a>01413 <span class="keywordtype">bool</span> <a class="code" href="classTiXmlDocument.html#21c0aeb0d0a720169ad4ac89523ebe93">SaveFile</a>( <span class="keyword">const</span> <span class="keywordtype">char</span> * filename ) <span class="keyword">const</span>; <a name="l01419"></a>01419 <span class="keywordtype">bool</span> <a class="code" href="classTiXmlDocument.html#4c852a889c02cf251117fd1d9fe1845f">LoadFile</a>( FILE*, TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING ); <a name="l01421"></a>01421 <span class="keywordtype">bool</span> <a class="code" href="classTiXmlDocument.html#21c0aeb0d0a720169ad4ac89523ebe93">SaveFile</a>( FILE* ) <span class="keyword">const</span>; <a name="l01422"></a>01422 <a name="l01423"></a>01423 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l01424"></a><a class="code" href="classTiXmlDocument.html#18ae6ed34fed7991ebc220862dfac884">01424</a> <span class="preprocessor"></span> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlDocument.html#4c852a889c02cf251117fd1d9fe1845f">LoadFile</a>( <span class="keyword">const</span> std::string&amp; filename, TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING ) <a name="l01425"></a>01425 { <a name="l01426"></a>01426 <span class="comment">// StringToBuffer f( filename );</span> <a name="l01427"></a>01427 <span class="comment">// return ( f.buffer &amp;&amp; LoadFile( f.buffer, encoding ));</span> <a name="l01428"></a>01428 <span class="keywordflow">return</span> <a class="code" href="classTiXmlDocument.html#4c852a889c02cf251117fd1d9fe1845f">LoadFile</a>( filename.c_str(), encoding ); <a name="l01429"></a>01429 } <a name="l01430"></a><a class="code" href="classTiXmlDocument.html#3d4fae0463f3f03679ba0b7cf6f2df52">01430</a> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlDocument.html#21c0aeb0d0a720169ad4ac89523ebe93">SaveFile</a>( <span class="keyword">const</span> std::string&amp; filename ) <span class="keyword">const</span> <a name="l01431"></a>01431 { <a name="l01432"></a>01432 <span class="comment">// StringToBuffer f( filename );</span> <a name="l01433"></a>01433 <span class="comment">// return ( f.buffer &amp;&amp; SaveFile( f.buffer ));</span> <a name="l01434"></a>01434 <span class="keywordflow">return</span> <a class="code" href="classTiXmlDocument.html#21c0aeb0d0a720169ad4ac89523ebe93">SaveFile</a>( filename.c_str() ); <a name="l01435"></a>01435 } <a name="l01436"></a>01436 <span class="preprocessor"> #endif</span> <a name="l01437"></a>01437 <span class="preprocessor"></span> <a name="l01442"></a>01442 <span class="keyword">virtual</span> <span class="keyword">const</span> <span class="keywordtype">char</span>* <a class="code" href="classTiXmlDocument.html#17ebabe36926ef398e78dec0d0ad0378">Parse</a>( <span class="keyword">const</span> <span class="keywordtype">char</span>* p, TiXmlParsingData* data = 0, TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING ); <a name="l01443"></a>01443 <a name="l01448"></a><a class="code" href="classTiXmlDocument.html#d09d17927f908f40efb406af2fb873be">01448</a> <span class="keyword">const</span> <a class="code" href="classTiXmlElement.html">TiXmlElement</a>* <a class="code" href="classTiXmlDocument.html#d09d17927f908f40efb406af2fb873be">RootElement</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> <a class="code" href="classTiXmlNode.html#f4fb652f6bd79ae0d5ce7d0f7d3c0fba">FirstChildElement</a>(); } <a name="l01449"></a>01449 <a class="code" href="classTiXmlElement.html">TiXmlElement</a>* <a class="code" href="classTiXmlDocument.html#d09d17927f908f40efb406af2fb873be">RootElement</a>() { <span class="keywordflow">return</span> <a class="code" href="classTiXmlNode.html#f4fb652f6bd79ae0d5ce7d0f7d3c0fba">FirstChildElement</a>(); } <a name="l01450"></a>01450 <a name="l01456"></a><a class="code" href="classTiXmlDocument.html#6dfc01a6e5d58e56acd537dfd3bdeb29">01456</a> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlDocument.html#6dfc01a6e5d58e56acd537dfd3bdeb29">Error</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> error; } <a name="l01457"></a>01457 <a name="l01459"></a><a class="code" href="classTiXmlDocument.html#9d0f689f6e09ea494ea547be8d79c25e">01459</a> <span class="keyword">const</span> <span class="keywordtype">char</span> * <a class="code" href="classTiXmlDocument.html#9d0f689f6e09ea494ea547be8d79c25e">ErrorDesc</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> errorDesc.c_str (); } <a name="l01460"></a>01460 <a name="l01464"></a><a class="code" href="classTiXmlDocument.html#f96fc2f3f9ec6422782bfe916c9e778f">01464</a> <span class="keywordtype">int</span> <a class="code" href="classTiXmlDocument.html#f96fc2f3f9ec6422782bfe916c9e778f">ErrorId</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> errorId; } <a name="l01465"></a>01465 <a name="l01473"></a><a class="code" href="classTiXmlDocument.html#f30efc75e804aa2e92fb8be3a8cb676e">01473</a> <span class="keywordtype">int</span> <a class="code" href="classTiXmlDocument.html#f30efc75e804aa2e92fb8be3a8cb676e">ErrorRow</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> errorLocation.row+1; } <a name="l01474"></a><a class="code" href="classTiXmlDocument.html#a90bc630ee5203c6109ca5fad3323649">01474</a> <span class="keywordtype">int</span> <a class="code" href="classTiXmlDocument.html#a90bc630ee5203c6109ca5fad3323649">ErrorCol</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> errorLocation.col+1; } <a name="l01475"></a>01475 <a name="l01500"></a><a class="code" href="classTiXmlDocument.html#51dac56316f89b35bdb7d0d433ba988e">01500</a> <span class="keywordtype">void</span> <a class="code" href="classTiXmlDocument.html#51dac56316f89b35bdb7d0d433ba988e">SetTabSize</a>( <span class="keywordtype">int</span> _tabsize ) { tabsize = _tabsize; } <a name="l01501"></a>01501 <a name="l01502"></a>01502 <span class="keywordtype">int</span> TabSize()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> tabsize; } <a name="l01503"></a>01503 <a name="l01507"></a><a class="code" href="classTiXmlDocument.html#c66b8c28db86363315712a3574e87c35">01507</a> <span class="keywordtype">void</span> <a class="code" href="classTiXmlDocument.html#c66b8c28db86363315712a3574e87c35">ClearError</a>() { error = <span class="keyword">false</span>; <a name="l01508"></a>01508 errorId = 0; <a name="l01509"></a>01509 errorDesc = <span class="stringliteral">""</span>; <a name="l01510"></a>01510 errorLocation.row = errorLocation.col = 0; <a name="l01511"></a>01511 <span class="comment">//errorLocation.last = 0; </span> <a name="l01512"></a>01512 } <a name="l01513"></a>01513 <a name="l01515"></a><a class="code" href="classTiXmlDocument.html#f08389ec70ee9b2de7f800e206a18510">01515</a> <span class="keywordtype">void</span> <a class="code" href="classTiXmlDocument.html#f08389ec70ee9b2de7f800e206a18510">Print</a>()<span class="keyword"> const </span>{ <a class="code" href="classTiXmlDocument.html#f08389ec70ee9b2de7f800e206a18510">Print</a>( stdout, 0 ); } <a name="l01516"></a>01516 <a name="l01517"></a>01517 <span class="comment">/* Write the document to a string using formatted printing ("pretty print"). This</span> <a name="l01518"></a>01518 <span class="comment"> will allocate a character array (new char[]) and return it as a pointer. The</span> <a name="l01519"></a>01519 <span class="comment"> calling code pust call delete[] on the return char* to avoid a memory leak.</span> <a name="l01520"></a>01520 <span class="comment"> */</span> <a name="l01521"></a>01521 <span class="comment">//char* PrintToMemory() const; </span> <a name="l01522"></a>01522 <a name="l01524"></a>01524 <span class="keyword">virtual</span> <span class="keywordtype">void</span> <a class="code" href="classTiXmlDocument.html#f08389ec70ee9b2de7f800e206a18510">Print</a>( FILE* cfile, <span class="keywordtype">int</span> depth = 0 ) <span class="keyword">const</span>; <a name="l01525"></a>01525 <span class="comment">// [internal use]</span> <a name="l01526"></a>01526 <span class="keywordtype">void</span> SetError( <span class="keywordtype">int</span> err, <span class="keyword">const</span> <span class="keywordtype">char</span>* errorLocation, TiXmlParsingData* prevData, TiXmlEncoding encoding ); <a name="l01527"></a>01527 <a name="l01528"></a><a class="code" href="classTiXmlDocument.html#1dc977bde3e4fe85a8eb9d88a35ef5a4">01528</a> <span class="keyword">virtual</span> <span class="keyword">const</span> <a class="code" href="classTiXmlDocument.html">TiXmlDocument</a>* <a class="code" href="classTiXmlDocument.html#1dc977bde3e4fe85a8eb9d88a35ef5a4">ToDocument</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> <span class="keyword">this</span>; } <a name="l01529"></a><a class="code" href="classTiXmlDocument.html#1025d942a1f328fd742d545e37efdd42">01529</a> <span class="keyword">virtual</span> <a class="code" href="classTiXmlDocument.html">TiXmlDocument</a>* <a class="code" href="classTiXmlDocument.html#1dc977bde3e4fe85a8eb9d88a35ef5a4">ToDocument</a>() { <span class="keywordflow">return</span> <span class="keyword">this</span>; } <a name="l01530"></a>01530 <a name="l01533"></a>01533 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlDocument.html#a545aae325d9752ad64120bc4ecf939a">Accept</a>( <a class="code" href="classTiXmlVisitor.html">TiXmlVisitor</a>* content ) <span class="keyword">const</span>; <a name="l01534"></a>01534 <a name="l01535"></a>01535 <span class="keyword">protected</span> : <a name="l01536"></a>01536 <span class="comment">// [internal use]</span> <a name="l01537"></a>01537 <span class="keyword">virtual</span> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlDocument.html#4968661cab4a1f44a23329c6f8db1907">Clone</a>() <span class="keyword">const</span>; <a name="l01538"></a>01538 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l01539"></a>01539 <span class="preprocessor"></span> <span class="keyword">virtual</span> <span class="keywordtype">void</span> StreamIn( std::istream * in, TIXML_STRING * tag ); <a name="l01540"></a>01540 <span class="preprocessor"> #endif</span> <a name="l01541"></a>01541 <span class="preprocessor"></span> <a name="l01542"></a>01542 <span class="keyword">private</span>: <a name="l01543"></a>01543 <span class="keywordtype">void</span> CopyTo( <a class="code" href="classTiXmlDocument.html">TiXmlDocument</a>* target ) <span class="keyword">const</span>; <a name="l01544"></a>01544 <a name="l01545"></a>01545 <span class="keywordtype">bool</span> error; <a name="l01546"></a>01546 <span class="keywordtype">int</span> errorId; <a name="l01547"></a>01547 TIXML_STRING errorDesc; <a name="l01548"></a>01548 <span class="keywordtype">int</span> tabsize; <a name="l01549"></a>01549 TiXmlCursor errorLocation; <a name="l01550"></a>01550 <span class="keywordtype">bool</span> useMicrosoftBOM; <span class="comment">// the UTF-8 BOM were found when read. Note this, and try to write.</span> <a name="l01551"></a>01551 }; <a name="l01552"></a>01552 <a name="l01553"></a>01553 <a name="l01634"></a><a class="code" href="classTiXmlHandle.html">01634</a> <span class="keyword">class </span><a class="code" href="classTiXmlHandle.html">TiXmlHandle</a> <a name="l01635"></a>01635 { <a name="l01636"></a>01636 <span class="keyword">public</span>: <a name="l01638"></a><a class="code" href="classTiXmlHandle.html#ba18fd7bdefb942ecdea4bf4b8e29ec8">01638</a> <a class="code" href="classTiXmlHandle.html#ba18fd7bdefb942ecdea4bf4b8e29ec8">TiXmlHandle</a>( <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* _node ) { this-&gt;node = _node; } <a name="l01640"></a><a class="code" href="classTiXmlHandle.html#236d7855e1e56ccc7b980630c48c7fd7">01640</a> <a class="code" href="classTiXmlHandle.html#ba18fd7bdefb942ecdea4bf4b8e29ec8">TiXmlHandle</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlHandle.html">TiXmlHandle</a>&amp; ref ) { this-&gt;node = ref.<a class="code" href="classTiXmlHandle.html#c5429de14bb78b16288bac5bf33c6858">node</a>; } <a name="l01641"></a>01641 <a class="code" href="classTiXmlHandle.html">TiXmlHandle</a> operator=( <span class="keyword">const</span> <a class="code" href="classTiXmlHandle.html">TiXmlHandle</a>&amp; ref ) { this-&gt;node = ref.<a class="code" href="classTiXmlHandle.html#c5429de14bb78b16288bac5bf33c6858">node</a>; <span class="keywordflow">return</span> *<span class="keyword">this</span>; } <a name="l01642"></a>01642 <a name="l01644"></a>01644 <a class="code" href="classTiXmlHandle.html">TiXmlHandle</a> <a class="code" href="classTiXmlHandle.html#cdb1faaf88a700b40ca2c8d9aee21139">FirstChild</a>() <span class="keyword">const</span>; <a name="l01646"></a>01646 <a class="code" href="classTiXmlHandle.html">TiXmlHandle</a> <a class="code" href="classTiXmlHandle.html#cdb1faaf88a700b40ca2c8d9aee21139">FirstChild</a>( <span class="keyword">const</span> <span class="keywordtype">char</span> * value ) <span class="keyword">const</span>; <a name="l01648"></a>01648 <a class="code" href="classTiXmlHandle.html">TiXmlHandle</a> <a class="code" href="classTiXmlHandle.html#24d1112e995e937e4dddb202d4113d4a">FirstChildElement</a>() <span class="keyword">const</span>; <a name="l01650"></a>01650 <a class="code" href="classTiXmlHandle.html">TiXmlHandle</a> <a class="code" href="classTiXmlHandle.html#24d1112e995e937e4dddb202d4113d4a">FirstChildElement</a>( <span class="keyword">const</span> <span class="keywordtype">char</span> * value ) <span class="keyword">const</span>; <a name="l01651"></a>01651 <a name="l01655"></a>01655 <a class="code" href="classTiXmlHandle.html">TiXmlHandle</a> <a class="code" href="classTiXmlHandle.html#072492b4be1acdb0db2d03cd8f71ccc4">Child</a>( <span class="keyword">const</span> <span class="keywordtype">char</span>* value, <span class="keywordtype">int</span> index ) <span class="keyword">const</span>; <a name="l01659"></a>01659 <a class="code" href="classTiXmlHandle.html">TiXmlHandle</a> <a class="code" href="classTiXmlHandle.html#072492b4be1acdb0db2d03cd8f71ccc4">Child</a>( <span class="keywordtype">int</span> index ) <span class="keyword">const</span>; <a name="l01664"></a>01664 <a class="code" href="classTiXmlHandle.html">TiXmlHandle</a> <a class="code" href="classTiXmlHandle.html#979a3f850984a176ee884e394c7eed2d">ChildElement</a>( <span class="keyword">const</span> <span class="keywordtype">char</span>* value, <span class="keywordtype">int</span> index ) <span class="keyword">const</span>; <a name="l01669"></a>01669 <a class="code" href="classTiXmlHandle.html">TiXmlHandle</a> <a class="code" href="classTiXmlHandle.html#979a3f850984a176ee884e394c7eed2d">ChildElement</a>( <span class="keywordtype">int</span> index ) <span class="keyword">const</span>; <a name="l01670"></a>01670 <a name="l01671"></a>01671 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l01672"></a>01672 <span class="preprocessor"></span> <a class="code" href="classTiXmlHandle.html">TiXmlHandle</a> <a class="code" href="classTiXmlHandle.html#cdb1faaf88a700b40ca2c8d9aee21139">FirstChild</a>( <span class="keyword">const</span> std::string&amp; _value )<span class="keyword"> const </span>{ <span class="keywordflow">return</span> <a class="code" href="classTiXmlHandle.html#cdb1faaf88a700b40ca2c8d9aee21139">FirstChild</a>( _value.c_str() ); } <a name="l01673"></a>01673 <a class="code" href="classTiXmlHandle.html">TiXmlHandle</a> <a class="code" href="classTiXmlHandle.html#24d1112e995e937e4dddb202d4113d4a">FirstChildElement</a>( <span class="keyword">const</span> std::string&amp; _value )<span class="keyword"> const </span>{ <span class="keywordflow">return</span> <a class="code" href="classTiXmlHandle.html#24d1112e995e937e4dddb202d4113d4a">FirstChildElement</a>( _value.c_str() ); } <a name="l01674"></a>01674 <a name="l01675"></a>01675 <a class="code" href="classTiXmlHandle.html">TiXmlHandle</a> <a class="code" href="classTiXmlHandle.html#072492b4be1acdb0db2d03cd8f71ccc4">Child</a>( <span class="keyword">const</span> std::string&amp; _value, <span class="keywordtype">int</span> index )<span class="keyword"> const </span>{ <span class="keywordflow">return</span> <a class="code" href="classTiXmlHandle.html#072492b4be1acdb0db2d03cd8f71ccc4">Child</a>( _value.c_str(), index ); } <a name="l01676"></a>01676 <a class="code" href="classTiXmlHandle.html">TiXmlHandle</a> <a class="code" href="classTiXmlHandle.html#979a3f850984a176ee884e394c7eed2d">ChildElement</a>( <span class="keyword">const</span> std::string&amp; _value, <span class="keywordtype">int</span> index )<span class="keyword"> const </span>{ <span class="keywordflow">return</span> <a class="code" href="classTiXmlHandle.html#979a3f850984a176ee884e394c7eed2d">ChildElement</a>( _value.c_str(), index ); } <a name="l01677"></a>01677 <span class="preprocessor"> #endif</span> <a name="l01678"></a>01678 <span class="preprocessor"></span> <a name="l01681"></a><a class="code" href="classTiXmlHandle.html#f678e5088e83be67baf76f699756f2c3">01681</a> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlHandle.html#f678e5088e83be67baf76f699756f2c3">ToNode</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> node; } <a name="l01684"></a><a class="code" href="classTiXmlHandle.html#bc6e7ed383a5fe1e52b0c0004b457b9e">01684</a> <a class="code" href="classTiXmlElement.html">TiXmlElement</a>* <a class="code" href="classTiXmlHandle.html#bc6e7ed383a5fe1e52b0c0004b457b9e">ToElement</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> ( ( node &amp;&amp; node-&gt;<a class="code" href="classTiXmlNode.html#72abed96dc9667ab9e0a2a275301bb1c">ToElement</a>() ) ? node-&gt;<a class="code" href="classTiXmlNode.html#72abed96dc9667ab9e0a2a275301bb1c">ToElement</a>() : 0 ); } <a name="l01687"></a><a class="code" href="classTiXmlHandle.html#4ac53a652296203a5b5e13854d923586">01687</a> <a class="code" href="classTiXmlText.html">TiXmlText</a>* <a class="code" href="classTiXmlHandle.html#4ac53a652296203a5b5e13854d923586">ToText</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> ( ( node &amp;&amp; node-&gt;<a class="code" href="classTiXmlNode.html#95a46a52c525992d6b4ee08beb14cd69">ToText</a>() ) ? node-&gt;<a class="code" href="classTiXmlNode.html#95a46a52c525992d6b4ee08beb14cd69">ToText</a>() : 0 ); } <a name="l01690"></a><a class="code" href="classTiXmlHandle.html#1381c17507a130767b1e23afc93b3674">01690</a> <a class="code" href="classTiXmlUnknown.html">TiXmlUnknown</a>* <a class="code" href="classTiXmlHandle.html#1381c17507a130767b1e23afc93b3674">ToUnknown</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> ( ( node &amp;&amp; node-&gt;<a class="code" href="classTiXmlNode.html#fd7205cf31d7a376929f8a36930627a2">ToUnknown</a>() ) ? node-&gt;<a class="code" href="classTiXmlNode.html#fd7205cf31d7a376929f8a36930627a2">ToUnknown</a>() : 0 ); } <a name="l01691"></a>01691 <a name="l01695"></a><a class="code" href="classTiXmlHandle.html#b44b723a8dc9af72838a303c079d0376">01695</a> <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* <a class="code" href="classTiXmlHandle.html#b44b723a8dc9af72838a303c079d0376">Node</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> <a class="code" href="classTiXmlHandle.html#f678e5088e83be67baf76f699756f2c3">ToNode</a>(); } <a name="l01699"></a><a class="code" href="classTiXmlHandle.html#cb5fe8388a526289ea65e817a51e05e7">01699</a> <a class="code" href="classTiXmlElement.html">TiXmlElement</a>* <a class="code" href="classTiXmlHandle.html#cb5fe8388a526289ea65e817a51e05e7">Element</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> <a class="code" href="classTiXmlHandle.html#bc6e7ed383a5fe1e52b0c0004b457b9e">ToElement</a>(); } <a name="l01703"></a><a class="code" href="classTiXmlHandle.html#9fc739c8a18d160006f82572fc143d13">01703</a> <a class="code" href="classTiXmlText.html">TiXmlText</a>* <a class="code" href="classTiXmlHandle.html#9fc739c8a18d160006f82572fc143d13">Text</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> <a class="code" href="classTiXmlHandle.html#4ac53a652296203a5b5e13854d923586">ToText</a>(); } <a name="l01707"></a><a class="code" href="classTiXmlHandle.html#49675b74357ba2aae124657a9a1ef465">01707</a> <a class="code" href="classTiXmlUnknown.html">TiXmlUnknown</a>* <a class="code" href="classTiXmlHandle.html#49675b74357ba2aae124657a9a1ef465">Unknown</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> <a class="code" href="classTiXmlHandle.html#1381c17507a130767b1e23afc93b3674">ToUnknown</a>(); } <a name="l01708"></a>01708 <a name="l01709"></a>01709 <span class="keyword">private</span>: <a name="l01710"></a>01710 <a class="code" href="classTiXmlNode.html">TiXmlNode</a>* node; <a name="l01711"></a>01711 }; <a name="l01712"></a>01712 <a name="l01713"></a>01713 <a name="l01733"></a><a class="code" href="classTiXmlPrinter.html">01733</a> <span class="keyword">class </span><a class="code" href="classTiXmlPrinter.html">TiXmlPrinter</a> : <span class="keyword">public</span> <a class="code" href="classTiXmlVisitor.html">TiXmlVisitor</a> <a name="l01734"></a>01734 { <a name="l01735"></a>01735 <span class="keyword">public</span>: <a name="l01736"></a>01736 <a class="code" href="classTiXmlPrinter.html">TiXmlPrinter</a>() : depth( 0 ), simpleTextPrint( <span class="keyword">false</span> ), <a name="l01737"></a>01737 buffer(), indent( <span class="stringliteral">" "</span> ), lineBreak( <span class="stringliteral">"\n"</span> ) {} <a name="l01738"></a>01738 <a name="l01739"></a>01739 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlPrinter.html#799f4f0388570cbb54c0d3c345fef7c1">VisitEnter</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlDocument.html">TiXmlDocument</a>&amp; doc ); <a name="l01740"></a>01740 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlPrinter.html#66b33edd76c538b462f789b797a4fdf2">VisitExit</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlDocument.html">TiXmlDocument</a>&amp; doc ); <a name="l01741"></a>01741 <a name="l01742"></a>01742 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlPrinter.html#799f4f0388570cbb54c0d3c345fef7c1">VisitEnter</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlElement.html">TiXmlElement</a>&amp; element, <span class="keyword">const</span> <a class="code" href="classTiXmlAttribute.html">TiXmlAttribute</a>* firstAttribute ); <a name="l01743"></a>01743 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlPrinter.html#66b33edd76c538b462f789b797a4fdf2">VisitExit</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlElement.html">TiXmlElement</a>&amp; element ); <a name="l01744"></a>01744 <a name="l01745"></a>01745 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlPrinter.html#ce1b14d33eede2575c0743e2350f6a38">Visit</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlDeclaration.html">TiXmlDeclaration</a>&amp; declaration ); <a name="l01746"></a>01746 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlPrinter.html#ce1b14d33eede2575c0743e2350f6a38">Visit</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlText.html">TiXmlText</a>&amp; text ); <a name="l01747"></a>01747 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlPrinter.html#ce1b14d33eede2575c0743e2350f6a38">Visit</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlComment.html">TiXmlComment</a>&amp; comment ); <a name="l01748"></a>01748 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classTiXmlPrinter.html#ce1b14d33eede2575c0743e2350f6a38">Visit</a>( <span class="keyword">const</span> <a class="code" href="classTiXmlUnknown.html">TiXmlUnknown</a>&amp; unknown ); <a name="l01749"></a>01749 <a name="l01753"></a><a class="code" href="classTiXmlPrinter.html#213377a4070c7e625bae59716b089e5e">01753</a> <span class="keywordtype">void</span> <a class="code" href="classTiXmlPrinter.html#213377a4070c7e625bae59716b089e5e">SetIndent</a>( <span class="keyword">const</span> <span class="keywordtype">char</span>* _indent ) { indent = _indent ? _indent : <span class="stringliteral">""</span> ; } <a name="l01755"></a><a class="code" href="classTiXmlPrinter.html#bb33ec7d4bad6aaeb57f4304394b133d">01755</a> <span class="keyword">const</span> <span class="keywordtype">char</span>* <a class="code" href="classTiXmlPrinter.html#bb33ec7d4bad6aaeb57f4304394b133d">Indent</a>() { <span class="keywordflow">return</span> indent.c_str(); } <a name="l01760"></a><a class="code" href="classTiXmlPrinter.html#4be1e37e69e3858c59635aa947174fe6">01760</a> <span class="keywordtype">void</span> <a class="code" href="classTiXmlPrinter.html#4be1e37e69e3858c59635aa947174fe6">SetLineBreak</a>( <span class="keyword">const</span> <span class="keywordtype">char</span>* _lineBreak ) { lineBreak = _lineBreak ? _lineBreak : <span class="stringliteral">""</span>; } <a name="l01762"></a><a class="code" href="classTiXmlPrinter.html#11f1b4804a460b175ec244eb5724d96d">01762</a> <span class="keyword">const</span> <span class="keywordtype">char</span>* <a class="code" href="classTiXmlPrinter.html#11f1b4804a460b175ec244eb5724d96d">LineBreak</a>() { <span class="keywordflow">return</span> lineBreak.c_str(); } <a name="l01763"></a>01763 <a name="l01767"></a><a class="code" href="classTiXmlPrinter.html#b23a90629e374cb1cadca090468bbd19">01767</a> <span class="keywordtype">void</span> <a class="code" href="classTiXmlPrinter.html#b23a90629e374cb1cadca090468bbd19">SetStreamPrinting</a>() { indent = <span class="stringliteral">""</span>; <a name="l01768"></a>01768 lineBreak = <span class="stringliteral">""</span>; <a name="l01769"></a>01769 } <a name="l01771"></a><a class="code" href="classTiXmlPrinter.html#859eede9597d3e0355b77757be48735e">01771</a> <span class="keyword">const</span> <span class="keywordtype">char</span>* <a class="code" href="classTiXmlPrinter.html#859eede9597d3e0355b77757be48735e">CStr</a>() { <span class="keywordflow">return</span> buffer.c_str(); } <a name="l01773"></a><a class="code" href="classTiXmlPrinter.html#d01375ae9199bd2f48252eaddce3039d">01773</a> size_t <a class="code" href="classTiXmlPrinter.html#d01375ae9199bd2f48252eaddce3039d">Size</a>() { <span class="keywordflow">return</span> buffer.size(); } <a name="l01774"></a>01774 <a name="l01775"></a>01775 <span class="preprocessor"> #ifdef TIXML_USE_STL</span> <a name="l01777"></a><a class="code" href="classTiXmlPrinter.html#3bd4daf44309b41f5813a833caa0d1c9">01777</a> <span class="preprocessor"> const std::string&amp; Str() { return buffer; }</span> <a name="l01778"></a>01778 <span class="preprocessor"></span><span class="preprocessor"> #endif</span> <a name="l01779"></a>01779 <span class="preprocessor"></span> <a name="l01780"></a>01780 <span class="keyword">private</span>: <a name="l01781"></a>01781 <span class="keywordtype">void</span> DoIndent() { <a name="l01782"></a>01782 <span class="keywordflow">for</span>( <span class="keywordtype">int</span> i=0; i&lt;depth; ++i ) <a name="l01783"></a>01783 buffer += indent; <a name="l01784"></a>01784 } <a name="l01785"></a>01785 <span class="keywordtype">void</span> DoLineBreak() { <a name="l01786"></a>01786 buffer += lineBreak; <a name="l01787"></a>01787 } <a name="l01788"></a>01788 <a name="l01789"></a>01789 <span class="keywordtype">int</span> depth; <a name="l01790"></a>01790 <span class="keywordtype">bool</span> simpleTextPrint; <a name="l01791"></a>01791 TIXML_STRING buffer; <a name="l01792"></a>01792 TIXML_STRING indent; <a name="l01793"></a>01793 TIXML_STRING lineBreak; <a name="l01794"></a>01794 }; <a name="l01795"></a>01795 <a name="l01796"></a>01796 <a name="l01797"></a>01797 <span class="preprocessor">#ifdef _MSC_VER</span> <a name="l01798"></a>01798 <span class="preprocessor"></span><span class="preprocessor">#pragma warning( pop )</span> <a name="l01799"></a>01799 <span class="preprocessor"></span><span class="preprocessor">#endif</span> <a name="l01800"></a>01800 <span class="preprocessor"></span> <a name="l01801"></a>01801 <span class="preprocessor">#endif</span> <a name="l01802"></a>01802 <span class="preprocessor"></span> </pre></div><hr size="1"><address style="align: right;"><small>Generated on Sun May 6 15:41:23 2007 for TinyXml by&nbsp; <a href="http://www.doxygen.org/index.html"> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> </body> </html>
testing/client-side/java/watchdog/resources/servlet-golden/javax_servlet_http/Cookie/GetVersionTest.html
aakashysharma/opengse
GetVersionTest test PASSED
index.html
PolymerLabs/x-inspector
<!-- @license Copyright (c) 2014 The Polymer Project Authors. All rights reserved. This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as part of the polymer project is also subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt --> <!doctype html> <html> <head> <title>polymer api</title> <style> html, body { font-family: Arial, sans-serif; white-space: nowrap; overflow: hidden; } [noviewer] [ifnoviewer] { display: block; } [detector], [ifnoviewer], [noviewer] [ifviewer] { display: none; } [ifviewer], [ifnoviewer] { position: absolute; top: 0; right: 0; bottom: 0; left: 0; } iframe { border: none; margin: 0; width: 100%; height: 100%; } #remote { position: absolute; top: 0; right: 0; } </style> <script src="../platform/platform.js"></script> <link rel="import" href="../polymer-home-page/polymer-home-page.html"> </head> <body> <img detector src="../polymer-home-page/bowager-logo.png" onerror="noviewer()"> <polymer-home-page ifviewer></polymer-home-page> <div ifnoviewer> <span id="remote">[remote]</span> <iframe></iframe> </div> <!-- --> <script> var remoteDocs = 'http://turbogadgetry.com/bowertopia/components/'; // if no local info viewer, load it remotely function noviewer() { document.body.setAttribute('noviewer', ''); var path = location.pathname.split('/'); var module = path.pop() || path.pop(); document.querySelector('iframe').src = remoteDocs + module; document.querySelector('title').textContent = module; } // for testing only var opts = window.location.search; if (opts.indexOf('noviewer') >= 0) { noviewer(); } </script> </body> </html>
third_party/blink/web_tests/external/wpt/css/css-grid/alignment/grid-self-alignment-stretch-005.html
chromium/chromium
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Grid Layout Test: Self-Alignment and stretch on fixed-sized tracks</title> <link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com"> <link rel="help" href="https://drafts.csswg.org/css-grid-1/#alignment"> <link rel="help" href="https://drafts.csswg.org/css-align-3/#propdef-align-self"> <link rel="help" href="https://drafts.csswg.org/css-align-3/#propdef-justify-self"> <link rel="help" href="https://drafts.csswg.org/css-align/#valdef-justify-self-stretch"> <link rel="help" href="https://drafts.csswg.org/css-align/#valdef-align-self-stretch"> <meta name="assert" content="Orthogonal grid items with 'stretch' value for align-self and/or justify-self are stretched along the column and/or row axis respectively; they will be sized as fit-content otherwise."> <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> <style> .grid { position: relative; display: inline-grid; grid-template-columns: 100px 150px; grid-template-rows: 150px 100px; font: 10px/1 Ahem; background: grey; } .grid > div { writing-mode: vertical-lr; } .firstRowFirstColumn { grid-row: 1; grid-column: 1; background: green; justify-self: stretch; align-self: start; } .firstRowSecondColumn { grid-row: 1; grid-column: 2; background: blue; justify-self: start; align-self: stretch; } .secondRowFirstColumn { grid-row: 2; grid-column: 1; background: yellow; justify-self: start; align-self: start; } .secondRowSecondColumn { grid-row: 2; grid-column: 2; background: red; justify-self: stretch; align-self: stretch; } </style> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/resources/check-layout-th.js"></script> <script type="text/javascript"> setup({ explicit_done: true }); </script> <body onload="document.fonts.ready.then(() => { checkLayout('.grid'); })"> <div class="grid"> <div data-offset-x="0" data-offset-y="0" data-expected-width="100" data-expected-height="60" class="firstRowFirstColumn">X XX X</div> <div data-offset-x="100" data-offset-y="0" data-expected-width="40" data-expected-height="150" class="firstRowSecondColumn">XX X<br>X XXX<br>X<br>XX XXX</div> <div data-offset-x="0" data-offset-y="150" data-expected-width="10" data-expected-height="60" class="secondRowFirstColumn">X XX X</div> <div data-offset-x="100" data-offset-y="150" data-expected-width="150" data-expected-height="100" class="secondRowSecondColumn">XX X<br>X XXX<br>X<br>XX XXX</div> </div>