text
stringlengths
2
1.05M
repo_name
stringlengths
5
101
path
stringlengths
4
991
language
stringclasses
3 values
license
stringclasses
5 values
size
int64
2
1.05M
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <title>TestRowDataDeeper xref</title> <link type="text/css" rel="stylesheet" href="../../../../../../../../stylesheet.css" /> </head> <body> <div id="overview"><a href="../../../../../../../../../testapidocs/org/apache/hadoop/hbase/codec/prefixtree/row/data/TestRowDataDeeper.html">View Javadoc</a></div><pre> <a class="jxr_linenumber" name="1" href="#1">1</a> <em class="jxr_comment">/*</em> <a class="jxr_linenumber" name="2" href="#2">2</a> <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em> <a class="jxr_linenumber" name="3" href="#3">3</a> <em class="jxr_comment"> * or more contributor license agreements. See the NOTICE file</em> <a class="jxr_linenumber" name="4" href="#4">4</a> <em class="jxr_comment"> * distributed with this work for additional information</em> <a class="jxr_linenumber" name="5" href="#5">5</a> <em class="jxr_comment"> * regarding copyright ownership. The ASF licenses this file</em> <a class="jxr_linenumber" name="6" href="#6">6</a> <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em> <a class="jxr_linenumber" name="7" href="#7">7</a> <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em> <a class="jxr_linenumber" name="8" href="#8">8</a> <em class="jxr_comment"> * with the License. You may obtain a copy of the License at</em> <a class="jxr_linenumber" name="9" href="#9">9</a> <em class="jxr_comment"> *</em> <a class="jxr_linenumber" name="10" href="#10">10</a> <em class="jxr_comment"> * <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em> <a class="jxr_linenumber" name="11" href="#11">11</a> <em class="jxr_comment"> *</em> <a class="jxr_linenumber" name="12" href="#12">12</a> <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing, software</em> <a class="jxr_linenumber" name="13" href="#13">13</a> <em class="jxr_comment"> * distributed under the License is distributed on an "AS IS" BASIS,</em> <a class="jxr_linenumber" name="14" href="#14">14</a> <em class="jxr_comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em> <a class="jxr_linenumber" name="15" href="#15">15</a> <em class="jxr_comment"> * See the License for the specific language governing permissions and</em> <a class="jxr_linenumber" name="16" href="#16">16</a> <em class="jxr_comment"> * limitations under the License.</em> <a class="jxr_linenumber" name="17" href="#17">17</a> <em class="jxr_comment"> */</em> <a class="jxr_linenumber" name="18" href="#18">18</a> <a class="jxr_linenumber" name="19" href="#19">19</a> <strong class="jxr_keyword">package</strong> org.apache.hadoop.hbase.codec.prefixtree.row.data; <a class="jxr_linenumber" name="20" href="#20">20</a> <a class="jxr_linenumber" name="21" href="#21">21</a> <strong class="jxr_keyword">import</strong> java.util.List; <a class="jxr_linenumber" name="22" href="#22">22</a> <a class="jxr_linenumber" name="23" href="#23">23</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.KeyValue; <a class="jxr_linenumber" name="24" href="#24">24</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.KeyValueUtil; <a class="jxr_linenumber" name="25" href="#25">25</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.codec.prefixtree.PrefixTreeBlockMeta; <a class="jxr_linenumber" name="26" href="#26">26</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.codec.prefixtree.row.BaseTestRowData; <a class="jxr_linenumber" name="27" href="#27">27</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.codec.prefixtree.scanner.CellScannerPosition; <a class="jxr_linenumber" name="28" href="#28">28</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.codec.prefixtree.scanner.CellSearcher; <a class="jxr_linenumber" name="29" href="#29">29</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.util.Bytes; <a class="jxr_linenumber" name="30" href="#30">30</a> <strong class="jxr_keyword">import</strong> org.junit.Assert; <a class="jxr_linenumber" name="31" href="#31">31</a> <a class="jxr_linenumber" name="32" href="#32">32</a> <strong class="jxr_keyword">import</strong> com.google.common.collect.Lists; <a class="jxr_linenumber" name="33" href="#33">33</a> <a class="jxr_linenumber" name="34" href="#34">34</a> <em class="jxr_comment">/*</em> <a class="jxr_linenumber" name="35" href="#35">35</a> <em class="jxr_comment"> * Goes beyond a trivial trie to add a branch on the "cf" node</em> <a class="jxr_linenumber" name="36" href="#36">36</a> <em class="jxr_comment"> */</em> <a class="jxr_linenumber" name="37" href="#37">37</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../../../org/apache/hadoop/hbase/codec/prefixtree/row/data/TestRowDataDeeper.html">TestRowDataDeeper</a> <strong class="jxr_keyword">extends</strong> <a href="../../../../../../../../org/apache/hadoop/hbase/codec/prefixtree/row/BaseTestRowData.html">BaseTestRowData</a>{ <a class="jxr_linenumber" name="38" href="#38">38</a> <a class="jxr_linenumber" name="39" href="#39">39</a> <strong class="jxr_keyword">static</strong> byte[] <a class="jxr_linenumber" name="40" href="#40">40</a> cdc = Bytes.toBytes(<span class="jxr_string">"cdc"</span>), <a class="jxr_linenumber" name="41" href="#41">41</a> cf6 = Bytes.toBytes(<span class="jxr_string">"cf6"</span>), <a class="jxr_linenumber" name="42" href="#42">42</a> cfc = Bytes.toBytes(<span class="jxr_string">"cfc"</span>), <a class="jxr_linenumber" name="43" href="#43">43</a> f = Bytes.toBytes(<span class="jxr_string">"f"</span>), <a class="jxr_linenumber" name="44" href="#44">44</a> q = Bytes.toBytes(<span class="jxr_string">"q"</span>), <a class="jxr_linenumber" name="45" href="#45">45</a> v = Bytes.toBytes(<span class="jxr_string">"v"</span>); <a class="jxr_linenumber" name="46" href="#46">46</a> <a class="jxr_linenumber" name="47" href="#47">47</a> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">long</strong> <a class="jxr_linenumber" name="48" href="#48">48</a> ts = 55L; <a class="jxr_linenumber" name="49" href="#49">49</a> <a class="jxr_linenumber" name="50" href="#50">50</a> <strong class="jxr_keyword">static</strong> List&lt;KeyValue&gt; d = Lists.newArrayList(); <a class="jxr_linenumber" name="51" href="#51">51</a> <strong class="jxr_keyword">static</strong>{ <a class="jxr_linenumber" name="52" href="#52">52</a> d.add(<strong class="jxr_keyword">new</strong> KeyValue(cdc, f, q, ts, v)); <a class="jxr_linenumber" name="53" href="#53">53</a> d.add(<strong class="jxr_keyword">new</strong> KeyValue(cf6, f, q, ts, v)); <a class="jxr_linenumber" name="54" href="#54">54</a> d.add(<strong class="jxr_keyword">new</strong> KeyValue(cfc, f, q, ts, v)); <a class="jxr_linenumber" name="55" href="#55">55</a> } <a class="jxr_linenumber" name="56" href="#56">56</a> <a class="jxr_linenumber" name="57" href="#57">57</a> @Override <a class="jxr_linenumber" name="58" href="#58">58</a> <strong class="jxr_keyword">public</strong> List&lt;KeyValue&gt; getInputs() { <a class="jxr_linenumber" name="59" href="#59">59</a> <strong class="jxr_keyword">return</strong> d; <a class="jxr_linenumber" name="60" href="#60">60</a> } <a class="jxr_linenumber" name="61" href="#61">61</a> <a class="jxr_linenumber" name="62" href="#62">62</a> @Override <a class="jxr_linenumber" name="63" href="#63">63</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> individualBlockMetaAssertions(PrefixTreeBlockMeta blockMeta) { <a class="jxr_linenumber" name="64" href="#64">64</a> <em class="jxr_comment">//0: token:c; fan:d,f</em> <a class="jxr_linenumber" name="65" href="#65">65</a> <em class="jxr_comment">//1: token:f; fan:6,c</em> <a class="jxr_linenumber" name="66" href="#66">66</a> <em class="jxr_comment">//2: leaves</em> <a class="jxr_linenumber" name="67" href="#67">67</a> Assert.assertEquals(3, blockMeta.getRowTreeDepth()); <a class="jxr_linenumber" name="68" href="#68">68</a> } <a class="jxr_linenumber" name="69" href="#69">69</a> <a class="jxr_linenumber" name="70" href="#70">70</a> @Override <a class="jxr_linenumber" name="71" href="#71">71</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> individualSearcherAssertions(CellSearcher searcher) { <a class="jxr_linenumber" name="72" href="#72">72</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="73" href="#73">73</a> <em class="jxr_javadoccomment"> * The searcher should get a token mismatch on the "r" branch. Assert that it skips not only</em> <a class="jxr_linenumber" name="74" href="#74">74</a> <em class="jxr_javadoccomment"> * rA, but rB as well.</em> <a class="jxr_linenumber" name="75" href="#75">75</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="76" href="#76">76</a> KeyValue cfcRow = KeyValueUtil.createFirstOnRow(Bytes.toBytes(<span class="jxr_string">"cfc"</span>)); <a class="jxr_linenumber" name="77" href="#77">77</a> CellScannerPosition position = searcher.positionAtOrAfter(cfcRow); <a class="jxr_linenumber" name="78" href="#78">78</a> Assert.assertEquals(CellScannerPosition.AFTER, position); <a class="jxr_linenumber" name="79" href="#79">79</a> Assert.assertEquals(d.get(2), searcher.current()); <a class="jxr_linenumber" name="80" href="#80">80</a> searcher.previous(); <a class="jxr_linenumber" name="81" href="#81">81</a> Assert.assertEquals(d.get(1), searcher.current()); <a class="jxr_linenumber" name="82" href="#82">82</a> } <a class="jxr_linenumber" name="83" href="#83">83</a> } <a class="jxr_linenumber" name="84" href="#84">84</a> <a class="jxr_linenumber" name="85" href="#85">85</a> </pre> <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body> </html>
scalingdata/Impala
thirdparty/hbase-1.1.1.2.3.0.0-2557/docs/xref-test/org/apache/hadoop/hbase/codec/prefixtree/row/data/TestRowDataDeeper.html
HTML
apache-2.0
10,530
<!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> <!-- Favicon --> <link href="../images/vl_blue.ico" type="image/x-icon" rel="icon"></link> <link href="../images/vl_blue.ico" type="image/x-icon" rel="shortcut icon"></link> <!-- Page title --> <title>VLFeat - Documentation - Matlab API - IMOP - vl_imsmooth</title> <!-- Stylesheets --> <link href="../vlfeat.css" type="text/css" rel="stylesheet"></link> <link href="../pygmentize.css" type="text/css" rel="stylesheet"></link> <style xml:space="preserve"> /* fixes a conflict between Pygmentize and MathJax */ .MathJax .mo, .MathJax .mi {color: inherit ! important} </style> <!-- Scripts--> <!-- MathJax --> <script xml:space="preserve" type="text/x-mathjax-config"> MathJax.Hub.Config({ tex2jax: { inlineMath: [ ['$','$'], ['\\(','\\)'] ], processEscapes: true, }, TeX: { Macros: { balpha: '\\boldsymbol{\\alpha}', bc: '\\mathbf{c}', be: '\\mathbf{e}', bg: '\\mathbf{g}', bq: '\\mathbf{q}', bu: '\\mathbf{u}', bv: '\\mathbf{v}', bw: '\\mathbf{w}', bx: '\\mathbf{x}', by: '\\mathbf{y}', bz: '\\mathbf{z}', bsigma: '\\mathbf{\\sigma}', sign: '\\operatorname{sign}', diag: '\\operatorname{diag}', real: '\\mathbb{R}', }, equationNumbers: { autoNumber: 'AMS' } } }); </script> <script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" xml:space="preserve" type="text/javascript"></script> <!-- Google Custom Search --> <script xml:space="preserve"> (function() { var cx = '003215582122030917471:oq23albfeam'; var gcse = document.createElement('script'); gcse.type = 'text/javascript'; gcse.async = true; gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + '//www.google.com/cse/cse.js?cx=' + cx; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(gcse, s); })(); </script> <!-- Google Analytics --> <script xml:space="preserve" type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-4936091-2']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> </head> <!-- Body Start --> <body> <div id="header-section"> <div id="header"> <!-- Google CSE Search Box --> <div id="google" class="gcse-searchbox-only" data-resultsUrl="http://www.vlfeat.org/search.html"></div> <h1 id="id-13"><a shape="rect" href="../index.html" class="plain"><span id="vlfeat">VLFeat</span><span id="dotorg">.org</span></a></h1> </div> </div> <div id="headbanner-section"> <div id="headbanner"> Documentation - Matlab API - IMOP - vl_imsmooth </div> </div> <div id="content-section"> <div id="content-wrapper"> <div id="sidebar"> <!-- Navigation Start --> <ul> <li><a href="../index.html">Home</a> </li> <li><a href="../download.html">Download</a> </li> <li><a href="../overview/tut.html">Tutorials</a> </li> <li><a href="../applications/apps.html">Applications</a> </li> <li><a href="../doc.html">Documentation</a> <ul> <li><a href="matlab.html">Matlab API</a> </li> <li><a href="../api/index.html">C API</a> </li> <li><a href="../man/man.html">Man pages</a> </li> </ul></li> </ul> </div> <!-- sidebar --> <div id="content"> <div class="mdoc"> <ul class="breadcrumb"><li><a href="matlab.html">Index</a></li><li><a href="vl_imsc.html">Prev</a></li><li><a href="vl_imup.html">Next</a></li></ul><div class="documentation"><p> J = <a href="vl_imsmooth.html">VL_IMSMOOTH</a>(I,SIGMA) convolves the image I by an isotropic Gaussian kernel of standard deviation SIGMA. I must be an array of doubles. IF the array is three dimensional, the third dimension is assumed to span different channels (e.g. R,G,B). In this case, each channel is convolved independently. </p><p> <a href="vl_imsmooth.html">VL_IMSMOOTH</a>() accepts the following options: </p><dl><dt> Kernel </dt><dd><p> Selects between GAUSSIAN and TRIANGULAR kernels. The triangular kernel support has 2*SIGMA-1 sampels. Kernels have unit mass. </p></dd><dt> Padding </dt><dd><p> Selects between ZERO or CONTINUITY padding method to handle the image boundaries. ZERO extends the input image with zeroes around the border, and CONTINUITY extends the image with constant pixels. </p></dd><dt> Step </dt><dd><p> Sets the subsampling step. A subsampling step of STEP pixels causes J(1:STEPS:end, 1:STEPS:end, :) to be computed. This is useful to downsample the image. </p></dd></dl><p> See also: <a href="vl_help.html">VL_HELP</a>(). </p></div></div> </div> <div class="clear">&nbsp;</div> </div> </div> <!-- content-section --> <div id="footer-section"> <div id="footer"> &copy; 2007-13 The authors of VLFeat </div> <!-- footer --> </div> <!-- footer section --> </body> <!-- Body ends --> </html>
iscoe/cajal3d-i2g
external/vlfeat/doc/matlab/vl_imsmooth.html
HTML
apache-2.0
5,428
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="ko"> <head> <!-- Generated by javadoc (version 1.7.0_21) on Wed Feb 26 23:03:17 KST 2014 --> <title>ByteVisualizer</title> <meta name="date" content="2014-02-26"> <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="ByteVisualizer"; } //--> </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/ByteVisualizer.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>Prev Class</li> <li><a href="../../../../../etri/sdn/controller/module/statemanager/DataLayerTypeVisualizer.html" title="class in etri.sdn.controller.module.statemanager"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?etri/sdn/controller/module/statemanager/ByteVisualizer.html" target="_top">Frames</a></li> <li><a href="ByteVisualizer.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><a href="#field_summary">Field</a>&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><a href="#field_detail">Field</a>&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">etri.sdn.controller.module.statemanager</div> <h2 title="Class ByteVisualizer" class="title">Class ByteVisualizer</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li><a href="../../../../../etri/sdn/controller/module/statemanager/OxmVisualizer.html" title="class in etri.sdn.controller.module.statemanager">etri.sdn.controller.module.statemanager.OxmVisualizer</a></li> <li> <ul class="inheritance"> <li>etri.sdn.controller.module.statemanager.ByteVisualizer</li> </ul> </li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre> class <span class="strong">ByteVisualizer</span> extends <a href="../../../../../etri/sdn/controller/module/statemanager/OxmVisualizer.html" title="class in etri.sdn.controller.module.statemanager">OxmVisualizer</a></pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- =========== FIELD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="field_summary"> <!-- --> </a> <h3>Field Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation"> <caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Field and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>private java.lang.String</code></td> <td class="colLast"><code><strong><a href="../../../../../etri/sdn/controller/module/statemanager/ByteVisualizer.html#fieldName">fieldName</a></strong></code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="overviewSummary" 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><strong><a href="../../../../../etri/sdn/controller/module/statemanager/ByteVisualizer.html#ByteVisualizer(java.lang.String)">ByteVisualizer</a></strong>(java.lang.String&nbsp;fieldName)</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== 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>void</code></td> <td class="colLast"><code><strong><a href="../../../../../etri/sdn/controller/module/statemanager/ByteVisualizer.html#visualize(org.codehaus.jackson.JsonGenerator, org.codehaus.jackson.map.SerializerProvider, org.openflow.protocol.interfaces.OFOxm)">visualize</a></strong>(org.codehaus.jackson.JsonGenerator&nbsp;jgen, org.codehaus.jackson.map.SerializerProvider&nbsp;provider, org.openflow.protocol.interfaces.OFOxm&nbsp;oxm)</code>&nbsp;</td> </tr> </table> <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>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ FIELD DETAIL =========== --> <ul class="blockList"> <li class="blockList"><a name="field_detail"> <!-- --> </a> <h3>Field Detail</h3> <a name="fieldName"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>fieldName</h4> <pre>private&nbsp;java.lang.String fieldName</pre> </li> </ul> </li> </ul> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="ByteVisualizer(java.lang.String)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>ByteVisualizer</h4> <pre>ByteVisualizer(java.lang.String&nbsp;fieldName)</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="visualize(org.codehaus.jackson.JsonGenerator, org.codehaus.jackson.map.SerializerProvider, org.openflow.protocol.interfaces.OFOxm)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>visualize</h4> <pre>public&nbsp;void&nbsp;visualize(org.codehaus.jackson.JsonGenerator&nbsp;jgen, org.codehaus.jackson.map.SerializerProvider&nbsp;provider, org.openflow.protocol.interfaces.OFOxm&nbsp;oxm) throws org.codehaus.jackson.JsonGenerationException, java.io.IOException</pre> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../etri/sdn/controller/module/statemanager/OxmVisualizer.html#visualize(org.codehaus.jackson.JsonGenerator, org.codehaus.jackson.map.SerializerProvider, org.openflow.protocol.interfaces.OFOxm)">visualize</a></code>&nbsp;in class&nbsp;<code><a href="../../../../../etri/sdn/controller/module/statemanager/OxmVisualizer.html" title="class in etri.sdn.controller.module.statemanager">OxmVisualizer</a></code></dd> <dt><span class="strong">Throws:</span></dt> <dd><code>org.codehaus.jackson.JsonGenerationException</code></dd> <dd><code>java.io.IOException</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/ByteVisualizer.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>Prev Class</li> <li><a href="../../../../../etri/sdn/controller/module/statemanager/DataLayerTypeVisualizer.html" title="class in etri.sdn.controller.module.statemanager"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?etri/sdn/controller/module/statemanager/ByteVisualizer.html" target="_top">Frames</a></li> <li><a href="ByteVisualizer.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><a href="#field_summary">Field</a>&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><a href="#field_detail">Field</a>&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>
uni2u/iNaaS
Torpedo/doc/etri/sdn/controller/module/statemanager/ByteVisualizer.html
HTML
apache-2.0
11,246
<group> <ul class='breadcrumb'><li><a href='%pathto:matlab;'>Index</a></li><li><a href='%pathto:vl_plotss;'>Prev</a></li><li><a href='%pathto:vl_siftdescriptor;'>Next</a></li></ul><div class="documentation"><p> F = <a href="%pathto:vl_sift;">VL_SIFT</a>(I) computes the SIFT frames [1] (keypoints) F of the image I. I is a gray-scale image in single precision. Each column of F is a feature frame and has the format [X;Y;S;TH], where X,Y is the (fractional) center of the frame, S is the scale and TH is the orientation (in radians). </p><p> [F,D] = <a href="%pathto:vl_sift;">VL_SIFT</a>(I) computes the SIFT descriptors [1] as well. Each column of D is the descriptor of the corresponding frame in F. A descriptor is a 128-dimensional vector of class UINT8. </p><p> <a href="%pathto:vl_sift;">VL_SIFT</a>() accepts the following options: </p><dl><dt> Octaves <span class="defaults">maximum possible</span></dt><dd><p> Set the number of octave of the DoG scale space. </p></dd><dt> Levels <span class="defaults">3</span></dt><dd><p> Set the number of levels per octave of the DoG scale space. </p></dd><dt> FirstOctave <span class="defaults">0</span></dt><dd><p> Set the index of the first octave of the DoG scale space. </p></dd><dt> PeakThresh <span class="defaults">0</span></dt><dd><p> Set the peak selection threshold. </p></dd><dt> EdgeThresh <span class="defaults">10</span></dt><dd><p> Set the non-edge selection threshold. </p></dd><dt> NormThresh <span class="defaults">-inf</span></dt><dd><p> Set the minimum l2-norm of the descriptors before normalization. Descriptors below the threshold are set to zero. </p></dd><dt> Magnif <span class="defaults">3</span></dt><dd><p> Set the descriptor magnification factor. The scale of the keypoint is multiplied by this factor to obtain the width (in pixels) of the spatial bins. For instance, if there are there are 4 spatial bins along each spatial direction, the ``side'' of the descriptor is approximatively 4 * MAGNIF. </p></dd><dt> WindowSize <span class="defaults">2</span></dt><dd><p> Set the variance of the Gaussian window that determines the descriptor support. It is expressend in units of spatial bins. </p></dd><dt> Frames </dt><dd><p> If specified, set the frames to use (bypass the detector). If frames are not passed in order of increasing scale, they are re-orderded. </p></dd><dt> Orientations </dt><dd><p> If specified, compute the orietantions of the frames overriding the orientation specified by the 'Frames' option. </p></dd><dt> Verbose </dt><dd><p> If specfified, be verbose (may be repeated to increase the verbosity level). </p></dd><dt> REFERENCES </dt><dd><p> [1] D. G. Lowe, Distinctive image features from scale-invariant keypoints. IJCV, vol. 2, no. 60, pp. 91-110, 2004. </p></dd></dl><p> See also: <a href="%dox:sift;">SIFT</a> <a href="%pathto:vl_ubcmatch;">VL_UBCMATCH</a>(), <a href="%pathto:vl_dsift;">VL_DSIFT</a>(), <a href="%pathto:vl_help;">VL_HELP</a>(). </p></div></group>
iscoe/cajal3d-i2g
external/vlfeat/doc/build/matlab/vl_sift.html
HTML
apache-2.0
2,971
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML><HEAD><meta charset="UTF-8"><TITLE>Man page of FERROR</TITLE> </HEAD><BODY> <H1>FERROR</H1> Section: Linux Programmer's Manual (3)<BR>Updated: 2001-10-16<BR><A HREF="#index">Index</A> <A HREF="/cgi-bin/man/man2html">Return to Main Contents</A><HR> <A NAME="lbAB">&nbsp;</A> <H2>NAME</H2> clearerr, feof, ferror, fileno - 检测和重置流状态 <A NAME="lbAC">&nbsp;</A> <H2>SYNOPSIS 总览</H2> <B>#include &lt;<A HREF="file:///usr/include/stdio.h">stdio.h</A>&gt;</B> <P> <B>void clearerr(FILE *</B><I>stream</I><B>);</B> <BR> <B>int feof(FILE *</B><I>stream</I><B>);</B> <BR> <B>int ferror(FILE *</B><I>stream</I><B>);</B> <BR> <B>int fileno(FILE *</B><I>stream</I><B>);</B> <A NAME="lbAD">&nbsp;</A> <H2>DESCRIPTION 描述</H2> 函数 <B>clearerr</B> 清除 <I>stream</I> 指向的流中的文件结束标记和错误标记。 <P> 函数 <B>feof</B> 测试 tests the end-of-file indicator for the stream pointed to by <I>stream</I> 指向的流中的文件结束标记,如果已设置就返回非零值。文件结束标记只能用函数 <B>clearerr</B> 清除。 <P> 函数 <B>ferror</B> 测试 <I>stream</I> 指向的流中的错误标记,如果已设置就返回非零值。错误标记只能用函数 <B>clearerr</B> 重置。 <P> 函数 <B>fileno</B> 检测 <I>stream</I> 参数,返回它的整数形式的文件描述符。 <P> 关于对应的非锁定函数,请参见 <B><A HREF="/cgi-bin/man/man2html?3+unlocked_stdio">unlocked_stdio</A></B>(3) 。 <A NAME="lbAE">&nbsp;</A> <H2>ERRORS 错误</H2> 这些函数不应当失败,它们不设置外部变量 <I>errno</I> 。(但是,如果 <B>fileno</B> 检测到它的参数不是有效的流,它必须返回 -1,并且将 <I>errno</I> 设置为 <B>EBADF</B> 。) <A NAME="lbAF">&nbsp;</A> <H2>CONFORMING TO 标准参考</H2> 函数 <B>clearerr</B>, <B>feof</B>, 以及 <B>ferror</B> 遵循 X3.159-1989 (``ANSI C'') 标准。 <A NAME="lbAG">&nbsp;</A> <H2>SEE ALSO 参见</H2> <B><A HREF="/cgi-bin/man/man2html?2+open">open</A></B>(2), <B><A HREF="/cgi-bin/man/man2html?3+unlocked_stdio">unlocked_stdio</A></B>(3), <B><A HREF="/cgi-bin/man/man2html?3+stdio">stdio</A></B>(3) <P> <HR> <A NAME="index">&nbsp;</A><H2>Index</H2> <DL> <DT><A HREF="#lbAB">NAME</A><DD> <DT><A HREF="#lbAC">SYNOPSIS 总览</A><DD> <DT><A HREF="#lbAD">DESCRIPTION 描述</A><DD> <DT><A HREF="#lbAE">ERRORS 错误</A><DD> <DT><A HREF="#lbAF">CONFORMING TO 标准参考</A><DD> <DT><A HREF="#lbAG">SEE ALSO 参见</A><DD> </DL> <HR> This document was created by <A HREF="/cgi-bin/man/man2html">man2html</A>, using the manual pages.<BR> Time: 13:01:21 GMT, January 29, 2015 </BODY> </HTML>
kennethlyn/dash-manpages-zh
manpages-zh.docset/Contents/Resources/Documents/html/feof.3.html
HTML
apache-2.0
2,750
{% extends 'base/page.html' %} {% block content %}{% include 'widget/create-vurl.html' %}{% endblock %} {% block title %}create vurl{% endblock %} {% block context_sidebar %} {% include "sidebar/vurls.html" %} {% endblock %} {% block nav_vurls %}id=current{% endblock %}
vavavr00m/pymine
templates/create/vurl.html
HTML
apache-2.0
274
<!doctype html> <html lang="en" ng-app="myApp"> <head> <meta charset="utf-8"> <title>My AngularJS App</title> <link rel="stylesheet" href="css/app.css"/> </head> <body> <ul class="menu"> <li><a href="#/view1">view1</a></li> <li><a href="#/view2">view2</a></li> </ul> <div ng-view></div> <div>Angular seed app: v<span app-version></span></div> <!-- In production use: <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.2/angular.min.js"></script> --> <script src="lib/angular/angular.js"></script> <script src="js/app.js"></script> <script src="js/services.js"></script> <script src="js/controllers.js"></script> <script src="js/filters.js"></script> <script src="js/directives.js"></script> </body> </html>
brianmed/PhoneAdvanced
docroot/info_servant/public/a/angular-seed-master/app/index.html
HTML
bsd-2-clause
758
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Orthographic Projection</title> </head> <body onload="main()"> <canvas id="webgl" width="400" height="400"> Please use a browser that supports "canvas" </canvas> <p id="nearFar">The near and far values are displayed here.</p> <script src="../lib/webgl-utils.js"></script> <script src="../lib/webgl-debug.js"></script> <script src="../lib/cuon-utils.js"></script> <script src="../lib/cuon-matrix.js"></script> <script src="OrthoView_halfSize.js"></script> </body> </html>
AaronBonner/AsterGLoids
webglbook/ch07/OrthoView_halfSize.html
HTML
bsd-2-clause
597
<!doctype html> <!-- This file is generated by build.py. --> <title>Reference for img tall-viewBox.svg; overflow:hidden; -o-object-fit:cover; -o-object-position:0% 2cm</title> <link rel="stylesheet" href="../../support/reftests.css"> <style> .helper { overflow:hidden } .helper > * { left:0; top:2cm; width:200px; height:300px } </style> <div id="ref"> <span class="helper"><img src="../../support/tall-viewBox-none.svg"></span> </div>
frivoal/presto-testo
css/image-fit/reftests/img-svg-tall-viewBox/hidden_cover_0_2cm-ref.html
HTML
bsd-3-clause
439
<!DOCTYPE html> <html> <head> <link href="../../node_modules/phosphor/dist/phosphor.css" rel="stylesheet" type="text/css"> <link href="build/index.css" rel="stylesheet" type="text/css"> <script type="text/javascript" src="../../node_modules/phosphor/dist/phosphor.js"></script> <script type="text/javascript" src="build/app.js"></script> </head> <body> <div id="main"></div> </body> </html>
dwillmer/playground
examples/term-sidecar-app/index.html
HTML
bsd-3-clause
401
<html> <head> <style type="text/css" rel="stylesheet" name="icarus.css"> #chart { float: left; } .menu_div { float: right; width: 240px; } #menu { overflow-y: scroll; overflow-x: hidden; } .fixed { position: fixed; top: 0; } #to_main_menu_button { float: left; margin-left: -134px; margin-top: 2px; } #legend { float: right; width: 240px; } #legend .block { float: right; width: 230px; } #legend.collapsed p { margin-bottom: 5px; } #legend.collapsed p::before { float: left; font-size: 12px; content: '\a0+\a0'; color: #DDD; cursor: pointer; border: 1px rgb(200, 200, 200) solid; } #legend.expanded p::before { float: left; font-size: 12px; content: '\a0\2212\a0'; /* &minus&nbsp */ color: #DDD; cursor: pointer; border: 1px rgb(200, 200, 200) solid; } .collapsed svg { display: none; } .icarus_summary_content { margin-top: 40px; } .icarus_summary_content h3 { font-size: 1em; /*font-weight: bold;*/ line-height: 3em; } .icarus_summary_content .assemblies_table td, .icarus_summary_content .assemblies_table th { padding-top: 10px; } .icarus_summary_content .contig_alignment_viewer_panel { margin-top: -4px; } .icarus_summary_content .contig_alignment_viewer_panel .reference_details { margin-left: 20px; } .icarus_summary_content .contig_alignment_viewer_panel p { line-height: 0.8em; } .summary_table { border-collapse: collapse; color: black; margin-right: auto; } .summary_table th { border-bottom: 1px solid #bcbcbc; } .summary_table th, .summary_table td { padding-right: 15px; text-align: left; padding-top: 5px; } .block { color: white; background: #444; padding: 5px; margin-top: 5px; overflow: hidden; } .menu_block { font-size: 16px; color: white; background: #444; padding: 5px; margin-top: 5px; overflow: hidden; } .head { margin-left: 10px; padding: 5px; border: 1px rgb(200, 200, 200) solid; display: block; word-wrap: break-word; overflow: auto; } .head.main { margin-left: 0; } .head_plus.collapsed::before { float: left; margin-top: 3px; font-size: 12px; content: '+ '; color: #DDD; cursor: pointer; pointer-events: all; } .head_plus.expanded::before { float: left; margin-top: 3px; font-size: 12px; content: '\2212\a0'; /* &minus&nbsp */ color: #DDD; cursor: pointer; pointer-events: all; } .open { padding-left: 10px; display: block; } .close { display: none; } span { font-size: 10px; text-align: left; } .title { font-size: 20px; text-align: center; font-weight: bold; } .subtitle { padding-top: 10px; padding-bottom: 10px; font-size: 18px; } .summary_table a { text-decoration: none; /*color: #0c4f72;*/ color: #0077B5; border-bottom: 1px solid #487b95; border-color: #487b95; /* #487b95 */ border-color: rgba(12, 79, 114, 0.2); /* #0c4f72; */ /* #a0d2eb; */ /*rgba(0, 88, cc, 0.3);*/ } .summary_table a:visited { text-decoration: none; color: #8C66B2; border-bottom: 1px solid #8c66b2; border-color: #8c66b2; border-color: rgba(102, 51, 153, 0.2); } .summary_table a:hover { text-decoration: none; color: #b33; /* #0088cc; */ border-bottom: 1px solid #ffcccc; border-color: #ffcccc; border-color: rgba(255, 0, 0, 0.2); /* #55b2e0; */ /*#005580;*/ } .arrow { stroke: #666; stroke-width: 2; } .arrow_selected { stroke: #000; stroke-width: 2; } .COV .y { font: 12px sans-serif; } .COV .x path { stroke: black; stroke-width: 1px; } .COV .covered path { fill: #799FCA; opacity: .8; } .COV .phys_covered path { fill: #6BAEBC; opacity: .6; } .COV .notCovered path { stroke: blue; stroke-width: 5px; } .coverage text { font: 16px sans-serif; } .coverage .x path, .x line, .y path, .y line { fill: none; stroke: black; stroke-width: 1px; } .coverage .y text { font: 12px sans-serif; } .coverage .axis text { font: 12px sans-serif; } .coverage .covered { fill: #799FCA; opacity: .8; } .coverage .phys_covered path { fill: #6BAEBC; opacity: .5; } .coverage .notCovered { stroke: rgb(10, 10, 240); stroke-width: 3px; fill: none; } .chart { shape-rendering: optimizeSpeed; } .legend { shape-rendering: geometricPrecision; } .mini text { font: 9px sans-serif; } .main text { font: 12px sans-serif; } .mainItem text { fill: black; stroke-width: 0; } .axis line, .axis path { stroke: black; } path { shape-rendering: optimizeSpeed; } .shadow_svg { -webkit-filter: drop-shadow( -2px 2px 1px #808080); filter: drop-shadow( -2px 2px 1px #808080); } .main_labels rect { fill: #fff; } .mainItem { stroke: black; fill: #059B00; } .miniItem { stroke-width: .3; stroke: #444; fill: #4daf4a; } .item.gradient { stroke-width: .3; stroke: #444; } .item.legend { stroke-width: 0; } .mainItem.similar { fill: #00817F; } .mainItem.misassembled { fill: #D00000; } .mainItem.misassembled.similar { fill: #D26200; } .mainItem.ambiguous { fill: #8352be; } .mainItem.alternative { fill: #FF65B5; } .mainItem.disabled { fill: #757575; } .mainItem.unaligned { fill: #757575; } .mainItem.unknown { fill: #528CA6; } .mainItem.mis_unaligned { fill: #9E6D6D; } .mainItem.correct_unaligned { fill: #206040; } .predicted_gene { fill: none; } .miniItem.similar { fill: #4b9493; } .miniItem.misassembled { fill: #DD4343; } .miniItem.misassembled.similar { fill: #dd6800; } .miniItem.ambiguous { fill: #9C75BE; } .miniItem.alternative { fill: #FF65B5; } .miniItem.disabled { fill: #8e8e8e; } .miniItem.unaligned { fill: #8e8e8e; } .miniItem.unknown { fill: #7DA6B9; } .miniItem.mis_unaligned { fill: #9E6D6D; } .miniItem.correct_unaligned { fill: #426A51; } .unaligned_part { fill: #FFFFFF; } .end { stroke-width: 0; opacity: 0; } .end.misassembled { opacity: 1; fill: #7C0239; } .item.disabled.end { opacity: 0; } .dashed_lines { stroke: black; stroke-width: 1; stroke-dasharray: 3,2; } .miniItems.text { text-shadow: 1px 0 0 #000, -1px 0 0 #000, 0 1px 0 #000, 0 -1px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000; } .lineLabelText { fill: white; text-shadow: #000 0 0 2px, #000 0 0 2px, #000 0 0 2px, #000 0 0 2px, #000 0 0 2px, #000 0 0 2px, #000 0 0 2px, #000 0 0 2px, #000 0 0 2px, #000 0 0 2px, #000 0 0 2px, #000 0 0 2px; } .block_circle { width: 16px; height: 16px; -webkit-border-radius: 8px; -moz-border-radius: 8px; border-radius: 50%; background: darkgray; box-shadow: inset 3px 3px 4px #000; float: right; display: none; } .block_circle.selected { display: block; } .gene { fill: #612B1C; } .gene.odd { fill: #49190C; } .featureLabel { fill: #ffffcc; font-size: 8px; pointer-events: none; } .feature_tip { position: absolute; z-index: 100; text-align: center; padding: 2px; font: 11px sans-serif; background: lightgray; border: 1px black solid; border-radius: 8px; content: "\25BC"; } .trackBtn { rx: 20; ry: 20; stroke: black; stroke-width: 1; fill: white; } .trackBtnText { font-size: 11px; } .trackBtn:hover { stroke: red; cursor: pointer; } .brush .extent { stroke: gray; fill: yellow; fill-opacity: .165; } .itemLabel { font-size: 12px; } .reftitle { font-size: 16px; /*font-weight: bold;*/ /*text-align: center;*/ padding-top: 10px; padding-bottom: 10px; margin-top: 5px; } .moving_button { -webkit-transition:all 200ms ease; -moz-transition:all 200ms ease; -ms-transition:all 200ms ease; -o-transition:all 200ms ease; transition:all 200ms ease; } .lane_tooltip { font-size: 13px; } .click_a_contig_text { text-align: center; color: #cdcdcd; } .controls_table { border-spacing: 0; } .controls_table td { height: 21px; position: relative; min-width: 50px; } /*.layout-table {*/ /*max-width: 940px;*/ /*}*/ #controls_panel { float: left; font-size: 13px; margin-left: 30px; white-space: nowrap; /*margin-top: 7px;*/ } /*#controls_panel button {*/ /*margin-top: -3px;*/ /*}*/ #controls_panel * { vertical-align: baseline; } #controls_panel span { line-height: 250%; } #live_search { width: 160px; } #search_label { line-height: 20px; } .last-td { padding-left: 20px; width: 213px; } /*#controls_panel span {*/ /*margin-left: 7px;*/ /*}*/ #misassemblies_selector_panel label { margin-right: 10px; white-space: nowrap; } .ie_warning { background-color: yellow; height: 50px; font-size: 14px; text-align: center; padding-top: 15px; } .text_div { color: white; } .coords_div { color: white; overflow-y: hidden; } .coords_textbox { width: 75px; margin-left: 0; } .lane_bg { fill: #FFFFC6; stroke-width: 0; } </style> <style type="text/css" rel="stylesheet" name="common.css"> /* Main things */ html, body, div, span, h1, h3, h4, h5, h6, blockquote, pre, em, sub, sup, dl, dt, dd, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, article, aside, canvas, details, figure, figcaption, footer, header, hgroup, menu, nav, output, section, time { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } body { margin: 0; font-family: Lucida Grande, Verdana, Arial, sans-serif; font-size: 12px; color: black; padding-bottom: 30px; } a { text-decoration: none; /*color: #0c4f72;*/ color: #0077B5; border-bottom: 1px solid #487b95; border-color: #487b95; /* #487b95 */ border-color: rgba(12, 79, 114, 0.2); /* #0c4f72; */ /* #a0d2eb; */ /*rgba(0, 88, cc, 0.3);*/ } a:visited { text-decoration: none; color: #8C66B2; border-bottom: 1px solid #8c66b2; border-color: #8c66b2; border-color: rgba(102, 51, 153, 0.2); } a:hover { text-decoration: none; color: #b33; /* #0088cc; */ border-bottom: 1px solid #ffcccc; border-color: #ffcccc; border-color: rgba(255, 0, 0, 0.2); /* #55b2e0; */ /*#005580;*/ } a.dark_bg_link { color: white; /* #0088cc; */ border-bottom: 1px solid #cccccc; border-color: #cccccc; } a.dark_bg_link:hover { color: white; /* #0088cc; */ border-bottom: 1px solid white; } .leading_link_dot { border-bottom: white solid 1px; } a.header_link, a.header_link:hover, a.header_link:visited { color: black; border-bottom: 1px solid #bbb; } .dotted-link { cursor: pointer; text-decoration: none; /*color: #0c4f72;*/ color: #0077B5; border-bottom: 1px dashed #487b95; border-color: #487b95; /* #487b95 */ border-color: rgba(12, 79, 114, 0.2); } .dotted-link:hover { text-decoration: none; color: #b33 !important; border-bottom: 1px dashed #b33 !important; border-color: rgba(255, 0, 0, 0.2) !important; } .js:visited { color: #0077B5; border-bottom: 1px dashed #487b95; border-color: #487b95; border-color: rgba(12, 79, 114, 0.2); } .selected-switch { background-color: #fafad2; } .json-code { display: none; } .smallcapitals { font-size: .875em; letter-spacing: .15em; margin-right: -.15em; } .highlight { background-color:#FFF9B5; padding: 0 3px; margin-left: -3px; } ul.list { list-style-type: none; padding: 0 0 0 2em; margin: -0.5em 0 0 0; } ul.list li { margin-bottom: 0.7em; } ul.mdash { margin: -1em 0 0 0; padding: 0 0 0 2em; } ul.mdash li { margin-bottom: 0.7em; list-style-type: none; text-indent: -1.3em; behavior: expression(!this.before ? this.before = this.innerHTML = '&mdash;&nbsp;' + this.innerHTML : ''); } ul.mdash li:before { content: '\2014\a0'; } .small_line_indent { height: 0; margin-top: -7px; } /************/ /* Tooltips */ .tooltip { font-size: 0.9em; margin-bottom: 5px; } .tooltip.in { opacity: 1; } .tooltip-inner { text-align: left; } .tooltip-link, .tooltip-link:visited { text-decoration: none; color: #000; border-bottom: 1px dashed #bbb; cursor: hand; } .tooltip-link:hover { text-decoration: none; color: #b33; border-bottom: 1px dashed #b33; } /************/ /*********/ .hs { /* Полупробел для разделения разрядов чисел: 10<span class="hs"></span>000 */ margin-left: .2em; } .rhs { /* Полупробел на случай, если реальный пробел важен, например между ценой и валютой: 1<span class="rhs">&nbsp;</span>$ */ font-size: 50%; line-height: 1; } /*9490<span class="rhs"> </span>€<br/>*/ /*12<span class="hs"></span>650<span class="rhs"> </span>$<br/>*/ /*379<span class="hs"></span>000<span*/ /*class="rhs"> </span><span class="b-rub">Р</span><br/>*/ /*100<span class="hs"></span>500<span class="rhs"> </span>+*/ /* for wrapping long words with no spaces */ /* http://stackoverflow.com/questions/3247358/css-how-do-i-wrap-text-with-no-whitespace-inside-a-td */ .wrapword { white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */ white-space: -pre-wrap; /* Opera 4-6 */ white-space: -o-pre-wrap; /* Opera 7 */ white-space: pre-wrap; /* css-3 */ word-wrap: break-word; /* Internet Explorer 5.5+ */ word-break: break-all; white-space: normal; } .space_1px { height: 1px; } .space_2px { height: 2px; } .space_3px { height: 3px; } .space_4px { height: 4px; } .space_5px { height: 5px; } .space_6px { height: 6px; } .space_7px { height: 7px; } .space_8px { height: 8px; } .space_9px { height: 9px; } .space_10px { height: 10px; } .layout-table { width: 99%; border-spacing: 0; } .layout-table td.layout-table-td { vertical-align: top; padding: 0; } .layout-table td.layout-table-fst-td { min-width: 400px; padding-right: 50px; } .layout-table td.layout-table-snd-td { min-width: 200px; } .layout-table td.layout-table-trd-td { } .top-panel { background-color: #444; color: white; min-width: 650px; padding: 8px 10px 0 147px; min-height: 70px; text-shadow: -1px -1px 0 #111; } .top-panel span { color: white; } .top-panel a { color: white; border-bottom: 1px solid white; } #to_main_menu_button a { border-bottom: none; } .page_title { margin-top: -3px; margin-bottom: -3px; color: white; } .page_subtitle { line-height: 100%; white-space: nowrap; } .content { margin-left: 147px; width: 90%; /*padding-top: 20px;*/ margin-bottom: 0; /*padding-bottom: 50px;*/ /*{# padding-right: 20px;#}*/ } .p_after_content { margin-left: 147px; } .links_after_content{ font-size: 14px; } p { display: block; font-size: 12px; } h1 { display: block; font-size: 26px; padding: 0 -3px 0 5px; -webkit-margin-before: 5px; -webkit-margin-after: 0px; -webkit-margin-start: 0px; -webkit-margin-end: 0px; font-weight: bold; } #header { display: block; width: 100%; margin-bottom: 10px; } .logo_img { height: 40px; margin-bottom: -10px; margin-left: -6px; margin-right: -7px; } </style> <style type="text/css" rel="stylesheet" name="bootstrap/bootstrap.css"> .btn { display: inline-block; *display: inline; padding: 4px 10px 4px; margin-bottom: 0; *margin-left: .3em; font-size: 13px; line-height: 18px; *line-height: 20px; color: #333333; text-align: center; text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); vertical-align: middle; cursor: pointer; background-color: #f5f5f5; *background-color: #e6e6e6; background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6)); background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6); background-image: -o-linear-gradient(top, #ffffff, #e6e6e6); background-image: linear-gradient(top, #ffffff, #e6e6e6); background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6); background-repeat: repeat-x; border: 1px solid #cccccc; *border: 0; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); border-color: #e6e6e6 #e6e6e6 #bfbfbf; border-bottom-color: #b3b3b3; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0); filter: progid:dximagetransform.microsoft.gradient(enabled=false); *zoom: 1; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); } .btn:hover, .btn:active, .btn.active, .btn.disabled, .btn[disabled] { background-color: #e6e6e6; *background-color: #d9d9d9; } .btn:active, .btn.active { background-color: #cccccc \9; } .btn:first-child { *margin-left: 0; } .btn:hover { color: #333333; text-decoration: none; background-color: #e6e6e6; *background-color: #d9d9d9; /* Buttons in IE7 don't get borders, so darken on hover */ background-position: 0 -15px; -webkit-transition: background-position 0.1s linear; -moz-transition: background-position 0.1s linear; -ms-transition: background-position 0.1s linear; -o-transition: background-position 0.1s linear; transition: background-position 0.1s linear; } .btn:focus { outline: thin dotted #333; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } .btn.active, .btn:active { background-color: #e6e6e6; background-color: #d9d9d9 \9; background-image: none; outline: 0; -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); } .btn.disabled, .btn[disabled] { cursor: default; background-color: #e6e6e6; background-image: none; opacity: 0.65; filter: alpha(opacity=65); -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .btn-large { padding: 9px 14px; font-size: 15px; line-height: normal; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; } .btn-large [class^="icon-"] { margin-top: 1px; } .btn-small { padding: 5px 9px; font-size: 11px; line-height: 16px; } .btn-small [class^="icon-"] { margin-top: -1px; } .btn-mini { padding: 2px 6px; font-size: 11px; line-height: 14px; } .btn-primary, .btn-primary:hover, .btn-warning, .btn-warning:hover, .btn-danger, .btn-danger:hover, .btn-success, .btn-success:hover, .btn-info, .btn-info:hover, .btn-inverse, .btn-inverse:hover { color: #ffffff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); } .btn-primary.active, .btn-warning.active, .btn-danger.active, .btn-success.active, .btn-info.active, .btn-inverse.active { color: rgba(255, 255, 255, 0.75); } .btn { border-color: #ccc; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); } .btn-primary { background-color: #0074cc; *background-color: #0055cc; background-image: -ms-linear-gradient(top, #0088cc, #0055cc); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0055cc)); background-image: -webkit-linear-gradient(top, #0088cc, #0055cc); background-image: -o-linear-gradient(top, #0088cc, #0055cc); background-image: -moz-linear-gradient(top, #0088cc, #0055cc); background-image: linear-gradient(top, #0088cc, #0055cc); background-repeat: repeat-x; border-color: #0055cc #0055cc #003580; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); filter: progid:dximagetransform.microsoft.gradient(startColorstr='#0088cc', endColorstr='#0055cc', GradientType=0); filter: progid:dximagetransform.microsoft.gradient(enabled=false); } .btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] { background-color: #0055cc; *background-color: #004ab3; } .btn-primary:active, .btn-primary.active { background-color: #004099 \9; } .btn-warning { background-color: #faa732; *background-color: #f89406; background-image: -ms-linear-gradient(top, #fbb450, #f89406); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406)); background-image: -webkit-linear-gradient(top, #fbb450, #f89406); background-image: -o-linear-gradient(top, #fbb450, #f89406); background-image: -moz-linear-gradient(top, #fbb450, #f89406); background-image: linear-gradient(top, #fbb450, #f89406); background-repeat: repeat-x; border-color: #f89406 #f89406 #ad6704; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0); filter: progid:dximagetransform.microsoft.gradient(enabled=false); } .btn-warning:hover, .btn-warning:active, .btn-warning.active, .btn-warning.disabled, .btn-warning[disabled] { background-color: #f89406; *background-color: #df8505; } .btn-warning:active, .btn-warning.active { background-color: #c67605 \9; } .btn-danger { background-color: #da4f49; *background-color: #bd362f; background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f)); background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f); background-image: -o-linear-gradient(top, #ee5f5b, #bd362f); background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f); background-image: linear-gradient(top, #ee5f5b, #bd362f); background-repeat: repeat-x; border-color: #bd362f #bd362f #802420; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0); filter: progid:dximagetransform.microsoft.gradient(enabled=false); } .btn-danger:hover, .btn-danger:active, .btn-danger.active, .btn-danger.disabled, .btn-danger[disabled] { background-color: #bd362f; *background-color: #a9302a; } .btn-danger:active, .btn-danger.active { background-color: #942a25 \9; } .btn-success { background-color: #5bb75b; *background-color: #51a351; background-image: -ms-linear-gradient(top, #62c462, #51a351); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351)); background-image: -webkit-linear-gradient(top, #62c462, #51a351); background-image: -o-linear-gradient(top, #62c462, #51a351); background-image: -moz-linear-gradient(top, #62c462, #51a351); background-image: linear-gradient(top, #62c462, #51a351); background-repeat: repeat-x; border-color: #51a351 #51a351 #387038; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); filter: progid:dximagetransform.microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0); filter: progid:dximagetransform.microsoft.gradient(enabled=false); } .btn-success:hover, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] { background-color: #51a351; *background-color: #499249; } .btn-success:active, .btn-success.active { background-color: #408140 \9; } .btn-info { background-color: #49afcd; *background-color: #2f96b4; background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4)); background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4); background-image: -o-linear-gradient(top, #5bc0de, #2f96b4); background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4); background-image: linear-gradient(top, #5bc0de, #2f96b4); background-repeat: repeat-x; border-color: #2f96b4 #2f96b4 #1f6377; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); filter: progid:dximagetransform.microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0); filter: progid:dximagetransform.microsoft.gradient(enabled=false); } .btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] { background-color: #2f96b4; *background-color: #2a85a0; } .btn-info:active, .btn-info.active { background-color: #24748c \9; } .btn-inverse { background-color: #414141; *background-color: #222222; background-image: -ms-linear-gradient(top, #555555, #222222); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#222222)); background-image: -webkit-linear-gradient(top, #555555, #222222); background-image: -o-linear-gradient(top, #555555, #222222); background-image: -moz-linear-gradient(top, #555555, #222222); background-image: linear-gradient(top, #555555, #222222); background-repeat: repeat-x; border-color: #222222 #222222 #000000; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); filter: progid:dximagetransform.microsoft.gradient(startColorstr='#555555', endColorstr='#222222', GradientType=0); filter: progid:dximagetransform.microsoft.gradient(enabled=false); } .btn-inverse:hover, .btn-inverse:active, .btn-inverse.active, .btn-inverse.disabled, .btn-inverse[disabled] { background-color: #222222; *background-color: #151515; } .btn-inverse:active, .btn-inverse.active { background-color: #080808 \9; } button.btn, input[type="submit"].btn { *padding-top: 2px; *padding-bottom: 2px; } button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner { padding: 0; border: 0; } button.btn.btn-large, input[type="submit"].btn.btn-large { *padding-top: 7px; *padding-bottom: 7px; } button.btn.btn-small, input[type="submit"].btn.btn-small { *padding-top: 3px; *padding-bottom: 3px; } button.btn.btn-mini, input[type="submit"].btn.btn-mini { *padding-top: 1px; *padding-bottom: 1px; } .btn-group { position: relative; *margin-left: .3em; *zoom: 1; } .btn-group:before, .btn-group:after { display: table; content: ""; } .btn-group:after { clear: both; } .btn-group:first-child { *margin-left: 0; } .btn-group + .btn-group { margin-left: 5px; } .btn-toolbar { margin-top: 9px; margin-bottom: 9px; } .btn-toolbar .btn-group { display: inline-block; *display: inline; /* IE7 inline-block hack */ *zoom: 1; } .btn-group > .btn { position: relative; float: left; margin-left: -1px; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; } .btn-group > .btn:first-child { margin-left: 0; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -moz-border-radius-topleft: 4px; } .btn-group > .btn:last-child, .btn-group > .dropdown-toggle { -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; -moz-border-radius-topright: 4px; -moz-border-radius-bottomright: 4px; } .btn-group > .btn.large:first-child { margin-left: 0; -webkit-border-bottom-left-radius: 6px; border-bottom-left-radius: 6px; -webkit-border-top-left-radius: 6px; border-top-left-radius: 6px; -moz-border-radius-bottomleft: 6px; -moz-border-radius-topleft: 6px; } .btn-group > .btn.large:last-child, .btn-group > .large.dropdown-toggle { -webkit-border-top-right-radius: 6px; border-top-right-radius: 6px; -webkit-border-bottom-right-radius: 6px; border-bottom-right-radius: 6px; -moz-border-radius-topright: 6px; -moz-border-radius-bottomright: 6px; } .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active { z-index: 2; } .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { outline: 0; } .btn-group > .dropdown-toggle { *padding-top: 4px; padding-right: 8px; *padding-bottom: 4px; padding-left: 8px; -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); } .btn-group > .btn-mini.dropdown-toggle { padding-right: 5px; padding-left: 5px; } .btn-group > .btn-small.dropdown-toggle { *padding-top: 4px; *padding-bottom: 4px; } .btn-group > .btn-large.dropdown-toggle { padding-right: 12px; padding-left: 12px; } .btn-group.open .dropdown-toggle { background-image: none; -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); } .btn-group.open .btn.dropdown-toggle { background-color: #e6e6e6; } .btn-group.open .btn-primary.dropdown-toggle { background-color: #0055cc; } .btn-group.open .btn-warning.dropdown-toggle { background-color: #f89406; } .btn-group.open .btn-danger.dropdown-toggle { background-color: #bd362f; } .btn-group.open .btn-success.dropdown-toggle { background-color: #51a351; } .btn-group.open .btn-info.dropdown-toggle { background-color: #2f96b4; } .btn-group.open .btn-inverse.dropdown-toggle { background-color: #222222; } .btn .caret { margin-top: 7px; margin-left: 0; } .btn:hover .caret, .open.btn-group .caret { opacity: 1; filter: alpha(opacity=100); } .btn-mini .caret { margin-top: 5px; } .btn-small .caret { margin-top: 6px; } .btn-large .caret { margin-top: 6px; border-top-width: 5px; border-right-width: 5px; border-left-width: 5px; } .dropup .btn-large .caret { border-top: 0; border-bottom: 5px solid #000000; } .btn-primary .caret, .btn-warning .caret, .btn-danger .caret, .btn-info .caret, .btn-success .caret, .btn-inverse .caret { border-top-color: #ffffff; border-bottom-color: #ffffff; opacity: 0.75; filter: alpha(opacity=75); } .modal-open .dropdown-menu { z-index: 2050; } .modal-open .dropdown.open { *z-index: 2050; } .modal-open .popover { z-index: 2060; } .modal-open .tooltip { z-index: 2070; } .modal-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1040; background-color: #000000; } .modal-backdrop.fade { opacity: 0; } .modal-backdrop, .modal-backdrop.fade.in { opacity: 0.8; filter: alpha(opacity=80); } .modal { position: fixed; top: 50%; left: 50%; z-index: 1050; width: 560px; margin: -250px 0 0 -280px; overflow: auto; background-color: #ffffff; border: 1px solid #999; border: 1px solid rgba(0, 0, 0, 0.3); *border: 1px solid #999; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); -webkit-background-clip: padding-box; -moz-background-clip: padding-box; background-clip: padding-box; } .modal.fade { top: -25%; -webkit-transition: opacity 0.3s linear, top 0.3s ease-out; -moz-transition: opacity 0.3s linear, top 0.3s ease-out; -ms-transition: opacity 0.3s linear, top 0.3s ease-out; -o-transition: opacity 0.3s linear, top 0.3s ease-out; transition: opacity 0.3s linear, top 0.3s ease-out; } .modal.fade.in { top: 50%; } .modal-header { padding: 9px 15px; border-bottom: 1px solid #eee; } .modal-header .close { margin-top: 2px; } .modal-body { max-height: 400px; padding: 15px; overflow-y: auto; } .modal-form { margin-bottom: 0; } .modal-footer { padding: 14px 15px 15px; margin-bottom: 0; text-align: right; background-color: #f5f5f5; border-top: 1px solid #ddd; -webkit-border-radius: 0 0 6px 6px; -moz-border-radius: 0 0 6px 6px; border-radius: 0 0 6px 6px; *zoom: 1; -webkit-box-shadow: inset 0 1px 0 #ffffff; -moz-box-shadow: inset 0 1px 0 #ffffff; box-shadow: inset 0 1px 0 #ffffff; } .modal-footer:before, .modal-footer:after { display: table; content: ""; } .modal-footer:after { clear: both; } .modal-footer .btn + .btn { margin-bottom: 0; margin-left: 5px; } .modal-footer .btn-group .btn + .btn { margin-left: -1px; } .tooltip { position: absolute; z-index: 1020; display: block; padding: 5px; font-size: 11px; opacity: 0; visibility: visible; filter: alpha(opacity=0); } .tooltip.in { opacity: 0.8; filter: alpha(opacity=80); } .tooltip.top { margin-top: -2px; } .tooltip.right { margin-left: 2px; } .tooltip.bottom { margin-top: 2px; } .tooltip.left { margin-left: -2px; } .tooltip.top .tooltip-arrow { bottom: 0; left: 50%; margin-left: -5px; border-top: 5px solid #000000; border-right: 5px solid transparent; border-left: 5px solid transparent; } .tooltip.left .tooltip-arrow { top: 50%; right: 0; margin-top: -5px; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 5px solid #000000; } .tooltip.bottom .tooltip-arrow { top: 0; left: 50%; margin-left: -5px; border-right: 5px solid transparent; border-bottom: 5px solid #000000; border-left: 5px solid transparent; } .tooltip.right .tooltip-arrow { top: 50%; left: 0; margin-top: -5px; border-top: 5px solid transparent; border-right: 5px solid #000000; border-bottom: 5px solid transparent; } .tooltip-inner { max-width: 200px; padding: 3px 8px; color: #ffffff; text-align: center; text-decoration: none; background-color: #000000; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .tooltip-arrow { position: absolute; width: 0; height: 0; } .popover { position: absolute; top: 0; left: 0; z-index: 1010; display: none; padding: 5px; } .popover.top { margin-top: -5px; } .popover.right { margin-left: 5px; } .popover.bottom { margin-top: 5px; } .popover.left { margin-left: -5px; } .popover.top .arrow { bottom: 0; left: 50%; margin-left: -5px; border-top: 5px solid #000000; border-right: 5px solid transparent; border-left: 5px solid transparent; } .popover.right .arrow { top: 50%; left: 0; margin-top: -5px; border-top: 5px solid transparent; border-right: 5px solid #000000; border-bottom: 5px solid transparent; } .popover.bottom .arrow { top: 0; left: 50%; margin-left: -5px; border-right: 5px solid transparent; border-bottom: 5px solid #000000; border-left: 5px solid transparent; } .popover.left .arrow { top: 50%; right: 0; margin-top: -5px; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 5px solid #000000; } .popover .arrow { position: absolute; width: 0; height: 0; } .popover-inner { width: 280px; padding: 3px; overflow: hidden; background: #000000; background: rgba(0, 0, 0, 0.8); -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); } .popover-title { padding: 9px 15px; line-height: 1; background-color: #f5f5f5; border-bottom: 1px solid #eee; -webkit-border-radius: 3px 3px 0 0; -moz-border-radius: 3px 3px 0 0; border-radius: 3px 3px 0 0; } .popover-content { padding: 14px; background-color: #ffffff; -webkit-border-radius: 0 0 3px 3px; -moz-border-radius: 0 0 3px 3px; border-radius: 0 0 3px 3px; -webkit-background-clip: padding-box; -moz-background-clip: padding-box; background-clip: padding-box; } .popover-content p, .popover-content ul, .popover-content ol { margin-bottom: 0; } .pull-right { float: right; } .pull-left { float: left; } .hide { display: none; } .show { display: block; } .invisible { visibility: hidden; } </style> </head> <body> <div class="top-panel"> <table class="layout-table"> <tr> <td class='layout-table-td'> <div class="page_title"> <h1> Icarus </h1> <p class="page_subtitle"> <b>QUAST Contig Browser</b> by <a href="http://cab.spbu.ru" class='dark_bg_link'>CAB</a> </p> </div> </td> </tr> </table> </div> <div class="content"> <div class="icarus_summary_content"> <table class="summary_table assemblies_table"> <thead> <b>Assemblies:</b> contigs </thead> <tbody> <tr><td><a href="icarus_viewers/contig_size_viewer.html">Contig size viewer</a></td></tr> <tr><td><a href="report.html">QUAST report</a></td></tr> </tbody> </table> <br> </div> </div> </body> </html>
dahak-metagenomics/dahak
workflows/assembly/spades_output_podar_metaG_sub_25_quast_report/icarus.html
HTML
bsd-3-clause
53,256
<!doctype html> <!-- This file is generated by build.py. --> <title>object wide.jpg; overflow:visible; -o-object-fit:cover; -o-object-position:right top</title> <link rel="stylesheet" href="../../support/reftests.css"> <link rel='match' href='visible_cover_right_top-ref.html'> <style> #test > * { overflow:visible; -o-object-fit:cover; -o-object-position:right top } </style> <div id="test"> <object data="../../support/wide.jpg"></object> </div>
frivoal/presto-testo
css/image-fit/reftests/object-jpg-wide/visible_cover_right_top.html
HTML
bsd-3-clause
450
<!DOCTYPE html> <title>flexbox | flex-basis: percentage</title> <style> div { white-space: nowrap; background: blue; margin: 1em 0; border: 1px solid black; height: 8em; width: 8em; } span { background: yellow; margin: 1em 0; width: 8em; height: 6em; display: inline-block; } span:nth-child(2) {background: pink;} span:nth-child(3) {background: lightblue;} span:nth-child(4) {background: grey;} </style> <div> <span>one</span><span>two</span><span>three</span><span>four</span> </div>
frivoal/presto-testo
css/flexbox/flex-basis-ref.html
HTML
bsd-3-clause
498
<!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>Core Plot (iOS): Source/CPTColorSpace.m File Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="customdoxygen.css" rel="stylesheet" type="text/css" /> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); </script> </head> <body> <div id="top"><!-- do not remove this div! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="core-plot-logo.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">Core Plot (iOS) </div> <div id="projectbrief">Cocoa plotting framework for Mac OS X and iOS</div> </td> </tr> </tbody> </table> </div> <!-- Generated by Doxygen 1.7.6.1 --> <script type="text/javascript" src="dynsections.js"></script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="modules.html"><span>Animation&#160;&&#160;Constants</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="files.html"><span>File&#160;List</span></a></li> <li><a href="globals.html"><span>File&#160;Members</span></a></li> </ul> </div> </div> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> initNavTree('_c_p_t_color_space_8m.html',''); </script> <div id="doc-content"> <div class="header"> <div class="headertitle"> <div class="title">Source/CPTColorSpace.m File Reference</div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><code>#import &quot;<a class="el" href="_c_p_t_color_space_8h_source.html">CPTColorSpace.h</a>&quot;</code><br/> <code>#import &quot;<a class="el" href="_n_s_coder_extensions_8h_source.html">NSCoderExtensions.h</a>&quot;</code><br/> </div><div class="textblock"><div id="dynsection-0" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;"> <img id="dynsection-0-trigger" src="closed.png" alt="+"/> Include dependency graph for CPTColorSpace.m:</div> <div id="dynsection-0-summary" class="dynsummary" style="display:block;"> </div> <div id="dynsection-0-content" class="dyncontent" style="display:none;"> <div class="center"><img src="_c_p_t_color_space_8m__incl.png" border="0" usemap="#_source_2_c_p_t_color_space_8m" alt=""/></div> <map name="_source_2_c_p_t_color_space_8m" id="_source_2_c_p_t_color_space_8m"> <area shape="rect" id="node3" href="_c_p_t_color_space_8h.html" title="CPTColorSpace.h" alt="" coords="56,86,187,117"/><area shape="rect" id="node9" href="_n_s_coder_extensions_8h.html" title="NSCoderExtensions.h" alt="" coords="211,86,369,117"/></map> </div> </div></div><!-- contents --> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="_c_p_t_color_space_8m.html">CPTColorSpace.m</a> </li> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a></li> </ul> </div> </body> </html>
escoz/core-plot
documentation/html/iOS/_c_p_t_color_space_8m.html
HTML
bsd-3-clause
3,986
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Struct template weighted_skewness_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="../../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> <link rel="up" href="../../../accumulators/reference.html#header.boost.accumulators.statistics_fwd_hpp" title="Header &lt;boost/accumulators/statistics_fwd.hpp&gt;"> <link rel="prev" href="weighted_peaks_idp66744912.html" title="Struct template weighted_peaks_over_threshold_prob_impl"> <link rel="next" href="weighted_sum_impl.html" title="Struct template weighted_sum_impl"> </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="weighted_peaks_idp66744912.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../accumulators/reference.html#header.boost.accumulators.statistics_fwd_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="weighted_sum_impl.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.accumulators.impl.weighted_skewness_impl"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Struct template weighted_skewness_impl</span></h2> <p>boost::accumulators::impl::weighted_skewness_impl &#8212; Skewness estimation for weighted samples. </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="../../../accumulators/reference.html#header.boost.accumulators.statistics_fwd_hpp" title="Header &lt;boost/accumulators/statistics_fwd.hpp&gt;">boost/accumulators/statistics_fwd.hpp</a>&gt; </span><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> Sample<span class="special">,</span> <span class="keyword">typename</span> Weight<span class="special">&gt;</span> <span class="keyword">struct</span> <a class="link" href="weighted_skewness_impl.html" title="Struct template weighted_skewness_impl">weighted_skewness_impl</a> <span class="special">:</span> <span class="keyword">public</span> <span class="identifier">accumulator_base</span> <span class="special">{</span> <span class="comment">// <a class="link" href="weighted_skewness_impl.html#boost.accumulators.impl.weighted_skewness_implconstruct-copy-destruct">construct/copy/destruct</a></span> <a class="link" href="weighted_skewness_impl.html#idp66779728-bb"><span class="identifier">weighted_skewness_impl</span></a><span class="special">(</span><span class="identifier">dont_care</span><span class="special">)</span><span class="special">;</span> <span class="comment">// <a class="link" href="weighted_skewness_impl.html#idp66776352-bb">public member functions</a></span> <span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> Args<span class="special">&gt;</span> <span class="identifier">result_type</span> <a class="link" href="weighted_skewness_impl.html#idp66776912-bb"><span class="identifier">result</span></a><span class="special">(</span><span class="identifier">Args</span> <span class="keyword">const</span> <span class="special">&amp;</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span> <span class="special">}</span><span class="special">;</span></pre></div> <div class="refsect1"> <a name="idp111365472"></a><h2>Description</h2> <p>The skewness of a sample distribution is defined as the ratio of the 3rd central moment and the <span class="inlinemediaobject"><img src="../../../images/accumulators//form_101.png"></span>-th power $ of the 2nd central moment (the variance) of the samples. The skewness can also be expressed by the simple moments:</p> <div class="equation"> <a name="idp111368912"></a><p class="title"><b>Equation&#160;1.42.&#160;</b></p> <div class="equation-contents"><div class="mediaobject" align="center"><img src="../../../images/accumulators//form_102.png" align="middle"></div></div> </div> <p><br class="equation-break"></p> <p>where <span class="inlinemediaobject"><img src="../../../images/accumulators//form_57.png"></span> are the <span class="inlinemediaobject"><img src="../../../images/accumulators//form_58.png"></span>-th moment and <span class="inlinemediaobject"><img src="../../../images/accumulators//form_59.png"></span> the mean (first moment) of the <span class="inlinemediaobject"><img src="../../../images/accumulators//form_52.png"></span> samples.</p> <p>The skewness estimator for weighted samples is formally identical to the estimator for unweighted samples, except that the weighted counterparts of all measures it depends on are to be taken. </p> <div class="refsect2"> <a name="idp111382256"></a><h3> <a name="boost.accumulators.impl.weighted_skewness_implconstruct-copy-destruct"></a><code class="computeroutput">weighted_skewness_impl</code> public construct/copy/destruct</h3> <div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"><pre class="literallayout"><a name="idp66779728-bb"></a><span class="identifier">weighted_skewness_impl</span><span class="special">(</span><span class="identifier">dont_care</span><span class="special">)</span><span class="special">;</span></pre></li></ol></div> </div> <div class="refsect2"> <a name="idp111388864"></a><h3> <a name="idp66776352-bb"></a><code class="computeroutput">weighted_skewness_impl</code> public member functions</h3> <div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"><pre class="literallayout"><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> Args<span class="special">&gt;</span> <span class="identifier">result_type</span> <a name="idp66776912-bb"></a><span class="identifier">result</span><span class="special">(</span><span class="identifier">Args</span> <span class="keyword">const</span> <span class="special">&amp;</span> args<span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre></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; 2005, 2006 Eric Niebler<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="weighted_peaks_idp66744912.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../accumulators/reference.html#header.boost.accumulators.statistics_fwd_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="weighted_sum_impl.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
TyRoXx/cdm
original_sources/boost_1_59_0/doc/html/boost/accumulators/impl/weighted_skewness_impl.html
HTML
mit
8,390
--- layout: post date: 2010-05-27 time: "09:00:00" authors: ["Greg Wilson"] title: Badges and Stars category: ["Opinion"] --- <p>The Open Notebook Science folks have developed <a href="http://onsclaims.wikispaces.com/">a set of badges</a> to help people label their work, ranging from "All Content &mdash; Immediate Release" to "Selected Content &mdash; Delayed Release". Like the <a href="http://creativecommons.org/about/downloads">badges for various Creative Commons licenses</a>, or Tim Berners-Lee's proposed <a href="http://www.elon.edu/e-web/predictions/futureweb2010/open_government.xhtml">five-star system for rating open data</a>, the biggest benefit of this kind of categorization is that it encourages people to think more clearly about what they are (or aren't) doing, and why.</p>
ErinBecker/website
_posts/2010/05/2010-05-27-badges-and-stars.html
HTML
mit
795
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>windows::overlapped_handle::native_handle</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.79.1"> <link rel="home" href="../../../boost_asio.html" title="Boost.Asio"> <link rel="up" href="../windows__overlapped_handle.html" title="windows::overlapped_handle"> <link rel="prev" href="lowest_layer_type.html" title="windows::overlapped_handle::lowest_layer_type"> <link rel="next" href="native_handle_type.html" title="windows::overlapped_handle::native_handle_type"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr> <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../boost.png"></td> <td align="center"><a href="../../../../../index.html">Home</a></td> <td align="center"><a href="../../../../../libs/libraries.htm">Libraries</a></td> <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> <td align="center"><a href="../../../../../more/index.htm">More</a></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="lowest_layer_type.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../windows__overlapped_handle.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="native_handle_type.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="boost_asio.reference.windows__overlapped_handle.native_handle"></a><a class="link" href="native_handle.html" title="windows::overlapped_handle::native_handle">windows::overlapped_handle::native_handle</a> </h4></div></div></div> <p> <a class="indexterm" name="boost_asio.indexterm.windows__overlapped_handle.native_handle"></a> Get the native handle representation. </p> <pre class="programlisting">native_handle_type native_handle(); </pre> <p> This function may be used to obtain the underlying representation of the handle. This is intended to allow access to native handle 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-2018 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="lowest_layer_type.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../windows__overlapped_handle.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="native_handle_type.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
nawawi/poedit
deps/boost/doc/html/boost_asio/reference/windows__overlapped_handle/native_handle.html
HTML
mit
3,578
<ul class="nav"> <li class=""> <a href="#/demos" ><i class="icon-book icon-white"></i> Demos</a> </li> </ul>
ListnPlay/socketstream
src/docs/site/header.html
HTML
mit
124
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>basic_stream_socket::local_endpoint (2 of 2 overloads)</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.79.1"> <link rel="home" href="../../../../boost_asio.html" title="Boost.Asio"> <link rel="up" href="../local_endpoint.html" title="basic_stream_socket::local_endpoint"> <link rel="prev" href="overload1.html" title="basic_stream_socket::local_endpoint (1 of 2 overloads)"> <link rel="next" href="../lowest_layer.html" title="basic_stream_socket::lowest_layer"> </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="overload1.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../local_endpoint.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="../lowest_layer.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h5 class="title"> <a name="boost_asio.reference.basic_stream_socket.local_endpoint.overload2"></a><a class="link" href="overload2.html" title="basic_stream_socket::local_endpoint (2 of 2 overloads)">basic_stream_socket::local_endpoint (2 of 2 overloads)</a> </h5></div></div></div> <p> <span class="emphasis"><em>Inherited from basic_socket.</em></span> </p> <p> Get the local endpoint of the socket. </p> <pre class="programlisting">endpoint_type local_endpoint( boost::system::error_code &amp; ec) const; </pre> <p> This function is used to obtain the locally bound endpoint of the socket. </p> <h6> <a name="boost_asio.reference.basic_stream_socket.local_endpoint.overload2.h0"></a> <span class="phrase"><a name="boost_asio.reference.basic_stream_socket.local_endpoint.overload2.parameters"></a></span><a class="link" href="overload2.html#boost_asio.reference.basic_stream_socket.local_endpoint.overload2.parameters">Parameters</a> </h6> <div class="variablelist"> <p class="title"><b></b></p> <dl class="variablelist"> <dt><span class="term">ec</span></dt> <dd><p> Set to indicate what error occurred, if any. </p></dd> </dl> </div> <h6> <a name="boost_asio.reference.basic_stream_socket.local_endpoint.overload2.h1"></a> <span class="phrase"><a name="boost_asio.reference.basic_stream_socket.local_endpoint.overload2.return_value"></a></span><a class="link" href="overload2.html#boost_asio.reference.basic_stream_socket.local_endpoint.overload2.return_value">Return Value</a> </h6> <p> An object that represents the local endpoint of the socket. Returns a default-constructed endpoint object if an error occurred. </p> <h6> <a name="boost_asio.reference.basic_stream_socket.local_endpoint.overload2.h2"></a> <span class="phrase"><a name="boost_asio.reference.basic_stream_socket.local_endpoint.overload2.example"></a></span><a class="link" href="overload2.html#boost_asio.reference.basic_stream_socket.local_endpoint.overload2.example">Example</a> </h6> <pre class="programlisting">boost::asio::ip::tcp::socket socket(io_context); ... boost::system::error_code ec; boost::asio::ip::tcp::endpoint endpoint = socket.local_endpoint(ec); if (ec) { // An error occurred. } </pre> </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-2018 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="overload1.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../local_endpoint.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="../lowest_layer.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
nawawi/poedit
deps/boost/doc/html/boost_asio/reference/basic_stream_socket/local_endpoint/overload2.html
HTML
mit
5,261
<ion-view view-title="二手车买卖" ng-view class="view-slide-in height-100 slide"> <ion-content id="usedCar" class="bgcolor-f6f7f2" has-bouncing="false"> <div class="row"> <a class="tab-item" ng-class="localTab==0?'tab-item-active':''" ng-click="sortChange(0);"> 默认 </a> <a class="tab-item" ng-class="localTab==1?'tab-item-active':''" ng-click="sortChange(1);"> 最新 </a> <a class="tab-item" ng-class="localTab==2?'tab-item-active':''" ng-click="sortChange(2);"> 价格<i class="ion-arrow-up-b" ng-if="true"></i> <!--<i class="ion-arrow-down-b"></i>--> </a> <a class="tab-item" ng-class="localTab==3?'tab-item-active':''" ng-click="sortChange(3);"> 里程少 </a> <a class="tab-item" ng-class="localTab==4?'tab-item-active':''" ng-click="sortChange(4);"> 车龄短 </a> </div> <div class="list"> <a class="item item-thumbnail-left" href="#"> <img src="images/cars/1.jpg"> <h2>时代康瑞H2 </h2> <p class="energized">6.68万</p> <p>2010年/6.00万公里 <span>扬州 江都市</span></p> </a> <a class="item item-thumbnail-left" href="#"> <img src="images/cars/1.jpg"> <h2>时代康瑞H2 </h2> <p class="energized">6.68万</p> <p>2010年/6.00万公里 <span>扬州 江都市</span></p> </a> <a class="item item-thumbnail-left" href="#"> <img src="images/cars/1.jpg"> <h2>时代康瑞H2 </h2> <p class="energized">6.68万</p> <p>2010年/6.00万公里 <span>扬州 江都市</span></p> </a> </div> </ion-content> <div class="position-absolute text-center width-50p height-50p line-height-50p border-radius-5p energized-bg white right-10p bottom-20p">卖车</div> </ion-view>
jack0888/motor-test
motor/www/templates/pages/service/usedCar.html
HTML
mit
2,115
--- layout: post authors: ["Greg Wilson"] title: The Great Licenceathon date: 2013-05-30 time: "10:00:00" category: ["Community"] --- <p> The <a href="http://software.ac.uk">Software Sustainability Institute</a>'s Simon Hettrick writes: </p> <blockquote> Intellectual Property (IP) is a thorny issue in academia, generally because people don't know who owns what. There's a lot of hearsay, rumour and&mdash;frankly&mdash;misunderstanding about IP ownership, so we've decided to run an experiment. And we're going to need some guinea pigs&hellip; <br/> &hellip; <br/> To get a better understanding of how academia deals with IP ownership, we're running The Great Licenceathon. This will see people at different organisations working out who owns their IP. They'll then blog about their experiences and we'll pick through those blogs to see whether there's some common lessons we can learn. <br/> &hellip; <br/> If you want to know who owns your IP, and you have time to ask a few questions at your organisation, then please <a href="mailto:[email protected]">get in touch</a>. </blockquote> <!--more--> <p> I think this information will be extremely useful, not least because we're thinking about adding discussion of licensing and open access to the "day 3" material for our bootcamps. Please check out the <a href="http://www.software.ac.uk/blog/2013-05-30-do-you-know-who-owns-your-intellectual-property">entire blog post</a>, and please do <a href="mailto:[email protected]">get in touch with Simon</a>. </p>
ErinBecker/website
_posts/2013/05/2013-05-30-the-great-licenceathon.html
HTML
mit
1,570
<p> lazy-comp works! </p>
DevIntent/angular-cli
tests/legacy-cli/e2e/assets/7.0-project/src/app/lazy/lazy-comp/lazy-comp.component.html
HTML
mit
28
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Introduction</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="../lambda.html" title="Chapter&#160;16.&#160;Boost.Lambda"> <link rel="prev" href="getting_started.html" title="Getting Started"> <link rel="next" href="using_library.html" title="Using the library"> </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="getting_started.html"><img src="../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../lambda.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="using_library.html"><img src="../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h2 class="title" style="clear: both"> <a name="idp319334672"></a>Introduction</h2></div></div></div> <div class="toc"><dl class="toc"> <dt><span class="section"><a href="s03.html#idp319335344">Motivation</a></span></dt> <dt><span class="section"><a href="s03.html#idp319364288">Introduction to lambda expressions</a></span></dt> </dl></div> <div class="section"> <div class="titlepage"><div><div><h3 class="title"> <a name="idp319335344"></a>Motivation</h3></div></div></div> <p>The Standard Template Library (STL) <a class="xref" href="../lambda.html#cit:stepanov:94" title="The Standard Template Library">[<abbr class="abbrev">STL94</abbr>]</a>, now part of the C++ Standard Library <a class="xref" href="../lambda.html#cit:c++:98" title="International Standard, Programming Languages &#8211; C++">[<abbr class="abbrev">C++98</abbr>]</a>, is a generic container and algorithm library. Typically STL algorithms operate on container elements via <span class="emphasis"><em>function objects</em></span>. These function objects are passed as arguments to the algorithms. </p> <p> Any C++ construct that can be called with the function call syntax is a function object. The STL contains predefined function objects for some common cases (such as <code class="literal">plus</code>, <code class="literal">less</code> and <code class="literal">not1</code>). As an example, one possible implementation for the standard <code class="literal">plus</code> template is: </p> <pre class="programlisting"> template &lt;class T&gt; struct plus : public binary_function&lt;T, T, T&gt; { T operator()(const T&amp; i, const T&amp; j) const { return i + j; } }; </pre> <p> The base class <code class="literal">binary_function&lt;T, T, T&gt;</code> contains typedefs for the argument and return types of the function object, which are needed to make the function object <span class="emphasis"><em>adaptable</em></span>. </p> <p> In addition to the basic function object classes, such as the one above, the STL contains <span class="emphasis"><em>binder</em></span> templates for creating a unary function object from an adaptable binary function object by fixing one of the arguments to a constant value. For example, instead of having to explicitly write a function object class like: </p> <pre class="programlisting"> class plus_1 { int _i; public: plus_1(const int&amp; i) : _i(i) {} int operator()(const int&amp; j) { return _i + j; } }; </pre> <p> the equivalent functionality can be achieved with the <code class="literal">plus</code> template and one of the binder templates (<code class="literal">bind1st</code>). E.g., the following two expressions create function objects with identical functionalities; when invoked, both return the result of adding <code class="literal">1</code> to the argument of the function object: </p> <pre class="programlisting"> plus_1(1) bind1st(plus&lt;int&gt;(), 1) </pre> <p> The subexpression <code class="literal">plus&lt;int&gt;()</code> in the latter line is a binary function object which computes the sum of two integers, and <code class="literal">bind1st</code> invokes this function object partially binding the first argument to <code class="literal">1</code>. As an example of using the above function object, the following code adds <code class="literal">1</code> to each element of some container <code class="literal">a</code> and outputs the results into the standard output stream <code class="literal">cout</code>. </p> <pre class="programlisting"> transform(a.begin(), a.end(), ostream_iterator&lt;int&gt;(cout), bind1st(plus&lt;int&gt;(), 1)); </pre> <p> </p> <p> To make the binder templates more generally applicable, the STL contains <span class="emphasis"><em>adaptors</em></span> for making pointers or references to functions, and pointers to member functions, adaptable. Finally, some STL implementations contain function composition operations as extensions to the standard <a class="xref" href="../lambda.html#cit:sgi:02" title="The SGI Standard Template Library">[<abbr class="abbrev">SGI02</abbr>]</a>. </p> <p> All these tools aim at one goal: to make it possible to specify <span class="emphasis"><em>unnamed functions</em></span> in a call of an STL algorithm, in other words, to pass code fragments as an argument to a function. However, this goal is attained only partially. The simple example above shows that the definition of unnamed functions with the standard tools is cumbersome. Complex expressions involving functors, adaptors, binders and function composition operations tend to be difficult to comprehend. In addition to this, there are significant restrictions in applying the standard tools. E.g. the standard binders allow only one argument of a binary function to be bound; there are no binders for 3-ary, 4-ary etc. functions. </p> <p> The Boost Lambda Library provides solutions for the problems described above: </p> <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Unnamed functions can be created easily with an intuitive syntax. The above example can be written as: </p> <pre class="programlisting"> transform(a.begin(), a.end(), ostream_iterator&lt;int&gt;(cout), 1 + _1); </pre> <p> or even more intuitively: </p> <pre class="programlisting"> for_each(a.begin(), a.end(), cout &lt;&lt; (1 + _1)); </pre> <p> </p> </li> <li class="listitem"><p> Most of the restrictions in argument binding are removed, arbitrary arguments of practically any C++ function can be bound. </p></li> <li class="listitem"><p> Separate function composition operations are not needed, as function composition is supported implicitly. </p></li> </ul></div> <p> </p> </div> <div class="section"> <div class="titlepage"><div><div><h3 class="title"> <a name="idp319364288"></a>Introduction to lambda expressions</h3></div></div></div> <div class="toc"><dl class="toc"> <dt><span class="section"><a href="s03.html#lambda.partial_function_application">Partial function application</a></span></dt> <dt><span class="section"><a href="s03.html#lambda.terminology">Terminology</a></span></dt> </dl></div> <p> Lambda expression are common in functional programming languages. Their syntax varies between languages (and between different forms of lambda calculus), but the basic form of a lambda expressions is: </p> <pre class="programlisting"> lambda x<sub>1</sub> ... x<sub>n</sub>.e </pre> <p> A lambda expression defines an unnamed function and consists of: </p> <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"><p> the parameters of this function: <code class="literal">x<sub>1</sub> ... x<sub>n</sub></code>. </p></li> <li class="listitem"><p>the expression e which computes the value of the function in terms of the parameters <code class="literal">x<sub>1</sub> ... x<sub>n</sub></code>. </p></li> </ul></div> <p> A simple example of a lambda expression is </p> <pre class="programlisting"> lambda x y.x+y </pre> <p> Applying the lambda function means substituting the formal parameters with the actual arguments: </p> <pre class="programlisting"> (lambda x y.x+y) 2 3 = 2 + 3 = 5 </pre> <p> </p> <p> In the C++ version of lambda expressions the <code class="literal">lambda x<sub>1</sub> ... x<sub>n</sub></code> part is missing and the formal parameters have predefined names. In the current version of the library, there are three such predefined formal parameters, called <span class="emphasis"><em>placeholders</em></span>: <code class="literal">_1</code>, <code class="literal">_2</code> and <code class="literal">_3</code>. They refer to the first, second and third argument of the function defined by the lambda expression. For example, the C++ version of the definition </p> <pre class="programlisting">lambda x y.x+y</pre> <p> is </p> <pre class="programlisting">_1 + _2</pre> <p> </p> <p> Hence, there is no syntactic keyword for C++ lambda expressions. The use of a placeholder as an operand implies that the operator invocation is a lambda expression. However, this is true only for operator invocations. Lambda expressions containing function calls, control structures, casts etc. require special syntactic constructs. Most importantly, function calls need to be wrapped inside a <code class="literal">bind</code> function. As an example, consider the lambda expression: </p> <pre class="programlisting">lambda x y.foo(x,y)</pre> <p> Rather than <code class="literal">foo(_1, _2)</code>, the C++ counterpart for this expression is: </p> <pre class="programlisting">bind(foo, _1, _2)</pre> <p> We refer to this type of C++ lambda expressions as <span class="emphasis"><em>bind expressions</em></span>. </p> <p>A lambda expression defines a C++ function object, hence function application syntax is like calling any other function object, for instance: <code class="literal">(_1 + _2)(i, j)</code>. </p> <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="lambda.partial_function_application"></a>Partial function application</h4></div></div></div> <p> A bind expression is in effect a <span class="emphasis"><em>partial function application</em></span>. In partial function application, some of the arguments of a function are bound to fixed values. The result is another function, with possibly fewer arguments. When called with the unbound arguments, this new function invokes the original function with the merged argument list of bound and unbound arguments. </p> </div> <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="lambda.terminology"></a>Terminology</h4></div></div></div> <p> A lambda expression defines a function. A C++ lambda expression concretely constructs a function object, <span class="emphasis"><em>a functor</em></span>, when evaluated. We use the name <span class="emphasis"><em>lambda functor</em></span> to refer to such a function object. Hence, in the terminology adopted here, the result of evaluating a lambda expression is a lambda functor. </p> </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; 1999-2004 Jaakko J&#228;rvi, Gary Powell<p>Use, modification and distribution is subject to the Boost Software License, Version 1.0. (See accompanying file <code class="filename">LICENSE_1_0.txt</code> 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="getting_started.html"><img src="../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../lambda.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="using_library.html"><img src="../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
TyRoXx/cdm
original_sources/boost_1_59_0/doc/html/lambda/s03.html
HTML
mit
13,001
<nav class="reverse offcanvas--top" id="oc-top"> <ul> <li class="primary__brand"><a href="/guide/brand/">Brand</a></li> <li class="primary__grid"><a href="/guide/grid/">Grid</a></li> <li class="primary__elements"><a href="/guide/elements/">Elements</a></li> <li class="primary__components"><a href="/guide/components/">Components</a></li> <li class="primary__modules"><a href="/guide/modules/">Modules</a></li> <li class="primary__templates"><a href="/guide/templates/">Templates</a></li> </ul> </nav> <nav class="reverse offcanvas--right" id="oc-right"> <ul> <li class="primary__brand"><a href="/guide/brand/">Brand</a></li> <li class="primary__grid"><a href="/guide/grid/">Grid</a></li> <li class="primary__elements"><a href="/guide/elements/">Elements</a></li> <li class="primary__components"><a href="/guide/components/">Components</a></li> <li class="primary__modules"><a href="/guide/modules/">Modules</a></li> <li class="primary__templates"><a href="/guide/templates/">Templates</a></li> </ul> </nav> <nav class="reverse offcanvas--bottom" id="oc-bottom"> <ul> <li class="primary__brand"><a href="/guide/brand/">Brand</a></li> <li class="primary__grid"><a href="/guide/grid/">Grid</a></li> <li class="primary__elements"><a href="/guide/elements/">Elements</a></li> <li class="primary__components"><a href="/guide/components/">Components</a></li> <li class="primary__modules"><a href="/guide/modules/">Modules</a></li> <li class="primary__templates"><a href="/guide/templates/">Templates</a></li> </ul> </nav> <nav class="reverse offcanvas--left" id="oc-left"> <ul> <li class="primary__brand"><a href="/guide/brand/">Brand</a></li> <li class="primary__grid"><a href="/guide/grid/">Grid</a></li> <li class="primary__elements"><a href="/guide/elements/">Elements</a></li> <li class="primary__components"><a href="/guide/components/">Components</a></li> <li class="primary__modules"><a href="/guide/modules/">Modules</a></li> <li class="primary__templates"><a href="/guide/templates/">Templates</a></li> </ul> </nav>
louderthanten/livewires
source/templates/_includes/offcanvas.html
HTML
mit
2,086
<!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 Thu Sep 10 12:30:20 NZST 2015 --> <title>weka.core.metastore Class Hierarchy</title> <meta name="date" content="2015-09-10"> <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="weka.core.metastore Class Hierarchy"; } //--> </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> <div class="subNav"> <ul class="navList"> <li><a href="../../../weka/core/matrix/package-tree.html">Prev</a></li> <li><a href="../../../weka/core/neighboursearch/package-tree.html">Next</a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?weka/core/metastore/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 weka.core.metastore</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.Object <ul> <li type="circle">weka.core.metastore.<a href="../../../weka/core/metastore/XMLFileBasedMetaStore.html" title="class in weka.core.metastore"><span class="strong">XMLFileBasedMetaStore</span></a> (implements weka.core.metastore.<a href="../../../weka/core/metastore/MetaStore.html" title="interface in weka.core.metastore">MetaStore</a>)</li> </ul> </li> </ul> <h2 title="Interface Hierarchy">Interface Hierarchy</h2> <ul> <li type="circle">weka.core.metastore.<a href="../../../weka/core/metastore/MetaStore.html" title="interface in weka.core.metastore"><span class="strong">MetaStore</span></a></li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li 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="../../../weka/core/matrix/package-tree.html">Prev</a></li> <li><a href="../../../weka/core/neighboursearch/package-tree.html">Next</a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?weka/core/metastore/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 ======= --> </body> </html>
Ishub/hack-the-talk
weka-3-7-13/doc/weka/core/metastore/package-tree.html
HTML
mit
4,636
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Type definition managed_external_buffer</title> <link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.79.1"> <link rel="home" href="../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> <link rel="up" href="../../interprocess/indexes_reference.html#header.boost.interprocess.managed_external_buffer_hpp" title="Header &lt;boost/interprocess/managed_external_buffer.hpp&gt;"> <link rel="prev" href="basic_managed__idp67012640.html" title="Class template basic_managed_external_buffer"> <link rel="next" href="wmanaged_external_buffer.html" title="Type definition wmanaged_external_buffer"> </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="basic_managed__idp67012640.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../interprocess/indexes_reference.html#header.boost.interprocess.managed_external_buffer_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="wmanaged_external_buffer.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.interprocess.managed_external_buffer"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Type definition managed_external_buffer</span></h2> <p>managed_external_buffer</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="../../interprocess/indexes_reference.html#header.boost.interprocess.managed_external_buffer_hpp" title="Header &lt;boost/interprocess/managed_external_buffer.hpp&gt;">boost/interprocess/managed_external_buffer.hpp</a>&gt; </span> <span class="keyword">typedef</span> <a class="link" href="basic_managed__idp67012640.html" title="Class template basic_managed_external_buffer">basic_managed_external_buffer</a><span class="special">&lt;</span> <span class="keyword">char</span><span class="special">,</span><a class="link" href="rbtree_best_fit.html" title="Class template rbtree_best_fit">rbtree_best_fit</a><span class="special">&lt;</span> <a class="link" href="null_mutex_family.html" title="Struct null_mutex_family">null_mutex_family</a> <span class="special">&gt;</span><span class="special">,</span><a class="link" href="iset_index.html" title="Class template iset_index">iset_index</a> <span class="special">&gt;</span> <span class="identifier">managed_external_buffer</span><span class="special">;</span></pre></div> <div class="refsect1"> <a name="id-1.3.19.17.3.35.5.4"></a><h2>Description</h2> <p>Typedef for a default <a class="link" href="basic_managed__idp67012640.html" title="Class template basic_managed_external_buffer">basic_managed_external_buffer</a> of narrow characters </p> </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; 2005-2015 Ion Gaztanaga<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="basic_managed__idp67012640.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../interprocess/indexes_reference.html#header.boost.interprocess.managed_external_buffer_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="wmanaged_external_buffer.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
vslavik/poedit
deps/boost/doc/html/boost/interprocess/managed_external_buffer.html
HTML
mit
4,984
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Class template basic_record_ostream</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.79.1"> <link rel="home" href="../../index.html" title="Chapter&#160;1.&#160;Boost.Log v2"> <link rel="up" href="../../logging_sources.html#header.boost.log.sources.record_ostream_hpp" title="Header &lt;boost/log/sources/record_ostream.hpp&gt;"> <link rel="prev" href="sources/wlogger_mt.html" title="Class wlogger_mt"> <link rel="next" href="operator_idp50756688.html" title="Function template operator&lt;&lt;"> </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></tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="sources/wlogger_mt.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../logging_sources.html#header.boost.log.sources.record_ostream_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="operator_idp50756688.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.log.basic_record_ostream"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Class template basic_record_ostream</span></h2> <p>boost::log::basic_record_ostream &#8212; Logging record adapter with a streaming capability. </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="../../logging_sources.html#header.boost.log.sources.record_ostream_hpp" title="Header &lt;boost/log/sources/record_ostream.hpp&gt;">boost/log/sources/record_ostream.hpp</a>&gt; </span><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> CharT<span class="special">&gt;</span> <span class="keyword">class</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">:</span> <span class="keyword">public</span> <span class="identifier">basic_formatting_ostream</span><span class="special">&lt;</span> <span class="identifier">CharT</span> <span class="special">&gt;</span> <span class="special">{</span> <span class="keyword">public</span><span class="special">:</span> <span class="comment">// types</span> <span class="keyword">typedef</span> <span class="identifier">CharT</span> <a name="boost.log.basic_record_ostream.char_type"></a><span class="identifier">char_type</span><span class="special">;</span> <span class="comment">// Character type. </span> <span class="keyword">typedef</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">basic_string</span><span class="special">&lt;</span> <span class="identifier">char_type</span> <span class="special">&gt;</span> <a name="boost.log.basic_record_ostream.string_type"></a><span class="identifier">string_type</span><span class="special">;</span> <span class="comment">// String type to be used as a message text holder. </span> <span class="keyword">typedef</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">basic_ostream</span><span class="special">&lt;</span> <span class="identifier">char_type</span> <span class="special">&gt;</span> <a name="boost.log.basic_record_ostream.stream_type"></a><span class="identifier">stream_type</span><span class="special">;</span> <span class="comment">// Stream type. </span> <span class="keyword">typedef</span> <span class="identifier">base_type</span><span class="special">::</span><span class="identifier">traits_type</span> <a name="boost.log.basic_record_ostream.traits_type"></a><span class="identifier">traits_type</span><span class="special">;</span> <span class="comment">// Character traits. </span> <span class="comment">// <a class="link" href="basic_record_ostream.html#boost.log.basic_record_ostreamconstruct-copy-destruct">construct/copy/destruct</a></span> <a class="link" href="basic_record_ostream.html#idp50741440-bb"><span class="identifier">basic_record_ostream</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">noexcept</span><span class="special">;</span> <span class="keyword">explicit</span> <a class="link" href="basic_record_ostream.html#idp50743552-bb"><span class="identifier">basic_record_ostream</span></a><span class="special">(</span><span class="identifier">record</span> <span class="special">&amp;</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html#idp50750128-bb"><span class="identifier">basic_record_ostream</span></a><span class="special">(</span><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="keyword">const</span> <span class="special">&amp;</span><span class="special">)</span> <span class="special">=</span> <span class="keyword">delete</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50751664-bb"><span class="keyword">operator</span><span class="special">=</span></a><span class="special">(</span><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="keyword">const</span> <span class="special">&amp;</span><span class="special">)</span> <span class="special">=</span> <span class="keyword">delete</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html#idp50747408-bb"><span class="special">~</span><span class="identifier">basic_record_ostream</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span> <span class="comment">// <a class="link" href="basic_record_ostream.html#idp50676128-bb">public member functions</a></span> <span class="keyword">explicit</span> <a class="link" href="basic_record_ostream.html#idp50676688-bb"><span class="keyword">operator</span> <span class="keyword">bool</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span> <span class="keyword">noexcept</span><span class="special">;</span> <span class="keyword">bool</span> <a class="link" href="basic_record_ostream.html#idp50680096-bb"><span class="keyword">operator</span><span class="special">!</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span> <span class="keyword">noexcept</span><span class="special">;</span> <span class="identifier">record</span> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50683232-bb"><span class="identifier">get_record</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span> <span class="identifier">record</span> <span class="keyword">const</span> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50685312-bb"><span class="identifier">get_record</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span> <span class="keyword">void</span> <a class="link" href="basic_record_ostream.html#idp50687664-bb"><span class="identifier">attach_record</span></a><span class="special">(</span><span class="identifier">record</span> <span class="special">&amp;</span><span class="special">)</span><span class="special">;</span> <span class="keyword">void</span> <a class="link" href="basic_record_ostream.html#idp50690480-bb"><span class="identifier">detach_from_record</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">noexcept</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50691952-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="keyword">typename</span> <span class="identifier">base_type</span><span class="special">::</span><span class="identifier">ios_base_manip</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50693792-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="keyword">typename</span> <span class="identifier">base_type</span><span class="special">::</span><span class="identifier">basic_ios_manip</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50695632-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="keyword">typename</span> <span class="identifier">base_type</span><span class="special">::</span><span class="identifier">stream_manip</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50697472-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="keyword">char</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50699296-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="keyword">const</span> <span class="keyword">char</span> <span class="special">*</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50701120-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="keyword">wchar_t</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50702944-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="keyword">const</span> <span class="keyword">wchar_t</span> <span class="special">*</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50704768-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="keyword">char16_t</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50706592-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="keyword">const</span> <span class="keyword">char16_t</span> <span class="special">*</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50708416-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="keyword">char32_t</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50710240-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="keyword">const</span> <span class="keyword">char32_t</span> <span class="special">*</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50712064-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="keyword">bool</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50713888-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="keyword">signed</span> <span class="keyword">char</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50715712-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">char</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50717536-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="keyword">short</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50719360-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">short</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50721184-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="keyword">int</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50723008-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50724832-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="keyword">long</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50726656-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">long</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50728480-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="keyword">long</span> <span class="keyword">long</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50730304-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">long</span> <span class="keyword">long</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50732128-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="keyword">float</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50733952-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="keyword">double</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50735776-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="keyword">long</span> <span class="keyword">double</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50737600-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="keyword">const</span> <span class="keyword">void</span> <span class="special">*</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a class="link" href="basic_record_ostream.html#idp50739424-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">basic_streambuf</span><span class="special">&lt;</span> <span class="identifier">char_type</span><span class="special">,</span> <span class="identifier">traits_type</span> <span class="special">&gt;</span> <span class="special">*</span><span class="special">)</span><span class="special">;</span> <span class="comment">// <a class="link" href="basic_record_ostream.html#idp50748208-bb">private member functions</a></span> <span class="keyword">void</span> <a class="link" href="basic_record_ostream.html#idp50748784-bb"><span class="identifier">init_stream</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span> <span class="special">}</span><span class="special">;</span></pre></div> <div class="refsect1"> <a name="idp111509712"></a><h2>Description</h2> <p>This class allows to compose the logging record message by streaming operations. It aggregates the log record and provides the standard output stream interface. </p> <div class="refsect2"> <a name="idp111510560"></a><h3> <a name="boost.log.basic_record_ostreamconstruct-copy-destruct"></a><code class="computeroutput">basic_record_ostream</code> public construct/copy/destruct</h3> <div class="orderedlist"><ol class="orderedlist" type="1"> <li class="listitem"> <pre class="literallayout"><a name="idp50741440-bb"></a><span class="identifier">basic_record_ostream</span><span class="special">(</span><span class="special">)</span> <span class="keyword">noexcept</span><span class="special">;</span></pre> <p>Default constructor. Creates an empty record that is equivalent to the invalid record handle. The stream capability is not available after construction.</p> <p> </p> <div class="variablelist"><table border="0" class="variablelist compact"> <colgroup> <col align="left" valign="top"> <col> </colgroup> <tbody><tr> <td><p><span class="term">Postconditions:</span></p></td> <td><p><code class="computeroutput">!*this == true</code> </p></td> </tr></tbody> </table></div> </li> <li class="listitem"> <pre class="literallayout"><span class="keyword">explicit</span> <a name="idp50743552-bb"></a><span class="identifier">basic_record_ostream</span><span class="special">(</span><span class="identifier">record</span> <span class="special">&amp;</span> rec<span class="special">)</span><span class="special">;</span></pre> <p>Constructor from a record object. Attaches to the provided record.</p> <p> </p> <div class="variablelist"><table border="0" class="variablelist compact"> <colgroup> <col align="left" valign="top"> <col> </colgroup> <tbody> <tr> <td><p><span class="term">Parameters:</span></p></td> <td><div class="variablelist"><table border="0" class="variablelist compact"> <colgroup> <col align="left" valign="top"> <col> </colgroup> <tbody><tr> <td><p><span class="term"><code class="computeroutput">rec</code></span></p></td> <td><p>The record handle being attached to </p></td> </tr></tbody> </table></div></td> </tr> <tr> <td><p><span class="term">Requires:</span></p></td> <td><p><code class="computeroutput">!!rec == true</code> </p></td> </tr> <tr> <td><p><span class="term">Postconditions:</span></p></td> <td><p><code class="computeroutput">&amp;this-&gt;get_record() == &amp;rec</code> </p></td> </tr> </tbody> </table></div> </li> <li class="listitem"><pre class="literallayout"><a name="idp50750128-bb"></a><span class="identifier">basic_record_ostream</span><span class="special">(</span><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="keyword">const</span> <span class="special">&amp;</span><span class="special">)</span> <span class="special">=</span> <span class="keyword">delete</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50751664-bb"></a><span class="keyword">operator</span><span class="special">=</span><span class="special">(</span><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="keyword">const</span> <span class="special">&amp;</span><span class="special">)</span> <span class="special">=</span> <span class="keyword">delete</span><span class="special">;</span></pre></li> <li class="listitem"> <pre class="literallayout"><a name="idp50747408-bb"></a><span class="special">~</span><span class="identifier">basic_record_ostream</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre> <p>Destructor. Destroys the record, releases any sinks and attribute values that were involved in processing this record. </p> </li> </ol></div> </div> <div class="refsect2"> <a name="idp111552288"></a><h3> <a name="idp50676128-bb"></a><code class="computeroutput">basic_record_ostream</code> public member functions</h3> <div class="orderedlist"><ol class="orderedlist" type="1"> <li class="listitem"> <pre class="literallayout"><span class="keyword">explicit</span> <a name="idp50676688-bb"></a><span class="keyword">operator</span> <span class="keyword">bool</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span> <span class="keyword">noexcept</span><span class="special">;</span></pre> <p>Conversion to an unspecified boolean type</p> <p> </p> <div class="variablelist"><table border="0" class="variablelist compact"> <colgroup> <col align="left" valign="top"> <col> </colgroup> <tbody><tr> <td><p><span class="term">Returns:</span></p></td> <td><p><code class="computeroutput">true</code>, if stream is valid and ready for formatting, <code class="computeroutput">false</code>, if the stream is not valid. The latter also applies to the case when the stream is not attached to a log record. </p></td> </tr></tbody> </table></div> </li> <li class="listitem"> <pre class="literallayout"><span class="keyword">bool</span> <a name="idp50680096-bb"></a><span class="keyword">operator</span><span class="special">!</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span> <span class="keyword">noexcept</span><span class="special">;</span></pre> <p>Inverted conversion to an unspecified boolean type</p> <p> </p> <div class="variablelist"><table border="0" class="variablelist compact"> <colgroup> <col align="left" valign="top"> <col> </colgroup> <tbody><tr> <td><p><span class="term">Returns:</span></p></td> <td><p><code class="computeroutput">false</code>, if stream is valid and ready for formatting, <code class="computeroutput">true</code>, if the stream is not valid. The latter also applies to the case when the stream is not attached to a log record. </p></td> </tr></tbody> </table></div> </li> <li class="listitem"> <pre class="literallayout"><span class="identifier">record</span> <span class="special">&amp;</span> <a name="idp50683232-bb"></a><span class="identifier">get_record</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre> <p>Flushes internal buffers to complete all pending formatting operations and returns the aggregated log record</p> <p> </p> <div class="variablelist"><table border="0" class="variablelist compact"> <colgroup> <col align="left" valign="top"> <col> </colgroup> <tbody><tr> <td><p><span class="term">Returns:</span></p></td> <td><p>The aggregated record object </p></td> </tr></tbody> </table></div> </li> <li class="listitem"> <pre class="literallayout"><span class="identifier">record</span> <span class="keyword">const</span> <span class="special">&amp;</span> <a name="idp50685312-bb"></a><span class="identifier">get_record</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre> <p>Flushes internal buffers to complete all pending formatting operations and returns the aggregated log record</p> <p> </p> <div class="variablelist"><table border="0" class="variablelist compact"> <colgroup> <col align="left" valign="top"> <col> </colgroup> <tbody><tr> <td><p><span class="term">Returns:</span></p></td> <td><p>The aggregated record object </p></td> </tr></tbody> </table></div> </li> <li class="listitem"> <pre class="literallayout"><span class="keyword">void</span> <a name="idp50687664-bb"></a><span class="identifier">attach_record</span><span class="special">(</span><span class="identifier">record</span> <span class="special">&amp;</span> rec<span class="special">)</span><span class="special">;</span></pre> <p>If the stream is attached to a log record, flushes internal buffers to complete all pending formatting operations. Then reattaches the stream to another log record.</p> <p> </p> <div class="variablelist"><table border="0" class="variablelist compact"> <colgroup> <col align="left" valign="top"> <col> </colgroup> <tbody><tr> <td><p><span class="term">Parameters:</span></p></td> <td><div class="variablelist"><table border="0" class="variablelist compact"> <colgroup> <col align="left" valign="top"> <col> </colgroup> <tbody><tr> <td><p><span class="term"><code class="computeroutput">rec</code></span></p></td> <td><p>New log record to attach to </p></td> </tr></tbody> </table></div></td> </tr></tbody> </table></div> </li> <li class="listitem"> <pre class="literallayout"><span class="keyword">void</span> <a name="idp50690480-bb"></a><span class="identifier">detach_from_record</span><span class="special">(</span><span class="special">)</span> <span class="keyword">noexcept</span><span class="special">;</span></pre>The function resets the stream into a detached (default initialized) state. </li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50691952-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="keyword">typename</span> <span class="identifier">base_type</span><span class="special">::</span><span class="identifier">ios_base_manip</span> manip<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50693792-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="keyword">typename</span> <span class="identifier">base_type</span><span class="special">::</span><span class="identifier">basic_ios_manip</span> manip<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50695632-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="keyword">typename</span> <span class="identifier">base_type</span><span class="special">::</span><span class="identifier">stream_manip</span> manip<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50697472-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="keyword">char</span> c<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50699296-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="keyword">const</span> <span class="keyword">char</span> <span class="special">*</span> p<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50701120-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="keyword">wchar_t</span> c<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50702944-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="keyword">const</span> <span class="keyword">wchar_t</span> <span class="special">*</span> p<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50704768-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="keyword">char16_t</span> c<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50706592-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="keyword">const</span> <span class="keyword">char16_t</span> <span class="special">*</span> p<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50708416-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="keyword">char32_t</span> c<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50710240-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="keyword">const</span> <span class="keyword">char32_t</span> <span class="special">*</span> p<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50712064-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="keyword">bool</span> value<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50713888-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="keyword">signed</span> <span class="keyword">char</span> value<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50715712-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">char</span> value<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50717536-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="keyword">short</span> value<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50719360-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">short</span> value<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50721184-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="keyword">int</span> value<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50723008-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">int</span> value<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50724832-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="keyword">long</span> value<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50726656-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">long</span> value<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50728480-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="keyword">long</span> <span class="keyword">long</span> value<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50730304-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="keyword">long</span> <span class="keyword">long</span> value<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50732128-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="keyword">float</span> value<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50733952-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="keyword">double</span> value<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50735776-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="keyword">long</span> <span class="keyword">double</span> value<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50737600-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="keyword">const</span> <span class="keyword">void</span> <span class="special">*</span> value<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><a class="link" href="basic_record_ostream.html" title="Class template basic_record_ostream">basic_record_ostream</a> <span class="special">&amp;</span> <a name="idp50739424-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">basic_streambuf</span><span class="special">&lt;</span> <span class="identifier">char_type</span><span class="special">,</span> <span class="identifier">traits_type</span> <span class="special">&gt;</span> <span class="special">*</span> buf<span class="special">)</span><span class="special">;</span></pre></li> </ol></div> </div> <div class="refsect2"> <a name="idp111799616"></a><h3> <a name="idp50748208-bb"></a><code class="computeroutput">basic_record_ostream</code> private member functions</h3> <div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"> <pre class="literallayout"><span class="keyword">void</span> <a name="idp50748784-bb"></a><span class="identifier">init_stream</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre>The function initializes the stream and the stream buffer. </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; 2007-2016 Andrey Semashev<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="sources/wlogger_mt.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../logging_sources.html#header.boost.log.sources.record_ostream_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="operator_idp50756688.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
nawawi/poedit
deps/boost/libs/log/doc/html/boost/log/basic_record_ostream.html
HTML
mit
45,751
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>io_service::work::get_io_service</title> <link rel="stylesheet" href="../../../boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.75.2"> <link rel="home" href="../../../index.html" title="Asio"> <link rel="up" href="../io_service__work.html" title="io_service::work"> <link rel="prev" href="../io_service__work.html" title="io_service::work"> <link rel="next" href="work.html" title="io_service::work::work"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr><td valign="top"><img alt="asio C++ library" width="250" height="60" src="../../../asio.png"></td></tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="../io_service__work.html"><img src="../../../prev.png" alt="Prev"></a><a accesskey="u" href="../io_service__work.html"><img src="../../../up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../home.png" alt="Home"></a><a accesskey="n" href="work.html"><img src="../../../next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="asio.reference.io_service__work.get_io_service"></a><a class="link" href="get_io_service.html" title="io_service::work::get_io_service">io_service::work::get_io_service</a> </h4></div></div></div> <p> <a class="indexterm" name="idm119132"></a> Get the <a class="link" href="../io_service.html" title="io_service"><code class="computeroutput"><span class="identifier">io_service</span></code></a> associated with the work. </p> <pre class="programlisting"><span class="identifier">asio</span><span class="special">::</span><span class="identifier">io_service</span> <span class="special">&amp;</span> <span class="identifier">get_io_service</span><span class="special">();</span> </pre> </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-2016 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="../io_service__work.html"><img src="../../../prev.png" alt="Prev"></a><a accesskey="u" href="../io_service__work.html"><img src="../../../up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../home.png" alt="Home"></a><a accesskey="n" href="work.html"><img src="../../../next.png" alt="Next"></a> </div> </body> </html>
peersio/peerconnect
src/libs/asio/doc/asio/reference/io_service__work/get_io_service.html
HTML
mit
2,865
<!DOCTYPE html> <html lang="en" dir="rtl"> <head> <meta charset="utf-8"> <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="mobile-web-app-capable" content="yes"> <meta name="msapplication-tap-highlight" content="no"> <title>ChocolateChip-UI Android</title> <link rel="stylesheet" href="../chui/chui-android-3.9.2.css"> <script src="http://code.jquery.com/jquery-2.1.4.min.js"></script> <script src="../chui/chui-3.9.2.js"></script> <script> $(function() { }); </script> </head> <body> <nav data-nav-for='main'> <h1>قائمة مركبة</h1> </nav> <article id='main'> <section> <ul class='list'> <li class='comp' data-goto='people'> <div> <h3>الأشخاص</h3> <h4>الأصدقاء</h4> </div> <aside> <span class='nav'></span> </aside> </li> <li class='comp' data-goto='places'> <div> <h3>المكان</h3> <h4>وجهة مثيرة للاهتمام</h4> </div> <aside> <span class='nav'></span> </aside> </li> <li class='comp' data-goto='animals'> <div> <h3>حيوانات</h3> <h4>جميع أنحاء العالم</h4> </div> <aside> <span class='nav'></span> </aside> </li> <li class='comp' data-goto='cooking'> <div> <h3>طبخ</h3> <h4>وصفات</h4> </div> <aside> <span class='nav'></span> </aside> </li> <li class='comp' data-goto='food'> <div> <h3>طعام</h3> <h4>المطاعم</h4> </div> <aside> <span class='nav'></span> </aside> </li> </ul> </section> </article> </body> </html>
tranc99/chocolatechip-ui
rtl-examples-android/list-composite-1.html
HTML
mit
2,041
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>Font Face Demo</title> <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8"> <style type="text/css" media="screen"> h1.fontface {font: 60px/68px 'CaviarDreamsRegular', Arial, sans-serif;letter-spacing: 0;} p.style1 {font: 18px/27px 'CaviarDreamsItalic', Arial, sans-serif;} p.style2 {font: 18px/27px 'CaviarDreamsBoldItalic', Arial, sans-serif;} p.style3 {font: 18px/27px 'CaviarDreamsRegular', Arial, sans-serif;} p.style4 {font: 18px/27px 'CaviarDreamsBold', Arial, sans-serif;} #container { width: 800px; margin-left: auto; margin-right: auto; } </style> </head> <body> <div id="container"> <h1 class="fontface">Font-face Demo for the Caviar Dreams Font</h1> <p class="style1">Caviar Dreams Italic - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p> <p class="style2">Caviar Dreams Bold Italic - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p> <p class="style3">Caviar Dreams Regular - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p> <p class="style4">Caviar Dreams Bold - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p> </div> </body> </html>
tairemad/customCMS
site3/assets/Caviar-Dreams-fontfacekit/demo.html
HTML
mit
3,009
@* * Copyright 2015 Yahoo Inc. Licensed under the Apache License, Version 2.0 * See accompanying LICENSE file. *@ @import scalaz.{\/} @(cluster: String, errorOrForm: kafka.manager.ApiError \/ (Form[models.form.CreateTopic], kafka.manager.model.ClusterContext) )(implicit af: features.ApplicationFeatures, messages: play.api.i18n.Messages, menus: models.navigation.Menus) @import helper._ @import b3.vertical.fieldConstructor @import controllers.routes @theMenu = { @views.html.navigation.clusterMenu(cluster,"Topic","Create",menus.clusterMenus(cluster)( errorOrForm.toOption.map(_._2.clusterFeatures).getOrElse(kafka.manager.features.ClusterFeatures.default))) } @renderForm(createTopicForm: Form[models.form.CreateTopic]) = { <div class="panel-body"> @b3.form(routes.Topic.handleCreateTopic(cluster)) { <table class="table"> <tbody> <tr> <td> @b3.text(createTopicForm("topic"), '_label -> "Topic", 'placeholder -> "", 'autofocus -> true ) @b3.text(createTopicForm("partitions"), '_label -> "Partitions", 'placeholder -> "8") @b3.text(createTopicForm("replication"), '_label -> "Replication Factor", 'placeholder -> "3") @b3.submit('class -> "submit-button btn btn-primary"){ Create } <a href="@routes.Topic.topics(cluster)" class="cancel-button btn btn-default" role="button">Cancel</a> </td> <td> @helper.repeat(createTopicForm("configs"), min = 1) { configsForm => @b3.hidden(configsForm("name").name, configsForm("name").value.getOrElse("")) @b3.text(configsForm("value"), '_label -> configsForm("name").value.getOrElse("")) } </td> </tr> </tbody> </table> } </div> } @main( "Create Topic", menu = theMenu, breadcrumbs=views.html.navigation.breadCrumbs(models.navigation.BreadCrumbs.withViewAndCluster("Create Topic",cluster))) { <div class="col-md-6 un-pad-me"> <div class="panel panel-default"> <div class="panel-heading"><h3><button type="button" class="btn btn-link" onclick="goBack()"><span class="glyphicon glyphicon-arrow-left" aria-hidden="true"></span></button>Create Topic</h3></div> @errorOrForm.fold( views.html.errors.onApiError(_), t => renderForm(t._1)) </div> </div> }
krux/kafka-manager
app/views/topic/createTopic.scala.html
HTML
apache-2.0
2,422
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <title>Source code</title> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> </head> <body> <div class="sourceContainer"> <pre><span class="sourceLineNo">001</span>/**<a name="line.1"></a> <span class="sourceLineNo">002</span> * Licensed to the Apache Software Foundation (ASF) under one<a name="line.2"></a> <span class="sourceLineNo">003</span> * or more contributor license agreements. See the NOTICE file<a name="line.3"></a> <span class="sourceLineNo">004</span> * distributed with this work for additional information<a name="line.4"></a> <span class="sourceLineNo">005</span> * regarding copyright ownership. The ASF licenses this file<a name="line.5"></a> <span class="sourceLineNo">006</span> * to you under the Apache License, Version 2.0 (the<a name="line.6"></a> <span class="sourceLineNo">007</span> * "License"); you may not use this file except in compliance<a name="line.7"></a> <span class="sourceLineNo">008</span> * with the License. You may obtain a copy of the License at<a name="line.8"></a> <span class="sourceLineNo">009</span> *<a name="line.9"></a> <span class="sourceLineNo">010</span> * http://www.apache.org/licenses/LICENSE-2.0<a name="line.10"></a> <span class="sourceLineNo">011</span> *<a name="line.11"></a> <span class="sourceLineNo">012</span> * Unless required by applicable law or agreed to in writing, software<a name="line.12"></a> <span class="sourceLineNo">013</span> * distributed under the License is distributed on an "AS IS" BASIS,<a name="line.13"></a> <span class="sourceLineNo">014</span> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.<a name="line.14"></a> <span class="sourceLineNo">015</span> * See the License for the specific language governing permissions and<a name="line.15"></a> <span class="sourceLineNo">016</span> * limitations under the License.<a name="line.16"></a> <span class="sourceLineNo">017</span> */<a name="line.17"></a> <span class="sourceLineNo">018</span><a name="line.18"></a> <span class="sourceLineNo">019</span>package org.apache.hadoop.fs;<a name="line.19"></a> <span class="sourceLineNo">020</span><a name="line.20"></a> <span class="sourceLineNo">021</span>import java.io.EOFException;<a name="line.21"></a> <span class="sourceLineNo">022</span>import java.io.FileNotFoundException;<a name="line.22"></a> <span class="sourceLineNo">023</span>import java.io.IOException;<a name="line.23"></a> <span class="sourceLineNo">024</span>import java.io.InputStream;<a name="line.24"></a> <span class="sourceLineNo">025</span>import java.nio.channels.ClosedChannelException;<a name="line.25"></a> <span class="sourceLineNo">026</span>import java.util.Arrays;<a name="line.26"></a> <span class="sourceLineNo">027</span><a name="line.27"></a> <span class="sourceLineNo">028</span>import org.apache.hadoop.classification.InterfaceAudience;<a name="line.28"></a> <span class="sourceLineNo">029</span>import org.apache.hadoop.classification.InterfaceStability;<a name="line.29"></a> <span class="sourceLineNo">030</span>import org.apache.hadoop.conf.Configuration;<a name="line.30"></a> <span class="sourceLineNo">031</span>import org.apache.hadoop.fs.permission.FsPermission;<a name="line.31"></a> <span class="sourceLineNo">032</span>import org.apache.hadoop.util.DataChecksum;<a name="line.32"></a> <span class="sourceLineNo">033</span>import org.apache.hadoop.util.Progressable;<a name="line.33"></a> <span class="sourceLineNo">034</span><a name="line.34"></a> <span class="sourceLineNo">035</span>/****************************************************************<a name="line.35"></a> <span class="sourceLineNo">036</span> * Abstract Checksumed FileSystem.<a name="line.36"></a> <span class="sourceLineNo">037</span> * It provide a basic implementation of a Checksumed FileSystem,<a name="line.37"></a> <span class="sourceLineNo">038</span> * which creates a checksum file for each raw file.<a name="line.38"></a> <span class="sourceLineNo">039</span> * It generates &amp; verifies checksums at the client side.<a name="line.39"></a> <span class="sourceLineNo">040</span> *<a name="line.40"></a> <span class="sourceLineNo">041</span> *****************************************************************/<a name="line.41"></a> <span class="sourceLineNo">042</span>@InterfaceAudience.Public<a name="line.42"></a> <span class="sourceLineNo">043</span>@InterfaceStability.Stable<a name="line.43"></a> <span class="sourceLineNo">044</span>public abstract class ChecksumFileSystem extends FilterFileSystem {<a name="line.44"></a> <span class="sourceLineNo">045</span> private static final byte[] CHECKSUM_VERSION = new byte[] {'c', 'r', 'c', 0};<a name="line.45"></a> <span class="sourceLineNo">046</span> private int bytesPerChecksum = 512;<a name="line.46"></a> <span class="sourceLineNo">047</span> private boolean verifyChecksum = true;<a name="line.47"></a> <span class="sourceLineNo">048</span> private boolean writeChecksum = true;<a name="line.48"></a> <span class="sourceLineNo">049</span><a name="line.49"></a> <span class="sourceLineNo">050</span> public static double getApproxChkSumLength(long size) {<a name="line.50"></a> <span class="sourceLineNo">051</span> return ChecksumFSOutputSummer.CHKSUM_AS_FRACTION * size;<a name="line.51"></a> <span class="sourceLineNo">052</span> }<a name="line.52"></a> <span class="sourceLineNo">053</span> <a name="line.53"></a> <span class="sourceLineNo">054</span> public ChecksumFileSystem(FileSystem fs) {<a name="line.54"></a> <span class="sourceLineNo">055</span> super(fs);<a name="line.55"></a> <span class="sourceLineNo">056</span> }<a name="line.56"></a> <span class="sourceLineNo">057</span><a name="line.57"></a> <span class="sourceLineNo">058</span> @Override<a name="line.58"></a> <span class="sourceLineNo">059</span> public void setConf(Configuration conf) {<a name="line.59"></a> <span class="sourceLineNo">060</span> super.setConf(conf);<a name="line.60"></a> <span class="sourceLineNo">061</span> if (conf != null) {<a name="line.61"></a> <span class="sourceLineNo">062</span> bytesPerChecksum = conf.getInt(LocalFileSystemConfigKeys.LOCAL_FS_BYTES_PER_CHECKSUM_KEY,<a name="line.62"></a> <span class="sourceLineNo">063</span> LocalFileSystemConfigKeys.LOCAL_FS_BYTES_PER_CHECKSUM_DEFAULT);<a name="line.63"></a> <span class="sourceLineNo">064</span> }<a name="line.64"></a> <span class="sourceLineNo">065</span> }<a name="line.65"></a> <span class="sourceLineNo">066</span> <a name="line.66"></a> <span class="sourceLineNo">067</span> /**<a name="line.67"></a> <span class="sourceLineNo">068</span> * Set whether to verify checksum.<a name="line.68"></a> <span class="sourceLineNo">069</span> */<a name="line.69"></a> <span class="sourceLineNo">070</span> @Override<a name="line.70"></a> <span class="sourceLineNo">071</span> public void setVerifyChecksum(boolean verifyChecksum) {<a name="line.71"></a> <span class="sourceLineNo">072</span> this.verifyChecksum = verifyChecksum;<a name="line.72"></a> <span class="sourceLineNo">073</span> }<a name="line.73"></a> <span class="sourceLineNo">074</span><a name="line.74"></a> <span class="sourceLineNo">075</span> @Override<a name="line.75"></a> <span class="sourceLineNo">076</span> public void setWriteChecksum(boolean writeChecksum) {<a name="line.76"></a> <span class="sourceLineNo">077</span> this.writeChecksum = writeChecksum;<a name="line.77"></a> <span class="sourceLineNo">078</span> }<a name="line.78"></a> <span class="sourceLineNo">079</span> <a name="line.79"></a> <span class="sourceLineNo">080</span> /** get the raw file system */<a name="line.80"></a> <span class="sourceLineNo">081</span> @Override<a name="line.81"></a> <span class="sourceLineNo">082</span> public FileSystem getRawFileSystem() {<a name="line.82"></a> <span class="sourceLineNo">083</span> return fs;<a name="line.83"></a> <span class="sourceLineNo">084</span> }<a name="line.84"></a> <span class="sourceLineNo">085</span><a name="line.85"></a> <span class="sourceLineNo">086</span> /** Return the name of the checksum file associated with a file.*/<a name="line.86"></a> <span class="sourceLineNo">087</span> public Path getChecksumFile(Path file) {<a name="line.87"></a> <span class="sourceLineNo">088</span> return new Path(file.getParent(), "." + file.getName() + ".crc");<a name="line.88"></a> <span class="sourceLineNo">089</span> }<a name="line.89"></a> <span class="sourceLineNo">090</span><a name="line.90"></a> <span class="sourceLineNo">091</span> /** Return true iff file is a checksum file name.*/<a name="line.91"></a> <span class="sourceLineNo">092</span> public static boolean isChecksumFile(Path file) {<a name="line.92"></a> <span class="sourceLineNo">093</span> String name = file.getName();<a name="line.93"></a> <span class="sourceLineNo">094</span> return name.startsWith(".") &amp;&amp; name.endsWith(".crc");<a name="line.94"></a> <span class="sourceLineNo">095</span> }<a name="line.95"></a> <span class="sourceLineNo">096</span><a name="line.96"></a> <span class="sourceLineNo">097</span> /** Return the length of the checksum file given the size of the <a name="line.97"></a> <span class="sourceLineNo">098</span> * actual file.<a name="line.98"></a> <span class="sourceLineNo">099</span> **/<a name="line.99"></a> <span class="sourceLineNo">100</span> public long getChecksumFileLength(Path file, long fileSize) {<a name="line.100"></a> <span class="sourceLineNo">101</span> return getChecksumLength(fileSize, getBytesPerSum());<a name="line.101"></a> <span class="sourceLineNo">102</span> }<a name="line.102"></a> <span class="sourceLineNo">103</span><a name="line.103"></a> <span class="sourceLineNo">104</span> /** Return the bytes Per Checksum */<a name="line.104"></a> <span class="sourceLineNo">105</span> public int getBytesPerSum() {<a name="line.105"></a> <span class="sourceLineNo">106</span> return bytesPerChecksum;<a name="line.106"></a> <span class="sourceLineNo">107</span> }<a name="line.107"></a> <span class="sourceLineNo">108</span><a name="line.108"></a> <span class="sourceLineNo">109</span> private int getSumBufferSize(int bytesPerSum, int bufferSize) {<a name="line.109"></a> <span class="sourceLineNo">110</span> int defaultBufferSize = getConf().getInt(<a name="line.110"></a> <span class="sourceLineNo">111</span> LocalFileSystemConfigKeys.LOCAL_FS_STREAM_BUFFER_SIZE_KEY,<a name="line.111"></a> <span class="sourceLineNo">112</span> LocalFileSystemConfigKeys.LOCAL_FS_STREAM_BUFFER_SIZE_DEFAULT);<a name="line.112"></a> <span class="sourceLineNo">113</span> int proportionalBufferSize = bufferSize / bytesPerSum;<a name="line.113"></a> <span class="sourceLineNo">114</span> return Math.max(bytesPerSum,<a name="line.114"></a> <span class="sourceLineNo">115</span> Math.max(proportionalBufferSize, defaultBufferSize));<a name="line.115"></a> <span class="sourceLineNo">116</span> }<a name="line.116"></a> <span class="sourceLineNo">117</span><a name="line.117"></a> <span class="sourceLineNo">118</span> /*******************************************************<a name="line.118"></a> <span class="sourceLineNo">119</span> * For open()'s FSInputStream<a name="line.119"></a> <span class="sourceLineNo">120</span> * It verifies that data matches checksums.<a name="line.120"></a> <span class="sourceLineNo">121</span> *******************************************************/<a name="line.121"></a> <span class="sourceLineNo">122</span> private static class ChecksumFSInputChecker extends FSInputChecker {<a name="line.122"></a> <span class="sourceLineNo">123</span> private ChecksumFileSystem fs;<a name="line.123"></a> <span class="sourceLineNo">124</span> private FSDataInputStream datas;<a name="line.124"></a> <span class="sourceLineNo">125</span> private FSDataInputStream sums;<a name="line.125"></a> <span class="sourceLineNo">126</span> <a name="line.126"></a> <span class="sourceLineNo">127</span> private static final int HEADER_LENGTH = 8;<a name="line.127"></a> <span class="sourceLineNo">128</span> <a name="line.128"></a> <span class="sourceLineNo">129</span> private int bytesPerSum = 1;<a name="line.129"></a> <span class="sourceLineNo">130</span> <a name="line.130"></a> <span class="sourceLineNo">131</span> public ChecksumFSInputChecker(ChecksumFileSystem fs, Path file)<a name="line.131"></a> <span class="sourceLineNo">132</span> throws IOException {<a name="line.132"></a> <span class="sourceLineNo">133</span> this(fs, file, fs.getConf().getInt(<a name="line.133"></a> <span class="sourceLineNo">134</span> LocalFileSystemConfigKeys.LOCAL_FS_STREAM_BUFFER_SIZE_KEY, <a name="line.134"></a> <span class="sourceLineNo">135</span> LocalFileSystemConfigKeys.LOCAL_FS_STREAM_BUFFER_SIZE_DEFAULT));<a name="line.135"></a> <span class="sourceLineNo">136</span> }<a name="line.136"></a> <span class="sourceLineNo">137</span> <a name="line.137"></a> <span class="sourceLineNo">138</span> public ChecksumFSInputChecker(ChecksumFileSystem fs, Path file, int bufferSize)<a name="line.138"></a> <span class="sourceLineNo">139</span> throws IOException {<a name="line.139"></a> <span class="sourceLineNo">140</span> super( file, fs.getFileStatus(file).getReplication() );<a name="line.140"></a> <span class="sourceLineNo">141</span> this.datas = fs.getRawFileSystem().open(file, bufferSize);<a name="line.141"></a> <span class="sourceLineNo">142</span> this.fs = fs;<a name="line.142"></a> <span class="sourceLineNo">143</span> Path sumFile = fs.getChecksumFile(file);<a name="line.143"></a> <span class="sourceLineNo">144</span> try {<a name="line.144"></a> <span class="sourceLineNo">145</span> int sumBufferSize = fs.getSumBufferSize(fs.getBytesPerSum(), bufferSize);<a name="line.145"></a> <span class="sourceLineNo">146</span> sums = fs.getRawFileSystem().open(sumFile, sumBufferSize);<a name="line.146"></a> <span class="sourceLineNo">147</span><a name="line.147"></a> <span class="sourceLineNo">148</span> byte[] version = new byte[CHECKSUM_VERSION.length];<a name="line.148"></a> <span class="sourceLineNo">149</span> sums.readFully(version);<a name="line.149"></a> <span class="sourceLineNo">150</span> if (!Arrays.equals(version, CHECKSUM_VERSION))<a name="line.150"></a> <span class="sourceLineNo">151</span> throw new IOException("Not a checksum file: "+sumFile);<a name="line.151"></a> <span class="sourceLineNo">152</span> this.bytesPerSum = sums.readInt();<a name="line.152"></a> <span class="sourceLineNo">153</span> set(fs.verifyChecksum, DataChecksum.newCrc32(), bytesPerSum, 4);<a name="line.153"></a> <span class="sourceLineNo">154</span> } catch (FileNotFoundException e) { // quietly ignore<a name="line.154"></a> <span class="sourceLineNo">155</span> set(fs.verifyChecksum, null, 1, 0);<a name="line.155"></a> <span class="sourceLineNo">156</span> } catch (IOException e) { // loudly ignore<a name="line.156"></a> <span class="sourceLineNo">157</span> LOG.warn("Problem opening checksum file: "+ file + <a name="line.157"></a> <span class="sourceLineNo">158</span> ". Ignoring exception: " , e); <a name="line.158"></a> <span class="sourceLineNo">159</span> set(fs.verifyChecksum, null, 1, 0);<a name="line.159"></a> <span class="sourceLineNo">160</span> }<a name="line.160"></a> <span class="sourceLineNo">161</span> }<a name="line.161"></a> <span class="sourceLineNo">162</span> <a name="line.162"></a> <span class="sourceLineNo">163</span> private long getChecksumFilePos( long dataPos ) {<a name="line.163"></a> <span class="sourceLineNo">164</span> return HEADER_LENGTH + 4*(dataPos/bytesPerSum);<a name="line.164"></a> <span class="sourceLineNo">165</span> }<a name="line.165"></a> <span class="sourceLineNo">166</span> <a name="line.166"></a> <span class="sourceLineNo">167</span> @Override<a name="line.167"></a> <span class="sourceLineNo">168</span> protected long getChunkPosition( long dataPos ) {<a name="line.168"></a> <span class="sourceLineNo">169</span> return dataPos/bytesPerSum*bytesPerSum;<a name="line.169"></a> <span class="sourceLineNo">170</span> }<a name="line.170"></a> <span class="sourceLineNo">171</span> <a name="line.171"></a> <span class="sourceLineNo">172</span> @Override<a name="line.172"></a> <span class="sourceLineNo">173</span> public int available() throws IOException {<a name="line.173"></a> <span class="sourceLineNo">174</span> return datas.available() + super.available();<a name="line.174"></a> <span class="sourceLineNo">175</span> }<a name="line.175"></a> <span class="sourceLineNo">176</span> <a name="line.176"></a> <span class="sourceLineNo">177</span> @Override<a name="line.177"></a> <span class="sourceLineNo">178</span> public int read(long position, byte[] b, int off, int len)<a name="line.178"></a> <span class="sourceLineNo">179</span> throws IOException {<a name="line.179"></a> <span class="sourceLineNo">180</span> // parameter check<a name="line.180"></a> <span class="sourceLineNo">181</span> if ((off | len | (off + len) | (b.length - (off + len))) &lt; 0) {<a name="line.181"></a> <span class="sourceLineNo">182</span> throw new IndexOutOfBoundsException();<a name="line.182"></a> <span class="sourceLineNo">183</span> } else if (len == 0) {<a name="line.183"></a> <span class="sourceLineNo">184</span> return 0;<a name="line.184"></a> <span class="sourceLineNo">185</span> }<a name="line.185"></a> <span class="sourceLineNo">186</span> if( position&lt;0 ) {<a name="line.186"></a> <span class="sourceLineNo">187</span> throw new IllegalArgumentException(<a name="line.187"></a> <span class="sourceLineNo">188</span> "Parameter position can not to be negative");<a name="line.188"></a> <span class="sourceLineNo">189</span> }<a name="line.189"></a> <span class="sourceLineNo">190</span><a name="line.190"></a> <span class="sourceLineNo">191</span> ChecksumFSInputChecker checker = new ChecksumFSInputChecker(fs, file);<a name="line.191"></a> <span class="sourceLineNo">192</span> checker.seek(position);<a name="line.192"></a> <span class="sourceLineNo">193</span> int nread = checker.read(b, off, len);<a name="line.193"></a> <span class="sourceLineNo">194</span> checker.close();<a name="line.194"></a> <span class="sourceLineNo">195</span> return nread;<a name="line.195"></a> <span class="sourceLineNo">196</span> }<a name="line.196"></a> <span class="sourceLineNo">197</span> <a name="line.197"></a> <span class="sourceLineNo">198</span> @Override<a name="line.198"></a> <span class="sourceLineNo">199</span> public void close() throws IOException {<a name="line.199"></a> <span class="sourceLineNo">200</span> datas.close();<a name="line.200"></a> <span class="sourceLineNo">201</span> if( sums != null ) {<a name="line.201"></a> <span class="sourceLineNo">202</span> sums.close();<a name="line.202"></a> <span class="sourceLineNo">203</span> }<a name="line.203"></a> <span class="sourceLineNo">204</span> set(fs.verifyChecksum, null, 1, 0);<a name="line.204"></a> <span class="sourceLineNo">205</span> }<a name="line.205"></a> <span class="sourceLineNo">206</span> <a name="line.206"></a> <span class="sourceLineNo">207</span><a name="line.207"></a> <span class="sourceLineNo">208</span> @Override<a name="line.208"></a> <span class="sourceLineNo">209</span> public boolean seekToNewSource(long targetPos) throws IOException {<a name="line.209"></a> <span class="sourceLineNo">210</span> long sumsPos = getChecksumFilePos(targetPos);<a name="line.210"></a> <span class="sourceLineNo">211</span> fs.reportChecksumFailure(file, datas, targetPos, sums, sumsPos);<a name="line.211"></a> <span class="sourceLineNo">212</span> boolean newDataSource = datas.seekToNewSource(targetPos);<a name="line.212"></a> <span class="sourceLineNo">213</span> return sums.seekToNewSource(sumsPos) || newDataSource;<a name="line.213"></a> <span class="sourceLineNo">214</span> }<a name="line.214"></a> <span class="sourceLineNo">215</span><a name="line.215"></a> <span class="sourceLineNo">216</span> @Override<a name="line.216"></a> <span class="sourceLineNo">217</span> protected int readChunk(long pos, byte[] buf, int offset, int len,<a name="line.217"></a> <span class="sourceLineNo">218</span> byte[] checksum) throws IOException {<a name="line.218"></a> <span class="sourceLineNo">219</span><a name="line.219"></a> <span class="sourceLineNo">220</span> boolean eof = false;<a name="line.220"></a> <span class="sourceLineNo">221</span> if (needChecksum()) {<a name="line.221"></a> <span class="sourceLineNo">222</span> assert checksum != null; // we have a checksum buffer<a name="line.222"></a> <span class="sourceLineNo">223</span> assert checksum.length % CHECKSUM_SIZE == 0; // it is sane length<a name="line.223"></a> <span class="sourceLineNo">224</span> assert len &gt;= bytesPerSum; // we must read at least one chunk<a name="line.224"></a> <span class="sourceLineNo">225</span><a name="line.225"></a> <span class="sourceLineNo">226</span> final int checksumsToRead = Math.min(<a name="line.226"></a> <span class="sourceLineNo">227</span> len/bytesPerSum, // number of checksums based on len to read<a name="line.227"></a> <span class="sourceLineNo">228</span> checksum.length / CHECKSUM_SIZE); // size of checksum buffer<a name="line.228"></a> <span class="sourceLineNo">229</span> long checksumPos = getChecksumFilePos(pos); <a name="line.229"></a> <span class="sourceLineNo">230</span> if(checksumPos != sums.getPos()) {<a name="line.230"></a> <span class="sourceLineNo">231</span> sums.seek(checksumPos);<a name="line.231"></a> <span class="sourceLineNo">232</span> }<a name="line.232"></a> <span class="sourceLineNo">233</span><a name="line.233"></a> <span class="sourceLineNo">234</span> int sumLenRead = sums.read(checksum, 0, CHECKSUM_SIZE * checksumsToRead);<a name="line.234"></a> <span class="sourceLineNo">235</span> if (sumLenRead &gt;= 0 &amp;&amp; sumLenRead % CHECKSUM_SIZE != 0) {<a name="line.235"></a> <span class="sourceLineNo">236</span> throw new ChecksumException(<a name="line.236"></a> <span class="sourceLineNo">237</span> "Checksum file not a length multiple of checksum size " +<a name="line.237"></a> <span class="sourceLineNo">238</span> "in " + file + " at " + pos + " checksumpos: " + checksumPos +<a name="line.238"></a> <span class="sourceLineNo">239</span> " sumLenread: " + sumLenRead,<a name="line.239"></a> <span class="sourceLineNo">240</span> pos);<a name="line.240"></a> <span class="sourceLineNo">241</span> }<a name="line.241"></a> <span class="sourceLineNo">242</span> if (sumLenRead &lt;= 0) { // we're at the end of the file<a name="line.242"></a> <span class="sourceLineNo">243</span> eof = true;<a name="line.243"></a> <span class="sourceLineNo">244</span> } else {<a name="line.244"></a> <span class="sourceLineNo">245</span> // Adjust amount of data to read based on how many checksum chunks we read<a name="line.245"></a> <span class="sourceLineNo">246</span> len = Math.min(len, bytesPerSum * (sumLenRead / CHECKSUM_SIZE));<a name="line.246"></a> <span class="sourceLineNo">247</span> }<a name="line.247"></a> <span class="sourceLineNo">248</span> }<a name="line.248"></a> <span class="sourceLineNo">249</span> if(pos != datas.getPos()) {<a name="line.249"></a> <span class="sourceLineNo">250</span> datas.seek(pos);<a name="line.250"></a> <span class="sourceLineNo">251</span> }<a name="line.251"></a> <span class="sourceLineNo">252</span> int nread = readFully(datas, buf, offset, len);<a name="line.252"></a> <span class="sourceLineNo">253</span> if (eof &amp;&amp; nread &gt; 0) {<a name="line.253"></a> <span class="sourceLineNo">254</span> throw new ChecksumException("Checksum error: "+file+" at "+pos, pos);<a name="line.254"></a> <span class="sourceLineNo">255</span> }<a name="line.255"></a> <span class="sourceLineNo">256</span> return nread;<a name="line.256"></a> <span class="sourceLineNo">257</span> }<a name="line.257"></a> <span class="sourceLineNo">258</span> }<a name="line.258"></a> <span class="sourceLineNo">259</span> <a name="line.259"></a> <span class="sourceLineNo">260</span> private static class FSDataBoundedInputStream extends FSDataInputStream {<a name="line.260"></a> <span class="sourceLineNo">261</span> private FileSystem fs;<a name="line.261"></a> <span class="sourceLineNo">262</span> private Path file;<a name="line.262"></a> <span class="sourceLineNo">263</span> private long fileLen = -1L;<a name="line.263"></a> <span class="sourceLineNo">264</span><a name="line.264"></a> <span class="sourceLineNo">265</span> FSDataBoundedInputStream(FileSystem fs, Path file, InputStream in) {<a name="line.265"></a> <span class="sourceLineNo">266</span> super(in);<a name="line.266"></a> <span class="sourceLineNo">267</span> this.fs = fs;<a name="line.267"></a> <span class="sourceLineNo">268</span> this.file = file;<a name="line.268"></a> <span class="sourceLineNo">269</span> }<a name="line.269"></a> <span class="sourceLineNo">270</span> <a name="line.270"></a> <span class="sourceLineNo">271</span> @Override<a name="line.271"></a> <span class="sourceLineNo">272</span> public boolean markSupported() {<a name="line.272"></a> <span class="sourceLineNo">273</span> return false;<a name="line.273"></a> <span class="sourceLineNo">274</span> }<a name="line.274"></a> <span class="sourceLineNo">275</span> <a name="line.275"></a> <span class="sourceLineNo">276</span> /* Return the file length */<a name="line.276"></a> <span class="sourceLineNo">277</span> private long getFileLength() throws IOException {<a name="line.277"></a> <span class="sourceLineNo">278</span> if( fileLen==-1L ) {<a name="line.278"></a> <span class="sourceLineNo">279</span> fileLen = fs.getContentSummary(file).getLength();<a name="line.279"></a> <span class="sourceLineNo">280</span> }<a name="line.280"></a> <span class="sourceLineNo">281</span> return fileLen;<a name="line.281"></a> <span class="sourceLineNo">282</span> }<a name="line.282"></a> <span class="sourceLineNo">283</span> <a name="line.283"></a> <span class="sourceLineNo">284</span> /**<a name="line.284"></a> <span class="sourceLineNo">285</span> * Skips over and discards &lt;code&gt;n&lt;/code&gt; bytes of data from the<a name="line.285"></a> <span class="sourceLineNo">286</span> * input stream.<a name="line.286"></a> <span class="sourceLineNo">287</span> *<a name="line.287"></a> <span class="sourceLineNo">288</span> *The &lt;code&gt;skip&lt;/code&gt; method skips over some smaller number of bytes<a name="line.288"></a> <span class="sourceLineNo">289</span> * when reaching end of file before &lt;code&gt;n&lt;/code&gt; bytes have been skipped.<a name="line.289"></a> <span class="sourceLineNo">290</span> * The actual number of bytes skipped is returned. If &lt;code&gt;n&lt;/code&gt; is<a name="line.290"></a> <span class="sourceLineNo">291</span> * negative, no bytes are skipped.<a name="line.291"></a> <span class="sourceLineNo">292</span> *<a name="line.292"></a> <span class="sourceLineNo">293</span> * @param n the number of bytes to be skipped.<a name="line.293"></a> <span class="sourceLineNo">294</span> * @return the actual number of bytes skipped.<a name="line.294"></a> <span class="sourceLineNo">295</span> * @exception IOException if an I/O error occurs.<a name="line.295"></a> <span class="sourceLineNo">296</span> * ChecksumException if the chunk to skip to is corrupted<a name="line.296"></a> <span class="sourceLineNo">297</span> */<a name="line.297"></a> <span class="sourceLineNo">298</span> @Override<a name="line.298"></a> <span class="sourceLineNo">299</span> public synchronized long skip(long n) throws IOException {<a name="line.299"></a> <span class="sourceLineNo">300</span> long curPos = getPos();<a name="line.300"></a> <span class="sourceLineNo">301</span> long fileLength = getFileLength();<a name="line.301"></a> <span class="sourceLineNo">302</span> if( n+curPos &gt; fileLength ) {<a name="line.302"></a> <span class="sourceLineNo">303</span> n = fileLength - curPos;<a name="line.303"></a> <span class="sourceLineNo">304</span> }<a name="line.304"></a> <span class="sourceLineNo">305</span> return super.skip(n);<a name="line.305"></a> <span class="sourceLineNo">306</span> }<a name="line.306"></a> <span class="sourceLineNo">307</span> <a name="line.307"></a> <span class="sourceLineNo">308</span> /**<a name="line.308"></a> <span class="sourceLineNo">309</span> * Seek to the given position in the stream.<a name="line.309"></a> <span class="sourceLineNo">310</span> * The next read() will be from that position.<a name="line.310"></a> <span class="sourceLineNo">311</span> * <a name="line.311"></a> <span class="sourceLineNo">312</span> * &lt;p&gt;This method does not allow seek past the end of the file.<a name="line.312"></a> <span class="sourceLineNo">313</span> * This produces IOException.<a name="line.313"></a> <span class="sourceLineNo">314</span> *<a name="line.314"></a> <span class="sourceLineNo">315</span> * @param pos the postion to seek to.<a name="line.315"></a> <span class="sourceLineNo">316</span> * @exception IOException if an I/O error occurs or seeks after EOF<a name="line.316"></a> <span class="sourceLineNo">317</span> * ChecksumException if the chunk to seek to is corrupted<a name="line.317"></a> <span class="sourceLineNo">318</span> */<a name="line.318"></a> <span class="sourceLineNo">319</span><a name="line.319"></a> <span class="sourceLineNo">320</span> @Override<a name="line.320"></a> <span class="sourceLineNo">321</span> public synchronized void seek(long pos) throws IOException {<a name="line.321"></a> <span class="sourceLineNo">322</span> if (pos &gt; getFileLength()) {<a name="line.322"></a> <span class="sourceLineNo">323</span> throw new EOFException("Cannot seek after EOF");<a name="line.323"></a> <span class="sourceLineNo">324</span> }<a name="line.324"></a> <span class="sourceLineNo">325</span> super.seek(pos);<a name="line.325"></a> <span class="sourceLineNo">326</span> }<a name="line.326"></a> <span class="sourceLineNo">327</span><a name="line.327"></a> <span class="sourceLineNo">328</span> }<a name="line.328"></a> <span class="sourceLineNo">329</span><a name="line.329"></a> <span class="sourceLineNo">330</span> /**<a name="line.330"></a> <span class="sourceLineNo">331</span> * Opens an FSDataInputStream at the indicated Path.<a name="line.331"></a> <span class="sourceLineNo">332</span> * @param f the file name to open<a name="line.332"></a> <span class="sourceLineNo">333</span> * @param bufferSize the size of the buffer to be used.<a name="line.333"></a> <span class="sourceLineNo">334</span> */<a name="line.334"></a> <span class="sourceLineNo">335</span> @Override<a name="line.335"></a> <span class="sourceLineNo">336</span> public FSDataInputStream open(Path f, int bufferSize) throws IOException {<a name="line.336"></a> <span class="sourceLineNo">337</span> FileSystem fs;<a name="line.337"></a> <span class="sourceLineNo">338</span> InputStream in;<a name="line.338"></a> <span class="sourceLineNo">339</span> if (verifyChecksum) {<a name="line.339"></a> <span class="sourceLineNo">340</span> fs = this;<a name="line.340"></a> <span class="sourceLineNo">341</span> in = new ChecksumFSInputChecker(this, f, bufferSize);<a name="line.341"></a> <span class="sourceLineNo">342</span> } else {<a name="line.342"></a> <span class="sourceLineNo">343</span> fs = getRawFileSystem();<a name="line.343"></a> <span class="sourceLineNo">344</span> in = fs.open(f, bufferSize);<a name="line.344"></a> <span class="sourceLineNo">345</span> }<a name="line.345"></a> <span class="sourceLineNo">346</span> return new FSDataBoundedInputStream(fs, f, in);<a name="line.346"></a> <span class="sourceLineNo">347</span> }<a name="line.347"></a> <span class="sourceLineNo">348</span><a name="line.348"></a> <span class="sourceLineNo">349</span> @Override<a name="line.349"></a> <span class="sourceLineNo">350</span> public FSDataOutputStream append(Path f, int bufferSize,<a name="line.350"></a> <span class="sourceLineNo">351</span> Progressable progress) throws IOException {<a name="line.351"></a> <span class="sourceLineNo">352</span> throw new IOException("Not supported");<a name="line.352"></a> <span class="sourceLineNo">353</span> }<a name="line.353"></a> <span class="sourceLineNo">354</span><a name="line.354"></a> <span class="sourceLineNo">355</span> /**<a name="line.355"></a> <span class="sourceLineNo">356</span> * Calculated the length of the checksum file in bytes.<a name="line.356"></a> <span class="sourceLineNo">357</span> * @param size the length of the data file in bytes<a name="line.357"></a> <span class="sourceLineNo">358</span> * @param bytesPerSum the number of bytes in a checksum block<a name="line.358"></a> <span class="sourceLineNo">359</span> * @return the number of bytes in the checksum file<a name="line.359"></a> <span class="sourceLineNo">360</span> */<a name="line.360"></a> <span class="sourceLineNo">361</span> public static long getChecksumLength(long size, int bytesPerSum) {<a name="line.361"></a> <span class="sourceLineNo">362</span> //the checksum length is equal to size passed divided by bytesPerSum +<a name="line.362"></a> <span class="sourceLineNo">363</span> //bytes written in the beginning of the checksum file. <a name="line.363"></a> <span class="sourceLineNo">364</span> return ((size + bytesPerSum - 1) / bytesPerSum) * 4 +<a name="line.364"></a> <span class="sourceLineNo">365</span> CHECKSUM_VERSION.length + 4; <a name="line.365"></a> <span class="sourceLineNo">366</span> }<a name="line.366"></a> <span class="sourceLineNo">367</span><a name="line.367"></a> <span class="sourceLineNo">368</span> /** This class provides an output stream for a checksummed file.<a name="line.368"></a> <span class="sourceLineNo">369</span> * It generates checksums for data. */<a name="line.369"></a> <span class="sourceLineNo">370</span> private static class ChecksumFSOutputSummer extends FSOutputSummer {<a name="line.370"></a> <span class="sourceLineNo">371</span> private FSDataOutputStream datas; <a name="line.371"></a> <span class="sourceLineNo">372</span> private FSDataOutputStream sums;<a name="line.372"></a> <span class="sourceLineNo">373</span> private static final float CHKSUM_AS_FRACTION = 0.01f;<a name="line.373"></a> <span class="sourceLineNo">374</span> private boolean isClosed = false;<a name="line.374"></a> <span class="sourceLineNo">375</span> <a name="line.375"></a> <span class="sourceLineNo">376</span> public ChecksumFSOutputSummer(ChecksumFileSystem fs, <a name="line.376"></a> <span class="sourceLineNo">377</span> Path file, <a name="line.377"></a> <span class="sourceLineNo">378</span> boolean overwrite,<a name="line.378"></a> <span class="sourceLineNo">379</span> int bufferSize,<a name="line.379"></a> <span class="sourceLineNo">380</span> short replication,<a name="line.380"></a> <span class="sourceLineNo">381</span> long blockSize,<a name="line.381"></a> <span class="sourceLineNo">382</span> Progressable progress)<a name="line.382"></a> <span class="sourceLineNo">383</span> throws IOException {<a name="line.383"></a> <span class="sourceLineNo">384</span> super(DataChecksum.newDataChecksum(DataChecksum.Type.CRC32,<a name="line.384"></a> <span class="sourceLineNo">385</span> fs.getBytesPerSum()));<a name="line.385"></a> <span class="sourceLineNo">386</span> int bytesPerSum = fs.getBytesPerSum();<a name="line.386"></a> <span class="sourceLineNo">387</span> this.datas = fs.getRawFileSystem().create(file, overwrite, bufferSize, <a name="line.387"></a> <span class="sourceLineNo">388</span> replication, blockSize, progress);<a name="line.388"></a> <span class="sourceLineNo">389</span> int sumBufferSize = fs.getSumBufferSize(bytesPerSum, bufferSize);<a name="line.389"></a> <span class="sourceLineNo">390</span> this.sums = fs.getRawFileSystem().create(fs.getChecksumFile(file), true, <a name="line.390"></a> <span class="sourceLineNo">391</span> sumBufferSize, replication,<a name="line.391"></a> <span class="sourceLineNo">392</span> blockSize);<a name="line.392"></a> <span class="sourceLineNo">393</span> sums.write(CHECKSUM_VERSION, 0, CHECKSUM_VERSION.length);<a name="line.393"></a> <span class="sourceLineNo">394</span> sums.writeInt(bytesPerSum);<a name="line.394"></a> <span class="sourceLineNo">395</span> }<a name="line.395"></a> <span class="sourceLineNo">396</span> <a name="line.396"></a> <span class="sourceLineNo">397</span> @Override<a name="line.397"></a> <span class="sourceLineNo">398</span> public void close() throws IOException {<a name="line.398"></a> <span class="sourceLineNo">399</span> try {<a name="line.399"></a> <span class="sourceLineNo">400</span> flushBuffer();<a name="line.400"></a> <span class="sourceLineNo">401</span> sums.close();<a name="line.401"></a> <span class="sourceLineNo">402</span> datas.close();<a name="line.402"></a> <span class="sourceLineNo">403</span> } finally {<a name="line.403"></a> <span class="sourceLineNo">404</span> isClosed = true;<a name="line.404"></a> <span class="sourceLineNo">405</span> }<a name="line.405"></a> <span class="sourceLineNo">406</span> }<a name="line.406"></a> <span class="sourceLineNo">407</span> <a name="line.407"></a> <span class="sourceLineNo">408</span> @Override<a name="line.408"></a> <span class="sourceLineNo">409</span> protected void writeChunk(byte[] b, int offset, int len, byte[] checksum,<a name="line.409"></a> <span class="sourceLineNo">410</span> int ckoff, int cklen)<a name="line.410"></a> <span class="sourceLineNo">411</span> throws IOException {<a name="line.411"></a> <span class="sourceLineNo">412</span> datas.write(b, offset, len);<a name="line.412"></a> <span class="sourceLineNo">413</span> sums.write(checksum, ckoff, cklen);<a name="line.413"></a> <span class="sourceLineNo">414</span> }<a name="line.414"></a> <span class="sourceLineNo">415</span><a name="line.415"></a> <span class="sourceLineNo">416</span> @Override<a name="line.416"></a> <span class="sourceLineNo">417</span> protected void checkClosed() throws IOException {<a name="line.417"></a> <span class="sourceLineNo">418</span> if (isClosed) {<a name="line.418"></a> <span class="sourceLineNo">419</span> throw new ClosedChannelException();<a name="line.419"></a> <span class="sourceLineNo">420</span> }<a name="line.420"></a> <span class="sourceLineNo">421</span> }<a name="line.421"></a> <span class="sourceLineNo">422</span> }<a name="line.422"></a> <span class="sourceLineNo">423</span><a name="line.423"></a> <span class="sourceLineNo">424</span> @Override<a name="line.424"></a> <span class="sourceLineNo">425</span> public FSDataOutputStream create(Path f, FsPermission permission,<a name="line.425"></a> <span class="sourceLineNo">426</span> boolean overwrite, int bufferSize, short replication, long blockSize,<a name="line.426"></a> <span class="sourceLineNo">427</span> Progressable progress) throws IOException {<a name="line.427"></a> <span class="sourceLineNo">428</span> return create(f, permission, overwrite, true, bufferSize,<a name="line.428"></a> <span class="sourceLineNo">429</span> replication, blockSize, progress);<a name="line.429"></a> <span class="sourceLineNo">430</span> }<a name="line.430"></a> <span class="sourceLineNo">431</span><a name="line.431"></a> <span class="sourceLineNo">432</span> private FSDataOutputStream create(Path f, FsPermission permission,<a name="line.432"></a> <span class="sourceLineNo">433</span> boolean overwrite, boolean createParent, int bufferSize,<a name="line.433"></a> <span class="sourceLineNo">434</span> short replication, long blockSize,<a name="line.434"></a> <span class="sourceLineNo">435</span> Progressable progress) throws IOException {<a name="line.435"></a> <span class="sourceLineNo">436</span> Path parent = f.getParent();<a name="line.436"></a> <span class="sourceLineNo">437</span> if (parent != null) {<a name="line.437"></a> <span class="sourceLineNo">438</span> if (!createParent &amp;&amp; !exists(parent)) {<a name="line.438"></a> <span class="sourceLineNo">439</span> throw new FileNotFoundException("Parent directory doesn't exist: "<a name="line.439"></a> <span class="sourceLineNo">440</span> + parent);<a name="line.440"></a> <span class="sourceLineNo">441</span> } else if (!mkdirs(parent)) {<a name="line.441"></a> <span class="sourceLineNo">442</span> throw new IOException("Mkdirs failed to create " + parent<a name="line.442"></a> <span class="sourceLineNo">443</span> + " (exists=" + exists(parent) + ", cwd=" + getWorkingDirectory()<a name="line.443"></a> <span class="sourceLineNo">444</span> + ")");<a name="line.444"></a> <span class="sourceLineNo">445</span> }<a name="line.445"></a> <span class="sourceLineNo">446</span> }<a name="line.446"></a> <span class="sourceLineNo">447</span> final FSDataOutputStream out;<a name="line.447"></a> <span class="sourceLineNo">448</span> if (writeChecksum) {<a name="line.448"></a> <span class="sourceLineNo">449</span> out = new FSDataOutputStream(<a name="line.449"></a> <span class="sourceLineNo">450</span> new ChecksumFSOutputSummer(this, f, overwrite, bufferSize, replication,<a name="line.450"></a> <span class="sourceLineNo">451</span> blockSize, progress), null);<a name="line.451"></a> <span class="sourceLineNo">452</span> } else {<a name="line.452"></a> <span class="sourceLineNo">453</span> out = fs.create(f, permission, overwrite, bufferSize, replication,<a name="line.453"></a> <span class="sourceLineNo">454</span> blockSize, progress);<a name="line.454"></a> <span class="sourceLineNo">455</span> // remove the checksum file since we aren't writing one<a name="line.455"></a> <span class="sourceLineNo">456</span> Path checkFile = getChecksumFile(f);<a name="line.456"></a> <span class="sourceLineNo">457</span> if (fs.exists(checkFile)) {<a name="line.457"></a> <span class="sourceLineNo">458</span> fs.delete(checkFile, true);<a name="line.458"></a> <span class="sourceLineNo">459</span> }<a name="line.459"></a> <span class="sourceLineNo">460</span> }<a name="line.460"></a> <span class="sourceLineNo">461</span> if (permission != null) {<a name="line.461"></a> <span class="sourceLineNo">462</span> setPermission(f, permission);<a name="line.462"></a> <span class="sourceLineNo">463</span> }<a name="line.463"></a> <span class="sourceLineNo">464</span> return out;<a name="line.464"></a> <span class="sourceLineNo">465</span> }<a name="line.465"></a> <span class="sourceLineNo">466</span><a name="line.466"></a> <span class="sourceLineNo">467</span> @Override<a name="line.467"></a> <span class="sourceLineNo">468</span> public FSDataOutputStream createNonRecursive(Path f, FsPermission permission,<a name="line.468"></a> <span class="sourceLineNo">469</span> boolean overwrite, int bufferSize, short replication, long blockSize,<a name="line.469"></a> <span class="sourceLineNo">470</span> Progressable progress) throws IOException {<a name="line.470"></a> <span class="sourceLineNo">471</span> return create(f, permission, overwrite, false, bufferSize, replication,<a name="line.471"></a> <span class="sourceLineNo">472</span> blockSize, progress);<a name="line.472"></a> <span class="sourceLineNo">473</span> }<a name="line.473"></a> <span class="sourceLineNo">474</span><a name="line.474"></a> <span class="sourceLineNo">475</span> /**<a name="line.475"></a> <span class="sourceLineNo">476</span> * Set replication for an existing file.<a name="line.476"></a> <span class="sourceLineNo">477</span> * Implement the abstract &lt;tt&gt;setReplication&lt;/tt&gt; of &lt;tt&gt;FileSystem&lt;/tt&gt;<a name="line.477"></a> <span class="sourceLineNo">478</span> * @param src file name<a name="line.478"></a> <span class="sourceLineNo">479</span> * @param replication new replication<a name="line.479"></a> <span class="sourceLineNo">480</span> * @throws IOException<a name="line.480"></a> <span class="sourceLineNo">481</span> * @return true if successful;<a name="line.481"></a> <span class="sourceLineNo">482</span> * false if file does not exist or is a directory<a name="line.482"></a> <span class="sourceLineNo">483</span> */<a name="line.483"></a> <span class="sourceLineNo">484</span> @Override<a name="line.484"></a> <span class="sourceLineNo">485</span> public boolean setReplication(Path src, short replication) throws IOException {<a name="line.485"></a> <span class="sourceLineNo">486</span> boolean value = fs.setReplication(src, replication);<a name="line.486"></a> <span class="sourceLineNo">487</span> if (!value)<a name="line.487"></a> <span class="sourceLineNo">488</span> return false;<a name="line.488"></a> <span class="sourceLineNo">489</span><a name="line.489"></a> <span class="sourceLineNo">490</span> Path checkFile = getChecksumFile(src);<a name="line.490"></a> <span class="sourceLineNo">491</span> if (exists(checkFile))<a name="line.491"></a> <span class="sourceLineNo">492</span> fs.setReplication(checkFile, replication);<a name="line.492"></a> <span class="sourceLineNo">493</span><a name="line.493"></a> <span class="sourceLineNo">494</span> return true;<a name="line.494"></a> <span class="sourceLineNo">495</span> }<a name="line.495"></a> <span class="sourceLineNo">496</span><a name="line.496"></a> <span class="sourceLineNo">497</span> /**<a name="line.497"></a> <span class="sourceLineNo">498</span> * Rename files/dirs<a name="line.498"></a> <span class="sourceLineNo">499</span> */<a name="line.499"></a> <span class="sourceLineNo">500</span> @Override<a name="line.500"></a> <span class="sourceLineNo">501</span> public boolean rename(Path src, Path dst) throws IOException {<a name="line.501"></a> <span class="sourceLineNo">502</span> if (fs.isDirectory(src)) {<a name="line.502"></a> <span class="sourceLineNo">503</span> return fs.rename(src, dst);<a name="line.503"></a> <span class="sourceLineNo">504</span> } else {<a name="line.504"></a> <span class="sourceLineNo">505</span> if (fs.isDirectory(dst)) {<a name="line.505"></a> <span class="sourceLineNo">506</span> dst = new Path(dst, src.getName());<a name="line.506"></a> <span class="sourceLineNo">507</span> }<a name="line.507"></a> <span class="sourceLineNo">508</span><a name="line.508"></a> <span class="sourceLineNo">509</span> boolean value = fs.rename(src, dst);<a name="line.509"></a> <span class="sourceLineNo">510</span> if (!value)<a name="line.510"></a> <span class="sourceLineNo">511</span> return false;<a name="line.511"></a> <span class="sourceLineNo">512</span><a name="line.512"></a> <span class="sourceLineNo">513</span> Path srcCheckFile = getChecksumFile(src);<a name="line.513"></a> <span class="sourceLineNo">514</span> Path dstCheckFile = getChecksumFile(dst);<a name="line.514"></a> <span class="sourceLineNo">515</span> if (fs.exists(srcCheckFile)) { //try to rename checksum<a name="line.515"></a> <span class="sourceLineNo">516</span> value = fs.rename(srcCheckFile, dstCheckFile);<a name="line.516"></a> <span class="sourceLineNo">517</span> } else if (fs.exists(dstCheckFile)) {<a name="line.517"></a> <span class="sourceLineNo">518</span> // no src checksum, so remove dst checksum<a name="line.518"></a> <span class="sourceLineNo">519</span> value = fs.delete(dstCheckFile, true); <a name="line.519"></a> <span class="sourceLineNo">520</span> }<a name="line.520"></a> <span class="sourceLineNo">521</span><a name="line.521"></a> <span class="sourceLineNo">522</span> return value;<a name="line.522"></a> <span class="sourceLineNo">523</span> }<a name="line.523"></a> <span class="sourceLineNo">524</span> }<a name="line.524"></a> <span class="sourceLineNo">525</span><a name="line.525"></a> <span class="sourceLineNo">526</span> /**<a name="line.526"></a> <span class="sourceLineNo">527</span> * Implement the delete(Path, boolean) in checksum<a name="line.527"></a> <span class="sourceLineNo">528</span> * file system.<a name="line.528"></a> <span class="sourceLineNo">529</span> */<a name="line.529"></a> <span class="sourceLineNo">530</span> @Override<a name="line.530"></a> <span class="sourceLineNo">531</span> public boolean delete(Path f, boolean recursive) throws IOException{<a name="line.531"></a> <span class="sourceLineNo">532</span> FileStatus fstatus = null;<a name="line.532"></a> <span class="sourceLineNo">533</span> try {<a name="line.533"></a> <span class="sourceLineNo">534</span> fstatus = fs.getFileStatus(f);<a name="line.534"></a> <span class="sourceLineNo">535</span> } catch(FileNotFoundException e) {<a name="line.535"></a> <span class="sourceLineNo">536</span> return false;<a name="line.536"></a> <span class="sourceLineNo">537</span> }<a name="line.537"></a> <span class="sourceLineNo">538</span> if (fstatus.isDirectory()) {<a name="line.538"></a> <span class="sourceLineNo">539</span> //this works since the crcs are in the same<a name="line.539"></a> <span class="sourceLineNo">540</span> //directories and the files. so we just delete<a name="line.540"></a> <span class="sourceLineNo">541</span> //everything in the underlying filesystem<a name="line.541"></a> <span class="sourceLineNo">542</span> return fs.delete(f, recursive);<a name="line.542"></a> <span class="sourceLineNo">543</span> } else {<a name="line.543"></a> <span class="sourceLineNo">544</span> Path checkFile = getChecksumFile(f);<a name="line.544"></a> <span class="sourceLineNo">545</span> if (fs.exists(checkFile)) {<a name="line.545"></a> <span class="sourceLineNo">546</span> fs.delete(checkFile, true);<a name="line.546"></a> <span class="sourceLineNo">547</span> }<a name="line.547"></a> <span class="sourceLineNo">548</span> return fs.delete(f, true);<a name="line.548"></a> <span class="sourceLineNo">549</span> }<a name="line.549"></a> <span class="sourceLineNo">550</span> }<a name="line.550"></a> <span class="sourceLineNo">551</span> <a name="line.551"></a> <span class="sourceLineNo">552</span> final private static PathFilter DEFAULT_FILTER = new PathFilter() {<a name="line.552"></a> <span class="sourceLineNo">553</span> @Override<a name="line.553"></a> <span class="sourceLineNo">554</span> public boolean accept(Path file) {<a name="line.554"></a> <span class="sourceLineNo">555</span> return !isChecksumFile(file);<a name="line.555"></a> <span class="sourceLineNo">556</span> }<a name="line.556"></a> <span class="sourceLineNo">557</span> };<a name="line.557"></a> <span class="sourceLineNo">558</span><a name="line.558"></a> <span class="sourceLineNo">559</span> /**<a name="line.559"></a> <span class="sourceLineNo">560</span> * List the statuses of the files/directories in the given path if the path is<a name="line.560"></a> <span class="sourceLineNo">561</span> * a directory.<a name="line.561"></a> <span class="sourceLineNo">562</span> * <a name="line.562"></a> <span class="sourceLineNo">563</span> * @param f<a name="line.563"></a> <span class="sourceLineNo">564</span> * given path<a name="line.564"></a> <span class="sourceLineNo">565</span> * @return the statuses of the files/directories in the given path<a name="line.565"></a> <span class="sourceLineNo">566</span> * @throws IOException<a name="line.566"></a> <span class="sourceLineNo">567</span> */<a name="line.567"></a> <span class="sourceLineNo">568</span> @Override<a name="line.568"></a> <span class="sourceLineNo">569</span> public FileStatus[] listStatus(Path f) throws IOException {<a name="line.569"></a> <span class="sourceLineNo">570</span> return fs.listStatus(f, DEFAULT_FILTER);<a name="line.570"></a> <span class="sourceLineNo">571</span> }<a name="line.571"></a> <span class="sourceLineNo">572</span> <a name="line.572"></a> <span class="sourceLineNo">573</span> /**<a name="line.573"></a> <span class="sourceLineNo">574</span> * List the statuses of the files/directories in the given path if the path is<a name="line.574"></a> <span class="sourceLineNo">575</span> * a directory.<a name="line.575"></a> <span class="sourceLineNo">576</span> * <a name="line.576"></a> <span class="sourceLineNo">577</span> * @param f<a name="line.577"></a> <span class="sourceLineNo">578</span> * given path<a name="line.578"></a> <span class="sourceLineNo">579</span> * @return the statuses of the files/directories in the given patch<a name="line.579"></a> <span class="sourceLineNo">580</span> * @throws IOException<a name="line.580"></a> <span class="sourceLineNo">581</span> */<a name="line.581"></a> <span class="sourceLineNo">582</span> @Override<a name="line.582"></a> <span class="sourceLineNo">583</span> public RemoteIterator&lt;LocatedFileStatus&gt; listLocatedStatus(Path f)<a name="line.583"></a> <span class="sourceLineNo">584</span> throws IOException {<a name="line.584"></a> <span class="sourceLineNo">585</span> return fs.listLocatedStatus(f, DEFAULT_FILTER);<a name="line.585"></a> <span class="sourceLineNo">586</span> }<a name="line.586"></a> <span class="sourceLineNo">587</span> <a name="line.587"></a> <span class="sourceLineNo">588</span> @Override<a name="line.588"></a> <span class="sourceLineNo">589</span> public boolean mkdirs(Path f) throws IOException {<a name="line.589"></a> <span class="sourceLineNo">590</span> return fs.mkdirs(f);<a name="line.590"></a> <span class="sourceLineNo">591</span> }<a name="line.591"></a> <span class="sourceLineNo">592</span><a name="line.592"></a> <span class="sourceLineNo">593</span> @Override<a name="line.593"></a> <span class="sourceLineNo">594</span> public void copyFromLocalFile(boolean delSrc, Path src, Path dst)<a name="line.594"></a> <span class="sourceLineNo">595</span> throws IOException {<a name="line.595"></a> <span class="sourceLineNo">596</span> Configuration conf = getConf();<a name="line.596"></a> <span class="sourceLineNo">597</span> FileUtil.copy(getLocal(conf), src, this, dst, delSrc, conf);<a name="line.597"></a> <span class="sourceLineNo">598</span> }<a name="line.598"></a> <span class="sourceLineNo">599</span><a name="line.599"></a> <span class="sourceLineNo">600</span> /**<a name="line.600"></a> <span class="sourceLineNo">601</span> * The src file is under FS, and the dst is on the local disk.<a name="line.601"></a> <span class="sourceLineNo">602</span> * Copy it from FS control to the local dst name.<a name="line.602"></a> <span class="sourceLineNo">603</span> */<a name="line.603"></a> <span class="sourceLineNo">604</span> @Override<a name="line.604"></a> <span class="sourceLineNo">605</span> public void copyToLocalFile(boolean delSrc, Path src, Path dst)<a name="line.605"></a> <span class="sourceLineNo">606</span> throws IOException {<a name="line.606"></a> <span class="sourceLineNo">607</span> Configuration conf = getConf();<a name="line.607"></a> <span class="sourceLineNo">608</span> FileUtil.copy(this, src, getLocal(conf), dst, delSrc, conf);<a name="line.608"></a> <span class="sourceLineNo">609</span> }<a name="line.609"></a> <span class="sourceLineNo">610</span><a name="line.610"></a> <span class="sourceLineNo">611</span> /**<a name="line.611"></a> <span class="sourceLineNo">612</span> * The src file is under FS, and the dst is on the local disk.<a name="line.612"></a> <span class="sourceLineNo">613</span> * Copy it from FS control to the local dst name.<a name="line.613"></a> <span class="sourceLineNo">614</span> * If src and dst are directories, the copyCrc parameter<a name="line.614"></a> <span class="sourceLineNo">615</span> * determines whether to copy CRC files.<a name="line.615"></a> <span class="sourceLineNo">616</span> */<a name="line.616"></a> <span class="sourceLineNo">617</span> public void copyToLocalFile(Path src, Path dst, boolean copyCrc)<a name="line.617"></a> <span class="sourceLineNo">618</span> throws IOException {<a name="line.618"></a> <span class="sourceLineNo">619</span> if (!fs.isDirectory(src)) { // source is a file<a name="line.619"></a> <span class="sourceLineNo">620</span> fs.copyToLocalFile(src, dst);<a name="line.620"></a> <span class="sourceLineNo">621</span> FileSystem localFs = getLocal(getConf()).getRawFileSystem();<a name="line.621"></a> <span class="sourceLineNo">622</span> if (localFs.isDirectory(dst)) {<a name="line.622"></a> <span class="sourceLineNo">623</span> dst = new Path(dst, src.getName());<a name="line.623"></a> <span class="sourceLineNo">624</span> }<a name="line.624"></a> <span class="sourceLineNo">625</span> dst = getChecksumFile(dst);<a name="line.625"></a> <span class="sourceLineNo">626</span> if (localFs.exists(dst)) { //remove old local checksum file<a name="line.626"></a> <span class="sourceLineNo">627</span> localFs.delete(dst, true);<a name="line.627"></a> <span class="sourceLineNo">628</span> }<a name="line.628"></a> <span class="sourceLineNo">629</span> Path checksumFile = getChecksumFile(src);<a name="line.629"></a> <span class="sourceLineNo">630</span> if (copyCrc &amp;&amp; fs.exists(checksumFile)) { //copy checksum file<a name="line.630"></a> <span class="sourceLineNo">631</span> fs.copyToLocalFile(checksumFile, dst);<a name="line.631"></a> <span class="sourceLineNo">632</span> }<a name="line.632"></a> <span class="sourceLineNo">633</span> } else {<a name="line.633"></a> <span class="sourceLineNo">634</span> FileStatus[] srcs = listStatus(src);<a name="line.634"></a> <span class="sourceLineNo">635</span> for (FileStatus srcFile : srcs) {<a name="line.635"></a> <span class="sourceLineNo">636</span> copyToLocalFile(srcFile.getPath(), <a name="line.636"></a> <span class="sourceLineNo">637</span> new Path(dst, srcFile.getPath().getName()), copyCrc);<a name="line.637"></a> <span class="sourceLineNo">638</span> }<a name="line.638"></a> <span class="sourceLineNo">639</span> }<a name="line.639"></a> <span class="sourceLineNo">640</span> }<a name="line.640"></a> <span class="sourceLineNo">641</span><a name="line.641"></a> <span class="sourceLineNo">642</span> @Override<a name="line.642"></a> <span class="sourceLineNo">643</span> public Path startLocalOutput(Path fsOutputFile, Path tmpLocalFile)<a name="line.643"></a> <span class="sourceLineNo">644</span> throws IOException {<a name="line.644"></a> <span class="sourceLineNo">645</span> return tmpLocalFile;<a name="line.645"></a> <span class="sourceLineNo">646</span> }<a name="line.646"></a> <span class="sourceLineNo">647</span><a name="line.647"></a> <span class="sourceLineNo">648</span> @Override<a name="line.648"></a> <span class="sourceLineNo">649</span> public void completeLocalOutput(Path fsOutputFile, Path tmpLocalFile)<a name="line.649"></a> <span class="sourceLineNo">650</span> throws IOException {<a name="line.650"></a> <span class="sourceLineNo">651</span> moveFromLocalFile(tmpLocalFile, fsOutputFile);<a name="line.651"></a> <span class="sourceLineNo">652</span> }<a name="line.652"></a> <span class="sourceLineNo">653</span><a name="line.653"></a> <span class="sourceLineNo">654</span> /**<a name="line.654"></a> <span class="sourceLineNo">655</span> * Report a checksum error to the file system.<a name="line.655"></a> <span class="sourceLineNo">656</span> * @param f the file name containing the error<a name="line.656"></a> <span class="sourceLineNo">657</span> * @param in the stream open on the file<a name="line.657"></a> <span class="sourceLineNo">658</span> * @param inPos the position of the beginning of the bad data in the file<a name="line.658"></a> <span class="sourceLineNo">659</span> * @param sums the stream open on the checksum file<a name="line.659"></a> <span class="sourceLineNo">660</span> * @param sumsPos the position of the beginning of the bad data in the checksum file<a name="line.660"></a> <span class="sourceLineNo">661</span> * @return if retry is neccessary<a name="line.661"></a> <span class="sourceLineNo">662</span> */<a name="line.662"></a> <span class="sourceLineNo">663</span> public boolean reportChecksumFailure(Path f, FSDataInputStream in,<a name="line.663"></a> <span class="sourceLineNo">664</span> long inPos, FSDataInputStream sums, long sumsPos) {<a name="line.664"></a> <span class="sourceLineNo">665</span> return false;<a name="line.665"></a> <span class="sourceLineNo">666</span> }<a name="line.666"></a> <span class="sourceLineNo">667</span>}<a name="line.667"></a> </pre> </div> </body> </html>
ZhangXFeng/hadoop
share/doc/api/src-html/org/apache/hadoop/fs/ChecksumFileSystem.html
HTML
apache-2.0
62,696
<!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_71) on Tue May 17 00:28:47 UTC 2016 --> <title>Uses of Interface quarks.topology.tester.Tester (Quarks v0.4.0)</title> <meta name="date" content="2016-05-17"> <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 Interface quarks.topology.tester.Tester (Quarks v0.4.0)"; } } catch(err) { } //--> </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><a href="../../../../quarks/topology/tester/Tester.html" title="interface in quarks.topology.tester">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/topology/tester/class-use/Tester.html" target="_top">Frames</a></li> <li><a href="Tester.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 Interface quarks.topology.tester.Tester" class="title">Uses of Interface<br>quarks.topology.tester.Tester</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../quarks/topology/tester/Tester.html" title="interface in quarks.topology.tester">Tester</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="#quarks.topology">quarks.topology</a></td> <td class="colLast"> <div class="block">Functional api to build a streaming topology.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="quarks.topology"> <!-- --> </a> <h3>Uses of <a href="../../../../quarks/topology/tester/Tester.html" title="interface in quarks.topology.tester">Tester</a> in <a href="../../../../quarks/topology/package-summary.html">quarks.topology</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../quarks/topology/package-summary.html">quarks.topology</a> that return <a href="../../../../quarks/topology/tester/Tester.html" title="interface in quarks.topology.tester">Tester</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><a href="../../../../quarks/topology/tester/Tester.html" title="interface in quarks.topology.tester">Tester</a></code></td> <td class="colLast"><span class="typeNameLabel">Topology.</span><code><span class="memberNameLink"><a href="../../../../quarks/topology/Topology.html#getTester--">getTester</a></span>()</code> <div class="block">Get the tester for this topology.</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= 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><a href="../../../../quarks/topology/tester/Tester.html" title="interface in quarks.topology.tester">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.incubator.apache.org">Apache Quarks (incubating)</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/topology/tester/class-use/Tester.html" target="_top">Frames</a></li> <li><a href="Tester.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 ======= --> <p class="legalCopy"><small>Copyright &copy; 2016 The Apache Software Foundation. All Rights Reserved - d6cdfc6-20160517-0028</small></p> </body> </html>
dlaboss/incubator-quarks-website
content/javadoc/lastest/quarks/topology/tester/class-use/Tester.html
HTML
apache-2.0
6,544
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.6.0_30) on Tue Apr 15 17:02:16 MSK 2014 --> <title>org.opencv.video</title> <meta name="date" content="2014-04-15"> <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.opencv.video"; } //--> </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 class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-tree.html">Tree</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>OpenCV 2.4.9</em></div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../org/opencv/utils/package-summary.html">PREV PACKAGE</a></li> <li>NEXT PACKAGE</li> </ul> <ul class="navList"> <li><a href="../../../index.html?org/opencv/video/package-summary.html" target="_top">FRAMES</a></li> <li><a href="package-summary.html" target="_top">NO FRAMES</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Package" class="title">Package&nbsp;org.opencv.video</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation"> <caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Class</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../org/opencv/video/BackgroundSubtractor.html" title="class in org.opencv.video">BackgroundSubtractor</a></td> <td class="colLast"> <div class="block">Base class for background/foreground segmentation.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../org/opencv/video/BackgroundSubtractorMOG.html" title="class in org.opencv.video">BackgroundSubtractorMOG</a></td> <td class="colLast"> <div class="block">Gaussian Mixture-based Background/Foreground Segmentation Algorithm.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../org/opencv/video/BackgroundSubtractorMOG2.html" title="class in org.opencv.video">BackgroundSubtractorMOG2</a></td> <td class="colLast"> <div class="block">Gaussian Mixture-based Background/Foreground Segmentation Algorithm.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../org/opencv/video/KalmanFilter.html" title="class in org.opencv.video">KalmanFilter</a></td> <td class="colLast"> <div class="block">Kalman filter class.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../org/opencv/video/Video.html" title="class in org.opencv.video">Video</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-tree.html">Tree</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><a href=http://docs.opencv.org>OpenCV 2.4.9 Documentation</a></em></div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../org/opencv/utils/package-summary.html">PREV PACKAGE</a></li> <li>NEXT PACKAGE</li> </ul> <ul class="navList"> <li><a href="../../../index.html?org/opencv/video/package-summary.html" target="_top">FRAMES</a></li> <li><a href="package-summary.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 ======= --> </body> </html>
scify/ICSee
opencv_modules/opencv-android-2.4.9/javadoc/org/opencv/video/package-summary.html
HTML
apache-2.0
5,393
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <title>FirefoxProfile</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="FirefoxProfile"; } //--> </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="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/openqa/selenium/firefox/FirefoxDriver.html" title="class in org.openqa.selenium.firefox"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../org/openqa/selenium/firefox/NotConnectedException.html" title="class in org.openqa.selenium.firefox"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/openqa/selenium/firefox/FirefoxProfile.html" target="_top">Frames</a></li> <li><a href="FirefoxProfile.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><a href="#field_summary">Field</a>&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><a href="#field_detail">Field</a>&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">org.openqa.selenium.firefox</div> <h2 title="Class FirefoxProfile" class="title">Class FirefoxProfile</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>org.openqa.selenium.firefox.FirefoxProfile</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public class <span class="strong">FirefoxProfile</span> extends java.lang.Object</pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- =========== FIELD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="field_summary"> <!-- --> </a> <h3>Field Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation"> <caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Field and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>static java.lang.String</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#PORT_PREFERENCE">PORT_PREFERENCE</a></strong></code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="overviewSummary" 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="colFirst" scope="col">Modifier</th> <th class="colLast" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#FirefoxProfile()">FirefoxProfile</a></strong>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#FirefoxProfile(java.io.File)">FirefoxProfile</a></strong>(java.io.File&nbsp;profileDir)</code> <div class="block">Constructs a firefox profile from an existing profile directory.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected </code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#FirefoxProfile(java.io.Reader, java.io.File)">FirefoxProfile</a></strong>(java.io.Reader&nbsp;defaultsReader, java.io.File&nbsp;profileDir)</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== 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>void</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#addExtension(java.lang.Class, java.lang.String)">addExtension</a></strong>(java.lang.Class&lt;?&gt;&nbsp;loadResourcesUsing, java.lang.String&nbsp;loadFrom)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#addExtension(java.io.File)">addExtension</a></strong>(java.io.File&nbsp;extensionToInstall)</code> <div class="block">Attempt to add an extension to install into this instance.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#addExtension(java.lang.String, org.openqa.selenium.firefox.internal.Extension)">addExtension</a></strong>(java.lang.String&nbsp;key, <a href="../../../../org/openqa/selenium/firefox/internal/Extension.html" title="interface in org.openqa.selenium.firefox.internal">Extension</a>&nbsp;extension)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#areNativeEventsEnabled()">areNativeEventsEnabled</a></strong>()</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#clean(java.io.File)">clean</a></strong>(java.io.File&nbsp;profileDir)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#cleanTemporaryModel()">cleanTemporaryModel</a></strong>()</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#containsWebDriverExtension()">containsWebDriverExtension</a></strong>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#copyModel(java.io.File, java.io.File)">copyModel</a></strong>(java.io.File&nbsp;sourceDir, java.io.File&nbsp;profileDir)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#deleteExtensionsCacheIfItExists(java.io.File)">deleteExtensionsCacheIfItExists</a></strong>(java.io.File&nbsp;profileDir)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#deleteLockFiles(java.io.File)">deleteLockFiles</a></strong>(java.io.File&nbsp;profileDir)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html" title="class in org.openqa.selenium.firefox">FirefoxProfile</a></code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#fromJson(java.lang.String)">fromJson</a></strong>(java.lang.String&nbsp;json)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected org.openqa.selenium.firefox.Preferences</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#getAdditionalPreferences()">getAdditionalPreferences</a></strong>()</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#installExtensions(java.io.File)">installExtensions</a></strong>(java.io.File&nbsp;parentDir)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>java.io.File</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#layoutOnDisk()">layoutOnDisk</a></strong>()</code> <div class="block">Call this to cause the current profile to be written to disk.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected java.io.Reader</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#onlyOverrideThisIfYouKnowWhatYouAreDoing()">onlyOverrideThisIfYouKnowWhatYouAreDoing</a></strong>()</code> <div class="block"><strong>Internal method.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#setAcceptUntrustedCertificates(boolean)">setAcceptUntrustedCertificates</a></strong>(boolean&nbsp;acceptUntrustedSsl)</code> <div class="block">Sets whether Firefox should accept SSL certificates which have expired, signed by an unknown authority or are generally untrusted.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#setAlwaysLoadNoFocusLib(boolean)">setAlwaysLoadNoFocusLib</a></strong>(boolean&nbsp;loadNoFocusLib)</code> <div class="block">Sets whether the no focus library should always be loaded on Linux.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#setAssumeUntrustedCertificateIssuer(boolean)">setAssumeUntrustedCertificateIssuer</a></strong>(boolean&nbsp;untrustedIssuer)</code> <div class="block">By default, when accepting untrusted SSL certificates, assume that these certificates will come from an untrusted issuer or will be self signed.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#setEnableNativeEvents(boolean)">setEnableNativeEvents</a></strong>(boolean&nbsp;enableNativeEvents)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#setPreference(java.lang.String, boolean)">setPreference</a></strong>(java.lang.String&nbsp;key, boolean&nbsp;value)</code> <div class="block">Set a preference for this particular profile.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#setPreference(java.lang.String, int)">setPreference</a></strong>(java.lang.String&nbsp;key, int&nbsp;value)</code> <div class="block">Set a preference for this particular profile.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#setPreference(java.lang.String, java.lang.String)">setPreference</a></strong>(java.lang.String&nbsp;key, java.lang.String&nbsp;value)</code> <div class="block">Set a preference for this particular profile.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html" title="class in org.openqa.selenium.firefox">FirefoxProfile</a></code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#setProxyPreferences(org.openqa.selenium.Proxy)">setProxyPreferences</a></strong>(<a href="../../../../org/openqa/selenium/Proxy.html" title="class in org.openqa.selenium">Proxy</a>&nbsp;proxy)</code> <div class="block"><strong>Deprecated.</strong>&nbsp; <div class="block"><i>This is now handled by the driver itself.</i></div> </div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#shouldLoadNoFocusLib()">shouldLoadNoFocusLib</a></strong>()</code> <div class="block">Returns whether the no focus library should be loaded for Firefox profiles launched on Linux, even if native events are disabled.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#toJson()">toJson</a></strong>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html#updateUserPrefs(java.io.File)">updateUserPrefs</a></strong>(java.io.File&nbsp;userPrefs)</code>&nbsp;</td> </tr> </table> <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>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ FIELD DETAIL =========== --> <ul class="blockList"> <li class="blockList"><a name="field_detail"> <!-- --> </a> <h3>Field Detail</h3> <a name="PORT_PREFERENCE"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>PORT_PREFERENCE</h4> <pre>public static final&nbsp;java.lang.String PORT_PREFERENCE</pre> <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#org.openqa.selenium.firefox.FirefoxProfile.PORT_PREFERENCE">Constant Field Values</a></dd></dl> </li> </ul> </li> </ul> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="FirefoxProfile()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>FirefoxProfile</h4> <pre>public&nbsp;FirefoxProfile()</pre> </li> </ul> <a name="FirefoxProfile(java.io.File)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>FirefoxProfile</h4> <pre>public&nbsp;FirefoxProfile(java.io.File&nbsp;profileDir)</pre> <div class="block">Constructs a firefox profile from an existing profile directory. <p/> <p> Users who need this functionality should consider using a named profile.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>profileDir</code> - The profile directory to use as a model.</dd></dl> </li> </ul> <a name="FirefoxProfile(java.io.Reader, java.io.File)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>FirefoxProfile</h4> <pre><a href="../../../../org/openqa/selenium/Beta.html" title="annotation in org.openqa.selenium">@Beta</a> protected&nbsp;FirefoxProfile(java.io.Reader&nbsp;defaultsReader, java.io.File&nbsp;profileDir)</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="onlyOverrideThisIfYouKnowWhatYouAreDoing()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>onlyOverrideThisIfYouKnowWhatYouAreDoing</h4> <pre><a href="../../../../org/openqa/selenium/Beta.html" title="annotation in org.openqa.selenium">@Beta</a> protected&nbsp;java.io.Reader&nbsp;onlyOverrideThisIfYouKnowWhatYouAreDoing()</pre> <div class="block"><strong>Internal method. This is liable to change at a moment's notice.</strong></div> </li> </ul> <a name="containsWebDriverExtension()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>containsWebDriverExtension</h4> <pre>public&nbsp;boolean&nbsp;containsWebDriverExtension()</pre> </li> </ul> <a name="addExtension(java.lang.Class, java.lang.String)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>addExtension</h4> <pre>public&nbsp;void&nbsp;addExtension(java.lang.Class&lt;?&gt;&nbsp;loadResourcesUsing, java.lang.String&nbsp;loadFrom) throws java.io.IOException</pre> <dl><dt><span class="strong">Throws:</span></dt> <dd><code>java.io.IOException</code></dd></dl> </li> </ul> <a name="addExtension(java.io.File)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>addExtension</h4> <pre>public&nbsp;void&nbsp;addExtension(java.io.File&nbsp;extensionToInstall) throws java.io.IOException</pre> <div class="block">Attempt to add an extension to install into this instance.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>extensionToInstall</code> - </dd> <dt><span class="strong">Throws:</span></dt> <dd><code>java.io.IOException</code></dd></dl> </li> </ul> <a name="addExtension(java.lang.String, org.openqa.selenium.firefox.internal.Extension)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>addExtension</h4> <pre>public&nbsp;void&nbsp;addExtension(java.lang.String&nbsp;key, <a href="../../../../org/openqa/selenium/firefox/internal/Extension.html" title="interface in org.openqa.selenium.firefox.internal">Extension</a>&nbsp;extension)</pre> </li> </ul> <a name="setPreference(java.lang.String, java.lang.String)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setPreference</h4> <pre>public&nbsp;void&nbsp;setPreference(java.lang.String&nbsp;key, java.lang.String&nbsp;value)</pre> <div class="block">Set a preference for this particular profile. The value will be properly quoted before use. Note that if a value looks as if it is a quoted string (that is, starts with a quote character and ends with one too) an IllegalArgumentException is thrown: Firefox fails to start properly when some values are set to this.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>key</code> - The key</dd><dd><code>value</code> - The new value.</dd></dl> </li> </ul> <a name="setPreference(java.lang.String, boolean)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setPreference</h4> <pre>public&nbsp;void&nbsp;setPreference(java.lang.String&nbsp;key, boolean&nbsp;value)</pre> <div class="block">Set a preference for this particular profile.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>key</code> - The key</dd><dd><code>value</code> - The new value.</dd></dl> </li> </ul> <a name="setPreference(java.lang.String, int)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setPreference</h4> <pre>public&nbsp;void&nbsp;setPreference(java.lang.String&nbsp;key, int&nbsp;value)</pre> <div class="block">Set a preference for this particular profile.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>key</code> - The key</dd><dd><code>value</code> - The new value.</dd></dl> </li> </ul> <a name="setProxyPreferences(org.openqa.selenium.Proxy)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setProxyPreferences</h4> <pre>@Deprecated public&nbsp;<a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html" title="class in org.openqa.selenium.firefox">FirefoxProfile</a>&nbsp;setProxyPreferences(<a href="../../../../org/openqa/selenium/Proxy.html" title="class in org.openqa.selenium">Proxy</a>&nbsp;proxy)</pre> <div class="block"><span class="strong">Deprecated.</span>&nbsp;<i>This is now handled by the driver itself.</i></div> <div class="block">Set proxy preferences for this profile.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>proxy</code> - The proxy preferences.</dd> <dt><span class="strong">Returns:</span></dt><dd>The profile, for further settings.</dd></dl> </li> </ul> <a name="getAdditionalPreferences()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getAdditionalPreferences</h4> <pre>protected&nbsp;org.openqa.selenium.firefox.Preferences&nbsp;getAdditionalPreferences()</pre> </li> </ul> <a name="updateUserPrefs(java.io.File)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>updateUserPrefs</h4> <pre>public&nbsp;void&nbsp;updateUserPrefs(java.io.File&nbsp;userPrefs)</pre> </li> </ul> <a name="deleteLockFiles(java.io.File)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>deleteLockFiles</h4> <pre>protected&nbsp;void&nbsp;deleteLockFiles(java.io.File&nbsp;profileDir)</pre> </li> </ul> <a name="deleteExtensionsCacheIfItExists(java.io.File)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>deleteExtensionsCacheIfItExists</h4> <pre>public&nbsp;void&nbsp;deleteExtensionsCacheIfItExists(java.io.File&nbsp;profileDir)</pre> </li> </ul> <a name="areNativeEventsEnabled()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>areNativeEventsEnabled</h4> <pre>public&nbsp;boolean&nbsp;areNativeEventsEnabled()</pre> </li> </ul> <a name="setEnableNativeEvents(boolean)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setEnableNativeEvents</h4> <pre>public&nbsp;void&nbsp;setEnableNativeEvents(boolean&nbsp;enableNativeEvents)</pre> </li> </ul> <a name="shouldLoadNoFocusLib()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>shouldLoadNoFocusLib</h4> <pre>public&nbsp;boolean&nbsp;shouldLoadNoFocusLib()</pre> <div class="block">Returns whether the no focus library should be loaded for Firefox profiles launched on Linux, even if native events are disabled.</div> <dl><dt><span class="strong">Returns:</span></dt><dd>Whether the no focus library should always be loaded for Firefox on Linux.</dd></dl> </li> </ul> <a name="setAlwaysLoadNoFocusLib(boolean)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setAlwaysLoadNoFocusLib</h4> <pre>public&nbsp;void&nbsp;setAlwaysLoadNoFocusLib(boolean&nbsp;loadNoFocusLib)</pre> <div class="block">Sets whether the no focus library should always be loaded on Linux.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>loadNoFocusLib</code> - Whether to always load the no focus library.</dd></dl> </li> </ul> <a name="setAcceptUntrustedCertificates(boolean)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setAcceptUntrustedCertificates</h4> <pre>public&nbsp;void&nbsp;setAcceptUntrustedCertificates(boolean&nbsp;acceptUntrustedSsl)</pre> <div class="block">Sets whether Firefox should accept SSL certificates which have expired, signed by an unknown authority or are generally untrusted. This is set to true by default.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>acceptUntrustedSsl</code> - Whether untrusted SSL certificates should be accepted.</dd></dl> </li> </ul> <a name="setAssumeUntrustedCertificateIssuer(boolean)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setAssumeUntrustedCertificateIssuer</h4> <pre>public&nbsp;void&nbsp;setAssumeUntrustedCertificateIssuer(boolean&nbsp;untrustedIssuer)</pre> <div class="block">By default, when accepting untrusted SSL certificates, assume that these certificates will come from an untrusted issuer or will be self signed. Due to limitation within Firefox, it is easy to find out if the certificate has expired or does not match the host it was served for, but hard to find out if the issuer of the certificate is untrusted. <p/> By default, it is assumed that the certificates were not be issued from a trusted CA. <p/> If you are receive an "untrusted site" prompt on Firefox when using a certificate that was issued by valid issuer, but has expired or is being served served for a different host (e.g. production certificate served in a testing environment) set this to false.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>untrustedIssuer</code> - whether to assume untrusted issuer or not.</dd></dl> </li> </ul> <a name="clean(java.io.File)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>clean</h4> <pre>public&nbsp;void&nbsp;clean(java.io.File&nbsp;profileDir)</pre> </li> </ul> <a name="toJson()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>toJson</h4> <pre>public&nbsp;java.lang.String&nbsp;toJson() throws java.io.IOException</pre> <dl><dt><span class="strong">Throws:</span></dt> <dd><code>java.io.IOException</code></dd></dl> </li> </ul> <a name="fromJson(java.lang.String)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>fromJson</h4> <pre>public static&nbsp;<a href="../../../../org/openqa/selenium/firefox/FirefoxProfile.html" title="class in org.openqa.selenium.firefox">FirefoxProfile</a>&nbsp;fromJson(java.lang.String&nbsp;json) throws java.io.IOException</pre> <dl><dt><span class="strong">Throws:</span></dt> <dd><code>java.io.IOException</code></dd></dl> </li> </ul> <a name="cleanTemporaryModel()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>cleanTemporaryModel</h4> <pre>protected&nbsp;void&nbsp;cleanTemporaryModel()</pre> </li> </ul> <a name="layoutOnDisk()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>layoutOnDisk</h4> <pre>public&nbsp;java.io.File&nbsp;layoutOnDisk()</pre> <div class="block">Call this to cause the current profile to be written to disk. The profile directory is returned. Note that this profile directory is a temporary one and will be deleted when the JVM exists (at the latest) This method should be called immediately before starting to use the profile and should only be called once per instance of the <a href="../../../../org/openqa/selenium/firefox/FirefoxDriver.html" title="class in org.openqa.selenium.firefox"><code>FirefoxDriver</code></a>.</div> <dl><dt><span class="strong">Returns:</span></dt><dd>The directory containing the profile.</dd></dl> </li> </ul> <a name="copyModel(java.io.File, java.io.File)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>copyModel</h4> <pre>protected&nbsp;void&nbsp;copyModel(java.io.File&nbsp;sourceDir, java.io.File&nbsp;profileDir) throws java.io.IOException</pre> <dl><dt><span class="strong">Throws:</span></dt> <dd><code>java.io.IOException</code></dd></dl> </li> </ul> <a name="installExtensions(java.io.File)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>installExtensions</h4> <pre>protected&nbsp;void&nbsp;installExtensions(java.io.File&nbsp;parentDir) throws java.io.IOException</pre> <dl><dt><span class="strong">Throws:</span></dt> <dd><code>java.io.IOException</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="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/openqa/selenium/firefox/FirefoxDriver.html" title="class in org.openqa.selenium.firefox"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../org/openqa/selenium/firefox/NotConnectedException.html" title="class in org.openqa.selenium.firefox"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/openqa/selenium/firefox/FirefoxProfile.html" target="_top">Frames</a></li> <li><a href="FirefoxProfile.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><a href="#field_summary">Field</a>&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><a href="#field_detail">Field</a>&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>
jknguyen/josephknguyen-selenium
docs/api/java/org/openqa/selenium/firefox/FirefoxProfile.html
HTML
apache-2.0
31,613
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>jQuery NiceScroll Test 3 - DOJO</title> <style type="text/css"> #boxscroll { padding: 0px; height: 450px; width: 420px; border: 2px solid #0000FF; overflow: auto; margin: 0px; } .tabtest { } .row { background-color: #FFFFCC; } .row2 { background-color: #66CCFF; } #boxscroll2 { padding: 0px; height: 450px; width: 420px; border: 2px solid #FF0000; overflow: auto; margin: 0px; } div:focus { outline: none; ie-dummy: expression(this.hideFocus=true); } .mush { width:4960px; height:450px; background-image:url(img/mariomushrooms.png); } .bgm { background-image:url(img/mariomushrooms2.png); } body { font-family: georgia,serif; } .header { text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.9); } </style> </style> <script src="js/jquery.min.js"></script> <script src="js/jquery.nicescroll.min.js"></script> <script src="ext/iphone-style-checkboxes.js" type="text/javascript"></script> <link rel="stylesheet" href="ext/iphone-style-checkboxes.css" type="text/css" media="screen" /> <script> var nice1,nice2; var body; var off; $(window).load(function(){ off = $("#boxscroll").position(); off.top+=2; off.left+=2; $("#boxscroll").scroll(); }); function initScroll() { var tb = $('#nctouch').prop("checked"); if (nice1) nice1.remove(); nice1 = $("#boxscroll").niceScroll({touchbehavior:tb,cursorcolor:"#0000FF",cursoropacitymax:0.6,cursorwidth:8,horizrailenabled:true}); $("#ncver").html(nice1.version); $("#boxscroll").scroll(function(e) { if (!off) return; var px = $("#boxscroll").scrollLeft() - off.left; var py = $("#boxscroll").scrollTop() - off.top; body.style.backgroundPosition=-px+"px "+-py+"px"; $("#infoscroll1").html($("#boxscroll").scrollLeft()+'x'+$("#boxscroll").scrollTop()); }); $("#boxscroll").scroll(); //$("#boxscroll2 div").html($("#boxscroll").html()); if (nice2) nice2.remove(); nice2 = $("#boxscroll2").niceScroll("#boxscroll2 div.mush",{touchbehavior:tb,cursorcolor:"#FF0000",cursoropacitymax:0.6,cursorwidth:8,horizrailenabled:true}); /* nice2.scrollstart(function(info){ console.log(info); }); */ /* nice2.scrollend(function(info){ console.log(info); }); */ $("#boxscroll2").scroll(function(e) { var me = $(this); $("#infoscroll2").html(me.scrollLeft()+'x'+me.scrollTop()); }); // console.log($(":nicescroll").getNiceScroll()); } $(document).ready(function() { body = document.getElementsByTagName("body")[0]; $('body').niceScroll({cursoropacitymax:0.8,cursorwidth:8}); $('#nctouch').iphoneStyle().change(function(){ initScroll(); }); initScroll(); }); function getScroll(name) { $(name).scrollTop(Math.floor(Math.random()*3000)); } function getScroll2D(name) { $(name).getNiceScroll().doScrollPos(Math.floor(Math.random()*4000),Math.floor(Math.random()*4000),150); } </script> <meta name="viewport" content="user-scalable=no" /> </head> <body class="bgm"> <div style="height:120px" class="header"> <h2>NICESCROLL - SCROLLING TEST</h2> <div>TEST PAGE - Nicescroll version: <span id="ncver"></span></div> <table border="0" cellspacing="0" cellpadding="4"><tr><td>Enable touchbehavior option:</td><td><input type="checkbox" id="nctouch" /></td></tr></table> </div> <table width="100%" border="0" cellspacing="0" cellpadding="4"> <tr> <td>NATIVE (simple div with overflow:auto) <span id="infoscroll1"></span></td> <td>HWSCROLL (div+wrapper) <span id="infoscroll2"></span></td> </tr> <tr> <td align="left" valign="top"> <div id="boxscroll"><div class="mush"></div></div> </td> <td align="left" valign="top"> <div id="boxscroll2"><div class="mush"></div></div> </td> </tr> <tr> <td align="left" valign="top"><input type="button" value="GET SCROLL!" onclick='getScroll("#boxscroll")' />&nbsp;<input type="button" value="GET SCROLL2D!" onclick='getScroll2D("#boxscroll")' /></td> <td align="left" valign="top"><input type="button" value="GET SCROLL!" onclick='getScroll("#boxscroll2")' />&nbsp;<input type="button" value="GET SCROLL2D!" onclick='getScroll2D("#boxscroll2")' /></td> </tr> </table> <p>&nbsp;</p> <input type="button" value="HIDE ALL!" onclick='$(":nicescroll").getNiceScroll().hide()' />&nbsp;<input type="button" value="SHOW ALL!" onclick='$(":nicescroll").getNiceScroll().show()' /> </body> </html>
mudar/Etat-rues-Montreal
www/js/jquery.nicescroll.340/test/scroll3b.html
HTML
apache-2.0
4,957
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>H+ 后台主题UI框架 - 404 页面</title> <meta name="keywords" content="H+后台主题,后台bootstrap框架,会员中心主题,后台HTML,响应式后台"> <meta name="description" content="H+是一个完全响应式,基于Bootstrap3最新版本开发的扁平化主题,她采用了主流的左右两栏式布局,使用了Html5+CSS3等现代技术"> <link rel="shortcut icon" href="favicon.ico"> <link href="css/bootstrap.min.css?v=3.3.6" rel="stylesheet"> <link href="css/font-awesome.css?v=4.4.0" rel="stylesheet"> <link href="css/animate.css" rel="stylesheet"> <link href="css/style.css?v=4.1.0" rel="stylesheet"> </head> <body class="gray-bg"> <div class="middle-box text-center animated fadeInDown"> <h1>404</h1> <h3 class="font-bold">页面未找到!</h3> <div class="error-desc"> 抱歉,页面好像去火星了~ <form class="form-inline m-t" role="form"> <div class="form-group"> <input type="email" class="form-control" placeholder="请输入您需要查找的内容 …"> </div> <button type="submit" class="btn btn-primary">搜索</button> </form> </div> </div> <!-- 全局js --> <script src="js/jquery.min.js?v=2.1.4"></script> <script src="js/bootstrap.min.js?v=3.3.6"></script> <script type="text/javascript" src="http://tajs.qq.com/stats?sId=9051096" charset="UTF-8"></script> <!--统计代码,可删除--> </body> </html>
chyzh1689/pay
pay-product/src/main/resources/templates/error/404.html
HTML
apache-2.0
1,701
<!-- CSS --> <link rel="stylesheet" type="text/css" href="/devwidgets/userpermissions/css/userpermissions.css" /> <div id="userpermissions_container" class="s3d-dialog s3d-dialog-container" style="display:none;"> <div class="s3d-dialog-close jqmClose"></div> <h1 class="s3d-dialog-header">__MSG__PERMISSIONS_FOR__ <span id="userpermissions_area_title"></span></h1> <div id="userpermissions_content_container" ></div> <div class="fl-force-right userpermissions_buttons"> <button class="s3d-link-button jqmClose s3d-bold" type="button">__MSG__CANCEL__</button> <button type="button" class="s3d-button s3d-overlay-action-button" id="userpermissions_apply_permissions" title="Apply permissions">__MSG__APPLY_PERMISSIONS__</button> </div> <div class="fl-push"></div> </div> <div id="userpermissions_content_template" style="display:none"><!-- <div class="userpermissions_visible_to"> <span>__MSG__CAN_BE_SEEN_BY__:</span> <select id="userpermissions_area_general_visibility" data-original-selection="${permission}"> <option value="anonymous" {if permission === "anonymous"} selected="true" {/if}>__MSG__EVERYONE__</option> <option value="everyone" {if permission === "everyone"} selected="true" {/if}>__MSG__LOGGED_IN_ONLY__</option> <option value="contacts" {if permission === "contacts"} selected="true" {/if}>__MSG__MY_CONTACTS_ONLY__</option> <option value="private" {if permission === "private"} selected="true" {/if}>__MSG__PRIVATE__</option> </select> </div> --></div> <span style="display:none" id="userpermissions_notification_title">__MSG__AREA_PERMISSIONS__</span> <span style="display:none" id="userpermissions_notification_body">__MSG__AREA_PERMISSIONS_SUCCESSFULLY_CHANGED__</span> <span style="display:none" id="userpermissions_notification_error_body">__MSG__AREA_PERMISSIONS_NOT_CHANGED__</span> <!-- JAVASCRIPT --> <script type="text/javascript" src="/devwidgets/userpermissions/javascript/userpermissions.js"></script>
jonmhays/3akai-ux
devwidgets/userpermissions/userpermissions.html
HTML
apache-2.0
2,058
{% capture server_version %}2.1{% endcapture %} <h3 id="puppetserver-{{server_version}}-docs">Puppet Server {{ server_version }} Docs</h3> <ul> <li><a href="/puppetserver/{{ server_version }}/index.html">Index</a></li> <li><a href="/puppetserver/{{ server_version }}/services_master_puppetserver.html">About Puppet Server</a></li> <li><a href="/puppetserver/{{ server_version }}/release_notes.html">Release Notes</a></li> <li><a href="/puppetserver/{{ server_version }}/puppetserver_vs_passenger.html">Notable Differences vs. the Apache/Passenger Stack</a></li> <li><a href="/puppetserver/{{ server_version }}/install_from_packages.html">Installation</a></li> <li><a href="/puppetserver/{{ server_version }}/configuration.html">Configuring Puppet Server</a></li> <li><a href="/puppetserver/{{ server_version }}/puppet_conf_setting_diffs.html">Differing Behavior in puppet.conf</a></li> <li><a href="/puppetserver/{{ server_version }}/gems.html">Using Ruby Gems</a></li> <li><a href="/puppetserver/{{ server_version }}/subcommands.html">Subcommands</a></li> <li><a href="/puppetserver/{{ server_version }}/compatibility_with_puppet_agent.html">Backwards Compatibility With Puppet 3 Agents</a></li> <li><a href="/puppetserver/{{ server_version }}/external_ca_configuration.html">Using an External CA</a></li> <li><a href="/puppetserver/{{ server_version }}/external_ssl_termination.html">External SSL Termination</a></li> <li><a href="/puppetserver/{{ server_version }}/tuning_guide.html">Tuning Guide</a></li> <li><strong>Known Issues and Workarounds</strong> <ul> <li><a href="/puppetserver/{{ server_version }}/known_issues.html">Known Issues</a></li> <li><a href="/puppetserver/{{ server_version }}/ssl_server_certificate_change_and_virtual_ips.html">SSL Problems With Load-Balanced PuppetDB Servers ("Server Certificate Change" error)</a></li> </ul> </li> <li><strong>Administrative API</strong> <ul> <li><a href="/puppetserver/{{ server_version }}/admin-api/v1/environment-cache.html">Environment Cache</a></li> <li><a href="/puppetserver/{{ server_version }}/admin-api/v1/jruby-pool.html">JRuby Pool</a></li> </ul> </li> <li><strong>Developer Info</strong> <ul> <li><a href="/puppetserver/{{ server_version }}/dev_debugging.html">Debugging</a></li> <li><a href="/puppetserver/{{ server_version }}/dev_running_from_source.html">Running From Source</a></li> <li><a href="/puppetserver/{{ server_version }}/dev_trace_func.html">Tracing Code Events</a></li> </ul> </li> </ul>
cgvarela/puppet-server
documentation/_puppetserver_nav.html
HTML
apache-2.0
2,720
<div class="modal fade" id="gh-delete-series-modal" tabindex="-1" role="dialog" aria-labelledby="modal-title" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header gh-warning"> <button type="button" class="close" data-dismiss="modal"> <span aria-hidden="true">×</span> <span class="sr-only">Close</span> </button> <h4 class="modal-title" id="modal-title">Are you sure?</h4> </div> <div class="modal-body"> <% if (data.isBorrowedFrom) { %> <p>You are removing the borrowed series <strong><%- data.series.displayName %></strong> and all of its events from <i><%- data.module.displayName %></i>.</p> <% } else { %> <p>You are deleting the series <strong><%- data.series.displayName %></strong> and all of its events from <i><%- data.module.displayName %></i>.</p> <% } %> <% if (data.isBorrowedTo && !data.isBorrowedFrom) { %> <p class="gh-borrowed-list-description">The series has been borrowed in <%= data.series.OrgUnits.length - 1 %> other module<% if (data.series.OrgUnits.length - 1 !== 1) { %>s<% } %>:</p> <ul class="gh-borrowed-list"> <% _.each(data.series.OrgUnits, function(orgunit, index) { %> <% if (index) { %> <li> <p><%- orgunit.tripos.displayName %> / <%- orgunit.part.displayName %></p> <p><%- orgunit.displayName %></p> </li> <% } %> <% }); %> </ul> <% } %> <small>Students will not be able to add this series to their calendars and in calendars already added, it will be removed within a few hours</small> </div> <div class="modal-footer"> <button type="button" class="btn btn-link pull-left" data-dismiss="modal">Cancel</button> <button type="button" id="gh-delete-series-delete" class="btn btn-default pull-right">Delete</button> </div> </div> </div> </div>
CUL-DigitalServices/grasshopper-ui
shared/gh/partials/tenant-admin/admin-delete-series-modal.html
HTML
apache-2.0
2,346
<link rel='import' href='../../bower/polymer/polymer.html'> <link rel='import' href='button.html'> <link rel='import' href='../../bower/core-tooltip/core-tooltip.html'> <link rel='import' href='../../bower/core-icons/core-icons.html'> <link rel='import' href='../../bower/core-signals/core-signals.html'> <link rel='import' href='faq-link.html'> <link rel='import' href='dialog.html'> <polymer-element name='uproxy-troubleshoot' attributes='titleText'> <template> <style> :host { text-align: center; } h1 { font-size: 1.5em; margin-top: 1.4em; } core-icon[icon="clear"] { float: right; } core-icon[icon="help"] { height: 15px !important; width: 15px !important; } core-icon[icon="help"], core-icon[icon="clear"] { color: grey; opacity: 0.6; margin-bottom: 2px; -webkit-transition: all 0.23s !important; -moz-transition: all 0.23s !important; transition: all 0.23s !important; } core-icon[icon="help"]:hover, core-icon[icon="clear"]:hover { opacity: 1; } core-icon.button { cursor: pointer; } uproxy-button { margin: 10px 2px 3px 2px; font-size: 12px; } uproxy-dialog { top: 20%; min-width: 305px; z-index: 1002; /* Must be greater than core-overlay-backdrop */ } uproxy-dialog::shadow #scroller { padding: 12px; } #askToAnalyze, #analyzeNetwork, #analyzedNetwork { padding: 0px 15px 15px; color: rgba(0,0,0,0.55); } #analyzeNetwork { text-align: center; font-size: 14px; } #analyzedNetwork { text-align: left; } #analyzedNetworkButtons { text-align: center; } uproxy-faq-link .linkText { text-decoration: underline; color: rgba(0,0,0,0.40); } </style> <!-- Listen for the 'open-troubleshoot' event, which the user can trigger after proxying fails. --> <core-signals on-core-signal-open-troubleshoot='{{ open }}'></core-signals> <uproxy-dialog backdrop layered='false' id='troubleshootDialog'> <core-icon class="button" icon="clear" on-tap='{{ close }}'></core-icon> <h1>{{ titleText }}</h1> <!-- First screen in the dialog asks user if they want to diagnose their network. --> <div id='askToAnalyze' hidden?='{{ analyzingNetwork || analyzedNetwork }}'> <p> {{ "ASK_TO_ANALYZE" | $$ }} <uproxy-faq-link anchor='doesUproxyLogData'> <core-icon icon="help"></core-icon> </uproxy-faq-link><br> </p> <uproxy-button on-tap='{{ getNatType }}'> {{ "YES" | $$ }} </uproxy-button> <uproxy-button on-tap='{{ close }}'> {{ "NO" | $$ }} </uproxy-button> </div> <!-- Second screen in dialog shows a loading bar as we get NAT type. --> <div id='analyzeNetwork' hidden?='{{ !analyzingNetwork }}'> {{ "ANALYZING_NETWORK" | $$ }}<br> <paper-progress indeterminate='true'></paper-progress> </div> <!-- Third screen in dialog shows NAT type and asks user if they want to submit feedback. --> <div id='analyzedNetwork' hidden?='{{ !analyzedNetwork }}'> {{ "ANALYSIS_RESULTS" | $$({ natType: natType, natImpact: natImpact }) }} <uproxy-faq-link anchor='doesUproxyLogData'> <span class='linkText'>{{ "MORE_INFO" | $$ }}</span> </uproxy-faq-link><br><br> {{ "ASK_TO_SUBMIT_ANALYSIS" | $$ }} <uproxy-faq-link anchor='doesUproxyLogData'> <span class='linkText'>{{ "PRIVACY_POLICY" | $$ }}</span> </uproxy-faq-link> <br> <div id='analyzedNetworkButtons'> <uproxy-button on-tap='{{ submitFeedback }}'> {{ "YES" | $$ }} </uproxy-button> <uproxy-button on-tap='{{ close }}'> {{ "NO" | $$ }} </uproxy-button> </div> </div> </uproxy-dialog> </template> <script src='troubleshoot.js'></script> </polymer-element>
MinFu/uproxy
src/generic_ui/polymer/troubleshoot.html
HTML
apache-2.0
4,061
<!DOCTYPE html> <html devsite> <head> <meta name="project_path" value="/web/tools/workbox/_project.yaml" /> <meta name="book_path" value="/web/tools/workbox/_book.yaml" /> <meta name="gtm_var" data-key="docType" data-value="reference"> <title>Source: workbox-strategies/NetworkFirst.mjs</title> <link href="jsdoc.css" rel="stylesheet"> </head> <body> <div id="jsdoc-body-container"> <div id="jsdoc-content"> <div id="jsdoc-content-container"> <div id="jsdoc-banner" role="banner"> </div> <div id="jsdoc-main" role="main"> <header class="page-header"> <h1>Source: workbox-strategies/NetworkFirst.mjs</h1> </header> <article> <pre class="prettyprint linenums"><code>/* Copyright 2018 Google LLC Use of this source code is governed by an MIT-style license that can be found in the LICENSE file or at https://opensource.org/licenses/MIT. */ import {assert} from &#x27;workbox-core/_private/assert.mjs&#x27;; import {cacheNames} from &#x27;workbox-core/_private/cacheNames.mjs&#x27;; import {cacheWrapper} from &#x27;workbox-core/_private/cacheWrapper.mjs&#x27;; import {fetchWrapper} from &#x27;workbox-core/_private/fetchWrapper.mjs&#x27;; import {getFriendlyURL} from &#x27;workbox-core/_private/getFriendlyURL.mjs&#x27;; import {logger} from &#x27;workbox-core/_private/logger.mjs&#x27;; import {WorkboxError} from &#x27;workbox-core/_private/WorkboxError.mjs&#x27;; import {messages} from &#x27;./utils/messages.mjs&#x27;; import {cacheOkAndOpaquePlugin} from &#x27;./plugins/cacheOkAndOpaquePlugin.mjs&#x27;; import &#x27;./_version.mjs&#x27;; /** * An implementation of a * [network first]{@link /web/fundamentals/instant-and-offline/offline-cookbook/#network-falling-back-to-cache} * request strategy. * * By default, this strategy will cache responses with a 200 status code as * well as [opaque responses]{@link /web/tools/workbox/guides/handle-third-party-requests}. * Opaque responses are are cross-origin requests where the response doesn&#x27;t * support [CORS]{@link https://enable-cors.org/}. * * If the network request fails, and there is no cache match, this will throw * a &#x60;WorkboxError&#x60; exception. * * @memberof workbox.strategies */ class NetworkFirst { /** * @param {Object} options * @param {string} options.cacheName Cache name to store and retrieve * requests. Defaults to cache names provided by * [workbox-core]{@link workbox.core.cacheNames}. * @param {Array&amp;lt;Object&gt;} options.plugins [Plugins]{@link /web/tools/workbox/guides/using-plugins} * to use in conjunction with this caching strategy. * @param {Object} options.fetchOptions Values passed along to the * [&#x60;init&#x60;](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch#Parameters) * of all fetch() requests made by this strategy. * @param {Object} options.matchOptions [&#x60;CacheQueryOptions&#x60;](https://w3c.github.io/ServiceWorker/#dictdef-cachequeryoptions) * @param {number} options.networkTimeoutSeconds If set, any network requests * that fail to respond within the timeout will fallback to the cache. * * This option can be used to combat * &quot;[lie-fi]{@link /web/fundamentals/performance/poor-connectivity/#lie-fi}&quot; * scenarios. */ constructor(options &#x3D; {}) { this._cacheName &#x3D; cacheNames.getRuntimeName(options.cacheName); if (options.plugins) { let isUsingCacheWillUpdate &#x3D; options.plugins.some((plugin) &#x3D;&gt; !!plugin.cacheWillUpdate); this._plugins &#x3D; isUsingCacheWillUpdate ? options.plugins : [cacheOkAndOpaquePlugin, ...options.plugins]; } else { // No plugins passed in, use the default plugin. this._plugins &#x3D; [cacheOkAndOpaquePlugin]; } this._networkTimeoutSeconds &#x3D; options.networkTimeoutSeconds; if (process.env.NODE_ENV !&#x3D;&#x3D; &#x27;production&#x27;) { if (this._networkTimeoutSeconds) { assert.isType(this._networkTimeoutSeconds, &#x27;number&#x27;, { moduleName: &#x27;workbox-strategies&#x27;, className: &#x27;NetworkFirst&#x27;, funcName: &#x27;constructor&#x27;, paramName: &#x27;networkTimeoutSeconds&#x27;, }); } } this._fetchOptions &#x3D; options.fetchOptions || null; this._matchOptions &#x3D; options.matchOptions || null; } /** * This method will perform a request strategy and follows an API that * will work with the * [Workbox Router]{@link workbox.routing.Router}. * * @param {Object} options * @param {Request} options.request The request to run this strategy for. * @param {Event} [options.event] The event that triggered the request. * @return {Promise&amp;lt;Response&gt;} */ async handle({event, request}) { return this.makeRequest({ event, request: request || event.request, }); } /** * This method can be used to perform a make a standalone request outside the * context of the [Workbox Router]{@link workbox.routing.Router}. * * See &quot;[Advanced Recipes](/web/tools/workbox/guides/advanced-recipes#make-requests)&quot; * for more usage information. * * @param {Object} options * @param {Request|string} options.request Either a * [&#x60;Request&#x60;]{@link https://developer.mozilla.org/en-US/docs/Web/API/Request} * object, or a string URL, corresponding to the request to be made. * @param {FetchEvent} [options.event] If provided, &#x60;event.waitUntil()&#x60; will * be called automatically to extend the service worker&#x27;s lifetime. * @return {Promise&amp;lt;Response&gt;} */ async makeRequest({event, request}) { const logs &#x3D; []; if (typeof request &#x3D;&#x3D;&#x3D; &#x27;string&#x27;) { request &#x3D; new Request(request); } if (process.env.NODE_ENV !&#x3D;&#x3D; &#x27;production&#x27;) { assert.isInstance(request, Request, { moduleName: &#x27;workbox-strategies&#x27;, className: &#x27;NetworkFirst&#x27;, funcName: &#x27;handle&#x27;, paramName: &#x27;makeRequest&#x27;, }); } const promises &#x3D; []; let timeoutId; if (this._networkTimeoutSeconds) { const {id, promise} &#x3D; this._getTimeoutPromise({request, event, logs}); timeoutId &#x3D; id; promises.push(promise); } const networkPromise &#x3D; this._getNetworkPromise({timeoutId, request, event, logs}); promises.push(networkPromise); // Promise.race() will resolve as soon as the first promise resolves. let response &#x3D; await Promise.race(promises); // If Promise.race() resolved with null, it might be due to a network // timeout + a cache miss. If that were to happen, we&#x27;d rather wait until // the networkPromise resolves instead of returning null. // Note that it&#x27;s fine to await an already-resolved promise, so we don&#x27;t // have to check to see if it&#x27;s still &quot;in flight&quot;. if (!response) { response &#x3D; await networkPromise; } if (process.env.NODE_ENV !&#x3D;&#x3D; &#x27;production&#x27;) { logger.groupCollapsed( messages.strategyStart(&#x27;NetworkFirst&#x27;, request)); for (let log of logs) { logger.log(log); } messages.printFinalResponse(response); logger.groupEnd(); } if (!response) { throw new WorkboxError(&#x27;no-response&#x27;, {url: request.url}); } return response; } /** * @param {Object} options * @param {Request} options.request * @param {Array} options.logs A reference to the logs array * @param {Event} [options.event] * @return {Promise&amp;lt;Response&gt;} * * @private */ _getTimeoutPromise({request, logs, event}) { let timeoutId; const timeoutPromise &#x3D; new Promise((resolve) &#x3D;&gt; { const onNetworkTimeout &#x3D; async () &#x3D;&gt; { if (process.env.NODE_ENV !&#x3D;&#x3D; &#x27;production&#x27;) { logs.push(&#x60;Timing out the network response at &#x60; + &#x60;${this._networkTimeoutSeconds} seconds.&#x60;); } resolve(await this._respondFromCache({request, event})); }; timeoutId &#x3D; setTimeout( onNetworkTimeout, this._networkTimeoutSeconds * 1000, ); }); return { promise: timeoutPromise, id: timeoutId, }; } /** * @param {Object} options * @param {number|undefined} options.timeoutId * @param {Request} options.request * @param {Array} options.logs A reference to the logs Array. * @param {Event} [options.event] * @return {Promise&amp;lt;Response&gt;} * * @private */ async _getNetworkPromise({timeoutId, request, logs, event}) { let error; let response; try { response &#x3D; await fetchWrapper.fetch({ request, event, fetchOptions: this._fetchOptions, plugins: this._plugins, }); } catch (err) { error &#x3D; err; } if (timeoutId) { clearTimeout(timeoutId); } if (process.env.NODE_ENV !&#x3D;&#x3D; &#x27;production&#x27;) { if (response) { logs.push(&#x60;Got response from network.&#x60;); } else { logs.push(&#x60;Unable to get a response from the network. Will respond &#x60; + &#x60;with a cached response.&#x60;); } } if (error || !response) { response &#x3D; await this._respondFromCache({request, event}); if (process.env.NODE_ENV !&#x3D;&#x3D; &#x27;production&#x27;) { if (response) { logs.push(&#x60;Found a cached response in the &#x27;${this._cacheName}&#x27;&#x60; + &#x60; cache.&#x60;); } else { logs.push(&#x60;No response found in the &#x27;${this._cacheName}&#x27; cache.&#x60;); } } } else { // Keep the service worker alive while we put the request in the cache const responseClone &#x3D; response.clone(); const cachePut &#x3D; cacheWrapper.put({ cacheName: this._cacheName, request, response: responseClone, event, plugins: this._plugins, }); if (event) { try { // The event has been responded to so we can keep the SW alive to // respond to the request event.waitUntil(cachePut); } catch (err) { if (process.env.NODE_ENV !&#x3D;&#x3D; &#x27;production&#x27;) { logger.warn(&#x60;Unable to ensure service worker stays alive when &#x60; + &#x60;updating cache for &#x27;${getFriendlyURL(request.url)}&#x27;.&#x60;); } } } } return response; } /** * Used if the network timeouts or fails to make the request. * * @param {Object} options * @param {Request} request The request to match in the cache * @param {Event} [options.event] * @return {Promise&amp;lt;Object&gt;} * * @private */ _respondFromCache({event, request}) { return cacheWrapper.match({ cacheName: this._cacheName, request, event, matchOptions: this._matchOptions, plugins: this._plugins, }); } } export {NetworkFirst}; </code></pre> </article> </div> </div> <nav id="jsdoc-toc-nav" role="navigation"></nav> </div> </div> </body> </html>
lucab85/WebFundamentals
src/content/en/tools/workbox/reference-docs/v4/workbox-strategies_NetworkFirst.mjs.html
HTML
apache-2.0
11,535
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Minim : : Summer : : sampleRate</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <link href="stylesheet.css" rel="stylesheet" type="text/css"> </head> <body> <center> <table class="mainTable"> <tr> <td class="header"> <span class="indexheader">Minim</span><br/> <span class="indexnavigation"> <a href="index.html">core</a> | <a href="index_ugens.html">ugens</a> | <a href="index_analysis.html">analysis</a> </span> </td> <td class="border-left">&nbsp;</td> </tr> <tr> <td class="classNavigation"> <p class="mainTextName"><A href="ugen_class_ugen.html">UGen</A></p> <p class="methodName">sampleRate</p> </td> <td class="mainText border-left"> <p class="memberSectionHeader">Description</p> Returns the sample rate of this UGen. <p class="memberSectionHeader">Signature</p> <pre>float sampleRate() </pre> <p class="memberSectionHeader">Returns</p> <p>float: the current sample rate of this UGen</p> <p class="memberSectionHeader">Related</p> <p class="memberSectionHeader">Example</p> <pre>None available</pre> <p class="memberSectionHeader">Usage</p> Web & Application </td> </tr> </table> </center> </body> </html>
UTSDataArena/examples
processing/sketchbook/libraries/minim/documentation/summer_method_samplerate.html
HTML
bsd-2-clause
1,517
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>ORKScaleRangeDescriptionLabel Class Reference</title> <link rel="stylesheet" href="../css/style.css"> <meta name="viewport" content="initial-scale=1, maximum-scale=1.4"> <meta name="generator" content="appledoc 2.2.1 (build 1334)"> </head> <body class="appledoc"> <header> <div class="container" class="hide-in-xcode"> <h1 id="library-title"> <a href="../index.html">ResearchKit </a> </h1> <p id="developer-home"> <a href="../index.html">ResearchKit</a> </p> </div> </header> <aside> <div class="container"> <nav> <ul id="header-buttons" role="toolbar"> <li><a href="../index.html">Index</a></li> <li><a href="../hierarchy.html">Hierarchy</a></li> <li id="on-this-page" role="navigation"> <label> On This Page <div class="chevron"> <div class="chevy chevron-left"></div> <div class="chevy chevron-right"></div> </div> <select id="jump-to"> <option value="top">Jump To&#133;</option> <option value="overview">Overview</option> </select> </label> </li> </ul> </nav> </div> </aside> <article> <div id="overview_contents" class="container"> <div id="content"> <main role="main"> <h1 class="title">ORKScaleRangeDescriptionLabel Class Reference</h1> <div class="section section-specification"><table cellspacing="0"><tbody> <tr> <th>Inherits from</th> <td><a href="../Classes/ORKScaleRangeLabel.html">ORKScaleRangeLabel</a> : <a href="../Classes/ORKLabel.html">ORKLabel</a> : UILabel</td> </tr><tr> <th>Declared in</th> <td>ORKScaleRangeDescriptionLabel.h<br />ORKScaleRangeDescriptionLabel.m</td> </tr> </tbody></table></div> <div class="section section-overview"> <a title="Overview" name="overview"></a> <h2 class="subtitle subtitle-overview">Overview</h2> <p>Start/End description of the range in scale slider.</p> </div> </main> <footer> <div class="footer-copyright"> <p class="copyright">Copyright &copy; 2018 ResearchKit. All rights reserved. Updated: 2018-07-23</p> <p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1334)</a>.</p> </div> </footer> </div> </div> </article> <script src="../js/script.js"></script> </body> </html>
jeremiahyan/ResearchKit
docs/org.researchkit.ResearchKit.docset/Contents/Resources/Documents/Classes/ORKScaleRangeDescriptionLabel.html
HTML
bsd-3-clause
2,564
<!DOCTYPE html> <title>Test "video" as a source for "canvas".</title> <script src="../resources/testharness.js"></script> <script src="../resources/testharnessreport.js"></script> <script src="media-file.js"></script> <video></video> <canvas width="160" height="120"></canvas> <script> async_test(function(t) { var ctx; var width; var height; var results = { current: 0, values: [ { time: 0, r: 255, g: 255, b: 0 }, { time: 2, r: 0, g: 9, b: 237 }, { time: 4, r: 0, g: 32, b: 209 }, { time: 6, r: 0, g: 54, b: 182 }, { time: 8, r: 0, g: 77, b: 154 }, { time: 10, r: 0, g: 97, b: 126 } ] }; var video = document.querySelector("video"); video.onloadedmetadata = t.step_func(function() { width = video.videoWidth / 2; height = video.videoHeight / 2; ctx = document.querySelector("canvas").getContext("2d"); ctx.fillStyle = "yellow"; ctx.fillRect(0, 0, width, height); testFrame(); }); video.onseeked = t.step_func(function() { ctx.drawImage(video, 0, 0, width, height); testFrame(); }); function testFrame() { var expected = results.values[results.current]; var frame = ctx.getImageData(0, 0, width, height); var r = frame.data[4 * 2 * width + 16 + 0]; var g = frame.data[4 * 2 * width + 16 + 1]; var b = frame.data[4 * 2 * width + 16 + 2]; assert_equals(r, expected.r); assert_equals(g, expected.g); assert_equals(b, expected.b); if (++results.current == results.values.length) t.done(); else video.currentTime = results.values[results.current].time; } video.src = findMediaFile("video", "content/counting"); }); </script>
danakj/chromium
third_party/WebKit/LayoutTests/media/video-canvas.html
HTML
bsd-3-clause
1,844
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Example - example-example55-production</title> <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.min.js"></script> </head> <body ng-app=""> Check me to make text readonly: <input type="checkbox" ng-model="checked"><br/> <input type="text" ng-readonly="checked" value="I'm Angular"/> </body> </html>
viral810/ngSimpleCMS
web/bundles/sunraangular/js/angular/angular-1.3.3/docs/examples/example-example55/index-production.html
HTML
mit
410
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Example - example-example25-production</title> <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.min.js"></script> <script src="script.js"></script> </head> <body ng-app="expressionExample"> <div class="example2" ng-controller="ExampleController"> Name: <input ng-model="name" type="text"/> <button ng-click="greet()">Greet</button> <button ng-click="window.alert('Should not see me')">Won't greet</button> </div> </body> </html>
viral810/ngSimpleCMS
web/bundles/sunraangular/js/angular/angular-1.3.3/docs/examples/example-example25/index-production.html
HTML
mit
555
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>SFML - Simple and Fast Multimedia Library</title> <meta http-equiv="Content-Type" content="text/html;"/> <meta charset="utf-8"/> <!--<link rel='stylesheet' type='text/css' href="http://fonts.googleapis.com/css?family=Ubuntu:400,700,400italic"/>--> <link rel="stylesheet" type="text/css" href="doxygen.css" title="default" media="screen,print" /> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> </head> <body> <div id="banner-container"> <div id="banner"> <span id="sfml">SFML 2.3.2</span> </div> </div> <div id="content"> <!-- Generated by Doxygen 1.8.8 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li><a href="modules.html"><span>Modules</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">Related Pages</div> </div> </div><!--header--> <div class="contents"> <div class="textblock">Here is a list of all related documentation pages:</div><div class="directory"> <table class="directory"> <tr id="row_0_" class="even"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><a class="el" href="deprecated.html" target="_self">Deprecated List</a></td><td class="desc"></td></tr> </table> </div><!-- directory --> </div><!-- contents --> </div> <div id="footer-container"> <div id="footer"> SFML is licensed under the terms and conditions of the <a href="http://www.sfml-dev.org/license.php">zlib/png license</a>.<br> Copyright &copy; Laurent Gomila &nbsp;::&nbsp; Documentation generated by <a href="http://www.doxygen.org/" title="doxygen website">doxygen</a> &nbsp;::&nbsp; </div> </div> </body> </html>
astrellon/cotsb
sfml/win/SFML-2.3.2/doc/html/pages.html
HTML
mit
2,387
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <HTML style="overflow:auto;"> <HEAD> <meta name="generator" content="JDiff v1.1.0"> <!-- Generated by the JDiff Javadoc doclet --> <!-- (http://www.jdiff.org) --> <meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared."> <meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet"> <TITLE> android.util.SparseBooleanArray </TITLE> <link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" /> <link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" /> <noscript> <style type="text/css"> body{overflow:auto;} #body-content{position:relative; top:0;} #doc-content{overflow:visible;border-left:3px solid #666;} #side-nav{padding:0;} #side-nav .toggle-list ul {display:block;} #resize-packages-nav{border-bottom:3px solid #666;} </style> </noscript> <style type="text/css"> </style> </HEAD> <BODY> <!-- Start of nav bar --> <a name="top"></a> <div id="header" style="margin-bottom:0;padding-bottom:0;"> <div id="headerLeft"> <a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a> </div> <div id="headerRight"> <div id="headerLinks"> <!-- <img src="/assets/images/icon_world.jpg" alt="" /> --> <span class="text"> <!-- &nbsp;<a href="#">English</a> | --> <nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr> </span> </div> <div class="and-diff-id" style="margin-top:6px;margin-right:8px;"> <table class="diffspectable"> <tr> <td colspan="2" class="diffspechead">API Diff Specification</td> </tr> <tr> <td class="diffspec" style="padding-top:.25em">To Level:</td> <td class="diffvaluenew" style="padding-top:.25em">14</td> </tr> <tr> <td class="diffspec">From Level:</td> <td class="diffvalueold">13</td> </tr> <tr> <td class="diffspec">Generated</td> <td class="diffvalue">2011.10.06 23:19</td> </tr> </table> </div><!-- End and-diff-id --> <div class="and-diff-id" style="margin-right:8px;"> <table class="diffspectable"> <tr> <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a> </tr> </table> </div> <!-- End and-diff-id --> </div> <!-- End headerRight --> </div> <!-- End header --> <div id="body-content" xstyle="padding:12px;padding-right:18px;"> <div id="doc-content" style="position:relative;"> <div id="mainBodyFluid"> <H2> Class android.util.<A HREF="../../../../reference/android/util/SparseBooleanArray.html" target="_top"><font size="+2"><code>SparseBooleanArray</code></font></A> </H2> <p><font xsize="+1">Added interface <code>java.lang.Cloneable</code>.<br></font> <a NAME="constructors"></a> <a NAME="methods"></a> <p> <a NAME="Changed"></a> <TABLE summary="Changed Methods" WIDTH="100%"> <TR> <TH VALIGN="TOP" COLSPAN=3>Changed Methods</FONT></TD> </TH> <TR BGCOLOR="#FFFFFF" CLASS="TableRowColor"> <TD VALIGN="TOP" WIDTH="25%"> <A NAME="android.util.SparseBooleanArray.clone_changed()"></A> <nobr><code>SparseBooleanArray</code>&nbsp;<A HREF="../../../../reference/android/util/SparseBooleanArray.html#clone()" target="_top"><code>clone</code></A>() </nobr> </TD> <TD VALIGN="TOP" WIDTH="30%"> Change in return type from <code>Object</code> to <code>SparseBooleanArray</code>.<br> Change in exceptions thrown from <code>java.lang.CloneNotSupportedException</code> to no exceptions.<br> Method was inherited from <code>java.lang.Object</code>, but is now defined locally. Change of visibility from protected to public.<br> </TD> <TD>&nbsp;</TD> </TR> </TABLE> &nbsp; <a NAME="fields"></a> </div> <div id="footer"> <div id="copyright"> Except as noted, this content is licensed under <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>. For details and restrictions, see the <a href="/license.html">Content License</a>. </div> <div id="footerlinks"> <p> <a href="http://www.android.com/terms.html">Site Terms of Service</a> - <a href="http://www.android.com/privacy.html">Privacy Policy</a> - <a href="http://www.android.com/branding.html">Brand Guidelines</a> </p> </div> </div> <!-- end footer --> </div><!-- end doc-content --> </div> <!-- end body-content --> <script src="//www.google-analytics.com/ga.js" type="text/javascript"> </script> <script type="text/javascript"> try { var pageTracker = _gat._getTracker("UA-5831155-1"); pageTracker._setAllowAnchor(true); pageTracker._initData(); pageTracker._trackPageview(); } catch(e) {} </script> </BODY> </HTML>
AzureZhao/android-developer-cn
sdk/api_diff/14/changes/android.util.SparseBooleanArray.html
HTML
mit
5,186
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Testing leftmost-longest searches (platform = linux, compiler = GNU C++ version 6.3.0)</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.79.1"> <link rel="home" href="../../../index.html" title="Boost.Regex 5.1.3"> <link rel="up" href="../performance.html" title="Performance"> <link rel="prev" href="section_id4128344975.html" title="Testing simple Perl matches (platform = Windows x64, compiler = Microsoft Visual C++ version 14.1)"> <link rel="next" href="../standards.html" title="Standards Conformance"> </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="section_id4128344975.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../performance.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="../standards.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_regex.background.performance.section_id4148872883"></a><a class="link" href="section_id4148872883.html" title="Testing leftmost-longest searches (platform = linux, compiler = GNU C++ version 6.3.0)">Testing leftmost-longest searches (platform = linux, compiler = GNU C++ version 6.3.0)</a> </h4></div></div></div> <div class="table"> <a name="boost_regex.background.performance.section_id4148872883.table_Testing_leftmost_longest_searches_platform_linux_compiler_GNU_C_version_6_3_0_"></a><p class="title"><b>Table&#160;15.&#160;Testing leftmost-longest searches (platform = linux, compiler = GNU C++ version 6.3.0)</b></p> <div class="table-contents"><table class="table" summary="Testing leftmost-longest searches (platform = linux, compiler = GNU C++ version 6.3.0)"> <colgroup> <col> <col> <col> <col> </colgroup> <thead><tr> <th> <p> Expression<br> Text </p> </th> <th> <p> boost 1.65 </p> </th> <th> <p> std::regex </p> </th> <th> <p> POSIX </p> </th> </tr></thead> <tbody> <tr> <td> <p> <code class="literal">&lt;a[^&gt;]+href=("[^"]*"|[^[:space:]]+)[^&gt;]*&gt;</code><br> In file: ..<span class="emphasis"><em>..</em></span>../libs/libraries.htm </p> </td> <td> <p> <span class="green">1.00<br> (107026ns)</span> </p> </td> <td> <p> <span class="blue">1.44<br> (154551ns)</span> </p> </td> <td> <p> <span class="blue">1.64<br> (175184ns)</span> </p> </td> </tr> <tr> <td> <p> <code class="literal">&lt;img[^&gt;]+src=("[^"]*"|[^[:space:]]+)[^&gt;]*&gt;</code><br> In file: ..<span class="emphasis"><em>..</em></span>../libs/libraries.htm </p> </td> <td> <p> <span class="green">1.00<br> (15420ns)</span> </p> </td> <td> <p> <span class="red">6.89<br> (106275ns)</span> </p> </td> <td> <p> <span class="blue">1.59<br> (24567ns)</span> </p> </td> </tr> <tr> <td> <p> <code class="literal">Beman|John|Dave</code><br> In file: ..<span class="emphasis"><em>..</em></span>../libs/libraries.htm </p> </td> <td> <p> <span class="green">1.03<br> (5399ns)</span> </p> </td> <td> <p> <span class="red">36.27<br> (190577ns)</span> </p> </td> <td> <p> <span class="green">1.00<br> (5254ns)</span> </p> </td> </tr> </tbody> </table></div> </div> <br class="table-break"> </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; 1998-2013 John Maddock<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="section_id4128344975.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../performance.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="../standards.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
vslavik/poedit
deps/boost/libs/regex/doc/html/boost_regex/background/performance/section_id4148872883.html
HTML
mit
6,338
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="refresh" content="0;URL=../../../libc/constant.PF_AX25.html"> </head> <body> <p>Redirecting to <a href="../../../libc/constant.PF_AX25.html">../../../libc/constant.PF_AX25.html</a>...</p> <script>location.replace("../../../libc/constant.PF_AX25.html" + location.search + location.hash);</script> </body> </html>
malept/guardhaus
main/libc/unix/linux_like/constant.PF_AX25.html
HTML
mit
381
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Phaser Class: Delta</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="Phaser.KeyCode.html">KeyCode</a> </li> <li class="class-depth-0"> <a href="PIXI.html">PIXI</a> </li> </ul> </li> <li class="dropdown"> <a href="classes.list.html" class="dropdown-toggle" data-toggle="dropdown">Classes<b class="caret"></b></a> <ul class="dropdown-menu "> <li class="class-depth-1"> <a href="Phaser.Animation.html">Animation</a> </li> <li class="class-depth-1"> <a href="Phaser.AnimationManager.html">AnimationManager</a> </li> <li class="class-depth-1"> <a href="Phaser.AnimationParser.html">AnimationParser</a> </li> <li class="class-depth-1"> <a href="Phaser.ArraySet.html">ArraySet</a> </li> <li class="class-depth-1"> <a href="Phaser.ArrayUtils.html">ArrayUtils</a> </li> <li class="class-depth-1"> <a href="Phaser.AudioSprite.html">AudioSprite</a> </li> <li class="class-depth-1"> <a href="Phaser.BitmapData.html">BitmapData</a> </li> <li class="class-depth-1"> <a href="Phaser.BitmapText.html">BitmapText</a> </li> <li class="class-depth-1"> <a href="Phaser.Bullet.html">Bullet</a> </li> <li class="class-depth-1"> <a href="Phaser.Button.html">Button</a> </li> <li class="class-depth-1"> <a href="Phaser.Cache.html">Cache</a> </li> <li class="class-depth-1"> <a href="Phaser.Camera.html">Camera</a> </li> <li class="class-depth-1"> <a href="Phaser.Canvas.html">Canvas</a> </li> <li class="class-depth-1"> <a href="Phaser.Circle.html">Circle</a> </li> <li class="class-depth-1"> <a href="Phaser.Color.html">Color</a> </li> <li class="class-depth-2"> <a href="Phaser.Component.Angle.html">Angle</a> </li> <li class="class-depth-2"> <a href="Phaser.Component.Animation.html">Animation</a> </li> <li class="class-depth-2"> <a href="Phaser.Component.AutoCull.html">AutoCull</a> </li> <li class="class-depth-2"> <a href="Phaser.Component.Bounds.html">Bounds</a> </li> <li class="class-depth-2"> <a href="Phaser.Component.BringToTop.html">BringToTop</a> </li> <li class="class-depth-2"> <a href="Phaser.Component.Core.html">Core</a> </li> <li class="class-depth-2"> <a href="Phaser.Component.Crop.html">Crop</a> </li> <li class="class-depth-2"> <a href="Phaser.Component.Delta.html">Delta</a> </li> <li class="class-depth-2"> <a href="Phaser.Component.Destroy.html">Destroy</a> </li> <li class="class-depth-2"> <a href="Phaser.Component.FixedToCamera.html">FixedToCamera</a> </li> <li class="class-depth-2"> <a href="Phaser.Component.Health.html">Health</a> </li> <li class="class-depth-2"> <a href="Phaser.Component.InCamera.html">InCamera</a> </li> <li class="class-depth-2"> <a href="Phaser.Component.InputEnabled.html">InputEnabled</a> </li> <li class="class-depth-2"> <a href="Phaser.Component.InWorld.html">InWorld</a> </li> <li class="class-depth-2"> <a href="Phaser.Component.LifeSpan.html">LifeSpan</a> </li> <li class="class-depth-2"> <a href="Phaser.Component.LoadTexture.html">LoadTexture</a> </li> <li class="class-depth-2"> <a href="Phaser.Component.Overlap.html">Overlap</a> </li> <li class="class-depth-2"> <a href="Phaser.Component.PhysicsBody.html">PhysicsBody</a> </li> <li class="class-depth-2"> <a href="Phaser.Component.Reset.html">Reset</a> </li> <li class="class-depth-2"> <a href="Phaser.Component.ScaleMinMax.html">ScaleMinMax</a> </li> <li class="class-depth-2"> <a href="Phaser.Component.Smoothed.html">Smoothed</a> </li> <li class="class-depth-1"> <a href="Phaser.Create.html">Create</a> </li> <li class="class-depth-1"> <a href="Phaser.Creature.html">Creature</a> </li> <li class="class-depth-1"> <a href="Phaser.Device.html">Device</a> </li> <li class="class-depth-1"> <a href="Phaser.DeviceButton.html">DeviceButton</a> </li> <li class="class-depth-1"> <a href="Phaser.DOM.html">DOM</a> </li> <li class="class-depth-1"> <a href="Phaser.Easing.html">Easing</a> </li> <li class="class-depth-2"> <a href="Phaser.Easing.Back.html">Back</a> </li> <li class="class-depth-2"> <a href="Phaser.Easing.Bounce.html">Bounce</a> </li> <li class="class-depth-2"> <a href="Phaser.Easing.Circular.html">Circular</a> </li> <li class="class-depth-2"> <a href="Phaser.Easing.Cubic.html">Cubic</a> </li> <li class="class-depth-2"> <a href="Phaser.Easing.Elastic.html">Elastic</a> </li> <li class="class-depth-2"> <a href="Phaser.Easing.Exponential.html">Exponential</a> </li> <li class="class-depth-2"> <a href="Phaser.Easing.Linear.html">Linear</a> </li> <li class="class-depth-2"> <a href="Phaser.Easing.Quadratic.html">Quadratic</a> </li> <li class="class-depth-2"> <a href="Phaser.Easing.Quartic.html">Quartic</a> </li> <li class="class-depth-2"> <a href="Phaser.Easing.Quintic.html">Quintic</a> </li> <li class="class-depth-2"> <a href="Phaser.Easing.Sinusoidal.html">Sinusoidal</a> </li> <li class="class-depth-1"> <a href="Phaser.Ellipse.html">Ellipse</a> </li> <li class="class-depth-1"> <a href="Phaser.Events.html">Events</a> </li> <li class="class-depth-1"> <a href="Phaser.Filter.html">Filter</a> </li> <li class="class-depth-1"> <a href="Phaser.FlexGrid.html">FlexGrid</a> </li> <li class="class-depth-1"> <a href="Phaser.FlexLayer.html">FlexLayer</a> </li> <li class="class-depth-1"> <a href="Phaser.Frame.html">Frame</a> </li> <li class="class-depth-1"> <a href="Phaser.FrameData.html">FrameData</a> </li> <li class="class-depth-1"> <a href="Phaser.Game.html">Game</a> </li> <li class="class-depth-1"> <a href="Phaser.GameObjectCreator.html">GameObjectCreator</a> </li> <li class="class-depth-1"> <a href="Phaser.GameObjectFactory.html">GameObjectFactory</a> </li> <li class="class-depth-1"> <a href="Phaser.Gamepad.html">Gamepad</a> </li> <li class="class-depth-1"> <a href="Phaser.Graphics.html">Graphics</a> </li> <li class="class-depth-1"> <a href="Phaser.Group.html">Group</a> </li> <li class="class-depth-1"> <a href="Phaser.Image.html">Image</a> </li> <li class="class-depth-1"> <a href="Phaser.ImageCollection.html">ImageCollection</a> </li> <li class="class-depth-1"> <a href="Phaser.Input.html">Input</a> </li> <li class="class-depth-1"> <a href="Phaser.InputHandler.html">InputHandler</a> </li> <li class="class-depth-1"> <a href="Phaser.Key.html">Key</a> </li> <li class="class-depth-1"> <a href="Phaser.Keyboard.html">Keyboard</a> </li> <li class="class-depth-1"> <a href="Phaser.Line.html">Line</a> </li> <li class="class-depth-1"> <a href="Phaser.LinkedList.html">LinkedList</a> </li> <li class="class-depth-1"> <a href="Phaser.Loader.html">Loader</a> </li> <li class="class-depth-1"> <a href="Phaser.LoaderParser.html">LoaderParser</a> </li> <li class="class-depth-1"> <a href="Phaser.Math.html">Math</a> </li> <li class="class-depth-1"> <a href="Phaser.Matrix.html">Matrix</a> </li> <li class="class-depth-1"> <a href="Phaser.Mouse.html">Mouse</a> </li> <li class="class-depth-1"> <a href="Phaser.MSPointer.html">MSPointer</a> </li> <li class="class-depth-1"> <a href="Phaser.Net.html">Net</a> </li> <li class="class-depth-1"> <a href="Phaser.Particle.html">Particle</a> </li> <li class="class-depth-1"> <a href="Phaser.Particles.html">Particles</a> </li> <li class="class-depth-2"> <a href="Phaser.Particles.Arcade.html">Arcade</a> </li> <li class="class-depth-3"> <a href="Phaser.Particles.Arcade.Emitter.html">Emitter</a> </li> <li class="class-depth-1"> <a href="Phaser.Physics.html">Physics</a> </li> <li class="class-depth-2"> <a href="Phaser.Physics.Arcade.html">Arcade</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.Arcade.Body.html">Body</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.Arcade.TilemapCollision.html">TilemapCollision</a> </li> <li class="class-depth-2"> <a href="Phaser.Physics.Ninja.html">Ninja</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.Ninja.AABB.html">AABB</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.Ninja.Body.html">Body</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.Ninja.Circle.html">Circle</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.Ninja.Tile.html">Tile</a> </li> <li class="class-depth-2"> <a href="Phaser.Physics.P2.html">P2</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.Body.html">Body</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.BodyDebug.html">BodyDebug</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.CollisionGroup.html">CollisionGroup</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.ContactMaterial.html">ContactMaterial</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.DistanceConstraint.html">DistanceConstraint</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.FixtureList.html">FixtureList</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.GearConstraint.html">GearConstraint</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.InversePointProxy.html">InversePointProxy</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.LockConstraint.html">LockConstraint</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.Material.html">Material</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.PointProxy.html">PointProxy</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.PrismaticConstraint.html">PrismaticConstraint</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.RevoluteConstraint.html">RevoluteConstraint</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.RotationalSpring.html">RotationalSpring</a> </li> <li class="class-depth-3"> <a href="Phaser.Physics.P2.Spring.html">Spring</a> </li> <li class="class-depth-1"> <a href="Phaser.Plugin.html">Plugin</a> </li> <li class="class-depth-1"> <a href="Phaser.PluginManager.html">PluginManager</a> </li> <li class="class-depth-1"> <a href="Phaser.Point.html">Point</a> </li> <li class="class-depth-1"> <a href="Phaser.Pointer.html">Pointer</a> </li> <li class="class-depth-1"> <a href="Phaser.PointerMode.html">PointerMode</a> </li> <li class="class-depth-1"> <a href="Phaser.Polygon.html">Polygon</a> </li> <li class="class-depth-1"> <a href="Phaser.QuadTree.html">QuadTree</a> </li> <li class="class-depth-1"> <a href="Phaser.RandomDataGenerator.html">RandomDataGenerator</a> </li> <li class="class-depth-1"> <a href="Phaser.Rectangle.html">Rectangle</a> </li> <li class="class-depth-1"> <a href="Phaser.RenderTexture.html">RenderTexture</a> </li> <li class="class-depth-1"> <a href="Phaser.RequestAnimationFrame.html">RequestAnimationFrame</a> </li> <li class="class-depth-1"> <a href="Phaser.RetroFont.html">RetroFont</a> </li> <li class="class-depth-1"> <a href="Phaser.Rope.html">Rope</a> </li> <li class="class-depth-1"> <a href="Phaser.RoundedRectangle.html">RoundedRectangle</a> </li> <li class="class-depth-1"> <a href="Phaser.ScaleManager.html">ScaleManager</a> </li> <li class="class-depth-1"> <a href="Phaser.Signal.html">Signal</a> </li> <li class="class-depth-1"> <a href="Phaser.SignalBinding.html">SignalBinding</a> </li> <li class="class-depth-1"> <a href="Phaser.SinglePad.html">SinglePad</a> </li> <li class="class-depth-1"> <a href="Phaser.Sound.html">Sound</a> </li> <li class="class-depth-1"> <a href="Phaser.SoundManager.html">SoundManager</a> </li> <li class="class-depth-1"> <a href="Phaser.Sprite.html">Sprite</a> </li> <li class="class-depth-1"> <a href="Phaser.SpriteBatch.html">SpriteBatch</a> </li> <li class="class-depth-1"> <a href="Phaser.Stage.html">Stage</a> </li> <li class="class-depth-1"> <a href="Phaser.State.html">State</a> </li> <li class="class-depth-1"> <a href="Phaser.StateManager.html">StateManager</a> </li> <li class="class-depth-1"> <a href="Phaser.Text.html">Text</a> </li> <li class="class-depth-1"> <a href="Phaser.Tile.html">Tile</a> </li> <li class="class-depth-1"> <a href="Phaser.Tilemap.html">Tilemap</a> </li> <li class="class-depth-1"> <a href="Phaser.TilemapLayer.html">TilemapLayer</a> </li> <li class="class-depth-1"> <a href="Phaser.TilemapParser.html">TilemapParser</a> </li> <li class="class-depth-1"> <a href="Phaser.Tileset.html">Tileset</a> </li> <li class="class-depth-1"> <a href="Phaser.TileSprite.html">TileSprite</a> </li> <li class="class-depth-1"> <a href="Phaser.Time.html">Time</a> </li> <li class="class-depth-1"> <a href="Phaser.Timer.html">Timer</a> </li> <li class="class-depth-1"> <a href="Phaser.TimerEvent.html">TimerEvent</a> </li> <li class="class-depth-1"> <a href="Phaser.Touch.html">Touch</a> </li> <li class="class-depth-1"> <a href="Phaser.Tween.html">Tween</a> </li> <li class="class-depth-1"> <a href="Phaser.TweenData.html">TweenData</a> </li> <li class="class-depth-1"> <a href="Phaser.TweenManager.html">TweenManager</a> </li> <li class="class-depth-1"> <a href="Phaser.Utils.html">Utils</a> </li> <li class="class-depth-2"> <a href="Phaser.Utils.Debug.html">Debug</a> </li> <li class="class-depth-1"> <a href="Phaser.Video.html">Video</a> </li> <li class="class-depth-1"> <a href="Phaser.Weapon.html">Weapon</a> </li> <li class="class-depth-1"> <a href="Phaser.World.html">World</a> </li> <li class="class-depth-1"> <a href="PIXI.AbstractFilter.html">AbstractFilter</a> </li> <li class="class-depth-1"> <a href="PIXI.BaseTexture.html">BaseTexture</a> </li> <li class="class-depth-1"> <a href="PIXI.CanvasBuffer.html">CanvasBuffer</a> </li> <li class="class-depth-1"> <a href="PIXI.CanvasGraphics.html">CanvasGraphics</a> </li> <li class="class-depth-1"> <a href="PIXI.CanvasMaskManager.html">CanvasMaskManager</a> </li> <li class="class-depth-1"> <a href="PIXI.CanvasPool.html">CanvasPool</a> </li> <li class="class-depth-1"> <a href="PIXI.CanvasRenderer.html">CanvasRenderer</a> </li> <li class="class-depth-1"> <a href="PIXI.CanvasTinter.html">CanvasTinter</a> </li> <li class="class-depth-1"> <a href="PIXI.ComplexPrimitiveShader.html">ComplexPrimitiveShader</a> </li> <li class="class-depth-1"> <a href="PIXI.DisplayObjectContainer.html">DisplayObjectContainer</a> </li> <li class="class-depth-1"> <a href="PIXI.EarCut.html">EarCut</a> </li> <li class="class-depth-1"> <a href="PIXI.Event.html">Event</a> </li> <li class="class-depth-1"> <a href="PIXI.EventTarget.html">EventTarget</a> </li> <li class="class-depth-1"> <a href="PIXI.FilterTexture.html">FilterTexture</a> </li> <li class="class-depth-1"> <a href="PIXI.Graphics.html">Graphics</a> </li> <li class="class-depth-1"> <a href="PIXI.GraphicsData.html">GraphicsData</a> </li> <li class="class-depth-1"> <a href="PIXI.PIXI.html">PIXI</a> </li> <li class="class-depth-2"> <a href="PIXI.PIXI.DisplayObject.html">DisplayObject</a> </li> <li class="class-depth-1"> <a href="PIXI.PixiFastShader.html">PixiFastShader</a> </li> <li class="class-depth-1"> <a href="PIXI.PixiShader.html">PixiShader</a> </li> <li class="class-depth-1"> <a href="PIXI.PolyK.html">PolyK</a> </li> <li class="class-depth-1"> <a href="PIXI.PrimitiveShader.html">PrimitiveShader</a> </li> <li class="class-depth-1"> <a href="PIXI.RenderTexture.html">RenderTexture</a> </li> <li class="class-depth-1"> <a href="PIXI.Rope.html">Rope</a> </li> <li class="class-depth-1"> <a href="PIXI.Sprite.html">Sprite</a> </li> <li class="class-depth-1"> <a href="PIXI.SpriteBatch.html">SpriteBatch</a> </li> <li class="class-depth-1"> <a href="PIXI.Strip.html">Strip</a> </li> <li class="class-depth-1"> <a href="PIXI.StripShader.html">StripShader</a> </li> <li class="class-depth-1"> <a href="PIXI.Texture.html">Texture</a> </li> <li class="class-depth-1"> <a href="PIXI.TilingSprite.html">TilingSprite</a> </li> <li class="class-depth-1"> <a href="PIXI.WebGLBlendModeManager.html">WebGLBlendModeManager</a> </li> <li class="class-depth-1"> <a href="PIXI.WebGLFastSpriteBatch.html">WebGLFastSpriteBatch</a> </li> <li class="class-depth-1"> <a href="PIXI.WebGLFilterManager.html">WebGLFilterManager</a> </li> <li class="class-depth-1"> <a href="PIXI.WebGLRenderer.html">WebGLRenderer</a> </li> </ul> </li> <li class="dropdown"> <a href="global.html" class="dropdown-toggle" data-toggle="dropdown">Global<b class="caret"></b></a> <ul class="dropdown-menu "> <li class="class-depth-0"> <a href="global.html#ANGLE_DOWN">ANGLE_DOWN</a> </li> <li class="class-depth-0"> <a href="global.html#ANGLE_LEFT">ANGLE_LEFT</a> </li> <li class="class-depth-0"> <a href="global.html#ANGLE_NORTH_EAST">ANGLE_NORTH_EAST</a> </li> <li class="class-depth-0"> <a href="global.html#ANGLE_NORTH_WEST">ANGLE_NORTH_WEST</a> </li> <li class="class-depth-0"> <a href="global.html#ANGLE_RIGHT">ANGLE_RIGHT</a> </li> <li class="class-depth-0"> <a href="global.html#ANGLE_SOUTH_EAST">ANGLE_SOUTH_EAST</a> </li> <li class="class-depth-0"> <a href="global.html#ANGLE_SOUTH_WEST">ANGLE_SOUTH_WEST</a> </li> <li class="class-depth-0"> <a href="global.html#ANGLE_UP">ANGLE_UP</a> </li> <li class="class-depth-0"> <a href="global.html#AUTO">AUTO</a> </li> <li class="class-depth-0"> <a href="global.html#BITMAPDATA">BITMAPDATA</a> </li> <li class="class-depth-0"> <a href="global.html#BITMAPTEXT">BITMAPTEXT</a> </li> <li class="class-depth-0"> <a href="global.html#blendModes">blendModes</a> </li> <li class="class-depth-0"> <a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a> </li> <li class="class-depth-0"> <a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a> </li> <li class="class-depth-0"> <a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a> </li> <li class="class-depth-0"> <a href="global.html#BUTTON">BUTTON</a> </li> <li class="class-depth-0"> <a href="global.html#CANVAS">CANVAS</a> </li> <li class="class-depth-0"> <a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a> </li> <li class="class-depth-0"> <a href="global.html#CENTER">CENTER</a> </li> <li class="class-depth-0"> <a href="global.html#CIRCLE">CIRCLE</a> </li> <li class="class-depth-0"> <a href="global.html#CREATURE">CREATURE</a> </li> <li class="class-depth-0"> <a href="global.html#displayList">displayList</a> </li> <li class="class-depth-0"> <a href="global.html#DOWN">DOWN</a> </li> <li class="class-depth-0"> <a href="global.html#ELLIPSE">ELLIPSE</a> </li> <li class="class-depth-0"> <a href="global.html#EMITTER">EMITTER</a> </li> <li class="class-depth-0"> <a href="global.html#GAMES">GAMES</a> </li> <li class="class-depth-0"> <a href="global.html#GRAPHICS">GRAPHICS</a> </li> <li class="class-depth-0"> <a href="global.html#GROUP">GROUP</a> </li> <li class="class-depth-0"> <a href="global.html#HEADLESS">HEADLESS</a> </li> <li class="class-depth-0"> <a href="global.html#HORIZONTAL">HORIZONTAL</a> </li> <li class="class-depth-0"> <a href="global.html#IMAGE">IMAGE</a> </li> <li class="class-depth-0"> <a href="global.html#intersectsRectangle">intersectsRectangle</a> </li> <li class="class-depth-0"> <a href="global.html#LANDSCAPE">LANDSCAPE</a> </li> <li class="class-depth-0"> <a href="global.html#LEFT">LEFT</a> </li> <li class="class-depth-0"> <a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a> </li> <li class="class-depth-0"> <a href="global.html#LEFT_CENTER">LEFT_CENTER</a> </li> <li class="class-depth-0"> <a href="global.html#LEFT_TOP">LEFT_TOP</a> </li> <li class="class-depth-0"> <a href="global.html#LINE">LINE</a> </li> <li class="class-depth-0"> <a href="global.html#MATRIX">MATRIX</a> </li> <li class="class-depth-0"> <a href="global.html#NONE">NONE</a> </li> <li class="class-depth-0"> <a href="global.html#PENDING_ATLAS">PENDING_ATLAS</a> </li> <li class="class-depth-0"> <a href="global.html#POINT">POINT</a> </li> <li class="class-depth-0"> <a href="global.html#POINTER">POINTER</a> </li> <li class="class-depth-0"> <a href="global.html#POLYGON">POLYGON</a> </li> <li class="class-depth-0"> <a href="global.html#PORTRAIT">PORTRAIT</a> </li> <li class="class-depth-0"> <a href="global.html#RECTANGLE">RECTANGLE</a> </li> <li class="class-depth-0"> <a href="global.html#RENDERTEXTURE">RENDERTEXTURE</a> </li> <li class="class-depth-0"> <a href="global.html#RETROFONT">RETROFONT</a> </li> <li class="class-depth-0"> <a href="global.html#RIGHT">RIGHT</a> </li> <li class="class-depth-0"> <a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a> </li> <li class="class-depth-0"> <a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a> </li> <li class="class-depth-0"> <a href="global.html#RIGHT_TOP">RIGHT_TOP</a> </li> <li class="class-depth-0"> <a href="global.html#ROPE">ROPE</a> </li> <li class="class-depth-0"> <a href="global.html#ROUNDEDRECTANGLE">ROUNDEDRECTANGLE</a> </li> <li class="class-depth-0"> <a href="global.html#scaleModes">scaleModes</a> </li> <li class="class-depth-0"> <a href="global.html#SPRITE">SPRITE</a> </li> <li class="class-depth-0"> <a href="global.html#SPRITEBATCH">SPRITEBATCH</a> </li> <li class="class-depth-0"> <a href="global.html#TEXT">TEXT</a> </li> <li class="class-depth-0"> <a href="global.html#TILEMAP">TILEMAP</a> </li> <li class="class-depth-0"> <a href="global.html#TILEMAPLAYER">TILEMAPLAYER</a> </li> <li class="class-depth-0"> <a href="global.html#TILESPRITE">TILESPRITE</a> </li> <li class="class-depth-0"> <a href="global.html#TOP_CENTER">TOP_CENTER</a> </li> <li class="class-depth-0"> <a href="global.html#TOP_LEFT">TOP_LEFT</a> </li> <li class="class-depth-0"> <a href="global.html#TOP_RIGHT">TOP_RIGHT</a> </li> <li class="class-depth-0"> <a href="global.html#UP">UP</a> </li> <li class="class-depth-0"> <a href="global.html#VERSION">VERSION</a> </li> <li class="class-depth-0"> <a href="global.html#VERTICAL">VERTICAL</a> </li> <li class="class-depth-0"> <a href="global.html#VIDEO">VIDEO</a> </li> <li class="class-depth-0"> <a href="global.html#WEBGL">WEBGL</a> </li> <li class="class-depth-0"> <a href="global.html#WEBGL_FILTER">WEBGL_FILTER</a> </li> </ul> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Core<b class="caret"></b></a> <ul class="dropdown-menu "> <li class="class-depth-1"><a href="Phaser.Game.html">Game</a></li> <li class="class-depth-1"><a href="Phaser.Group.html">Group</a></li> <li class="class-depth-1"><a href="Phaser.World.html">World</a></li> <li class="class-depth-1"><a href="Phaser.Loader.html">Loader</a></li> <li class="class-depth-1"><a href="Phaser.Cache.html">Cache</a></li> <li class="class-depth-1"><a href="Phaser.Time.html">Time</a></li> <li class="class-depth-1"><a href="Phaser.Camera.html">Camera</a></li> <li class="class-depth-1"><a href="Phaser.StateManager.html">State Manager</a></li> <li class="class-depth-1"><a href="Phaser.TweenManager.html">Tween Manager</a></li> <li class="class-depth-1"><a href="Phaser.SoundManager.html">Sound Manager</a></li> <li class="class-depth-1"><a href="Phaser.Input.html">Input Manager</a></li> <li class="class-depth-1"><a href="Phaser.ScaleManager.html">Scale Manager</a></li> </ul> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Game Objects<b class="caret"></b></a> <ul class="dropdown-menu "> <li class="class-depth-1"><a href="Phaser.GameObjectFactory.html">Factory (game.add)</a></li> <li class="class-depth-1"><a href="Phaser.GameObjectCreator.html">Creator (game.make)</a></li> <li class="class-depth-1"><a href="Phaser.Sprite.html">Sprite</a></li> <li class="class-depth-1"><a href="Phaser.Image.html">Image</a></li> <li class="class-depth-1"><a href="Phaser.Sound.html">Sound</a></li> <li class="class-depth-1"><a href="Phaser.Video.html">Video</a></li> <li class="class-depth-1"><a href="Phaser.Particles.Arcade.Emitter.html">Particle Emitter</a></li> <li class="class-depth-1"><a href="Phaser.Particle.html">Particle</a></li> <li class="class-depth-1"><a href="Phaser.Text.html">Text</a></li> <li class="class-depth-1"><a href="Phaser.Tween.html">Tween</a></li> <li class="class-depth-1"><a href="Phaser.BitmapText.html">BitmapText</a></li> <li class="class-depth-1"><a href="Phaser.Tilemap.html">Tilemap</a></li> <li class="class-depth-1"><a href="Phaser.BitmapData.html">BitmapData</a></li> <li class="class-depth-1"><a href="Phaser.RetroFont.html">RetroFont</a></li> <li class="class-depth-1"><a href="Phaser.Button.html">Button</a></li> <li class="class-depth-1"><a href="Phaser.Animation.html">Animation</a></li> <li class="class-depth-1"><a href="Phaser.Graphics.html">Graphics</a></li> <li class="class-depth-1"><a href="Phaser.RenderTexture.html">RenderTexture</a></li> <li class="class-depth-1"><a href="Phaser.TileSprite.html">TileSprite</a></li> </ul> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Geometry<b class="caret"></b></a> <ul class="dropdown-menu "> <li class="class-depth-1"><a href="Phaser.Circle.html">Circle</a></li> <li class="class-depth-1"><a href="Phaser.Ellipse.html">Ellipse</a></li> <li class="class-depth-1"><a href="Phaser.Line.html">Line</a></li> <li class="class-depth-1"><a href="Phaser.Matrix.html">Matrix</a></li> <li class="class-depth-1"><a href="Phaser.Point.html">Point</a></li> <li class="class-depth-1"><a href="Phaser.Polygon.html">Polygon</a></li> <li class="class-depth-1"><a href="Phaser.Rectangle.html">Rectangle</a></li> <li class="class-depth-1"><a href="Phaser.RoundedRectangle.html">Rounded Rectangle</a></li> </ul> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Physics<b class="caret"></b></a> <ul class="dropdown-menu "> <li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li> <li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li> <li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li> <li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li> <li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li> <li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li> <li class="class-depth-2"><a href="Phaser.Physics.P2.CollisionGroup.html">CollisionGroup</a></li> <li class="class-depth-2"><a href="Phaser.Physics.P2.ContactMaterial.html">ContactMaterial</a></li> <li class="class-depth-1"><a href="Phaser.Physics.Ninja.html">Ninja Physics</a></li> <li class="class-depth-2"><a href="Phaser.Physics.Body.html">Body</a></li> </ul> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Input<b class="caret"></b></a> <ul class="dropdown-menu "> <li class="class-depth-1"><a href="Phaser.InputHandler.html">Input Handler</a></li> <li class="class-depth-1"><a href="Phaser.Pointer.html">Pointer</a></li> <li class="class-depth-1"><a href="Phaser.DeviceButton.html">Device Button</a></li> <li class="class-depth-1"><a href="Phaser.Mouse.html">Mouse</a></li> <li class="class-depth-1"><a href="Phaser.Keyboard.html">Keyboard</a></li> <li class="class-depth-1"><a href="Phaser.Key.html">Key</a></li> <li class="class-depth-1"><a href="Phaser.Gamepad.html">Gamepad</a></li> </ul> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Community<b class="caret"></b></a> <ul class="dropdown-menu "> <li class="class-depth-1"><a href="http://phaser.io">Phaser Web Site</a></li> <li class="class-depth-1"><a href="https://github.com/photonstorm/phaser">Phaser Github</a></li> <li class="class-depth-1"><a href="http://phaser.io/examples">Phaser Examples</a></li> <li class="class-depth-1"><a href="https://github.com/photonstorm/phaser-plugins">Phaser Plugins</a></li> <li class="class-depth-1"><a href="http://www.html5gamedevs.com/forum/14-phaser/">Forum</a></li> <li class="class-depth-1"><a href="http://stackoverflow.com/questions/tagged/phaser-framework">Stack Overflow</a></li> <li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li> <li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li> <li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li> <li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li> <li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li> <li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li> </ul> </li> </ul> </div> </div> <div class="row-fluid"> <div class="span8"> <div id="main"> <!--<h1 class="page-title">Class: Delta</h1>--> <section> <header> <h2> <span class="ancestors"><a href="Phaser.html">Phaser</a><a href="Phaser.html#.Component">.Component</a>.</span> Delta </h2> </header> <article> <div class="container-overview"> <dt> <h4 class="name " id="Delta"><span class="type-signature"></span>new Delta<span class="signature">()</span><span class="type-signature"></span></h4> </dt> <dd> <div class="description"> <p>The Delta component provides access to delta values between the Game Objects current and previous position.</p> </div> <dl class="details"> <dt class="tag-source">Source - <a href="src_gameobjects_components_Delta.js.html">gameobjects/components/Delta.js</a>, <a href="src_gameobjects_components_Delta.js.html#sunlight-1-line-12">line 12</a> </dt> </dl> </dd> </div> <h3 class="subsection-title">Members</h3> <dl> <dt> <h4 class="name " id="deltaX"><span class="type-signature">&lt;readonly> </span>deltaX<span class="type-signature"> :number</span></h4> </dt> <dd> <div class="description"> <p>Returns the delta x value. The difference between world.x now and in the previous frame.</p> <p>The value will be positive if the Game Object has moved to the right or negative if to the left.</p> </div> <dl class="details"> <dt class="tag-source">Source - <a href="src_gameobjects_components_Delta.js.html">gameobjects/components/Delta.js</a>, <a href="src_gameobjects_components_Delta.js.html#sunlight-1-line-24">line 24</a> </dt> </dl> </dd> <dt> <h4 class="name " id="deltaY"><span class="type-signature">&lt;readonly> </span>deltaY<span class="type-signature"> :number</span></h4> </dt> <dd> <div class="description"> <p>Returns the delta y value. The difference between world.y now and in the previous frame.</p> <p>The value will be positive if the Game Object has moved down or negative if up.</p> </div> <dl class="details"> <dt class="tag-source">Source - <a href="src_gameobjects_components_Delta.js.html">gameobjects/components/Delta.js</a>, <a href="src_gameobjects_components_Delta.js.html#sunlight-1-line-42">line 42</a> </dt> </dl> </dd> <dt> <h4 class="name " id="deltaZ"><span class="type-signature">&lt;readonly> </span>deltaZ<span class="type-signature"> :number</span></h4> </dt> <dd> <div class="description"> <p>Returns the delta z value. The difference between rotation now and in the previous frame. The delta value.</p> </div> <dl class="details"> <dt class="tag-source">Source - <a href="src_gameobjects_components_Delta.js.html">gameobjects/components/Delta.js</a>, <a href="src_gameobjects_components_Delta.js.html#sunlight-1-line-58">line 58</a> </dt> </dl> </dd> </dl> </article> </section> </div> <div class="clearfix"></div> <footer> <span class="copyright"> Phaser Copyright © 2012-2016 Photon Storm Ltd. </span> <br /> <span class="jsdoc-message"> Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.3</a> on Mon Jul 11 2016 10:10:45 GMT+0100 (GMT Daylight Time) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>. </span> </footer> </div> <div class="span3"> <div id="toc"></div> </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>
fmflame/phaser
docs/Phaser.Component.Delta.html
HTML
mit
41,618
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"/> <title>Command reference</title> <link rel="stylesheet" href="../css/styles.css" type="text/css" media="all" /> <link rel="stylesheet" href="../css/containers.css" type="text/css" media="all" /> </head> <body> <!-- 3481558.html --> <div class="container"> <div class="sidebar1"> <p class="sidebar-toc"><a href="../answer/3481464.html">Before you configure Google Earth Enterprise Fusion</a></p> <p class="sidebar-toc"><a href="../answer/6008655.html">Running Fusion on a Machine with Multiple CPUs</a></p> <p class="sidebar-toc"><a href="../answer/7160005.html">Dynamically adjusting logging levels</a></p> <p class="sidebar-toc"><a href="../answer/176738.html">Configure Fusion performance</a></p> <p class="sidebar-toc"><a href="../answer/6033487.html">Benchmarking outcomes for applying task rules</a></p> <p class="sidebar-toc"><a href="../answer/3481501.html">Configure font size in the GUI</a></p> <p class="sidebar-toc"><a href="../answer/3481506.html">Configure fonts for the Text Style dialog</a></p> <p class="sidebar-toc"><a href="../answer/3481478.html">Customize your Google Maps landing page</a></p> <p class="sidebar-toc"><a href="../answer/3481512.html">Monitor system processes</a></p> <p class="sidebar-toc"><a href="../answer/3481546.html">Backing up your data</a></p> <p class="sidebar-toc"><a href="../answer/2760661.html">Back up Fusion servers</a></p> <p class="sidebar-toc"><a href="../answer/176676.html">Manage Fusion disk space</a></p> <p class="sidebar-toc"><a href="../answer/6035839.html">Relocate your asset root</a></p> <p class="sidebar-toc"><a href="../answer/3481499.html">Configure your data locations</a></p> <p class="sidebar-toc"><a href="../answer/6034724.html">Push and publish databases</a></p> <p class="sidebar-toc"><a href="../answer/6051700.html">Publish databases using disconnected publishing</a></p> <p class="sidebar-toc"><a href="../answer/6086672.html">Troubleshoot push/publishing issues 5.x</a></p> <p class="sidebar-toc"><a href="../answer/3481558.html" class="current-file">Command reference</a></p> </div> <div class="content"> <a name="top_of_file"></a> <p><img src="../art/common/googlelogo_color_260x88dp.png" width="130" height="44" alt="Google logo" /></p> <h1><a href="../index.html">Google Earth Enterprise Documentation Home</a> | Fusion administration</h1> <h2>Command reference</h2> <p>This article describes all of the command line tools used for system administration in alphabetical order. If you prefer, you can find each tool’s syntax by entering the name of the tool on the command line with the <code>--help</code> option, for example:</p> <pre> <code>geserveradmin --help</code></pre> <p>This article uses the following typographic conventions:</p> <table class="nice-table"> <tbody> <tr> <td><i>Italic</i><code> </code></td> <td>Information that the user must supply</td> </tr> <tr> <td><b>Bold</b></td> <td>Text that the user must type exactly as shown</td> </tr> <tr> <td>Ellipsis <b>...</b></td> <td>Argument that can be repeated several times in a command</td> </tr> <tr> <td>Square brackets <b>[ ]</b></td> <td>Optional commands or arguments</td> </tr> <tr> <td>Curly braces <b>{ }</b> with options separated by pipes <b>|</b>; for example: <b>{even | odd}</b></td> <td>Lists a set of choices from which the user can select only one</td> </tr> <tr> <td>Parentheses <b>( )</b></td> <td>Grouped items that function together</td> </tr> <tr> <td><code>Courier font</code></td> <td>Code or program output</td> </tr> </tbody> </table> <h2>geaddtoimageryproject</h2> <pre> <code><b>geaddtoimageryproject</b> [--<strong>mercator</strong> | --<strong>flat]</strong> [--<strong>historical_imagery</strong> | --<strong>no_historical_imagery</strong>] -o <em>projectname</em> {[--<strong>maxlevel</strong> <em>level</em> | --<strong>maxleveloverride</strong> <em>level</em>] <em>insetresource</em>}</code>...</pre> <h3>Purpose</h3> <p>Creates a new imagery project. This tool is capable of building Mercator imagery projects for 2D databases, or Flat (Plate Carrée) imagery projects with or without Historic Imagery Support for 3D databases. <h3>Commands</h3> <pre> <code><b>--mercator </b></code></pre> <p><i>Optional</i>. Uses Mercator map projection for the imagery project.</p> <pre> <code><b>--flat </b></code></pre> <p><i>Default</i>. Uses Flat map (Plate Carrée) projection.</p> <pre> <code><b>--historical_imagery </b></code></pre> <p><i>Optional</i>. Uses historical imagery for the project..</p> <pre> <code><b>--no_historical_imagery </b></code></pre> <p><i>Default</i>. Uses normal imagery for the project.</p> <h3>Options</h3> <pre> <code><b>--maxlevel </b><i>level</i></code></pre> <div class="alert"> Deprecated in release GEE 5.2.5 and higher. Use <code>--maxleveloverride</code></a> instead.</div> <p><i>Optional</i>. Sets the maximum level for the imagery. Uses internal Fusion scale. Deprecated because it not match the levels specified in the Fusion UI.</p> <pre> <code><b>--maxleveloverride </b><i>level</i></code></pre> <p><i>Optional</i>. Sets the maximum level for the imagery. Uses the imagery scale in Fusion. Matches the levels in the Fusion UI.</p> <h2><a name="63542"></a>geconfigureassetroot</h2> <code><b>geconfigureassetroot</b> {<b>--new</b> <b>--assetroot </b><i>path </i> [<b>--srcvol </b><i>path</i>] | <b>--repair</b> | <b>--editvolumes</b> | <b>--listvolumes</b> | <b>--addvolume</b> | <b>--fixmasterhost</b> | <strong>--noprompt</strong>} [--nochown]</code></pre> <h3>Purpose</h3> <p>To add volume definitions or edit existing volume definitions.</p> <div class="tip">You must run this command as root. Except for the <b>--listvolumes</b> command, you must stop the fusion service before using this command and then start it again after you are done.</div> <h3>Example</h3> <pre> <code>geconfigureassetroot --new --assetroot /gevol/assets geconfigureassetroot --new --assetroot /gevol/assets --srcvol /data1/src geconfigureassetroot --repair geconfigureassetroot --editvolumes</code></pre> <h3>Options</h3> <pre> <code><b>--assetroot </b><i>path</i></code></pre> <p>Path to asset root. This option is mandatory or optional in the <code>geconfigureassetroot</code> commands. If optional, then the current asset root is used if it is not specified.</p> <pre> <code><b>--noprompt</b></code></pre> <p><i>Optional</i>. Perform the command without prompting the user for any input. This option requires that some commands have arguments specified on the command line.</p> <pre> <code><b>--chown</b> </code></pre> <p><i>Optional</i>. Prevents attempts by this command to fix file/directory privileges. You may consider setting this option when you do not want any prvilege settings to change as a result of reconfiguring your asset root.</p> <h3>Commands</h3> <pre> <code><b>--new --assetroot </b><i>path</i></code></pre> <p><i>Optional</i>. Creates a new asset root. Specify the path to the new asset root. <div <p="" class="note"><strong>Note:</strong> If you omit the path, the system creates a new asset root in <code>/gevol/assets</code>. </p> </p> </div> <pre> <code><b>--srcvol</b> <i>path</i></code></pre> <p><i>Optional</i>. Specify the path to the source volume.</p> <pre> <code><b>--repair</b> [--assetroot <i>path</i>]</code></pre> <p><i>Optional</i>. Repairs various inconsistencies in the asset root (such as permissions, ownership, missing ID files, and so on). When you run this command, the tool auto-detects the problems that need to be repaired and fixes them.</p> <p class="note"><strong>Note:</strong> Do not use this command unless you see a system message instructing you to do so.</p> <pre> <code><b>--editvolumes</b> [--assetroot <i>path</i>]</code></pre> <p><i>Optional</i>. Follow the prompts to add a volume to the selected asset root or, modify the <code>localpath</code> definition for an existing volume, or to add a volume definition.</p> <pre> <code><b>--listvolumes</b> [--assetroot <i>path</i>]</code></pre> <p><i>Optional</i>. List the available (configured) volumes for the selected asset root.</p> <pre> <code><b>--fixmasterhost</b> [--assetroot <i>path</i>]</code></pre> <p><i>Optional</i>. Change the <i>assetroot host</i> entry to match the current host name. (This command corrects cases where a host name is changed after installing and configuring Google Earth Enterprise Fusion.)</p> <pre> <code><b>--addvolume</b> <i>volume_name:path</i>]</code></pre> <p><i>Optional</i>. Change the <i>assetroot host</i> entry to match the current host name. (This command corrects cases where a host name is changed after installing and configuring Google Earth Enterprise Fusion.)</p> <h2><a name="geconfigurepublishroot"></a>geconfigurepublishroot</h2> <pre> <code>geconfigurepublishroot [--path=<em>path</em>] [--allow_symlinks] [--noprompt]</code></pre> <h3>Purpose</h3> <p>To specify the path where you want to push databases for publishing and serving with the current Google Earth Enterprise Server. Follow the prompts.</p> <p class="note"><strong>Note:</strong> You must run this command as root.</p> <h3>Example</h3> <pre> <code>geconfigurepublishroot --path /gevol/published_dbs --allow_symlinks</code></pre> <h3>Commands</h3> <pre> <code>--path=<em>path</em></code></pre> <p><em>Optional</em>. The path to the publish root. Default value is <code>/gevol/published_dbs</code>.</p> <pre> <code>--allow_symlinks</code></pre> <p><em>Optional</em>. Configures the publisher to accept symbolic links. Useful when the publish root is on a separate logical volume from the asset root. Default is no.</p> <pre> <code>--noprompt</code></pre> <p><i>Optional</i>. Perform the command without prompting the user for any input. This option requires that some commands have arguments specified on the command line. If the arguments are insufficient or the configuration fails, the program will return -1 (0 is returned on success).</p> <div class="alert">Do not create more than one publish root for a single asset root. That configuration produces unpredictable or undesirable results, including the inability to push at all from that asset root. You cannot push the same database multiple times to different publish roots on the same server.</div> <h2>gecutter</h2> <pre> <code><b>gecutter</b> {<b>enable</b> | <b>disable</b>} </code></pre> <h3>Purpose</h3> <p>To enable and disable the Cutter tool. Once you have enabled the Cutter, you launch it from the Settings menu in the GEE Server admin console. You can also launch the Cutter directly from <code>http://<em>myserver.com</em>/cutter</code>. </p> <div class="note"> <p><strong>Note:</strong> The default admin security does not apply to the Cutter, so although it provides security if you try to launch the Cutter from the Admin console Settings menu, it does not block direct access to the Cutter via the URL. If you need Cutter security, you will need to add it separately. See <a href="../answer/173056.html">GEE Server security</a>. </p> </div> <p>See <a href="../answer/3230777.html">Create portable globes and maps</a>.</p> <h3>Example</h3> <pre> <code>gecutter enable</code></pre> <pre> <code>gecutter disable</code></pre> <h2>gedisconnectedclean</h2> <div class="alert"> Deprecated in release GEE 4.4 and higher. </div> <pre> <code><b>gedisconnectedclean</b> [<b>--dbpath</b> <i>dbpath</i>] [<b>--list</b> <i>assetroot</i>]</code></pre> <h3>Purpose</h3> <p>To clean a disconnected database from a disconnected mock asset root.</p> <h3>Example</h3> <pre> <code>gedisconnectedclean --dbpath /gevol/assets/Databases/MyPOIs.kdatabase</code></pre> <h3>Commands</h3> <pre> <code><b>--dbpath</b> <i>dbpath</i></code></pre> <p><em>Required</em>. Specify the database path to clean. This must be a low-level path to a database directory (one of the entries in the <code><em>assetroot</em>/dbpaths.list</code> file). See <code>--list</code> command option to find databases stored within the mock asset root.</p> <pre> <code><b>--list</b> <i>assetroot</i></code></pre> <p><i>Optional</i>. List all dbpaths currently in disconnected asset root</p> <h2>gedisconnectedpublish</h2> <div class="alert"> Deprecated in release GEE 4.4 and higher. Use <a href="#geserveradmin_pdb"><code>geserveradmin --publishdb</code></a></div> instead. <pre> <code><b>gedisconnectedpublish</b> [<i>db_alias</i>] <i>db_name</i></code></pre> <h3>Purpose</h3> <p>To publish a database on a disconnected server.</p> <h3>Example</h3> <pre> <code>gedisconnectedpublish MyPOIs</code></pre> <h3>Commands</h3> <pre> <code><i>db_alias</i></code></pre> <p><i>Optional</i>. Since <i>db_name</i> is the “low-level” name of the database, <i>db_alias</i> allows you to enter a name that is easier to remember, for example, <code>Databases/SF Highways.kdabase?ver=1</code>.</p> <pre> <code><i>db_name</i> </code></pre> <p><i>Required</i>. The full, “low-level” name of the database you want to publish.</p> <h2>gedisconnectedreceive</h2> <div class="alert"> Deprecated in version 4.0. <code>gedisconnectedreceive</code> is required only when the disconnected database was sent with an older (pre 4.0) version of Fusion. </div> <pre> <code><b>gedisconnectedreceive</b> <b>--input</b> <i>dirname</i></code></pre> <h3>Purpose</h3> <p>To copy a disconnected database from either detachable media or local storage into the mock asset root.</p> <h3>Example</h3> <p>For detachable media:</p> <pre> <code>gedisconnectedreceive --input /mnt/usbdrive/SFHighways_3dDatabase_v20</code></pre> <p>For local storage:</p> <pre> <code>gedisconnectedreceive --input /gevol/src/disconnected_databases/SFHighways_3dDatabase_v20</code></pre> <h3>Commands</h3> <pre> <code><b>--input</b> <i>dirname</i></code></pre> <p><i>Required</i>. Specify the directory that contains the files to be copied. This is typically the mount point of a hard drive.</p> <p class="note"><strong>Notes:</strong><br/> The <code>gedisconnectedreceive</code> command will create an asset tree that mirrors the asset tree of the Fusion system that built the database.<br/> <br/> The <code>gedisconnectedreceive</code> command will copy data to the mock asset root if the input folder is on a separate volume than the mock asset root. Links to the input folder to the mock asset root will be created if both the input and mock asset root folders on the same volume.</p> <h2>gedisconnectedsend</h2> <pre> <code><b>gedisconnectedsend</b> [<b>--extra</b> <i>filename</i>] [<b>--havepath</b> <i>dbpath</i>] [<b>--havepathfile</b> <i>file</i>] <b>--output</b> <i>dirname </i>[<b>--sendpath</b> <i>dbpath</i>]<b> </b>[<b>--sendver</b> <i>dbver</i>]</code></pre> <h3>Purpose</h3> <p>To gather all the files from a Fusion asset root necessary for a disconnected push/publish, for either publishing new databases or publishing "delta" updates.</p> <h3>Example</h3> <pre> <code>gedisconnectedsend --sendver Databases/SFHighways.kdatabase?version=2 --output /gevol/src/disconnected_databases/SFHighways_3dDatabase_v2</code></pre> <h3>Commands</h3> <pre> <code>--extra filename</code></pre> <p><i>Optional</i>. Specify an extra file to package. This is typically used to repair broken files.</p> <pre> <code>--havepath dbpath</code></pre> <p><i>Optional</i>. Specify which database path already exists on the target server. This must be a low-level path to a database directory and may be specified more than once.</p> <pre> <code>--havepathfile file </code></pre> <p><i>Optional</i>. Specify the file that contains the list of existing database paths (copy of <i>assetroot</i><code>/dbpaths.list</code> from the remote server).</p> <pre> <code>--output dirname</code></pre> <p><i>Required</i>. Specify where to gather the files. The directory must already exists and be empty. This is typically the mount point of a hard drive.</p> <pre> <code>--sendpath dbpath</code></pre> <p><i>Optional</i>. Specify which database path to send. This must be a low-level path to a database directory. You can determine this path by entering <code>gequery --outfiles </code><i>dbver</i> on the source server.</p> <pre> <code>--sendver dbver </code></pre> <p><i>Optional</i>. Specify which database version to send. Use the <code>?version=...</code> syntax. Available database versions may be found with the <code>gequery --versions</code> command.</p> <h2>genewmapdatabase</h2> <pre> <code><b>genewmapdatabase</b> [--<strong>mercator</strong> | --<strong>flat]</strong> ] -o <em>databasename</em> [--<strong>imagery</strong> <em>imagery project</em>] [--<strong>map</strong> <em>imap project</em>]</code>...</pre> <h3>Purpose</h3> <p>Creates a new 2D map database. If an imagery or map project is specified, it is added to the database. Flat or mercator databases can be created. Mercator databases can use either mercator or flat imagery projects, with mercator projects given priority if there is a naming collision. Flat databases can only use flat imagery projects. <h3>Commands</h3> <pre> <code>--mercator </code></pre> <p><i>Optional</i>. Uses Mercator map projection.</p> <pre> <code>--flat </code></pre> <p><i>Default</i>. Uses Flat map (Plate Carrée) projection.</p> <pre> <code><b>--imagery</b> imagery project </code></pre> <p><i>Optional</i>. The imagery project to be added to the database. If the database is mercator, the imagery project can be flat or mercator, with mercator being given priority during naming collisions. If the database is flat, the imagery project must be flat.</p> <pre> <code><b>--map</b> map project </code></pre> <p><i>Optional</i>. The map project to be added to the database.</p> <h2>gepublishdatabase</h2> <div class="alert"> <p>Deprecated in GEE 4.0.</p> </div> <p>Use <code>geserveradmin</code> to push and publish databases or use the Fusion GUI and <a href="../answer/3497763.html">GEE Server</a>.</p> <h2><a name="13019"></a>geselectassetroot</h2> <pre> <code><b>geselectassetroot</b> [<b>--lock</b>] [--<strong>noprompt</strong>] [<b>--unlock</b>] ( [<b>--assetroot</b> <i>path</i> [<b>--role</b> {<b>master</b> | <b>slave</b>}] [<b>--numcpus</b> <i>num</i>]] )</code></pre> <h3>Purpose</h3> <p>To perform a variety of operations related to existing asset roots on the current machine.</p> <div class="tip">You must stop the system manager before using this command and then start it again after you are done. You must also run this command as root.</div> <h3>Example</h3> <pre> <code>geselectassetroot --list geselectassetroot --lock geselectassetroot --unlock geselectassetroot --assetroot /gevol/assets geselectassetroot --assetroot /gevol/assets --role slave --numcpus 3</code></pre> <h3>Options</h3> <pre> <code><b>--assetroot &lt;dir&gt;</b></code></pre> <p>Path to the asset root. <code>--assetroot</code> is shown in the commands below as mandatory or optional. If optional, then the current asset root is used if it is not specified. </p> <pre> <code><b>--noprompt</b></code></pre> <p>Do not prompt for more information,returns -1 to indicate an error if command fails or has insufficient arguments.&gt;/p&gt; <h3>Commands</h3> <pre> <code><b>--list</b></code></pre> <p><i>Optional. </i>Displays a list of the known asset roots on this machine.</p> <pre> <code><b>--lock</b></code></pre> <p><i>Optional. </i>Disables the ability to select a different asset root on this machine.</p> <pre> <code><b>--noprompt</b></code></pre> <p><i>Optional</i>. Perform the command without prompting the user for any input. This option requires that some commands have arguments specified on the command line.</p> <pre> <code><b>--unlock</b></code></pre> <p><i>Optional. </i>Enables the ability to select a different asset root on this machine. (Use only if <code>--lock</code> is enabled.)</p> <pre> <code><b>--assetroot</b> <i>path</i></code></pre> <p><i>Optional. </i>Specify the path to the asset root for this machine.</p> <pre> <code><b>--role</b> {<b>master</b> | <b>slave</b>}</code></pre> <p><i>Optional. </i>Specify this machine's role in the asset root (master or slave). The default role is master. This command is available only in combination with --<code>assetroot</code>.</p> <pre> <code><b>--numcpus</b> <i>num</i></code></pre> <p><i>Optional. </i>Specify the number of CPUs on this machine to use for processing. The default will be the maximum number of CPUs detected on the machine during installation. This command is available only in combination with --<code>assetroot</code>.</p> <h2>geselectpublishroot</h2> <pre> <code>geselectpublishroot <i>path</i></code> [--<strong>noprompt</strong>]</pre> <h3>Purpose</h3> <p>To specify a different publish root. The specified path must exist. If you want to create a publish root, see <a href="#geconfigurepublishroot"><code>geconfigurepublishroot</code></a>.</p> <h3>Example</h3> <pre> <code>geselectpublishroot /gevol/published_dbs</code></pre> <h3>Arguments</h3> <p><code><i>path</i></code></p> <p><i>Required</i>. Specify the path to the desired publish root.</p> <h3>Options</h3> <pre> <code><b>--noprompt</b></code></pre> <p><i>Optional</i>. Perform the command without prompting the user for any input. This option requires that some commands have arguments specified on the command line.</p> <h2><a name="#geserveradmin"></a>geserveradmin</h2> <pre> <code><b>geserveradmin</b> [<i>options</i>] <i>commands</i></code></pre> <h3>Purpose</h3> <p>To configure your Google Earth Enterprise Server. This section breaks down the <code>geserveradmin</code> commands into the following categories:</p> <ul> <li>Options</li> <li>Database</li> <li>Virtual host</li> <li>Admin</li> </ul> <p>All of the commands of each type are described below. At least one command is required.</p> <h3>Examples</h3> <pre> <code>geserveradmin --listdbs geserveradmin --server_type stream --dbdetails “/gevol/assets/Databases/SF Neighborhoods.kdatabase/gedb.kda/ver001/gedb” geserveradmin --addvh my_public_vh --vhurl http://myserver.com/public_vh geserveradmin --deletevh my_public_vh geserveradmin --deletedb geserveradmin --garbagecollect </code></pre> <h3>geserveradmin command options</h3> <h4>Fusion host name</h4> <pre> <code><b>--fusion_host</b></code></pre> <p><i>Optional</i>. Fusion host name. Defaults to the current host name.</p> <h4>Stream server URL</h4> <pre> <code><b>--stream_server_url</b> <i>url</i></code></pre> <p><i>Optional</i>. Specify a stream server other than the default. Defaults to the current server.</p> <pre> <code><b>--search_server_url</b> <i>url</i></code></pre> <div class="alert"> Deprecated. Always specify a stream server. </div> <h4>Server type</h4> <pre> <code><b>--server_type </b>{<b>stream</b> | <b>search</b>}</code></pre> <p><i>Optional</i>. Specify whether the server(s) in question are <code>stream</code> or <code>search</code> server(s). The default is <code>stream</code>. This option is required with the <code>listdbs</code>, <code>dbdetails</code>, and <code>garbagecollect</code> commands.</p> <h4>geserveradmin Database Commands</h4> <p>Each of the database commands is listed below, along with its syntax, description, and options. If the name of the database contains one or more spaces, double quote the entire path. (See the examples above.)</p> <h4>List registered databases</h4> <pre> <code><b>--listdbs [--portable]</b></code></pre> <p>Lists all databases registered on the server. If <code>--portable</code> is specified, only portable databases are listed.</p> <h4>Database file list</h4> <pre> <code><b>--dbdetails </b><i>db_name</i></code></pre> <p>Provides a list of all of the files required by the specified database. If omitted, the server type defaults to <code>stream</code>.</p> <h4>List published databases</h4> <pre> <code><b>--publisheddbs [--portable]</b></code></pre> <p>Lists the database(s) currently published on the server. If <code>--portable</code> is specified, only portable databases are listed.</p> <h4>List target paths</h4> <pre> <code><b>--listtgs</b></code></pre> <p>Lists all the target paths currently serving databases on the server.</p> <h4>Add database</h4> <pre> <code><b>--adddb</b> <i>db_name </i>[--dbalias <i>alias</i>]</code></pre> <p>Registers a new database with the specified name.</p> <table class="nice-table"> <tbody> <tr> <th width="30%">--adddb option</th> <th width="15%">Required/Optional</th> <th width="55%">Description</th> </tr> <tr> <td><pre> <code>--dbalias <i>alias</i></code></pre></td> <td>Optional</td> <td>Specifies a user-friendly name for the database.</td> </tr> </tbody> </table> <h4>Delete database</h4> <pre> <code><b>--deletedb </b><i>db_name</i></code></pre> <p>Deletes the specified database entry from the server. Does not delete the actual files. (This command is similar to putting files in the trash on a Windows or Macintosh desktop. See also <code>--garbagecollect</code>.)</p> <p class="note"><strong>Note:</strong> If you want to delete a currently published database, you first need to unpublish.(See also <code>--unpublish</code>.) To list the currently published databases, use the <code>--publisheddbs</code> option. (See also <code>--deletevh</code>.)</p> <h4>Push databases</h4> <pre> <code><b>--pushdb</b> <i>db_name...</i> [<b>--force_copy</b>]</code></pre> <p>Pushes one or more databases to the server. For example, <code><i>--pushdb db1 --pushdb db2</i></code></p> <table class="nice-table"> <tbody> <tr> <th width="35%">--pushdb option</th> <th width="15%">Required/Optional</th> <th width="50%">Description</th> </tr> <tr> <td><pre> <code><b>--force_copy</b></code></pre></td> <td>Optional</td> <td>Copies database files while pushing/publishing, otherwise creates a hard/symbolic link when server settings allow. To allow symbolic links, specify using <code>geconfigurepublishroot</code>: <code>sudo /opt/google/bin/geconfigurepublishroot -path=/gevol/published_dbs -allow_symlinks.</code></td> </tr> </tbody> </table> <h4><a name="geserveradmin_pdb"></a>Publish database</h4> <pre> <code><b>--publishdb</b> <i>db_name</i> <b>--targetpath</b> <i>target_path</i> [<b>--vhname</b> <i>vh_name</i>] [<b>--setecdefault</b>] [<b>--enable_poisearch</b> [<b>--enable_enhancedsearch</b>]]</code></pre> <p>Publish the specified database on the specified target path. If the virtual host name is omitted, it publishes to the default virtual host: "public".</p> <table class="nice-table"> <tbody> <tr> <th width="35%">--publishdb Option</th> <th width="15%">Required/Optional</th> <th width="50%">Description</th> </tr> <tr> <td><pre> <code><b>--targetpath</b> <i>target_path</i></code></pre></td> <td>Required</td> <td>Specifies the target path on which to publish.</td> </tr> <tr> <td><pre> <code><b>--vhname</b> <i>vh_name</i></code></pre></td> <td>Optional</td> <td>Specify the name of the virtual host. If the virtual host name is omitted, it publishes to the default virtual host: "public".</td> </tr> <tr> <td><pre><code><b>--setecdefault</b> </code></pre></td> <td>Optional</td> <td>Publish this database as the default one for the Earth Client to connect to if no database or virtual host is specified upon initial connection.</td> </tr> <tr> <td><pre><code><b>--enable_poisearch</b> </code></pre></td> <td>Optional</td> <td>Enable Point of Interest search if database contains POI data.</td> </tr> <tr> <td><pre><code><b>--enable_enhancedsearch</b> </code></pre></td> <td>Optional</td> <td>If POI search is enabled, enable enhanced search.</td> </tr> </tbody> </table> <h4>Unpublish database</h4> <pre> <code><b>--unpublish</b> <i>target_path</i></code></pre> <p>Unpublish database served from specified target path. For example, to unpublih a target path <code>/test</code>: <code>geserveradmin --unpublish /test</code></p> <h4>geserveradmin Virtual Host Commands</h4> <p>Each of the virtual host (VH) commands is listed below, along with its syntax, description, and options.</p> <div class="tip"> With GEE 5.x, you can now set up a virtual host that provides a secure publishing point for as many databases as you associate with it. </div> <p class="caution"><strong>Caution:</strong> Publishing to virtual hosts other than the default server is supported only in version 4.2 or later of Google Earth EC. If you are using version 4.0 or earlier, only databases that you publish to the default server can be accessed by Google Earth EC.</p> <h4>List virtual hosts</h4> <pre> <code><b>--listvhs</b></code></pre> <p>Provides a list of all registered virtual hosts configured for the current machine.</p> <h4>List virtual host information</h4> <pre> <code><b>--vhdetails</b><i> vh_name</i></code></pre> <p>Displays the name, URL, and cache level of the specified virtual host.</p> <h4>Add virtual hosts</h4> <pre> <code><b>--addvh </b><i>vh_name</i> [<b>--vhurl</b> <i>url</i>] [<b>--vhcachelevel</b> <i>level</i>] [<b>--ssl</b>]</code></pre> <p>Registers a new virtual host with the specified name. Spaces are not allowed in the virtual host name. For example:</p> <p><code>geserveradmin --addvh public_vh --vhurl http://mysite.com/public_vh</code></p> <table class="nice-table"> <tbody> <tr> <th width="30%">--addvh option</th> <th width="15%">Required/Optional</th> <th width="55%">Description</th> </tr> <tr> <td><pre> <code><b>--vhurl</b> <i>url</i></code></pre></td> <td>Optional</td> <td>The <code>vhurl</code> specifies the location of the virtual host. It must match the corresponding server-side virtual host configuration. If <code>vhurl</code> is omitted, it will be set to <code>http://<em>yourserver.domain</em>/vh_name</code>. <p>There are three ways to specify the <code>vhurl</code>:</p> <ul> <li>Location-based URL, such as <code>/private_ge</code>. For example, if the entire URL is <code>http://www.company.com/private_ge</code>, you enter <code>/private_ge</code>. <p class="note"><strong>Note:</strong> Google recommends that you use the <code>_ge</code> and <code>_map</code> naming convention to make it easier to distinguish between virtual host types.</p> </li> <li>Port-based URL, such as: <pre> <code>http://www.company.com:1234</code></pre> <p>The entire URL, including protocol, server name, path (if applicable), and port are required.</p> </li> <li>Name-based URL, such as: <pre> <code>http://corp.company.com</code></pre> </li> </ul> <p>For this type of specification, you must modify your DNS appropriately for the virtual host.</p> <p>After you use this command, you must create a configuration file for the new virtual host.</p></td> </tr> <tr> <td><pre> <code><b>--vhcachelevel</b> <i>num</i></code></pre></td> <td>Optional</td> <td>Specify a cache level (<code>1</code>, <code>2</code>, or <code>3</code>) for the virtual host. The default is <code>2</code>. <p>This cache is different than the client cache. This option caches only the index nodes at display levels 4, 8, and 12 (not data packets). If you increase this setting, Google Earth Enterprise Fusion caches more of the index in RAM, thereby decreasing server latency at the cost of server RAM. Level 3 uses approximately 1 GB of RAM. Level 2 uses approximately 4 MB of RAM. Level 1 uses approximately 16 KB of RAM. Each additional cache level consumes 256 times the RAM as the previous level and saves one disk read per packet served.</p> <p>The server makes no checks that the RAM needed for caching does not exceed the total RAM on the machine. For example, if you have three virtual hosts set to cache at level 3 on a machine that has only 2 GB of RAM, the machine will thrash memory. The default is Level 2, so you should be able to create as many virtual hosts as you want at the default cache level without worrying about running out of RAM.</p> <p>Typically, users increase only a small number of virtual hosts to cache level 3 on production servers and leave the rest of them at level 2. On servers that share a machine with Google Earth Enterprise Fusion, do not increase the level to 3. Google Earth Enterprise Fusion needs more RAM than the server does.</p></td> </tr> <tr> <td><pre> <code><b>--ssl</b></code></pre></td> <td>Optional</td> <td>Create a location-based virtual host with SSL configuration with the naming convention <code>_host.location_ssl</code> located in the path <code> <apache path="">/conf.d/virtual_servers/</apache> </code>. For detailed information about ensuring your Apache HTTP server configuration files are set up correctly, see <a href="../answer/6080928.html">Configure GEE Server 5.1.0 for SSL/HTTPS</a>. </td> </tr> </tbody> </table> <h4>Delete virtual hosts</h4> <pre> <code><b>--deletevh</b> <i>vh_name</i></code></pre> <p>Permanently deletes the specified virtual host. </p> <div class="note"> <p><strong>Note:</strong> If you want to delete a virtual host, you must first unpublish all currently published databases associated with it. To list the currently published databases for the virtual host you want to delete, use the <code>--publisheddbs</code> option. (See also <code>--unpublish</code>.) </p> </div> <h4>geserveradmin Admin Commands</h4> <p>Each of the admin commands is listed below, along with its syntax and description.</p> <h4>Delete database files</h4> <pre> <code><b>--garbagecollect</b></code></pre> <p>Permanently deletes the files for databases that have been selected for deletion. Generally, you run this command nightly to remove the files for databases that users have deleted to free up space on the storage device. (This command is similar to emptying the trash on a Windows or OS X operating system. See also <code>--deletedb</code>.)</p> <p class="note"><strong>Note:</strong> Deletes only those files that are not used by other databases on that server.</p> <h4>Clean up portable globes and maps registration</h4> <pre> <code><b>--portable_cleanup</b></code></pre> <p>Clean up portable globes registration information. The cleanup unregisters/unpublishes portable globes or maps that have been removed from your <code>/globes</code> directory. You should run <code>--portable_cleanup</code> to clean portable registration information when portable files, which are currently published/registered, have been removed from your <code>/globes</code> directory. </p> <p class="note"><strong>Note:</strong> The cleanup is not implemented when there are no portable globes or maps in the globes directory: <code>/opt/google/gehttpd/htdocs/cutter/globes</code>.</p> <h2><a name="69451"></a>getop</h2> <pre> <code><b>getop</b> [<b>--delay</b> <i>seconds</i>]</code></pre> <h3>Purpose</h3> <p>To display a list of what Google Earth Enterprise Fusion is currently working on and whether <code>gesystemmanager</code> and <code>geresourceprovider </code>are currently running.</p> <p>Enter <b>Ctrl-C </b>to exit and return to the prompt.</p> <h3>Example</h3> <pre> <code>getop --delay 30</code></pre> <h3>Commands</h3> <pre> <code><b>--delay</b> <i>seconds</i></code></pre> <p><i>Optional</i>. Specify the number of seconds delay between refreshes. For example, if you specify <code>30</code>, <code>getop</code> runs every 30 seconds. If you do not specify the delay, the display updates every five seconds.</p> <h2>geupgradeassetroot</h2> <pre> <code><b>geupgradeassetroot</b> <b>--assetroot</b> <i>path</i></code> [--<strong>noprompt</strong>]</pre> <h3>Purpose</h3> <p>To upgrade an existing asset root after installing a later version of the software.</p> <p class="note"><strong>Note:</strong> You must run this command as root.</p> <p class="note"><strong>Note:</strong> You must stop the system manager before using this command and then start it again after you are done.</p> <h3>Example</h3> <pre> <code>geupgradeassetroot --assetroot /data1/assets</code></pre> <h3>Commands</h3> <pre> <code><b>--assetroot</b> <i>path</i></code></pre> <p><i>Required</i>. Specify the path to the asset root. If omitted, the asset root defaults to <code>/gevol/assets</code>.</p> <pre> <code><b>--noprompt</b></code></pre> <p><i>Optional</i>. Perform the upgrade without prompting the user for any input. This option requires that some commands have arguments specified on the command line.</p> <p> </p> </p> <p class="copyright">&copy;2018 Google, Open GEE Contributors</p> </body> </html>
google/earthenterprise
docs/geedocs/5.2.5/answer/3481558.html
HTML
apache-2.0
36,982
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title></title> <script type='text/javascript'>//<![CDATA[ window.onload=function(){ var target = window.self === window.top ? window.opener : window.parent; var hash = window.location.hash; if (hash) { var token = window.location.hash.split('&')[0].split('=')[1]; // target.postMessage(token, 'http://example.com/'); localStorage.setItem('spotify-token', token); } }//]]> </script> </head> <body> </body> </html>
dbrgn/mopidy-mopify
src/vendor/angular-spotify/examples/callback.html
HTML
apache-2.0
579
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <title></title> <meta name="CREATED" content="20070518;12321300"> <meta name="CHANGED" content="20070611;14181900"> </head> <frameset cols="225,*" border="1" frameborder="yes" framespacing="2"> <frame name="leftFrame" src="toc.html" noresize="noresize" /> <frame name="mainFrame" src="index_content.html" /> <noframes> <body></body> </html>
gillesgagniard/wso2-wsf-cpp-gg
wsf_c/docs/index.html
HTML
apache-2.0
518
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.4.2_11) on Mon Jul 12 21:37:34 CEST 2010 --> <TITLE> TableStepper (Apache FOP 1.0 API) </TITLE> <META NAME="keywords" CONTENT="org.apache.fop.layoutmgr.table.TableStepper class"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="TableStepper (Apache FOP 1.0 API)"; } </SCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/TableStepper.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> fop 1.0</EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../org/apache/fop/layoutmgr/table/TableRowIterator.html" title="class in org.apache.fop.layoutmgr.table"><B>PREV CLASS</B></A>&nbsp; &nbsp;NEXT CLASS</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="TableStepper.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;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> org.apache.fop.layoutmgr.table</FONT> <BR> Class TableStepper</H2> <PRE> java.lang.Object <IMG SRC="../../../../../resources/inherit.gif" ALT="extended by"><B>org.apache.fop.layoutmgr.table.TableStepper</B> </PRE> <HR> <DL> <DT>public class <B>TableStepper</B><DT>extends java.lang.Object</DL> <P> This class processes row groups to create combined element lists for tables. <P> <P> <HR> <P> <!-- ======== NESTED CLASS SUMMARY ======== --> <!-- =========== FIELD SUMMARY =========== --> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <A NAME="constructor_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=2><FONT SIZE="+2"> <B>Constructor Summary</B></FONT></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../org/apache/fop/layoutmgr/table/TableStepper.html#TableStepper(org.apache.fop.layoutmgr.table.TableContentLayoutManager)">TableStepper</A></B>(<A HREF="../../../../../org/apache/fop/layoutmgr/table/TableContentLayoutManager.html" title="class in org.apache.fop.layoutmgr.table">TableContentLayoutManager</A>&nbsp;tclm)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Main constructor</TD> </TR> </TABLE> &nbsp; <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=2><FONT SIZE="+2"> <B>Method Summary</B></FONT></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;java.util.LinkedList</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../org/apache/fop/layoutmgr/table/TableStepper.html#getCombinedKnuthElementsForRowGroup(org.apache.fop.layoutmgr.LayoutContext, org.apache.fop.fo.flow.table.EffRow[], int)">getCombinedKnuthElementsForRowGroup</A></B>(<A HREF="../../../../../org/apache/fop/layoutmgr/LayoutContext.html" title="class in org.apache.fop.layoutmgr">LayoutContext</A>&nbsp;context, <A HREF="../../../../../org/apache/fop/fo/flow/table/EffRow.html" title="class in org.apache.fop.fo.flow.table">EffRow</A>[]&nbsp;rows, int&nbsp;bodyType)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Creates the combined element list for a row group.</TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TD><B>Methods inherited from class java.lang.Object</B></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD> </TR> </TABLE> &nbsp; <P> <!-- ============ FIELD DETAIL =========== --> <!-- ========= CONSTRUCTOR DETAIL ======== --> <A NAME="constructor_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=1><FONT SIZE="+2"> <B>Constructor Detail</B></FONT></TD> </TR> </TABLE> <A NAME="TableStepper(org.apache.fop.layoutmgr.table.TableContentLayoutManager)"><!-- --></A><H3> TableStepper</H3> <PRE> public <B>TableStepper</B>(<A HREF="../../../../../org/apache/fop/layoutmgr/table/TableContentLayoutManager.html" title="class in org.apache.fop.layoutmgr.table">TableContentLayoutManager</A>&nbsp;tclm)</PRE> <DL> <DD>Main constructor <P> <DT><B>Parameters:</B><DD><CODE>tclm</CODE> - The parent TableContentLayoutManager</DL> <!-- ============ METHOD DETAIL ========== --> <A NAME="method_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=1><FONT SIZE="+2"> <B>Method Detail</B></FONT></TD> </TR> </TABLE> <A NAME="getCombinedKnuthElementsForRowGroup(org.apache.fop.layoutmgr.LayoutContext, org.apache.fop.fo.flow.table.EffRow[], int)"><!-- --></A><H3> getCombinedKnuthElementsForRowGroup</H3> <PRE> public java.util.LinkedList <B>getCombinedKnuthElementsForRowGroup</B>(<A HREF="../../../../../org/apache/fop/layoutmgr/LayoutContext.html" title="class in org.apache.fop.layoutmgr">LayoutContext</A>&nbsp;context, <A HREF="../../../../../org/apache/fop/fo/flow/table/EffRow.html" title="class in org.apache.fop.fo.flow.table">EffRow</A>[]&nbsp;rows, int&nbsp;bodyType)</PRE> <DL> <DD>Creates the combined element list for a row group. <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>context</CODE> - Active LayoutContext<DD><CODE>rows</CODE> - the row group<DD><CODE>bodyType</CODE> - Indicates what type of body is processed (body, header or footer) <DT><B>Returns:</B><DD>the combined element list</DL> </DD> </DL> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/TableStepper.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> fop 1.0</EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../org/apache/fop/layoutmgr/table/TableRowIterator.html" title="class in org.apache.fop.layoutmgr.table"><B>PREV CLASS</B></A>&nbsp; &nbsp;NEXT CLASS</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="TableStepper.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;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright 1999-2010 The Apache Software Foundation. All Rights Reserved. </BODY> </HTML>
lewismc/yax
lib/fop-1.0/javadocs/org/apache/fop/layoutmgr/table/TableStepper.html
HTML
apache-2.0
11,788
<html lang='ha'> <!-- ** ** Copyright 2006, The Android Open Source Project ** ** 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. */ --> <p>Su dai ‘yan-adam, ana haifuwarsu ne duka ‘yantattu, kuma kowannensu na da mutunci da hakkoki daidai da na kowa. Suna da hankali da tunani, saboda haka duk abin da za su aikata wa juna, ya kamata su yi shi a cikin ‘yan-uwanci.</p> </html>
notofonts/Noto-LatinGreekCyrillic
test/LGC/fontdiff-ha-Latn_udhr.html
HTML
apache-2.0
891
<!DOCTYPE html> <head> <script src="../resources/runner.js"></script> <script src="http://localhost:8001/util.js"></script> <script src="resources/util_performance_test.js"></script> <script src="http://localhost:8001/fetch_benchmark.js"></script> </head> <body onload="startPerformanceTest( 'fetch', 'receiveBenchmark', 'blob', false, true, true)"> </body> </html>
Workday/OpenFrame
third_party/WebKit/PerformanceTests/Pywebsocket/fetch-receive-blob-window-async-verify.html
HTML
bsd-3-clause
390
<!-- Copyright 2020 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. --> <script> (async () => { const importObj = { env: { memory: new WebAssembly.Memory({ initial: 1, maximum: 1, }), __memory_base: 1024, table: new WebAssembly.Table({ initial: 2, maximum: 2, element: 'anyfunc', }), printf: function(s) { console.log(s); }, printfI: function(s) { console.log(s); } } }; const pagename = window.location.pathname.split('/').pop(); const modulename = pagename.substr(0, pagename.length - 5) + '.wasm'; const instance = await WebAssembly.instantiateStreaming(fetch(modulename), importObj); window.main = instance.instance.exports.Main; main(); })(); </script>
ChromeDevTools/devtools-frontend
test/e2e/resources/sources/wasm/wasm-with-sourcemap.html
HTML
bsd-3-clause
863
Generate HTML template for simple forms (Internal method). <div class="definition"> generateHTML() </div> Returns HTML text. <h4>Description</h4> In many cases the HTML template for the form is very typical - fields in one column, may be a few tabs. Instead of creating many HTML files with this typical HTML template, they can be generated at run-time. The <span class="argument">generateHTML</span> is an internal method and gets called when no HTML template is defined. First the form will check <a class="argument" href="w2form.formURL">.formURL</a>, <a class="argument" href="w2form.formHTML">.formHTML</a>, and innerHTML of the <a class="argument" href="w2form.box">.box</a>. If no HTML template is defined it will be generated. <div style="height: 10px"></div> The method will loop through all the <a class="argument" href="w2form.fields">.fields</a> and <a class="argument" href="w2form.actions">.actions</a> to generate HTML template. It will use <span class="argument">html</span> property of the field if it is defined. It can have following structure: <textarea class="javascript"> html = { caption : '', // caption for the field group : '', // if not empty then starts a grop before field attr : '', // additional attributes inside &lt;input&gt; control span : 6, // number 1-9 that defined with of the caption span text : '', // any html that will be placed after the input control page : 0 // page number control belongs to } </textarea> You should not call this method directly. The following is the example how to use it <textarea class="javascript"> $('#form').w2form({ name : 'form', fields: [ { name: 'field.text', type: 'text', required: true, html: { caption: 'Field 1', attr: 'size="40"', span: 5 } }, { name: 'field.alpha', type: 'alphanumeric', required: true, html: { caption: 'Field 2', attr: 'size="40"', span: 5 } }, { name: 'field.int', type: 'int', required: true html: { caption: 'Field 3', attr: 'size="40"', span: 5 } } ], actions: { reset: function () {}, save: function () {} } }); </textarea>
suitedJK/w2ui
docs/details/w2form.generateHTML.html
HTML
mit
2,221
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>SquishIt API Documentation - Table of Content</title> <link rel="stylesheet" href="TOC.css"> <link rel="shortcut icon" href="favicon.ico"/> <script type="text/javascript" src="TOC.js"></script> </head> <body onload="javascript: Initialize('.aspx');" onresize="javascript: ResizeTree();"> <form id="IndexForm" runat="server"> <div id="TOCDiv" class="TOCDiv"> <div id="divSearchOpts" class="SearchOpts" style="height: 100px; display: none;"> <img class="TOCLink" onclick="javascript: ShowHideSearch(false);" src="CloseSearch.png" height="16" width="16" alt="Hide search" style="float: right;"/> Keyword(s) for which to search: <input id="txtSearchText" type="text" style="width: 100%;" onkeypress="javascript: return OnSearchTextKeyPress(event);" /><br /> <input id="chkSortByTitle" type="checkbox" /><label for="chkSortByTitle">&nbsp;Sort results by title</label><br /> <input type="button" value="Search" onclick="javascript: return PerformSearch();" /> </div> <div id="divIndexOpts" class="IndexOpts" style="height: 25px; display: none;"> <img class="TOCLink" onclick="javascript: ShowHideIndex(false);" src="CloseSearch.png" height="17" width="17" alt="Hide index" style="float: right;"/> Keyword Index </div> <div id="divNavOpts" class="NavOpts" style="height: 20px;"> <img class="TOCLink" onclick="javascript: SyncTOC();" src="SyncTOC.gif" height="16" width="16" alt="Sync to TOC"/> <img class="TOCLink" onclick="javascript: ExpandOrCollapseAll(true);" src="ExpandAll.bmp" height="16" width="16" alt="Expand all "/> <img class="TOCLink" onclick="javascript: ExpandOrCollapseAll(false);" src="CollapseAll.bmp" height="16" width="16" alt="Collapse all" /> <a href="#" title="Click to obtain a direct link to the displayed topic" style="margin-left: 10px; vertical-align: top;" onclick="javascript: ShowDirectLink();">Direct Link</a> </div> <div class="Tree" id="divSearchResults" style="display: none;" onselectstart="javascript: return false;"> </div> <div class="Tree" id="divIndexResults" style="display: none;" onselectstart="javascript: return false;"> </div> <div class="Tree" id="divTree" onselectstart="javascript: return false;"> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/680e4bad-9a1d-a74d-36ce-686d017a2211.htm" target="TopicContent">SquishIt.CoffeeScript Namespace</a> <div class="Hidden"> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/6ac24b90-2f35-7947-b177-29b570519897.htm" target="TopicContent">CoffeeScriptPreprocessor Class</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/013ba666-1e35-0829-fd61-2d80dc71727f.htm" target="TopicContent">CoffeeScriptPreprocessor Members</a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/8c35617a-ff58-9fb7-5595-69496fc6d517.htm" target="TopicContent">CoffeeScriptPreprocessor Constructor </a> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/a3b3f61d-429a-e70e-5f2a-756537d72b87.htm" target="TopicContent">CoffeeScriptPreprocessor Methods</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/2b69d281-a0b3-168f-f15b-0580a3bb790f.htm" target="TopicContent">Process Method </a> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/65b3a5c7-a401-4ff6-6b60-779042d69e19.htm" target="TopicContent">CoffeeScriptPreprocessor Properties</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/66ae906d-c54a-170f-598c-380705484eb9.htm" target="TopicContent">Extensions Property </a> </div> </div> </div> </div> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/5a8376d8-77e7-b5ca-1fa6-39dc91512dc2.htm" target="TopicContent">SquishIt.Framework Namespace</a> <div class="Hidden"> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/ebc2f224-66c4-d408-3acc-2b45a635fca7.htm" target="TopicContent">Bundle Class</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/cb59eb49-145f-4114-8612-b1d49116fccf.htm" target="TopicContent">Bundle Members</a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/611525ef-1e02-c967-b37a-c2171b877e7b.htm" target="TopicContent">Bundle Constructor </a> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/a3f5f998-85f8-e45d-e8cf-28a71078fdf0.htm" target="TopicContent">Bundle Methods</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/bd02972e-24ec-ccb8-2a51-7e63581121f3.htm" target="TopicContent">ClearPreprocessors Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/e6ac8b0d-5cdf-2950-8199-94c5628a030d.htm" target="TopicContent">ConfigureDefaults Method </a> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/06dc2317-b788-1c3b-692d-ef464b21e738.htm" target="TopicContent">Css Method </a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/f0c829c0-5fd1-2271-045b-9822f82c977d.htm" target="TopicContent">Css Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/dc0c165c-9808-fff6-4d9e-9fd15b9a0572.htm" target="TopicContent">Css Method ()</a> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/c4892cef-b75b-a461-74ce-327a5452f653.htm" target="TopicContent">JavaScript Method </a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/290e09af-1100-689c-aa80-43390dd296eb.htm" target="TopicContent">JavaScript Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/5df17768-36a9-9f20-54f2-507be45ca74e.htm" target="TopicContent">JavaScript Method ()</a> </div> </div> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/ff602ec5-a929-b24c-7cf7-a79fad47eb90.htm" target="TopicContent">RegisterGlobalPreprocessor(T) Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/4268e538-589a-e7e0-0fe8-6fd4e6c6b0bc.htm" target="TopicContent">RegisterScriptPreprocessor(T) Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/485fc0eb-8fb5-465d-3bc6-da5fa5562018.htm" target="TopicContent">RegisterStylePreprocessor(T) Method </a> </div> </div> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/ff61d179-5c39-311f-ba1f-a04354168bd1.htm" target="TopicContent">IPreprocessor Interface</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/0630d2b9-6d33-54a0-6065-310af45c025a.htm" target="TopicContent">IPreprocessor Members</a> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/ff37ca8f-b4d2-5b10-c37a-2f18325eaeda.htm" target="TopicContent">IPreprocessor Methods</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/3d1e016d-9569-ed9b-1bc8-09102fea7169.htm" target="TopicContent">Process Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/2d9a4c66-e3ca-2e67-afa3-4df14b8beeca.htm" target="TopicContent">ValidFor Method </a> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/54126ac2-4dd0-fd3f-c86e-359e3eeb8caf.htm" target="TopicContent">IPreprocessor Properties</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/7b83d73e-1dcf-4485-a604-72c25e8de6ce.htm" target="TopicContent">Extensions Property </a> </div> </div> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/c970cc4e-099b-2c49-bb57-609a1a32754f.htm" target="TopicContent">IProcessResult Interface</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/89121798-aad7-6eb4-2f7b-581c68feb74f.htm" target="TopicContent">IProcessResult Members</a> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/28d36f4a-295a-40aa-248d-c224dfeeb35c.htm" target="TopicContent">IProcessResult Properties</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/3b1b0503-74b8-7e71-801c-fd71965f6779.htm" target="TopicContent">Dependencies Property </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/7cfff5c2-e536-1f61-5884-61fd72fa2180.htm" target="TopicContent">Result Property </a> </div> </div> </div> </div> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/fc2890b4-2dd9-8649-ed46-f8e0aad90fd0.htm" target="TopicContent">SquishIt.Framework.Base Namespace</a> <div class="Hidden"> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/0b171740-a102-8440-039e-113635419b6d.htm" target="TopicContent">BundleBase(T) Class</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/02c4b2ac-1c16-9931-3140-e6b369011cfb.htm" target="TopicContent">BundleBase(T) Members</a> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/f3e87501-4cfa-96f5-f1c6-5a4e4c65a6c2.htm" target="TopicContent">BundleBase(T) Methods</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/c26a04f6-ebc6-b7dc-1b61-d3a7a6bb3be8.htm" target="TopicContent">Add Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/2136e6e5-544d-9d7c-d44c-557541122411.htm" target="TopicContent">AddDirectory Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/d22ed8f9-2808-658d-9cdc-2b5b8cbdbbfd.htm" target="TopicContent">AddDynamic Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/b9358d9d-08e3-b546-8f9f-2d6fa0e3b667.htm" target="TopicContent">AddEmbeddedResource Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/bc780345-735f-9ed6-e6ea-8384d103a0b0.htm" target="TopicContent">AddMinified Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/7983695d-1f52-8b09-4c42-37bea427cb88.htm" target="TopicContent">AddMinifiedDirectory Method </a> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/edf26de4-cb32-60e3-74a2-f8035da0cc99.htm" target="TopicContent">AddMinifiedString Method </a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/0457c369-aeb4-4d23-0684-4b39d72e5061.htm" target="TopicContent">AddMinifiedString Method (String)</a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/05dc0e57-5a6f-eb63-9d45-7eedac42f3e6.htm" target="TopicContent">AddMinifiedString Method (String, String)</a> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/e219f284-c275-331e-7816-bc4c4b9778c0.htm" target="TopicContent">AddRemote Method </a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/c67b087b-de41-effd-c4ef-7b299feeec1f.htm" target="TopicContent">AddRemote Method (String, String)</a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/b315582b-9210-7798-1d44-d989bd0ca1ab.htm" target="TopicContent">AddRemote Method (String, String, Boolean)</a> </div> </div> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/d3a67c91-cdff-0496-b9b1-fa5ab66dfc77.htm" target="TopicContent">AddRootEmbeddedResource Method </a> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/188789f6-cc4c-c39d-5812-45f7597a2d45.htm" target="TopicContent">AddString Method </a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/d419a370-58c5-fe04-55c5-275ccbbce0ce.htm" target="TopicContent">AddString Method (String)</a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/8e56d2f5-edfe-f1cd-6b79-0c86db6b9591.htm" target="TopicContent">AddString Method (String, Object[])</a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/94b8f074-fbbc-2bfd-3064-67a9ee68c6b2.htm" target="TopicContent">AddString Method (String, String, Object[])</a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/b717fa1d-0fcc-fe26-8e72-b34a4798e08c.htm" target="TopicContent">AddString Method (String, String, String)</a> </div> </div> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/c1a98ff0-c98b-8a20-a45c-a766d5f24b88.htm" target="TopicContent">AsCached Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/57f7147a-e224-9988-1ea9-d4dce12a346f.htm" target="TopicContent">AsNamed Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/0a3a78ff-c0dc-7ed0-eed0-f7b22fd7713b.htm" target="TopicContent">ClearCache Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/cb1e8868-c336-cdd1-eb4f-74ea9df99768.htm" target="TopicContent">ForceDebug Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/2f8398fb-57d9-1c12-2a1d-bee2d310afa1.htm" target="TopicContent">ForceDebugIf Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/c06d1eef-0a50-255f-f6d1-11509e121bf6.htm" target="TopicContent">ForceRelease Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/3b006e83-6b9b-e081-773e-f20b165c40f5.htm" target="TopicContent">HashKeyNamed Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/5e502bdc-565b-c2e6-c731-5de8610bc2f5.htm" target="TopicContent">Render Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/62f6f0e3-9941-961f-a012-10babcc8eca5.htm" target="TopicContent">RenderCached Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/dec4c0cf-4658-3760-c2cd-33f8e7e39a93.htm" target="TopicContent">RenderCachedAssetTag Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/90fc1e04-3b0b-ef79-24ce-4411f5bc36ad.htm" target="TopicContent">RenderNamed Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/b877bae8-0ab9-300a-486c-5748f45ba2f3.htm" target="TopicContent">RenderOnlyIfOutputFileMissing Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/b6174666-47be-8be5-4fdd-66a20dbca0b5.htm" target="TopicContent">WithAttribute Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/ebe6034c-f0de-78d6-d7d0-8e8191d3648a.htm" target="TopicContent">WithAttributes Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/07609f2f-d113-a30c-0ee3-b6dc016c8e5f.htm" target="TopicContent">WithCacheInvalidationStrategy Method </a> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/d8503d76-58aa-d23d-a511-66fc1eb5c561.htm" target="TopicContent">WithMinifier Method </a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/abc0737b-1f07-3c56-2d38-2fe6c1b453ce.htm" target="TopicContent">WithMinifier(TMin) Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/b169afb3-e582-032c-f604-80e73f4988cd.htm" target="TopicContent">WithMinifier(TMin) Method (TMin)</a> </div> </div> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/aaf498c4-4d32-7b5e-ae9a-7e0b180e713a.htm" target="TopicContent">WithOutputBaseHref Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/6f8b1261-2984-3d96-cf71-4781689654e7.htm" target="TopicContent">WithoutRevisionHash Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/f8dcb3c8-881b-acaf-9b7a-d9f5dd4e8eac.htm" target="TopicContent">WithoutTypeAttribute Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/d71d33b3-2e00-661e-4dae-763667e0f008.htm" target="TopicContent">WithPreprocessor Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/d129cfde-96f3-9b7a-2aff-4ad7013ce05d.htm" target="TopicContent">WithReleaseFileRenderer Method </a> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/e93fd93c-86e2-f8e8-9f90-32a65f988436.htm" target="TopicContent">BundleBase(T) Properties</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/865c2fee-ce79-947e-0210-7e0b9a312b7f.htm" target="TopicContent">AssetCount Property </a> </div> </div> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/6b8b1a1e-21d6-4377-1832-b10fbd971a08.htm" target="TopicContent">Preprocessor Class</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/9c29cfe8-8908-5b81-554a-b06e8de31a1b.htm" target="TopicContent">Preprocessor Members</a> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/90b7f15e-ba8f-6b6c-cd22-fe4854f48cfe.htm" target="TopicContent">Preprocessor Methods</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/f9760b11-d5f7-d2ed-8288-7a3879fb3552.htm" target="TopicContent">Process Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/44107310-8b18-61a4-9f94-2aa66f2593bb.htm" target="TopicContent">ValidFor Method </a> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/25a034c9-bbb6-b7bc-cad4-1bf6aa114892.htm" target="TopicContent">Preprocessor Properties</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/03300629-9153-e4da-0b5c-b7810918c0c9.htm" target="TopicContent">Extensions Property </a> </div> </div> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/d5f12d33-f550-f9c3-d514-29a026523282.htm" target="TopicContent">ProcessResult Class</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/469dca28-1d50-070c-83ad-95f7cea095f2.htm" target="TopicContent">ProcessResult Members</a> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/e750c9f5-dc5d-edac-b48b-575aeabb1ba7.htm" target="TopicContent">ProcessResult Constructor </a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/9e6c9d3e-9974-d75f-f317-d8f4412e3e14.htm" target="TopicContent">ProcessResult Constructor (String)</a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/29087539-2a68-87a9-c302-f06fb525eb72.htm" target="TopicContent">ProcessResult Constructor (String, IEnumerable(String))</a> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/aaa95f5b-3f8b-e528-beda-b9e6e6da4f85.htm" target="TopicContent">ProcessResult Properties</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/7db32118-fa53-076f-2ebb-5eb33e962ce7.htm" target="TopicContent">Dependencies Property </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/59f276e7-0a8c-eed1-543a-9c0da0a9e598.htm" target="TopicContent">Result Property </a> </div> </div> </div> </div> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/a24d2a94-d97e-5f0e-7811-ae3d049579b0.htm" target="TopicContent">SquishIt.Framework.CSS Namespace</a> <div class="Hidden"> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/fddcfcdf-b8e6-0c63-6674-a5efd118ebe9.htm" target="TopicContent">CSSBundle Class</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/8ced490a-b739-2e6d-5708-923a3cce4d48.htm" target="TopicContent">CSSBundle Members</a> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/ed432df4-8418-7e98-2e93-556c14d6a837.htm" target="TopicContent">CSSBundle Constructor </a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/4c345bd2-428d-7460-ce82-3c4b0325792d.htm" target="TopicContent">CSSBundle Constructor </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/00e9c5ce-ec08-c91f-54ed-e6d1e52c4c9e.htm" target="TopicContent">CSSBundle Constructor ()</a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/d5a37189-6def-a026-e47a-0603c9c3b758.htm" target="TopicContent">CSSBundle Constructor (, , , , , )</a> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/0cd05569-824b-e87f-b8d1-66bc1b3bb9c7.htm" target="TopicContent">CSSBundle Methods</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/71453f19-eda9-a548-edc1-733267978ec8.htm" target="TopicContent">AppendHashForAssets Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/494f682c-0856-d6ef-d08d-99ea049fe50a.htm" target="TopicContent">ProcessImports Method </a> </div> </div> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/2998e59e-fdcb-3f47-4b8f-eb07fc811ab7.htm" target="TopicContent">CSSBundle Properties</a> </div> </div> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/9b58c471-1e4b-e532-c90d-3145a5c6c172.htm" target="TopicContent">SquishIt.Framework.Invalidation Namespace</a> <div class="Hidden"> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/a5d2a183-ea30-3e2c-e3be-aa1a8ec69a60.htm" target="TopicContent">DefaultCacheInvalidationStrategy Class</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/0fb2be86-79a9-82ab-e8b1-f7eebfc35691.htm" target="TopicContent">DefaultCacheInvalidationStrategy Members</a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/9f5f3be6-9a52-1219-e0ae-80e3415561d0.htm" target="TopicContent">DefaultCacheInvalidationStrategy Constructor </a> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/1afc5106-1a76-1122-2bcb-b762abbc87a3.htm" target="TopicContent">DefaultCacheInvalidationStrategy Methods</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/03f2c013-203e-66d4-8202-4dc8fb883040.htm" target="TopicContent">GetOutputFileLocation Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/b6d651a9-9051-12c5-393f-79b6bdaec203.htm" target="TopicContent">GetOutputWebPath Method </a> </div> </div> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/aad4febe-90a0-8dcc-4fbb-bf55b20ab733.htm" target="TopicContent">HashAsVirtualDirectoryCacheInvalidationStrategy Class</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/7ac1e135-fbd3-7164-77c7-6145c1abe30c.htm" target="TopicContent">HashAsVirtualDirectoryCacheInvalidationStrategy Members</a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/1f61ce70-b3d3-6bcd-b939-e9deca221695.htm" target="TopicContent">HashAsVirtualDirectoryCacheInvalidationStrategy Constructor </a> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/544406f9-7066-b62f-1ba4-53ca1ef25946.htm" target="TopicContent">HashAsVirtualDirectoryCacheInvalidationStrategy Methods</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/5ae7a892-f686-c933-d390-647a7f586f0a.htm" target="TopicContent">GetOutputFileLocation Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/9176d5de-ec8c-cb52-eee0-41a3485bcf72.htm" target="TopicContent">GetOutputWebPath Method </a> </div> </div> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/6535275c-7f21-97f3-9079-0e395d56ef86.htm" target="TopicContent">ICacheInvalidationStrategy Interface</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/7976e79f-61e9-22ad-a4fe-c18b73c103e3.htm" target="TopicContent">ICacheInvalidationStrategy Members</a> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/aa92af7a-92e7-9452-1f73-cca09bd29d97.htm" target="TopicContent">ICacheInvalidationStrategy Methods</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/c419d8de-2401-0a1c-163e-4652af9ecaa5.htm" target="TopicContent">GetOutputFileLocation Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/7ad46474-1e94-2cd3-f060-25ba496a4049.htm" target="TopicContent">GetOutputWebPath Method </a> </div> </div> </div> </div> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/94409344-08bf-0713-1b93-b932cc4b482c.htm" target="TopicContent">SquishIt.Framework.JavaScript Namespace</a> <div class="Hidden"> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/306397d5-d24a-cc5f-b5e0-3c49e454870c.htm" target="TopicContent">JavaScriptBundle Class</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/c5c20a26-ed67-4418-0bb8-6965977265e4.htm" target="TopicContent">JavaScriptBundle Members</a> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/18bdb5c1-2f4e-f39f-5473-96a680a452fe.htm" target="TopicContent">JavaScriptBundle Constructor </a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/dc9a2a48-7626-eb7d-ec51-9700547810b2.htm" target="TopicContent">JavaScriptBundle Constructor </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/70dde251-a500-08fd-5322-f4cc4df3f8b3.htm" target="TopicContent">JavaScriptBundle Constructor ()</a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/ef3d5d9b-41eb-3206-d888-2b1e0c3c63bf.htm" target="TopicContent">JavaScriptBundle Constructor (, , , , , )</a> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/3a62bc5d-bd42-6cd8-4f56-067664632a64.htm" target="TopicContent">JavaScriptBundle Methods</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/6ee86fa4-4fad-f2f3-1a2d-ef70a95c0502.htm" target="TopicContent">WithDeferredLoad Method </a> </div> </div> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/314b7eac-d78d-df77-7a9e-75c28f764c4f.htm" target="TopicContent">JavaScriptBundle Properties</a> </div> </div> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/41999fc4-a259-dca9-1f14-55848e9190a4.htm" target="TopicContent">SquishIt.Hogan Namespace</a> <div class="Hidden"> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/d645b561-f235-1566-f16f-9a830ee5c7b9.htm" target="TopicContent">HoganPreprocessor Class</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/d3a6a47c-2bae-b4fc-5460-16c957879d9a.htm" target="TopicContent">HoganPreprocessor Members</a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/62ffed66-fc39-f90b-fc7d-82c12d88f9db.htm" target="TopicContent">HoganPreprocessor Constructor </a> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/1c68928b-b1d4-df4a-425a-618de25a3500.htm" target="TopicContent">HoganPreprocessor Methods</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/32f414a2-0e67-0977-94f4-b9c4eb6e564d.htm" target="TopicContent">Process Method </a> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/a271f08c-6c9a-5234-2135-cf3b32c84a73.htm" target="TopicContent">HoganPreprocessor Properties</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/24838269-acab-75b1-c04c-5547e1ca7c13.htm" target="TopicContent">Extensions Property </a> </div> </div> </div> </div> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/33db9212-8c8a-78db-5609-3a00d387a4eb.htm" target="TopicContent">SquishIt.Less Namespace</a> <div class="Hidden"> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/cfab79fc-eeed-f69a-4036-ac034a090cf1.htm" target="TopicContent">LessPreprocessor Class</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/d8131d4f-9e4f-1921-35a9-4f697dfab5a7.htm" target="TopicContent">LessPreprocessor Members</a> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/68f9d5ca-d521-1c3d-f0e3-3c1e5f7369d7.htm" target="TopicContent">LessPreprocessor Constructor </a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/84e4c757-1e91-b205-f6f9-aab57d792376.htm" target="TopicContent">LessPreprocessor Constructor </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/087ad57a-9c7e-a8a5-9ad3-802ed0a5fba3.htm" target="TopicContent">LessPreprocessor Constructor (Func())</a> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/4c56b740-d6bf-c616-038b-6276a557fa6e.htm" target="TopicContent">LessPreprocessor Fields</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/bc6183d0-40b5-7668-8f1a-c77e7690ac7d.htm" target="TopicContent">EngineBuilder Field</a> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/f98ad931-74ef-a09d-cb80-dd36d15485d7.htm" target="TopicContent">LessPreprocessor Methods</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/abad8eb2-941a-d5b9-2d8c-3a81ec8bf3f9.htm" target="TopicContent">Process Method </a> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/355a7d30-2c94-e773-4456-55df8110a4a8.htm" target="TopicContent">LessPreprocessor Properties</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/bbb636bb-5912-a177-24b4-c7166bf70938.htm" target="TopicContent">Extensions Property </a> </div> </div> </div> </div> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/75a9fdfb-af4a-1bd0-4e77-c3ad42a29aea.htm" target="TopicContent">SquishIt.MsIeCoffeeScript Namespace</a> <div class="Hidden"> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/6e8faa86-cd89-0310-90a1-7f60bc310ddd.htm" target="TopicContent">CoffeeScriptPreprocessor Class</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/dbbcb6b4-3859-5792-b092-3a89ae00c871.htm" target="TopicContent">CoffeeScriptPreprocessor Members</a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/fce5caba-676b-5089-4010-39a275f09684.htm" target="TopicContent">CoffeeScriptPreprocessor Constructor </a> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/240cebd5-722c-e245-ddc2-5e121c1de1ef.htm" target="TopicContent">CoffeeScriptPreprocessor Methods</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/272e93eb-0fa5-81e4-48c3-a41b5796a63a.htm" target="TopicContent">Process Method </a> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/cbe70a59-43ba-b154-d18b-2ff38b324c5c.htm" target="TopicContent">CoffeeScriptPreprocessor Properties</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/815eb751-9b45-1589-ed68-00410fe9414c.htm" target="TopicContent">Extensions Property </a> </div> </div> </div> </div> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/2565d762-c2c1-48e3-9b27-8c251c22dd8a.htm" target="TopicContent">SquishIt.MsIeHogan Namespace</a> <div class="Hidden"> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/f52dd54a-112c-ab1f-a994-65a64b60cd04.htm" target="TopicContent">HoganPreprocessor Class</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/63240fe5-5345-e857-759c-624e6bcc7f8c.htm" target="TopicContent">HoganPreprocessor Members</a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/66a19655-1b45-a039-c0e2-6dc3abcbb6f3.htm" target="TopicContent">HoganPreprocessor Constructor </a> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/1c5a98a7-b597-fac9-fccf-0b604f3e2c04.htm" target="TopicContent">HoganPreprocessor Methods</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/9b9b47e9-d8b7-521f-4d3a-3289e198c5ae.htm" target="TopicContent">Process Method </a> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/2e555af3-1eb1-73c0-131d-e62311903bf8.htm" target="TopicContent">HoganPreprocessor Properties</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/b528e09d-00f1-3e82-551f-56df60e45d99.htm" target="TopicContent">Extensions Property </a> </div> </div> </div> </div> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/8b144a86-a0fd-7506-799e-b982f4224260.htm" target="TopicContent">SquishIt.Mvc Namespace</a> <div class="Hidden"> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/c99c4f26-fdcf-f710-22c9-2fda58abfbf6.htm" target="TopicContent">CSSBundleExtensions Class</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/fa569138-1706-fb7a-bf6e-dad8cce74e10.htm" target="TopicContent">CSSBundleExtensions Members</a> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/17b21b08-2fde-eb98-a12f-af7885975092.htm" target="TopicContent">CSSBundleExtensions Methods</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/3acea4e2-bd61-b5a0-2d42-58e0c737df75.htm" target="TopicContent">MvcRender Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/6b14607d-b08f-9016-4df8-5788da68de6d.htm" target="TopicContent">MvcRenderCachedAssetTag Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/7e3bd4d9-0dc6-e7e9-ce01-46cc8eb5b032.htm" target="TopicContent">MvcRenderNamed Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/77b1a37c-db87-e54e-9b42-206433071205.htm" target="TopicContent">RenderMvc Method </a> </div> </div> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/1e771f1b-4bdb-25d1-1fe4-3303818665f5.htm" target="TopicContent">HtmlHelperExtensions Class</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/bc5ea901-16ba-094c-eeba-3179eb925ff9.htm" target="TopicContent">HtmlHelperExtensions Members</a> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/80cb37de-2cbf-5496-b3e2-6d2d540c56f2.htm" target="TopicContent">HtmlHelperExtensions Methods</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/52719af2-55e9-c693-fdc0-182fcb5bd9c8.htm" target="TopicContent">BundleCss Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/ef9b06c2-4dce-c375-357a-e1cf1aaac9f1.htm" target="TopicContent">BundleJavaScript Method </a> </div> </div> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/f68f1d2b-4621-340b-46c7-c65b04e40161.htm" target="TopicContent">JavaScriptBundleExtensions Class</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/791bf2d2-ae27-7973-3e7c-78a818bbdc24.htm" target="TopicContent">JavaScriptBundleExtensions Members</a> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/fb00a2ba-2244-3ec5-eff9-90fb33c6b7c2.htm" target="TopicContent">JavaScriptBundleExtensions Methods</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/900f1c0a-f310-659d-b190-0a3b99cec9a8.htm" target="TopicContent">MvcRender Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/8090f180-5478-321e-7ef3-939cbb0ea33d.htm" target="TopicContent">MvcRenderCachedAssetTag Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/448b9254-69ce-82ba-4378-87cdf943d5d8.htm" target="TopicContent">MvcRenderNamed Method </a> </div> </div> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/8eb4e90e-b17f-499a-60a3-1ab024ec6198.htm" target="TopicContent">SquishItController Class</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/90e32407-e7f6-c08c-4fc0-5c670d17d66a.htm" target="TopicContent">SquishItController Members</a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/1f642441-1b3d-2abd-a99a-973b7a49edb7.htm" target="TopicContent">SquishItController Constructor </a> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/e990f3d8-a4c3-9f6f-9264-92e185290e81.htm" target="TopicContent">SquishItController Methods</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/73ed6d7c-2914-a8ab-1099-4f225aebde7c.htm" target="TopicContent">Css Method </a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/c5192bcf-633a-f65c-6222-a56464cb4d06.htm" target="TopicContent">Js Method </a> </div> </div> </div> </div> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/ffbba609-eb94-b839-c503-ff753ab29ced.htm" target="TopicContent">SquishIt.Sass Namespace</a> <div class="Hidden"> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/28cf4201-0838-8075-104b-db5e351375a7.htm" target="TopicContent">SassPreprocessor Class</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/3cb4156f-3531-2890-a364-321abfe819c0.htm" target="TopicContent">SassPreprocessor Members</a> </div> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/72c3321d-35e2-c163-81a1-ed91d9fa09e0.htm" target="TopicContent">SassPreprocessor Constructor </a> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/e736ff8f-4d11-870d-6e03-05c7f61193c2.htm" target="TopicContent">SassPreprocessor Methods</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/d737671b-754b-23c2-5a01-8e21af97481a.htm" target="TopicContent">Process Method </a> </div> </div> </div> <div class="TreeNode"> <img class="TreeNodeImg" onclick="javascript: Toggle(this);" src="Collapsed.gif"/><a class="UnselectedNode" onclick="javascript: return Expand(this);" href="html/e315e0fb-dd64-529c-e0db-042ce234cf6f.htm" target="TopicContent">SassPreprocessor Properties</a> <div class="Hidden"> <div class="TreeItem"> <img src="Item.gif"/><a class="UnselectedNode" onclick="javascript: return SelectNode(this);" href="html/5a7081ca-422e-e6a6-ed70-dbfc58e42ae8.htm" target="TopicContent">Extensions Property </a> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div id="TOCSizer" class="TOCSizer" onmousedown="OnMouseDown(event)" onselectstart="javascript: return false;"></div> <iframe id="TopicContent" name="TopicContent" class="TopicContent" src="html/680e4bad-9a1d-a74d-36ce-686d017a2211.htm"> This page uses an IFRAME but your browser does not support it. </iframe> </form> </body> </html>
wolfgang42/SquishIt
Help/index.html
HTML
mit
56,271
{% extends path+"/_layout.html" %} {% import path1+"/_macros_nav.html" as nav %} {% block assess_content %} <main id="content" role="main" class="main-content"> <div class="container"> <div class="grid-row"> <div class="column-full"> {# This is the BIG BLUE BAR at the top - #jussayin #} {% include path+"/includes/_staff_heading.html" %} <div nunj-block="citizen_content"> {% block citizen_content %}{% endblock %} </div> </div><!-- column --> </div><!-- row --> </div><!-- container --> </main> {% include path+"/includes/evidence/_evidence_panel.html" %} {% endblock %} {% block page_scripts %} {{ super }} <script type="text/javascript"> $(document).on('ready',function() { $('.function_link').on('click',function(e) { e.preventDefault(); var href = $(this).attr('href'); console.log(href) $.ajax({ url: href, method: "GET", complete: function(data,status,xhr) { console.log(data) document.location.reload(true); } }); }); }); </script> <script type="text/javascript"> $( document ).ready(function() { $( ".panel-switch" ).click(function() { $( ".inner-panel" ).toggleClass( "panel-open" ); }); }); </script> <script type="text/javascript"> $(document).on('ready',function() { $('.tag').on('click',function(e) { e.preventDefault(); $(this).toggleClass('clicked'); }); $('.tag').on('mouseleave',function(e) { e.preventDefault(); $(this).removeClass('clicked'); }); $.fancybox.defaults.beforeShow = function(){ $("html").css({'overflow-y':'hidden'}); }; $.fancybox.defaults.afterClose = function(){ $("html").css({'overflow-y':'visible'}); $('.des_trigger').blur(); }; // highlight the approrpaiet left nav $('.evidence__leftnav a h3').each(function(i,e) { if ($(e).text() == $('h2.heading-large').text()) $(e).parent().addClass('active'); }) }); </script> <script> $(".gp-report-show td span").click(function(){ $(".content-hide").toggleClass("content-show"); $(".gp-report-show").toggleClass("active-show"); }); </script> <script> $(".med3-show td span").click(function(){ $(".content-hide2").toggleClass("content-show2"); $(".med3-show").toggleClass("active-show"); }); </script> <script> $(".UC50-show td span").click(function(){ $(".content-hide3").toggleClass("content-show3"); $(".UC50-show").toggleClass("active-show"); }); </script> <script> $(".side-show td span").click(function(){ $(".content-hide4").toggleClass("content-show4"); $(".side-show").toggleClass("active-show"); }); </script> {% endblock %} {% block footer_top %} {{ super() }} <p class="font-xsmall"> <a href="/{{ path }}/clearSession" id="clear_data" class="function_link">clear data</a> | <a href="/{{ path }}/prefillAssessment" id="prefill" class="function_link">prefill</a> </p> {% endblock %}
dwpdigitaltech/healthanddisability
app/views/fha/v9/decisionmaker/_layoutChat.html
HTML
mit
3,072
<!-- saved from url=(0014)about:internet --><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"> <html> <!-- Standard Head Part --> <head> <title>NUnit - Suite</title> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <meta http-equiv="Content-Language" content="en-US"> <link rel="stylesheet" type="text/css" href="nunit.css"> <link rel="shortcut icon" href="favicon.ico"> </head> <!-- End Standard Head Part --> <body> <!-- Standard Header for NUnit.org --> <div id="header"> <a id="logo" href="http://www.nunit.org"><img src="img/logo.gif" alt="NUnit.org" title="NUnit.org"></a> <div id="nav"> <a href="http://www.nunit.org">NUnit</a> <a class="active" href="index.html">Documentation</a> </div> </div> <!-- End of Header --> <div id="content"> <div style="float:right"><b>Update: August 22, 2007</b></div> <h3>SuiteAttribute (NUnit 2.0/2.4.4)</h3> <p>The Suite Attribute is used to define subsets of test to be run from the command-line, using the <b>/fixture</b> option. It was introduced in NUnit 2.0 to replace the older approach of inheriting from the TestSuite class.</p> <p>Originally, the NUnit developers believed that the need for the Suite mechanism would diminish because of the dynamic creation of suites based on namespaces. It was provided for backwards compatibility.</p> <p>That has not proven to be true. Suites are still used today by many people, so we are making an effort to revive them in terms of usability. <p>The Suite mechanism depends on a static property marked with the </b>SuiteAttribute</b>. In the clasic implementation, supported by all releases since 2.0, that property returns a TestSuite, populated with the tests that are to be executed. <h4>Old Approach</h4> <div class="code"> <pre>namespace NUnit.Tests { using System; using NUnit.Framework; using NUnit.Core; public class AllTests { [Suite] public static TestSuite Suite { get { TestSuite suite = new TestSuite("All Tests"); suite.Add(new OneTestCase()); suite.Add(new Assemblies.AssemblyTests()); suite.Add(new AssertionTest()); return suite; } } } } </pre> </div> <p>This approach has a serious problem: it requires a reference to the nunit.core assembly, which is not normally referenced by user tests. This means that the tests cannot be ported across versions of NUnit without recompilation. In some cases, introducing more than one version of the core assembly can prevent NUnit from running correctly. <p>Beginning with NUnit 2.4.4, a new approach is available. The property marked with the <b>SuiteAttribute</b> may simply return a collection containing test fixture objects or Types. If a Type is provided, NUnit creates an object of that type for use as a fixture. Any other object is assumed to be a pre-created fixture object. This allows objects with parameterized constructors or settable properties to be used as fixtures. <p>Test suites created through use of the <b>SuiteAttribute</b> may contain <b>TestFixtureSetUp</b> and <b>TestFixtureTearDown</b> methods, to perform one-time setup and teardown for the tests included in the suite. <h4>New Approach - Fixture Objects</h4> <div class="code"> <pre>namespace NUnit.Tests { using System; using NUnit.Framework; private class AllTests { [Suite] public static IEnumerable Suite { get { ArrayList suite = new ArrayList(); suite.Add(new OneTestCase()); suite.Add(new AssemblyTests()); suite.Add(new NoNamespaceTestFixture()); return suite; } } } } </pre> </div> <h4>New Approach - Fixture Types</h4> <div class="code"> <pre>namespace NUnit.Tests { using System; using NUnit.Framework; private class AllTests { [Suite] public static IEnumerable Suite { get { ArrayList suite = new ArrayList(); suite.Add(typeof(OneTestCase)); suite.Add(typeof(AssemblyTests)); suite.Add(typeof(NoNamespaceTestFixture)); return suite; } } } } </pre> </div> <h4>Limitations</h4> NUnit support for user-defined Suites currently has two limitations: <ol> <li>It is not possible to include individual test cases directly in a Suite using the new approach. Anyone wanting to do so will need to use the old approach and create an object derive from NUnit.Core.TestCase. This is not recommended, since it requires a reference to the core assembly. <li>Suites are currently not displayed in the Gui or run automatically by either runner when they are encountered. The historical purpose of the Suite mechanism was to provide a way of aggregating tests at the top level of each run. Hence, they are only supported when used with the /fixture option on the console or gui command line. </ol> Approaches to removing these limitations are being investigated as part of the planning for future NUnit releases. </div> <!-- Submenu --> <div id="subnav"> <ul> <li><a href="index.html">NUnit 2.5.10</a></li> <ul> <li><a href="getStarted.html">Getting&nbsp;Started</a></li> <li><a href="assertions.html">Assertions</a></li> <li><a href="constraintModel.html">Constraints</a></li> <li><a href="attributes.html">Attributes</a></li> <ul> <li><a href="category.html">Category</a></li> <li><a href="combinatorial.html">Combinatorial</a></li> <li><a href="culture.html">Culture</a></li> <li><a href="datapoint.html">Datapoint(s)</a></li> <li><a href="description.html">Description</a></li> <li><a href="exception.html">Exception</a></li> <li><a href="explicit.html">Explicit</a></li> <li><a href="ignore.html">Ignore</a></li> <li><a href="maxtime.html">Maxtime</a></li> <li><a href="pairwise.html">Pairwise</a></li> <li><a href="platform.html">Platform</a></li> <li><a href="property.html">Property</a></li> <li><a href="random.html">Random</a></li> <li><a href="range.html">Range</a></li> <li><a href="repeat.html">Repeat</a></li> <li><a href="requiredAddin.html">RequiredAddin</a></li> <li><a href="requiresMTA.html">Requires&nbsp;MTA</a></li> <li><a href="requiresSTA.html">Requires&nbsp;STA</a></li> <li><a href="requiresThread.html">Requires&nbsp;Thread</a></li> <li><a href="sequential.html">Sequential</a></li> <li><a href="setCulture.html">SetCulture</a></li> <li><a href="setUICulture.html">SetUICulture</a></li> <li><a href="setup.html">Setup</a></li> <li><a href="setupFixture.html">SetupFixture</a></li> <li id="current"><a href="suite.html">Suite</a></li> <li><a href="teardown.html">Teardown</a></li> <li><a href="test.html">Test</a></li> <li><a href="testCase.html">TestCase</a></li> <li><a href="testCaseSource.html">TestCaseSource</a></li> <li><a href="testFixture.html">TestFixture</a></li> <li><a href="fixtureSetup.html">TestFixtureSetUp</a></li> <li><a href="fixtureTeardown.html">TestFixtureTearDown</a></li> <li><a href="theory.html">Theory</a></li> <li><a href="timeout.html">Timeout</a></li> <li><a href="values.html">Values</a></li> <li><a href="valueSource.html">ValueSource</a></li> </ul> <li><a href="runningTests.html">Running&nbsp;Tests</a></li> <li><a href="extensibility.html">Extensibility</a></li> <li><a href="releaseNotes.html">Release&nbsp;Notes</a></li> <li><a href="samples.html">Samples</a></li> <li><a href="license.html">License</a></li> </ul> </ul> </div> <!-- End of Submenu --> <!-- Standard Footer for NUnit.org --> <div id="footer"> Copyright &copy; 2010 Charlie Poole. All Rights Reserved. </div> <!-- End of Footer --> </body> </html>
mvbalaw/StarterTree
tools/NUnit/doc/suite.html
HTML
mit
7,579
<!-- Copyright 2016 The Cockroach Authors. 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. Author: Matt Tracy ([email protected]) --> <!doctype html> <html> <head> <meta charset="utf-8"> <link rel="icon" href="favicon.ico" type="image/x-icon"> <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"> <link rel="apple-touch-icon" href="apple-touch-icon.png"> <title>Cockroach Console</title> </head> <body> <div id="react-layout"></div> </body> <script src="jspm_packages/system.js"></script> <script src="config.js"></script> <script> // livereload support. See https://github.com/capaj/systemjs-hot-reloader. System.trace = true; System.import("systemjs-hot-reloader/default-listener.js"); System.import("app"); </script> </html>
maxlang/cockroach
pkg/ui/debug.html
HTML
apache-2.0
1,283
{{<layout}} {{$content}} <main id="content" role="main"> {{>includes/breadcrumb_examples}} <form action="/" method="post" class="form"> <h1 class="form-title heading-large"> Your details </h1> <!-- Full name --> <div class="form-group"> <label class="form-label-bold" for="full-name">Full name</label> <p class="form-hint">As shown on your birth certificate or passport</p> <input type="text" class="form-control" id="full-name"> </div> <!-- National Insurance number --> <div class="form-group"> <label class="form-label-bold" for="ni-number"> National Insurance number <span class="form-hint"> It's on your National Insurance card, benefit letter, payslip or P60. <br> For example, 'VO 12 34 56 D'. </span> </label> <input type="text" class="form-control" id="ni-number"> </div> <!-- Date of birth --> <div class="form-group"> <fieldset> <legend class="form-label-bold">Date of birth</legend> <div class="form-date"> <p class="form-hint">For example, 31 3 1980</p> <div class="form-group form-group-day"> <label for="dob-day">Day</label> <input class="form-control" id="dob-day" type="number" pattern="[0-9]*" min="0" max="31"> </div> <div class="form-group form-group-month"> <label for="dob-month">Month</label> <input class="form-control" id="dob-month" type="number" pattern="[0-9]*" min="0" max="12"> </div> <div class="form-group form-group-year"> <label for="dob-year">Year</label> <input class="form-control" id="dob-year" type="number" pattern="[0-9]*" min="0" max="2014"> </div> </div> </fieldset> </div> <div class="form-group"> <details> <summary><span class="summary">Help with date of birth</span></summary> <div class="panel-indent"> <p> If you don’t know your exact date of birth, use the one you put on official documents (for example, your passport or driving licence). </p> <p> If you can’t provide your date of birth you’ll have to send copies of identity documents through the post. </p> </div> </details> </div> <div class="form-group"> <input type="submit" class="button" value="Continue"> </div> </form> </main> {{/content}} {{/layout}}
wayneddgu/view-driving-licence
app/views/examples/elements/forms.html
HTML
mit
2,533
<!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.geometry.partitioning.Embedding (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.geometry.partitioning.Embedding (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/geometry/partitioning/Embedding.html" title="interface in org.apache.commons.math3.geometry.partitioning">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/geometry/partitioning/class-use/Embedding.html" target="_top">Frames</a></li> <li><a href="Embedding.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.geometry.partitioning.Embedding" class="title">Uses of Interface<br>org.apache.commons.math3.geometry.partitioning.Embedding</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/geometry/partitioning/Embedding.html" title="interface in org.apache.commons.math3.geometry.partitioning">Embedding</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.geometry.euclidean.threed">org.apache.commons.math3.geometry.euclidean.threed</a></td> <td class="colLast"> <div class="block"> This package provides basic 3D geometry components.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.apache.commons.math3.geometry.spherical.twod">org.apache.commons.math3.geometry.spherical.twod</a></td> <td class="colLast"> <div class="block"> This package provides basic geometry components on the 2-sphere.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.apache.commons.math3.geometry.euclidean.threed"> <!-- --> </a> <h3>Uses of <a href="../../../../../../../org/apache/commons/math3/geometry/partitioning/Embedding.html" title="interface in org.apache.commons.math3.geometry.partitioning">Embedding</a> in <a href="../../../../../../../org/apache/commons/math3/geometry/euclidean/threed/package-summary.html">org.apache.commons.math3.geometry.euclidean.threed</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/geometry/euclidean/threed/package-summary.html">org.apache.commons.math3.geometry.euclidean.threed</a> that implement <a href="../../../../../../../org/apache/commons/math3/geometry/partitioning/Embedding.html" title="interface in org.apache.commons.math3.geometry.partitioning">Embedding</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/geometry/euclidean/threed/Line.html" title="class in org.apache.commons.math3.geometry.euclidean.threed">Line</a></strong></code> <div class="block">The class represent lines in a three dimensional space.</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/geometry/euclidean/threed/Plane.html" title="class in org.apache.commons.math3.geometry.euclidean.threed">Plane</a></strong></code> <div class="block">The class represent planes in a three dimensional space.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.apache.commons.math3.geometry.spherical.twod"> <!-- --> </a> <h3>Uses of <a href="../../../../../../../org/apache/commons/math3/geometry/partitioning/Embedding.html" title="interface in org.apache.commons.math3.geometry.partitioning">Embedding</a> in <a href="../../../../../../../org/apache/commons/math3/geometry/spherical/twod/package-summary.html">org.apache.commons.math3.geometry.spherical.twod</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/geometry/spherical/twod/package-summary.html">org.apache.commons.math3.geometry.spherical.twod</a> that implement <a href="../../../../../../../org/apache/commons/math3/geometry/partitioning/Embedding.html" title="interface in org.apache.commons.math3.geometry.partitioning">Embedding</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/geometry/spherical/twod/Circle.html" title="class in org.apache.commons.math3.geometry.spherical.twod">Circle</a></strong></code> <div class="block">This class represents an oriented great circle on the 2-sphere.</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/geometry/partitioning/Embedding.html" title="interface in org.apache.commons.math3.geometry.partitioning">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/geometry/partitioning/class-use/Embedding.html" target="_top">Frames</a></li> <li><a href="Embedding.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>
asampley/FactorioRatioAssistant
src/commons-math3-3.6.1/docs/apidocs/org/apache/commons/math3/geometry/partitioning/class-use/Embedding.html
HTML
mit
9,520
<!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>
Joao-S-Martins/ecoactivist
www/js/jQuery.mobile-1.2.0/demos/docs/forms/switch/index.html
HTML
mit
10,369
<!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>
asampley/FactorioRatioAssistant
src/commons-math3-3.6.1/docs/apidocs/org/apache/commons/math3/distribution/class-use/IntegerDistribution.html
HTML
mit
12,404
<!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>
JunQiGenYuan/DoraCMS
操作文档/public/plugins/ztree/demo/cn/exhide/radio.html
HTML
mit
5,987
<!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>
determinedcheetahs/cheetah_juniper
hadoop/docs/api/org/apache/hadoop/security/class-use/UserGroupInformation.html
HTML
apache-2.0
47,274
<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>
tristan0x/docs-base
themes/hugo-foundation/static/src/pages/index.html
HTML
apache-2.0
7,887
<!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>
pdion891/cloudstack-www
source/api/apidocs-4.8/root_admin/deleteNetscalerLoadBalancer.html
HTML
apache-2.0
2,979
<!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>
vadimtk/chrome4sdp
third_party/WebKit/LayoutTests/imported/csswg-test/css-writing-modes-3/support/embedded-doc-abs-pos-non-replaced-icb-vlr-009.html
HTML
bsd-3-clause
2,109
<!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 <[email protected]> --> <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>
qiuzhong/crosswalk-test-suite
webapi/tct-time-tizen-tests/time/TZDate_getUTCHours_extra_argument.html
HTML
bsd-3-clause
1,356
<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>
scheib/chromium
third_party/blink/web_tests/fast/writing-mode/border-styles-vertical-rl.html
HTML
bsd-3-clause
2,110
<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>
ric2b/Vivaldi-browser
chromium/chrome/browser/resources/settings/search_engines_page/omnibox_extension_entry.html
HTML
bsd-3-clause
1,055
<!-- 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>
mohamed--abdel-maksoud/chromium.src
third_party/polymer/components-chromium/core-ajax/core-xhr.html
HTML
bsd-3-clause
976
<!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>
scheib/chromium
third_party/blink/web_tests/css1/box_properties/float_on_text_elements.html
HTML
bsd-3-clause
12,601
<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>
suldae/roll20-character-sheets
Farsight RPG Community Edition/sheets.html
HTML
mit
31,507
{% 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 %}
jproffitt/fabric-bolt
fabric_bolt/projects/templates/projects/stage_detail.html
HTML
mit
3,876
<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>
reedflinch/gridiron-hackathon
www/app/features/leaderBoard/leaderBoard.html
HTML
apache-2.0
1,490
<!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>
resmo/cloudstack-www
source/api/apidocs-4.3/root_admin/resetSSHKeyForVirtualMachine.html
HTML
apache-2.0
22,536
<!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>
shareactorIO/pipeline
oreilly.ml/high-performance-tensorflow/apache-jmeter-3.1/docs/api/org/apache/jmeter/visualizers/backend/graphite/package-tree.html
HTML
apache-2.0
7,613
<!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>
resmo/cloudstack-www
source/api/apidocs-4.2/root_admin/updateHost.html
HTML
apache-2.0
9,703
<!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>
queeniema/incubator-edgent-website
site/javadoc/r0.4.0/quarks/runtime/etiao/graph/model/package-tree.html
HTML
apache-2.0
6,061
<!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>
queeniema/incubator-edgent-website
site/javadoc/r0.4.0/quarks/connectors/pubsub/class-use/PublishSubscribe.html
HTML
apache-2.0
4,989
<!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>
scheib/chromium
third_party/blink/web_tests/media/video-load-readyState.html
HTML
bsd-3-clause
841
<!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>
scheib/chromium
third_party/blink/web_tests/fast/dom/Document/document-open-01.html
HTML
bsd-3-clause
669
<!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>
xhteam/external-chromium-trace
trace-viewer/src/linux_perf_android_parser_test.html
HTML
bsd-3-clause
5,877
{% 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 %}
gavinelliott/gysp
app/views/sprint13v3/dob-check.html
HTML
mit
1,937
<!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;[email protected]> * @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>
nicroto/nsv
src/server/client/bower_components/phaser/docs/TileSprite.js.html
HTML
mit
54,938
<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>
gbockus/gbockus.github.io
views/main.html
HTML
mit
656
<!-- * 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:[email protected]"> <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>
pmq20/ruby-compiler
vendor/ncurses/doc/html/man/form_cursor.3x.html
HTML
mit
5,270
<?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>
topicusonderwijs/wicket
wicket-examples/src/main/java/org/apache/wicket/examples/compref/BookmarkablePageLinkPage.html
HTML
apache-2.0
947
<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>
robsoncardosoti/flowable-engine
modules/flowable-ui-admin/src/main/webapp/views/task-delegate-popup.html
HTML
apache-2.0
1,348
<!-- ~ 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 [email protected] 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>
dnwick/product-cep
modules/distribution/repository/resources/dashboard/gadgets/swfobject1-5/swfobject.html
HTML
apache-2.0
3,338
<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>
NixaSoftware/CVis
venv/bin/libs/range/doc/html/range/reference/algorithms/mutating/rotate.html
HTML
apache-2.0
9,224
<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>
rcuvgd/Webmin
dfsadmin/help/rw.zh_TW.Big5.html
HTML
bsd-3-clause
1,068
<!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>
sitecrafting/thelia.github.io
api/master/Thelia/Model/Base/ModuleConfig.html
HTML
mit
150,690
$r.render("sourceview") <h4>Panes</h4> $r.render("panes")
RLDevOps/Demo
target/classes/org/olat/test/guidemo/_content/guidemo-panes.html
HTML
apache-2.0
58