path stringlengths 5 312 | repo_name stringlengths 5 116 | content stringlengths 2 1.04M |
|---|---|---|
app/assets/stylesheets/application.css | mikezuniga/spinsaas | /*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
* files in this directory. Styles in this file should be added after the last require_* statement.
* It is generally better to create a new file per style scope.
*
*= require_tree .
*= require_self
*= require jquery-ui
*/
|
docs/xref/org/apache/hadoop/hbase/regionserver/ServerNonceManager.html | lshain/hbase-0.98.6-hadoop2 | <!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>ServerNonceManager xref</title>
<link type="text/css" rel="stylesheet" href="../../../../../stylesheet.css" />
</head>
<body>
<div id="overview"><a href="../../../../../../apidocs/org/apache/hadoop/hbase/regionserver/ServerNonceManager.html">View Javadoc</a></div><pre>
<a class="jxr_linenumber" name="1" href="#1">1</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="2" href="#2">2</a> <em class="jxr_javadoccomment"> *</em>
<a class="jxr_linenumber" name="3" href="#3">3</a> <em class="jxr_javadoccomment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
<a class="jxr_linenumber" name="4" href="#4">4</a> <em class="jxr_javadoccomment"> * or more contributor license agreements. See the NOTICE file</em>
<a class="jxr_linenumber" name="5" href="#5">5</a> <em class="jxr_javadoccomment"> * distributed with this work for additional information</em>
<a class="jxr_linenumber" name="6" href="#6">6</a> <em class="jxr_javadoccomment"> * regarding copyright ownership. The ASF licenses this file</em>
<a class="jxr_linenumber" name="7" href="#7">7</a> <em class="jxr_javadoccomment"> * to you under the Apache License, Version 2.0 (the</em>
<a class="jxr_linenumber" name="8" href="#8">8</a> <em class="jxr_javadoccomment"> * "License"); you may not use this file except in compliance</em>
<a class="jxr_linenumber" name="9" href="#9">9</a> <em class="jxr_javadoccomment"> * with the License. You may obtain a copy of the License at</em>
<a class="jxr_linenumber" name="10" href="#10">10</a> <em class="jxr_javadoccomment"> *</em>
<a class="jxr_linenumber" name="11" href="#11">11</a> <em class="jxr_javadoccomment"> * <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="12" href="#12">12</a> <em class="jxr_javadoccomment"> *</em>
<a class="jxr_linenumber" name="13" href="#13">13</a> <em class="jxr_javadoccomment"> * Unless required by applicable law or agreed to in writing, software</em>
<a class="jxr_linenumber" name="14" href="#14">14</a> <em class="jxr_javadoccomment"> * distributed under the License is distributed on an "AS IS" BASIS,</em>
<a class="jxr_linenumber" name="15" href="#15">15</a> <em class="jxr_javadoccomment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em>
<a class="jxr_linenumber" name="16" href="#16">16</a> <em class="jxr_javadoccomment"> * See the License for the specific language governing permissions and</em>
<a class="jxr_linenumber" name="17" href="#17">17</a> <em class="jxr_javadoccomment"> * limitations under the License.</em>
<a class="jxr_linenumber" name="18" href="#18">18</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="19" href="#19">19</a> <strong class="jxr_keyword">package</strong> org.apache.hadoop.hbase.regionserver;
<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.Date;
<a class="jxr_linenumber" name="22" href="#22">22</a> <strong class="jxr_keyword">import</strong> java.text.SimpleDateFormat;
<a class="jxr_linenumber" name="23" href="#23">23</a> <strong class="jxr_keyword">import</strong> java.util.Arrays;
<a class="jxr_linenumber" name="24" href="#24">24</a> <strong class="jxr_keyword">import</strong> java.util.Comparator;
<a class="jxr_linenumber" name="25" href="#25">25</a> <strong class="jxr_keyword">import</strong> java.util.Map;
<a class="jxr_linenumber" name="26" href="#26">26</a> <strong class="jxr_keyword">import</strong> java.util.UUID;
<a class="jxr_linenumber" name="27" href="#27">27</a> <strong class="jxr_keyword">import</strong> java.util.concurrent.ConcurrentHashMap;
<a class="jxr_linenumber" name="28" href="#28">28</a>
<a class="jxr_linenumber" name="29" href="#29">29</a> <strong class="jxr_keyword">import</strong> org.apache.commons.logging.Log;
<a class="jxr_linenumber" name="30" href="#30">30</a> <strong class="jxr_keyword">import</strong> org.apache.commons.logging.LogFactory;
<a class="jxr_linenumber" name="31" href="#31">31</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.conf.Configuration;
<a class="jxr_linenumber" name="32" href="#32">32</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.Chore;
<a class="jxr_linenumber" name="33" href="#33">33</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.HConstants;
<a class="jxr_linenumber" name="34" href="#34">34</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.Stoppable;
<a class="jxr_linenumber" name="35" href="#35">35</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.util.Bytes;
<a class="jxr_linenumber" name="36" href="#36">36</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.util.EnvironmentEdgeManager;
<a class="jxr_linenumber" name="37" href="#37">37</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.util.Pair;
<a class="jxr_linenumber" name="38" href="#38">38</a>
<a class="jxr_linenumber" name="39" href="#39">39</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.classification.InterfaceAudience;
<a class="jxr_linenumber" name="40" href="#40">40</a>
<a class="jxr_linenumber" name="41" href="#41">41</a> <strong class="jxr_keyword">import</strong> com.google.common.annotations.VisibleForTesting;
<a class="jxr_linenumber" name="42" href="#42">42</a>
<a class="jxr_linenumber" name="43" href="#43">43</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="44" href="#44">44</a> <em class="jxr_javadoccomment"> * Implementation of nonce manager that stores nonces in a hash map and cleans them up after</em>
<a class="jxr_linenumber" name="45" href="#45">45</a> <em class="jxr_javadoccomment"> * some time; if nonce group/client ID is supplied, nonces are stored by client ID.</em>
<a class="jxr_linenumber" name="46" href="#46">46</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="47" href="#47">47</a> @InterfaceAudience.Private
<a class="jxr_linenumber" name="48" href="#48">48</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../org/apache/hadoop/hbase/regionserver/ServerNonceManager.html">ServerNonceManager</a> {
<a class="jxr_linenumber" name="49" href="#49">49</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> String HASH_NONCE_GRACE_PERIOD_KEY = <span class="jxr_string">"hbase.server.hashNonce.gracePeriod"</span>;
<a class="jxr_linenumber" name="50" href="#50">50</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> Log LOG = LogFactory.getLog(ServerNonceManager.<strong class="jxr_keyword">class</strong>);
<a class="jxr_linenumber" name="51" href="#51">51</a>
<a class="jxr_linenumber" name="52" href="#52">52</a> <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment"> The time to wait in an extremely unlikely case of a conflict with a running op.</em>
<a class="jxr_linenumber" name="53" href="#53">53</a> <em class="jxr_javadoccomment"> * Only here so that tests could override it and not wait. */</em>
<a class="jxr_linenumber" name="54" href="#54">54</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">int</strong> conflictWaitIterationMs = 30000;
<a class="jxr_linenumber" name="55" href="#55">55</a>
<a class="jxr_linenumber" name="56" href="#56">56</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> SimpleDateFormat tsFormat = <strong class="jxr_keyword">new</strong> SimpleDateFormat(<span class="jxr_string">"HH:mm:ss.SSS"</span>);
<a class="jxr_linenumber" name="57" href="#57">57</a>
<a class="jxr_linenumber" name="58" href="#58">58</a> <em class="jxr_comment">// This object is used to synchronize on in case of collisions, and for cleanup.</em>
<a class="jxr_linenumber" name="59" href="#59">59</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../org/apache/hadoop/hbase/regionserver/ServerNonceManager.html">OperationContext</a> {
<a class="jxr_linenumber" name="60" href="#60">60</a> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> DONT_PROCEED = 0;
<a class="jxr_linenumber" name="61" href="#61">61</a> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> PROCEED = 1;
<a class="jxr_linenumber" name="62" href="#62">62</a> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> WAIT = 2;
<a class="jxr_linenumber" name="63" href="#63">63</a>
<a class="jxr_linenumber" name="64" href="#64">64</a> <em class="jxr_comment">// 0..1 - state, 2..2 - whether anyone is waiting, 3.. - ts of last activity</em>
<a class="jxr_linenumber" name="65" href="#65">65</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">long</strong> data = 0;
<a class="jxr_linenumber" name="66" href="#66">66</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">long</strong> STATE_BITS = 3;
<a class="jxr_linenumber" name="67" href="#67">67</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">long</strong> WAITING_BIT = 4;
<a class="jxr_linenumber" name="68" href="#68">68</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">long</strong> ALL_FLAG_BITS = WAITING_BIT | STATE_BITS;
<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> String toString() {
<a class="jxr_linenumber" name="72" href="#72">72</a> <strong class="jxr_keyword">return</strong> <span class="jxr_string">"[state "</span> + getState() + <span class="jxr_string">", hasWait "</span> + hasWait() + <span class="jxr_string">", activity "</span>
<a class="jxr_linenumber" name="73" href="#73">73</a> + tsFormat.format(<strong class="jxr_keyword">new</strong> Date(getActivityTime())) + <span class="jxr_string">"]"</span>;
<a class="jxr_linenumber" name="74" href="#74">74</a> }
<a class="jxr_linenumber" name="75" href="#75">75</a>
<a class="jxr_linenumber" name="76" href="#76">76</a> <strong class="jxr_keyword">public</strong> <a href="../../../../../org/apache/hadoop/hbase/regionserver/ServerNonceManager.html">OperationContext</a>() {
<a class="jxr_linenumber" name="77" href="#77">77</a> setState(WAIT);
<a class="jxr_linenumber" name="78" href="#78">78</a> reportActivity();
<a class="jxr_linenumber" name="79" href="#79">79</a> }
<a class="jxr_linenumber" name="80" href="#80">80</a>
<a class="jxr_linenumber" name="81" href="#81">81</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setState(<strong class="jxr_keyword">int</strong> state) {
<a class="jxr_linenumber" name="82" href="#82">82</a> <strong class="jxr_keyword">this</strong>.data = (<strong class="jxr_keyword">this</strong>.data & ~STATE_BITS) | state;
<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> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> getState() {
<a class="jxr_linenumber" name="86" href="#86">86</a> <strong class="jxr_keyword">return</strong> (<strong class="jxr_keyword">int</strong>)(<strong class="jxr_keyword">this</strong>.data & STATE_BITS);
<a class="jxr_linenumber" name="87" href="#87">87</a> }
<a class="jxr_linenumber" name="88" href="#88">88</a>
<a class="jxr_linenumber" name="89" href="#89">89</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setHasWait() {
<a class="jxr_linenumber" name="90" href="#90">90</a> <strong class="jxr_keyword">this</strong>.data = <strong class="jxr_keyword">this</strong>.data | WAITING_BIT;
<a class="jxr_linenumber" name="91" href="#91">91</a> }
<a class="jxr_linenumber" name="92" href="#92">92</a>
<a class="jxr_linenumber" name="93" href="#93">93</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> hasWait() {
<a class="jxr_linenumber" name="94" href="#94">94</a> <strong class="jxr_keyword">return</strong> (<strong class="jxr_keyword">this</strong>.data & WAITING_BIT) == WAITING_BIT;
<a class="jxr_linenumber" name="95" href="#95">95</a> }
<a class="jxr_linenumber" name="96" href="#96">96</a>
<a class="jxr_linenumber" name="97" href="#97">97</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> reportActivity() {
<a class="jxr_linenumber" name="98" href="#98">98</a> <strong class="jxr_keyword">long</strong> now = EnvironmentEdgeManager.currentTimeMillis();
<a class="jxr_linenumber" name="99" href="#99">99</a> <strong class="jxr_keyword">this</strong>.data = (<strong class="jxr_keyword">this</strong>.data & ALL_FLAG_BITS) | (now << 3);
<a class="jxr_linenumber" name="100" href="#100">100</a> }
<a class="jxr_linenumber" name="101" href="#101">101</a>
<a class="jxr_linenumber" name="102" href="#102">102</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> isExpired(<strong class="jxr_keyword">long</strong> minRelevantTime) {
<a class="jxr_linenumber" name="103" href="#103">103</a> <strong class="jxr_keyword">return</strong> getActivityTime() < (minRelevantTime & (~0l >>> 3));
<a class="jxr_linenumber" name="104" href="#104">104</a> }
<a class="jxr_linenumber" name="105" href="#105">105</a>
<a class="jxr_linenumber" name="106" href="#106">106</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">long</strong> getActivityTime() {
<a class="jxr_linenumber" name="107" href="#107">107</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">this</strong>.data >>> 3;
<a class="jxr_linenumber" name="108" href="#108">108</a> }
<a class="jxr_linenumber" name="109" href="#109">109</a> }
<a class="jxr_linenumber" name="110" href="#110">110</a>
<a class="jxr_linenumber" name="111" href="#111">111</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="112" href="#112">112</a> <em class="jxr_javadoccomment"> * This implementation is not smart and just treats nonce group and nonce as random bits.</em>
<a class="jxr_linenumber" name="113" href="#113">113</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="114" href="#114">114</a> <em class="jxr_comment">// TODO: we could use pure byte arrays, but then we wouldn't be able to use hash map.</em>
<a class="jxr_linenumber" name="115" href="#115">115</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../org/apache/hadoop/hbase/regionserver/ServerNonceManager.html">NonceKey</a> {
<a class="jxr_linenumber" name="116" href="#116">116</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">long</strong> group;
<a class="jxr_linenumber" name="117" href="#117">117</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">long</strong> nonce;
<a class="jxr_linenumber" name="118" href="#118">118</a>
<a class="jxr_linenumber" name="119" href="#119">119</a> <strong class="jxr_keyword">public</strong> <a href="../../../../../org/apache/hadoop/hbase/regionserver/ServerNonceManager.html">NonceKey</a>(<strong class="jxr_keyword">long</strong> group, <strong class="jxr_keyword">long</strong> nonce) {
<a class="jxr_linenumber" name="120" href="#120">120</a> assert nonce != HConstants.NO_NONCE;
<a class="jxr_linenumber" name="121" href="#121">121</a> <strong class="jxr_keyword">this</strong>.group = group;
<a class="jxr_linenumber" name="122" href="#122">122</a> <strong class="jxr_keyword">this</strong>.nonce = nonce;
<a class="jxr_linenumber" name="123" href="#123">123</a> }
<a class="jxr_linenumber" name="124" href="#124">124</a>
<a class="jxr_linenumber" name="125" href="#125">125</a> @Override
<a class="jxr_linenumber" name="126" href="#126">126</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> equals(Object obj) {
<a class="jxr_linenumber" name="127" href="#127">127</a> <strong class="jxr_keyword">if</strong> (obj == <strong class="jxr_keyword">null</strong> || !(obj instanceof NonceKey)) <strong class="jxr_keyword">return</strong> false;
<a class="jxr_linenumber" name="128" href="#128">128</a> <a href="../../../../../org/apache/hadoop/hbase/regionserver/ServerNonceManager.html">NonceKey</a> nk = ((NonceKey)obj);
<a class="jxr_linenumber" name="129" href="#129">129</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">this</strong>.nonce == nk.nonce && <strong class="jxr_keyword">this</strong>.group == nk.group;
<a class="jxr_linenumber" name="130" href="#130">130</a> }
<a class="jxr_linenumber" name="131" href="#131">131</a>
<a class="jxr_linenumber" name="132" href="#132">132</a> @Override
<a class="jxr_linenumber" name="133" href="#133">133</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> hashCode() {
<a class="jxr_linenumber" name="134" href="#134">134</a> <strong class="jxr_keyword">return</strong> (<strong class="jxr_keyword">int</strong>)((group >> 32) ^ group ^ (nonce >> 32) ^ nonce);
<a class="jxr_linenumber" name="135" href="#135">135</a> }
<a class="jxr_linenumber" name="136" href="#136">136</a>
<a class="jxr_linenumber" name="137" href="#137">137</a> @Override
<a class="jxr_linenumber" name="138" href="#138">138</a> <strong class="jxr_keyword">public</strong> String toString() {
<a class="jxr_linenumber" name="139" href="#139">139</a> <strong class="jxr_keyword">return</strong> <span class="jxr_string">"["</span> + group + <span class="jxr_string">":"</span> + nonce + <span class="jxr_string">"]"</span>;
<a class="jxr_linenumber" name="140" href="#140">140</a> }
<a class="jxr_linenumber" name="141" href="#141">141</a> }
<a class="jxr_linenumber" name="142" href="#142">142</a>
<a class="jxr_linenumber" name="143" href="#143">143</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="144" href="#144">144</a> <em class="jxr_javadoccomment"> * Nonces.</em>
<a class="jxr_linenumber" name="145" href="#145">145</a> <em class="jxr_javadoccomment"> * Approximate overhead per nonce: 64 bytes from hashmap, 32 from two objects (k/v),</em>
<a class="jxr_linenumber" name="146" href="#146">146</a> <em class="jxr_javadoccomment"> * NK: 16 bytes (2 longs), OC: 8 bytes (1 long) - so, 120 bytes.</em>
<a class="jxr_linenumber" name="147" href="#147">147</a> <em class="jxr_javadoccomment"> * With 30min expiration time, 5k increments/appends per sec., we'd use approximately 1Gb,</em>
<a class="jxr_linenumber" name="148" href="#148">148</a> <em class="jxr_javadoccomment"> * which is a realistic worst case. If it's much worse, we could use some sort of memory</em>
<a class="jxr_linenumber" name="149" href="#149">149</a> <em class="jxr_javadoccomment"> * limit and cleanup.</em>
<a class="jxr_linenumber" name="150" href="#150">150</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="151" href="#151">151</a> <strong class="jxr_keyword">private</strong> ConcurrentHashMap<NonceKey, OperationContext> nonces =
<a class="jxr_linenumber" name="152" href="#152">152</a> <strong class="jxr_keyword">new</strong> ConcurrentHashMap<NonceKey, OperationContext>();
<a class="jxr_linenumber" name="153" href="#153">153</a>
<a class="jxr_linenumber" name="154" href="#154">154</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">int</strong> deleteNonceGracePeriod;
<a class="jxr_linenumber" name="155" href="#155">155</a>
<a class="jxr_linenumber" name="156" href="#156">156</a> <strong class="jxr_keyword">public</strong> <a href="../../../../../org/apache/hadoop/hbase/regionserver/ServerNonceManager.html">ServerNonceManager</a>(Configuration conf) {
<a class="jxr_linenumber" name="157" href="#157">157</a> <em class="jxr_comment">// Default - 30 minutes.</em>
<a class="jxr_linenumber" name="158" href="#158">158</a> deleteNonceGracePeriod = conf.getInt(HASH_NONCE_GRACE_PERIOD_KEY, 30 * 60 * 1000);
<a class="jxr_linenumber" name="159" href="#159">159</a> <strong class="jxr_keyword">if</strong> (deleteNonceGracePeriod < 60 * 1000) {
<a class="jxr_linenumber" name="160" href="#160">160</a> LOG.warn(<span class="jxr_string">"Nonce grace period "</span> + deleteNonceGracePeriod
<a class="jxr_linenumber" name="161" href="#161">161</a> + <span class="jxr_string">" is less than a minute; might be too small to be useful"</span>);
<a class="jxr_linenumber" name="162" href="#162">162</a> }
<a class="jxr_linenumber" name="163" href="#163">163</a> }
<a class="jxr_linenumber" name="164" href="#164">164</a>
<a class="jxr_linenumber" name="165" href="#165">165</a> @VisibleForTesting
<a class="jxr_linenumber" name="166" href="#166">166</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setConflictWaitIterationMs(<strong class="jxr_keyword">int</strong> conflictWaitIterationMs) {
<a class="jxr_linenumber" name="167" href="#167">167</a> <strong class="jxr_keyword">this</strong>.conflictWaitIterationMs = conflictWaitIterationMs;
<a class="jxr_linenumber" name="168" href="#168">168</a> }
<a class="jxr_linenumber" name="169" href="#169">169</a>
<a class="jxr_linenumber" name="170" href="#170">170</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="171" href="#171">171</a> <em class="jxr_javadoccomment"> * Starts the operation if operation with such nonce has not already succeeded. If the</em>
<a class="jxr_linenumber" name="172" href="#172">172</a> <em class="jxr_javadoccomment"> * operation is in progress, waits for it to end and checks whether it has succeeded.</em>
<a class="jxr_linenumber" name="173" href="#173">173</a> <em class="jxr_javadoccomment"> * @param group Nonce group.</em>
<a class="jxr_linenumber" name="174" href="#174">174</a> <em class="jxr_javadoccomment"> * @param nonce Nonce.</em>
<a class="jxr_linenumber" name="175" href="#175">175</a> <em class="jxr_javadoccomment"> * @param stoppable Stoppable that terminates waiting (if any) when the server is stopped.</em>
<a class="jxr_linenumber" name="176" href="#176">176</a> <em class="jxr_javadoccomment"> * @return true if the operation has not already succeeded and can proceed; false otherwise.</em>
<a class="jxr_linenumber" name="177" href="#177">177</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="178" href="#178">178</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> startOperation(<strong class="jxr_keyword">long</strong> group, <strong class="jxr_keyword">long</strong> nonce, <a href="../../../../../org/apache/hadoop/hbase/Stoppable.html">Stoppable</a> stoppable)
<a class="jxr_linenumber" name="179" href="#179">179</a> <strong class="jxr_keyword">throws</strong> InterruptedException {
<a class="jxr_linenumber" name="180" href="#180">180</a> <strong class="jxr_keyword">if</strong> (nonce == HConstants.NO_NONCE) <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
<a class="jxr_linenumber" name="181" href="#181">181</a> <a href="../../../../../org/apache/hadoop/hbase/regionserver/ServerNonceManager.html">NonceKey</a> nk = <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/hadoop/hbase/regionserver/ServerNonceManager.html">NonceKey</a>(group, nonce);
<a class="jxr_linenumber" name="182" href="#182">182</a> <a href="../../../../../org/apache/hadoop/hbase/regionserver/ServerNonceManager.html">OperationContext</a> ctx = <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/hadoop/hbase/regionserver/ServerNonceManager.html">OperationContext</a>();
<a class="jxr_linenumber" name="183" href="#183">183</a> <strong class="jxr_keyword">while</strong> (<strong class="jxr_keyword">true</strong>) {
<a class="jxr_linenumber" name="184" href="#184">184</a> <a href="../../../../../org/apache/hadoop/hbase/regionserver/ServerNonceManager.html">OperationContext</a> oldResult = nonces.putIfAbsent(nk, ctx);
<a class="jxr_linenumber" name="185" href="#185">185</a> <strong class="jxr_keyword">if</strong> (oldResult == <strong class="jxr_keyword">null</strong>) <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
<a class="jxr_linenumber" name="186" href="#186">186</a>
<a class="jxr_linenumber" name="187" href="#187">187</a> <em class="jxr_comment">// Collision with some operation - should be extremely rare.</em>
<a class="jxr_linenumber" name="188" href="#188">188</a> <strong class="jxr_keyword">synchronized</strong> (oldResult) {
<a class="jxr_linenumber" name="189" href="#189">189</a> <strong class="jxr_keyword">int</strong> oldState = oldResult.getState();
<a class="jxr_linenumber" name="190" href="#190">190</a> LOG.debug(<span class="jxr_string">"Conflict detected by nonce: "</span> + nk + <span class="jxr_string">", "</span> + oldResult);
<a class="jxr_linenumber" name="191" href="#191">191</a> <strong class="jxr_keyword">if</strong> (oldState != OperationContext.WAIT) {
<a class="jxr_linenumber" name="192" href="#192">192</a> <strong class="jxr_keyword">return</strong> oldState == OperationContext.PROCEED; <em class="jxr_comment">// operation ended</em>
<a class="jxr_linenumber" name="193" href="#193">193</a> }
<a class="jxr_linenumber" name="194" href="#194">194</a> oldResult.setHasWait();
<a class="jxr_linenumber" name="195" href="#195">195</a> oldResult.wait(<strong class="jxr_keyword">this</strong>.conflictWaitIterationMs); <em class="jxr_comment">// operation is still active... wait and loop</em>
<a class="jxr_linenumber" name="196" href="#196">196</a> <strong class="jxr_keyword">if</strong> (stoppable.isStopped()) {
<a class="jxr_linenumber" name="197" href="#197">197</a> <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> InterruptedException(<span class="jxr_string">"Server stopped"</span>);
<a class="jxr_linenumber" name="198" href="#198">198</a> }
<a class="jxr_linenumber" name="199" href="#199">199</a> }
<a class="jxr_linenumber" name="200" href="#200">200</a> }
<a class="jxr_linenumber" name="201" href="#201">201</a> }
<a class="jxr_linenumber" name="202" href="#202">202</a>
<a class="jxr_linenumber" name="203" href="#203">203</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="204" href="#204">204</a> <em class="jxr_javadoccomment"> * Ends the operation started by startOperation.</em>
<a class="jxr_linenumber" name="205" href="#205">205</a> <em class="jxr_javadoccomment"> * @param group Nonce group.</em>
<a class="jxr_linenumber" name="206" href="#206">206</a> <em class="jxr_javadoccomment"> * @param nonce Nonce.</em>
<a class="jxr_linenumber" name="207" href="#207">207</a> <em class="jxr_javadoccomment"> * @param success Whether the operation has succeeded.</em>
<a class="jxr_linenumber" name="208" href="#208">208</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="209" href="#209">209</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> endOperation(<strong class="jxr_keyword">long</strong> group, <strong class="jxr_keyword">long</strong> nonce, <strong class="jxr_keyword">boolean</strong> success) {
<a class="jxr_linenumber" name="210" href="#210">210</a> <strong class="jxr_keyword">if</strong> (nonce == HConstants.NO_NONCE) <strong class="jxr_keyword">return</strong>;
<a class="jxr_linenumber" name="211" href="#211">211</a> <a href="../../../../../org/apache/hadoop/hbase/regionserver/ServerNonceManager.html">NonceKey</a> nk = <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/hadoop/hbase/regionserver/ServerNonceManager.html">NonceKey</a>(group, nonce);
<a class="jxr_linenumber" name="212" href="#212">212</a> <a href="../../../../../org/apache/hadoop/hbase/regionserver/ServerNonceManager.html">OperationContext</a> newResult = nonces.get(nk);
<a class="jxr_linenumber" name="213" href="#213">213</a> assert newResult != <strong class="jxr_keyword">null</strong>;
<a class="jxr_linenumber" name="214" href="#214">214</a> <strong class="jxr_keyword">synchronized</strong> (newResult) {
<a class="jxr_linenumber" name="215" href="#215">215</a> assert newResult.getState() == OperationContext.WAIT;
<a class="jxr_linenumber" name="216" href="#216">216</a> <em class="jxr_comment">// If we failed, other retries can proceed.</em>
<a class="jxr_linenumber" name="217" href="#217">217</a> newResult.setState(success ? OperationContext.DONT_PROCEED : OperationContext.PROCEED);
<a class="jxr_linenumber" name="218" href="#218">218</a> <strong class="jxr_keyword">if</strong> (success) {
<a class="jxr_linenumber" name="219" href="#219">219</a> newResult.reportActivity(); <em class="jxr_comment">// Set time to use for cleanup.</em>
<a class="jxr_linenumber" name="220" href="#220">220</a> } <strong class="jxr_keyword">else</strong> {
<a class="jxr_linenumber" name="221" href="#221">221</a> <a href="../../../../../org/apache/hadoop/hbase/regionserver/ServerNonceManager.html">OperationContext</a> val = nonces.remove(nk);
<a class="jxr_linenumber" name="222" href="#222">222</a> assert val == newResult;
<a class="jxr_linenumber" name="223" href="#223">223</a> }
<a class="jxr_linenumber" name="224" href="#224">224</a> <strong class="jxr_keyword">if</strong> (newResult.hasWait()) {
<a class="jxr_linenumber" name="225" href="#225">225</a> LOG.debug(<span class="jxr_string">"Conflict with running op ended: "</span> + nk + <span class="jxr_string">", "</span> + newResult);
<a class="jxr_linenumber" name="226" href="#226">226</a> newResult.notifyAll();
<a class="jxr_linenumber" name="227" href="#227">227</a> }
<a class="jxr_linenumber" name="228" href="#228">228</a> }
<a class="jxr_linenumber" name="229" href="#229">229</a> }
<a class="jxr_linenumber" name="230" href="#230">230</a>
<a class="jxr_linenumber" name="231" href="#231">231</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="232" href="#232">232</a> <em class="jxr_javadoccomment"> * Reports the operation from WAL during replay.</em>
<a class="jxr_linenumber" name="233" href="#233">233</a> <em class="jxr_javadoccomment"> * @param group Nonce group.</em>
<a class="jxr_linenumber" name="234" href="#234">234</a> <em class="jxr_javadoccomment"> * @param nonce Nonce.</em>
<a class="jxr_linenumber" name="235" href="#235">235</a> <em class="jxr_javadoccomment"> * @param writeTime Entry write time, used to ignore entries that are too old.</em>
<a class="jxr_linenumber" name="236" href="#236">236</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="237" href="#237">237</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> reportOperationFromWal(<strong class="jxr_keyword">long</strong> group, <strong class="jxr_keyword">long</strong> nonce, <strong class="jxr_keyword">long</strong> writeTime) {
<a class="jxr_linenumber" name="238" href="#238">238</a> <strong class="jxr_keyword">if</strong> (nonce == HConstants.NO_NONCE) <strong class="jxr_keyword">return</strong>;
<a class="jxr_linenumber" name="239" href="#239">239</a> <em class="jxr_comment">// Give the write time some slack in case the clocks are not synchronized.</em>
<a class="jxr_linenumber" name="240" href="#240">240</a> <strong class="jxr_keyword">long</strong> now = EnvironmentEdgeManager.currentTimeMillis();
<a class="jxr_linenumber" name="241" href="#241">241</a> <strong class="jxr_keyword">if</strong> (now > writeTime + (deleteNonceGracePeriod * 1.5)) <strong class="jxr_keyword">return</strong>;
<a class="jxr_linenumber" name="242" href="#242">242</a> <a href="../../../../../org/apache/hadoop/hbase/regionserver/ServerNonceManager.html">OperationContext</a> newResult = <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/hadoop/hbase/regionserver/ServerNonceManager.html">OperationContext</a>();
<a class="jxr_linenumber" name="243" href="#243">243</a> newResult.setState(OperationContext.DONT_PROCEED);
<a class="jxr_linenumber" name="244" href="#244">244</a> <a href="../../../../../org/apache/hadoop/hbase/regionserver/ServerNonceManager.html">NonceKey</a> nk = <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/hadoop/hbase/regionserver/ServerNonceManager.html">NonceKey</a>(group, nonce);
<a class="jxr_linenumber" name="245" href="#245">245</a> <a href="../../../../../org/apache/hadoop/hbase/regionserver/ServerNonceManager.html">OperationContext</a> oldResult = nonces.putIfAbsent(nk, newResult);
<a class="jxr_linenumber" name="246" href="#246">246</a> <strong class="jxr_keyword">if</strong> (oldResult != <strong class="jxr_keyword">null</strong>) {
<a class="jxr_linenumber" name="247" href="#247">247</a> <em class="jxr_comment">// Some schemes can have collisions (for example, expiring hashes), so just log it.</em>
<a class="jxr_linenumber" name="248" href="#248">248</a> <em class="jxr_comment">// We have no idea about the semantics here, so this is the least of many evils.</em>
<a class="jxr_linenumber" name="249" href="#249">249</a> LOG.warn(<span class="jxr_string">"Nonce collision during WAL recovery: "</span> + nk
<a class="jxr_linenumber" name="250" href="#250">250</a> + <span class="jxr_string">", "</span> + oldResult + <span class="jxr_string">" with "</span> + newResult);
<a class="jxr_linenumber" name="251" href="#251">251</a> }
<a class="jxr_linenumber" name="252" href="#252">252</a> }
<a class="jxr_linenumber" name="253" href="#253">253</a>
<a class="jxr_linenumber" name="254" href="#254">254</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="255" href="#255">255</a> <em class="jxr_javadoccomment"> * Creates a chore that is used to clean up old nonces.</em>
<a class="jxr_linenumber" name="256" href="#256">256</a> <em class="jxr_javadoccomment"> * @param stoppable Stoppable for the chore.</em>
<a class="jxr_linenumber" name="257" href="#257">257</a> <em class="jxr_javadoccomment"> * @return Chore; the chore is not started.</em>
<a class="jxr_linenumber" name="258" href="#258">258</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="259" href="#259">259</a> <strong class="jxr_keyword">public</strong> <a href="../../../../../org/apache/hadoop/hbase/Chore.html">Chore</a> createCleanupChore(<a href="../../../../../org/apache/hadoop/hbase/Stoppable.html">Stoppable</a> stoppable) {
<a class="jxr_linenumber" name="260" href="#260">260</a> <em class="jxr_comment">// By default, it will run every 6 minutes (30 / 5).</em>
<a class="jxr_linenumber" name="261" href="#261">261</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/hadoop/hbase/Chore.html">Chore</a>(<span class="jxr_string">"nonceCleaner"</span>, deleteNonceGracePeriod / 5, stoppable) {
<a class="jxr_linenumber" name="262" href="#262">262</a> @Override
<a class="jxr_linenumber" name="263" href="#263">263</a> <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">void</strong> chore() {
<a class="jxr_linenumber" name="264" href="#264">264</a> cleanUpOldNonces();
<a class="jxr_linenumber" name="265" href="#265">265</a> }
<a class="jxr_linenumber" name="266" href="#266">266</a> };
<a class="jxr_linenumber" name="267" href="#267">267</a> }
<a class="jxr_linenumber" name="268" href="#268">268</a>
<a class="jxr_linenumber" name="269" href="#269">269</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> cleanUpOldNonces() {
<a class="jxr_linenumber" name="270" href="#270">270</a> <strong class="jxr_keyword">long</strong> cutoff = EnvironmentEdgeManager.currentTimeMillis() - deleteNonceGracePeriod;
<a class="jxr_linenumber" name="271" href="#271">271</a> <strong class="jxr_keyword">for</strong> (Map.Entry<NonceKey, OperationContext> entry : nonces.entrySet()) {
<a class="jxr_linenumber" name="272" href="#272">272</a> <a href="../../../../../org/apache/hadoop/hbase/regionserver/ServerNonceManager.html">OperationContext</a> oc = entry.getValue();
<a class="jxr_linenumber" name="273" href="#273">273</a> <strong class="jxr_keyword">if</strong> (!oc.isExpired(cutoff)) <strong class="jxr_keyword">continue</strong>;
<a class="jxr_linenumber" name="274" href="#274">274</a> <strong class="jxr_keyword">synchronized</strong> (oc) {
<a class="jxr_linenumber" name="275" href="#275">275</a> <strong class="jxr_keyword">if</strong> (oc.getState() == OperationContext.WAIT || !oc.isExpired(cutoff)) <strong class="jxr_keyword">continue</strong>;
<a class="jxr_linenumber" name="276" href="#276">276</a> nonces.remove(entry.getKey());
<a class="jxr_linenumber" name="277" href="#277">277</a> }
<a class="jxr_linenumber" name="278" href="#278">278</a> }
<a class="jxr_linenumber" name="279" href="#279">279</a> }
<a class="jxr_linenumber" name="280" href="#280">280</a> }
</pre>
<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
</html>
|
javadoc/com/squareup/android/package-tree.html | jonthewayne/android-api | <!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_17) on Wed May 19 08:03:02 PDT 2010 -->
<TITLE>
com.squareup.android Class Hierarchy
</TITLE>
<META NAME="date" CONTENT="2010-05-19">
<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="com.squareup.android Class Hierarchy";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../com/squareup/android/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
Square for Android API v0.9</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?com/squareup/android/package-tree.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
Hierarchy For Package com.squareup.android
</H2>
</CENTER>
<H2>
Class Hierarchy
</H2>
<UL>
<LI TYPE="circle">java.lang.Object<UL>
<LI TYPE="circle">com.squareup.android.<A HREF="../../../com/squareup/android/Bill.html" title="class in com.squareup.android"><B>Bill</B></A> (implements java.io.Serializable)
<LI TYPE="circle">com.squareup.android.<A HREF="../../../com/squareup/android/Bill.Builder.html" title="class in com.squareup.android"><B>Bill.Builder</B></A><LI TYPE="circle">com.squareup.android.<A HREF="../../../com/squareup/android/Image.html" title="class in com.squareup.android"><B>Image</B></A> (implements java.io.Serializable)
<LI TYPE="circle">com.squareup.android.<A HREF="../../../com/squareup/android/LineItem.html" title="class in com.squareup.android"><B>LineItem</B></A> (implements java.io.Serializable)
<LI TYPE="circle">com.squareup.android.<A HREF="../../../com/squareup/android/LineItem.Builder.html" title="class in com.squareup.android"><B>LineItem.Builder</B></A><LI TYPE="circle">com.squareup.android.<A HREF="../../../com/squareup/android/Money.html" title="class in com.squareup.android"><B>Money</B></A> (implements java.io.Serializable)
<LI TYPE="circle">com.squareup.android.<A HREF="../../../com/squareup/android/Square.html" title="class in com.squareup.android"><B>Square</B></A><LI TYPE="circle">java.lang.Throwable (implements java.io.Serializable)
<UL>
<LI TYPE="circle">java.lang.Exception<UL>
<LI TYPE="circle">java.lang.RuntimeException<UL>
<LI TYPE="circle">com.squareup.android.<A HREF="../../../com/squareup/android/ImageNotFoundException.html" title="class in com.squareup.android"><B>ImageNotFoundException</B></A></UL>
</UL>
</UL>
</UL>
</UL>
<H2>
Enum Hierarchy
</H2>
<UL>
<LI TYPE="circle">java.lang.Object<UL>
<LI TYPE="circle">java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable)
<UL>
<LI TYPE="circle">com.squareup.android.<A HREF="../../../com/squareup/android/Square.InstallationStatus.html" title="enum in com.squareup.android"><B>Square.InstallationStatus</B></A><LI TYPE="circle">com.squareup.android.<A HREF="../../../com/squareup/android/Image.Type.html" title="enum in com.squareup.android"><B>Image.Type</B></A><LI TYPE="circle">com.squareup.android.<A HREF="../../../com/squareup/android/Currency.html" title="enum in com.squareup.android"><B>Currency</B></A></UL>
</UL>
</UL>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../com/squareup/android/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
Square for Android API v0.9</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?com/squareup/android/package-tree.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<font size='-1'>Copyright (C) 2010 <a href='https://squareup.com/'>Square, Inc.</a> Licensed under the <a href='http://www.apache.org/licenses/LICENSE-2.0'>Apache License</a>, Version 2.0.</font>
</BODY>
</HTML>
|
app/css/contact.css | thehig/Html5 | .contactInfo{
display:table;
margin-top: .7em;
padding-top: .7em;
width: 100%;
border-top: 1px solid lightgray ;
}
.contactInfo h3,span{
display: table-cell;
font-size: .8em;
}
.contactInfo h3{
width:30%;
}
.contactInfo span{
width:60%;
text-align: right;
}
.contactContainer{
width: 90%;
margin: 0 auto;
}
|
web-client/src/pwc-external/theme.css | AlexeyKashintsev/PlatypusJS | .platypus-module{
transition: width 0.5s, height 0.5s, left 0.5s, right 0.5s;
}
.p-mask{
background-color: lightgray;
opacity: 0.75;
}
.p-mask-loading-start{
background-image: url(progress.gif);
}
.gwt-ProgressBar-shell {
border: 1px solid lightgray;
border-radius: 4px;
background-color: #aaaaaa;
}
.gwt-ProgressBar-bar {
background-color: #67a7e3;
}
.gwt-ProgressBar-text {
padding: 0px;
margin: 0px;
color: white;
}
.gwt-SliderBar-shell {
border: 1px solid lightgray;
border-radius: 4px;
}
.gwt-SliderBar-line {
border: 1px solid black;
left: 1px;
right: 1px;
height: 4px;
overflow: hidden;
}
.gwt-SliderBar-line-enabled {
background-color: white;
}
.gwt-SliderBar-line-before-knob{
background-color: #67a7e3;
}
.gwt-SliderBar-knob {
width: 11px;
height: 10px;
z-index: 1;
cursor: pointer;
}
.gwt-SliderBar-knob-enabled{
background-image: url(slider.png);
}
.gwt-SliderBar-knob-disabled{
background-image: url(slider-disabled.png);
}
.gwt-SliderBar-knob-sliding{
background-image: url(slider-sliding.png);
}
.gwt-SliderBar-tick {
width: 1px;
height: 8px;
top: 2px;
background: black;
overflow: hidden;
}
.gwt-SliderBar-label {
bottom: 0px;
font-size: 8pt;
cursor: default;
}
.gwt-SliderBar-label-enabled {
}
.gwt-SliderBar-label-disabled {
}
.gwt-SliderBar-shell-focused {
}
.gwt-SliderBar-line-sliding {
background-color: #dddddd;
cursor: pointer;
}
.gwt-PopupPanel{
transition: left 0.5s, top 0.5s;
border: 1px solid #ccc;
background: #f8f8f8;
border-radius: 3px 3px 3px 3px;
box-shadow: 0 1px 1px rgba(0,0,0,0.06);
}
.gwt-MenuBarPopup{
transition: height 0.5s;
border: 1px solid #ccc;
background: #f8f8f8;
border-radius: 3px 3px 3px 3px;
box-shadow: 0 1px 1px rgba(0,0,0,0.06);
}
.gwt-MenuBar-horizontal{
border-radius: 2px;
}
.window-panel{
transition: left 0.5s, top 0.5s;
}
.toggle-button-selected{
border: 2px solid gray !important;
background-color: gray !important;
background-image: none !important;
}
.gwt-Button, .gwt-Button:active, .gwt-Button:hover, .dropdown-button, .dropdown-button:active{
color:#526e4f;
text-shadow:0 1px rgba(255,255,255,0.5);
margin: 0;
padding: 3px 5px;
font-size: 14px;
text-align: center;
background-clip: padding-box;
border: 1px solid;
border-radius:3px;
cursor: pointer;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-box-shadow: inset 0 1px #fff,inset 0 0 0 1px rgba(255,255,255,0.3),0 1px 1px rgba(0,0,0,0.05);
box-shadow: inset 0 1px #fff,inset 0 0 0 1px rgba(255,255,255,0.3),0 1px 1px rgba(0,0,0,0.05);
border-color:#98cf9f #98cf9f #8ec397;
background-color:#bff1bc;
background-image:-webkit-linear-gradient(top, #cef4d0, #b2eeaa);
background-image:-moz-linear-gradient(top, #cef4d0, #b2eeaa);
background-image:-o-linear-gradient(top, #cef4d0, #b2eeaa);
background-image:linear-gradient(to bottom, #cef4d0, #b2eeaa);
}
.gwt-Button:active{
background-color:#bff1bc;
background-image:-webkit-linear-gradient(top, #b2eeaa, #cef4d0);
background-image:-moz-linear-gradient(top, #b2eeaa, #cef4d0);
background-image:-o-linear-gradient(top, #b2eeaa, #cef4d0);
background-image:linear-gradient(to bottom, #b2eeaa, #cef4d0);
}
.gwt-Button:focus{
border-radius:3px;
}
.gwt-Button[disabled]{
background-image:none;
background-color:lightgray;
}
.gwt-DatePicker {
border: 1px solid #ccc;
border-radius: 2px;
}
.dropdown-button:active{
background:#75bd35;
border-color:#678f3a #75a143 #81b049;
background-image:-webkit-linear-gradient(top, #75bd35,#a0d44d);
background-image:-moz-linear-gradient(top, #75bd35,#a0d44d);
background-image:-o-linear-gradient(top, #75bd35,#a0d44d);
background-image:linear-gradient(to bottom, #75bd35,#a0d44d);
}
.dropdown-menu{
border-left: 1px solid gray;
width: 8px;
background-image: url(dropdown-menu.png);
background-repeat: no-repeat;
background-position: center;
}
.decorator-select:hover{
opacity: 1;
}
.decorator-select{
width: 20px;
opacity: 0.5;
background-image: url(decorator-select.png);
background-repeat: no-repeat;
background-position: center;
cursor: pointer;
}
.decorator-clear:hover{
opacity: 1;
}
.decorator-clear{
width: 20px;
opacity: 0.5;
background-image: url(decorator-clear.svg);
background-repeat: no-repeat;
background-position: center;
cursor: pointer;
}
.decorator-content{
right: 40px;
}
.decorator{
border: solid 1px lightgray;
border-radius: 2px;
}
.decorator-focused{
border: solid 1px gray;
border-radius: 2px;
}
.gwt-MenuItem{
padding-top: 0px;
padding-bottom: 0px;
}
.gwt-MenuItem:hover, .gwt-MenuItem:focus, .gwt-MenuItem-selected:hover, .gwt-MenuItem-selected:focus{
text-shadow: 0 1px rgba(0,0,0,0.4);
background: #3e91ee;
background-image: linear-gradient(to bottom, #5ea8fc, #2e86e7);
box-shadow: inset 0 1px rgba(255,255,255,0.2),0 1px #1e6abe,0 0 0 1px #277edd;
color: white;
border-radius: 1px;
}
.gwt-MenuItem-selected{
background: white;
}
.subMenuIcon{
padding: 0px;
position: absolute;
width: 0px;
background: transparent;
}
.subMenuIcon img{
position: relative;
right: 5px;
top: 4px;
}
.subMenuIcon-selected{
background: transparent;
}
.combo-field-custom-dropdown:hover{
opacity: 1;
}
.combo-field-custom-dropdown{
opacity: 0.5;
background: url('dropdown-arrow.png') no-repeat; /*Adds background-image*/
background-position: right; /*Position of the background-image*/
}
.gwt-ListBox{
border: 0 !important; /*Removes border*/
}
.gwt-ListBox::-ms-expand {
display: none;
}
.date-time-field{
border: solid 1px lightgray;
padding-left: 4px;
padding-top: 2px;
}
.date-select:hover, .time-select:hover{
opacity: 1;
}
.date-select, .time-select{
width: 20px;
opacity: 0.5;
background-image: url(date-time-select.png);
background-repeat: no-repeat;
background-position: center;
cursor: pointer;
}
.time-select{
background-image: url(clock.png);
}
.spin-left{
width: 20px;
background-image: url(spin-left.png);
background-repeat: no-repeat;
background-position: center;
cursor: pointer;
}
.spin-field{
border: solid 1px lightgray;
}
.spin-right{
width: 20px;
background-image: url(spin-right.png);
background-repeat: no-repeat;
background-position: center;
cursor: pointer;
}
.toolbar{
}
.toolbar-chevron{
right: 0px;
width: 10px;
background-image: url(tabs-chevron-list.png);
background-repeat: no-repeat;
}
.toolbar-chevron-menu{
}
.toolbar-chevron-menu-item{
margin: 3px;
}
.toolbar-content{
left: 0px;
right: 10px;
}
.menu-left-check-radio{
top: 7px;
width: 100%;
}
.menu-left-mark{
border-right-color: #e5e5e5;
border-right-width: 1px;
border-right-style: solid;
padding-right: 2px;
padding-top: 4px;
padding-bottom: 4px;
background-position: center;
}
.menu-field{
/*
border-left-color: lightgray;
border-left-width: 1px;
border-left-style: solid;
*/
padding-left: 2px;
padding-top: 4px;
padding-bottom: 4px;
padding-right: 4px;
}
.tabs-chevron{
background-color: white;
right: 0px;
top: 0px;
bottom: 0px;
}
.tabs-chevron-left{
width: 12px;
height: 12px;
background-image: url(tabs-chevron-left.png);
background-repeat: no-repeat;
background-position-x: -2px;
background-position-y: -1px;
}
.tabs-chevron-right{
width: 12px;
height: 12px;
background-image: url(tabs-chevron-right.png);
background-repeat: no-repeat;
background-position-x: 0px;
background-position-y: -1px;
}
.tabs-chevron-list{
width: 12px;
height: 12px;
background-image: url(tabs-chevron-list.png);
background-repeat: no-repeat;
background-position-x: -1px;
background-position-y: -1px;
}
.tabs-tab-close{
background-image: url(tab-close.png);
background-repeat: no-repeat;
background-position: center;
margin-left: 7px;
width: 10px;
height: 10px;
cursor: pointer;
}
.gwt-TabLayoutPanelTab{
margin-left: -1px;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
border-width: 1px;
border-bottom-width: 0px;
border-style: solid;
border-color: #cfcfcf #ccc #c6c6c6;
background-image: linear-gradient(to bottom, #fcfcfc, #dfdfdf);
}
.gwt-TabLayoutPanelTab:hover{
border-top-left-radius: 2px;
border-top-right-radius: 2px;
border-top-color: #fc911d;
border-top-width: 2px;
}
.gwt-TabLayoutPanelTab-selected{
background-image: linear-gradient(to bottom, #49a4fc, #208be7);
text-shadow: 0 1px rgba(0, 0, 0, 0.3);
color: white;
}
.gwt-TabLayoutPanelTab p{
cursor: pointer;
}
.gwt-TabLayoutPanelTab p:focus, .gwt-TabLayoutPanelTab .gwt-Label:focus{
outline: none;
}
.gwt-TabLayoutPanelContentContainer{
border: 1px solid #ccc;
}
.treegrid-expanded-cell{
background-image: url(expanded.png);
background-repeat: no-repeat;
background-position-x: 0px;
}
.treegrid-collapased-cell{
background-image: url(collapsed.png);
background-repeat: no-repeat;
background-position-x: 0px;
}
.grid-cell-editor-popup{
background-color: white;
}
.grid-cell{
overflow: hidden;
}
.grid-focused-cell {
outline: black solid 2px;
outline-offset: -2px;
}
.grid-selected-row{
background-color: #e5e5e5 !important;
}
.grid-hovered-row{
background-color: #e0f0ff;
}
.grid-column-footer{
overflow: hidden;
}
.grid-column-header{
position: relative;
line-height: 20px;
overflow: hidden;
font-weight:bold;
color:white;
text-shadow:0 1px rgba(0,0,0,0.2);
background:#2c92ed;
border-width:1px 1px 1px 0;
border-style:solid;
border-color:#1d87e2 #187ed9 #1670c1;
background-image:-webkit-linear-gradient(top, #49a4fc, #208be7);
background-image:-moz-linear-gradient(top, #49a4fc, #208be7);
background-image:-o-linear-gradient(top, #49a4fc, #208be7);
background-image:linear-gradient(to bottom, #49a4fc, #208be7);
-webkit-box-shadow:inset 0 1px rgba(255,255,255,0.2),inset 0 0 0 1px rgba(255,255,255,0.06),0 1px rgba(0,0,0,0.04);
box-shadow:inset 0 1px rgba(255,255,255,0.2),inset 0 0 0 1px rgba(255,255,255,0.06),0 1px rgba(0,0,0,0.04)
}
.grid-column-header-content{
padding-left: 5px;
padding-right: 5px;
text-align: center;
}
.grid-sortable-column-header{
cursor: pointer;
}
.grid-columns-chevron{
/* position: absolute;*/
right: 1px;
top: 1px;
width: 13px;
background-image: url(grid-columns-chevron.png);
opacity: 0.6;
}
.grid-header-mover:hover{
border-width: 1px;
border-color: lightgray;
border-radius: 2px;
border-style: solid;
}
.grid-header-resizer:hover{
border-color: lightgray;
border-style: solid;
border-right-width: 1px;
border-top-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
border-radius: 2px;
cursor: ew-resize;
}
.grid-header-resizer{
border-color: lightgray;
border-style: solid;
border-right-width: 0px;
border-top-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-radius: 2px;
}
.grid-ruler{
width: 2px;
background-color: brown;
}
.grid-column-phantom{
background-color: lightgray;
opacity: 0.3;
}
.window-caption{
padding-left: 10px;
cursor: pointer;
color:#6b6a5a;
text-shadow:0 1px rgba(255,255,255,0.5);
background:#fcf0b0;
border:1px solid #d7cd89;
border-bottom-color:#cec986;
border-radius:3px;
background-image:-webkit-linear-gradient(top, #fef5bd,#faeca4);
background-image:-moz-linear-gradient(top, #fef5bd,#faeca4);
background-image:-o-linear-gradient(top, #fef5bd,#faeca4);
background-image:linear-gradient(to bottom, #fef5bd,#faeca4);
}
.window-caption-active{
padding-left: 10px;
cursor: pointer;
color:#526e4f;
text-shadow:0 1px rgba(255,255,255,0.5);
background:#bff1bc;
border:1px solid;
border-color:#98cf9f #98cf9f #8ec397;
border-radius:3px;
background-image:-webkit-linear-gradient(top, #cef4d0,#b2eeaa);
background-image:-moz-linear-gradient(top, #cef4d0,#b2eeaa);
background-image:-o-linear-gradient(top, #cef4d0,#b2eeaa);
background-image:linear-gradient(to bottom, #cef4d0,#b2eeaa);
}
.window-tool{
height: 16px;
width: 16px;
}
.window-tool-minimize{
background-image: url(window-tool-minimize.png);
background-repeat: no-repeat;
background-position-y: 7px;
opacity: 0.45;
}
.window-tool-maximize{
background-image: url(window-tool-maximize.png);
background-repeat: no-repeat;
background-position-x: 0px;
opacity: 0.6;
}
.window-tool-restore{
background-image: url(window-tool-restore.png);
background-repeat: no-repeat;
background-position-x: 0px;
opacity: 0.6;
}
.window-tool-close{
background-image: url(window-tool-close.png);
background-repeat: no-repeat;
background-position-x: 0px;
}
.window-content{
transition: width 0.5s, height 0.5s;
background-color: white;
}
.content-decor{
border: 1px solid #d7cd89;
border-bottom-color: #cec986;
border-radius: 3px;
}
.content-decor-active{
border-width: 1px;
border-style: solid;
border-color: #98cf9f #98cf9f #8ec397 #8ec397;
border-radius: 3px;
/* box-shadow: -1px -1px 10px 1px #a5e0ac, 1px 2px 4px #8ec397;*/
}
.vertical-decor{
width: 3px;
background: transparent;
}
.vertical-decor-active{
width: 3px;
background: transparent;
}
.horizontal-decor{
height: 3px;
background: transparent;
}
.horizontal-decor-active{
height: 3px;
background: transparent;
}
.corner-decor{
width: 12px !important;
height: 12px !important;
background: transparent;
}
.corner-decor-active{
width: 12px !important;
height: 12px !important;
background: transparent;
}
.north-decor{
}
.south-decor{
}
.west-decor{
}
.east-decor{
}
.north-west-decor{
}
.north-east-decor{
}
.south-west-decor{
}
.south-east-decor{
}
.north-decor-active{
}
.south-decor-active{
}
.west-decor-active{
}
.east-decor-active{
}
.north-west-decor-active{
}
.north-east-decor-active{
}
.south-west-decor-active{
}
.south-east-decor-active{
}
.editor-bold, .editor-italic, .editor-underline, .editor-subscript, .editor-superscript, .editor-align-left, .editor-align-center, .editor-align-right, .editor-background-color, .editor-foreground-color, .editor-strike-through, .editor-indent-right, .editor-indent-left, .editor-horisontal-rule, .editor-ordered-list, .editor-unordered-list, .editor-insert-image, .editor-create-link, .editor-delete-link, .editor-remove-format, .time-picker-up, .time-picker-down, .time-picker-button, .date-picker-button {
width: 100%;
height: 100%;
background-image: url(editor-bold.gif);
background-repeat: no-repeat;
background-position: center;
cursor: pointer;
}
.editor-container{
width: 100%;
height: 100%;
}
.editor-bold{
background-image: url(editor-bold.gif);
}
.editor-italic{
background-image: url(editor-italic.gif);
}
.editor-underline{
background-image: url(editor-underline.gif);
}
.editor-subscript{
background-image: url(editor-subscript.gif);
}
.editor-superscript{
background-image: url(editor-superscript.gif);
}
.editor-align-left{
background-image: url(editor-justify-left.gif);
}
.editor-align-center{
background-image: url(editor-justify-center.gif);
}
.editor-align-right{
background-image: url(editor-justify-right.gif);
}
.editor-background-color{
background-image: url(editor-back-color.gif);
}
.editor-foreground-color{
background-image: url(editor-fore-color.gif);
}
.editor-strike-through{
background-image: url(editor-strike-through.gif);
}
.editor-indent-right{
background-image: url(editor-indent.gif);
}
.editor-indent-left{
background-image: url(editor-outdent.gif);
}
.editor-horisontal-rule{
background-image: url(editor-hr.gif);
}
.editor-ordered-list{
background-image: url(editor-ol.gif);
}
.editor-unordered-list{
background-image: url(editor-ul.gif);
}
.editor-insert-image{
background-image: url(editor-insert-image.gif);
}
.editor-create-link{
background-image: url(editor-create-link.gif);
}
.editor-delete-link{
background-image: url(editor-remove-link.gif);
}
.editor-remove-format{
background-image: url(editor-remove-format.gif);
}
.time-picker-up{
background-image: url(time-up.png);
}
.time-picker-down{
background-image: url(time-down.png);
}
.time-picker{
background: white;
transition: height 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
border-top-left-radius: 2px;
border-top-right-radius: 2px;
box-sizing:border-box;
}
.time-picker-button{
background-image: url(clock.png);
border-top: 1px solid #A2BBDD;
}
.date-picker-button{
background-image: url(date-time-select.png);
border-top: 1px solid #A2BBDD;
}
.time-picker-separator{
font-size: large;
font-weight: bold;
}
.time-picker-text{
border-width: 1px;
border-radius: 5px;
font-size: large;
border-style: none;
padding:2px;
box-sizing:border-box;
}
.time-picker-text:hover{
border-style: inset;
padding: 1px;
box-sizing:border-box;
}
.date-time-picker{
background: white;
border: 1px solid #A2BBDD;
border-radius: 2px;
box-sizing:border-box;
}
|
www/customer_firstpage.html | hariharanhs/Mario_man | <!DOCTYPE html>
<!--
Copyright (c) 2012-2016 Adobe Systems Incorporated. All rights reserved.
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width" />
<!-- This is a wide open CSP declaration. To lock this down for production, see below. -->
<!-- <meta http-equiv="Content-Security-Policy" content="default-src * 'unsafe-inline'; style-src 'self' 'unsafe-inline'; media-src *" /> -->
<!-- Good default declaration:
* gap: is required only on iOS (when using UIWebView) and is needed for JS->native communication
* https://ssl.gstatic.com is required only on Android and is needed for TalkBack to function properly
* Disables use of eval() and inline scripts in order to mitigate risk of XSS vulnerabilities. To change this:
* Enable inline JS: add 'unsafe-inline' to default-src
* Enable eval(): add 'unsafe-eval' to default-src
* Create your own at http://cspisawesome.com
-->
<!-- <meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: 'unsafe-inline' https://ssl.gstatic.com; style-src 'self' 'unsafe-inline'; media-src *" /> -->
<!-- Mario Man CSS , Script Starts here-->
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link type="text/css" rel="stylesheet" href="css/jquery.mmenu.all.css" />
<link rel="stylesheet" type="text/css" href="css/style1.css" />
<!-- Mario Man CSS , Script Ends here -->
<!-- <link rel="stylesheet" type="text/css" href="css/index.css" /> -->
<title>MARIO MAN</title>
</head>
<body>
<div id="page">
<div class="header">
<a class="menu" href="#menu"></a>
<div class="page-title"><h1>Mario Details</h1></div>
</div>
<nav id="menu">
<ul>
<li><a href="AboutUsC.html">About Us</a></li>
<li><a href="customer_dashboard.html">Dashboard</a></li>
<li><a href="user_editprofile.html">Edit Profile</a></li>
<li><a href="customer_postjobs.html">Post Jobs</a></li>
<li><a href="customer_myjobs.html">My Jobs</a></li>
<li>
<a href="customer_notificationcenter.html">
<div class="button_badge1" id="notifynumbermenu" style="display:none;"></div>
Notifications
</a>
</li>
<li><a href="javascript:logout()">Log Out</a></li>
</ul>
</nav>
</div>
<div id="loading_spinner" class="loading_spinner"></div>
<div class="profile">
<div class="profile-contant">
<div class="container">
<h3 class="title" style="text-align:left;">Name</h3>
<div class="login">
<h3 class="bor">
<span class="view-h3" id="jobdesc">
<input type="text" id="mario_name" name="mario_name" placeholder="Enter your name"/>
</span>
</h3>
</div>
</div>
<div class="container">
<h3 class="title" style="text-align:left;">Service</h3>
<div style="width: 96%;font-size: 15px;line-height: 30px;padding: 0% 2%;text-align: left;color: #a9a9a9;">
<h3 class="bor">
<span class="view-h3" id="jobdesc">
<input type="checkbox" id="service" name="service[]" value="1"> Driver / pillon rider<br>
<input type="checkbox" id="service" name="service[]" value="2"> Run errands <br>
<input type="checkbox" id="service" name="service[]" value="3"> Handyman <br>
</span>
</h3>
</div>
</div>
<div class="container">
<h3 class="title" style="text-align:left;">Payment method</h3>
<div class="login">
<h3 class="bor">
<section id="first" class="section">
<div class="container" style="text-align:left;">
<input type="radio" class="radioClass" name="group_new" id="radio-4" value="1">
<label for="radio-4"><span class="radio">Credit / Debit card</span></label>
</div>
<div class="container" style="text-align:left;">
<input type="radio" class="radioClass" name="group_new" id="radio-5" value="2">
<label for="radio-5"><span class="radio">Paypal ID</span></label>
</div>
</section>
</h3>
</div>
</div>
<div class="container">
<h3 class="title" style="text-align:left;">Profile picture</h3>
<div class="login">
<h3 class="bor">
<span class="view-h3" id="jobdesc">
<input type="file" name="profile_picture" id="profile_picture" placeholder="Choose profile picture"/>
</span>
</h3>
</div>
</div>
<div class="btn-div">
<div class="btn-bg1"><a href="javascript:save_details()"> SAVE </a></div>
</div>
</div>
</div>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript" src="js/jquery-latest.js"></script>
<script src="js/jquery-2.2.3.min.js"></script>
<script type="text/javascript" src="js/jquery.mmenu.all.min.js"></script>
<script type="text/javascript">
//app.initialize();
document.addEventListener("deviceready", init, false);
$(function() {
$('nav#menu').mmenu();
});
function logout()
{
window.localStorage.clear(); //clear all local storage
window.location.href="index.html";
}
function init()
{
startLoader();
var user_name = window.localStorage.getItem("Mario_name");
var user_service = window.localStorage.getItem("user_service");
if(user_name != null && user_service != null)
{
window.location.href="mario_bankdetails.html";
}
stopLoader();
return getNotification();
}
/*********************************/
var Customer_Id = window.localStorage.getItem("user_id");
function getNotification(){
$.ajax({
type: "POST",
url: "http://182.73.106.114:8088/Mario_Man/customer_notifycount.php",
data : "Customer_Id="+Customer_Id,
async: true,
cache: false,
success: function(data){
//alert(data);
if(data != "")
{
addmsg(data);
}
setTimeout(
waitForMsg,
30000
);
},
error: function(XMLHttpRequest, textStatus, errorThrown){
addmsg("error", textStatus + " (" + errorThrown + ")");
setTimeout(
waitForMsg,
30000);
}
});
};
function addmsg(msg){
if(msg == 0 )
{
document.getElementById('notifynumbermenu').style.display = "none";
}
else
{
document.getElementById('notifynumbermenu').style.display = "block";
document.getElementById('notifynumbermenu').innerHTML = msg;
}
}
$('input').keypress(function(e) {
var code = (e.keyCode ? e.keyCode : e.which);
if ((code==13) || (code==10))
{
return save_details();
}
});
function save_details()
{
var mario_name = document.getElementById('mario_name').value;
var profile_picture = document.getElementById('profile_picture').value;
if(mario_name =='')
{
alert('Please enter name');
document.getElementById('mario_name').focus();
return false;
}
if (document.getElementById('service').checked == false)
{
alert('Please choose your service');
document.getElementById('service').focus();
return false;
}
if($("input[type='radio'].radioClass").is(':checked') == false) {
alert('Please choose your payment method');
document.getElementById('radio-4').focus();
return false;
}
if(profile_picture =='')
{
alert('Please choose profile picture');
document.getElementById('profile_picture').focus();
return false;
}
else
{
var Service_type = $.map($(':checkbox[name=service\\[\\]]:checked'), function(n, i){
return n.value;
}).join(',');
window.localStorage.setItem("mario_service",Service_type);
var Payment_type = $("input[type='radio'].radioClass:checked").val();
var user_id = window.localStorage.getItem("user_id");
var formData = new FormData();
formData.append('photo', $('#profile_picture')[0].files[0]);
formData.append('Mario_name', $('#mario_name').val());
formData.append('Service_type',Service_type);
formData.append('Payment_type', Payment_type);
formData.append('User_Id', user_id);
formData.append('User_Type', "1");
$.ajax({
url: 'http://182.73.106.114:8088/Mario_Man/user_details.php',
type: "POST",
data: formData,
async: false,
contentType: false,
processData: false,
success: function(data) {
if(data != ""){
if(data == 0)
{
alert("Error occured! Try again");
return false;
}
else
{
window.localStorage.setItem("user_service", Service_type);
window.localStorage.setItem("Payment_type", Payment_type);
window.localStorage.setItem("Mario_name", $('#mario_name').val());
window.localStorage.setItem("Mario_profile", data);
window.location.href="mario_bankdetails.html";
}
}
},
error:function(err){
alert(err.message);
},
});
}
}
</script>
</body>
</html> |
docs/reference/square.html | Non-Contradiction/Convexjl.R | <!-- Generated by pkgdown: do not edit by hand -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Square of x — square • convexjlr</title>
<!-- jquery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<!-- Bootstrap -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootswatch/3.3.7/cerulean/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha256-U5ZEeKfGNOja007MMD3YBI0A3OSZOQbeG6z2f2Y0hu8=" crossorigin="anonymous"></script>
<!-- Font Awesome icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha256-eZrrJcwDc/3uDhsdt61sL2oOBY362qM3lon1gyExkL0=" crossorigin="anonymous" />
<!-- clipboard.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.4/clipboard.min.js" integrity="sha256-FiZwavyI2V6+EXO1U+xzLG3IKldpiTFf3153ea9zikQ=" crossorigin="anonymous"></script>
<!-- sticky kit -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/sticky-kit/1.1.3/sticky-kit.min.js" integrity="sha256-c4Rlo1ZozqTPE2RLuvbusY3+SU1pQaJC0TjuhygMipw=" crossorigin="anonymous"></script>
<!-- pkgdown -->
<link href="../pkgdown.css" rel="stylesheet">
<script src="../pkgdown.js"></script>
<meta property="og:title" content="Square of x — square" />
<meta property="og:description" content="Square of x." />
<meta name="twitter:card" content="summary" />
<!-- mathjax -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js" integrity="sha256-nvJJv9wWKEm88qvoQl9ekL2J+k/RWIsaSScxxlsrv8k=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/config/TeX-AMS-MML_HTMLorMML.js" integrity="sha256-84DKXVJXs0/F8OTMzX4UR909+jtl4G7SPypPavF+GfA=" crossorigin="anonymous"></script>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container template-reference-topic">
<header>
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<span class="navbar-brand">
<a class="navbar-link" href="../index.html">convexjlr</a>
<span class="version label label-default" data-toggle="tooltip" data-placement="bottom" title="Released version">0.8.1</span>
</span>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li>
<a href="../index.html">
<span class="fa fa-home fa-lg"></span>
</a>
</li>
<li>
<a href="../reference/index.html">Reference</a>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
Articles
<span class="caret"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li>
<a href="../articles/my-vignette.html">Convex Optimization by convexjlr</a>
</li>
</ul>
</li>
<li>
<a href="../news/index.html">Changelog</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="https://github.com/Non-Contradiction/convexjlr">
<span class="fa fa-github fa-lg"></span>
</a>
</li>
</ul>
</div><!--/.nav-collapse -->
</div><!--/.container -->
</div><!--/.navbar -->
</header>
<div class="row">
<div class="col-md-9 contents">
<div class="page-header">
<h1>Square of x</h1>
<small class="dont-index">Source: <a href='https://github.com/Non-Contradiction/convexjlr/blob/master/R/operator.R'><code>R/operator.R</code></a></small>
<div class="hidden name"><code>square.Rd</code></div>
</div>
<div class="ref-description">
<p>Square of x.</p>
</div>
<pre class="usage"><span class='fu'>square</span>(<span class='no'>x</span>)</pre>
<h2 class="hasAnchor" id="arguments"><a class="anchor" href="#arguments"></a>Arguments</h2>
<table class="ref-arguments">
<colgroup><col class="name" /><col class="desc" /></colgroup>
<tr>
<th>x</th>
<td><p>input vector.</p></td>
</tr>
</table>
</div>
<div class="col-md-3 hidden-xs hidden-sm" id="sidebar">
<h2>Contents</h2>
<ul class="nav nav-pills nav-stacked">
<li><a href="#arguments">Arguments</a></li>
</ul>
</div>
</div>
<footer>
<div class="copyright">
<p>Developed by Changcheng Li.</p>
</div>
<div class="pkgdown">
<p>Site built with <a href="https://pkgdown.r-lib.org/">pkgdown</a> 1.3.0.</p>
</div>
</footer>
</div>
</body>
</html>
|
bonfire/_functions/_error_message.html | inputx/code-ref-doc | <!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
<title>PHPXRef 0.7.1 : Unnamed Project : Function Reference: _error_message()</title>
<link rel="stylesheet" href="../sample.css" type="text/css">
<link rel="stylesheet" href="../sample-print.css" type="text/css" media="print">
<style id="hilight" type="text/css"></style>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
</head>
<body bgcolor="#ffffff" text="#000000" link="#801800" vlink="#300540" alink="#ffffff">
<table class="pagetitle" width="100%">
<tr>
<td valign="top" class="pagetitle">
[ <a href="../index.html">Index</a> ]
</td>
<td align="right" class="pagetitle">
<h2 style="margin-bottom: 0px">PHP Cross Reference of Unnamed Project</h2>
</td>
</tr>
</table>
<!-- Generated by PHPXref 0.7.1 at Thu Oct 23 18:57:41 2014 -->
<!-- PHPXref (c) 2000-2010 Gareth Watts - gareth@omnipotent.net -->
<!-- http://phpxref.sourceforge.net/ -->
<script src="../phpxref.js" type="text/javascript"></script>
<script language="JavaScript" type="text/javascript">
<!--
ext='.html';
relbase='../';
subdir='_functions';
filename='index.html';
cookiekey='phpxref';
handleNavFrame(relbase, subdir, filename);
logFunction('_error_message');
// -->
</script>
<script language="JavaScript" type="text/javascript">
if (gwGetCookie('xrefnav')=='off')
document.write('<p class="navlinks">[ <a href="javascript:navOn()">Show Explorer<\/a> ]<\/p>');
else
document.write('<p class="navlinks">[ <a href="javascript:navOff()">Hide Explorer<\/a> ]<\/p>');
</script>
<noscript>
<p class="navlinks">
[ <a href="../nav.html" target="_top">Show Explorer</a> ]
[ <a href="index.html" target="_top">Hide Navbar</a> ]
</p>
</noscript>
[<a href="../index.html">Top level directory</a>]<br>
<script language="JavaScript" type="text/javascript">
<!--
document.writeln('<table align="right" class="searchbox-link"><tr><td><a class="searchbox-link" href="javascript:void(0)" onMouseOver="showSearchBox()">Search</a><br>');
document.writeln('<table border="0" cellspacing="0" cellpadding="0" class="searchbox" id="searchbox">');
document.writeln('<tr><td class="searchbox-title">');
document.writeln('<a class="searchbox-title" href="javascript:showSearchPopup()">Search History +</a>');
document.writeln('<\/td><\/tr>');
document.writeln('<tr><td class="searchbox-body" id="searchbox-body">');
document.writeln('<form name="search" style="margin:0px; padding:0px" onSubmit=\'return jump()\'>');
document.writeln('<a class="searchbox-body" href="../_classes/index.html">Class<\/a>: ');
document.writeln('<input type="text" size=10 value="" name="classname"><br>');
document.writeln('<a id="funcsearchlink" class="searchbox-body" href="../_functions/index.html">Function<\/a>: ');
document.writeln('<input type="text" size=10 value="" name="funcname"><br>');
document.writeln('<a class="searchbox-body" href="../_variables/index.html">Variable<\/a>: ');
document.writeln('<input type="text" size=10 value="" name="varname"><br>');
document.writeln('<a class="searchbox-body" href="../_constants/index.html">Constant<\/a>: ');
document.writeln('<input type="text" size=10 value="" name="constname"><br>');
document.writeln('<a class="searchbox-body" href="../_tables/index.html">Table<\/a>: ');
document.writeln('<input type="text" size=10 value="" name="tablename"><br>');
document.writeln('<input type="submit" class="searchbox-button" value="Search">');
document.writeln('<\/form>');
document.writeln('<\/td><\/tr><\/table>');
document.writeln('<\/td><\/tr><\/table>');
// -->
</script>
<div id="search-popup" class="searchpopup"><p id="searchpopup-title" class="searchpopup-title">title</p><div id="searchpopup-body" class="searchpopup-body">Body</div><p class="searchpopup-close"><a href="javascript:gwCloseActive()">[close]</a></p></div>
<h3>Function and Method Cross Reference</h3>
<h2><a href="index.html#_error_message">_error_message()</a></h2>
<b>Defined at:</b><ul>
<li><a href="../bonfire/codeigniter/database/drivers/mssql/mssql_driver.php.html#_error_message">/bonfire/codeigniter/database/drivers/mssql/mssql_driver.php</a> -> <a onClick="logFunction('_error_message', '/bonfire/codeigniter/database/drivers/mssql/mssql_driver.php.source.html#l433')" href="../bonfire/codeigniter/database/drivers/mssql/mssql_driver.php.source.html#l433"> line 433</a></li>
<li><a href="../bonfire/codeigniter/database/drivers/mysqli/mysqli_driver.php.html#_error_message">/bonfire/codeigniter/database/drivers/mysqli/mysqli_driver.php</a> -> <a onClick="logFunction('_error_message', '/bonfire/codeigniter/database/drivers/mysqli/mysqli_driver.php.source.html#l450')" href="../bonfire/codeigniter/database/drivers/mysqli/mysqli_driver.php.source.html#l450"> line 450</a></li>
<li><a href="../bonfire/codeigniter/database/drivers/pdo/pdo_driver.php.html#_error_message">/bonfire/codeigniter/database/drivers/pdo/pdo_driver.php</a> -> <a onClick="logFunction('_error_message', '/bonfire/codeigniter/database/drivers/pdo/pdo_driver.php.source.html#l485')" href="../bonfire/codeigniter/database/drivers/pdo/pdo_driver.php.source.html#l485"> line 485</a></li>
<li><a href="../bonfire/codeigniter/database/drivers/odbc/odbc_driver.php.html#_error_message">/bonfire/codeigniter/database/drivers/odbc/odbc_driver.php</a> -> <a onClick="logFunction('_error_message', '/bonfire/codeigniter/database/drivers/odbc/odbc_driver.php.source.html#l404')" href="../bonfire/codeigniter/database/drivers/odbc/odbc_driver.php.source.html#l404"> line 404</a></li>
<li><a href="../bonfire/codeigniter/database/drivers/sqlsrv/sqlsrv_driver.php.html#_error_message">/bonfire/codeigniter/database/drivers/sqlsrv/sqlsrv_driver.php</a> -> <a onClick="logFunction('_error_message', '/bonfire/codeigniter/database/drivers/sqlsrv/sqlsrv_driver.php.source.html#l401')" href="../bonfire/codeigniter/database/drivers/sqlsrv/sqlsrv_driver.php.source.html#l401"> line 401</a></li>
<li><a href="../tests/_support/database.php.html#_error_message">/tests/_support/database.php</a> -> <a onClick="logFunction('_error_message', '/tests/_support/database.php.source.html#l48')" href="../tests/_support/database.php.source.html#l48"> line 48</a></li>
<li><a href="../bonfire/codeigniter/database/drivers/mysql/mysql_driver.php.html#_error_message">/bonfire/codeigniter/database/drivers/mysql/mysql_driver.php</a> -> <a onClick="logFunction('_error_message', '/bonfire/codeigniter/database/drivers/mysql/mysql_driver.php.source.html#l449')" href="../bonfire/codeigniter/database/drivers/mysql/mysql_driver.php.source.html#l449"> line 449</a></li>
<li><a href="../bonfire/codeigniter/database/drivers/sqlite/sqlite_driver.php.html#_error_message">/bonfire/codeigniter/database/drivers/sqlite/sqlite_driver.php</a> -> <a onClick="logFunction('_error_message', '/bonfire/codeigniter/database/drivers/sqlite/sqlite_driver.php.source.html#l418')" href="../bonfire/codeigniter/database/drivers/sqlite/sqlite_driver.php.source.html#l418"> line 418</a></li>
<li><a href="../bonfire/codeigniter/database/drivers/postgre/postgre_driver.php.html#_error_message">/bonfire/codeigniter/database/drivers/postgre/postgre_driver.php</a> -> <a onClick="logFunction('_error_message', '/bonfire/codeigniter/database/drivers/postgre/postgre_driver.php.source.html#l449')" href="../bonfire/codeigniter/database/drivers/postgre/postgre_driver.php.source.html#l449"> line 449</a></li>
<li><a href="../bonfire/codeigniter/database/drivers/oci8/oci8_driver.php.html#_error_message">/bonfire/codeigniter/database/drivers/oci8/oci8_driver.php</a> -> <a onClick="logFunction('_error_message', '/bonfire/codeigniter/database/drivers/oci8/oci8_driver.php.source.html#l534')" href="../bonfire/codeigniter/database/drivers/oci8/oci8_driver.php.source.html#l534"> line 534</a></li>
<li><a href="../bonfire/codeigniter/database/drivers/cubrid/cubrid_driver.php.html#_error_message">/bonfire/codeigniter/database/drivers/cubrid/cubrid_driver.php</a> -> <a onClick="logFunction('_error_message', '/bonfire/codeigniter/database/drivers/cubrid/cubrid_driver.php.source.html#l462')" href="../bonfire/codeigniter/database/drivers/cubrid/cubrid_driver.php.source.html#l462"> line 462</a></li>
</ul>
<b>Referenced 2 times:</b><ul>
<li><a href="../bonfire/codeigniter/database/DB_driver.php.html">/bonfire/codeigniter/database/DB_driver.php</a> -> <a href="../bonfire/codeigniter/database/DB_driver.php.source.html#l314"> line 314</a></li>
<li><a href="../application/core/MY_Model.php.html">/application/core/MY_Model.php</a> -> <a href="../application/core/MY_Model.php.source.html#l1513"> line 1513</a></li>
</ul>
<!-- A link to the phpxref site in your customized footer file is appreciated ;-) -->
<br><hr>
<table width="100%">
<tr><td>Generated: Thu Oct 23 18:57:41 2014</td>
<td align="right"><i>Cross-referenced by <a href="http://phpxref.sourceforge.net/">PHPXref 0.7.1</a></i></td>
</tr>
</table>
</body></html>
|
public/docs/en/2.9.0/guide_getting-started_ios_index.md.html | csantanapr/cordova-blog | <!DOCTYPE html>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
--><html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width">
<meta name="generator" content="joDoc">
<title>Apache Cordova API Documentation</title>
<link rel="stylesheet" type="text/css" href="index.css">
<link rel="stylesheet" type="text/css" href="mobile.css" media="only screen and (max-device-width: 1024px)">
<link rel="stylesheet" type="text/css" href="prettify/prettify.css">
</head>
<body>
<div id="header">
<h1><a href="index.html">Apache <strong>Cordova</strong> Documentation</a></h1>
<small>
<select><optgroup label="English" value="en">
<option value="edge">edge</option>
<option value="2.9.0rc1">2.9.0rc1</option>
<option selected value="2.9.0">2.9.0</option>
<option value="2.8.0">2.8.0</option>
<option value="2.7.0rc1">2.7.0rc1</option>
<option value="2.7.0">2.7.0</option>
<option value="2.6.0rc1">2.6.0rc1</option>
<option value="2.6.0">2.6.0</option>
<option value="2.5.0rc1">2.5.0rc1</option>
<option value="2.5.0">2.5.0</option>
<option value="2.4.0rc1">2.4.0rc1</option>
<option value="2.4.0">2.4.0</option>
<option value="2.3.0rc2">2.3.0rc2</option>
<option value="2.3.0rc1">2.3.0rc1</option>
<option value="2.3.0">2.3.0</option>
<option value="2.2.0rc2">2.2.0rc2</option>
<option value="2.2.0rc1">2.2.0rc1</option>
<option value="2.2.0">2.2.0</option>
<option value="2.1.0rc2">2.1.0rc2</option>
<option value="2.1.0rc1">2.1.0rc1</option>
<option value="2.1.0">2.1.0</option>
<option value="2.0.0rc1">2.0.0rc1</option>
<option value="2.0.0">2.0.0</option>
<option value="1.9.0rc1">1.9.0rc1</option>
<option value="1.9.0">1.9.0</option>
<option value="1.8.1">1.8.1</option>
<option value="1.8.0rc1">1.8.0rc1</option>
<option value="1.8.0">1.8.0</option>
<option value="1.7.0rc1">1.7.0rc1</option>
<option value="1.7.0">1.7.0</option>
<option value="1.6.1">1.6.1</option>
<option value="1.6.0rc1">1.6.0rc1</option>
<option value="1.6.0">1.6.0</option>
<option value="1.5.0rc1">1.5.0rc1</option>
<option value="1.5.0">1.5.0</option>
</optgroup>
<optgroup label="Japanese" value="jp">
<option value="2.2.0">2.2.0</option>
<option value="2.1.0">2.1.0</option>
<option value="2.0.0">2.0.0</option>
<option value="1.9.0">1.9.0</option>
<option value="1.8.1">1.8.1</option>
<option value="1.7.0">1.7.0</option>
</optgroup>
<optgroup label="Korean" value="kr"><option value="2.0.0">2.0.0</option></optgroup></select></small>
</div>
<div id="subheader">
<h1>iOS Platform Guide</h1>
<small><select><option value="iOS%2520Platform%2520Guide">iOS Platform Guide</option>
<option value="iOS%20Platform%20Guide_introduction"> - Introduction</option>
<option value="iOS%20Platform%20Guide_install_cordova"> - Install Cordova</option>
<option value="iOS%20Platform%20Guide_project_creation"> - Project Creation</option>
<option value="iOS%20Platform%20Guide_running_the_application"> - Running the Application</option>
<option value="iOS%20Platform%20Guide_results"> - Results</option>
<option value="iOS%20Platform%20Guide_common_problems"> - Common Problems</option>
<option value="iOS%20Platform%20Guide_next_steps"> - Next Steps</option>
<option value="iOS%20Platform%20Guide_resources"> - Resources</option></select></small>
</div>
<div id="sidebar">
<div class="vertical_divider"></div>
<h1>API Reference</h1>
<ul>
<li><a href="cordova_accelerometer_accelerometer.md.html#Accelerometer">Accelerometer</a></li>
<li><a href="cordova_camera_camera.md.html#Camera">Camera</a></li>
<li><a href="cordova_media_capture_capture.md.html#Capture">Capture</a></li>
<li><a href="cordova_compass_compass.md.html#Compass">Compass</a></li>
<li><a href="cordova_connection_connection.md.html#Connection">Connection</a></li>
<li><a href="cordova_contacts_contacts.md.html#Contacts">Contacts</a></li>
<li><a href="cordova_device_device.md.html#Device">Device</a></li>
<li><a href="cordova_events_events.md.html#Events">Events</a></li>
<li><a href="cordova_file_file.md.html#File">File</a></li>
<li><a href="cordova_geolocation_geolocation.md.html#Geolocation">Geolocation</a></li>
<li><a href="cordova_globalization_globalization.md.html#Globalization">Globalization</a></li>
<li><a href="cordova_inappbrowser_inappbrowser.md.html#InAppBrowser">InAppBrowser</a></li>
<li><a href="cordova_media_media.md.html#Media">Media</a></li>
<li><a href="cordova_notification_notification.md.html#Notification">Notification</a></li>
<li><a href="cordova_splashscreen_splashscreen.md.html#Splashscreen">Splashscreen</a></li>
<li><a href="cordova_storage_storage.md.html#Storage">Storage</a></li>
</ul>
<h1>Guides</h1>
<ul>
<li><a href="guide_overview_index.md.html#Overview">Overview</a></li>
<li><a href="guide_getting-started_index.md.html#Platform%20Guides">Platform Guides</a></li>
<li><a href="guide_cli_index.md.html#The%20Cordova%20Command-line%20Interface">The Cordova Command-line Interface</a></li>
<li><a href="guide_command-line_index.md.html#Command-Line%20Usage">Command-Line Usage</a></li>
<li><a href="guide_privacy_index.md.html#Privacy%20Guide">Privacy Guide</a></li>
<li><a href="guide_upgrading_index.md.html#Upgrading%20Guides">Upgrading Guides</a></li>
<li><a href="guide_project-settings_index.md.html#Project%20Settings">Project Settings</a></li>
<li><a href="guide_plugin-development_index.md.html#Plugin%20Development%20Guide">Plugin Development Guide</a></li>
<li><a href="guide_whitelist_index.md.html#Domain%20Whitelist%20Guide">Domain Whitelist Guide</a></li>
<li><a href="guide_cordova-webview_index.md.html#Embedding%20WebView">Embedding WebView</a></li>
<li><a href="_index.html">Keyword Index</a></li>
</ul>
</div>
<div id="scrollable">
<div id="content">
<h1><a name="iOS%20Platform%20Guide">iOS Platform Guide</a></h1>
<h2>
<a name="iOS%20Platform%20Guide_introduction">Introduction</a>
</h2>
<p>Apache Cordova is a library used to create native mobile applications using Web technologies. The application is created using HTML, CSS and JavaScript and compiled for each specific platform using the platform native tools. Cordova provides a standard set of JavaScript APIs to access device features on all supported platforms. This document describes how to get started using Apache Cordova for the iOS platform.</p>
<h3>Requirements</h3>
<ul>
<li>
<strong>Intel-based Computer with Mac® OS X® Lion or greater (10.7.4+)</strong>
The Apple® tools required for building iOS applications run only on the OS X operating system. The version of the development environment required, Xcode® 4.5, runs only on Mac OS X version 10.7 (Lion) or greater.</li>
<li>
<p><strong>Xcode 4.5 and iOS 6 SDK</strong>
To submit apps to the Apple App Store℠, you must use the latest versions of the Apple tools. Currently the latest versions are Xcode 4.5.2 and the iOS 6 SDK (Software Development Kit). The download of Xcode 4.5.2 includes the iOS 6 SDK.</p>
<ul>
<li>Download from the <a class="external" href="https://itunes.apple.com/us/app/xcode/id497799835?mt=12">App Store</a> (https://itunes.apple.com/us/app/xcode/id497799835?mt=12).</li>
<li>Download from <a class="external" href="https://developer.apple.com/downloads/index.action">Apple Developer Downloads</a> (https://developer.apple.com/downloads/index.action). <strong>NOTE:</strong> This link requires Apple Developer registration.</li>
</ul>
</li>
<li>
<p><strong>Xcode Command Line Tools</strong></p>
<p>Cordova uses the command line to create a new application project. To access the Xcode tools from the command line an additional download is required. The tools are downloaded from within Xcode.</p>
<ol>
<li>Open Xcode</li>
<li>Select the following via the Xcode Menus: <strong>Xcode Preferences> Downloads>Command Line Tools</strong>. This downloads and installs copies of the core command-line tools and system headers into your computer's system folders.</li>
</ol>
</li>
<li>
<p><strong>iOS <a href="cordova_device_device.md.html#Device">Device</a></strong></p>
<p>You can test many of the Cordova features using the iOS simulator installed with the iOS SDK and Xcode, but you need an actual device to fully test all of the device features your applications use before submitting to the App Store. The device must have at least iOS 5.x installed, the minimum iOS version supported as of Cordova 2.3. Devices that support at least iOS 5 include all iPad® models, iPhone® 3GS and above, and iPod® Touch 3rd Generation or later. To install apps onto a device, you must also be a member of Apple's <a class="external" href="https://developer.apple.com/programs/ios/">iOS Developer Program</a>. The program costs $99 per year. This platform guide shows how to deploy the application to the iOS simulator, in which case developer program registration is not required.</p>
</li>
</ul>
<h2>
<a name="iOS%20Platform%20Guide_install_cordova">Install Cordova</a>
</h2>
<h3>Download Cordova</h3>
<p>Download the latest version of <a class="external" href="http://www.apache.org/dist/cordova/">Apache Cordova</a> from http://www.apache.org/dist/cordova/. Click on the Download icon and select cordova-x.x.x-src.zip to download to your machine. The download includes the code for all of the Apache Cordova supported platforms.</p>
<h3>Extract Cordova</h3>
<p>To access the code, it needs to be extracted from the archive (.zip) file:</p>
<ol>
<li><p>Navigate to the folder where you downloaded the code. Find the version-specific cordova-x.x.x-src.zip file.</p></li>
<li><p>Using the Finder® app, double-click the file to extract. This creates a directory named <code>cordova-x.x.x</code>.</p></li>
<li><p>Expand this folder and locate the cordova-ios.zip file and double-click to extract it.</p></li>
<li><p>The code for iOS is within the cordova-ios directory structure.</p></li>
</ol>
<h2>
<a name="iOS%20Platform%20Guide_project_creation">Project Creation</a>
</h2>
<p>Xcode projects for Cordova are created by invoking a script file via the command line. The following steps explain how to create the necessary directory structure, open and use the Terminal application to create a new project, and execute the create script.</p>
<h3>Determine Project Location</h3>
<p>Determine where on your system to place your application's Xcode
project files. This tutorial uses <code>~/Documents/CordovaXY</code>, where the
'X' and 'Y' refer the to Cordova version number.</p>
<ol>
<li><p>In the Finder, navigate to the <code>Documents</code> directory.</p></li>
<li><p>Create a subdirectory within <code>Documents</code> called <code>CordovaXY</code>, where the 'X' and 'Y' represent the Cordova version number (23, for example). You can use a different directory name or location if you wish, but you need to remember it for subsequent steps.</p></li>
</ol>
<h3>Open Terminal</h3>
<ol>
<li><p>Open the Terminal application, located by default in the <code>Applications/Utilities</code> folder.</p></li>
<li>
<p>Use the Finder to navigate to the <code>cordova-ios</code> directory from the downloaded and extracted Cordova code. Highlight the <code>bin</code> subdirectory as shown:</p>
<p><img src="img/guide/getting-started/ios/bin_dir_listing.png" alt="" title=""></p>
<p><strong>NOTE:</strong> Your listing varies depending on Cordova's version number.</p>
</li>
<li><p>Drag this directory to the open the Terminal icon in the dock. This opens up a default terminal window with the path set to the <code>bin</code> directory.</p></li>
</ol>
<h3>Create New Project</h3>
<h4>Command Line Syntax</h4>
<ol>
<li>
<p>Determine Required Parameters</p>
<p>Three parameters are required to creating a Cordova project from the command line, in this order:</p>
<ol>
<li>
<p><strong>project location</strong></p>
<p>This directory is where the Xcode project and application files are to be located. This tutorial uses <code>~/Documents/CordovaXY</code> as the base location (with 'X' and 'Y' representing the Cordova version number) and the <code>HelloWorld</code> application name as the project directory. Since the command creates the final <code>HelloWorld</code> directory, it must not already exist.</p>
</li>
<li>
<p><strong>package name</strong></p>
<p>When submitting apps to the App Store, this must be the reverse domain name App ID that is created via the Apple Provisioning Portal (described in the Deploy to <a href="cordova_device_device.md.html#Device">Device</a> section). The Provisioning Portal is accessible once you have paid for and signed into your iOS Developer Account. Since you don't need to submit this sample app, this tutorial uses <code>org.apache.Cordova</code> plus the <code>HelloWorld</code> app name: <code>org.apache.cordova.HelloWorld</code></p>
</li>
<li>
<p><strong>project name</strong></p>
<p>This is the name of the actual project. Most developers match the project name with the application name, so in this example it's <code>HelloWorld</code>.</p>
</li>
</ol>
</li>
<li>
<p>Execute the Command</p>
<p>In the terminal app with bin as the current directory, enter the 3 pieces of information via the following command:
<code>./create ~/Documents/CordovaXY/HelloWorld org.apache.cordova.HelloWorld HelloWorld</code></p>
<p><img src="img/guide/getting-started/ios/create.png" alt="" title=""></p>
</li>
<li>
<p>Fix Common Problems</p>
<p><strong>No Developer Directory Found</strong></p>
<p>The “Error: No developer directory found at /Developer” message is displayed if the create script can not find the location of the command-line tools within Xcode. This can occur if more than one version of Xcode is installed on the system or when upgrading from older versions of Xcode. The solution is to run the xcode-select command to set the location. If you have installed Xcode in the default location the command to execute is:</p>
<pre class="prettyprint"><code> sudo /usr/bin/xcode-select -switch /Applications/Xcode.app/Contents/Developer
</code></pre>
<p>See <a class="external" href="http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man1/xcode-select.1.html">http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man1/xcode-select.1.html</a> for more information on the xcode-select command if you have installed Xcode in a different location.</p>
</li>
</ol>
<h4>Optional Features</h4>
<ul>
<li>
<p><strong>Additional Parameters</strong></p>
<p>The default create script copies the necessary common library files from the Cordova distribution directory into your Xcode project directory. These files appear within the project's <code>CordovaLib</code> directory. Some development organizations prefer that developers reference the common Cordova library files from a fixed location, which helps ensure that all developers use the exact same copy of the CordovaLib code. To do this, add the <code>--shared</code> parameter to the <code>create</code> command. The following command creates a project that references the CordovaLib directory from the iOS directory location in which you run the <code>create</code> script:</p>
<pre class="prettyprint"><code>./create --shared ~/Documents/CordovaXY/HelloWorld org.apache.cordova.HelloWorld HelloWorld
</code></pre>
<p>The Xcode project files are still in the <code>~/Documents/CordovaXY/HelloWorld</code> directory, but the CordovaLib files are referenced from the Cordova distribution directory.</p>
</li>
<li>
<p><strong>Additional Scripts</strong></p>
<p>Within the cordova-ios/bin directory there is an additional script that changes the location of the CordovaLib directory to refer to a shared location after the project has been created,</p>
<pre class="prettyprint"><code> ./update_cordova_subproject path/to/your/project
</code></pre>
<p>Most users are satisfied with the default project creation procedure and do not need this additional script. This script uses the location of CordovaLib directory at the same directory level as the bin directory from which it is run as the shared location for CordovaLib. To modify the newly created HelloWorld project to use a shared location for CordovaLib, execute the following command from the <code>bin</code> directory:</p>
<pre class="prettyprint"><code>./update_cordova_subproject ~/Documents/CordovaXY/HelloWorld
</code></pre>
</li>
</ul>
<h2>
<a name="iOS%20Platform%20Guide_running_the_application">Running the Application</a>
</h2>
<h3>Open the Project</h3>
<p>Using the Finder app, navigate to the location where you created the project. This guide uses <code>~/Documents/CordovaXY/HelloWorld</code>. Double-click the <code>HelloWorld.xcodeproj</code> file to open the project in Xcode.</p>
<p>Your screen should look similar to:</p>
<p><img src="img/guide/getting-started/ios/helloworld_project.png" alt="" title=""><strong>NOTE:</strong> this screen capture shows a project that was created with the name as HelloWorld23.</p>
<h3>Deploy to the Simulator</h3>
<ol>
<li>In the upper-left corner of Xcode, click on the Scheme drop-down list and select the project name, HelloWorld, as the target.</li>
<li><p>Click the device section and select an iOS Simulator such as iPhone 6.0 Simulator as shown:
<img src="img/guide/getting-started/ios/select_xcode_scheme.png" alt="" title=""></p></li>
<li><p>Click the <strong>Run</strong> button in your project window's toolbar to build, deploy and run the application in the simulator.</p></li>
</ol>
<h3>Deploy to the <a href="cordova_device_device.md.html#Device">Device</a>
</h3>
<h4>Requirements</h4>
<p>There are several requirements to deploy to a device. Since this information is not related directly to Cordova, please refer to the <em>Configuring Development and Distribution Assets</em> section of Apple's <a class="external" href="http://developer.apple.com/library/ios/#documentation/Xcode/Conceptual/ios_development_workflow/00-About_the_iOS_Application_Development_Workflow/introduction.html#//apple_ref/doc/uid/TP40007959">Tools Workflow Guide for iOS</a>.</p>
<ul>
<li><p>Join the Apple iOS Developer Program</p></li>
<li><p>Create a Provisioning Profile within the <a class="external" href="https://developer.apple.com/ios/manage/overview/index.action">iOS Provisioning Portal</a>. You can use the Development Provisioning Assistant within the Provisioning Portal to create and install the profile and certificate for use within Xcode.</p></li>
<li><p>Verify that the Code Signing Identity in the Code Signing sections of the Hello World Xcode project settings has been set with your provisioning profile name.</p></li>
</ul>
<h4>Deployment Steps</h4>
<ol>
<li>Plug your device into your Mac via the USB Cable.</li>
<li>
<p>Select the Target and device</p>
<ol>
<li>In the upper-left corner of the Xcode window, click the Scheme drop-down list and select the project name, HelloWorld, as the target.</li>
<li>Click the device section and select your device from the list. If your device is plugged in via the USB but not visible in the device list, click the <strong>Organizer</strong> button to determine any errors.</li>
</ol>
</li>
<li><p>Click the <strong>run</strong> button to build, deploy and run the application on your device.</p></li>
</ol>
<h2>
<a name="iOS%20Platform%20Guide_results">Results</a>
</h2>
<p>The running HelloWorld app is shown below. The <a href="cordova_device_device.md.html#Device">Device</a> is Ready line should be slowly pulsating.</p>
<p><img src="img/guide/getting-started/ios/HelloWorldStandard.png" alt="" title=""></p>
<h2>
<a name="iOS%20Platform%20Guide_common_problems">Common Problems</a>
</h2>
<h3>Deprecation Warnings</h3>
<p>When an application programming interface (API) is changed or replaced
by another API, it is marked as <em>deprecated</em>. The API still works in
the near term, but is eventually removed. Some of these deprecated
interfaces are reflected in Apache Cordova, and Xcode issues warnings
about them when you build and deploy an application. The Xcode
warning about the ‘invokeString’ method concerns functionality that
launches the app from a custom URL. While the mechanism to load from a
custom URL has changed, this code is included to provide backwards
functionality for apps created with older versions of Cordova. The
sample app does not use this functionality, so these warnings can be
ignored.</p>
<p>If you wish to remove the warnings you can remove the code that
references the deprecated invokeString API:</p>
<ol>
<li>Edit the <code>Classes/MainViewController.m</code> file.</li>
<li>
<p>Find and comment out the following code by surrounding it with the begin, /*, and end, */, comment characters as highlighted in the code snippet below.</p>
<pre class="prettyprint"><code>(void)webViewDidFinishLoad:(UIWebView*)theWebView
{
// only valid if ___PROJECTNAME__-Info.plist specifies a protocol to handle
/*
if (self.invokeString) {
// this is passed before the <a href="cordova_events_events.md.html#deviceready">deviceready</a> event is fired, so you can access it in js when you receive <a href="cordova_events_events.md.html#deviceready">deviceready</a>
NSLog(@"DEPRECATED: window.invokeString - use the window.handleOpenURL(url) function instead, which is always called when the app is launched through a custom scheme url.");
NSString* jsString = [NSString stringWithFormat:@"var invokeString = \"%@\";", self.invokeString];
[theWebView stringByEvaluatingJavaScriptFromString:jsString];
}
*/
// Black base color for background matches the native apps
theWebView.backgroundColor = [UIColor blackColor];
return [super webViewDidFinishLoad:theWebView];
}
</code></pre>
</li>
<li><p>Press Command s to save the file.</p></li>
<li><p>Navigate to the AppViewDelegate.m file in the Classes Folder.</p></li>
<li>
<p>Comment out the following line by placing a double slash at the beginning of line 73 as shown below:</p>
<pre class="prettyprint"><code>//self.viewController.invokeString = invokeString;
</code></pre>
</li>
<li><p>Press Command-s to save the file.</p></li>
<li><p>Press Command-b to rebuild the project and eliminate the warnings.</p></li>
</ol>
<h3>Missing Headers</h3>
<p>Some users have encountered compilation errors relating to missing headers. This refers to a problem in the build location and is fixed via Xcode preferences.</p>
<ol>
<li>Within the Xcode menus select <strong>Xcode → Preferences → Locations</strong>.</li>
<li>
<p>In the <strong>Derived Data</strong> section click the <strong>Advanced</strong> button and select <strong>Unique</strong> as the <em>_Build Location</em> as shown:
<img src="img/guide/getting-started/ios/xcode_build_location.png" alt="" title=""></p>
<p>This is the default setting for a new Xcode install, but it may be set differently if you upgraded from an older version of Xcode.</p>
</li>
</ol>
<h2>
<a name="iOS%20Platform%20Guide_next_steps">Next Steps</a>
</h2>
<h3>Building Your Own Applications</h3>
<p><strong>Include Cordova</strong></p>
<p>All of the code for the sample application is contained within the
Xcode project's <code>www</code> directory, where the starting page is named
<code>index.html</code>. Any page that invokes Cordova APIs must reference the
version-specific <code>cordova-x.x.x.js</code> file, as shown in the sample
<code>HelloWorld</code> application's <code>index.html</code>:</p>
<pre class="prettyprint"><code> <script type="text/javascript" src="cordova-x.x.x.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript">
app.initialize();
</script>
</code></pre>
<p><strong>Wait for deviceReady Event</strong></p>
<p>When loading a page, Cordova’s <code>deviceReady</code> event must fire before you can access any of the platform features via the Cordova JavaScript APIs. Within the sample application this is set up within the app object found within the js/index.js file. The app.initialze() call at the bottom of the <code>index.html</code> file (visible in the previous code example) sets in motion the binding of events to receive and respond to the <code>deviceReady</code> event.</p>
<p>Another common way to initialize a page is to add a <code>deviceReady</code> event listener from the body's <code>onload</code> event handler as shown below:</p>
<pre class="prettyprint"><code> <head>
<script type="text/javascript" src="cordova-x.x.x.js"></script>
<script>
function onLoad() {
document.<a href="cordova_inappbrowser_inappbrowser.md.html#addEventListener">addEventListener</a>(
‘<a href="cordova_events_events.md.html#deviceready">deviceready</a>’, onDeviceReady, false);
}
function onDeviceReady() {
// do Something!
// example: display a Cordova Alert
// see docs.cordova.io for full details
navigator.<a href="cordova_notification_notification.md.html#notification.alert">notification.alert</a>(
'Cordova is ready!', // message
function() {//do something}, // callback
'Congratulations', // title
'Done' // buttonName
);
}
</script>
</head>
<body onload=”onLoad();”>
.....
</code></pre>
<h3>Code Your Application</h3>
<p>Replace the sample code in the <code>www</code> directory of a new project with the HTML, JavaScript and CSS code for your application. The name of the initial file to load when the app is launched should be <code>index.html</code> (advanced users can change this if necessary). As demonstrated in the HelloWorld sample application, subdirectories within the <code>www</code> directory are permitted. Note that the <code>www</code> directory is readonly, you can not write information to this directory during app execution. If you need to store information use the Cordova <a href="cordova_file_file.md.html#File">File</a> or <a href="cordova_storage_storage.md.html#Storage">Storage</a> APIs.</p>
<p>You can use many mobile JavaScript frameworks with Cordova to create the UI and page navigation of your application. Popular ones include:</p>
<ul>
<li>JQuery Mobile</li>
<li>Dojo Mobile</li>
<li>Sencha Touch</li>
</ul>
<h3>Modify <a href="guide_project-settings_index.md.html#Project%20Settings">Project Settings</a>
</h3>
<p>There are many additional considerations to make your application unique. The sample HelloWorld application is set up to run in all iOS environments, iPhone, iPod, and iPad. You can design an app for a single device type by modifying the build settings within Xcode.</p>
<p>You should customize the application with your own icons and splash screens. The sample application includes Cordova specific images in the Apple required sizes and resolutions as examples. The Cordova Specific settings are located in the config.xml file and documented in the Cordova <a href="guide_project-settings_index.md.html#Project%20Settings">Project Settings</a> Guide. Refer to the Resources section for more Apple specific information about building iOS Apps.</p>
<h2>
<a name="iOS%20Platform%20Guide_resources">Resources</a>
</h2>
<h3>Apple</h3>
<p>Some of these references are within the Apple iOS Developer Reference and require an iOS Developer License.</p>
<ul>
<li>
<a class="external" href="http://developer.apple.com/library/ios/#referencelibrary/GettingStarted/RoadMapiOS/index.html#//apple_ref/doc/uid/TP40011343">Start Developing iOS Apps Today</a> provides a quick overview of steps for developing iOS Apps.</li>
<li>
<a class="external" href="https://developer.apple.com/membercenter/index.action">Member Center home page</a> provides links to several iOS technical resources including technical resources, the provisioning portal, distribution guides and community forums.</li>
<li><a class="external" href="http://developer.apple.com/library/ios/#documentation/Xcode/Conceptual/ios_development_workflow/00-About_the_iOS_Application_Development_Workflow/introduction.html#//apple_ref/doc/uid/TP40007959">Tools Workflow Guide for iOS</a></li>
<li><a class="external" href="http://developer.apple.com/library/ios/#documentation/ToolsLanguages/Conceptual/Xcode4UserGuide/000-About_Xcode/about.html#//apple_ref/doc/uid/TP40010215">Xcode 4 User Guide</a></li>
<li>
<a class="external" href="https://developer.apple.com/videos/wwdc/2012/">Session Videos</a> from the Apple World Wide Developer Conference 2012 (WWDC2012)</li>
</ul>
<h3>Apache Cordova</h3>
<p>The <a class="external" href="http://cordova.apache.org/">Apache Cordova home page</a> contains all of the links below and more.</p>
<ul>
<li>Cordova API documentation is available at <a class="external" href="http://docs.cordova.io">http://docs.cordova.io</a>
</li>
<li>
<a class="external" href="https://groups.google.com/forum/?fromgroups=%23!forum/phonegap">PhoneGap google group</a> to discuss and ask questions about Cordova. This forum is monitored by Cordova developers as well as users. When posting please include the platform, device type, Cordova version and as many details as possible about the error or problem.</li>
<li>
<a href="cordova_file_file.md.html#File">File</a> Cordova bugs at <a class="external" href="https://issues.apache.org/jira/browse/CB">https://issues.apache.org/jira/browse/CB</a>
</li>
</ul>
<h3>Credits</h3>
<p>Mac®, OS X®, Apple®, Xcode®, App Store℠, iPad®, iPhone®, iPod® and Finder® are Trademarks of Apple Inc.</p>
</div>
</div>
<!-- Functionality and Syntax Highlighting -->
<script type="text/javascript" src="index.js"></script><script type="text/javascript" src="prettify/prettify.js"></script>
</body>
</html>
|
app/templates/first.html | kho0810/likelion_Web | {% extends "head.html" %}
{% block body %}
<div class="containter">
<fieldset>
<legend>Steal search engine</legend>
<form action="first" method="GET">
<input type="text" name="get" placeholder="Input keyword">
<input type="submit" name='google' value="Google">
<input type="submit" name='naver' value="Naver">
<input type="submit" name='daum' value="Daum">
</form>
</fieldset>
</div>
{% endblock %} |
docs/solr-core/org/apache/solr/handler/class-use/MoreLikeThisHandler.InterestingTerm.html | pulipulichen/ir-practice-solr | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Wed Sep 24 06:08:04 EDT 2014 -->
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<title>Uses of Class org.apache.solr.handler.MoreLikeThisHandler.InterestingTerm (Solr 4.10.1 API)</title>
<meta name="date" content="2014-09-24">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.solr.handler.MoreLikeThisHandler.InterestingTerm (Solr 4.10.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/solr/handler/MoreLikeThisHandler.InterestingTerm.html" title="class in org.apache.solr.handler">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/solr/handler/class-use/MoreLikeThisHandler.InterestingTerm.html" target="_top">Frames</a></li>
<li><a href="MoreLikeThisHandler.InterestingTerm.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class org.apache.solr.handler.MoreLikeThisHandler.InterestingTerm" class="title">Uses of Class<br>org.apache.solr.handler.MoreLikeThisHandler.InterestingTerm</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/solr/handler/MoreLikeThisHandler.InterestingTerm.html" title="class in org.apache.solr.handler">MoreLikeThisHandler.InterestingTerm</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#org.apache.solr.handler">org.apache.solr.handler</a></td>
<td class="colLast">
<div class="block">
Concrete implementations of <a href="../../../../../org/apache/solr/request/SolrRequestHandler.html" title="interface in org.apache.solr.request"><code>SolrRequestHandler</code></a></div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.apache.solr.handler">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../org/apache/solr/handler/MoreLikeThisHandler.InterestingTerm.html" title="class in org.apache.solr.handler">MoreLikeThisHandler.InterestingTerm</a> in <a href="../../../../../org/apache/solr/handler/package-summary.html">org.apache.solr.handler</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation">
<caption><span>Fields in <a href="../../../../../org/apache/solr/handler/package-summary.html">org.apache.solr.handler</a> with type parameters of type <a href="../../../../../org/apache/solr/handler/MoreLikeThisHandler.InterestingTerm.html" title="class in org.apache.solr.handler">MoreLikeThisHandler.InterestingTerm</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static <a href="http://download.oracle.com/javase/7/docs/api/java/util/Comparator.html?is-external=true" title="class or interface in java.util">Comparator</a><<a href="../../../../../org/apache/solr/handler/MoreLikeThisHandler.InterestingTerm.html" title="class in org.apache.solr.handler">MoreLikeThisHandler.InterestingTerm</a>></code></td>
<td class="colLast"><span class="strong">MoreLikeThisHandler.InterestingTerm.</span><code><strong><a href="../../../../../org/apache/solr/handler/MoreLikeThisHandler.InterestingTerm.html#BOOST_ORDER">BOOST_ORDER</a></strong></code> </td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Method parameters in <a href="../../../../../org/apache/solr/handler/package-summary.html">org.apache.solr.handler</a> with type arguments of type <a href="../../../../../org/apache/solr/handler/MoreLikeThisHandler.InterestingTerm.html" title="class in org.apache.solr.handler">MoreLikeThisHandler.InterestingTerm</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/solr/search/DocListAndSet.html" title="class in org.apache.solr.search">DocListAndSet</a></code></td>
<td class="colLast"><span class="strong">MoreLikeThisHandler.MoreLikeThisHelper.</span><code><strong><a href="../../../../../org/apache/solr/handler/MoreLikeThisHandler.MoreLikeThisHelper.html#getMoreLikeThis(int, int, int, java.util.List, java.util.List, int)">getMoreLikeThis</a></strong>(int id,
int start,
int rows,
<a href="http://download.oracle.com/javase/7/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><<a href="http://lucene.apache.org/core/4_10_1/core/org/apache/lucene/search/Query.html?is-external=true" title="class or interface in org.apache.lucene.search">Query</a>> filters,
<a href="http://download.oracle.com/javase/7/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><<a href="../../../../../org/apache/solr/handler/MoreLikeThisHandler.InterestingTerm.html" title="class in org.apache.solr.handler">MoreLikeThisHandler.InterestingTerm</a>> terms,
int flags)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/solr/search/DocListAndSet.html" title="class in org.apache.solr.search">DocListAndSet</a></code></td>
<td class="colLast"><span class="strong">MoreLikeThisHandler.MoreLikeThisHelper.</span><code><strong><a href="../../../../../org/apache/solr/handler/MoreLikeThisHandler.MoreLikeThisHelper.html#getMoreLikeThis(java.io.Reader, int, int, java.util.List, java.util.List, int)">getMoreLikeThis</a></strong>(<a href="http://download.oracle.com/javase/7/docs/api/java/io/Reader.html?is-external=true" title="class or interface in java.io">Reader</a> reader,
int start,
int rows,
<a href="http://download.oracle.com/javase/7/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><<a href="http://lucene.apache.org/core/4_10_1/core/org/apache/lucene/search/Query.html?is-external=true" title="class or interface in org.apache.lucene.search">Query</a>> filters,
<a href="http://download.oracle.com/javase/7/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><<a href="../../../../../org/apache/solr/handler/MoreLikeThisHandler.InterestingTerm.html" title="class in org.apache.solr.handler">MoreLikeThisHandler.InterestingTerm</a>> terms,
int flags)</code> </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/solr/handler/MoreLikeThisHandler.InterestingTerm.html" title="class in org.apache.solr.handler">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/solr/handler/class-use/MoreLikeThisHandler.InterestingTerm.html" target="_top">Frames</a></li>
<li><a href="MoreLikeThisHandler.InterestingTerm.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>
<i>Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.</i>
<script src='../../../../../prettify.js' type='text/javascript'></script>
<script type='text/javascript'>
(function(){
var oldonload = window.onload;
if (typeof oldonload != 'function') {
window.onload = prettyPrint;
} else {
window.onload = function() {
oldonload();
prettyPrint();
}
}
})();
</script>
</small></p>
</body>
</html>
|
generated/javadoc/com/communote/plugins/api/rest/v24/resource/timelinenote/timelinenotetag/package-summary.html | Communote/communote.github.io | <!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_162) on Sat Feb 02 18:57:41 CET 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>com.communote.plugins.api.rest.v24.resource.timelinenote.timelinenotetag (Communote 3.5 API)</title>
<meta name="date" content="2019-02-02">
<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="com.communote.plugins.api.rest.v24.resource.timelinenote.timelinenotetag (Communote 3.5 API)";
}
}
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 class="navBarCell1Rev">Package</li>
<li>Class</li>
<li><a href="package-use.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-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="../../../../../../../../../com/communote/plugins/api/rest/v24/resource/timelinenote/timelinenotediscussion/package-summary.html">Prev Package</a></li>
<li><a href="../../../../../../../../../com/communote/plugins/api/rest/v24/resource/timelinetag/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../../../index.html?com/communote/plugins/api/rest/v24/resource/timelinenote/timelinenotetag/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 com.communote.plugins.api.rest.v24.resource.timelinenote.timelinenotetag</h1>
</div>
<div class="contentContainer">
<ul class="blockList">
<li class="blockList">
<table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation">
<caption><span>Class Summary</span><span class="tabEnd"> </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="../../../../../../../../../com/communote/plugins/api/rest/v24/resource/timelinenote/timelinenotetag/GetCollectionTimelineNoteTagParameter.html" title="class in com.communote.plugins.api.rest.v24.resource.timelinenote.timelinenotetag">GetCollectionTimelineNoteTagParameter</a></td>
<td class="colLast">
<div class="block">This class it the parameter class for the TimelineNoteTag resource.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../../../../../../com/communote/plugins/api/rest/v24/resource/timelinenote/timelinenotetag/GetTimelineNoteTagParameter.html" title="class in com.communote.plugins.api.rest.v24.resource.timelinenote.timelinenotetag">GetTimelineNoteTagParameter</a></td>
<td class="colLast">
<div class="block">This class it the parameter class for the TimelineNoteTag resource.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../../../../../../../com/communote/plugins/api/rest/v24/resource/timelinenote/timelinenotetag/TimelineNoteTagResource.html" title="class in com.communote.plugins.api.rest.v24.resource.timelinenote.timelinenotetag">TimelineNoteTagResource</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</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 class="navBarCell1Rev">Package</li>
<li>Class</li>
<li><a href="package-use.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-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="../../../../../../../../../com/communote/plugins/api/rest/v24/resource/timelinenote/timelinenotediscussion/package-summary.html">Prev Package</a></li>
<li><a href="../../../../../../../../../com/communote/plugins/api/rest/v24/resource/timelinetag/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../../../index.html?com/communote/plugins/api/rest/v24/resource/timelinenote/timelinenotetag/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 ======= -->
<p class="legalCopy"><small>Copyright © 2019 <a href="https://communote.github.io/">Communote team</a>. All rights reserved.</small></p>
</body>
</html>
|
docs/org/apache/jsp/tag/web/checkbox_005fdwr_tag.html | chrisekelley/zeprs | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.5.0_01) on Tue Jan 03 22:20:11 CAT 2006 -->
<TITLE>
checkbox_005fdwr_tag
</TITLE>
<META NAME="keywords" CONTENT="org.apache.jsp.tag.web.checkbox_005fdwr_tag class">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="checkbox_005fdwr_tag";
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/checkbox_005fdwr_tag.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../org/apache/jsp/tag/web/apgar_tag.html" title="class in org.apache.jsp.tag.web"><B>PREV CLASS</B></A>
<A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fonly_tag.html" title="class in org.apache.jsp.tag.web"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/jsp/tag/web/checkbox_005fdwr_tag.html" target="_top"><B>FRAMES</B></A>
<A HREF="checkbox_005fdwr_tag.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <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.jsp.tag.web</FONT>
<BR>
Class checkbox_005fdwr_tag</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../../../resources/inherit.gif" ALT="extended by ">javax.servlet.jsp.tagext.SimpleTagSupport
<IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><B>org.apache.jsp.tag.web.checkbox_005fdwr_tag</B>
</PRE>
<DL>
<DT><B>All Implemented Interfaces:</B> <DD>javax.servlet.jsp.tagext.JspTag, javax.servlet.jsp.tagext.SimpleTag, org.apache.jasper.runtime.JspSourceDependent</DD>
</DL>
<HR>
<DL>
<DT><PRE>public final class <B>checkbox_005fdwr_tag</B><DT>extends javax.servlet.jsp.tagext.SimpleTagSupport<DT>implements org.apache.jasper.runtime.JspSourceDependent</DL>
</PRE>
<P>
<HR>
<P>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#checkbox_005fdwr_tag()">checkbox_005fdwr_tag</A></B>()</CODE>
<BR>
</TD>
</TR>
</TABLE>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Method Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#_jspDestroy()">_jspDestroy</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#doTag()">doTag</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#getClassname()">getClassname</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.util.List</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#getDependants()">getDependants</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.Integer</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#getFormId()">getFormId</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> javax.servlet.jsp.JspContext</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#getJspContext()">getJspContext</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../org/cidrz/webapp/dynasite/valueobject/PageItem.html" title="class in org.cidrz.webapp.dynasite.valueobject">PageItem</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#getPageItem()">getPageItem</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.Integer</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#getPatientId()">getPatientId</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.Integer</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#getPos()">getPos</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.Integer</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#getPregnancyId()">getPregnancyId</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#getPropertyName()">getPropertyName</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#getRemoteClass()">getRemoteClass</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.Integer</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#getSiteId()">getSiteId</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#getUser()">getUser</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#getValue()">getValue</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#setClassname(java.lang.String)">setClassname</A></B>(java.lang.String classname)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#setFormId(java.lang.Integer)">setFormId</A></B>(java.lang.Integer formId)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#setJspContext(javax.servlet.jsp.JspContext)">setJspContext</A></B>(javax.servlet.jsp.JspContext ctx)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#setPageItem(org.cidrz.webapp.dynasite.valueobject.PageItem)">setPageItem</A></B>(<A HREF="../../../../../org/cidrz/webapp/dynasite/valueobject/PageItem.html" title="class in org.cidrz.webapp.dynasite.valueobject">PageItem</A> pageItem)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#setPatientId(java.lang.Integer)">setPatientId</A></B>(java.lang.Integer patientId)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#setPos(java.lang.Integer)">setPos</A></B>(java.lang.Integer pos)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#setPregnancyId(java.lang.Integer)">setPregnancyId</A></B>(java.lang.Integer pregnancyId)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#setPropertyName(java.lang.String)">setPropertyName</A></B>(java.lang.String propertyName)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#setRemoteClass(java.lang.String)">setRemoteClass</A></B>(java.lang.String remoteClass)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#setSiteId(java.lang.Integer)">setSiteId</A></B>(java.lang.Integer siteId)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#setUser(java.lang.String)">setUser</A></B>(java.lang.String user)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fdwr_tag.html#setValue(java.lang.String)">setValue</A></B>(java.lang.String value)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_javax.servlet.jsp.tagext.SimpleTagSupport"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class javax.servlet.jsp.tagext.SimpleTagSupport</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>findAncestorWithClass, getJspBody, getParent, setJspBody, setParent</CODE></TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="checkbox_005fdwr_tag()"><!-- --></A><H3>
checkbox_005fdwr_tag</H3>
<PRE>
public <B>checkbox_005fdwr_tag</B>()</PRE>
<DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="setJspContext(javax.servlet.jsp.JspContext)"><!-- --></A><H3>
setJspContext</H3>
<PRE>
public void <B>setJspContext</B>(javax.servlet.jsp.JspContext ctx)</PRE>
<DL>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE>setJspContext</CODE> in interface <CODE>javax.servlet.jsp.tagext.SimpleTag</CODE><DT><B>Overrides:</B><DD><CODE>setJspContext</CODE> in class <CODE>javax.servlet.jsp.tagext.SimpleTagSupport</CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getJspContext()"><!-- --></A><H3>
getJspContext</H3>
<PRE>
public javax.servlet.jsp.JspContext <B>getJspContext</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Overrides:</B><DD><CODE>getJspContext</CODE> in class <CODE>javax.servlet.jsp.tagext.SimpleTagSupport</CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getPageItem()"><!-- --></A><H3>
getPageItem</H3>
<PRE>
public <A HREF="../../../../../org/cidrz/webapp/dynasite/valueobject/PageItem.html" title="class in org.cidrz.webapp.dynasite.valueobject">PageItem</A> <B>getPageItem</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="setPageItem(org.cidrz.webapp.dynasite.valueobject.PageItem)"><!-- --></A><H3>
setPageItem</H3>
<PRE>
public void <B>setPageItem</B>(<A HREF="../../../../../org/cidrz/webapp/dynasite/valueobject/PageItem.html" title="class in org.cidrz.webapp.dynasite.valueobject">PageItem</A> pageItem)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getPos()"><!-- --></A><H3>
getPos</H3>
<PRE>
public java.lang.Integer <B>getPos</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="setPos(java.lang.Integer)"><!-- --></A><H3>
setPos</H3>
<PRE>
public void <B>setPos</B>(java.lang.Integer pos)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getRemoteClass()"><!-- --></A><H3>
getRemoteClass</H3>
<PRE>
public java.lang.String <B>getRemoteClass</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="setRemoteClass(java.lang.String)"><!-- --></A><H3>
setRemoteClass</H3>
<PRE>
public void <B>setRemoteClass</B>(java.lang.String remoteClass)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getClassname()"><!-- --></A><H3>
getClassname</H3>
<PRE>
public java.lang.String <B>getClassname</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="setClassname(java.lang.String)"><!-- --></A><H3>
setClassname</H3>
<PRE>
public void <B>setClassname</B>(java.lang.String classname)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getPropertyName()"><!-- --></A><H3>
getPropertyName</H3>
<PRE>
public java.lang.String <B>getPropertyName</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="setPropertyName(java.lang.String)"><!-- --></A><H3>
setPropertyName</H3>
<PRE>
public void <B>setPropertyName</B>(java.lang.String propertyName)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getPatientId()"><!-- --></A><H3>
getPatientId</H3>
<PRE>
public java.lang.Integer <B>getPatientId</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="setPatientId(java.lang.Integer)"><!-- --></A><H3>
setPatientId</H3>
<PRE>
public void <B>setPatientId</B>(java.lang.Integer patientId)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getPregnancyId()"><!-- --></A><H3>
getPregnancyId</H3>
<PRE>
public java.lang.Integer <B>getPregnancyId</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="setPregnancyId(java.lang.Integer)"><!-- --></A><H3>
setPregnancyId</H3>
<PRE>
public void <B>setPregnancyId</B>(java.lang.Integer pregnancyId)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getUser()"><!-- --></A><H3>
getUser</H3>
<PRE>
public java.lang.String <B>getUser</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="setUser(java.lang.String)"><!-- --></A><H3>
setUser</H3>
<PRE>
public void <B>setUser</B>(java.lang.String user)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getSiteId()"><!-- --></A><H3>
getSiteId</H3>
<PRE>
public java.lang.Integer <B>getSiteId</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="setSiteId(java.lang.Integer)"><!-- --></A><H3>
setSiteId</H3>
<PRE>
public void <B>setSiteId</B>(java.lang.Integer siteId)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getValue()"><!-- --></A><H3>
getValue</H3>
<PRE>
public java.lang.String <B>getValue</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="setValue(java.lang.String)"><!-- --></A><H3>
setValue</H3>
<PRE>
public void <B>setValue</B>(java.lang.String value)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getFormId()"><!-- --></A><H3>
getFormId</H3>
<PRE>
public java.lang.Integer <B>getFormId</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="setFormId(java.lang.Integer)"><!-- --></A><H3>
setFormId</H3>
<PRE>
public void <B>setFormId</B>(java.lang.Integer formId)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getDependants()"><!-- --></A><H3>
getDependants</H3>
<PRE>
public java.util.List <B>getDependants</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE>getDependants</CODE> in interface <CODE>org.apache.jasper.runtime.JspSourceDependent</CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="_jspDestroy()"><!-- --></A><H3>
_jspDestroy</H3>
<PRE>
public void <B>_jspDestroy</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="doTag()"><!-- --></A><H3>
doTag</H3>
<PRE>
public void <B>doTag</B>()
throws javax.servlet.jsp.JspException,
java.io.IOException</PRE>
<DL>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE>doTag</CODE> in interface <CODE>javax.servlet.jsp.tagext.SimpleTag</CODE><DT><B>Overrides:</B><DD><CODE>doTag</CODE> in class <CODE>javax.servlet.jsp.tagext.SimpleTagSupport</CODE></DL>
</DD>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>javax.servlet.jsp.JspException</CODE>
<DD><CODE>java.io.IOException</CODE></DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/checkbox_005fdwr_tag.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../org/apache/jsp/tag/web/apgar_tag.html" title="class in org.apache.jsp.tag.web"><B>PREV CLASS</B></A>
<A HREF="../../../../../org/apache/jsp/tag/web/checkbox_005fonly_tag.html" title="class in org.apache.jsp.tag.web"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/jsp/tag/web/checkbox_005fdwr_tag.html" target="_top"><B>FRAMES</B></A>
<A HREF="checkbox_005fdwr_tag.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
|
public/stylesheets/_layouts/login.css | projectfedena/project_fedena |
body {
font-family:sans-serif;
}
#top_logo {
margin:0 auto;
height:143px; width:156px;
background:#fff url(../../images/login/fedena_logo.jpg) no-repeat;
}
#top_logo h1 {
text-indent:-9999px;
}
#help_top {
margin:0px auto;
width:614px;height:1.5em;
}
#help_top #help_link {float:right;}
#help_top #help_link a {color:#b00;padding-right:10px;}
#login_area_bg {background:#fff url(../../images/login/form_bg.jpg) repeat-x;height:362px;}
#login_area {height:362px;width:614px;background:#fff url(../../images/login/login_box.jpg) no-repeat;margin:0px auto;}
#login_area label {display:block;width:200px;margin-left:50px;padding-top:30px;font-weight:bold;color:#888;padding-bottom:5px;font-size:110%;}
#username_textbox_bg, #password_textbox_bg {width:507px;height:58px;margin:0px auto;background:#fff url(../../images/login/text_box.jpg) no-repeat;}
#username_textbox_bg input, #password_textbox_bg input {width:490px;height:54px;margin:2px 0 0 5px;float:left;border:none;background:transparent;font-size:40px;color:#666;}
#submit_area input {background:#fff url(../../images/login/login_button.jpg) no-repeat;width:85px;height:38px;float:right;margin-right:58px;margin-top:55px;}
#resetpw_area input {width:85px;height:38px;float:right;margin-right:58px;margin-top:55px;}
#checkbox_area {width:300px;float:left;}
#checkbox_area label {margin:0;display:inline;padding-left:5px;}
#checkbox_area input {margin:25px 5px 0 50px;padding:0;}
#notice {
padding:0;
width:350px;
float:right;
margin-top:20px;
margin-right:60px;
padding:2px;
border:1px solid #999;
background-color:#fff1ab;
text-align:center;
}
#help_forgot_pw {margin:50px auto;text-align:center;width:614px;}
#help_forgot_pw a {text-decoration:none;font-weight:bold;color:#b00;}
#footer{height:33px;background:#b00 url(../../images/login/footer_bg.jpg) repeat;}
#footer #footer_links {height:33px;width:614px;margin:0px auto;text-align:center;padding-top:5px;color:#fff;padding-left:114px;}
#footer #footer_links a,span {color:#fff;width:100px;float:left;text-decoration:none;}
#username_texbox_bg input{border:none;margin:0px; padding:0px;text-align:center;}
input[type="text"], input[type="password"], textarea, select {outline: none;}
|
html/Loot.html | eBOURHIS/JDR-The-Witcher | <!DOCTYPE html>
<html lang="fr-FR">
<!--
roulette.html
Copyright 2017 music <music@HYBRIDE>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA.
-->
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="../css/style.css" type="text/css">
<title>Butin</title>
<script src='../js/def.js'></script>
<script src='../js/roulette.js'></script>
<script src='../js/stuff.js'></script>
<style>
.commun {
color: #4d4d4d;
/*Gris*/
}
.peuCommun {
color: #008000;
/*vert*/
}
.rare {
color: #0000cc;
/*Bleu*/
}
.epique {
color: #cc8500;
/*Orange*/
}
.legendaire {
color: #b30000;
/*Rouge*/
}
.mythique {
color: #800080;
/*Violet*/
}
</style>
</head>
<body>
<a href="infos.html">
<button id='inv' class="btn">Infos</button>
</a>
<br />
<br />
<button id='lot' class="btn">Loterie</button>
<br />
<br />
<button id='play' class="btn">Loot</button>
<div class="infoButton">
<p id='count'>0</p>
<h1 id='butin' class='butin'></h1>
</div>
<table id='inventaire' class="table-fill">
<tr>
<div class="table-title">
<th colspan='5'>BUTIN</th>
</div>
</tr>
<tr>
<th>Nom</th>
<th>Quantité</th>
<th>Description</th>
<th>Effet</th>
<th>Classe</th>
</tr>
</table>
</body>
</html> |
target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_06_testAbaNumberCheck_12249_good_6s2.html | dcarda/aba.route.validator | <!DOCTYPE html>
<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"/>
<link rel="SHORTCUT ICON" href="../../../../../img/clover.ico" />
<link rel="stylesheet" href="../../../../../aui/css/aui.min.css" media="all"/>
<link rel="stylesheet" href="../../../../../aui/css/aui-experimental.min.css" media="all"/>
<!--[if IE 9]><link rel="stylesheet" href="../../../../../aui/css/aui-ie9.min.css" media="all"/><![endif]-->
<style type="text/css" media="all">
@import url('../../../../../style.css');
@import url('../../../../../tree.css');
</style>
<script src="../../../../../jquery-1.8.3.min.js" type="text/javascript"></script>
<script src="../../../../../aui/js/aui.min.js" type="text/javascript"></script>
<script src="../../../../../aui/js/aui-experimental.min.js" type="text/javascript"></script>
<script src="../../../../../aui/js/aui-soy.min.js" type="text/javascript"></script>
<script src="../../../../../package-nodes-tree.js" type="text/javascript"></script>
<script src="../../../../../clover-tree.js" type="text/javascript"></script>
<script src="../../../../../clover.js" type="text/javascript"></script>
<script src="../../../../../clover-descriptions.js" type="text/javascript"></script>
<script src="../../../../../cloud.js" type="text/javascript"></script>
<title>ABA Route Transit Number Validator 1.0.1-SNAPSHOT</title>
</head>
<body>
<div id="page">
<header id="header" role="banner">
<nav class="aui-header aui-dropdown2-trigger-group" role="navigation">
<div class="aui-header-inner">
<div class="aui-header-primary">
<h1 id="logo" class="aui-header-logo aui-header-logo-clover">
<a href="http://openclover.org" title="Visit OpenClover home page"><span class="aui-header-logo-device">OpenClover</span></a>
</h1>
</div>
<div class="aui-header-secondary">
<ul class="aui-nav">
<li id="system-help-menu">
<a class="aui-nav-link" title="Open online documentation" target="_blank"
href="http://openclover.org/documentation">
<span class="aui-icon aui-icon-small aui-iconfont-help"> Help</span>
</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<div class="aui-page-panel">
<div class="aui-page-panel-inner">
<div class="aui-page-panel-nav aui-page-panel-nav-clover">
<div class="aui-page-header-inner" style="margin-bottom: 20px;">
<div class="aui-page-header-image">
<a href="http://cardatechnologies.com" target="_top">
<div class="aui-avatar aui-avatar-large aui-avatar-project">
<div class="aui-avatar-inner">
<img src="../../../../../img/clover_logo_large.png" alt="Clover icon"/>
</div>
</div>
</a>
</div>
<div class="aui-page-header-main" >
<h1>
<a href="http://cardatechnologies.com" target="_top">
ABA Route Transit Number Validator 1.0.1-SNAPSHOT
</a>
</h1>
</div>
</div>
<nav class="aui-navgroup aui-navgroup-vertical">
<div class="aui-navgroup-inner">
<ul class="aui-nav">
<li class="">
<a href="../../../../../dashboard.html">Project overview</a>
</li>
</ul>
<div class="aui-nav-heading packages-nav-heading">
<strong>Packages</strong>
</div>
<div class="aui-nav project-packages">
<form method="get" action="#" class="aui package-filter-container">
<input type="text" autocomplete="off" class="package-filter text"
placeholder="Type to filter packages..." name="package-filter" id="package-filter"
title="Start typing package name (or part of the name) to search through the tree. Use arrow keys and the Enter key to navigate."/>
</form>
<p class="package-filter-no-results-message hidden">
<small>No results found.</small>
</p>
<div class="packages-tree-wrapper" data-root-relative="../../../../../" data-package-name="com.cardatechnologies.utils.validators.abaroutevalidator">
<div class="packages-tree-container"></div>
<div class="clover-packages-lozenges"></div>
</div>
</div>
</div>
</nav> </div>
<section class="aui-page-panel-content">
<div class="aui-page-panel-content-clover">
<div class="aui-page-header-main"><ol class="aui-nav aui-nav-breadcrumbs">
<li><a href="../../../../../dashboard.html"> Project Clover database Sat Aug 7 2021 12:29:33 MDT</a></li>
<li><a href="test-pkg-summary.html">Package com.cardatechnologies.utils.validators.abaroutevalidator</a></li>
<li><a href="test-Test_AbaRouteValidator_06.html">Class Test_AbaRouteValidator_06</a></li>
</ol></div>
<h1 class="aui-h2-clover">
Test testAbaNumberCheck_12249_good
</h1>
<table class="aui">
<thead>
<tr>
<th>Test</th>
<th><label title="The test result. Either a Pass, Fail or Error.">Status</label></th>
<th><label title="When the test execution was started">Start time</label></th>
<th><label title="The total time in seconds taken to run this test.">Time (seconds)</label></th>
<th><label title="A failure or error message if the test is not successful.">Message</label></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_06.html?line=54040#src-54040" >testAbaNumberCheck_12249_good</a>
</td>
<td>
<span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span>
</td>
<td>
7 Aug 12:35:36
</td>
<td>
0.0 </td>
<td>
<div></div>
<div class="errorMessage"></div>
</td>
</tr>
</tbody>
</table>
<div> </div>
<table class="aui aui-table-sortable">
<thead>
<tr>
<th style="white-space:nowrap;"><label title="A class that was directly hit by this test.">Target Class</label></th>
<th colspan="4"><label title="The percentage of coverage contributed by each single test.">Coverage contributed by</label> testAbaNumberCheck_12249_good</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=8786#AbaRouteValidator" title="AbaRouteValidator" name="sl-47">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</a>
</td>
<td>
<span class="sortValue">0.7352941</span>73.5%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="73.5% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:73.5%"></div></div></div> </td>
</tr>
</tbody>
</table>
</div> <!-- class="aui-page-panel-content-clover" -->
<footer id="footer" role="contentinfo">
<section class="footer-body">
<ul>
<li>
Report generated by <a target="_new" href="http://openclover.org">OpenClover</a> v 4.4.1
on Sat Aug 7 2021 12:49:26 MDT using coverage data from Sat Aug 7 2021 12:47:23 MDT.
</li>
</ul>
<ul>
<li>OpenClover is free and open-source software. </li>
</ul>
</section>
</footer> </section> <!-- class="aui-page-panel-content" -->
</div> <!-- class="aui-page-panel-inner" -->
</div> <!-- class="aui-page-panel" -->
</div> <!-- id="page" -->
</body>
</html> |
css/bootstrap.css | harararai/harararai.github.io | /*!
* Bootstrap v3.3.6 (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
font-family: sans-serif;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
body {
margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
display: block;
}
audio,
canvas,
progress,
video {
display: inline-block;
vertical-align: baseline;
}
audio:not([controls]) {
display: none;
height: 0;
}
[hidden],
template {
display: none;
}
a {
background-color: transparent;
}
a:active,
a:hover {
outline: 0;
}
abbr[title] {
border-bottom: 1px dotted;
}
b,
strong {
font-weight: bold;
}
dfn {
font-style: italic;
}
h1 {
margin: .67em 0;
font-size: 2em;
}
mark {
color: #000;
background: #ff0;
}
small {
font-size: 80%;
}
sub,
sup {
position: relative;
font-size: 75%;
line-height: 0;
vertical-align: baseline;
}
sup {
top: -.5em;
}
sub {
bottom: -.25em;
}
img {
border: 0;
}
svg:not(:root) {
overflow: hidden;
}
figure {
margin: 1em 40px;
}
hr {
height: 0;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
pre {
overflow: auto;
}
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
margin: 0;
font: inherit;
color: inherit;
}
button {
overflow: visible;
}
button,
select {
text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
cursor: pointer;
}
button[disabled],
html input[disabled] {
cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
padding: 0;
border: 0;
}
input {
line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height: auto;
}
input[type="search"] {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
-webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
fieldset {
padding: .35em .625em .75em;
margin: 0 2px;
border: 1px solid #c0c0c0;
}
legend {
padding: 0;
border: 0;
}
textarea {
overflow: auto;
}
optgroup {
font-weight: bold;
}
table {
border-spacing: 0;
border-collapse: collapse;
}
td,
th {
padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
*,
*:before,
*:after {
color: #000 !important;
text-shadow: none !important;
background: transparent !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
}
a,
a:visited {
text-decoration: underline;
}
a[href]:after {
content: " (" attr(href) ")";
}
abbr[title]:after {
content: " (" attr(title) ")";
}
a[href^="#"]:after,
a[href^="javascript:"]:after {
content: "";
}
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
thead {
display: table-header-group;
}
tr,
img {
page-break-inside: avoid;
}
img {
max-width: 100% !important;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3 {
page-break-after: avoid;
}
.navbar {
display: none;
}
.btn > .caret,
.dropup > .btn > .caret {
border-top-color: #000 !important;
}
.label {
border: 1px solid #000;
}
.table {
border-collapse: collapse !important;
}
.table td,
.table th {
background-color: #fff !important;
}
.table-bordered th,
.table-bordered td {
border: 1px solid #ddd !important;
}
}
@font-face {
font-family: 'Glyphicons Halflings';
src: url('../fonts/glyphicons-halflings-regular.eot');
src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
.glyphicon {
position: relative;
top: 1px;
display: inline-block;
font-family: 'Glyphicons Halflings';
font-style: normal;
font-weight: normal;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
content: "\002a";
}
.glyphicon-plus:before {
content: "\002b";
}
.glyphicon-euro:before,
.glyphicon-eur:before {
content: "\20ac";
}
.glyphicon-minus:before {
content: "\2212";
}
.glyphicon-cloud:before {
content: "\2601";
}
.glyphicon-envelope:before {
content: "\2709";
}
.glyphicon-pencil:before {
content: "\270f";
}
.glyphicon-glass:before {
content: "\e001";
}
.glyphicon-music:before {
content: "\e002";
}
.glyphicon-search:before {
content: "\e003";
}
.glyphicon-heart:before {
content: "\e005";
}
.glyphicon-star:before {
content: "\e006";
}
.glyphicon-star-empty:before {
content: "\e007";
}
.glyphicon-user:before {
content: "\e008";
}
.glyphicon-film:before {
content: "\e009";
}
.glyphicon-th-large:before {
content: "\e010";
}
.glyphicon-th:before {
content: "\e011";
}
.glyphicon-th-list:before {
content: "\e012";
}
.glyphicon-ok:before {
content: "\e013";
}
.glyphicon-remove:before {
content: "\e014";
}
.glyphicon-zoom-in:before {
content: "\e015";
}
.glyphicon-zoom-out:before {
content: "\e016";
}
.glyphicon-off:before {
content: "\e017";
}
.glyphicon-signal:before {
content: "\e018";
}
.glyphicon-cog:before {
content: "\e019";
}
.glyphicon-trash:before {
content: "\e020";
}
.glyphicon-home:before {
content: "\e021";
}
.glyphicon-file:before {
content: "\e022";
}
.glyphicon-time:before {
content: "\e023";
}
.glyphicon-road:before {
content: "\e024";
}
.glyphicon-download-alt:before {
content: "\e025";
}
.glyphicon-download:before {
content: "\e026";
}
.glyphicon-upload:before {
content: "\e027";
}
.glyphicon-inbox:before {
content: "\e028";
}
.glyphicon-play-circle:before {
content: "\e029";
}
.glyphicon-repeat:before {
content: "\e030";
}
.glyphicon-refresh:before {
content: "\e031";
}
.glyphicon-list-alt:before {
content: "\e032";
}
.glyphicon-lock:before {
content: "\e033";
}
.glyphicon-flag:before {
content: "\e034";
}
.glyphicon-headphones:before {
content: "\e035";
}
.glyphicon-volume-off:before {
content: "\e036";
}
.glyphicon-volume-down:before {
content: "\e037";
}
.glyphicon-volume-up:before {
content: "\e038";
}
.glyphicon-qrcode:before {
content: "\e039";
}
.glyphicon-barcode:before {
content: "\e040";
}
.glyphicon-tag:before {
content: "\e041";
}
.glyphicon-tags:before {
content: "\e042";
}
.glyphicon-book:before {
content: "\e043";
}
.glyphicon-bookmark:before {
content: "\e044";
}
.glyphicon-print:before {
content: "\e045";
}
.glyphicon-camera:before {
content: "\e046";
}
.glyphicon-font:before {
content: "\e047";
}
.glyphicon-bold:before {
content: "\e048";
}
.glyphicon-italic:before {
content: "\e049";
}
.glyphicon-text-height:before {
content: "\e050";
}
.glyphicon-text-width:before {
content: "\e051";
}
.glyphicon-align-left:before {
content: "\e052";
}
.glyphicon-align-center:before {
content: "\e053";
}
.glyphicon-align-right:before {
content: "\e054";
}
.glyphicon-align-justify:before {
content: "\e055";
}
.glyphicon-list:before {
content: "\e056";
}
.glyphicon-indent-left:before {
content: "\e057";
}
.glyphicon-indent-right:before {
content: "\e058";
}
.glyphicon-facetime-video:before {
content: "\e059";
}
.glyphicon-picture:before {
content: "\e060";
}
.glyphicon-map-marker:before {
content: "\e062";
}
.glyphicon-adjust:before {
content: "\e063";
}
.glyphicon-tint:before {
content: "\e064";
}
.glyphicon-edit:before {
content: "\e065";
}
.glyphicon-share:before {
content: "\e066";
}
.glyphicon-check:before {
content: "\e067";
}
.glyphicon-move:before {
content: "\e068";
}
.glyphicon-step-backward:before {
content: "\e069";
}
.glyphicon-fast-backward:before {
content: "\e070";
}
.glyphicon-backward:before {
content: "\e071";
}
.glyphicon-play:before {
content: "\e072";
}
.glyphicon-pause:before {
content: "\e073";
}
.glyphicon-stop:before {
content: "\e074";
}
.glyphicon-forward:before {
content: "\e075";
}
.glyphicon-fast-forward:before {
content: "\e076";
}
.glyphicon-step-forward:before {
content: "\e077";
}
.glyphicon-eject:before {
content: "\e078";
}
.glyphicon-chevron-left:before {
content: "\e079";
}
.glyphicon-chevron-right:before {
content: "\e080";
}
.glyphicon-plus-sign:before {
content: "\e081";
}
.glyphicon-minus-sign:before {
content: "\e082";
}
.glyphicon-remove-sign:before {
content: "\e083";
}
.glyphicon-ok-sign:before {
content: "\e084";
}
.glyphicon-question-sign:before {
content: "\e085";
}
.glyphicon-info-sign:before {
content: "\e086";
}
.glyphicon-screenshot:before {
content: "\e087";
}
.glyphicon-remove-circle:before {
content: "\e088";
}
.glyphicon-ok-circle:before {
content: "\e089";
}
.glyphicon-ban-circle:before {
content: "\e090";
}
.glyphicon-arrow-left:before {
content: "\e091";
}
.glyphicon-arrow-right:before {
content: "\e092";
}
.glyphicon-arrow-up:before {
content: "\e093";
}
.glyphicon-arrow-down:before {
content: "\e094";
}
.glyphicon-share-alt:before {
content: "\e095";
}
.glyphicon-resize-full:before {
content: "\e096";
}
.glyphicon-resize-small:before {
content: "\e097";
}
.glyphicon-exclamation-sign:before {
content: "\e101";
}
.glyphicon-gift:before {
content: "\e102";
}
.glyphicon-leaf:before {
content: "\e103";
}
.glyphicon-fire:before {
content: "\e104";
}
.glyphicon-eye-open:before {
content: "\e105";
}
.glyphicon-eye-close:before {
content: "\e106";
}
.glyphicon-warning-sign:before {
content: "\e107";
}
.glyphicon-plane:before {
content: "\e108";
}
.glyphicon-calendar:before {
content: "\e109";
}
.glyphicon-random:before {
content: "\e110";
}
.glyphicon-comment:before {
content: "\e111";
}
.glyphicon-magnet:before {
content: "\e112";
}
.glyphicon-chevron-up:before {
content: "\e113";
}
.glyphicon-chevron-down:before {
content: "\e114";
}
.glyphicon-retweet:before {
content: "\e115";
}
.glyphicon-shopping-cart:before {
content: "\e116";
}
.glyphicon-folder-close:before {
content: "\e117";
}
.glyphicon-folder-open:before {
content: "\e118";
}
.glyphicon-resize-vertical:before {
content: "\e119";
}
.glyphicon-resize-horizontal:before {
content: "\e120";
}
.glyphicon-hdd:before {
content: "\e121";
}
.glyphicon-bullhorn:before {
content: "\e122";
}
.glyphicon-bell:before {
content: "\e123";
}
.glyphicon-certificate:before {
content: "\e124";
}
.glyphicon-thumbs-up:before {
content: "\e125";
}
.glyphicon-thumbs-down:before {
content: "\e126";
}
.glyphicon-hand-right:before {
content: "\e127";
}
.glyphicon-hand-left:before {
content: "\e128";
}
.glyphicon-hand-up:before {
content: "\e129";
}
.glyphicon-hand-down:before {
content: "\e130";
}
.glyphicon-circle-arrow-right:before {
content: "\e131";
}
.glyphicon-circle-arrow-left:before {
content: "\e132";
}
.glyphicon-circle-arrow-up:before {
content: "\e133";
}
.glyphicon-circle-arrow-down:before {
content: "\e134";
}
.glyphicon-globe:before {
content: "\e135";
}
.glyphicon-wrench:before {
content: "\e136";
}
.glyphicon-tasks:before {
content: "\e137";
}
.glyphicon-filter:before {
content: "\e138";
}
.glyphicon-briefcase:before {
content: "\e139";
}
.glyphicon-fullscreen:before {
content: "\e140";
}
.glyphicon-dashboard:before {
content: "\e141";
}
.glyphicon-paperclip:before {
content: "\e142";
}
.glyphicon-heart-empty:before {
content: "\e143";
}
.glyphicon-link:before {
content: "\e144";
}
.glyphicon-phone:before {
content: "\e145";
}
.glyphicon-pushpin:before {
content: "\e146";
}
.glyphicon-usd:before {
content: "\e148";
}
.glyphicon-gbp:before {
content: "\e149";
}
.glyphicon-sort:before {
content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
content: "\e152";
}
.glyphicon-sort-by-order:before {
content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
content: "\e154";
}
.glyphicon-sort-by-attributes:before {
content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
content: "\e156";
}
.glyphicon-unchecked:before {
content: "\e157";
}
.glyphicon-expand:before {
content: "\e158";
}
.glyphicon-collapse-down:before {
content: "\e159";
}
.glyphicon-collapse-up:before {
content: "\e160";
}
.glyphicon-log-in:before {
content: "\e161";
}
.glyphicon-flash:before {
content: "\e162";
}
.glyphicon-log-out:before {
content: "\e163";
}
.glyphicon-new-window:before {
content: "\e164";
}
.glyphicon-record:before {
content: "\e165";
}
.glyphicon-save:before {
content: "\e166";
}
.glyphicon-open:before {
content: "\e167";
}
.glyphicon-saved:before {
content: "\e168";
}
.glyphicon-import:before {
content: "\e169";
}
.glyphicon-export:before {
content: "\e170";
}
.glyphicon-send:before {
content: "\e171";
}
.glyphicon-floppy-disk:before {
content: "\e172";
}
.glyphicon-floppy-saved:before {
content: "\e173";
}
.glyphicon-floppy-remove:before {
content: "\e174";
}
.glyphicon-floppy-save:before {
content: "\e175";
}
.glyphicon-floppy-open:before {
content: "\e176";
}
.glyphicon-credit-card:before {
content: "\e177";
}
.glyphicon-transfer:before {
content: "\e178";
}
.glyphicon-cutlery:before {
content: "\e179";
}
.glyphicon-header:before {
content: "\e180";
}
.glyphicon-compressed:before {
content: "\e181";
}
.glyphicon-earphone:before {
content: "\e182";
}
.glyphicon-phone-alt:before {
content: "\e183";
}
.glyphicon-tower:before {
content: "\e184";
}
.glyphicon-stats:before {
content: "\e185";
}
.glyphicon-sd-video:before {
content: "\e186";
}
.glyphicon-hd-video:before {
content: "\e187";
}
.glyphicon-subtitles:before {
content: "\e188";
}
.glyphicon-sound-stereo:before {
content: "\e189";
}
.glyphicon-sound-dolby:before {
content: "\e190";
}
.glyphicon-sound-5-1:before {
content: "\e191";
}
.glyphicon-sound-6-1:before {
content: "\e192";
}
.glyphicon-sound-7-1:before {
content: "\e193";
}
.glyphicon-copyright-mark:before {
content: "\e194";
}
.glyphicon-registration-mark:before {
content: "\e195";
}
.glyphicon-cloud-download:before {
content: "\e197";
}
.glyphicon-cloud-upload:before {
content: "\e198";
}
.glyphicon-tree-conifer:before {
content: "\e199";
}
.glyphicon-tree-deciduous:before {
content: "\e200";
}
.glyphicon-cd:before {
content: "\e201";
}
.glyphicon-save-file:before {
content: "\e202";
}
.glyphicon-open-file:before {
content: "\e203";
}
.glyphicon-level-up:before {
content: "\e204";
}
.glyphicon-copy:before {
content: "\e205";
}
.glyphicon-paste:before {
content: "\e206";
}
.glyphicon-alert:before {
content: "\e209";
}
.glyphicon-equalizer:before {
content: "\e210";
}
.glyphicon-king:before {
content: "\e211";
}
.glyphicon-queen:before {
content: "\e212";
}
.glyphicon-pawn:before {
content: "\e213";
}
.glyphicon-bishop:before {
content: "\e214";
}
.glyphicon-knight:before {
content: "\e215";
}
.glyphicon-baby-formula:before {
content: "\e216";
}
.glyphicon-tent:before {
content: "\26fa";
}
.glyphicon-blackboard:before {
content: "\e218";
}
.glyphicon-bed:before {
content: "\e219";
}
.glyphicon-apple:before {
content: "\f8ff";
}
.glyphicon-erase:before {
content: "\e221";
}
.glyphicon-hourglass:before {
content: "\231b";
}
.glyphicon-lamp:before {
content: "\e223";
}
.glyphicon-duplicate:before {
content: "\e224";
}
.glyphicon-piggy-bank:before {
content: "\e225";
}
.glyphicon-scissors:before {
content: "\e226";
}
.glyphicon-bitcoin:before {
content: "\e227";
}
.glyphicon-btc:before {
content: "\e227";
}
.glyphicon-xbt:before {
content: "\e227";
}
.glyphicon-yen:before {
content: "\00a5";
}
.glyphicon-jpy:before {
content: "\00a5";
}
.glyphicon-ruble:before {
content: "\20bd";
}
.glyphicon-rub:before {
content: "\20bd";
}
.glyphicon-scale:before {
content: "\e230";
}
.glyphicon-ice-lolly:before {
content: "\e231";
}
.glyphicon-ice-lolly-tasted:before {
content: "\e232";
}
.glyphicon-education:before {
content: "\e233";
}
.glyphicon-option-horizontal:before {
content: "\e234";
}
.glyphicon-option-vertical:before {
content: "\e235";
}
.glyphicon-menu-hamburger:before {
content: "\e236";
}
.glyphicon-modal-window:before {
content: "\e237";
}
.glyphicon-oil:before {
content: "\e238";
}
.glyphicon-grain:before {
content: "\e239";
}
.glyphicon-sunglasses:before {
content: "\e240";
}
.glyphicon-text-size:before {
content: "\e241";
}
.glyphicon-text-color:before {
content: "\e242";
}
.glyphicon-text-background:before {
content: "\e243";
}
.glyphicon-object-align-top:before {
content: "\e244";
}
.glyphicon-object-align-bottom:before {
content: "\e245";
}
.glyphicon-object-align-horizontal:before {
content: "\e246";
}
.glyphicon-object-align-left:before {
content: "\e247";
}
.glyphicon-object-align-vertical:before {
content: "\e248";
}
.glyphicon-object-align-right:before {
content: "\e249";
}
.glyphicon-triangle-right:before {
content: "\e250";
}
.glyphicon-triangle-left:before {
content: "\e251";
}
.glyphicon-triangle-bottom:before {
content: "\e252";
}
.glyphicon-triangle-top:before {
content: "\e253";
}
.glyphicon-console:before {
content: "\e254";
}
.glyphicon-superscript:before {
content: "\e255";
}
.glyphicon-subscript:before {
content: "\e256";
}
.glyphicon-menu-left:before {
content: "\e257";
}
.glyphicon-menu-right:before {
content: "\e258";
}
.glyphicon-menu-down:before {
content: "\e259";
}
.glyphicon-menu-up:before {
content: "\e260";
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html {
font-size: 10px;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.42857143;
color: #333;
background-color: #fff;
}
input,
button,
select,
textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
a {
color: #337ab7;
text-decoration: none;
}
a:hover,
a:focus {
color: #23527c;
text-decoration: underline;
}
a:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
figure {
margin: 0;
}
img {
vertical-align: middle;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
display: block;
max-width: 100%;
height: auto;
}
.img-rounded {
border-radius: 6px;
}
.img-thumbnail {
display: inline-block;
max-width: 100%;
height: auto;
padding: 4px;
line-height: 1.42857143;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 4px;
-webkit-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
}
.img-circle {
border-radius: 50%;
}
hr {
margin-top: 20px;
margin-bottom: 20px;
border: 0;
border-top: 1px solid #eee;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
position: static;
width: auto;
height: auto;
margin: 0;
overflow: visible;
clip: auto;
}
[role="button"] {
cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
font-family: inherit;
font-weight: 500;
line-height: 1.1;
color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
font-weight: normal;
line-height: 1;
color: #777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
margin-top: 20px;
margin-bottom: 10px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
margin-top: 10px;
margin-bottom: 10px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
font-size: 75%;
}
h1,
.h1 {
font-size: 36px;
}
h2,
.h2 {
font-size: 30px;
}
h3,
.h3 {
font-size: 24px;
}
h4,
.h4 {
font-size: 18px;
}
h5,
.h5 {
font-size: 14px;
}
h6,
.h6 {
font-size: 12px;
}
p {
margin: 0 0 10px;
}
.lead {
margin-bottom: 20px;
font-size: 16px;
font-weight: 300;
line-height: 1.4;
}
@media (min-width: 768px) {
.lead {
font-size: 21px;
}
}
small,
.small {
font-size: 85%;
}
mark,
.mark {
padding: .2em;
background-color: #fcf8e3;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
.text-justify {
text-align: justify;
}
.text-nowrap {
white-space: nowrap;
}
.text-lowercase {
text-transform: lowercase;
}
.text-uppercase {
text-transform: uppercase;
}
.text-capitalize {
text-transform: capitalize;
}
.text-muted {
color: #777;
}
.text-primary {
color: #337ab7;
}
a.text-primary:hover,
a.text-primary:focus {
color: #286090;
}
.text-success {
color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
color: #2b542c;
}
.text-info {
color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
color: #245269;
}
.text-warning {
color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
color: #66512c;
}
.text-danger {
color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
color: #843534;
}
.bg-primary {
color: #fff;
background-color: #337ab7;
}
a.bg-primary:hover,
a.bg-primary:focus {
background-color: #286090;
}
.bg-success {
background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
background-color: #c1e2b3;
}
.bg-info {
background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
background-color: #afd9ee;
}
.bg-warning {
background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
background-color: #f7ecb5;
}
.bg-danger {
background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
background-color: #e4b9b9;
}
.page-header {
padding-bottom: 9px;
margin: 40px 0 20px;
border-bottom: 1px solid #eee;
}
ul,
ol {
margin-top: 0;
margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
margin-bottom: 0;
}
.list-unstyled {
padding-left: 0;
list-style: none;
}
.list-inline {
padding-left: 0;
margin-left: -5px;
list-style: none;
}
.list-inline > li {
display: inline-block;
padding-right: 5px;
padding-left: 5px;
}
dl {
margin-top: 0;
margin-bottom: 20px;
}
dt,
dd {
line-height: 1.42857143;
}
dt {
font-weight: bold;
}
dd {
margin-left: 0;
}
@media (min-width: 768px) {
.dl-horizontal dt {
float: left;
width: 160px;
overflow: hidden;
clear: left;
text-align: right;
text-overflow: ellipsis;
white-space: nowrap;
}
.dl-horizontal dd {
margin-left: 180px;
}
}
abbr[title],
abbr[data-original-title] {
cursor: help;
border-bottom: 1px dotted #777;
}
.initialism {
font-size: 90%;
text-transform: uppercase;
}
blockquote {
padding: 10px 20px;
margin: 0 0 20px;
font-size: 17.5px;
border-left: 5px solid #eee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
display: block;
font-size: 80%;
line-height: 1.42857143;
color: #777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
padding-right: 15px;
padding-left: 0;
text-align: right;
border-right: 5px solid #eee;
border-left: 0;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
content: '\00A0 \2014';
}
address {
margin-bottom: 20px;
font-style: normal;
line-height: 1.42857143;
}
code,
kbd,
pre,
samp {
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
code {
padding: 2px 4px;
font-size: 90%;
color: #c7254e;
background-color: #f9f2f4;
border-radius: 4px;
}
kbd {
padding: 2px 4px;
font-size: 90%;
color: #fff;
background-color: #333;
border-radius: 3px;
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
}
kbd kbd {
padding: 0;
font-size: 100%;
font-weight: bold;
-webkit-box-shadow: none;
box-shadow: none;
}
pre {
display: block;
padding: 9.5px;
margin: 0 0 10px;
font-size: 13px;
line-height: 1.42857143;
color: #333;
word-break: break-all;
word-wrap: break-word;
background-color: #f5f5f5;
border: 1px solid #ccc;
border-radius: 4px;
}
pre code {
padding: 0;
font-size: inherit;
color: inherit;
white-space: pre-wrap;
background-color: transparent;
border-radius: 0;
}
.pre-scrollable {
max-height: 340px;
overflow-y: scroll;
}
.container {
background-size: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
@media (min-width: 768px) {
.container {
width: 750px;
}
}
@media (min-width: 992px) {
.container {
width: 970px;
}
}
@media (min-width: 1200px) {
.container {
width: 1170px;
}
}
.container-fluid {
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
.row {
margin-right: -15px;
margin-left: -15px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
position: relative;
min-height: 1px;
padding-right: 15px;
padding-left: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
float: left;
}
.col-xs-12 {
width: 100%;
}
.col-xs-11 {
width: 91.66666667%;
}
.col-xs-10 {
width: 83.33333333%;
}
.col-xs-9 {
width: 75%;
}
.col-xs-8 {
width: 66.66666667%;
}
.col-xs-7 {
width: 58.33333333%;
}
.col-xs-6 {
width: 50%;
}
.col-xs-5 {
width: 41.66666667%;
}
.col-xs-4 {
width: 33.33333333%;
}
.col-xs-3 {
width: 25%;
}
.col-xs-2 {
width: 16.66666667%;
}
.col-xs-1 {
width: 8.33333333%;
}
.col-xs-pull-12 {
right: 100%;
}
.col-xs-pull-11 {
right: 91.66666667%;
}
.col-xs-pull-10 {
right: 83.33333333%;
}
.col-xs-pull-9 {
right: 75%;
}
.col-xs-pull-8 {
right: 66.66666667%;
}
.col-xs-pull-7 {
right: 58.33333333%;
}
.col-xs-pull-6 {
right: 50%;
}
.col-xs-pull-5 {
right: 41.66666667%;
}
.col-xs-pull-4 {
right: 33.33333333%;
}
.col-xs-pull-3 {
right: 25%;
}
.col-xs-pull-2 {
right: 16.66666667%;
}
.col-xs-pull-1 {
right: 8.33333333%;
}
.col-xs-pull-0 {
right: auto;
}
.col-xs-push-12 {
left: 100%;
}
.col-xs-push-11 {
left: 91.66666667%;
}
.col-xs-push-10 {
left: 83.33333333%;
}
.col-xs-push-9 {
left: 75%;
}
.col-xs-push-8 {
left: 66.66666667%;
}
.col-xs-push-7 {
left: 58.33333333%;
}
.col-xs-push-6 {
left: 50%;
}
.col-xs-push-5 {
left: 41.66666667%;
}
.col-xs-push-4 {
left: 33.33333333%;
}
.col-xs-push-3 {
left: 25%;
}
.col-xs-push-2 {
left: 16.66666667%;
}
.col-xs-push-1 {
left: 8.33333333%;
}
.col-xs-push-0 {
left: auto;
}
.col-xs-offset-12 {
margin-left: 100%;
}
.col-xs-offset-11 {
margin-left: 91.66666667%;
}
.col-xs-offset-10 {
margin-left: 83.33333333%;
}
.col-xs-offset-9 {
margin-left: 75%;
}
.col-xs-offset-8 {
margin-left: 66.66666667%;
}
.col-xs-offset-7 {
margin-left: 58.33333333%;
}
.col-xs-offset-6 {
margin-left: 50%;
}
.col-xs-offset-5 {
margin-left: 41.66666667%;
}
.col-xs-offset-4 {
margin-left: 33.33333333%;
}
.col-xs-offset-3 {
margin-left: 25%;
}
.col-xs-offset-2 {
margin-left: 16.66666667%;
}
.col-xs-offset-1 {
margin-left: 8.33333333%;
}
.col-xs-offset-0 {
margin-left: 0;
}
@media (min-width: 768px) {
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
float: left;
}
.col-sm-12 {
width: 100%;
}
.col-sm-11 {
width: 91.66666667%;
}
.col-sm-10 {
width: 83.33333333%;
}
.col-sm-9 {
width: 75%;
}
.col-sm-8 {
width: 66.66666667%;
}
.col-sm-7 {
width: 58.33333333%;
}
.col-sm-6 {
width: 50%;
}
.col-sm-5 {
width: 41.66666667%;
}
.col-sm-4 {
width: 33.33333333%;
}
.col-sm-3 {
width: 25%;
}
.col-sm-2 {
width: 16.66666667%;
}
.col-sm-1 {
width: 8.33333333%;
}
.col-sm-pull-12 {
right: 100%;
}
.col-sm-pull-11 {
right: 91.66666667%;
}
.col-sm-pull-10 {
right: 83.33333333%;
}
.col-sm-pull-9 {
right: 75%;
}
.col-sm-pull-8 {
right: 66.66666667%;
}
.col-sm-pull-7 {
right: 58.33333333%;
}
.col-sm-pull-6 {
right: 50%;
}
.col-sm-pull-5 {
right: 41.66666667%;
}
.col-sm-pull-4 {
right: 33.33333333%;
}
.col-sm-pull-3 {
right: 25%;
}
.col-sm-pull-2 {
right: 16.66666667%;
}
.col-sm-pull-1 {
right: 8.33333333%;
}
.col-sm-pull-0 {
right: auto;
}
.col-sm-push-12 {
left: 100%;
}
.col-sm-push-11 {
left: 91.66666667%;
}
.col-sm-push-10 {
left: 83.33333333%;
}
.col-sm-push-9 {
left: 75%;
}
.col-sm-push-8 {
left: 66.66666667%;
}
.col-sm-push-7 {
left: 58.33333333%;
}
.col-sm-push-6 {
left: 50%;
}
.col-sm-push-5 {
left: 41.66666667%;
}
.col-sm-push-4 {
left: 33.33333333%;
}
.col-sm-push-3 {
left: 25%;
}
.col-sm-push-2 {
left: 16.66666667%;
}
.col-sm-push-1 {
left: 8.33333333%;
}
.col-sm-push-0 {
left: auto;
}
.col-sm-offset-12 {
margin-left: 100%;
}
.col-sm-offset-11 {
margin-left: 91.66666667%;
}
.col-sm-offset-10 {
margin-left: 83.33333333%;
}
.col-sm-offset-9 {
margin-left: 75%;
}
.col-sm-offset-8 {
margin-left: 66.66666667%;
}
.col-sm-offset-7 {
margin-left: 58.33333333%;
}
.col-sm-offset-6 {
margin-left: 50%;
}
.col-sm-offset-5 {
margin-left: 41.66666667%;
}
.col-sm-offset-4 {
margin-left: 33.33333333%;
}
.col-sm-offset-3 {
margin-left: 25%;
}
.col-sm-offset-2 {
margin-left: 16.66666667%;
}
.col-sm-offset-1 {
margin-left: 8.33333333%;
}
.col-sm-offset-0 {
margin-left: 0;
}
}
@media (min-width: 992px) {
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
float: left;
}
.col-md-12 {
width: 100%;
}
.col-md-11 {
width: 91.66666667%;
}
.col-md-10 {
width: 83.33333333%;
}
.col-md-9 {
width: 75%;
}
.col-md-8 {
width: 66.66666667%;
}
.col-md-7 {
width: 58.33333333%;
}
.col-md-6 {
width: 50%;
}
.col-md-5 {
width: 41.66666667%;
}
.col-md-4 {
width: 33.33333333%;
}
.col-md-3 {
width: 25%;
}
.col-md-2 {
width: 16.66666667%;
}
.col-md-1 {
width: 8.33333333%;
}
.col-md-pull-12 {
right: 100%;
}
.col-md-pull-11 {
right: 91.66666667%;
}
.col-md-pull-10 {
right: 83.33333333%;
}
.col-md-pull-9 {
right: 75%;
}
.col-md-pull-8 {
right: 66.66666667%;
}
.col-md-pull-7 {
right: 58.33333333%;
}
.col-md-pull-6 {
right: 50%;
}
.col-md-pull-5 {
right: 41.66666667%;
}
.col-md-pull-4 {
right: 33.33333333%;
}
.col-md-pull-3 {
right: 25%;
}
.col-md-pull-2 {
right: 16.66666667%;
}
.col-md-pull-1 {
right: 8.33333333%;
}
.col-md-pull-0 {
right: auto;
}
.col-md-push-12 {
left: 100%;
}
.col-md-push-11 {
left: 91.66666667%;
}
.col-md-push-10 {
left: 83.33333333%;
}
.col-md-push-9 {
left: 75%;
}
.col-md-push-8 {
left: 66.66666667%;
}
.col-md-push-7 {
left: 58.33333333%;
}
.col-md-push-6 {
left: 50%;
}
.col-md-push-5 {
left: 41.66666667%;
}
.col-md-push-4 {
left: 33.33333333%;
}
.col-md-push-3 {
left: 25%;
}
.col-md-push-2 {
left: 16.66666667%;
}
.col-md-push-1 {
left: 8.33333333%;
}
.col-md-push-0 {
left: auto;
}
.col-md-offset-12 {
margin-left: 100%;
}
.col-md-offset-11 {
margin-left: 91.66666667%;
}
.col-md-offset-10 {
margin-left: 83.33333333%;
}
.col-md-offset-9 {
margin-left: 75%;
}
.col-md-offset-8 {
margin-left: 66.66666667%;
}
.col-md-offset-7 {
margin-left: 58.33333333%;
}
.col-md-offset-6 {
margin-left: 50%;
}
.col-md-offset-5 {
margin-left: 41.66666667%;
}
.col-md-offset-4 {
margin-left: 33.33333333%;
}
.col-md-offset-3 {
margin-left: 25%;
}
.col-md-offset-2 {
margin-left: 16.66666667%;
}
.col-md-offset-1 {
margin-left: 8.33333333%;
}
.col-md-offset-0 {
margin-left: 0;
}
}
@media (min-width: 1200px) {
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
float: left;
}
.col-lg-12 {
width: 100%;
}
.col-lg-11 {
width: 91.66666667%;
}
.col-lg-10 {
width: 83.33333333%;
}
.col-lg-9 {
width: 75%;
}
.col-lg-8 {
width: 66.66666667%;
}
.col-lg-7 {
width: 58.33333333%;
}
.col-lg-6 {
width: 50%;
}
.col-lg-5 {
width: 41.66666667%;
}
.col-lg-4 {
width: 33.33333333%;
}
.col-lg-3 {
width: 25%;
}
.col-lg-2 {
width: 16.66666667%;
}
.col-lg-1 {
width: 8.33333333%;
}
.col-lg-pull-12 {
right: 100%;
}
.col-lg-pull-11 {
right: 91.66666667%;
}
.col-lg-pull-10 {
right: 83.33333333%;
}
.col-lg-pull-9 {
right: 75%;
}
.col-lg-pull-8 {
right: 66.66666667%;
}
.col-lg-pull-7 {
right: 58.33333333%;
}
.col-lg-pull-6 {
right: 50%;
}
.col-lg-pull-5 {
right: 41.66666667%;
}
.col-lg-pull-4 {
right: 33.33333333%;
}
.col-lg-pull-3 {
right: 25%;
}
.col-lg-pull-2 {
right: 16.66666667%;
}
.col-lg-pull-1 {
right: 8.33333333%;
}
.col-lg-pull-0 {
right: auto;
}
.col-lg-push-12 {
left: 100%;
}
.col-lg-push-11 {
left: 91.66666667%;
}
.col-lg-push-10 {
left: 83.33333333%;
}
.col-lg-push-9 {
left: 75%;
}
.col-lg-push-8 {
left: 66.66666667%;
}
.col-lg-push-7 {
left: 58.33333333%;
}
.col-lg-push-6 {
left: 50%;
}
.col-lg-push-5 {
left: 41.66666667%;
}
.col-lg-push-4 {
left: 33.33333333%;
}
.col-lg-push-3 {
left: 25%;
}
.col-lg-push-2 {
left: 16.66666667%;
}
.col-lg-push-1 {
left: 8.33333333%;
}
.col-lg-push-0 {
left: auto;
}
.col-lg-offset-12 {
margin-left: 100%;
}
.col-lg-offset-11 {
margin-left: 91.66666667%;
}
.col-lg-offset-10 {
margin-left: 83.33333333%;
}
.col-lg-offset-9 {
margin-left: 75%;
}
.col-lg-offset-8 {
margin-left: 66.66666667%;
}
.col-lg-offset-7 {
margin-left: 58.33333333%;
}
.col-lg-offset-6 {
margin-left: 50%;
}
.col-lg-offset-5 {
margin-left: 41.66666667%;
}
.col-lg-offset-4 {
margin-left: 33.33333333%;
}
.col-lg-offset-3 {
margin-left: 25%;
}
.col-lg-offset-2 {
margin-left: 16.66666667%;
}
.col-lg-offset-1 {
margin-left: 8.33333333%;
}
.col-lg-offset-0 {
margin-left: 0;
}
}
table {
background-color: transparent;
}
caption {
padding-top: 8px;
padding-bottom: 8px;
color: #777;
text-align: left;
}
th {
text-align: left;
}
.table {
width: 100%;
max-width: 100%;
margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
padding: 8px;
line-height: 1.42857143;
vertical-align: top;
border-top: 1px solid #ddd;
}
.table > thead > tr > th {
vertical-align: bottom;
border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
border-top: 0;
}
.table > tbody + tbody {
border-top: 2px solid #ddd;
}
.table .table {
background-color: #fff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
padding: 5px;
}
.table-bordered {
border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
background-color: #f5f5f5;
}
table col[class*="col-"] {
position: static;
display: table-column;
float: none;
}
table td[class*="col-"],
table th[class*="col-"] {
position: static;
display: table-cell;
float: none;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
background-color: #ebcccc;
}
.table-responsive {
min-height: .01%;
overflow-x: auto;
}
@media screen and (max-width: 767px) {
.table-responsive {
width: 100%;
margin-bottom: 15px;
overflow-y: hidden;
-ms-overflow-style: -ms-autohiding-scrollbar;
border: 1px solid #ddd;
}
.table-responsive > .table {
margin-bottom: 0;
}
.table-responsive > .table > thead > tr > th,
.table-responsive > .table > tbody > tr > th,
.table-responsive > .table > tfoot > tr > th,
.table-responsive > .table > thead > tr > td,
.table-responsive > .table > tbody > tr > td,
.table-responsive > .table > tfoot > tr > td {
white-space: nowrap;
}
.table-responsive > .table-bordered {
border: 0;
}
.table-responsive > .table-bordered > thead > tr > th:first-child,
.table-responsive > .table-bordered > tbody > tr > th:first-child,
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
.table-responsive > .table-bordered > thead > tr > td:first-child,
.table-responsive > .table-bordered > tbody > tr > td:first-child,
.table-responsive > .table-bordered > tfoot > tr > td:first-child {
border-left: 0;
}
.table-responsive > .table-bordered > thead > tr > th:last-child,
.table-responsive > .table-bordered > tbody > tr > th:last-child,
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
.table-responsive > .table-bordered > thead > tr > td:last-child,
.table-responsive > .table-bordered > tbody > tr > td:last-child,
.table-responsive > .table-bordered > tfoot > tr > td:last-child {
border-right: 0;
}
.table-responsive > .table-bordered > tbody > tr:last-child > th,
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
.table-responsive > .table-bordered > tbody > tr:last-child > td,
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
border-bottom: 0;
}
}
fieldset {
min-width: 0;
padding: 0;
margin: 0;
border: 0;
}
legend {
display: block;
width: 100%;
padding: 0;
margin-bottom: 20px;
font-size: 21px;
line-height: inherit;
color: #333;
border: 0;
border-bottom: 1px solid #e5e5e5;
}
label {
display: inline-block;
max-width: 100%;
margin-bottom: 5px;
font-weight: bold;
}
input[type="search"] {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
margin: 4px 0 0;
margin-top: 1px \9;
line-height: normal;
}
input[type="file"] {
display: block;
}
input[type="range"] {
display: block;
width: 100%;
}
select[multiple],
select[size] {
height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
output {
display: block;
padding-top: 7px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
}
.form-control {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
border-color: #66afe9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
.form-control::-moz-placeholder {
color: #999;
opacity: 1;
}
.form-control:-ms-input-placeholder {
color: #999;
}
.form-control::-webkit-input-placeholder {
color: #999;
}
.form-control::-ms-expand {
background-color: transparent;
border: 0;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
background-color: #eee;
opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
cursor: not-allowed;
}
textarea.form-control {
height: auto;
}
input[type="search"] {
-webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
input[type="date"].form-control,
input[type="time"].form-control,
input[type="datetime-local"].form-control,
input[type="month"].form-control {
line-height: 34px;
}
input[type="date"].input-sm,
input[type="time"].input-sm,
input[type="datetime-local"].input-sm,
input[type="month"].input-sm,
.input-group-sm input[type="date"],
.input-group-sm input[type="time"],
.input-group-sm input[type="datetime-local"],
.input-group-sm input[type="month"] {
line-height: 30px;
}
input[type="date"].input-lg,
input[type="time"].input-lg,
input[type="datetime-local"].input-lg,
input[type="month"].input-lg,
.input-group-lg input[type="date"],
.input-group-lg input[type="time"],
.input-group-lg input[type="datetime-local"],
.input-group-lg input[type="month"] {
line-height: 46px;
}
}
.form-group {
margin-bottom: 15px;
}
.radio,
.checkbox {
position: relative;
display: block;
margin-top: 10px;
margin-bottom: 10px;
}
.radio label,
.checkbox label {
min-height: 20px;
padding-left: 20px;
margin-bottom: 0;
font-weight: normal;
cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
position: absolute;
margin-top: 4px \9;
margin-left: -20px;
}
.radio + .radio,
.checkbox + .checkbox {
margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
position: relative;
display: inline-block;
padding-left: 20px;
margin-bottom: 0;
font-weight: normal;
vertical-align: middle;
cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
margin-top: 0;
margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
cursor: not-allowed;
}
.form-control-static {
min-height: 34px;
padding-top: 7px;
padding-bottom: 7px;
margin-bottom: 0;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
padding-right: 0;
padding-left: 0;
}
.input-sm {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
select.input-sm {
height: 30px;
line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
height: auto;
}
.form-group-sm .form-control {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
.form-group-sm select.form-control {
height: 30px;
line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
height: auto;
}
.form-group-sm .form-control-static {
height: 30px;
min-height: 32px;
padding: 6px 10px;
font-size: 12px;
line-height: 1.5;
}
.input-lg {
height: 46px;
padding: 10px 16px;
font-size: 18px;
line-height: 1.3333333;
border-radius: 6px;
}
select.input-lg {
height: 46px;
line-height: 46px;
}
textarea.input-lg,
select[multiple].input-lg {
height: auto;
}
.form-group-lg .form-control {
height: 46px;
padding: 10px 16px;
font-size: 18px;
line-height: 1.3333333;
border-radius: 6px;
}
.form-group-lg select.form-control {
height: 46px;
line-height: 46px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
height: auto;
}
.form-group-lg .form-control-static {
height: 46px;
min-height: 38px;
padding: 11px 16px;
font-size: 18px;
line-height: 1.3333333;
}
.has-feedback {
position: relative;
}
.has-feedback .form-control {
padding-right: 42.5px;
}
.form-control-feedback {
position: absolute;
top: 0;
right: 0;
z-index: 2;
display: block;
width: 34px;
height: 34px;
line-height: 34px;
text-align: center;
pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
width: 46px;
height: 46px;
line-height: 46px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
width: 30px;
height: 30px;
line-height: 30px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
color: #3c763d;
}
.has-success .form-control {
border-color: #3c763d;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-success .form-control:focus {
border-color: #2b542c;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
color: #3c763d;
background-color: #dff0d8;
border-color: #3c763d;
}
.has-success .form-control-feedback {
color: #3c763d;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
color: #8a6d3b;
}
.has-warning .form-control {
border-color: #8a6d3b;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-warning .form-control:focus {
border-color: #66512c;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
color: #8a6d3b;
background-color: #fcf8e3;
border-color: #8a6d3b;
}
.has-warning .form-control-feedback {
color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
color: #a94442;
}
.has-error .form-control {
border-color: #a94442;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-error .form-control:focus {
border-color: #843534;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
color: #a94442;
background-color: #f2dede;
border-color: #a94442;
}
.has-error .form-control-feedback {
color: #a94442;
}
.has-feedback label ~ .form-control-feedback {
top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
top: 0;
}
.help-block {
display: block;
margin-top: 5px;
margin-bottom: 10px;
color: #737373;
}
@media (min-width: 768px) {
.form-inline .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle;
}
.form-inline .form-control {
display: inline-block;
width: auto;
vertical-align: middle;
}
.form-inline .form-control-static {
display: inline-block;
}
.form-inline .input-group {
display: inline-table;
vertical-align: middle;
}
.form-inline .input-group .input-group-addon,
.form-inline .input-group .input-group-btn,
.form-inline .input-group .form-control {
width: auto;
}
.form-inline .input-group > .form-control {
width: 100%;
}
.form-inline .control-label {
margin-bottom: 0;
vertical-align: middle;
}
.form-inline .radio,
.form-inline .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
vertical-align: middle;
}
.form-inline .radio label,
.form-inline .checkbox label {
padding-left: 0;
}
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
position: relative;
margin-left: 0;
}
.form-inline .has-feedback .form-control-feedback {
top: 0;
}
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
padding-top: 7px;
margin-top: 0;
margin-bottom: 0;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
min-height: 27px;
}
.form-horizontal .form-group {
margin-right: -15px;
margin-left: -15px;
}
@media (min-width: 768px) {
.form-horizontal .control-label {
padding-top: 7px;
margin-bottom: 0;
text-align: right;
}
}
.form-horizontal .has-feedback .form-control-feedback {
right: 15px;
}
@media (min-width: 768px) {
.form-horizontal .form-group-lg .control-label {
padding-top: 11px;
font-size: 18px;
}
}
@media (min-width: 768px) {
.form-horizontal .form-group-sm .control-label {
padding-top: 6px;
font-size: 12px;
}
}
.btn {
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 14px;
font-weight: normal;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
color: #333;
text-decoration: none;
}
.btn:active,
.btn.active {
background-image: none;
outline: 0;
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
cursor: not-allowed;
filter: alpha(opacity=65);
-webkit-box-shadow: none;
box-shadow: none;
opacity: .65;
}
a.btn.disabled,
fieldset[disabled] a.btn {
pointer-events: none;
}
.btn-default {
color: #333;
background-color: #fff;
border-color: #ccc;
}
.btn-default:focus,
.btn-default.focus {
color: #333;
background-color: #e6e6e6;
border-color: #8c8c8c;
}
.btn-default:hover {
color: #333;
background-color: #e6e6e6;
border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
color: #333;
background-color: #e6e6e6;
border-color: #adadad;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
color: #333;
background-color: #d4d4d4;
border-color: #8c8c8c;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
background-image: none;
}
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
background-color: #fff;
border-color: #ccc;
}
.btn-default .badge {
color: #fff;
background-color: #333;
}
.btn-primary {
color: #fff;
background-color: #337ab7;
border-color: #2e6da4;
}
.btn-primary:focus,
.btn-primary.focus {
color: #fff;
background-color: #286090;
border-color: #122b40;
}
.btn-primary:hover {
color: #fff;
background-color: #286090;
border-color: #204d74;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
color: #fff;
background-color: #286090;
border-color: #204d74;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
color: #fff;
background-color: #204d74;
border-color: #122b40;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
background-image: none;
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
background-color: #337ab7;
border-color: #2e6da4;
}
.btn-primary .badge {
color: #337ab7;
background-color: #fff;
}
.btn-success {
color: #fff;
background-color: #5cb85c;
border-color: #4cae4c;
}
.btn-success:focus,
.btn-success.focus {
color: #fff;
background-color: #449d44;
border-color: #255625;
}
.btn-success:hover {
color: #fff;
background-color: #449d44;
border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
color: #fff;
background-color: #449d44;
border-color: #398439;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
color: #fff;
background-color: #398439;
border-color: #255625;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
background-image: none;
}
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
background-color: #5cb85c;
border-color: #4cae4c;
}
.btn-success .badge {
color: #5cb85c;
background-color: #fff;
}
.btn-info {
color: #fff;
background-color: #5bc0de;
border-color: #46b8da;
}
.btn-info:focus,
.btn-info.focus {
color: #fff;
background-color: #31b0d5;
border-color: #1b6d85;
}
.btn-info:hover {
color: #fff;
background-color: #31b0d5;
border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
color: #fff;
background-color: #31b0d5;
border-color: #269abc;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
color: #fff;
background-color: #269abc;
border-color: #1b6d85;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
background-image: none;
}
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
background-color: #5bc0de;
border-color: #46b8da;
}
.btn-info .badge {
color: #5bc0de;
background-color: #fff;
}
.btn-warning {
color: #fff;
background-color: #f0ad4e;
border-color: #eea236;
}
.btn-warning:focus,
.btn-warning.focus {
color: #fff;
background-color: #ec971f;
border-color: #985f0d;
}
.btn-warning:hover {
color: #fff;
background-color: #ec971f;
border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
color: #fff;
background-color: #ec971f;
border-color: #d58512;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
color: #fff;
background-color: #d58512;
border-color: #985f0d;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
background-image: none;
}
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
background-color: #f0ad4e;
border-color: #eea236;
}
.btn-warning .badge {
color: #f0ad4e;
background-color: #fff;
}
.btn-danger {
color: #fff;
background-color: #d9534f;
border-color: #d43f3a;
}
.btn-danger:focus,
.btn-danger.focus {
color: #fff;
background-color: #c9302c;
border-color: #761c19;
}
.btn-danger:hover {
color: #fff;
background-color: #c9302c;
border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
color: #fff;
background-color: #c9302c;
border-color: #ac2925;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
color: #fff;
background-color: #ac2925;
border-color: #761c19;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
background-image: none;
}
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
background-color: #d9534f;
border-color: #d43f3a;
}
.btn-danger .badge {
color: #d9534f;
background-color: #fff;
}
.btn-link {
font-weight: normal;
color: #337ab7;
border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
background-color: transparent;
-webkit-box-shadow: none;
box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
color: #23527c;
text-decoration: underline;
background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
color: #777;
text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
padding: 10px 16px;
font-size: 18px;
line-height: 1.3333333;
border-radius: 6px;
}
.btn-sm,
.btn-group-sm > .btn {
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
padding: 1px 5px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
.btn-block {
display: block;
width: 100%;
}
.btn-block + .btn-block {
margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
width: 100%;
}
.fade {
opacity: 0;
-webkit-transition: opacity .15s linear;
-o-transition: opacity .15s linear;
transition: opacity .15s linear;
}
.fade.in {
opacity: 1;
}
.collapse {
display: none;
}
.collapse.in {
display: block;
}
tr.collapse.in {
display: table-row;
}
tbody.collapse.in {
display: table-row-group;
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
-webkit-transition-timing-function: ease;
-o-transition-timing-function: ease;
transition-timing-function: ease;
-webkit-transition-duration: .35s;
-o-transition-duration: .35s;
transition-duration: .35s;
-webkit-transition-property: height, visibility;
-o-transition-property: height, visibility;
transition-property: height, visibility;
}
.caret {
display: inline-block;
width: 0;
height: 0;
margin-left: 2px;
vertical-align: middle;
border-top: 4px dashed;
border-top: 4px solid \9;
border-right: 4px solid transparent;
border-left: 4px solid transparent;
}
.dropup,
.dropdown {
position: relative;
}
.dropdown-toggle:focus {
outline: 0;
}
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
display: none;
float: left;
min-width: 160px;
padding: 5px 0;
margin: 2px 0 0;
font-size: 14px;
text-align: left;
list-style: none;
background-color: #fff;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, .15);
border-radius: 4px;
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.dropdown-menu.pull-right {
right: 0;
left: auto;
}
.dropdown-menu .divider {
height: 1px;
margin: 9px 0;
overflow: hidden;
background-color: #e5e5e5;
}
.dropdown-menu > li > a {
display: block;
padding: 3px 20px;
clear: both;
font-weight: normal;
line-height: 1.42857143;
color: #333;
white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
color: #262626;
text-decoration: none;
background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
color: #fff;
text-decoration: none;
background-color: #337ab7;
outline: 0;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
color: #777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
text-decoration: none;
cursor: not-allowed;
background-color: transparent;
background-image: none;
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.open > .dropdown-menu {
display: block;
}
.open > a {
outline: 0;
}
.dropdown-menu-right {
right: 0;
left: auto;
}
.dropdown-menu-left {
right: auto;
left: 0;
}
.dropdown-header {
display: block;
padding: 3px 20px;
font-size: 12px;
line-height: 1.42857143;
color: #777;
white-space: nowrap;
}
.dropdown-backdrop {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 990;
}
.pull-right > .dropdown-menu {
right: 0;
left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
content: "";
border-top: 0;
border-bottom: 4px dashed;
border-bottom: 4px solid \9;
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
top: auto;
bottom: 100%;
margin-bottom: 2px;
}
@media (min-width: 768px) {
.navbar-right .dropdown-menu {
right: 0;
left: auto;
}
.navbar-right .dropdown-menu-left {
right: auto;
left: 0;
}
}
.btn-group,
.btn-group-vertical {
position: relative;
display: inline-block;
vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
position: relative;
float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
margin-left: -1px;
}
.btn-toolbar {
margin-left: -5px;
}
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
border-radius: 0;
}
.btn-group > .btn:first-child {
margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.btn-group > .btn-group {
float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
border-radius: 0;
}
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
padding-right: 8px;
padding-left: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
padding-right: 12px;
padding-left: 12px;
}
.btn-group.open .dropdown-toggle {
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn-group.open .dropdown-toggle.btn-link {
-webkit-box-shadow: none;
box-shadow: none;
}
.btn .caret {
margin-left: 0;
}
.btn-lg .caret {
border-width: 5px 5px 0;
border-bottom-width: 0;
}
.dropup .btn-lg .caret {
border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
display: block;
float: none;
width: 100%;
max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
margin-top: -1px;
margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
border-top-left-radius: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.btn-group-justified {
display: table;
width: 100%;
table-layout: fixed;
border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
display: table-cell;
float: none;
width: 1%;
}
.btn-group-justified > .btn-group .btn {
width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
left: auto;
}
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
position: absolute;
clip: rect(0, 0, 0, 0);
pointer-events: none;
}
.input-group {
position: relative;
display: table;
border-collapse: separate;
}
.input-group[class*="col-"] {
float: none;
padding-right: 0;
padding-left: 0;
}
.input-group .form-control {
position: relative;
z-index: 2;
float: left;
width: 100%;
margin-bottom: 0;
}
.input-group .form-control:focus {
z-index: 3;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
height: 46px;
padding: 10px 16px;
font-size: 18px;
line-height: 1.3333333;
border-radius: 6px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
height: 46px;
line-height: 46px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
height: 30px;
line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
border-radius: 0;
}
.input-group-addon,
.input-group-btn {
width: 1%;
white-space: nowrap;
vertical-align: middle;
}
.input-group-addon {
padding: 6px 12px;
font-size: 14px;
font-weight: normal;
line-height: 1;
color: #555;
text-align: center;
background-color: #eee;
border: 1px solid #ccc;
border-radius: 4px;
}
.input-group-addon.input-sm {
padding: 5px 10px;
font-size: 12px;
border-radius: 3px;
}
.input-group-addon.input-lg {
padding: 10px 16px;
font-size: 18px;
border-radius: 6px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.input-group-addon:first-child {
border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.input-group-addon:last-child {
border-left: 0;
}
.input-group-btn {
position: relative;
font-size: 0;
white-space: nowrap;
}
.input-group-btn > .btn {
position: relative;
}
.input-group-btn > .btn + .btn {
margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
z-index: 2;
margin-left: -1px;
}
.nav {
padding-left: 0;
margin-bottom: 0;
list-style: none;
}
.nav > li {
position: relative;
display: block;
}
.nav > li > a {
position: relative;
display: block;
padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
text-decoration: none;
background-color: #eee;
}
.nav > li.disabled > a {
color: #777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
color: #777;
text-decoration: none;
cursor: not-allowed;
background-color: transparent;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
background-color: #eee;
border-color: #337ab7;
}
.nav .nav-divider {
height: 1px;
margin: 9px 0;
overflow: hidden;
background-color: #e5e5e5;
}
.nav > li > a > img {
max-width: none;
}
.nav-tabs {
border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
float: left;
margin-bottom: -1px;
}
.nav-tabs > li > a {
margin-right: 2px;
line-height: 1.42857143;
border: 1px solid transparent;
border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
border-color: #eee #eee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
color: #555;
cursor: default;
background-color: #fff;
border: 1px solid #ddd;
border-bottom-color: transparent;
}
.nav-tabs.nav-justified {
width: 100%;
border-bottom: 0;
}
.nav-tabs.nav-justified > li {
float: none;
}
.nav-tabs.nav-justified > li > a {
margin-bottom: 5px;
text-align: center;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
top: auto;
left: auto;
}
@media (min-width: 768px) {
.nav-tabs.nav-justified > li {
display: table-cell;
width: 1%;
}
.nav-tabs.nav-justified > li > a {
margin-bottom: 0;
}
}
.nav-tabs.nav-justified > li > a {
margin-right: 0;
border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
border: 1px solid #ddd;
}
@media (min-width: 768px) {
.nav-tabs.nav-justified > li > a {
border-bottom: 1px solid #ddd;
border-radius: 4px 4px 0 0;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
border-bottom-color: #fff;
}
}
.nav-pills > li {
float: left;
}
.nav-pills > li > a {
border-radius: 4px;
}
.nav-pills > li + li {
margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
color: #fff;
background-color: #337ab7;
}
.nav-stacked > li {
float: none;
}
.nav-stacked > li + li {
margin-top: 2px;
margin-left: 0;
}
.nav-justified {
width: 100%;
}
.nav-justified > li {
float: none;
}
.nav-justified > li > a {
margin-bottom: 5px;
text-align: center;
}
.nav-justified > .dropdown .dropdown-menu {
top: auto;
left: auto;
}
@media (min-width: 768px) {
.nav-justified > li {
display: table-cell;
width: 1%;
}
.nav-justified > li > a {
margin-bottom: 0;
}
}
.nav-tabs-justified {
border-bottom: 0;
}
.nav-tabs-justified > li > a {
margin-right: 0;
border-radius: 4px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
border: 1px solid #ddd;
}
@media (min-width: 768px) {
.nav-tabs-justified > li > a {
border-bottom: 1px solid #ddd;
border-radius: 4px 4px 0 0;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
border-bottom-color: #fff;
}
}
.tab-content > .tab-pane {
display: none;
}
.tab-content > .active {
display: block;
}
.nav-tabs .dropdown-menu {
margin-top: -1px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.navbar {
position: relative;
min-height: 50px;
margin-bottom: 20px;
border: 1px solid transparent;
}
@media (min-width: 768px) {
.navbar {
border-radius: 4px;
}
}
@media (min-width: 768px) {
.navbar-header {
float: left;
}
}
.navbar-collapse {
padding-right: 15px;
padding-left: 15px;
overflow-x: visible;
-webkit-overflow-scrolling: touch;
border-top: 1px solid transparent;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}
.navbar-collapse.in {
overflow-y: auto;
}
@media (min-width: 768px) {
.navbar-collapse {
width: auto;
border-top: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
.navbar-collapse.collapse {
display: block !important;
height: auto !important;
padding-bottom: 0;
overflow: visible !important;
}
.navbar-collapse.in {
overflow-y: visible;
}
.navbar-fixed-top .navbar-collapse,
.navbar-static-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
padding-right: 0;
padding-left: 0;
}
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
max-height: 200px;
}
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
margin-right: -15px;
margin-left: -15px;
}
@media (min-width: 768px) {
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
margin-right: 0;
margin-left: 0;
}
}
.navbar-static-top {
z-index: 1000;
border-width: 0 0 1px;
}
@media (min-width: 768px) {
.navbar-static-top {
border-radius: 0;
}
}
.navbar-fixed-top,
.navbar-fixed-bottom {
position: fixed;
right: 0;
left: 0;
z-index: 1030;
}
@media (min-width: 768px) {
.navbar-fixed-top,
.navbar-fixed-bottom {
border-radius: 0;
}
}
.navbar-fixed-top {
top: 0;
border-width: 0 0 1px;
}
.navbar-fixed-bottom {
bottom: 0;
margin-bottom: 0;
border-width: 1px 0 0;
}
.navbar-brand {
float: left;
height: 50px;
padding: 15px 15px;
font-size: 18px;
line-height: 20px;
}
.navbar-brand:hover,
.navbar-brand:focus {
text-decoration: none;
}
.navbar-brand > img {
display: block;
}
@media (min-width: 768px) {
.navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand {
margin-left: -15px;
}
}
.navbar-toggle {
position: relative;
float: right;
padding: 9px 10px;
margin-top: 8px;
margin-right: 15px;
margin-bottom: 8px;
background-color: transparent;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
}
.navbar-toggle:focus {
outline: 0;
}
.navbar-toggle .icon-bar {
display: block;
width: 22px;
height: 2px;
border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
margin-top: 4px;
}
@media (min-width: 768px) {
.navbar-toggle {
display: none;
}
}
.navbar-nav {
margin: 7.5px -15px;
}
.navbar-nav > li > a {
padding-top: 10px;
padding-bottom: 10px;
line-height: 20px;
}
@media (max-width: 767px) {
.navbar-nav .open .dropdown-menu {
position: static;
float: none;
width: auto;
margin-top: 0;
background-color: transparent;
border: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
.navbar-nav .open .dropdown-menu > li > a,
.navbar-nav .open .dropdown-menu .dropdown-header {
padding: 5px 15px 5px 25px;
}
.navbar-nav .open .dropdown-menu > li > a {
line-height: 20px;
}
.navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-nav .open .dropdown-menu > li > a:focus {
background-image: none;
}
}
@media (min-width: 768px) {
.navbar-nav {
float: left;
margin: 0;
}
.navbar-nav > li {
float: left;
}
.navbar-nav > li > a {
padding-top: 15px;
padding-bottom: 15px;
}
}
.navbar-form {
padding: 10px 15px;
margin-top: 8px;
margin-right: -15px;
margin-bottom: 8px;
margin-left: -15px;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
}
@media (min-width: 768px) {
.navbar-form .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .form-control {
display: inline-block;
width: auto;
vertical-align: middle;
}
.navbar-form .form-control-static {
display: inline-block;
}
.navbar-form .input-group {
display: inline-table;
vertical-align: middle;
}
.navbar-form .input-group .input-group-addon,
.navbar-form .input-group .input-group-btn,
.navbar-form .input-group .form-control {
width: auto;
}
.navbar-form .input-group > .form-control {
width: 100%;
}
.navbar-form .control-label {
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .radio,
.navbar-form .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .radio label,
.navbar-form .checkbox label {
padding-left: 0;
}
.navbar-form .radio input[type="radio"],
.navbar-form .checkbox input[type="checkbox"] {
position: relative;
margin-left: 0;
}
.navbar-form .has-feedback .form-control-feedback {
top: 0;
}
}
@media (max-width: 767px) {
.navbar-form .form-group {
margin-bottom: 5px;
}
.navbar-form .form-group:last-child {
margin-bottom: 0;
}
}
@media (min-width: 768px) {
.navbar-form {
width: auto;
padding-top: 0;
padding-bottom: 0;
margin-right: 0;
margin-left: 0;
border: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
}
.navbar-nav > li > .dropdown-menu {
margin-top: 0;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
margin-bottom: 0;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.navbar-btn {
margin-top: 8px;
margin-bottom: 8px;
}
.navbar-btn.btn-sm {
margin-top: 10px;
margin-bottom: 10px;
}
.navbar-btn.btn-xs {
margin-top: 14px;
margin-bottom: 14px;
}
.navbar-text {
margin-top: 15px;
margin-bottom: 15px;
}
@media (min-width: 768px) {
.navbar-text {
float: left;
margin-right: 15px;
margin-left: 15px;
}
}
@media (min-width: 768px) {
.navbar-left {
float: left !important;
}
.navbar-right {
float: right !important;
margin-right: -15px;
}
.navbar-right ~ .navbar-right {
margin-right: 0;
}
}
.navbar-default {
background-color: #f8f8f8;
border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
color: #777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
color: #5e5e5e;
background-color: transparent;
}
.navbar-default .navbar-text {
color: #777;
}
.navbar-default .navbar-nav > li > a {
color: #777;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
color: #333;
background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
color: #555;
background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
color: #ccc;
background-color: transparent;
}
.navbar-default .navbar-toggle {
border-color: #ddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
color: #555;
background-color: #e7e7e7;
}
@media (max-width: 767px) {
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #777;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
color: #333;
background-color: transparent;
}
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #555;
background-color: #e7e7e7;
}
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #ccc;
background-color: transparent;
}
}
.navbar-default .navbar-link {
color: #777;
}
.navbar-default .navbar-link:hover {
color: #333;
}
.navbar-default .btn-link {
color: #777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
color: #333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
color: #ccc;
}
.navbar-inverse {
background-color: #222;
border-color: #080808;
}
.navbar-inverse .navbar-brand {
color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-text {
color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
color: #fff;
background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
color: #444;
background-color: transparent;
}
.navbar-inverse .navbar-toggle {
border-color: #333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
color: #fff;
background-color: #080808;
}
@media (max-width: 767px) {
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
border-color: #080808;
}
.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
background-color: #080808;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
color: #9d9d9d;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #fff;
background-color: #080808;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #444;
background-color: transparent;
}
}
.navbar-inverse .navbar-link {
color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
color: #fff;
}
.navbar-inverse .btn-link {
color: #9d9d9d;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
color: #444;
}
.breadcrumb {
padding: 8px 15px;
margin-bottom: 20px;
list-style: none;
background-color: #f5f5f5;
border-radius: 4px;
}
.breadcrumb > li {
display: inline-block;
}
.breadcrumb > li + li:before {
padding: 0 5px;
color: #ccc;
content: "/\00a0";
}
.breadcrumb > .active {
color: #777;
}
.pagination {
display: inline-block;
padding-left: 0;
margin: 20px 0;
border-radius: 4px;
}
.pagination > li {
display: inline;
}
.pagination > li > a,
.pagination > li > span {
position: relative;
float: left;
padding: 6px 12px;
margin-left: -1px;
line-height: 1.42857143;
color: #337ab7;
text-decoration: none;
background-color: #fff;
border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
margin-left: 0;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
z-index: 2;
color: #23527c;
background-color: #eee;
border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
z-index: 3;
color: #fff;
cursor: default;
background-color: #337ab7;
border-color: #337ab7;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
color: #777;
cursor: not-allowed;
background-color: #fff;
border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
padding: 10px 16px;
font-size: 18px;
line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
border-top-right-radius: 6px;
border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
}
.pager {
padding-left: 0;
margin: 20px 0;
text-align: center;
list-style: none;
}
.pager li {
display: inline;
}
.pager li > a,
.pager li > span {
display: inline-block;
padding: 5px 14px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
text-decoration: none;
background-color: #eee;
}
.pager .next > a,
.pager .next > span {
float: right;
}
.pager .previous > a,
.pager .previous > span {
float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
color: #777;
cursor: not-allowed;
background-color: #fff;
}
.label {
display: inline;
padding: .2em .6em .3em;
font-size: 75%;
font-weight: bold;
line-height: 1;
color: #fff;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: .25em;
}
a.label:hover,
a.label:focus {
color: #fff;
text-decoration: none;
cursor: pointer;
}
.label:empty {
display: none;
}
.btn .label {
position: relative;
top: -1px;
}
.label-default {
background-color: #777;
}
.label-default[href]:hover,
.label-default[href]:focus {
background-color: #5e5e5e;
}
.label-primary {
background-color: #337ab7;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
background-color: #286090;
}
.label-success {
background-color: #5cb85c;
}
.label-success[href]:hover,
.label-success[href]:focus {
background-color: #449d44;
}
.label-info {
background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus {
background-color: #31b0d5;
}
.label-warning {
background-color: #f0ad4e;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
background-color: #ec971f;
}
.label-danger {
background-color: #d9534f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
background-color: #c9302c;
}
.badge {
display: inline-block;
min-width: 10px;
padding: 3px 7px;
font-size: 12px;
font-weight: bold;
line-height: 1;
color: #fff;
text-align: center;
white-space: nowrap;
vertical-align: middle;
background-color: #777;
border-radius: 10px;
}
.badge:empty {
display: none;
}
.btn .badge {
position: relative;
top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
top: 0;
padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
color: #fff;
text-decoration: none;
cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
color: #337ab7;
background-color: #fff;
}
.list-group-item > .badge {
float: right;
}
.list-group-item > .badge + .badge {
margin-right: 5px;
}
.nav-pills > li > a > .badge {
margin-left: 3px;
}
.jumbotron {
padding-top: 30px;
padding-bottom: 30px;
margin-bottom: 30px;
color: inherit;
background-color: #eee;
}
.jumbotron h1,
.jumbotron .h1 {
color: inherit;
}
.jumbotron p {
margin-bottom: 15px;
font-size: 21px;
font-weight: 200;
}
.jumbotron > hr {
border-top-color: #d5d5d5;
}
.container .jumbotron,
.container-fluid .jumbotron {
padding-right: 15px;
padding-left: 15px;
border-radius: 6px;
}
.jumbotron .container {
max-width: 100%;
}
@media screen and (min-width: 768px) {
.jumbotron {
padding-top: 48px;
padding-bottom: 48px;
}
.container .jumbotron,
.container-fluid .jumbotron {
padding-right: 60px;
padding-left: 60px;
}
.jumbotron h1,
.jumbotron .h1 {
font-size: 63px;
}
}
.thumbnail {
display: block;
padding: 4px;
margin-bottom: 20px;
line-height: 1.42857143;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 4px;
-webkit-transition: border .2s ease-in-out;
-o-transition: border .2s ease-in-out;
transition: border .2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
margin-right: auto;
margin-left: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
border-color: #337ab7;
}
.thumbnail .caption {
padding: 9px;
color: #333;
}
.alert {
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
}
.alert h4 {
margin-top: 0;
color: inherit;
}
.alert .alert-link {
font-weight: bold;
}
.alert > p,
.alert > ul {
margin-bottom: 0;
}
.alert > p + p {
margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
position: relative;
top: -2px;
right: -21px;
color: inherit;
}
.alert-success {
color: #3c763d;
background-color: #dff0d8;
border-color: #d6e9c6;
}
.alert-success hr {
border-top-color: #c9e2b3;
}
.alert-success .alert-link {
color: #2b542c;
}
.alert-info {
color: #31708f;
background-color: #d9edf7;
border-color: #bce8f1;
}
.alert-info hr {
border-top-color: #a6e1ec;
}
.alert-info .alert-link {
color: #245269;
}
.alert-warning {
color: #8a6d3b;
background-color: #fcf8e3;
border-color: #faebcc;
}
.alert-warning hr {
border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
color: #66512c;
}
.alert-danger {
color: #a94442;
background-color: #f2dede;
border-color: #ebccd1;
}
.alert-danger hr {
border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
color: #843534;
}
@-webkit-keyframes progress-bar-stripes {
from {
background-position: 40px 0;
}
to {
background-position: 0 0;
}
}
@-o-keyframes progress-bar-stripes {
from {
background-position: 40px 0;
}
to {
background-position: 0 0;
}
}
@keyframes progress-bar-stripes {
from {
background-position: 40px 0;
}
to {
background-position: 0 0;
}
}
.progress {
height: 20px;
margin-bottom: 20px;
overflow: hidden;
background-color: #f5f5f5;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}
.progress-bar {
float: left;
width: 0;
height: 100%;
font-size: 12px;
line-height: 20px;
color: #fff;
text-align: center;
background-color: #337ab7;
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
-webkit-transition: width .6s ease;
-o-transition: width .6s ease;
transition: width .6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
-webkit-background-size: 40px 40px;
background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
-webkit-animation: progress-bar-stripes 2s linear infinite;
-o-animation: progress-bar-stripes 2s linear infinite;
animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.media {
margin-top: 15px;
}
.media:first-child {
margin-top: 0;
}
.media,
.media-body {
overflow: hidden;
zoom: 1;
}
.media-body {
width: 10000px;
}
.media-object {
display: block;
}
.media-object.img-thumbnail {
max-width: none;
}
.media-right,
.media > .pull-right {
padding-left: 10px;
}
.media-left,
.media > .pull-left {
padding-right: 10px;
}
.media-left,
.media-right,
.media-body {
display: table-cell;
vertical-align: top;
}
.media-middle {
vertical-align: middle;
}
.media-bottom {
vertical-align: bottom;
}
.media-heading {
margin-top: 0;
margin-bottom: 5px;
}
.media-list {
padding-left: 0;
list-style: none;
}
.list-group {
padding-left: 0;
margin-bottom: 20px;
}
.list-group-item {
position: relative;
display: block;
padding: 10px 15px;
margin-bottom: -1px;
background-color: #fff;
border: 1px solid #ddd;
}
.list-group-item:first-child {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
.list-group-item:last-child {
margin-bottom: 0;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
}
a.list-group-item,
button.list-group-item {
color: #555;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
color: #333;
}
a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
color: #555;
text-decoration: none;
background-color: #f5f5f5;
}
button.list-group-item {
width: 100%;
text-align: left;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
color: #777;
cursor: not-allowed;
background-color: #eee;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
color: #777;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
z-index: 2;
color: #fff;
background-color: #337ab7;
border-color: #337ab7;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
color: #c7ddef;
}
.list-group-item-success {
color: #3c763d;
background-color: #dff0d8;
}
a.list-group-item-success,
button.list-group-item-success {
color: #3c763d;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
color: inherit;
}
a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
color: #3c763d;
background-color: #d0e9c6;
}
a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
color: #fff;
background-color: #3c763d;
border-color: #3c763d;
}
.list-group-item-info {
color: #31708f;
background-color: #d9edf7;
}
a.list-group-item-info,
button.list-group-item-info {
color: #31708f;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
color: inherit;
}
a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
color: #31708f;
background-color: #c4e3f3;
}
a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
color: #fff;
background-color: #31708f;
border-color: #31708f;
}
.list-group-item-warning {
color: #8a6d3b;
background-color: #fcf8e3;
}
a.list-group-item-warning,
button.list-group-item-warning {
color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
color: inherit;
}
a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
color: #8a6d3b;
background-color: #faf2cc;
}
a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
color: #fff;
background-color: #8a6d3b;
border-color: #8a6d3b;
}
.list-group-item-danger {
color: #a94442;
background-color: #f2dede;
}
a.list-group-item-danger,
button.list-group-item-danger {
color: #a94442;
}
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
color: inherit;
}
a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
color: #a94442;
background-color: #ebcccc;
}
a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
color: #fff;
background-color: #a94442;
border-color: #a94442;
}
.list-group-item-heading {
margin-top: 0;
margin-bottom: 5px;
}
.list-group-item-text {
margin-bottom: 0;
line-height: 1.3;
}
.panel {
margin-bottom: 20px;
background-color: #fff;
border: 1px solid transparent;
border-radius: 4px;
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}
.panel-body {
padding: 15px;
}
.panel-heading {
padding: 10px 15px;
border-bottom: 1px solid transparent;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
}
.panel-heading > .dropdown .dropdown-toggle {
color: inherit;
}
.panel-title {
margin-top: 0;
margin-bottom: 0;
font-size: 16px;
color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
color: inherit;
}
.panel-footer {
padding: 10px 15px;
background-color: #f5f5f5;
border-top: 1px solid #ddd;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
}
.panel > .list-group,
.panel > .panel-collapse > .list-group {
margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
border-width: 1px 0;
border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
border-top: 0;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
border-bottom: 0;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
border-top-width: 0;
}
.list-group + .panel-footer {
border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
padding-right: 15px;
padding-left: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
border-top-left-radius: 3px;
border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
border-top-left-radius: 3px;
border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
border-top-right-radius: 3px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
border-bottom-right-radius: 3px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
border-bottom: 0;
}
.panel > .table-responsive {
margin-bottom: 0;
border: 0;
}
.panel-group {
margin-bottom: 20px;
}
.panel-group .panel {
margin-bottom: 0;
border-radius: 4px;
}
.panel-group .panel + .panel {
margin-top: 5px;
}
.panel-group .panel-heading {
border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
border-bottom: 1px solid #ddd;
}
.panel-default {
border-color: #ddd;
}
.panel-default > .panel-heading {
color: #333;
background-color: #f5f5f5;
border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #ddd;
}
.panel-default > .panel-heading .badge {
color: #f5f5f5;
background-color: #333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #ddd;
}
.panel-primary {
border-color: #337ab7;
}
.panel-primary > .panel-heading {
color: #fff;
background-color: #337ab7;
border-color: #337ab7;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #337ab7;
}
.panel-primary > .panel-heading .badge {
color: #337ab7;
background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #337ab7;
}
.panel-success {
border-color: #d6e9c6;
}
.panel-success > .panel-heading {
color: #3c763d;
background-color: #dff0d8;
border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #d6e9c6;
}
.panel-success > .panel-heading .badge {
color: #dff0d8;
background-color: #3c763d;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #d6e9c6;
}
.panel-info {
border-color: #bce8f1;
}
.panel-info > .panel-heading {
color: #31708f;
background-color: #d9edf7;
border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #bce8f1;
}
.panel-info > .panel-heading .badge {
color: #d9edf7;
background-color: #31708f;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #bce8f1;
}
.panel-warning {
border-color: #faebcc;
}
.panel-warning > .panel-heading {
color: #8a6d3b;
background-color: #fcf8e3;
border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #faebcc;
}
.panel-warning > .panel-heading .badge {
color: #fcf8e3;
background-color: #8a6d3b;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #faebcc;
}
.panel-danger {
border-color: #ebccd1;
}
.panel-danger > .panel-heading {
color: #a94442;
background-color: #f2dede;
border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #ebccd1;
}
.panel-danger > .panel-heading .badge {
color: #f2dede;
background-color: #a94442;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #ebccd1;
}
.embed-responsive {
position: relative;
display: block;
height: 0;
padding: 0;
overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
position: absolute;
top: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}
.embed-responsive-16by9 {
padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
padding-bottom: 75%;
}
.well {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
background-color: #f5f5f5;
border: 1px solid #e3e3e3;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
.well blockquote {
border-color: #ddd;
border-color: rgba(0, 0, 0, .15);
}
.well-lg {
padding: 24px;
border-radius: 6px;
}
.well-sm {
padding: 9px;
border-radius: 3px;
}
.close {
float: right;
font-size: 21px;
font-weight: bold;
line-height: 1;
color: #000;
text-shadow: 0 1px 0 #fff;
filter: alpha(opacity=20);
opacity: .2;
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
filter: alpha(opacity=50);
opacity: .5;
}
button.close {
-webkit-appearance: none;
padding: 0;
cursor: pointer;
background: transparent;
border: 0;
}
.modal-open {
overflow: hidden;
}
.modal {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1050;
display: none;
overflow: hidden;
-webkit-overflow-scrolling: touch;
outline: 0;
}
.modal.fade .modal-dialog {
-webkit-transition: -webkit-transform .3s ease-out;
-o-transition: -o-transform .3s ease-out;
transition: transform .3s ease-out;
-webkit-transform: translate(0, -25%);
-ms-transform: translate(0, -25%);
-o-transform: translate(0, -25%);
transform: translate(0, -25%);
}
.modal.in .modal-dialog {
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.modal-open .modal {
overflow-x: hidden;
overflow-y: auto;
}
.modal-dialog {
position: relative;
width: auto;
margin: 10px;
}
.modal-content {
position: relative;
background-color: #fff;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: 1px solid #999;
border: 1px solid rgba(0, 0, 0, .2);
border-radius: 6px;
outline: 0;
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}
.modal-backdrop {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1040;
background-color: #000;
}
.modal-backdrop.fade {
filter: alpha(opacity=0);
opacity: 0;
}
.modal-backdrop.in {
filter: alpha(opacity=50);
opacity: .5;
}
.modal-header {
padding: 15px;
border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
margin-top: -2px;
}
.modal-title {
margin: 0;
line-height: 1.42857143;
}
.modal-body {
position: relative;
padding: 15px;
}
.modal-footer {
padding: 15px;
text-align: right;
border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
margin-bottom: 0;
margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
margin-left: 0;
}
.modal-scrollbar-measure {
position: absolute;
top: -9999px;
width: 50px;
height: 50px;
overflow: scroll;
}
@media (min-width: 768px) {
.modal-dialog {
width: 600px;
margin: 30px auto;
}
.modal-content {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
}
.modal-sm {
width: 300px;
}
}
@media (min-width: 992px) {
.modal-lg {
width: 900px;
}
}
.tooltip {
position: absolute;
z-index: 1070;
display: block;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 12px;
font-style: normal;
font-weight: normal;
line-height: 1.42857143;
text-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
letter-spacing: normal;
word-break: normal;
word-spacing: normal;
word-wrap: normal;
white-space: normal;
filter: alpha(opacity=0);
opacity: 0;
line-break: auto;
}
.tooltip.in {
filter: alpha(opacity=90);
opacity: .9;
}
.tooltip.top {
padding: 5px 0;
margin-top: -3px;
}
.tooltip.right {
padding: 0 5px;
margin-left: 3px;
}
.tooltip.bottom {
padding: 5px 0;
margin-top: 3px;
}
.tooltip.left {
padding: 0 5px;
margin-left: -3px;
}
.tooltip-inner {
max-width: 200px;
padding: 3px 8px;
color: #fff;
text-align: center;
background-color: #000;
border-radius: 4px;
}
.tooltip-arrow {
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
.tooltip.top .tooltip-arrow {
bottom: 0;
left: 50%;
margin-left: -5px;
border-width: 5px 5px 0;
border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
right: 5px;
bottom: 0;
margin-bottom: -5px;
border-width: 5px 5px 0;
border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
bottom: 0;
left: 5px;
margin-bottom: -5px;
border-width: 5px 5px 0;
border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
top: 50%;
left: 0;
margin-top: -5px;
border-width: 5px 5px 5px 0;
border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
top: 50%;
right: 0;
margin-top: -5px;
border-width: 5px 0 5px 5px;
border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
top: 0;
left: 50%;
margin-left: -5px;
border-width: 0 5px 5px;
border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
top: 0;
right: 5px;
margin-top: -5px;
border-width: 0 5px 5px;
border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
top: 0;
left: 5px;
margin-top: -5px;
border-width: 0 5px 5px;
border-bottom-color: #000;
}
.popover {
position: absolute;
top: 0;
left: 0;
z-index: 1060;
display: none;
max-width: 276px;
padding: 1px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
font-style: normal;
font-weight: normal;
line-height: 1.42857143;
text-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
letter-spacing: normal;
word-break: normal;
word-spacing: normal;
word-wrap: normal;
white-space: normal;
background-color: #fff;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, .2);
border-radius: 6px;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
line-break: auto;
}
.popover.top {
margin-top: -10px;
}
.popover.right {
margin-left: 10px;
}
.popover.bottom {
margin-top: 10px;
}
.popover.left {
margin-left: -10px;
}
.popover-title {
padding: 8px 14px;
margin: 0;
font-size: 14px;
background-color: #f7f7f7;
border-bottom: 1px solid #ebebeb;
border-radius: 5px 5px 0 0;
}
.popover-content {
padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
position: absolute;
display: block;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
.popover > .arrow {
border-width: 11px;
}
.popover > .arrow:after {
content: "";
border-width: 10px;
}
.popover.top > .arrow {
bottom: -11px;
left: 50%;
margin-left: -11px;
border-top-color: #999;
border-top-color: rgba(0, 0, 0, .25);
border-bottom-width: 0;
}
.popover.top > .arrow:after {
bottom: 1px;
margin-left: -10px;
content: " ";
border-top-color: #fff;
border-bottom-width: 0;
}
.popover.right > .arrow {
top: 50%;
left: -11px;
margin-top: -11px;
border-right-color: #999;
border-right-color: rgba(0, 0, 0, .25);
border-left-width: 0;
}
.popover.right > .arrow:after {
bottom: -10px;
left: 1px;
content: " ";
border-right-color: #fff;
border-left-width: 0;
}
.popover.bottom > .arrow {
top: -11px;
left: 50%;
margin-left: -11px;
border-top-width: 0;
border-bottom-color: #999;
border-bottom-color: rgba(0, 0, 0, .25);
}
.popover.bottom > .arrow:after {
top: 1px;
margin-left: -10px;
content: " ";
border-top-width: 0;
border-bottom-color: #fff;
}
.popover.left > .arrow {
top: 50%;
right: -11px;
margin-top: -11px;
border-right-width: 0;
border-left-color: #999;
border-left-color: rgba(0, 0, 0, .25);
}
.popover.left > .arrow:after {
right: 1px;
bottom: -10px;
content: " ";
border-right-width: 0;
border-left-color: #fff;
}
.carousel {
position: relative;
}
.carousel-inner {
position: relative;
width: 100%;
overflow: hidden;
}
.carousel-inner > .item {
position: relative;
display: none;
-webkit-transition: .6s ease-in-out left;
-o-transition: .6s ease-in-out left;
transition: .6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
.carousel-inner > .item {
-webkit-transition: -webkit-transform .6s ease-in-out;
-o-transition: -o-transform .6s ease-in-out;
transition: transform .6s ease-in-out;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-perspective: 1000px;
perspective: 1000px;
}
.carousel-inner > .item.next,
.carousel-inner > .item.active.right {
left: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
.carousel-inner > .item.prev,
.carousel-inner > .item.active.left {
left: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
.carousel-inner > .item.next.left,
.carousel-inner > .item.prev.right,
.carousel-inner > .item.active {
left: 0;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
display: block;
}
.carousel-inner > .active {
left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
position: absolute;
top: 0;
width: 100%;
}
.carousel-inner > .next {
left: 100%;
}
.carousel-inner > .prev {
left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
left: 0;
}
.carousel-inner > .active.left {
left: -100%;
}
.carousel-inner > .active.right {
left: 100%;
}
.carousel-control {
position: absolute;
top: 0;
bottom: 0;
left: 0;
width: 15%;
font-size: 20px;
color: #fff;
text-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
background-color: rgba(0, 0, 0, 0);
filter: alpha(opacity=50);
opacity: .5;
}
.carousel-control.left {
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
background-repeat: repeat-x;
}
.carousel-control.right {
right: 0;
left: auto;
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
background-repeat: repeat-x;
}
.carousel-control:hover,
.carousel-control:focus {
color: #fff;
text-decoration: none;
filter: alpha(opacity=90);
outline: 0;
opacity: .9;
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
position: absolute;
top: 50%;
z-index: 5;
display: inline-block;
margin-top: -10px;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
left: 50%;
margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
right: 50%;
margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
width: 20px;
height: 20px;
font-family: serif;
line-height: 1;
}
.carousel-control .icon-prev:before {
content: '\2039';
}
.carousel-control .icon-next:before {
content: '\203a';
}
.carousel-indicators {
position: absolute;
bottom: 10px;
left: 50%;
z-index: 15;
width: 60%;
padding-left: 0;
margin-left: -30%;
text-align: center;
list-style: none;
}
.carousel-indicators li {
display: inline-block;
width: 10px;
height: 10px;
margin: 1px;
text-indent: -999px;
cursor: pointer;
background-color: #000 \9;
background-color: rgba(0, 0, 0, 0);
border: 1px solid #fff;
border-radius: 10px;
}
.carousel-indicators .active {
width: 12px;
height: 12px;
margin: 0;
background-color: #fff;
}
.carousel-caption {
position: absolute;
right: 15%;
bottom: 20px;
left: 15%;
z-index: 10;
padding-top: 20px;
padding-bottom: 20px;
color: #fff;
text-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}
.carousel-caption .btn {
text-shadow: none;
}
@media screen and (min-width: 768px) {
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-prev,
.carousel-control .icon-next {
width: 30px;
height: 30px;
margin-top: -10px;
font-size: 30px;
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
margin-left: -10px;
}
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
margin-right: -10px;
}
.carousel-caption {
right: 20%;
left: 20%;
padding-bottom: 30px;
}
.carousel-indicators {
bottom: 20px;
}
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
display: table;
content: " ";
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after {
clear: both;
}
.center-block {
display: block;
margin-right: auto;
margin-left: auto;
}
.pull-right {
float: right !important;
}
.pull-left {
float: left !important;
}
.hide {
display: none !important;
}
.show {
display: block !important;
}
.invisible {
visibility: hidden;
}
.text-hide {
font: 0/0 a;
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0;
}
.hidden {
display: none !important;
}
.affix {
position: fixed;
}
@-ms-viewport {
width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
display: none !important;
}
@media (max-width: 767px) {
.visible-xs {
display: block !important;
}
table.visible-xs {
display: table !important;
}
tr.visible-xs {
display: table-row !important;
}
th.visible-xs,
td.visible-xs {
display: table-cell !important;
}
}
@media (max-width: 767px) {
.visible-xs-block {
display: block !important;
}
}
@media (max-width: 767px) {
.visible-xs-inline {
display: inline !important;
}
}
@media (max-width: 767px) {
.visible-xs-inline-block {
display: inline-block !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm {
display: block !important;
}
table.visible-sm {
display: table !important;
}
tr.visible-sm {
display: table-row !important;
}
th.visible-sm,
td.visible-sm {
display: table-cell !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm-block {
display: block !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm-inline {
display: inline !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm-inline-block {
display: inline-block !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md {
display: block !important;
}
table.visible-md {
display: table !important;
}
tr.visible-md {
display: table-row !important;
}
th.visible-md,
td.visible-md {
display: table-cell !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md-block {
display: block !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md-inline {
display: inline !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md-inline-block {
display: inline-block !important;
}
}
@media (min-width: 1200px) {
.visible-lg {
display: block !important;
}
table.visible-lg {
display: table !important;
}
tr.visible-lg {
display: table-row !important;
}
th.visible-lg,
td.visible-lg {
display: table-cell !important;
}
}
@media (min-width: 1200px) {
.visible-lg-block {
display: block !important;
}
}
@media (min-width: 1200px) {
.visible-lg-inline {
display: inline !important;
}
}
@media (min-width: 1200px) {
.visible-lg-inline-block {
display: inline-block !important;
}
}
@media (max-width: 767px) {
.hidden-xs {
display: none !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.hidden-sm {
display: none !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.hidden-md {
display: none !important;
}
}
@media (min-width: 1200px) {
.hidden-lg {
display: none !important;
}
}
.visible-print {
display: none !important;
}
@media print {
.visible-print {
display: block !important;
}
table.visible-print {
display: table !important;
}
tr.visible-print {
display: table-row !important;
}
th.visible-print,
td.visible-print {
display: table-cell !important;
}
}
.visible-print-block {
display: none !important;
}
@media print {
.visible-print-block {
display: block !important;
}
}
.visible-print-inline {
display: none !important;
}
@media print {
.visible-print-inline {
display: inline !important;
}
}
.visible-print-inline-block {
display: none !important;
}
@media print {
.visible-print-inline-block {
display: inline-block !important;
}
}
@media print {
.hidden-print {
display: none !important;
}
}
/*# sourceMappingURL=bootstrap.css.map */
|
report/4.html | PRVALUE/D3-Auto-Shanghai-2015 | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title></title>
<link rel="stylesheet" href="css/my-css.css" media="screen" type="text/css" />
</head>
<body>
<div class="p2title_">
<p>2015年上海车展微信监测范围</p>
</div>
<br>
<img src="http://autoshanghai2015-cdn.prvalue.cn/img/p4.png" style="height:50%">
<br>
<div class="p4-content">
<p>2015年,有效监测对象(即发布车展相关内容的账号)数量均有所增长,但是微信上的媒体与自媒体账号数量增长远远大于微博。</p>
</div>
</body>
</html> |
coverage-3.7.1/tests/farm/html/gold_other/index.html | I-Valchev/UrPas | <!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>Coverage report</title>
<link rel='stylesheet' href='style.css' type='text/css'>
<script type='text/javascript' src='jquery.min.js'></script>
<script type='text/javascript' src='jquery.tablesorter.min.js'></script>
<script type='text/javascript' src='jquery.hotkeys.js'></script>
<script type='text/javascript' src='coverage_html.js'></script>
<script type='text/javascript' charset='utf-8'>
jQuery(document).ready(coverage.index_ready);
</script>
</head>
<body id='indexfile'>
<div id='header'>
<div class='content'>
<h1>Coverage report:
<span class='pc_cov'>80%</span>
</h1>
<img id='keyboard_icon' src='keybd_closed.png'>
</div>
</div>
<div class='help_panel'>
<img id='panel_icon' src='keybd_open.png'>
<p class='legend'>Hot-keys on this page</p>
<div>
<p class='keyhelp'>
<span class='key'>n</span>
<span class='key'>s</span>
<span class='key'>m</span>
<span class='key'>x</span>
<span class='key'>c</span> change column sorting
</p>
</div>
</div>
<div id='index'>
<table class='index'>
<thead>
<tr class='tablehead' title='Click to sort'>
<th class='name left headerSortDown shortkey_n'>Module</th>
<th class='shortkey_s'>statements</th>
<th class='shortkey_m'>missing</th>
<th class='shortkey_x'>excluded</th>
<th class='right shortkey_c'>coverage</th>
</tr>
</thead>
<tfoot>
<tr class='total'>
<td class='name left'>Total</td>
<td>5</td>
<td>1</td>
<td>0</td>
<td class='right'>80%</td>
</tr>
</tfoot>
<tbody>
<tr class='file'>
<td class='name left'><a href='_home_ned_coverage_trunk_tests_farm_html_othersrc_other.html'>/home/ned/coverage/trunk/tests/farm/html/othersrc/other</a></td>
<td>1</td>
<td>0</td>
<td>0</td>
<td class='right'>100%</td>
</tr>
<tr class='file'>
<td class='name left'><a href='here.html'>here</a></td>
<td>4</td>
<td>1</td>
<td>0</td>
<td class='right'>75%</td>
</tr>
</tbody>
</table>
</div>
<div id='footer'>
<div class='content'>
<p>
<a class='nav' href='http://nedbatchelder.com/code/coverage/3.5a1'>coverage.py v3.5a1</a>
</p>
</div>
</div>
</body>
</html>
|
module/browseraction/popup.html | TTTN-sang/xssdemo | <!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Foundation | Welcome</title>
<link rel="stylesheet" href="/css/foundation.css" />
<script src="/js/vendor/jquery.js"></script>
<script src="/js/foundation.min.js"></script>
<link type="text/css" media="screen" rel="stylesheet" href="/js/responsive/responsive-tables.css" />
<script type="text/javascript" src="/js/responsive/responsive-tables.js"></script>
<script src="/js/vendor/modernizr.js"></script>
<!-- own js-->
</head>
<body>
<div class="row">
<div class="large-12 columns">
<h1>XSS Dectector</h1>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<table class="responsive">
<tbody>
<tr>
<th>JS Library</th>
<th>Version</th>
</tr>
</tbody>
</table>
</div>
<div class="row">
<div id="debug" class="large-12 columns">
</div>
</div>
</div>
<script>
$(document).foundation();
</script>
</body>
</html>
|
carrot2-webapp-3.8.1/herballsilvertrigram/01362115.txt.html | idigbio-citsci-hackathon/carrotFacetNgram | <html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<span class='rank7 7.131076592273528'>?0</span>
<span class='rank0 0.0'>1</span>
<span class='rank0 0.0'>I</span>
<span class='rank6 6.041766696267732'>cm</span>
</br>
<span class='rank0 0.0'>6</span>
<span class='rank0 0.0'>7</span>
<span class='rank0 0.0'>8</span>
<span class='rank0 0.0'>9</span>
<span class='rank6 5.886281793427337'>10</span>
<span class='rank4 4.050174224831018'>copyright</span>
<span class='rank2 1.7822710117187128'>reserved</span>
</br>
<span class='rank5 5.380675333968457'>The</span>
<span class='rank6 5.910214491268059'>New</span>
<span class='rank5 5.027215308896533'>York</span>
<span class='rank3 2.5421264334187086'>Botanical</span>
<span class='rank3 3.451197890939337'>Garden</span>
</br>
<span class='rank4 4.107585886410401'>FLORA</span>
<span class='rank1 1.4879033786852602'>JAMAICENSIS.</span>
</br>
<span class='rank3 3.1001716090847893'>PUBLIC</span>
<span class='rank0 -0.2052493615835047'>GARDENS,</span>
<span class='rank-3 -3.0275875422669145'>JAMAICA,</span>
<span class='rank4 4.275482490296059'>and</span>
<span class='rank5 5.23758013687111'>NEW</span>
<span class='rank5 5.092407184714711'>YORK</span>
<span class='rank4 4.3452095742978045'>BOTANICAL</span>
<span class='rank12 12.372772113517378'>GARDEN.</span>
</br>
<span class='rank1 0.8415956090374017'>Name,</span>
</br>
<span class='rank19 19.349749519779444'>2*tH>vJUtJTa//ZZZ*/+</span>
</br>
<span class='rank6 6.361458579296891'>No.</span>
<span class='rank0 0.0'>0</span>
<span class='rank0 0.0'>O</span>
<span class='rank0 0.0'>6</span>
<span class='rank4 4.071225049211737'>Date</span>
<span class='rank0 0.0'>/S'</span>
<span class='rank5 5.389829977951004'>191V</span>
</br>
<span class='rank-4 -4.079831542354647'>Collector,</span>
<span class='rank7 6.953395415036075'>Wm.</span>
<span class='rank12 11.770077644153382'>HARRIS.</span>
</br>
<span class='rank15 15.381818882412999'>6Ul*rtUt4,</span>
<span class='rank34 34.43033147145685'>ioooÑJuly,</span>
<span class='rank12 11.76006824489994'>1915.</span>
<span class='rank7 7.0770093710032524'>SUfAyy*tu^</span>
<span class='rank10 10.021448350169694'>ÀAa*-oL</span>
</br>
<span class='rank-3 -3.3809756705739815'>Locality,</span>
</br>
<span class='rank10 10.329987321585822'>NEWYORK</span>
<span class='rank4 4.3452095742978045'>BOTANICAL</span>
<span class='rank5 4.836230413135688'>GARDEN</span>
</br>
<span class='rank38 37.848709592809456'>01362115</span>
</br>
<span class='rank38 37.848709592809456'>01362115</span>
</br>
</br></br>
<strong>Legend - </strong>
Level of confidence that token is an accurately-transcribed word</br>
<span class='rank-13'> </span> extremely low
<span class='rank-7'> </span> very low
<span class='rank-1'> </span> low
<span class='rank0'> </span> undetermined
<span class='rank1'> </span> medium
<span class='rank6'> </span> high
<span class='rank16'> </span> very high</br>
</body>
</html>
|
doc/cpsr/stats/package-use.html | williamleif/PSRToolbox | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_25) on Wed Jan 08 11:58:52 EST 2014 -->
<title>Uses of Package cpsr.stats</title>
<meta name="date" content="2014-01-08">
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Package cpsr.stats";
}
//-->
</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">Use</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</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../index.html?cpsr/stats/package-use.html" target="_top">Frames</a></li>
<li><a href="package-use.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="Uses of Package cpsr.stats" class="title">Uses of Package<br>cpsr.stats</h1>
</div>
<div class="contentContainer">
<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="../../cpsr/stats/package-summary.html">cpsr.stats</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#cpsr.environment">cpsr.environment</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#cpsr.environment.simulation">cpsr.environment.simulation</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#cpsr.model">cpsr.model</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#cpsr.planning">cpsr.planning</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#cpsr.stats">cpsr.stats</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="cpsr.environment">
<!-- -->
</a>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../cpsr/stats/package-summary.html">cpsr.stats</a> used by <a href="../../cpsr/environment/package-summary.html">cpsr.environment</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../cpsr/stats/class-use/PSRObserver.html#cpsr.environment">PSRObserver</a> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="cpsr.environment.simulation">
<!-- -->
</a>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../cpsr/stats/package-summary.html">cpsr.stats</a> used by <a href="../../cpsr/environment/simulation/package-summary.html">cpsr.environment.simulation</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../cpsr/stats/class-use/PSRObserver.html#cpsr.environment.simulation">PSRObserver</a> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="cpsr.model">
<!-- -->
</a>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../cpsr/stats/package-summary.html">cpsr.stats</a> used by <a href="../../cpsr/model/package-summary.html">cpsr.model</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../cpsr/stats/class-use/PSRObserver.html#cpsr.model">PSRObserver</a> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="cpsr.planning">
<!-- -->
</a>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../cpsr/stats/package-summary.html">cpsr.stats</a> used by <a href="../../cpsr/planning/package-summary.html">cpsr.planning</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../cpsr/stats/class-use/PSRObserver.html#cpsr.planning">PSRObserver</a> </td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../cpsr/stats/class-use/PSRPlanningExperimentStatPublisher.html#cpsr.planning">PSRPlanningExperimentStatPublisher</a> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="cpsr.stats">
<!-- -->
</a>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../cpsr/stats/package-summary.html">cpsr.stats</a> used by <a href="../../cpsr/stats/package-summary.html">cpsr.stats</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../cpsr/stats/class-use/PSRObserver.html#cpsr.stats">PSRObserver</a> </td>
</tr>
</tbody>
</table>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</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-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</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../index.html?cpsr/stats/package-use.html" target="_top">Frames</a></li>
<li><a href="package-use.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>
|
2.3.1.Final-SNAPSHOT/apidocs/org/wildfly/swarm/mail/class-use/EnhancedSMTPServerConsumer.html | wildfly-swarm/wildfly-swarm-javadocs | <!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_151) on Sat Mar 16 04:11:58 MST 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Interface org.wildfly.swarm.mail.EnhancedSMTPServerConsumer (BOM: * : All 2.3.1.Final-SNAPSHOT API)</title>
<meta name="date" content="2019-03-16">
<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 org.wildfly.swarm.mail.EnhancedSMTPServerConsumer (BOM: * : All 2.3.1.Final-SNAPSHOT API)";
}
}
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="../../../../../org/wildfly/swarm/mail/EnhancedSMTPServerConsumer.html" title="interface in org.wildfly.swarm.mail">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../overview-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">Thorntail API, 2.3.1.Final-SNAPSHOT</div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/wildfly/swarm/mail/class-use/EnhancedSMTPServerConsumer.html" target="_top">Frames</a></li>
<li><a href="EnhancedSMTPServerConsumer.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.wildfly.swarm.mail.EnhancedSMTPServerConsumer" class="title">Uses of Interface<br>org.wildfly.swarm.mail.EnhancedSMTPServerConsumer</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="../../../../../org/wildfly/swarm/mail/EnhancedSMTPServerConsumer.html" title="interface in org.wildfly.swarm.mail">EnhancedSMTPServerConsumer</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#org.wildfly.swarm.mail">org.wildfly.swarm.mail</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.wildfly.swarm.mail">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../org/wildfly/swarm/mail/EnhancedSMTPServerConsumer.html" title="interface in org.wildfly.swarm.mail">EnhancedSMTPServerConsumer</a> in <a href="../../../../../org/wildfly/swarm/mail/package-summary.html">org.wildfly.swarm.mail</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="../../../../../org/wildfly/swarm/mail/package-summary.html">org.wildfly.swarm.mail</a> with parameters of type <a href="../../../../../org/wildfly/swarm/mail/EnhancedSMTPServerConsumer.html" title="interface in org.wildfly.swarm.mail">EnhancedSMTPServerConsumer</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../org/wildfly/swarm/mail/EnhancedMailSession.html" title="class in org.wildfly.swarm.mail">EnhancedMailSession</a></code></td>
<td class="colLast"><span class="typeNameLabel">EnhancedMailSession.</span><code><span class="memberNameLink"><a href="../../../../../org/wildfly/swarm/mail/EnhancedMailSession.html#smtpServer-org.wildfly.swarm.mail.EnhancedSMTPServerConsumer-">smtpServer</a></span>(<a href="../../../../../org/wildfly/swarm/mail/EnhancedSMTPServerConsumer.html" title="interface in org.wildfly.swarm.mail">EnhancedSMTPServerConsumer</a> consumer)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/wildfly/swarm/mail/MailFraction.html" title="class in org.wildfly.swarm.mail">MailFraction</a></code></td>
<td class="colLast"><span class="typeNameLabel">MailFraction.</span><code><span class="memberNameLink"><a href="../../../../../org/wildfly/swarm/mail/MailFraction.html#smtpServer-java.lang.String-org.wildfly.swarm.mail.EnhancedSMTPServerConsumer-">smtpServer</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> key,
<a href="../../../../../org/wildfly/swarm/mail/EnhancedSMTPServerConsumer.html" title="interface in org.wildfly.swarm.mail">EnhancedSMTPServerConsumer</a> consumer)</code> </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="../../../../../org/wildfly/swarm/mail/EnhancedSMTPServerConsumer.html" title="interface in org.wildfly.swarm.mail">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../overview-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">Thorntail API, 2.3.1.Final-SNAPSHOT</div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/wildfly/swarm/mail/class-use/EnhancedSMTPServerConsumer.html" target="_top">Frames</a></li>
<li><a href="EnhancedSMTPServerConsumer.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 © 2019 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
|
fae2/fae2/templates/reports/archived_report_list.html | opena11y/fae2 | <table id="{{label_id}}_table" class="details table table-striped table-hover {% if not nosort %}sortable{% endif %}" aria-labelledby="{{label_id}}">
<thead>
<tr>
<th class="text" title="Permanent">Perm</th>
<th class="text">Title</th>
<th class="text" title="Date and time of evaluation">Date/Time</th>
<th class="num" >Pages</th>
<th class="text">Ruleset</th>
<th class="text">URL</th>
<th class="num" >Depth</th>
<th class="text" >Export</th>
</tr>
</thead>
<tbody>
{% if report_list.count %}
{% for report in report_list %}
<tr>
<td class="text">
{% if report.archive %}Y{% endif %}
</td>
<td id="id_title_{{forloop.count}}" class="text" style="min-width: 15em;">
<a href="{% url 'report_rules' report.slug 'rc' %}">
{% if report.title %}
{{ report.title }}
{% else %}
{{ report.url }}
{% endif %}
</a>
</td>
<td class="text date">
{{ report.created|date:"Y-m-d H:i" }}
</td>
<td class="num"> {{ report.page_all_results.count }}</td>
<td class="text">{{ report.ruleset }}</td>
<td class="text">{{ report.url }}</td>
<td class="num"> {{ report.depth }}</td>
<td class="text"><a href="{% url 'report_json' report.slug %}" aria-label="JSON results for {{report.title}}">json</a></td>
</tr>
{% endfor %}
{% else %}
<tr>
<td>No reports available</td>
</tr>
{% endif %}
</tbody>
</table>
|
chrome/html/requester/loggers/logger-drivesync.html | michaelsharman/POSTMan-Chrome-Extension | <div id="logger-drivesync">
<div id="logger-drivesync-settings">
<button class="btn btn-primary" id="google-drive-toggle">Enable syncing with Google Drive</button>
</div>
<div id="logger-drivesync-log-empty-view">
<img src="img/google-drive/product48.png"/><br/>
Google Drive sync disabled
</div>
<div id="logger-drivesync-log-container">
<div id="logger-drivesync-log-header">
<h4>Sync log</h4>
</div>
<ul id="logger-drivesync-items">
</ul>
</div>
<div id="logger-drivesync-actions">
<button class="btn" id="google-drive-close-logger">Close</button>
</div>
</div> |
docs/versions/2.6.1/javadoc-devel/nl/esciencecenter/xenon/adaptors/schedulers/local/LocalSchedulerAdaptor.html | NLeSC/Xenon | <!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 -->
<title>LocalSchedulerAdaptor (xenon-2.3.0 2.6.1 API for Xenon developers)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="LocalSchedulerAdaptor (xenon-2.3.0 2.6.1 API for Xenon developers)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="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="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/local/LocalInteractiveProcessFactory.html" title="class in nl.esciencecenter.xenon.adaptors.schedulers.local"><span class="typeNameLink">Prev Class</span></a></li>
<li>Next Class</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?nl/esciencecenter/xenon/adaptors/schedulers/local/LocalSchedulerAdaptor.html" target="_top">Frames</a></li>
<li><a href="LocalSchedulerAdaptor.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li><a href="#field.summary">Field</a> | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field.detail">Field</a> | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">nl.esciencecenter.xenon.adaptors.schedulers.local</div>
<h2 title="Class LocalSchedulerAdaptor" class="title">Class LocalSchedulerAdaptor</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li><a href="../../../../../../nl/esciencecenter/xenon/adaptors/Adaptor.html" title="class in nl.esciencecenter.xenon.adaptors">nl.esciencecenter.xenon.adaptors.Adaptor</a></li>
<li>
<ul class="inheritance">
<li><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/SchedulerAdaptor.html" title="class in nl.esciencecenter.xenon.adaptors.schedulers">nl.esciencecenter.xenon.adaptors.schedulers.SchedulerAdaptor</a></li>
<li>
<ul class="inheritance">
<li>nl.esciencecenter.xenon.adaptors.schedulers.local.LocalSchedulerAdaptor</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><a href="../../../../../../nl/esciencecenter/xenon/AdaptorDescription.html" title="interface in nl.esciencecenter.xenon">AdaptorDescription</a>, <a href="../../../../../../nl/esciencecenter/xenon/schedulers/SchedulerAdaptorDescription.html" title="interface in nl.esciencecenter.xenon.schedulers">SchedulerAdaptorDescription</a></dd>
</dl>
<hr>
<br>
<pre>public class <span class="typeNameLabel">LocalSchedulerAdaptor</span>
extends <a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/SchedulerAdaptor.html" title="class in nl.esciencecenter.xenon.adaptors.schedulers">SchedulerAdaptor</a></pre>
<div class="block">LocalFiles implements an Xenon <code>Jobs</code> adaptor for local job operations.</div>
<dl>
<dt><span class="simpleTagLabel">Since:</span></dt>
<dd>1.0</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../../nl/esciencecenter/xenon/schedulers/Scheduler.html" title="class in nl.esciencecenter.xenon.schedulers"><code>Scheduler</code></a></dd>
</dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd"> </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><span class="memberNameLink"><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/local/LocalSchedulerAdaptor.html#ADAPTOR_DESCRIPTION">ADAPTOR_DESCRIPTION</a></span></code>
<div class="block">Description of the adaptor</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static java.lang.String[]</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/local/LocalSchedulerAdaptor.html#ADAPTOR_LOCATIONS">ADAPTOR_LOCATIONS</a></span></code>
<div class="block">The locations supported by the adaptor</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/local/LocalSchedulerAdaptor.html#ADAPTOR_NAME">ADAPTOR_NAME</a></span></code>
<div class="block">Name of the local adaptor is defined in the engine.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/local/LocalSchedulerAdaptor.html#INFO">INFO</a></span></code>
<div class="block">Local queue information start with this prefix.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/local/LocalSchedulerAdaptor.html#JOBS">JOBS</a></span></code>
<div class="block">Local job information start with this prefix.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/local/LocalSchedulerAdaptor.html#MAX_HISTORY">MAX_HISTORY</a></span></code>
<div class="block">Property for maximum history length for finished jobs</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/local/LocalSchedulerAdaptor.html#MULTIQ">MULTIQ</a></span></code>
<div class="block">Local multi queue properties start with this prefix.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/local/LocalSchedulerAdaptor.html#MULTIQ_MAX_CONCURRENT">MULTIQ_MAX_CONCURRENT</a></span></code>
<div class="block">Property for the maximum number of concurrent jobs in the multi queue.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/local/LocalSchedulerAdaptor.html#POLLING_DELAY">POLLING_DELAY</a></span></code>
<div class="block">Property for maximum history length for finished jobs</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/local/LocalSchedulerAdaptor.html#PREFIX">PREFIX</a></span></code>
<div class="block">Local properties start with this prefix.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/local/LocalSchedulerAdaptor.html#QUEUE">QUEUE</a></span></code>
<div class="block">Local queue properties start with this prefix.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/local/LocalSchedulerAdaptor.html#SUBMITTED">SUBMITTED</a></span></code>
<div class="block">How many jobs have been submitted locally.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static <a href="../../../../../../nl/esciencecenter/xenon/XenonPropertyDescription.html" title="class in nl.esciencecenter.xenon">XenonPropertyDescription</a>[]</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/local/LocalSchedulerAdaptor.html#VALID_PROPERTIES">VALID_PROPERTIES</a></span></code>
<div class="block">The properties supported by this adaptor</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="fields.inherited.from.class.nl.esciencecenter.xenon.adaptors.schedulers.SchedulerAdaptor">
<!-- -->
</a>
<h3>Fields inherited from class nl.esciencecenter.xenon.adaptors.schedulers.<a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/SchedulerAdaptor.html" title="class in nl.esciencecenter.xenon.adaptors.schedulers">SchedulerAdaptor</a></h3>
<code><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/SchedulerAdaptor.html#ADAPTORS_PREFIX">ADAPTORS_PREFIX</a></code></li>
</ul>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/local/LocalSchedulerAdaptor.html#LocalSchedulerAdaptor--">LocalSchedulerAdaptor</a></span>()</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code><a href="../../../../../../nl/esciencecenter/xenon/schedulers/Scheduler.html" title="class in nl.esciencecenter.xenon.schedulers">Scheduler</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/local/LocalSchedulerAdaptor.html#createScheduler-java.lang.String-nl.esciencecenter.xenon.credentials.Credential-java.util.Map-">createScheduler</a></span>(java.lang.String location,
<a href="../../../../../../nl/esciencecenter/xenon/credentials/Credential.html" title="interface in nl.esciencecenter.xenon.credentials">Credential</a> credential,
java.util.Map<java.lang.String,java.lang.String> properties)</code> </td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>java.lang.Class[]</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/local/LocalSchedulerAdaptor.html#getSupportedCredentials--">getSupportedCredentials</a></span>()</code>
<div class="block">Get the supported credential types for this adaptor.</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/local/LocalSchedulerAdaptor.html#isEmbedded--">isEmbedded</a></span>()</code>
<div class="block">Is this an embedded scheduler ?
Embedded schedulers are implemented inside the Xenon process itself.</div>
</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/local/LocalSchedulerAdaptor.html#supportsInteractive--">supportsInteractive</a></span>()</code>
<div class="block">Does this Scheduler supports the submission of interactive jobs ?
For interactive jobs the standard streams of the job must be handled by the submitting process.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.nl.esciencecenter.xenon.adaptors.schedulers.SchedulerAdaptor">
<!-- -->
</a>
<h3>Methods inherited from class nl.esciencecenter.xenon.adaptors.schedulers.<a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/SchedulerAdaptor.html" title="class in nl.esciencecenter.xenon.adaptors.schedulers">SchedulerAdaptor</a></h3>
<code><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/SchedulerAdaptor.html#supportsBatch--">supportsBatch</a>, <a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/SchedulerAdaptor.html#usesFileSystem--">usesFileSystem</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.nl.esciencecenter.xenon.adaptors.Adaptor">
<!-- -->
</a>
<h3>Methods inherited from class nl.esciencecenter.xenon.adaptors.<a href="../../../../../../nl/esciencecenter/xenon/adaptors/Adaptor.html" title="class in nl.esciencecenter.xenon.adaptors">Adaptor</a></h3>
<code><a href="../../../../../../nl/esciencecenter/xenon/adaptors/Adaptor.html#getDescription--">getDescription</a>, <a href="../../../../../../nl/esciencecenter/xenon/adaptors/Adaptor.html#getName--">getName</a>, <a href="../../../../../../nl/esciencecenter/xenon/adaptors/Adaptor.html#getNewUniqueID--">getNewUniqueID</a>, <a href="../../../../../../nl/esciencecenter/xenon/adaptors/Adaptor.html#getSupportedLocations--">getSupportedLocations</a>, <a href="../../../../../../nl/esciencecenter/xenon/adaptors/Adaptor.html#getSupportedProperties--">getSupportedProperties</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.nl.esciencecenter.xenon.AdaptorDescription">
<!-- -->
</a>
<h3>Methods inherited from interface nl.esciencecenter.xenon.<a href="../../../../../../nl/esciencecenter/xenon/AdaptorDescription.html" title="interface in nl.esciencecenter.xenon">AdaptorDescription</a></h3>
<code><a href="../../../../../../nl/esciencecenter/xenon/AdaptorDescription.html#getDescription--">getDescription</a>, <a href="../../../../../../nl/esciencecenter/xenon/AdaptorDescription.html#getName--">getName</a>, <a href="../../../../../../nl/esciencecenter/xenon/AdaptorDescription.html#getSupportedLocations--">getSupportedLocations</a>, <a href="../../../../../../nl/esciencecenter/xenon/AdaptorDescription.html#getSupportedProperties--">getSupportedProperties</a></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="ADAPTOR_NAME">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ADAPTOR_NAME</h4>
<pre>public static final java.lang.String ADAPTOR_NAME</pre>
<div class="block">Name of the local adaptor is defined in the engine.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../../constant-values.html#nl.esciencecenter.xenon.adaptors.schedulers.local.LocalSchedulerAdaptor.ADAPTOR_NAME">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="PREFIX">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>PREFIX</h4>
<pre>public static final java.lang.String PREFIX</pre>
<div class="block">Local properties start with this prefix.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../../constant-values.html#nl.esciencecenter.xenon.adaptors.schedulers.local.LocalSchedulerAdaptor.PREFIX">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="ADAPTOR_DESCRIPTION">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ADAPTOR_DESCRIPTION</h4>
<pre>public static final java.lang.String ADAPTOR_DESCRIPTION</pre>
<div class="block">Description of the adaptor</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../../constant-values.html#nl.esciencecenter.xenon.adaptors.schedulers.local.LocalSchedulerAdaptor.ADAPTOR_DESCRIPTION">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="QUEUE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>QUEUE</h4>
<pre>public static final java.lang.String QUEUE</pre>
<div class="block">Local queue properties start with this prefix.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../../constant-values.html#nl.esciencecenter.xenon.adaptors.schedulers.local.LocalSchedulerAdaptor.QUEUE">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="MAX_HISTORY">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MAX_HISTORY</h4>
<pre>public static final java.lang.String MAX_HISTORY</pre>
<div class="block">Property for maximum history length for finished jobs</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../../constant-values.html#nl.esciencecenter.xenon.adaptors.schedulers.local.LocalSchedulerAdaptor.MAX_HISTORY">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="POLLING_DELAY">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>POLLING_DELAY</h4>
<pre>public static final java.lang.String POLLING_DELAY</pre>
<div class="block">Property for maximum history length for finished jobs</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../../constant-values.html#nl.esciencecenter.xenon.adaptors.schedulers.local.LocalSchedulerAdaptor.POLLING_DELAY">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="MULTIQ">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MULTIQ</h4>
<pre>public static final java.lang.String MULTIQ</pre>
<div class="block">Local multi queue properties start with this prefix.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../../constant-values.html#nl.esciencecenter.xenon.adaptors.schedulers.local.LocalSchedulerAdaptor.MULTIQ">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="MULTIQ_MAX_CONCURRENT">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MULTIQ_MAX_CONCURRENT</h4>
<pre>public static final java.lang.String MULTIQ_MAX_CONCURRENT</pre>
<div class="block">Property for the maximum number of concurrent jobs in the multi queue.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../../constant-values.html#nl.esciencecenter.xenon.adaptors.schedulers.local.LocalSchedulerAdaptor.MULTIQ_MAX_CONCURRENT">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="INFO">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>INFO</h4>
<pre>public static final java.lang.String INFO</pre>
<div class="block">Local queue information start with this prefix.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../../constant-values.html#nl.esciencecenter.xenon.adaptors.schedulers.local.LocalSchedulerAdaptor.INFO">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="JOBS">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>JOBS</h4>
<pre>public static final java.lang.String JOBS</pre>
<div class="block">Local job information start with this prefix.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../../constant-values.html#nl.esciencecenter.xenon.adaptors.schedulers.local.LocalSchedulerAdaptor.JOBS">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="SUBMITTED">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SUBMITTED</h4>
<pre>public static final java.lang.String SUBMITTED</pre>
<div class="block">How many jobs have been submitted locally.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../../constant-values.html#nl.esciencecenter.xenon.adaptors.schedulers.local.LocalSchedulerAdaptor.SUBMITTED">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="ADAPTOR_LOCATIONS">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ADAPTOR_LOCATIONS</h4>
<pre>private static final java.lang.String[] ADAPTOR_LOCATIONS</pre>
<div class="block">The locations supported by the adaptor</div>
</li>
</ul>
<a name="VALID_PROPERTIES">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>VALID_PROPERTIES</h4>
<pre>private static final <a href="../../../../../../nl/esciencecenter/xenon/XenonPropertyDescription.html" title="class in nl.esciencecenter.xenon">XenonPropertyDescription</a>[] VALID_PROPERTIES</pre>
<div class="block">The properties supported by this adaptor</div>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="LocalSchedulerAdaptor--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>LocalSchedulerAdaptor</h4>
<pre>public LocalSchedulerAdaptor()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="isEmbedded--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isEmbedded</h4>
<pre>public boolean isEmbedded()</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface: <code><a href="../../../../../../nl/esciencecenter/xenon/schedulers/SchedulerAdaptorDescription.html#isEmbedded--">SchedulerAdaptorDescription</a></code></span></div>
<div class="block">Is this an embedded scheduler ?
Embedded schedulers are implemented inside the Xenon process itself. Therefore this process needs to remain active for its jobs to run. Ending an online
scheduler will typically orphan or kill all jobs that were submitted to it.
Non-embedded schedulers do not need to remain active for their jobs to run. A submitted job will typically be handed over to some external server that
will manage the job for the rest of its lifetime.</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../../../nl/esciencecenter/xenon/schedulers/SchedulerAdaptorDescription.html#isEmbedded--">isEmbedded</a></code> in interface <code><a href="../../../../../../nl/esciencecenter/xenon/schedulers/SchedulerAdaptorDescription.html" title="interface in nl.esciencecenter.xenon.schedulers">SchedulerAdaptorDescription</a></code></dd>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/SchedulerAdaptor.html#isEmbedded--">isEmbedded</a></code> in class <code><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/SchedulerAdaptor.html" title="class in nl.esciencecenter.xenon.adaptors.schedulers">SchedulerAdaptor</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>if this scheduler is embedded.</dd>
</dl>
</li>
</ul>
<a name="supportsInteractive--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>supportsInteractive</h4>
<pre>public boolean supportsInteractive()</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface: <code><a href="../../../../../../nl/esciencecenter/xenon/schedulers/SchedulerAdaptorDescription.html#supportsInteractive--">SchedulerAdaptorDescription</a></code></span></div>
<div class="block">Does this Scheduler supports the submission of interactive jobs ?
For interactive jobs the standard streams of the job must be handled by the submitting process. Failing to do so may cause the job to hang indefinitely.</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../../../nl/esciencecenter/xenon/schedulers/SchedulerAdaptorDescription.html#supportsInteractive--">supportsInteractive</a></code> in interface <code><a href="../../../../../../nl/esciencecenter/xenon/schedulers/SchedulerAdaptorDescription.html" title="interface in nl.esciencecenter.xenon.schedulers">SchedulerAdaptorDescription</a></code></dd>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/SchedulerAdaptor.html#supportsInteractive--">supportsInteractive</a></code> in class <code><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/SchedulerAdaptor.html" title="class in nl.esciencecenter.xenon.adaptors.schedulers">SchedulerAdaptor</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>if this scheduler supports the submission of interactive jobs ?</dd>
</dl>
</li>
</ul>
<a name="getSupportedCredentials--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getSupportedCredentials</h4>
<pre>public java.lang.Class[] getSupportedCredentials()</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface: <code><a href="../../../../../../nl/esciencecenter/xenon/AdaptorDescription.html#getSupportedCredentials--">AdaptorDescription</a></code></span></div>
<div class="block">Get the supported credential types for this adaptor.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the credential types supported by this adaptor.</dd>
</dl>
</li>
</ul>
<a name="createScheduler-java.lang.String-nl.esciencecenter.xenon.credentials.Credential-java.util.Map-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>createScheduler</h4>
<pre>public <a href="../../../../../../nl/esciencecenter/xenon/schedulers/Scheduler.html" title="class in nl.esciencecenter.xenon.schedulers">Scheduler</a> createScheduler(java.lang.String location,
<a href="../../../../../../nl/esciencecenter/xenon/credentials/Credential.html" title="interface in nl.esciencecenter.xenon.credentials">Credential</a> credential,
java.util.Map<java.lang.String,java.lang.String> properties)
throws <a href="../../../../../../nl/esciencecenter/xenon/XenonException.html" title="class in nl.esciencecenter.xenon">XenonException</a></pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/SchedulerAdaptor.html#createScheduler-java.lang.String-nl.esciencecenter.xenon.credentials.Credential-java.util.Map-">createScheduler</a></code> in class <code><a href="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/SchedulerAdaptor.html" title="class in nl.esciencecenter.xenon.adaptors.schedulers">SchedulerAdaptor</a></code></dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../../../../../nl/esciencecenter/xenon/XenonException.html" title="class in nl.esciencecenter.xenon">XenonException</a></code></dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="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="../../../../../../nl/esciencecenter/xenon/adaptors/schedulers/local/LocalInteractiveProcessFactory.html" title="class in nl.esciencecenter.xenon.adaptors.schedulers.local"><span class="typeNameLink">Prev Class</span></a></li>
<li>Next Class</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?nl/esciencecenter/xenon/adaptors/schedulers/local/LocalSchedulerAdaptor.html" target="_top">Frames</a></li>
<li><a href="LocalSchedulerAdaptor.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li><a href="#field.summary">Field</a> | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field.detail">Field</a> | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
2.7.0.Final/apidocs/org/wildfly/swarm/config/infinispan/cache_container/ScatteredCacheSupplier.html | wildfly-swarm/wildfly-swarm-javadocs | <!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_151) on Wed Jun 10 13:52:52 MST 2020 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ScatteredCacheSupplier (BOM: * : All 2.7.0.Final API)</title>
<meta name="date" content="2020-06-10">
<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="ScatteredCacheSupplier (BOM: * : All 2.7.0.Final API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":6};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/ScatteredCacheSupplier.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-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">Thorntail API, 2.7.0.Final</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../org/wildfly/swarm/config/infinispan/cache_container/ScatteredCacheConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferComponent.html" title="class in org.wildfly.swarm.config.infinispan.cache_container"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/wildfly/swarm/config/infinispan/cache_container/ScatteredCacheSupplier.html" target="_top">Frames</a></li>
<li><a href="ScatteredCacheSupplier.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </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.wildfly.swarm.config.infinispan.cache_container</div>
<h2 title="Interface ScatteredCacheSupplier" class="title">Interface ScatteredCacheSupplier<T extends <a href="../../../../../../org/wildfly/swarm/config/infinispan/cache_container/ScatteredCache.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">ScatteredCache</a>></h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>Functional Interface:</dt>
<dd>This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.</dd>
</dl>
<hr>
<br>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/FunctionalInterface.html?is-external=true" title="class or interface in java.lang">@FunctionalInterface</a>
public interface <span class="typeNameLabel">ScatteredCacheSupplier<T extends <a href="../../../../../../org/wildfly/swarm/config/infinispan/cache_container/ScatteredCache.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">ScatteredCache</a>></span></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/infinispan/cache_container/ScatteredCache.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">ScatteredCache</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/infinispan/cache_container/ScatteredCacheSupplier.html#get--">get</a></span>()</code>
<div class="block">Constructed instance of ScatteredCache resource</div>
</td>
</tr>
</table>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="get--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>get</h4>
<pre><a href="../../../../../../org/wildfly/swarm/config/infinispan/cache_container/ScatteredCache.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">ScatteredCache</a> get()</pre>
<div class="block">Constructed instance of ScatteredCache resource</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The instance</dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/ScatteredCacheSupplier.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-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">Thorntail API, 2.7.0.Final</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../org/wildfly/swarm/config/infinispan/cache_container/ScatteredCacheConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferComponent.html" title="class in org.wildfly.swarm.config.infinispan.cache_container"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/wildfly/swarm/config/infinispan/cache_container/ScatteredCacheSupplier.html" target="_top">Frames</a></li>
<li><a href="ScatteredCacheSupplier.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2020 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
|
docs/solr-core/org/apache/solr/core/class-use/RequestHandlers.html | johannesbraun/clm_autocomplete | <!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_102) on Wed Nov 02 19:53:02 IST 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Uses of Class org.apache.solr.core.RequestHandlers (Solr 6.3.0 API)</title>
<meta name="date" content="2016-11-02">
<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 org.apache.solr.core.RequestHandlers (Solr 6.3.0 API)";
}
}
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="../../../../../org/apache/solr/core/RequestHandlers.html" title="class in org.apache.solr.core">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/solr/core/class-use/RequestHandlers.html" target="_top">Frames</a></li>
<li><a href="RequestHandlers.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class org.apache.solr.core.RequestHandlers" class="title">Uses of Class<br>org.apache.solr.core.RequestHandlers</h2>
</div>
<div class="classUseContainer">No usage of org.apache.solr.core.RequestHandlers</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="../../../../../org/apache/solr/core/RequestHandlers.html" title="class in org.apache.solr.core">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/solr/core/class-use/RequestHandlers.html" target="_top">Frames</a></li>
<li><a href="RequestHandlers.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>
<i>Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.</i>
<script src='../../../../../prettify.js' type='text/javascript'></script>
<script type='text/javascript'>
(function(){
var oldonload = window.onload;
if (typeof oldonload != 'function') {
window.onload = prettyPrint;
} else {
window.onload = function() {
oldonload();
prettyPrint();
}
}
})();
</script>
</small></p>
</body>
</html>
|
Documentation/library/telnetlib.html | leesavide/editorial-docs |
<!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>20.14. telnetlib — Telnet client — Editorial Documentation</title>
<link rel="stylesheet" href="../_static/pythonista.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
VERSION: '2.7.4',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
<link rel="search" type="application/opensearchdescription+xml"
title="Search within Editorial Documentation"
href="../_static/opensearch.xml"/>
<link rel="author" title="About these documents" href="../about.html" />
<link rel="copyright" title="Copyright" href="../copyright.html" />
<link rel="top" title="Editorial Documentation" href="../index.html" />
<link rel="up" title="20. Internet Protocols and Support" href="internet.html" />
<link rel="next" title="20.15. uuid — UUID objects according to RFC 4122" href="uuid.html" />
<link rel="prev" title="20.13. smtpd — SMTP Server" href="smtpd.html" />
<link rel="shortcut icon" type="image/png" href="../_static/py.png" />
<meta name = "viewport" content = "width=device-width; initial-scale=1.0; minimum-scale=1.0; maximum-scale=1.0">
<script type="text/javascript">
var getTextForSample = function(i) {
codeBlock = document.getElementsByClassName('highlight-python')[i];
return codeBlock.innerText;
}
var copySample = function (i) {
window.location.href = '/__pythonista_copy__/' + encodeURI(getTextForSample(i));
}
var openSample = function (i) {
window.location.href = '/__pythonista_open__/' + encodeURI(getTextForSample(i));
}
//Source: http://ejohn.org/blog/partial-functions-in-javascript/
Function.prototype.partial = function() {
var fn = this,
args = Array.prototype.slice.call(arguments);
return function() {
var arg = 0;
for (var i = 0; i < args.length && arg < arguments.length; i++)
if (args[i] === undefined) args[i] = arguments[arg++];
return fn.apply(this, args);
};
};
window.onload=function() {
//Add "Copy" and "Open in Editor" buttons for code samples:
var inApp = navigator.userAgent.match(/AppleWebKit/i) != null && navigator.userAgent.match(/Safari/i) == null;
if (inApp) {
codeBlocks = document.getElementsByClassName('highlight-python');
for (var i = 0; i < codeBlocks.length; i++) {
codeBlock = codeBlocks[i];
if (codeBlock.innerText.indexOf('>>>') == 0) {
//Don't add header for interactive sessions
continue;
}
var codeHeader = document.createElement('div');
codeHeader.className = 'pythonista-code-header';
var copyButton = document.createElement('button');
copyButton.className = 'pythonista-button';
copyButton.innerText = 'Copy';
copyButton.addEventListener('click', copySample.partial(i));
codeHeader.appendChild(copyButton);
codeBlock.parentElement.insertBefore(codeHeader, codeBlock);
}
}
}
</script>
</head>
<body ontouchstart="">
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="uuid.html" title="20.15. uuid — UUID objects according to RFC 4122"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="smtpd.html" title="20.13. smtpd — SMTP Server"
accesskey="P">previous</a> |</li>
<li><a href="http://omz-software.com/editorial"><img src="../_static/py.png" alt=""
style="vertical-align: middle; margin-top: -4px; margin-right: 4px;"/></a></li>
<li><a href="../index.html">Editorial Documentation</a> »</li>
<li><a href="index.html" >The Python Standard Library</a> »</li>
<li><a href="internet.html" accesskey="U">20. Internet Protocols and Support</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="body">
<div class="section" id="module-telnetlib">
<span id="telnetlib-telnet-client"></span><h1>20.14. <a class="reference internal" href="#module-telnetlib" title="telnetlib: Telnet client class."><tt class="xref py py-mod docutils literal"><span class="pre">telnetlib</span></tt></a> — Telnet client<a class="headerlink" href="#module-telnetlib" title="Permalink to this headline">¶</a></h1>
<p id="index-0"><strong>Source code:</strong> <a class="reference external" href="http://hg.python.org/cpython/file/2.7/Lib/telnetlib.py">Lib/telnetlib.py</a></p>
<hr class="docutils" />
<p>The <a class="reference internal" href="#module-telnetlib" title="telnetlib: Telnet client class."><tt class="xref py py-mod docutils literal"><span class="pre">telnetlib</span></tt></a> module provides a <a class="reference internal" href="#telnetlib.Telnet" title="telnetlib.Telnet"><tt class="xref py py-class docutils literal"><span class="pre">Telnet</span></tt></a> class that implements the
Telnet protocol. See <span class="target" id="index-1"></span><a class="rfc reference external" href="http://tools.ietf.org/html/rfc854.html"><strong>RFC 854</strong></a> for details about the protocol. In addition, it
provides symbolic constants for the protocol characters (see below), and for the
telnet options. The symbolic names of the telnet options follow the definitions
in <tt class="docutils literal"><span class="pre">arpa/telnet.h</span></tt>, with the leading <tt class="docutils literal"><span class="pre">TELOPT_</span></tt> removed. For symbolic names
of options which are traditionally not included in <tt class="docutils literal"><span class="pre">arpa/telnet.h</span></tt>, see the
module source itself.</p>
<p>The symbolic constants for the telnet commands are: IAC, DONT, DO, WONT, WILL,
SE (Subnegotiation End), NOP (No Operation), DM (Data Mark), BRK (Break), IP
(Interrupt process), AO (Abort output), AYT (Are You There), EC (Erase
Character), EL (Erase Line), GA (Go Ahead), SB (Subnegotiation Begin).</p>
<dl class="class">
<dt id="telnetlib.Telnet">
<em class="property">class </em><tt class="descclassname">telnetlib.</tt><tt class="descname">Telnet</tt><big>(</big><span class="optional">[</span><em>host</em><span class="optional">[</span>, <em>port</em><span class="optional">[</span>, <em>timeout</em><span class="optional">]</span><span class="optional">]</span><span class="optional">]</span><big>)</big><a class="headerlink" href="#telnetlib.Telnet" title="Permalink to this definition">¶</a></dt>
<dd><p><a class="reference internal" href="#telnetlib.Telnet" title="telnetlib.Telnet"><tt class="xref py py-class docutils literal"><span class="pre">Telnet</span></tt></a> represents a connection to a Telnet server. The instance is
initially not connected by default; the <a class="reference internal" href="functions.html#open" title="open"><tt class="xref py py-meth docutils literal"><span class="pre">open()</span></tt></a> method must be used to
establish a connection. Alternatively, the host name and optional port
number can be passed to the constructor, to, in which case the connection to
the server will be established before the constructor returns. The optional
<em>timeout</em> parameter specifies a timeout in seconds for blocking operations
like the connection attempt (if not specified, the global default timeout
setting will be used).</p>
<p>Do not reopen an already connected instance.</p>
<p>This class has many <tt class="xref py py-meth docutils literal"><span class="pre">read_*()</span></tt> methods. Note that some of them raise
<a class="reference internal" href="exceptions.html#exceptions.EOFError" title="exceptions.EOFError"><tt class="xref py py-exc docutils literal"><span class="pre">EOFError</span></tt></a> when the end of the connection is read, because they can return
an empty string for other reasons. See the individual descriptions below.</p>
<p class="versionchanged">
<span class="versionmodified">Changed in version 2.6: </span><em>timeout</em> was added.</p>
</dd></dl>
<div class="admonition-see-also admonition seealso">
<p class="first admonition-title">See also</p>
<dl class="last docutils">
<dt><span class="target" id="index-2"></span><a class="rfc reference external" href="http://tools.ietf.org/html/rfc854.html"><strong>RFC 854</strong></a> - Telnet Protocol Specification</dt>
<dd>Definition of the Telnet protocol.</dd>
</dl>
</div>
<div class="section" id="telnet-objects">
<span id="id1"></span><h2>20.14.1. Telnet Objects<a class="headerlink" href="#telnet-objects" title="Permalink to this headline">¶</a></h2>
<p><a class="reference internal" href="#telnetlib.Telnet" title="telnetlib.Telnet"><tt class="xref py py-class docutils literal"><span class="pre">Telnet</span></tt></a> instances have the following methods:</p>
<dl class="method">
<dt id="telnetlib.Telnet.read_until">
<tt class="descclassname">Telnet.</tt><tt class="descname">read_until</tt><big>(</big><em>expected</em><span class="optional">[</span>, <em>timeout</em><span class="optional">]</span><big>)</big><a class="headerlink" href="#telnetlib.Telnet.read_until" title="Permalink to this definition">¶</a></dt>
<dd><p>Read until a given string, <em>expected</em>, is encountered or until <em>timeout</em> seconds
have passed.</p>
<p>When no match is found, return whatever is available instead, possibly the empty
string. Raise <a class="reference internal" href="exceptions.html#exceptions.EOFError" title="exceptions.EOFError"><tt class="xref py py-exc docutils literal"><span class="pre">EOFError</span></tt></a> if the connection is closed and no cooked data is
available.</p>
</dd></dl>
<dl class="method">
<dt id="telnetlib.Telnet.read_all">
<tt class="descclassname">Telnet.</tt><tt class="descname">read_all</tt><big>(</big><big>)</big><a class="headerlink" href="#telnetlib.Telnet.read_all" title="Permalink to this definition">¶</a></dt>
<dd><p>Read all data until EOF; block until connection closed.</p>
</dd></dl>
<dl class="method">
<dt id="telnetlib.Telnet.read_some">
<tt class="descclassname">Telnet.</tt><tt class="descname">read_some</tt><big>(</big><big>)</big><a class="headerlink" href="#telnetlib.Telnet.read_some" title="Permalink to this definition">¶</a></dt>
<dd><p>Read at least one byte of cooked data unless EOF is hit. Return <tt class="docutils literal"><span class="pre">''</span></tt> if EOF is
hit. Block if no data is immediately available.</p>
</dd></dl>
<dl class="method">
<dt id="telnetlib.Telnet.read_very_eager">
<tt class="descclassname">Telnet.</tt><tt class="descname">read_very_eager</tt><big>(</big><big>)</big><a class="headerlink" href="#telnetlib.Telnet.read_very_eager" title="Permalink to this definition">¶</a></dt>
<dd><p>Read everything that can be without blocking in I/O (eager).</p>
<p>Raise <a class="reference internal" href="exceptions.html#exceptions.EOFError" title="exceptions.EOFError"><tt class="xref py py-exc docutils literal"><span class="pre">EOFError</span></tt></a> if connection closed and no cooked data available. Return
<tt class="docutils literal"><span class="pre">''</span></tt> if no cooked data available otherwise. Do not block unless in the midst
of an IAC sequence.</p>
</dd></dl>
<dl class="method">
<dt id="telnetlib.Telnet.read_eager">
<tt class="descclassname">Telnet.</tt><tt class="descname">read_eager</tt><big>(</big><big>)</big><a class="headerlink" href="#telnetlib.Telnet.read_eager" title="Permalink to this definition">¶</a></dt>
<dd><p>Read readily available data.</p>
<p>Raise <a class="reference internal" href="exceptions.html#exceptions.EOFError" title="exceptions.EOFError"><tt class="xref py py-exc docutils literal"><span class="pre">EOFError</span></tt></a> if connection closed and no cooked data available. Return
<tt class="docutils literal"><span class="pre">''</span></tt> if no cooked data available otherwise. Do not block unless in the midst
of an IAC sequence.</p>
</dd></dl>
<dl class="method">
<dt id="telnetlib.Telnet.read_lazy">
<tt class="descclassname">Telnet.</tt><tt class="descname">read_lazy</tt><big>(</big><big>)</big><a class="headerlink" href="#telnetlib.Telnet.read_lazy" title="Permalink to this definition">¶</a></dt>
<dd><p>Process and return data already in the queues (lazy).</p>
<p>Raise <a class="reference internal" href="exceptions.html#exceptions.EOFError" title="exceptions.EOFError"><tt class="xref py py-exc docutils literal"><span class="pre">EOFError</span></tt></a> if connection closed and no data available. Return <tt class="docutils literal"><span class="pre">''</span></tt>
if no cooked data available otherwise. Do not block unless in the midst of an
IAC sequence.</p>
</dd></dl>
<dl class="method">
<dt id="telnetlib.Telnet.read_very_lazy">
<tt class="descclassname">Telnet.</tt><tt class="descname">read_very_lazy</tt><big>(</big><big>)</big><a class="headerlink" href="#telnetlib.Telnet.read_very_lazy" title="Permalink to this definition">¶</a></dt>
<dd><p>Return any data available in the cooked queue (very lazy).</p>
<p>Raise <a class="reference internal" href="exceptions.html#exceptions.EOFError" title="exceptions.EOFError"><tt class="xref py py-exc docutils literal"><span class="pre">EOFError</span></tt></a> if connection closed and no data available. Return <tt class="docutils literal"><span class="pre">''</span></tt>
if no cooked data available otherwise. This method never blocks.</p>
</dd></dl>
<dl class="method">
<dt id="telnetlib.Telnet.read_sb_data">
<tt class="descclassname">Telnet.</tt><tt class="descname">read_sb_data</tt><big>(</big><big>)</big><a class="headerlink" href="#telnetlib.Telnet.read_sb_data" title="Permalink to this definition">¶</a></dt>
<dd><p>Return the data collected between a SB/SE pair (suboption begin/end). The
callback should access these data when it was invoked with a <tt class="docutils literal"><span class="pre">SE</span></tt> command.
This method never blocks.</p>
<p class="versionadded">
<span class="versionmodified">New in version 2.3.</span></p>
</dd></dl>
<dl class="method">
<dt id="telnetlib.Telnet.open">
<tt class="descclassname">Telnet.</tt><tt class="descname">open</tt><big>(</big><em>host</em><span class="optional">[</span>, <em>port</em><span class="optional">[</span>, <em>timeout</em><span class="optional">]</span><span class="optional">]</span><big>)</big><a class="headerlink" href="#telnetlib.Telnet.open" title="Permalink to this definition">¶</a></dt>
<dd><p>Connect to a host. The optional second argument is the port number, which
defaults to the standard Telnet port (23). The optional <em>timeout</em> parameter
specifies a timeout in seconds for blocking operations like the connection
attempt (if not specified, the global default timeout setting will be used).</p>
<p>Do not try to reopen an already connected instance.</p>
<p class="versionchanged">
<span class="versionmodified">Changed in version 2.6: </span><em>timeout</em> was added.</p>
</dd></dl>
<dl class="method">
<dt id="telnetlib.Telnet.msg">
<tt class="descclassname">Telnet.</tt><tt class="descname">msg</tt><big>(</big><em>msg</em><span class="optional">[</span>, <em>*args</em><span class="optional">]</span><big>)</big><a class="headerlink" href="#telnetlib.Telnet.msg" title="Permalink to this definition">¶</a></dt>
<dd><p>Print a debug message when the debug level is <tt class="docutils literal"><span class="pre">></span></tt> 0. If extra arguments are
present, they are substituted in the message using the standard string
formatting operator.</p>
</dd></dl>
<dl class="method">
<dt id="telnetlib.Telnet.set_debuglevel">
<tt class="descclassname">Telnet.</tt><tt class="descname">set_debuglevel</tt><big>(</big><em>debuglevel</em><big>)</big><a class="headerlink" href="#telnetlib.Telnet.set_debuglevel" title="Permalink to this definition">¶</a></dt>
<dd><p>Set the debug level. The higher the value of <em>debuglevel</em>, the more debug
output you get (on <tt class="docutils literal"><span class="pre">sys.stdout</span></tt>).</p>
</dd></dl>
<dl class="method">
<dt id="telnetlib.Telnet.close">
<tt class="descclassname">Telnet.</tt><tt class="descname">close</tt><big>(</big><big>)</big><a class="headerlink" href="#telnetlib.Telnet.close" title="Permalink to this definition">¶</a></dt>
<dd><p>Close the connection.</p>
</dd></dl>
<dl class="method">
<dt id="telnetlib.Telnet.get_socket">
<tt class="descclassname">Telnet.</tt><tt class="descname">get_socket</tt><big>(</big><big>)</big><a class="headerlink" href="#telnetlib.Telnet.get_socket" title="Permalink to this definition">¶</a></dt>
<dd><p>Return the socket object used internally.</p>
</dd></dl>
<dl class="method">
<dt id="telnetlib.Telnet.fileno">
<tt class="descclassname">Telnet.</tt><tt class="descname">fileno</tt><big>(</big><big>)</big><a class="headerlink" href="#telnetlib.Telnet.fileno" title="Permalink to this definition">¶</a></dt>
<dd><p>Return the file descriptor of the socket object used internally.</p>
</dd></dl>
<dl class="method">
<dt id="telnetlib.Telnet.write">
<tt class="descclassname">Telnet.</tt><tt class="descname">write</tt><big>(</big><em>buffer</em><big>)</big><a class="headerlink" href="#telnetlib.Telnet.write" title="Permalink to this definition">¶</a></dt>
<dd><p>Write a string to the socket, doubling any IAC characters. This can block if the
connection is blocked. May raise <a class="reference internal" href="socket.html#socket.error" title="socket.error"><tt class="xref py py-exc docutils literal"><span class="pre">socket.error</span></tt></a> if the connection is
closed.</p>
</dd></dl>
<dl class="method">
<dt id="telnetlib.Telnet.interact">
<tt class="descclassname">Telnet.</tt><tt class="descname">interact</tt><big>(</big><big>)</big><a class="headerlink" href="#telnetlib.Telnet.interact" title="Permalink to this definition">¶</a></dt>
<dd><p>Interaction function, emulates a very dumb Telnet client.</p>
</dd></dl>
<dl class="method">
<dt id="telnetlib.Telnet.mt_interact">
<tt class="descclassname">Telnet.</tt><tt class="descname">mt_interact</tt><big>(</big><big>)</big><a class="headerlink" href="#telnetlib.Telnet.mt_interact" title="Permalink to this definition">¶</a></dt>
<dd><p>Multithreaded version of <a class="reference internal" href="#telnetlib.Telnet.interact" title="telnetlib.Telnet.interact"><tt class="xref py py-meth docutils literal"><span class="pre">interact()</span></tt></a>.</p>
</dd></dl>
<dl class="method">
<dt id="telnetlib.Telnet.expect">
<tt class="descclassname">Telnet.</tt><tt class="descname">expect</tt><big>(</big><em>list</em><span class="optional">[</span>, <em>timeout</em><span class="optional">]</span><big>)</big><a class="headerlink" href="#telnetlib.Telnet.expect" title="Permalink to this definition">¶</a></dt>
<dd><p>Read until one from a list of a regular expressions matches.</p>
<p>The first argument is a list of regular expressions, either compiled
(<a class="reference internal" href="re.html#re.RegexObject" title="re.RegexObject"><tt class="xref py py-class docutils literal"><span class="pre">re.RegexObject</span></tt></a> instances) or uncompiled (strings). The optional second
argument is a timeout, in seconds; the default is to block indefinitely.</p>
<p>Return a tuple of three items: the index in the list of the first regular
expression that matches; the match object returned; and the text read up till
and including the match.</p>
<p>If end of file is found and no text was read, raise <a class="reference internal" href="exceptions.html#exceptions.EOFError" title="exceptions.EOFError"><tt class="xref py py-exc docutils literal"><span class="pre">EOFError</span></tt></a>. Otherwise,
when nothing matches, return <tt class="docutils literal"><span class="pre">(-1,</span> <span class="pre">None,</span> <span class="pre">text)</span></tt> where <em>text</em> is the text
received so far (may be the empty string if a timeout happened).</p>
<p>If a regular expression ends with a greedy match (such as <tt class="docutils literal"><span class="pre">.*</span></tt>) or if more
than one expression can match the same input, the results are
non-deterministic, and may depend on the I/O timing.</p>
</dd></dl>
<dl class="method">
<dt id="telnetlib.Telnet.set_option_negotiation_callback">
<tt class="descclassname">Telnet.</tt><tt class="descname">set_option_negotiation_callback</tt><big>(</big><em>callback</em><big>)</big><a class="headerlink" href="#telnetlib.Telnet.set_option_negotiation_callback" title="Permalink to this definition">¶</a></dt>
<dd><p>Each time a telnet option is read on the input flow, this <em>callback</em> (if set) is
called with the following parameters : callback(telnet socket, command
(DO/DONT/WILL/WONT), option). No other action is done afterwards by telnetlib.</p>
</dd></dl>
</div>
<div class="section" id="telnet-example">
<span id="id2"></span><h2>20.14.2. Telnet Example<a class="headerlink" href="#telnet-example" title="Permalink to this headline">¶</a></h2>
<p>A simple example illustrating typical use:</p>
<div class="highlight-python"><div class="highlight"><pre><span class="kn">import</span> <span class="nn">getpass</span>
<span class="kn">import</span> <span class="nn">sys</span>
<span class="kn">import</span> <span class="nn">telnetlib</span>
<span class="n">HOST</span> <span class="o">=</span> <span class="s">"localhost"</span>
<span class="n">user</span> <span class="o">=</span> <span class="nb">raw_input</span><span class="p">(</span><span class="s">"Enter your remote account: "</span><span class="p">)</span>
<span class="n">password</span> <span class="o">=</span> <span class="n">getpass</span><span class="o">.</span><span class="n">getpass</span><span class="p">()</span>
<span class="n">tn</span> <span class="o">=</span> <span class="n">telnetlib</span><span class="o">.</span><span class="n">Telnet</span><span class="p">(</span><span class="n">HOST</span><span class="p">)</span>
<span class="n">tn</span><span class="o">.</span><span class="n">read_until</span><span class="p">(</span><span class="s">"login: "</span><span class="p">)</span>
<span class="n">tn</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="n">user</span> <span class="o">+</span> <span class="s">"</span><span class="se">\n</span><span class="s">"</span><span class="p">)</span>
<span class="k">if</span> <span class="n">password</span><span class="p">:</span>
<span class="n">tn</span><span class="o">.</span><span class="n">read_until</span><span class="p">(</span><span class="s">"Password: "</span><span class="p">)</span>
<span class="n">tn</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="n">password</span> <span class="o">+</span> <span class="s">"</span><span class="se">\n</span><span class="s">"</span><span class="p">)</span>
<span class="n">tn</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="s">"ls</span><span class="se">\n</span><span class="s">"</span><span class="p">)</span>
<span class="n">tn</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="s">"exit</span><span class="se">\n</span><span class="s">"</span><span class="p">)</span>
<span class="k">print</span> <span class="n">tn</span><span class="o">.</span><span class="n">read_all</span><span class="p">()</span>
</pre></div>
</div>
</div>
</div>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="footer">
© <a href="../copyright.html">Copyright</a> 1990-2017, Python Software Foundation.
<br />
The Python Software Foundation is a non-profit corporation.
<a href="http://www.python.org/psf/donations/">Please donate.</a>
<br />
Last updated on Jan 16, 2017.
<a href="../bugs.html">Found a bug</a>?
<br />
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.0.7.
</div>
</body>
</html> |
client/tests/PreferencesSourcesTest.html | zepheira/open-science | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head profile="http://selenium-ide.openqa.org/profiles/test-case">
<!-- Copyright 2008-2009 Zepheira LLC -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="selenium.base" href="" />
<title>PreferencesSourcesTest</title>
</head>
<body>
<table cellpadding="1" cellspacing="1" border="1">
<thead>
<tr><td rowspan="1" colspan="3">PreferencesSourcesTest</td></tr>
</thead><tbody>
<tr>
<td>open</td>
<td>/preferences.html</td>
<td></td>
</tr>
<tr>
<td>waitForEditable</td>
<td>resetter</td>
<td></td>
</tr>
<tr>
<td>click</td>
<td>resetter</td>
<td></td>
</tr>
<tr>
<td>refreshAndWait</td>
<td></td>
<td></td>
</tr>
<tr>
<td>waitForElementPresent</td>
<td>app-whatizitproteindiseaseumls</td>
<td></td>
</tr>
<tr>
<td>waitForElementPresent</td>
<td>sources-pubmed</td>
<td></td>
</tr>
<tr>
<td>verifyNotChecked</td>
<td>sources-pubmed</td>
<td></td>
</tr>
<tr>
<td>click</td>
<td>sources-jove</td>
<td></td>
</tr>
<tr>
<td>click</td>
<td>saver</td>
<td></td>
</tr>
<tr>
<td>refreshAndWait</td>
<td></td>
<td></td>
</tr>
<tr>
<td>waitForEditable</td>
<td>saver</td>
<td></td>
</tr>
<tr>
<td>verifyNotChecked</td>
<td>sources-pubmed</td>
<td></td>
</tr>
<tr>
<td>open</td>
<td>/</td>
<td></td>
</tr>
<tr>
<td>waitForElementPresent</td>
<td>sources-pubmed</td>
<td></td>
</tr>
<tr>
<td>verifyChecked</td>
<td>sources-pubmed</td>
<td></td>
</tr>
<tr>
<td>verifyNotChecked</td>
<td>sources-jove</td>
<td></td>
</tr>
</tbody></table>
</body>
</html>
|
tools/jruby/lib/ruby/gems/1.8/doc/rack-1.0.0/rdoc/classes/Rack/ContentLength.src/M000182.html | varshavaradarajan/functional-tests | <?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>new (Rack::ContentLength)</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
</head>
<body class="standalone-code">
<pre><span class="ruby-comment cmt"># File lib/rack/content_length.rb, line 8</span>
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">app</span>)
<span class="ruby-ivar">@app</span> = <span class="ruby-identifier">app</span>
<span class="ruby-keyword kw">end</span></pre>
</body>
</html> |
src/app/register/register.component.html | wenzelj/storymappaweb | <md-card>
<h1><md-icon>account_circle</md-icon>Register</h1>
</md-card>
<md-card class="app-input-section">
<form #f="ngForm" (ngSubmit)="onRegister($event, username.value, name.value, password.value)" >
<!--<input mdInput id="username" #username type="email" required >
<md-placeholder>
<i class="material-icons app-input-icon">face</i> User Name
</md-placeholder>
</input>
<input mdInput id="name" #name required >
<md-placeholder>
<i class="material-icons app-input-icon">face</i> First Name
</md-placeholder>
</input>
<input mdInput id="password" #password type="password" required>
<md-placeholder>
<i class="material-icons app-input-icon">star</i> Password
</md-placeholder>
</input>-->
<button md-raised-button type="submit"><i class="material-icons app-input-icon">lock</i> Submit</button>
</form>
</md-card>
|
apache-cassandra-2.1.0/javadoc/org/apache/cassandra/hadoop/ConfigHelper.html | varunmc/cassandra-server | <!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_67) on Sun Sep 07 15:29:35 CEST 2014 -->
<title>ConfigHelper (apache-cassandra API)</title>
<meta name="date" content="2014-09-07">
<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="ConfigHelper (apache-cassandra API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/ConfigHelper.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-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/apache/cassandra/hadoop/ColumnFamilySplit.html" title="class in org.apache.cassandra.hadoop"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../org/apache/cassandra/hadoop/HadoopCompat.html" title="class in org.apache.cassandra.hadoop"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/apache/cassandra/hadoop/ConfigHelper.html" target="_top">Frames</a></li>
<li><a href="ConfigHelper.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">org.apache.cassandra.hadoop</div>
<h2 title="Class ConfigHelper" class="title">Class ConfigHelper</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>org.apache.cassandra.hadoop.ConfigHelper</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="strong">ConfigHelper</span>
extends java.lang.Object</pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#ConfigHelper()">ConfigHelper</a></strong>()</code> </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"> </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>static <a href="../../../../org/apache/cassandra/thrift/Cassandra.Client.html" title="class in org.apache.cassandra.thrift">Cassandra.Client</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#createConnection(org.apache.hadoop.conf.Configuration,%20java.lang.String,%20java.lang.Integer)">createConnection</a></strong>(org.apache.hadoop.conf.Configuration conf,
java.lang.String host,
java.lang.Integer port)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/apache/cassandra/thrift/Cassandra.Client.html" title="class in org.apache.cassandra.thrift">Cassandra.Client</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getClientFromInputAddressList(org.apache.hadoop.conf.Configuration)">getClientFromInputAddressList</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/apache/cassandra/thrift/Cassandra.Client.html" title="class in org.apache.cassandra.thrift">Cassandra.Client</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getClientFromOutputAddressList(org.apache.hadoop.conf.Configuration)">getClientFromOutputAddressList</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/apache/cassandra/thrift/ITransportFactory.html" title="interface in org.apache.cassandra.thrift">ITransportFactory</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getClientTransportFactory(org.apache.hadoop.conf.Configuration)">getClientTransportFactory</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getInputColumnFamily(org.apache.hadoop.conf.Configuration)">getInputColumnFamily</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getInputInitialAddress(org.apache.hadoop.conf.Configuration)">getInputInitialAddress</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getInputIsWide(org.apache.hadoop.conf.Configuration)">getInputIsWide</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/apache/cassandra/thrift/KeyRange.html" title="class in org.apache.cassandra.thrift">KeyRange</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getInputKeyRange(org.apache.hadoop.conf.Configuration)">getInputKeyRange</a></strong>(org.apache.hadoop.conf.Configuration conf)</code>
<div class="block">may be null if unset</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getInputKeyspace(org.apache.hadoop.conf.Configuration)">getInputKeyspace</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getInputKeyspacePassword(org.apache.hadoop.conf.Configuration)">getInputKeyspacePassword</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getInputKeyspaceUserName(org.apache.hadoop.conf.Configuration)">getInputKeyspaceUserName</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/apache/cassandra/dht/IPartitioner.html" title="interface in org.apache.cassandra.dht">IPartitioner</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getInputPartitioner(org.apache.hadoop.conf.Configuration)">getInputPartitioner</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getInputRpcPort(org.apache.hadoop.conf.Configuration)">getInputRpcPort</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/apache/cassandra/thrift/SlicePredicate.html" title="class in org.apache.cassandra.thrift">SlicePredicate</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getInputSlicePredicate(org.apache.hadoop.conf.Configuration)">getInputSlicePredicate</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getInputSplitSize(org.apache.hadoop.conf.Configuration)">getInputSplitSize</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getOutputColumnFamily(org.apache.hadoop.conf.Configuration)">getOutputColumnFamily</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getOutputCompressionChunkLength(org.apache.hadoop.conf.Configuration)">getOutputCompressionChunkLength</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getOutputCompressionClass(org.apache.hadoop.conf.Configuration)">getOutputCompressionClass</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/apache/cassandra/io/compress/CompressionParameters.html" title="class in org.apache.cassandra.io.compress">CompressionParameters</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getOutputCompressionParamaters(org.apache.hadoop.conf.Configuration)">getOutputCompressionParamaters</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getOutputInitialAddress(org.apache.hadoop.conf.Configuration)">getOutputInitialAddress</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getOutputKeyspace(org.apache.hadoop.conf.Configuration)">getOutputKeyspace</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getOutputKeyspacePassword(org.apache.hadoop.conf.Configuration)">getOutputKeyspacePassword</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getOutputKeyspaceUserName(org.apache.hadoop.conf.Configuration)">getOutputKeyspaceUserName</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/apache/cassandra/dht/IPartitioner.html" title="interface in org.apache.cassandra.dht">IPartitioner</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getOutputPartitioner(org.apache.hadoop.conf.Configuration)">getOutputPartitioner</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getOutputRpcPort(org.apache.hadoop.conf.Configuration)">getOutputRpcPort</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getRangeBatchSize(org.apache.hadoop.conf.Configuration)">getRangeBatchSize</a></strong>(org.apache.hadoop.conf.Configuration conf)</code>
<div class="block">The number of rows to request with each get range slices request.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getReadConsistencyLevel(org.apache.hadoop.conf.Configuration)">getReadConsistencyLevel</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getThriftFramedTransportSize(org.apache.hadoop.conf.Configuration)">getThriftFramedTransportSize</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#getWriteConsistencyLevel(org.apache.hadoop.conf.Configuration)">getWriteConsistencyLevel</a></strong>(org.apache.hadoop.conf.Configuration conf)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setInputColumnFamily(org.apache.hadoop.conf.Configuration,%20java.lang.String,%20java.lang.String)">setInputColumnFamily</a></strong>(org.apache.hadoop.conf.Configuration conf,
java.lang.String keyspace,
java.lang.String columnFamily)</code>
<div class="block">Set the keyspace and column family for the input of this job.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setInputColumnFamily(org.apache.hadoop.conf.Configuration,%20java.lang.String,%20java.lang.String,%20boolean)">setInputColumnFamily</a></strong>(org.apache.hadoop.conf.Configuration conf,
java.lang.String keyspace,
java.lang.String columnFamily,
boolean widerows)</code>
<div class="block">Set the keyspace and column family for the input of this job.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setInputInitialAddress(org.apache.hadoop.conf.Configuration,%20java.lang.String)">setInputInitialAddress</a></strong>(org.apache.hadoop.conf.Configuration conf,
java.lang.String address)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setInputKeyspacePassword(org.apache.hadoop.conf.Configuration,%20java.lang.String)">setInputKeyspacePassword</a></strong>(org.apache.hadoop.conf.Configuration conf,
java.lang.String password)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setInputKeyspaceUserName(org.apache.hadoop.conf.Configuration,%20java.lang.String)">setInputKeyspaceUserName</a></strong>(org.apache.hadoop.conf.Configuration conf,
java.lang.String username)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setInputKeyspaceUserNameAndPassword(org.apache.hadoop.conf.Configuration,%20java.lang.String,%20java.lang.String)">setInputKeyspaceUserNameAndPassword</a></strong>(org.apache.hadoop.conf.Configuration conf,
java.lang.String username,
java.lang.String password)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setInputPartitioner(org.apache.hadoop.conf.Configuration,%20java.lang.String)">setInputPartitioner</a></strong>(org.apache.hadoop.conf.Configuration conf,
java.lang.String classname)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setInputRange(org.apache.hadoop.conf.Configuration,%20java.util.List)">setInputRange</a></strong>(org.apache.hadoop.conf.Configuration conf,
java.util.List<<a href="../../../../org/apache/cassandra/thrift/IndexExpression.html" title="class in org.apache.cassandra.thrift">IndexExpression</a>> filter)</code>
<div class="block">Set the KeyRange to limit the rows.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setInputRange(org.apache.hadoop.conf.Configuration,%20java.lang.String,%20java.lang.String)">setInputRange</a></strong>(org.apache.hadoop.conf.Configuration conf,
java.lang.String startToken,
java.lang.String endToken)</code>
<div class="block">Set the KeyRange to limit the rows.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setInputRange(org.apache.hadoop.conf.Configuration,%20java.lang.String,%20java.lang.String,%20java.util.List)">setInputRange</a></strong>(org.apache.hadoop.conf.Configuration conf,
java.lang.String startToken,
java.lang.String endToken,
java.util.List<<a href="../../../../org/apache/cassandra/thrift/IndexExpression.html" title="class in org.apache.cassandra.thrift">IndexExpression</a>> filter)</code>
<div class="block">Set the KeyRange to limit the rows.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setInputRpcPort(org.apache.hadoop.conf.Configuration,%20java.lang.String)">setInputRpcPort</a></strong>(org.apache.hadoop.conf.Configuration conf,
java.lang.String port)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setInputSlicePredicate(org.apache.hadoop.conf.Configuration,%20org.apache.cassandra.thrift.SlicePredicate)">setInputSlicePredicate</a></strong>(org.apache.hadoop.conf.Configuration conf,
<a href="../../../../org/apache/cassandra/thrift/SlicePredicate.html" title="class in org.apache.cassandra.thrift">SlicePredicate</a> predicate)</code>
<div class="block">Set the predicate that determines what columns will be selected from each row.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setInputSplitSize(org.apache.hadoop.conf.Configuration,%20int)">setInputSplitSize</a></strong>(org.apache.hadoop.conf.Configuration conf,
int splitsize)</code>
<div class="block">Set the size of the input split.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setOutputColumnFamily(org.apache.hadoop.conf.Configuration,%20java.lang.String)">setOutputColumnFamily</a></strong>(org.apache.hadoop.conf.Configuration conf,
java.lang.String columnFamily)</code>
<div class="block">Set the column family for the output of this job.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setOutputColumnFamily(org.apache.hadoop.conf.Configuration,%20java.lang.String,%20java.lang.String)">setOutputColumnFamily</a></strong>(org.apache.hadoop.conf.Configuration conf,
java.lang.String keyspace,
java.lang.String columnFamily)</code>
<div class="block">Set the column family for the output of this job.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setOutputCompressionChunkLength(org.apache.hadoop.conf.Configuration,%20java.lang.String)">setOutputCompressionChunkLength</a></strong>(org.apache.hadoop.conf.Configuration conf,
java.lang.String length)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setOutputCompressionClass(org.apache.hadoop.conf.Configuration,%20java.lang.String)">setOutputCompressionClass</a></strong>(org.apache.hadoop.conf.Configuration conf,
java.lang.String classname)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setOutputInitialAddress(org.apache.hadoop.conf.Configuration,%20java.lang.String)">setOutputInitialAddress</a></strong>(org.apache.hadoop.conf.Configuration conf,
java.lang.String address)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setOutputKeyspace(org.apache.hadoop.conf.Configuration,%20java.lang.String)">setOutputKeyspace</a></strong>(org.apache.hadoop.conf.Configuration conf,
java.lang.String keyspace)</code>
<div class="block">Set the keyspace for the output of this job.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setOutputKeyspacePassword(org.apache.hadoop.conf.Configuration,%20java.lang.String)">setOutputKeyspacePassword</a></strong>(org.apache.hadoop.conf.Configuration conf,
java.lang.String password)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setOutputKeyspaceUserName(org.apache.hadoop.conf.Configuration,%20java.lang.String)">setOutputKeyspaceUserName</a></strong>(org.apache.hadoop.conf.Configuration conf,
java.lang.String username)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setOutputKeyspaceUserNameAndPassword(org.apache.hadoop.conf.Configuration,%20java.lang.String,%20java.lang.String)">setOutputKeyspaceUserNameAndPassword</a></strong>(org.apache.hadoop.conf.Configuration conf,
java.lang.String username,
java.lang.String password)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setOutputPartitioner(org.apache.hadoop.conf.Configuration,%20java.lang.String)">setOutputPartitioner</a></strong>(org.apache.hadoop.conf.Configuration conf,
java.lang.String classname)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setOutputRpcPort(org.apache.hadoop.conf.Configuration,%20java.lang.String)">setOutputRpcPort</a></strong>(org.apache.hadoop.conf.Configuration conf,
java.lang.String port)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setRangeBatchSize(org.apache.hadoop.conf.Configuration,%20int)">setRangeBatchSize</a></strong>(org.apache.hadoop.conf.Configuration conf,
int batchsize)</code>
<div class="block">The number of rows to request with each get range slices request.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setReadConsistencyLevel(org.apache.hadoop.conf.Configuration,%20java.lang.String)">setReadConsistencyLevel</a></strong>(org.apache.hadoop.conf.Configuration conf,
java.lang.String consistencyLevel)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setThriftFramedTransportSizeInMb(org.apache.hadoop.conf.Configuration,%20int)">setThriftFramedTransportSizeInMb</a></strong>(org.apache.hadoop.conf.Configuration conf,
int frameSizeInMB)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setWriteConsistencyLevel(org.apache.hadoop.conf.Configuration,%20java.lang.String)">setWriteConsistencyLevel</a></strong>(org.apache.hadoop.conf.Configuration conf,
java.lang.String consistencyLevel)</code> </td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>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">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="ConfigHelper()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>ConfigHelper</h4>
<pre>public ConfigHelper()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="setInputColumnFamily(org.apache.hadoop.conf.Configuration, java.lang.String, java.lang.String, boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setInputColumnFamily</h4>
<pre>public static void setInputColumnFamily(org.apache.hadoop.conf.Configuration conf,
java.lang.String keyspace,
java.lang.String columnFamily,
boolean widerows)</pre>
<div class="block">Set the keyspace and column family for the input of this job.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>conf</code> - Job configuration you are about to run</dd><dd><code>keyspace</code> - </dd><dd><code>columnFamily</code> - </dd><dd><code>widerows</code> - </dd></dl>
</li>
</ul>
<a name="setInputColumnFamily(org.apache.hadoop.conf.Configuration, java.lang.String, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setInputColumnFamily</h4>
<pre>public static void setInputColumnFamily(org.apache.hadoop.conf.Configuration conf,
java.lang.String keyspace,
java.lang.String columnFamily)</pre>
<div class="block">Set the keyspace and column family for the input of this job.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>conf</code> - Job configuration you are about to run</dd><dd><code>keyspace</code> - </dd><dd><code>columnFamily</code> - </dd></dl>
</li>
</ul>
<a name="setOutputKeyspace(org.apache.hadoop.conf.Configuration, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setOutputKeyspace</h4>
<pre>public static void setOutputKeyspace(org.apache.hadoop.conf.Configuration conf,
java.lang.String keyspace)</pre>
<div class="block">Set the keyspace for the output of this job.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>conf</code> - Job configuration you are about to run</dd><dd><code>keyspace</code> - </dd></dl>
</li>
</ul>
<a name="setOutputColumnFamily(org.apache.hadoop.conf.Configuration, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setOutputColumnFamily</h4>
<pre>public static void setOutputColumnFamily(org.apache.hadoop.conf.Configuration conf,
java.lang.String columnFamily)</pre>
<div class="block">Set the column family for the output of this job.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>conf</code> - Job configuration you are about to run</dd><dd><code>columnFamily</code> - </dd></dl>
</li>
</ul>
<a name="setOutputColumnFamily(org.apache.hadoop.conf.Configuration, java.lang.String, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setOutputColumnFamily</h4>
<pre>public static void setOutputColumnFamily(org.apache.hadoop.conf.Configuration conf,
java.lang.String keyspace,
java.lang.String columnFamily)</pre>
<div class="block">Set the column family for the output of this job.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>conf</code> - Job configuration you are about to run</dd><dd><code>keyspace</code> - </dd><dd><code>columnFamily</code> - </dd></dl>
</li>
</ul>
<a name="setRangeBatchSize(org.apache.hadoop.conf.Configuration, int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setRangeBatchSize</h4>
<pre>public static void setRangeBatchSize(org.apache.hadoop.conf.Configuration conf,
int batchsize)</pre>
<div class="block">The number of rows to request with each get range slices request.
Too big and you can either get timeouts when it takes Cassandra too
long to fetch all the data. Too small and the performance
will be eaten up by the overhead of each request.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>conf</code> - Job configuration you are about to run</dd><dd><code>batchsize</code> - Number of rows to request each time</dd></dl>
</li>
</ul>
<a name="getRangeBatchSize(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRangeBatchSize</h4>
<pre>public static int getRangeBatchSize(org.apache.hadoop.conf.Configuration conf)</pre>
<div class="block">The number of rows to request with each get range slices request.
Too big and you can either get timeouts when it takes Cassandra too
long to fetch all the data. Too small and the performance
will be eaten up by the overhead of each request.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>conf</code> - Job configuration you are about to run</dd>
<dt><span class="strong">Returns:</span></dt><dd>Number of rows to request each time</dd></dl>
</li>
</ul>
<a name="setInputSplitSize(org.apache.hadoop.conf.Configuration, int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setInputSplitSize</h4>
<pre>public static void setInputSplitSize(org.apache.hadoop.conf.Configuration conf,
int splitsize)</pre>
<div class="block">Set the size of the input split.
This affects the number of maps created, if the number is too small
the overhead of each map will take up the bulk of the job time.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>conf</code> - Job configuration you are about to run</dd><dd><code>splitsize</code> - Size of the input split</dd></dl>
</li>
</ul>
<a name="getInputSplitSize(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getInputSplitSize</h4>
<pre>public static int getInputSplitSize(org.apache.hadoop.conf.Configuration conf)</pre>
</li>
</ul>
<a name="setInputSlicePredicate(org.apache.hadoop.conf.Configuration, org.apache.cassandra.thrift.SlicePredicate)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setInputSlicePredicate</h4>
<pre>public static void setInputSlicePredicate(org.apache.hadoop.conf.Configuration conf,
<a href="../../../../org/apache/cassandra/thrift/SlicePredicate.html" title="class in org.apache.cassandra.thrift">SlicePredicate</a> predicate)</pre>
<div class="block">Set the predicate that determines what columns will be selected from each row.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>conf</code> - Job configuration you are about to run</dd><dd><code>predicate</code> - </dd></dl>
</li>
</ul>
<a name="getInputSlicePredicate(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getInputSlicePredicate</h4>
<pre>public static <a href="../../../../org/apache/cassandra/thrift/SlicePredicate.html" title="class in org.apache.cassandra.thrift">SlicePredicate</a> getInputSlicePredicate(org.apache.hadoop.conf.Configuration conf)</pre>
</li>
</ul>
<a name="setInputRange(org.apache.hadoop.conf.Configuration, java.lang.String, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setInputRange</h4>
<pre>public static void setInputRange(org.apache.hadoop.conf.Configuration conf,
java.lang.String startToken,
java.lang.String endToken)</pre>
<div class="block">Set the KeyRange to limit the rows.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>conf</code> - Job configuration you are about to run</dd></dl>
</li>
</ul>
<a name="setInputRange(org.apache.hadoop.conf.Configuration, java.lang.String, java.lang.String, java.util.List)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setInputRange</h4>
<pre>public static void setInputRange(org.apache.hadoop.conf.Configuration conf,
java.lang.String startToken,
java.lang.String endToken,
java.util.List<<a href="../../../../org/apache/cassandra/thrift/IndexExpression.html" title="class in org.apache.cassandra.thrift">IndexExpression</a>> filter)</pre>
<div class="block">Set the KeyRange to limit the rows.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>conf</code> - Job configuration you are about to run</dd></dl>
</li>
</ul>
<a name="setInputRange(org.apache.hadoop.conf.Configuration, java.util.List)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setInputRange</h4>
<pre>public static void setInputRange(org.apache.hadoop.conf.Configuration conf,
java.util.List<<a href="../../../../org/apache/cassandra/thrift/IndexExpression.html" title="class in org.apache.cassandra.thrift">IndexExpression</a>> filter)</pre>
<div class="block">Set the KeyRange to limit the rows.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>conf</code> - Job configuration you are about to run</dd></dl>
</li>
</ul>
<a name="getInputKeyRange(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getInputKeyRange</h4>
<pre>public static <a href="../../../../org/apache/cassandra/thrift/KeyRange.html" title="class in org.apache.cassandra.thrift">KeyRange</a> getInputKeyRange(org.apache.hadoop.conf.Configuration conf)</pre>
<div class="block">may be null if unset</div>
</li>
</ul>
<a name="getInputKeyspace(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getInputKeyspace</h4>
<pre>public static java.lang.String getInputKeyspace(org.apache.hadoop.conf.Configuration conf)</pre>
</li>
</ul>
<a name="getOutputKeyspace(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getOutputKeyspace</h4>
<pre>public static java.lang.String getOutputKeyspace(org.apache.hadoop.conf.Configuration conf)</pre>
</li>
</ul>
<a name="setInputKeyspaceUserNameAndPassword(org.apache.hadoop.conf.Configuration, java.lang.String, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setInputKeyspaceUserNameAndPassword</h4>
<pre>public static void setInputKeyspaceUserNameAndPassword(org.apache.hadoop.conf.Configuration conf,
java.lang.String username,
java.lang.String password)</pre>
</li>
</ul>
<a name="setInputKeyspaceUserName(org.apache.hadoop.conf.Configuration, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setInputKeyspaceUserName</h4>
<pre>public static void setInputKeyspaceUserName(org.apache.hadoop.conf.Configuration conf,
java.lang.String username)</pre>
</li>
</ul>
<a name="getInputKeyspaceUserName(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getInputKeyspaceUserName</h4>
<pre>public static java.lang.String getInputKeyspaceUserName(org.apache.hadoop.conf.Configuration conf)</pre>
</li>
</ul>
<a name="setInputKeyspacePassword(org.apache.hadoop.conf.Configuration, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setInputKeyspacePassword</h4>
<pre>public static void setInputKeyspacePassword(org.apache.hadoop.conf.Configuration conf,
java.lang.String password)</pre>
</li>
</ul>
<a name="getInputKeyspacePassword(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getInputKeyspacePassword</h4>
<pre>public static java.lang.String getInputKeyspacePassword(org.apache.hadoop.conf.Configuration conf)</pre>
</li>
</ul>
<a name="setOutputKeyspaceUserNameAndPassword(org.apache.hadoop.conf.Configuration, java.lang.String, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setOutputKeyspaceUserNameAndPassword</h4>
<pre>public static void setOutputKeyspaceUserNameAndPassword(org.apache.hadoop.conf.Configuration conf,
java.lang.String username,
java.lang.String password)</pre>
</li>
</ul>
<a name="setOutputKeyspaceUserName(org.apache.hadoop.conf.Configuration, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setOutputKeyspaceUserName</h4>
<pre>public static void setOutputKeyspaceUserName(org.apache.hadoop.conf.Configuration conf,
java.lang.String username)</pre>
</li>
</ul>
<a name="getOutputKeyspaceUserName(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getOutputKeyspaceUserName</h4>
<pre>public static java.lang.String getOutputKeyspaceUserName(org.apache.hadoop.conf.Configuration conf)</pre>
</li>
</ul>
<a name="setOutputKeyspacePassword(org.apache.hadoop.conf.Configuration, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setOutputKeyspacePassword</h4>
<pre>public static void setOutputKeyspacePassword(org.apache.hadoop.conf.Configuration conf,
java.lang.String password)</pre>
</li>
</ul>
<a name="getOutputKeyspacePassword(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getOutputKeyspacePassword</h4>
<pre>public static java.lang.String getOutputKeyspacePassword(org.apache.hadoop.conf.Configuration conf)</pre>
</li>
</ul>
<a name="getInputColumnFamily(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getInputColumnFamily</h4>
<pre>public static java.lang.String getInputColumnFamily(org.apache.hadoop.conf.Configuration conf)</pre>
</li>
</ul>
<a name="getOutputColumnFamily(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getOutputColumnFamily</h4>
<pre>public static java.lang.String getOutputColumnFamily(org.apache.hadoop.conf.Configuration conf)</pre>
</li>
</ul>
<a name="getInputIsWide(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getInputIsWide</h4>
<pre>public static boolean getInputIsWide(org.apache.hadoop.conf.Configuration conf)</pre>
</li>
</ul>
<a name="getReadConsistencyLevel(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getReadConsistencyLevel</h4>
<pre>public static java.lang.String getReadConsistencyLevel(org.apache.hadoop.conf.Configuration conf)</pre>
</li>
</ul>
<a name="setReadConsistencyLevel(org.apache.hadoop.conf.Configuration, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setReadConsistencyLevel</h4>
<pre>public static void setReadConsistencyLevel(org.apache.hadoop.conf.Configuration conf,
java.lang.String consistencyLevel)</pre>
</li>
</ul>
<a name="getWriteConsistencyLevel(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getWriteConsistencyLevel</h4>
<pre>public static java.lang.String getWriteConsistencyLevel(org.apache.hadoop.conf.Configuration conf)</pre>
</li>
</ul>
<a name="setWriteConsistencyLevel(org.apache.hadoop.conf.Configuration, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setWriteConsistencyLevel</h4>
<pre>public static void setWriteConsistencyLevel(org.apache.hadoop.conf.Configuration conf,
java.lang.String consistencyLevel)</pre>
</li>
</ul>
<a name="getInputRpcPort(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getInputRpcPort</h4>
<pre>public static int getInputRpcPort(org.apache.hadoop.conf.Configuration conf)</pre>
</li>
</ul>
<a name="setInputRpcPort(org.apache.hadoop.conf.Configuration, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setInputRpcPort</h4>
<pre>public static void setInputRpcPort(org.apache.hadoop.conf.Configuration conf,
java.lang.String port)</pre>
</li>
</ul>
<a name="getInputInitialAddress(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getInputInitialAddress</h4>
<pre>public static java.lang.String getInputInitialAddress(org.apache.hadoop.conf.Configuration conf)</pre>
</li>
</ul>
<a name="setInputInitialAddress(org.apache.hadoop.conf.Configuration, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setInputInitialAddress</h4>
<pre>public static void setInputInitialAddress(org.apache.hadoop.conf.Configuration conf,
java.lang.String address)</pre>
</li>
</ul>
<a name="setInputPartitioner(org.apache.hadoop.conf.Configuration, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setInputPartitioner</h4>
<pre>public static void setInputPartitioner(org.apache.hadoop.conf.Configuration conf,
java.lang.String classname)</pre>
</li>
</ul>
<a name="getInputPartitioner(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getInputPartitioner</h4>
<pre>public static <a href="../../../../org/apache/cassandra/dht/IPartitioner.html" title="interface in org.apache.cassandra.dht">IPartitioner</a> getInputPartitioner(org.apache.hadoop.conf.Configuration conf)</pre>
</li>
</ul>
<a name="getOutputRpcPort(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getOutputRpcPort</h4>
<pre>public static int getOutputRpcPort(org.apache.hadoop.conf.Configuration conf)</pre>
</li>
</ul>
<a name="setOutputRpcPort(org.apache.hadoop.conf.Configuration, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setOutputRpcPort</h4>
<pre>public static void setOutputRpcPort(org.apache.hadoop.conf.Configuration conf,
java.lang.String port)</pre>
</li>
</ul>
<a name="getOutputInitialAddress(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getOutputInitialAddress</h4>
<pre>public static java.lang.String getOutputInitialAddress(org.apache.hadoop.conf.Configuration conf)</pre>
</li>
</ul>
<a name="setOutputInitialAddress(org.apache.hadoop.conf.Configuration, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setOutputInitialAddress</h4>
<pre>public static void setOutputInitialAddress(org.apache.hadoop.conf.Configuration conf,
java.lang.String address)</pre>
</li>
</ul>
<a name="setOutputPartitioner(org.apache.hadoop.conf.Configuration, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setOutputPartitioner</h4>
<pre>public static void setOutputPartitioner(org.apache.hadoop.conf.Configuration conf,
java.lang.String classname)</pre>
</li>
</ul>
<a name="getOutputPartitioner(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getOutputPartitioner</h4>
<pre>public static <a href="../../../../org/apache/cassandra/dht/IPartitioner.html" title="interface in org.apache.cassandra.dht">IPartitioner</a> getOutputPartitioner(org.apache.hadoop.conf.Configuration conf)</pre>
</li>
</ul>
<a name="getOutputCompressionClass(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getOutputCompressionClass</h4>
<pre>public static java.lang.String getOutputCompressionClass(org.apache.hadoop.conf.Configuration conf)</pre>
</li>
</ul>
<a name="getOutputCompressionChunkLength(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getOutputCompressionChunkLength</h4>
<pre>public static java.lang.String getOutputCompressionChunkLength(org.apache.hadoop.conf.Configuration conf)</pre>
</li>
</ul>
<a name="setOutputCompressionClass(org.apache.hadoop.conf.Configuration, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setOutputCompressionClass</h4>
<pre>public static void setOutputCompressionClass(org.apache.hadoop.conf.Configuration conf,
java.lang.String classname)</pre>
</li>
</ul>
<a name="setOutputCompressionChunkLength(org.apache.hadoop.conf.Configuration, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setOutputCompressionChunkLength</h4>
<pre>public static void setOutputCompressionChunkLength(org.apache.hadoop.conf.Configuration conf,
java.lang.String length)</pre>
</li>
</ul>
<a name="setThriftFramedTransportSizeInMb(org.apache.hadoop.conf.Configuration, int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setThriftFramedTransportSizeInMb</h4>
<pre>public static void setThriftFramedTransportSizeInMb(org.apache.hadoop.conf.Configuration conf,
int frameSizeInMB)</pre>
</li>
</ul>
<a name="getThriftFramedTransportSize(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getThriftFramedTransportSize</h4>
<pre>public static int getThriftFramedTransportSize(org.apache.hadoop.conf.Configuration conf)</pre>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>conf</code> - The configuration to use.</dd>
<dt><span class="strong">Returns:</span></dt><dd>Value (converts MBs to Bytes) set by <a href="../../../../org/apache/cassandra/hadoop/ConfigHelper.html#setThriftFramedTransportSizeInMb(org.apache.hadoop.conf.Configuration,%20int)"><code>setThriftFramedTransportSizeInMb(Configuration, int)</code></a> or default of 15MB</dd></dl>
</li>
</ul>
<a name="getOutputCompressionParamaters(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getOutputCompressionParamaters</h4>
<pre>public static <a href="../../../../org/apache/cassandra/io/compress/CompressionParameters.html" title="class in org.apache.cassandra.io.compress">CompressionParameters</a> getOutputCompressionParamaters(org.apache.hadoop.conf.Configuration conf)</pre>
</li>
</ul>
<a name="getClientFromInputAddressList(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getClientFromInputAddressList</h4>
<pre>public static <a href="../../../../org/apache/cassandra/thrift/Cassandra.Client.html" title="class in org.apache.cassandra.thrift">Cassandra.Client</a> getClientFromInputAddressList(org.apache.hadoop.conf.Configuration conf)
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="getClientFromOutputAddressList(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getClientFromOutputAddressList</h4>
<pre>public static <a href="../../../../org/apache/cassandra/thrift/Cassandra.Client.html" title="class in org.apache.cassandra.thrift">Cassandra.Client</a> getClientFromOutputAddressList(org.apache.hadoop.conf.Configuration conf)
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="createConnection(org.apache.hadoop.conf.Configuration, java.lang.String, java.lang.Integer)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>createConnection</h4>
<pre>public static <a href="../../../../org/apache/cassandra/thrift/Cassandra.Client.html" title="class in org.apache.cassandra.thrift">Cassandra.Client</a> createConnection(org.apache.hadoop.conf.Configuration conf,
java.lang.String host,
java.lang.Integer port)
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="getClientTransportFactory(org.apache.hadoop.conf.Configuration)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getClientTransportFactory</h4>
<pre>public static <a href="../../../../org/apache/cassandra/thrift/ITransportFactory.html" title="interface in org.apache.cassandra.thrift">ITransportFactory</a> getClientTransportFactory(org.apache.hadoop.conf.Configuration conf)</pre>
</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/ConfigHelper.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-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/apache/cassandra/hadoop/ColumnFamilySplit.html" title="class in org.apache.cassandra.hadoop"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../org/apache/cassandra/hadoop/HadoopCompat.html" title="class in org.apache.cassandra.hadoop"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/apache/cassandra/hadoop/ConfigHelper.html" target="_top">Frames</a></li>
<li><a href="ConfigHelper.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2014 The Apache Software Foundation</small></p>
</body>
</html>
|
docs/api/org/apache/hadoop/contrib/index/mapred/class-use/DocumentAndOp.html | fchu/hadoop-0.20.205 | <!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_23) on Fri Oct 07 06:23:10 UTC 2011 -->
<TITLE>
Uses of Class org.apache.hadoop.contrib.index.mapred.DocumentAndOp (Hadoop 0.20.205.0 API)
</TITLE>
<META NAME="date" CONTENT="2011-10-07">
<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.contrib.index.mapred.DocumentAndOp (Hadoop 0.20.205.0 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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/hadoop/contrib/index/mapred/DocumentAndOp.html" title="class in org.apache.hadoop.contrib.index.mapred"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../index.html?org/apache/hadoop/contrib/index/mapred//class-useDocumentAndOp.html" target="_top"><B>FRAMES</B></A>
<A HREF="DocumentAndOp.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.apache.hadoop.contrib.index.mapred.DocumentAndOp</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/contrib/index/mapred/DocumentAndOp.html" title="class in org.apache.hadoop.contrib.index.mapred">DocumentAndOp</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.apache.hadoop.contrib.index.example"><B>org.apache.hadoop.contrib.index.example</B></A></TD>
<TD> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.apache.hadoop.contrib.index.mapred"><B>org.apache.hadoop.contrib.index.mapred</B></A></TD>
<TD> </TD>
</TR>
</TABLE>
<P>
<A NAME="org.apache.hadoop.contrib.index.example"><!-- --></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/contrib/index/mapred/DocumentAndOp.html" title="class in org.apache.hadoop.contrib.index.mapred">DocumentAndOp</A> in <A HREF="../../../../../../../org/apache/hadoop/contrib/index/example/package-summary.html">org.apache.hadoop.contrib.index.example</A></FONT></TH>
</TR>
</TABLE>
<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/contrib/index/example/package-summary.html">org.apache.hadoop.contrib.index.example</A> with parameters of type <A HREF="../../../../../../../org/apache/hadoop/contrib/index/mapred/DocumentAndOp.html" title="class in org.apache.hadoop.contrib.index.mapred">DocumentAndOp</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B>IdentityLocalAnalysis.</B><B><A HREF="../../../../../../../org/apache/hadoop/contrib/index/example/IdentityLocalAnalysis.html#map(org.apache.hadoop.contrib.index.mapred.DocumentID, org.apache.hadoop.contrib.index.mapred.DocumentAndOp, org.apache.hadoop.mapred.OutputCollector, org.apache.hadoop.mapred.Reporter)">map</A></B>(<A HREF="../../../../../../../org/apache/hadoop/contrib/index/mapred/DocumentID.html" title="class in org.apache.hadoop.contrib.index.mapred">DocumentID</A> key,
<A HREF="../../../../../../../org/apache/hadoop/contrib/index/mapred/DocumentAndOp.html" title="class in org.apache.hadoop.contrib.index.mapred">DocumentAndOp</A> value,
<A HREF="../../../../../../../org/apache/hadoop/mapred/OutputCollector.html" title="interface in org.apache.hadoop.mapred">OutputCollector</A><<A HREF="../../../../../../../org/apache/hadoop/contrib/index/mapred/DocumentID.html" title="class in org.apache.hadoop.contrib.index.mapred">DocumentID</A>,<A HREF="../../../../../../../org/apache/hadoop/contrib/index/mapred/DocumentAndOp.html" title="class in org.apache.hadoop.contrib.index.mapred">DocumentAndOp</A>> output,
<A HREF="../../../../../../../org/apache/hadoop/mapred/Reporter.html" title="interface in org.apache.hadoop.mapred">Reporter</A> reporter)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Method parameters in <A HREF="../../../../../../../org/apache/hadoop/contrib/index/example/package-summary.html">org.apache.hadoop.contrib.index.example</A> with type arguments of type <A HREF="../../../../../../../org/apache/hadoop/contrib/index/mapred/DocumentAndOp.html" title="class in org.apache.hadoop.contrib.index.mapred">DocumentAndOp</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B>IdentityLocalAnalysis.</B><B><A HREF="../../../../../../../org/apache/hadoop/contrib/index/example/IdentityLocalAnalysis.html#map(org.apache.hadoop.contrib.index.mapred.DocumentID, org.apache.hadoop.contrib.index.mapred.DocumentAndOp, org.apache.hadoop.mapred.OutputCollector, org.apache.hadoop.mapred.Reporter)">map</A></B>(<A HREF="../../../../../../../org/apache/hadoop/contrib/index/mapred/DocumentID.html" title="class in org.apache.hadoop.contrib.index.mapred">DocumentID</A> key,
<A HREF="../../../../../../../org/apache/hadoop/contrib/index/mapred/DocumentAndOp.html" title="class in org.apache.hadoop.contrib.index.mapred">DocumentAndOp</A> value,
<A HREF="../../../../../../../org/apache/hadoop/mapred/OutputCollector.html" title="interface in org.apache.hadoop.mapred">OutputCollector</A><<A HREF="../../../../../../../org/apache/hadoop/contrib/index/mapred/DocumentID.html" title="class in org.apache.hadoop.contrib.index.mapred">DocumentID</A>,<A HREF="../../../../../../../org/apache/hadoop/contrib/index/mapred/DocumentAndOp.html" title="class in org.apache.hadoop.contrib.index.mapred">DocumentAndOp</A>> output,
<A HREF="../../../../../../../org/apache/hadoop/mapred/Reporter.html" title="interface in org.apache.hadoop.mapred">Reporter</A> reporter)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B>LineDocLocalAnalysis.</B><B><A HREF="../../../../../../../org/apache/hadoop/contrib/index/example/LineDocLocalAnalysis.html#map(org.apache.hadoop.contrib.index.mapred.DocumentID, org.apache.hadoop.contrib.index.example.LineDocTextAndOp, org.apache.hadoop.mapred.OutputCollector, org.apache.hadoop.mapred.Reporter)">map</A></B>(<A HREF="../../../../../../../org/apache/hadoop/contrib/index/mapred/DocumentID.html" title="class in org.apache.hadoop.contrib.index.mapred">DocumentID</A> key,
<A HREF="../../../../../../../org/apache/hadoop/contrib/index/example/LineDocTextAndOp.html" title="class in org.apache.hadoop.contrib.index.example">LineDocTextAndOp</A> value,
<A HREF="../../../../../../../org/apache/hadoop/mapred/OutputCollector.html" title="interface in org.apache.hadoop.mapred">OutputCollector</A><<A HREF="../../../../../../../org/apache/hadoop/contrib/index/mapred/DocumentID.html" title="class in org.apache.hadoop.contrib.index.mapred">DocumentID</A>,<A HREF="../../../../../../../org/apache/hadoop/contrib/index/mapred/DocumentAndOp.html" title="class in org.apache.hadoop.contrib.index.mapred">DocumentAndOp</A>> output,
<A HREF="../../../../../../../org/apache/hadoop/mapred/Reporter.html" title="interface in org.apache.hadoop.mapred">Reporter</A> reporter)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<P>
<A NAME="org.apache.hadoop.contrib.index.mapred"><!-- --></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/contrib/index/mapred/DocumentAndOp.html" title="class in org.apache.hadoop.contrib.index.mapred">DocumentAndOp</A> in <A HREF="../../../../../../../org/apache/hadoop/contrib/index/mapred/package-summary.html">org.apache.hadoop.contrib.index.mapred</A></FONT></TH>
</TR>
</TABLE>
<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/contrib/index/mapred/package-summary.html">org.apache.hadoop.contrib.index.mapred</A> with parameters of type <A HREF="../../../../../../../org/apache/hadoop/contrib/index/mapred/DocumentAndOp.html" title="class in org.apache.hadoop.contrib.index.mapred">DocumentAndOp</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B>IntermediateForm.</B><B><A HREF="../../../../../../../org/apache/hadoop/contrib/index/mapred/IntermediateForm.html#process(org.apache.hadoop.contrib.index.mapred.DocumentAndOp, org.apache.lucene.analysis.Analyzer)">process</A></B>(<A HREF="../../../../../../../org/apache/hadoop/contrib/index/mapred/DocumentAndOp.html" title="class in org.apache.hadoop.contrib.index.mapred">DocumentAndOp</A> doc,
org.apache.lucene.analysis.Analyzer analyzer)</CODE>
<BR>
This method is used by the index update mapper and process a document
operation into the current intermediate form.</TD>
</TR>
</TABLE>
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/hadoop/contrib/index/mapred/DocumentAndOp.html" title="class in org.apache.hadoop.contrib.index.mapred"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../index.html?org/apache/hadoop/contrib/index/mapred//class-useDocumentAndOp.html" target="_top"><B>FRAMES</B></A>
<A HREF="DocumentAndOp.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright © 2009 The Apache Software Foundation
</BODY>
</HTML>
|
publish/reports/javadoc/org/jsimpledb/kv/raft/msg/class-use/MessageSwitch.html | tempbottle/jsimpledb | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<title>Uses of Interface org.jsimpledb.kv.raft.msg.MessageSwitch (Java Class Library 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.jsimpledb.kv.raft.msg.MessageSwitch (Java Class Library 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/jsimpledb/kv/raft/msg/MessageSwitch.html" title="interface in org.jsimpledb.kv.raft.msg">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?org/jsimpledb/kv/raft/msg/class-use/MessageSwitch.html" target="_top">Frames</a></li>
<li><a href="MessageSwitch.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.jsimpledb.kv.raft.msg.MessageSwitch" class="title">Uses of Interface<br>org.jsimpledb.kv.raft.msg.MessageSwitch</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/jsimpledb/kv/raft/msg/MessageSwitch.html" title="interface in org.jsimpledb.kv.raft.msg">MessageSwitch</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#org.jsimpledb.kv.raft.msg">org.jsimpledb.kv.raft.msg</a></td>
<td class="colLast">
<div class="block">Raft inter-node messages.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.jsimpledb.kv.raft.msg">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/jsimpledb/kv/raft/msg/MessageSwitch.html" title="interface in org.jsimpledb.kv.raft.msg">MessageSwitch</a> in <a href="../../../../../../org/jsimpledb/kv/raft/msg/package-summary.html">org.jsimpledb.kv.raft.msg</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../org/jsimpledb/kv/raft/msg/package-summary.html">org.jsimpledb.kv.raft.msg</a> with parameters of type <a href="../../../../../../org/jsimpledb/kv/raft/msg/MessageSwitch.html" title="interface in org.jsimpledb.kv.raft.msg">MessageSwitch</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">RequestVote.</span><code><strong><a href="../../../../../../org/jsimpledb/kv/raft/msg/RequestVote.html#visit(org.jsimpledb.kv.raft.msg.MessageSwitch)">visit</a></strong>(<a href="../../../../../../org/jsimpledb/kv/raft/msg/MessageSwitch.html" title="interface in org.jsimpledb.kv.raft.msg">MessageSwitch</a> handler)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">PingResponse.</span><code><strong><a href="../../../../../../org/jsimpledb/kv/raft/msg/PingResponse.html#visit(org.jsimpledb.kv.raft.msg.MessageSwitch)">visit</a></strong>(<a href="../../../../../../org/jsimpledb/kv/raft/msg/MessageSwitch.html" title="interface in org.jsimpledb.kv.raft.msg">MessageSwitch</a> handler)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">PingRequest.</span><code><strong><a href="../../../../../../org/jsimpledb/kv/raft/msg/PingRequest.html#visit(org.jsimpledb.kv.raft.msg.MessageSwitch)">visit</a></strong>(<a href="../../../../../../org/jsimpledb/kv/raft/msg/MessageSwitch.html" title="interface in org.jsimpledb.kv.raft.msg">MessageSwitch</a> handler)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>abstract void</code></td>
<td class="colLast"><span class="strong">Message.</span><code><strong><a href="../../../../../../org/jsimpledb/kv/raft/msg/Message.html#visit(org.jsimpledb.kv.raft.msg.MessageSwitch)">visit</a></strong>(<a href="../../../../../../org/jsimpledb/kv/raft/msg/MessageSwitch.html" title="interface in org.jsimpledb.kv.raft.msg">MessageSwitch</a> handler)</code>
<div class="block">Apply the visitor pattern based on this instance's type.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">InstallSnapshot.</span><code><strong><a href="../../../../../../org/jsimpledb/kv/raft/msg/InstallSnapshot.html#visit(org.jsimpledb.kv.raft.msg.MessageSwitch)">visit</a></strong>(<a href="../../../../../../org/jsimpledb/kv/raft/msg/MessageSwitch.html" title="interface in org.jsimpledb.kv.raft.msg">MessageSwitch</a> handler)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">GrantVote.</span><code><strong><a href="../../../../../../org/jsimpledb/kv/raft/msg/GrantVote.html#visit(org.jsimpledb.kv.raft.msg.MessageSwitch)">visit</a></strong>(<a href="../../../../../../org/jsimpledb/kv/raft/msg/MessageSwitch.html" title="interface in org.jsimpledb.kv.raft.msg">MessageSwitch</a> handler)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">CommitResponse.</span><code><strong><a href="../../../../../../org/jsimpledb/kv/raft/msg/CommitResponse.html#visit(org.jsimpledb.kv.raft.msg.MessageSwitch)">visit</a></strong>(<a href="../../../../../../org/jsimpledb/kv/raft/msg/MessageSwitch.html" title="interface in org.jsimpledb.kv.raft.msg">MessageSwitch</a> handler)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">CommitRequest.</span><code><strong><a href="../../../../../../org/jsimpledb/kv/raft/msg/CommitRequest.html#visit(org.jsimpledb.kv.raft.msg.MessageSwitch)">visit</a></strong>(<a href="../../../../../../org/jsimpledb/kv/raft/msg/MessageSwitch.html" title="interface in org.jsimpledb.kv.raft.msg">MessageSwitch</a> handler)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">AppendResponse.</span><code><strong><a href="../../../../../../org/jsimpledb/kv/raft/msg/AppendResponse.html#visit(org.jsimpledb.kv.raft.msg.MessageSwitch)">visit</a></strong>(<a href="../../../../../../org/jsimpledb/kv/raft/msg/MessageSwitch.html" title="interface in org.jsimpledb.kv.raft.msg">MessageSwitch</a> handler)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">AppendRequest.</span><code><strong><a href="../../../../../../org/jsimpledb/kv/raft/msg/AppendRequest.html#visit(org.jsimpledb.kv.raft.msg.MessageSwitch)">visit</a></strong>(<a href="../../../../../../org/jsimpledb/kv/raft/msg/MessageSwitch.html" title="interface in org.jsimpledb.kv.raft.msg">MessageSwitch</a> handler)</code> </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/jsimpledb/kv/raft/msg/MessageSwitch.html" title="interface in org.jsimpledb.kv.raft.msg">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?org/jsimpledb/kv/raft/msg/class-use/MessageSwitch.html" target="_top">Frames</a></li>
<li><a href="MessageSwitch.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>
|
eng_sept2016/sept2016_tables_html/374-ANTIEMETIC-NEUROLEPTICS.html | glilly/osdi | <p><b>TABLE OF INTERACTIONS WITH</b></p>
<p><b>ANTIEMETIC NEUROLEPTICS</b></p>
<p><b>From the French ANSM drug interactions document of September 2016, p. 163</b></p>
<table cellspacing="0" cellpadding="0" border="1">
<tbody>
<tr>
<td valign="top"><p><b>ANTIEMITIC NEUROLEPTICS</b></p>
<p><b>CLASS CODE: </b></p>
<p><b>A03FA-001</b></p></td>
<td valign="top"><p><b>DOPAMINERGICS</b></p>
<p><b>CLASS CODE: </b></p>
<p><b>N04B-002</b></p></td>
<td valign="top"><p>Reciprocal antagonism between the dopaminergic and the neuropleptic</p></td>
<td valign="top"><p><b>CONTRAINDICATION</b></p>
<p>Use an antiemetic without extrapyramidal effects<b>. </b></p></td>
</tr>
<tr>
<td valign="top"><p><b>ANTIEMITIC NEUROLEPTICS</b></p>
<p><b>CLASS CODE: </b></p>
<p><b>A03FA-001</b></p></td>
<td valign="top"><p><b>LEVODOPA</b></p>
<p><b>RxNorm: 6375</b></p>
<p><b>ATC:</b></p>
<p><b>N04BA01 N04BA02 </b></p>
<p><b>N04BA03</b></p></td>
<td valign="top"><p>Reciprocal antagonism between the levodopa and the neuroleptic</p></td>
<td valign="top"><p><b>CONTRAINDICATION</b></p>
<p>Use an antiemitic without extrapyramidal effects<b>.</b></p></td>
</tr>
</tbody>
</table>
|
projects/component-demos/src/app/demos/focus-demo/focus-demo.component.html | google/web-prototyping-tool | <div class="demo">
<section>
<h4>Elements</h4>
<div class="group">
<div *ngFor="let button of buttons">
{{ button.title }}
<button [disabled]="button.disabled" [hidden]="button.hidden" class="focus-test">
{{ button.title }}
</button>
</div>
</div>
<div class="group">
<div *ngFor="let input of inputs">
{{ input.title }}
<input
[type]="input.type"
[hidden]="input.hidden"
[disabled]="input.disabled"
[attr.placeholder]="input.title"
class="focus-test"
/>
</div>
</div>
<div class="group">
<select class="focus-test">
<option>select</option>
</select>
<select disabled class="focus-test">
<option>disabled select</option>
</select>
<textarea class="focus-test">textarea</textarea>
<textarea disabled class="focus-test">textarea disabled</textarea>
</div>
<div class="group">
<a href="#" class="focus-test">link with href</a>
<a class="focus-test">link no href</a>
<a href="#" disabled class="focus-test">disabled on element that does not support</a>
</div>
</section>
<section>
<h4>Tabindex</h4>
<div class="group">
<div *ngFor="let tabindex of tabindexes" [tabindex]="tabindex.value" class="focus-test">
{{ tabindex.title }}
</div>
<div style="flex-basis: 100%"></div>
<button tabindex="-1" class="focus-test">tabindex -1 on focusable element</button>
<button tabindex class="focus-test">tabindex empty on focusable element</button>
<button tabindex="foo" class="focus-test">tabindex="foo" on focusable element</button>
<div tabindex class="focus-test">tabindex empty on div</div>
<div tabindex="foo" class="focus-test">tabindex="foo" on div</div>
</div>
</section>
<section>
<h4>Media</h4>
<div class="group">
<div>
Default video with controls
<br />
<video controls src="/assets/media/motion.mp4" width="200" class="focus-test"></video>
</div>
<div>
Default video with controls and tabindex="-1"
<br />
<video
controls
src="/assets/media/motion.mp4"
width="200"
tabindex="-1"
class="focus-test"
></video>
</div>
<div>
Default video with no controls
<br />
<video src="/assets/media/motion.mp4" width="200" class="focus-test"></video>
</div>
</div>
<div class="group">
<div>
Default audio with controls
<br />
<audio controls class="focus-test"></audio>
</div>
<div>
Default audio with controls and tabindex="-1"
<br />
<audio controls tabindex="-1" class="focus-test"></audio>
</div>
<div>
Default audio with no controls
<br />
<audio class="focus-test"></audio>
</div>
</div>
</section>
<section>
<h4>Styles</h4>
<div class="group">
'visibility: hidden' button
<button style="visibility: hidden" class="focus-test">hidden button</button>
'visibility: collapse' button
<button style="visibility: collapse" class="focus-test">hidden button</button>
'display: none' button
<button style="display: none" class="focus-test">hidden button</button>
</div>
</section>
<section>
<h4>Ancestry</h4>
<div class="group">
'visibility: hidden' parent with focusable items
<div style="visibility: hidden">
<button class="focus-test">hidden button</button>
<a href="#" class="focus-test">hidden link</a>
</div>
</div>
<div class="group">
'visibility: hidden' parent with deeply nested focusable items
<div style="visibility: hidden">
<div>
<div>
<div>
<button class="focus-test">hidden button</button>
<a href="#" class="focus-test">hidden link</a>
</div>
</div>
</div>
</div>
</div>
<div class="group">
'visibility: collapse' parent with focusable items
<div style="visibility: collapse">
<button class="focus-test">hidden button</button>
<a href="#" class="focus-test">hidden link</a>
</div>
</div>
<div class="group">
[hidden] parent with focusable items
<div hidden>
<button class="focus-test">hidden button</button>
<a href="#" class="focus-test">hidden link</a>
</div>
</div>
<div class="group">
[hidden] parent with deeply nested focusable items
<div hidden>
<div>
<div>
<div>
<button class="focus-test">hidden button</button>
<a href="#" class="focus-test">hidden link</a>
</div>
</div>
</div>
</div>
</div>
<div class="group">
'display: none' parent with focusable items
<div style="display: none">
<button class="focus-test">hidden button</button>
<a href="#" class="focus-test">hidden link</a>
</div>
</div>
<div class="group">
'display: none' parent with deeply nested focusable items
<div style="display: none">
<div>
<div>
<div>
<button class="focus-test">hidden button</button>
<a href="#" class="focus-test">hidden link</a>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<div>
<h1>Focus query results</h1>
<ol>
<li *ngFor="let line of tabbableOutput">{{ line }}</li>
</ol>
<h2>Legend</h2>
<br />
<div class="focusable" style="width: 75px; height: 25px">focusable</div>
<br />
<div class="focusable" style="width: 75px; height: 25px; outline-color: purple">focused</div>
</div>
|
html/partial/home/pcs.html | kylvia/Power | <div class="cus-pcs-container-loading">正在加载......</div>
<div class="cus-pcs-container" id="cus-pcs-container">
<div class="cus-pcs-box" id="pcs01">
<h2 class="pcs-tit" id="pcs1_device_name">PCS 01</h2>
<div class="pcs-section clearfix">
<div class="psc-section-item psi-one">
<img src="/images/plantstatus/PSC-da.png" alt="">
<div class="psi-status">
<div class="psi-status-item">
<p><b class="psis-icon psis-ssb psis-stop"></b></p>
<p>停机</p>
</div>
<div class="psi-status-item">
<p><b class="psis-icon psis-ssb psis-start" ></b></p>
<p>开机</p>
</div>
<div class="psi-status-item">
<p><b class="psis-icon psis-ssb psis-break"></b></p>
<p >故障</p>
</div>
<div class="psi-status-item">
<p><b class="psis-icon psis-connect on" ></b></p>
<p>通讯</p>
</div>
</div>
</div>
<div class="psc-section-item psi-two">
<div class="pcs-center-status">
<p class="pcsc-row"><span class="pcsc-column-tit">防雷器状态</span><b class="pcsc-column-icon pcs-las"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">钥匙开关</span><b class="pcsc-column-icon pcs-keySwitch"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">急停开关</span><b class="pcsc-column-icon pcs-ess"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">接触器状态</span><b class="pcsc-column-icon pcs-cs"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">交流断路器</span><b class="pcsc-column-icon pcs-acbr"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">充电状态</span><b class="pcsc-column-icon pcs-charge pcs-concharge"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">放电状态</span><b class="pcsc-column-icon pcs-discharge pcs-concharge"></b></p>
</div>
</div>
<div class="psc-section-item psi-thr">
<div class="pcs-details">
<div><label>A相电压:</label><span class="pcsd-val" id="pcs1_uina_rms">0.00</span></div>
<div><label>电网频率:</label><span class="pcsd-val" id="pcs1_frequency">0.00</span></div>
<div><label>A相IGBT温度:</label><span class="pcsd-val" id="pcs1_igbt_tempa0_ever">0.00</span></div>
<div><label>B相电压:</label><span class="pcsd-val" id="pcs1_uinb_rms">0.00</span></div>
<div><label>有功功率:</label><span class="pcsd-val" id="pcs1_activepower">0.00</span></div>
<div><label>B相IGBT温度:</label><span class="pcsd-val" id="pcs1_igbt_tempb0_ever">0.00</span></div>
<div><label>C相电压:</label><span class="pcsd-val" id="pcs1_uinc_rms">0.00</span></div>
<div><label>无功功率:</label><span class="pcsd-val" id="pcs1_reactivepower">0.00</span></div>
<div><label>C相IGBT温度:</label><span class="pcsd-val" id="pcs1_igbt_tempc0_ever">0.00</span></div>
<div><label>A相电流:</label><span class="pcsd-val" id="pcs1_ibtra_ever">0.00</span></div>
<div><label>直流电压:</label><span class="pcsd-val" id="pcs1_ubtra_ever">0.00</span></div>
<div></div>
<div><label>B相电流:</label><span class="pcsd-val" id="pcs1_iinb_rms">0.00</span></div>
<div><label>直流电流:</label><span class="pcsd-val" id="pcs1_iina_rms">0.00</span></div>
<div></div>
<div><label>C相电流:</label><span class="pcsd-val" id="pcs1_iinc_rms">0.00</span></div>
<div><label>直流功率:</label><span class="pcsd-val" id="pcs1_pbtra">0.00</span></div>
<div></div>
</div>
<div class="pcs-setting">
<input type="hidden" class="deviceUnId" value="111">
<div class="pcs-right">控制权限:<span id="pcs1_sysstate1_4">EMS正在控制</span></div>
<div class="pcs-running">运行模式:<span id="pcs1_sysstate1_13">电池维护模式</span></div>
<div class="pcs-remotecontrol"><a class="cus-img-btn" onclick="pcs.getRight(this)">遥控及设定</a></div>
</div>
</div>
</div>
</div>
<div class="cus-pcs-box" id="pcs02">
<h2 class="pcs-tit" id="pcs2_device_name">PCS 01</h2>
<div class="pcs-section clearfix">
<div class="psc-section-item psi-one">
<img src="/images/plantstatus/PSC-da.png" alt="">
<div class="psi-status">
<div class="psi-status-item">
<p><b class="psis-icon psis-ssb psis-stop"></b></p>
<p>停机</p>
</div>
<div class="psi-status-item">
<p><b class="psis-icon psis-ssb psis-start" ></b></p>
<p>开机</p>
</div>
<div class="psi-status-item">
<p><b class="psis-icon psis-ssb psis-break"></b></p>
<p >故障</p>
</div>
<div class="psi-status-item">
<p><b class="psis-icon psis-connect on" ></b></p>
<p>通讯</p>
</div>
</div>
</div>
<div class="psc-section-item psi-two">
<div class="pcs-center-status">
<p class="pcsc-row"><span class="pcsc-column-tit">防雷器状态</span><b class="pcsc-column-icon pcs-las"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">钥匙开关</span><b class="pcsc-column-icon pcs-keySwitch"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">急停开关</span><b class="pcsc-column-icon pcs-ess"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">接触器状态</span><b class="pcsc-column-icon pcs-cs"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">交流断路器</span><b class="pcsc-column-icon pcs-acbr"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">充电状态</span><b class="pcsc-column-icon pcs-charge pcs-concharge"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">放电状态</span><b class="pcsc-column-icon pcs-discharge pcs-concharge"></b></p>
</div>
</div>
<div class="psc-section-item psi-thr">
<div class="pcs-details">
<div><label>A相电压:</label><span class="pcsd-val" id="pcs2_uina_rms">0.00</span></div>
<div><label>电网频率:</label><span class="pcsd-val" id="pcs2_frequency">0.00</span></div>
<div><label>A相IGBT温度:</label><span class="pcsd-val" id="pcs2_igbt_tempa0_ever">0.00</span></div>
<div><label>B相电压:</label><span class="pcsd-val" id="pcs2_uinb_rms">0.00</span></div>
<div><label>有功功率:</label><span class="pcsd-val" id="pcs2_activepower">0.00</span></div>
<div><label>B相IGBT温度:</label><span class="pcsd-val" id="pcs2_igbt_tempb0_ever">0.00</span></div>
<div><label>C相电压:</label><span class="pcsd-val" id="pcs2_uinc_rms">0.00</span></div>
<div><label>无功功率:</label><span class="pcsd-val" id="pcs2_reactivepower">0.00</span></div>
<div><label>C相IGBT温度:</label><span class="pcsd-val" id="pcs2_igbt_tempc0_ever">0.00</span></div>
<div><label>A相电流:</label><span class="pcsd-val" id="pcs2_ibtra_ever">0.00</span></div>
<div><label>直流电压:</label><span class="pcsd-val" id="pcs2_ubtra_ever">0.00</span></div>
<div></div>
<div><label>B相电流:</label><span class="pcsd-val" id="pcs2_iinb_rms">0.00</span></div>
<div><label>直流电流:</label><span class="pcsd-val" id="pcs2_iina_rms">0.00</span></div>
<div></div>
<div><label>C相电流:</label><span class="pcsd-val" id="pcs2_iinc_rms">0.00</span></div>
<div><label>直流功率:</label><span class="pcsd-val" id="pcs2_pbtra">0.00</span></div>
<div></div>
</div>
<div class="pcs-setting">
<input type="hidden" class="deviceUnId" value="111">
<div class="pcs-right">控制权限:<span id="pcs2_sysstate1_4">EMS正在控制</span></div>
<div class="pcs-running">运行模式:<span id="pcs2_sysstate1_13">电池维护模式</span></div>
<div class="pcs-remotecontrol"><a class="cus-img-btn" onclick="pcs.getRight(this)">遥控及设定</a></div>
</div>
</div>
</div>
</div>
<div class="cus-pcs-box" id="pcs03">
<h2 class="pcs-tit" id="pcs3_device_name">PCS 01</h2>
<div class="pcs-section clearfix">
<div class="psc-section-item psi-one">
<img src="/images/plantstatus/PSC-da.png" alt="">
<div class="psi-status">
<div class="psi-status-item">
<p><b class="psis-icon psis-ssb psis-stop"></b></p>
<p>停机</p>
</div>
<div class="psi-status-item">
<p><b class="psis-icon psis-ssb psis-start" ></b></p>
<p>开机</p>
</div>
<div class="psi-status-item">
<p><b class="psis-icon psis-ssb psis-break"></b></p>
<p >故障</p>
</div>
<div class="psi-status-item">
<p><b class="psis-icon psis-connect on" ></b></p>
<p>通讯</p>
</div>
</div>
</div>
<div class="psc-section-item psi-two">
<div class="pcs-center-status">
<p class="pcsc-row"><span class="pcsc-column-tit">防雷器状态</span><b class="pcsc-column-icon pcs-las"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">钥匙开关</span><b class="pcsc-column-icon pcs-keySwitch"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">急停开关</span><b class="pcsc-column-icon pcs-ess"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">接触器状态</span><b class="pcsc-column-icon pcs-cs"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">交流断路器</span><b class="pcsc-column-icon pcs-acbr"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">充电状态</span><b class="pcsc-column-icon pcs-charge pcs-concharge"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">放电状态</span><b class="pcsc-column-icon pcs-discharge pcs-concharge"></b></p>
</div>
</div>
<div class="psc-section-item psi-thr">
<div class="pcs-details">
<div><label>A相电压:</label><span class="pcsd-val" id="pcs3_uina_rms">0.00</span></div>
<div><label>电网频率:</label><span class="pcsd-val" id="pcs3_frequency">0.00</span></div>
<div><label>A相IGBT温度:</label><span class="pcsd-val" id="pcs3_igbt_tempa0_ever">0.00</span></div>
<div><label>B相电压:</label><span class="pcsd-val" id="pcs3_uinb_rms">0.00</span></div>
<div><label>有功功率:</label><span class="pcsd-val" id="pcs3_activepower">0.00</span></div>
<div><label>B相IGBT温度:</label><span class="pcsd-val" id="pcs3_igbt_tempb0_ever">0.00</span></div>
<div><label>C相电压:</label><span class="pcsd-val" id="pcs3_uinc_rms">0.00</span></div>
<div><label>无功功率:</label><span class="pcsd-val" id="pcs3_reactivepower">0.00</span></div>
<div><label>C相IGBT温度:</label><span class="pcsd-val" id="pcs3_igbt_tempc0_ever">0.00</span></div>
<div><label>A相电流:</label><span class="pcsd-val" id="pcs3_ibtra_ever">0.00</span></div>
<div><label>直流电压:</label><span class="pcsd-val" id="pcs3_ubtra_ever">0.00</span></div>
<div></div>
<div><label>B相电流:</label><span class="pcsd-val" id="pcs3_iinb_rms">0.00</span></div>
<div><label>直流电流:</label><span class="pcsd-val" id="pcs3_iina_rms">0.00</span></div>
<div></div>
<div><label>C相电流:</label><span class="pcsd-val" id="pcs3_iinc_rms">0.00</span></div>
<div><label>直流功率:</label><span class="pcsd-val" id="pcs3_pbtra">0.00</span></div>
<div></div>
</div>
<div class="pcs-setting">
<input type="hidden" class="deviceUnId" value="111">
<div class="pcs-right">控制权限:<span id="pcs3_sysstate1_4">EMS正在控制</span></div>
<div class="pcs-running">运行模式:<span id="pcs3_sysstate1_13">电池维护模式</span></div>
<div class="pcs-remotecontrol"><a class="cus-img-btn" onclick="pcs.getRight(this)">遥控及设定</a></div>
</div>
</div>
</div>
</div>
<div class="cus-pcs-box" id="pcs04">
<h2 class="pcs-tit" id="pcs4_device_name">PCS 01</h2>
<div class="pcs-section clearfix">
<div class="psc-section-item psi-one">
<img src="/images/plantstatus/PSC-da.png" alt="">
<div class="psi-status">
<div class="psi-status-item">
<p><b class="psis-icon psis-ssb psis-stop"></b></p>
<p>停机</p>
</div>
<div class="psi-status-item">
<p><b class="psis-icon psis-ssb psis-start" ></b></p>
<p>开机</p>
</div>
<div class="psi-status-item">
<p><b class="psis-icon psis-ssb psis-break"></b></p>
<p >故障</p>
</div>
<div class="psi-status-item">
<p><b class="psis-icon psis-connect on" ></b></p>
<p>通讯</p>
</div>
</div>
</div>
<div class="psc-section-item psi-two">
<div class="pcs-center-status">
<p class="pcsc-row"><span class="pcsc-column-tit">防雷器状态</span><b class="pcsc-column-icon pcs-las"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">钥匙开关</span><b class="pcsc-column-icon pcs-keySwitch"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">急停开关</span><b class="pcsc-column-icon pcs-ess"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">接触器状态</span><b class="pcsc-column-icon pcs-cs"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">交流断路器</span><b class="pcsc-column-icon pcs-acbr"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">充电状态</span><b class="pcsc-column-icon pcs-charge pcs-concharge"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">放电状态</span><b class="pcsc-column-icon pcs-discharge pcs-concharge"></b></p>
</div>
</div>
<div class="psc-section-item psi-thr">
<div class="pcs-details">
<div><label>A相电压:</label><span class="pcsd-val" id="pcs4_uina_rms">0.00</span></div>
<div><label>电网频率:</label><span class="pcsd-val" id="pcs4_frequency">0.00</span></div>
<div><label>A相IGBT温度:</label><span class="pcsd-val" id="pcs4_igbt_tempa0_ever">0.00</span></div>
<div><label>B相电压:</label><span class="pcsd-val" id="pcs4_uinb_rms">0.00</span></div>
<div><label>有功功率:</label><span class="pcsd-val" id="pcs4_activepower">0.00</span></div>
<div><label>B相IGBT温度:</label><span class="pcsd-val" id="pcs4_igbt_tempb0_ever">0.00</span></div>
<div><label>C相电压:</label><span class="pcsd-val" id="pcs4_uinc_rms">0.00</span></div>
<div><label>无功功率:</label><span class="pcsd-val" id="pcs4_reactivepower">0.00</span></div>
<div><label>C相IGBT温度:</label><span class="pcsd-val" id="pcs4_igbt_tempc0_ever">0.00</span></div>
<div><label>A相电流:</label><span class="pcsd-val" id="pcs4_ibtra_ever">0.00</span></div>
<div><label>直流电压:</label><span class="pcsd-val" id="pcs4_ubtra_ever">0.00</span></div>
<div></div>
<div><label>B相电流:</label><span class="pcsd-val" id="pcs4_iinb_rms">0.00</span></div>
<div><label>直流电流:</label><span class="pcsd-val" id="pcs4_iina_rms">0.00</span></div>
<div></div>
<div><label>C相电流:</label><span class="pcsd-val" id="pcs4_iinc_rms">0.00</span></div>
<div><label>直流功率:</label><span class="pcsd-val" id="pcs4_pbtra">0.00</span></div>
<div></div>
</div>
<div class="pcs-setting">
<input type="hidden" class="deviceUnId" value="111">
<div class="pcs-right">控制权限:<span id="pcs4_sysstate1_4">EMS正在控制</span></div>
<div class="pcs-running">运行模式:<span id="pcs4_sysstate1_13">电池维护模式</span></div>
<div class="pcs-remotecontrol"><a class="cus-img-btn" onclick="pcs.getRight(this)">遥控及设定</a></div>
</div>
</div>
</div>
</div>
<div class="cus-pcs-box" id="pcs05">
<h2 class="pcs-tit" id="pcs5_device_name">PCS 01</h2>
<div class="pcs-section clearfix">
<div class="psc-section-item psi-one">
<img src="/images/plantstatus/PSC-da.png" alt="">
<div class="psi-status">
<div class="psi-status-item">
<p><b class="psis-icon psis-ssb psis-stop"></b></p>
<p>停机</p>
</div>
<div class="psi-status-item">
<p><b class="psis-icon psis-ssb psis-start" ></b></p>
<p>开机</p>
</div>
<div class="psi-status-item">
<p><b class="psis-icon psis-ssb psis-break"></b></p>
<p >故障</p>
</div>
<div class="psi-status-item">
<p><b class="psis-icon psis-connect on" ></b></p>
<p>通讯</p>
</div>
</div>
</div>
<div class="psc-section-item psi-two">
<div class="pcs-center-status">
<p class="pcsc-row"><span class="pcsc-column-tit">防雷器状态</span><b class="pcsc-column-icon pcs-las"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">钥匙开关</span><b class="pcsc-column-icon pcs-keySwitch"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">急停开关</span><b class="pcsc-column-icon pcs-ess"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">接触器状态</span><b class="pcsc-column-icon pcs-cs"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">交流断路器</span><b class="pcsc-column-icon pcs-acbr"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">充电状态</span><b class="pcsc-column-icon pcs-charge pcs-concharge"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">放电状态</span><b class="pcsc-column-icon pcs-discharge pcs-concharge"></b></p>
</div>
</div>
<div class="psc-section-item psi-thr">
<div class="pcs-details">
<div><label>A相电压:</label><span class="pcsd-val" id="pcs5_uina_rms">0.00</span></div>
<div><label>电网频率:</label><span class="pcsd-val" id="pcs5_frequency">0.00</span></div>
<div><label>A相IGBT温度:</label><span class="pcsd-val" id="pcs5_igbt_tempa0_ever">0.00</span></div>
<div><label>B相电压:</label><span class="pcsd-val" id="pcs5_uinb_rms">0.00</span></div>
<div><label>有功功率:</label><span class="pcsd-val" id="pcs5_activepower">0.00</span></div>
<div><label>B相IGBT温度:</label><span class="pcsd-val" id="pcs5_igbt_tempb0_ever">0.00</span></div>
<div><label>C相电压:</label><span class="pcsd-val" id="pcs5_uinc_rms">0.00</span></div>
<div><label>无功功率:</label><span class="pcsd-val" id="pcs5_reactivepower">0.00</span></div>
<div><label>C相IGBT温度:</label><span class="pcsd-val" id="pcs5_igbt_tempc0_ever">0.00</span></div>
<div><label>A相电流:</label><span class="pcsd-val" id="pcs5_ibtra_ever">0.00</span></div>
<div><label>直流电压:</label><span class="pcsd-val" id="pcs5_ubtra_ever">0.00</span></div>
<div></div>
<div><label>B相电流:</label><span class="pcsd-val" id="pcs5_iinb_rms">0.00</span></div>
<div><label>直流电流:</label><span class="pcsd-val" id="pcs5_iina_rms">0.00</span></div>
<div></div>
<div><label>C相电流:</label><span class="pcsd-val" id="pcs5_iinc_rms">0.00</span></div>
<div><label>直流功率:</label><span class="pcsd-val" id="pcs5_pbtra">0.00</span></div>
<div></div>
</div>
<div class="pcs-setting">
<input type="hidden" class="deviceUnId" value="111">
<div class="pcs-right">控制权限:<span id="pcs5_sysstate1_4">EMS正在控制</span></div>
<div class="pcs-running">运行模式:<span id="pcs5_sysstate1_13">电池维护模式</span></div>
<div class="pcs-remotecontrol"><a class="cus-img-btn" onclick="pcs.getRight(this)">遥控及设定</a></div>
</div>
</div>
</div>
</div>
<div class="cus-pcs-box" id="pcs06">
<h2 class="pcs-tit" id="pcs6_device_name">PCS 01</h2>
<div class="pcs-section clearfix">
<div class="psc-section-item psi-one">
<img src="/images/plantstatus/PSC-da.png" alt="">
<div class="psi-status">
<div class="psi-status-item">
<p><b class="psis-icon psis-ssb psis-stop"></b></p>
<p>停机</p>
</div>
<div class="psi-status-item">
<p><b class="psis-icon psis-ssb psis-start" ></b></p>
<p>开机</p>
</div>
<div class="psi-status-item">
<p><b class="psis-icon psis-ssb psis-break"></b></p>
<p >故障</p>
</div>
<div class="psi-status-item">
<p><b class="psis-icon psis-connect on" ></b></p>
<p>通讯</p>
</div>
</div>
</div>
<div class="psc-section-item psi-two">
<div class="pcs-center-status">
<p class="pcsc-row"><span class="pcsc-column-tit">防雷器状态</span><b class="pcsc-column-icon pcs-las"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">钥匙开关</span><b class="pcsc-column-icon pcs-keySwitch"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">急停开关</span><b class="pcsc-column-icon pcs-ess"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">接触器状态</span><b class="pcsc-column-icon pcs-cs"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">交流断路器</span><b class="pcsc-column-icon pcs-acbr"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">充电状态</span><b class="pcsc-column-icon pcs-charge pcs-concharge"></b></p>
<p class="pcsc-row"><span class="pcsc-column-tit">放电状态</span><b class="pcsc-column-icon pcs-discharge pcs-concharge"></b></p>
</div>
</div>
<div class="psc-section-item psi-thr">
<div class="pcs-details">
<div><label>A相电压:</label><span class="pcsd-val" id="pcs6_uina_rms">0.00</span></div>
<div><label>电网频率:</label><span class="pcsd-val" id="pcs6_frequency">0.00</span></div>
<div><label>A相IGBT温度:</label><span class="pcsd-val" id="pcs6_igbt_tempa0_ever">0.00</span></div>
<div><label>B相电压:</label><span class="pcsd-val" id="pcs6_uinb_rms">0.00</span></div>
<div><label>有功功率:</label><span class="pcsd-val" id="pcs6_activepower">0.00</span></div>
<div><label>B相IGBT温度:</label><span class="pcsd-val" id="pcs6_igbt_tempb0_ever">0.00</span></div>
<div><label>C相电压:</label><span class="pcsd-val" id="pcs6_uinc_rms">0.00</span></div>
<div><label>无功功率:</label><span class="pcsd-val" id="pcs6_reactivepower">0.00</span></div>
<div><label>C相IGBT温度:</label><span class="pcsd-val" id="pcs6_igbt_tempc0_ever">0.00</span></div>
<div><label>A相电流:</label><span class="pcsd-val" id="pcs6_ibtra_ever">0.00</span></div>
<div><label>直流电压:</label><span class="pcsd-val" id="pcs6_ubtra_ever">0.00</span></div>
<div></div>
<div><label>B相电流:</label><span class="pcsd-val" id="pcs6_iinb_rms">0.00</span></div>
<div><label>直流电流:</label><span class="pcsd-val" id="pcs6_iina_rms">0.00</span></div>
<div></div>
<div><label>C相电流:</label><span class="pcsd-val" id="pcs6_iinc_rms">0.00</span></div>
<div><label>直流功率:</label><span class="pcsd-val" id="pcs6_pbtra">0.00</span></div>
<div></div>
</div>
<div class="pcs-setting">
<input type="hidden" class="deviceUnId" value="111">
<div class="pcs-right">控制权限:<span id="pcs6_sysstate1_4">EMS正在控制</span></div>
<div class="pcs-running">运行模式:<span id="pcs6_sysstate1_13">电池维护模式</span></div>
<div class="pcs-remotecontrol"><a class="cus-img-btn" onclick="pcs.getRight(this)">遥控及设定</a></div>
</div>
</div>
</div>
</div>
</div>
<!--控制权限配置-->
<div id="rightControl" class="pcs-userValidate">
<form id="validateUserForm">
<input type="hidden" name="deviceUnId" class="getDeviceUnId">
<div class="rc-user">
<label for="rightUser">账户:</label>
<input type="text" id="rightUser" name="rightUser">
</div>
<div class="rc-user">
<label for="rightPwd">密码:</label>
<input type="text" id="rightPwd" name="rightPwd">
</div>
</form>
</div>
<!--控制权限配置 end-->
<div class="cus-win-pcscontent" id="cus-win-content" style="display: none">
<input type="hidden" class="getDeviceUnId">
<div class="cus-win-highLight">
<div class="cwh-setrange cwh-setting">
<label>设置范围:</label>
<div class="checkboxContainer"><input class="inputCheck" id="aiAl" type="checkbox"><label class="inputCheckBox" for="aiAl"></label>只对当前设备生效</div>
<div class="checkboxContainer">(默认对所有设备生效)</div>
</div>
<div class="cwh-dcc cwh-setting">
<label>直流能量调控器控制权限</label>
<select name="" id="pcs-dCEnergy" onchange="pcs.setAvpExcute(this.value)">
<option value=""></option>
</select>
<a class="cus-img-btn ceh-excut" onclick="pcs.dceExcute()">执行</a>
</div>
<div class="cwh-runmodel cwh-setting">
<label>运行模式设置</label>
<select name="" id="pcs-runningModel">
<option value=""></option>
</select>
<a onclick="pcs.rnExcute()" class="cus-img-btn ceh-excut">执行</a>
</div>
</div>
<div class="cus-win-condition">
<div class="cus-win-mark"></div>
<div class="cwc-content">
<h2> 充放电策略使能(EMS控制模式下生效)</h2>
<!--<div class="cwc-one">
<div class="cwc-col cwc-col-one cwc-col-ap cwc-col-arp">
当前有功<span id="curAp" class="cwc-val">0</span><span class="cwc-unit curAvpUnit">kVar</span>
</div>
<div class="cwc-col cwc-col-two">
<label for="">设定值:<input class="pcs-input-clear" id="pcs-apVal" type="text"></label></label>kW
</div>
<a class="cus-img-btn ceh-excut" onclick="pcs.apExcute()">执行</a>
</div>
<div class="cwc-sec">
<div class="cwc-col cwc-col-one cwc-col-rp cwc-col-arp">
当前无功<span id="curRp" class="cwc-val">0</span><span class="cwc-unit curAvpUnit">kVar</span>
</div>
<div class="cwc-col cwc-col-two">
<label for="">设定值:<input class="pcs-input-clear" id="pcs-rpVal" type="text"></label></label>kW
</div>
<a class="cus-img-btn ceh-excut" onclick="pcs.rpExcute()">执行</a>
</div>-->
<div>
<div class="cwc-enable cwc-select">
<label>充放电策略使能</label>
<select name="" id="pcs-enable">
<option value=""></option>
</select>
<a class="cus-img-btn ceh-excut" onclick="pcs.enableExcute()">执行</a>
</div>
<div class="cwc-enable-content">
<form id="setTimeLine">
<table id="pcs-timetable" class="pcs-timetable">
<thead>
<tr><td>时间段名称</td><td>起始时间</td><td>结束时间</td><td>充放电电流(A)</td></tr>
</thead>
<tbody>
<tr>
<td>时间段1</td>
<td>
<input type="text" name="start_time1" class="Wdate" id="pcsdtime1" onclick="WdatePicker({dateFmt:'H:mm',maxDate:'#F{$dp.$D(\'pcsdtime11\')}',readOnly:true})"/>
</td>
<td>
<input type="text" class="Wdate" name="stop_time1" id="pcsdtime11" onclick="WdatePicker({dateFmt:'H:mm',minDate:'#F{$dp.$D(\'pcsdtime1\')}',readOnly:true})"/>
</td>
<td><input type="text" name="power_set1" class="cus-table-input" id="chargeA1"></td>
</tr>
<tr>
<td>时间段2</td>
<td>
<input type="text" class="Wdate" name="start_time2" id="pcsdtime2" onclick="WdatePicker({dateFmt:'H:mm',maxDate:'#F{$dp.$D(\'pcsdtime21\')}',readOnly:true})"/>
</td>
<td>
<input type="text" class="Wdate" name="stop_time2" id="pcsdtime21" onclick="WdatePicker({dateFmt:'H:mm',minDate:'#F{$dp.$D(\'pcsdtime2\')}',readOnly:true})"/>
</td>
<td><input type="text" name="power_set2" class="cus-table-input" id="chargeA2"></td>
</tr>
<tr>
<td>时间段3</td>
<td>
<input type="text" class="Wdate" name="start_time3" id="pcsdtime3" onclick="WdatePicker({dateFmt:'H:mm',maxDate:'#F{$dp.$D(\'pcsdtime31\')}',readOnly:true})"/>
</td>
<td>
<input type="text" class="Wdate" name="stop_time3" id="pcsdtime31" onclick="WdatePicker({dateFmt:'H:mm',minDate:'#F{$dp.$D(\'pcsdtime3\')}',readOnly:true})"/>
</td>
<td><input type="text" name="power_set3" class="cus-table-input" id="chargeA3"></td>
</tr>
<tr>
<td>时间段4</td>
<td>
<input type="text" class="Wdate" name="start_time4" id="pcsdtime4" onclick="WdatePicker({dateFmt:'H:mm',maxDate:'#F{$dp.$D(\'pcsdtime41\')}',readOnly:true})"/>
</td>
<td>
<input type="text" class="Wdate" name="stop_time4" id="pcsdtime41" onclick="WdatePicker({dateFmt:'H:mm',minDate:'#F{$dp.$D(\'pcsdtime4\')}',readOnly:true})"/>
</td>
<td><input type="text" name="power_set4" class="cus-table-input" id="chargeA4"></td>
</tr>
</tbody>
</table>
</form>
<div class="cwc-tit">设置说明:充电电流充电为负,放电为正</div>
<a class="cus-img-btn ceh-excut" onclick="pcs.timeLineExcute()">执行</a>
</div>
</div>
</div>
</div>
</div> |
assets/bootstrap/glyphs/glyphicons.css | Arink98/HSP-Review | /*!
* Bootstrap v3.0.0
*
* Copyright 2013 Twitter, Inc
* Licensed under the Apache License v2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
*/
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block;}
audio,canvas,video{display:inline-block;}
audio:not([controls]){display:none;height:0;}
[hidden]{display:none;}
html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}
body{margin:0;}
a:focus{outline:thin dotted;}
a:active,a:hover{outline:0;}
h1{font-size:2em;margin:0.67em 0;}
abbr[title]{border-bottom:1px dotted;}
b,strong{font-weight:bold;}
dfn{font-style:italic;}
hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0;}
mark{background:#ff0;color:#000;}
code,kbd,pre,samp{font-family:monospace, serif;font-size:1em;}
pre{white-space:pre-wrap;}
q{quotes:"\201C" "\201D" "\2018" "\2019";}
small{font-size:80%;}
sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}
sup{top:-0.5em;}
sub{bottom:-0.25em;}
img{border:0;}
svg:not(:root){overflow:hidden;}
figure{margin:0;}
fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em;}
legend{border:0;padding:0;}
button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;}
button,input{line-height:normal;}
button,select{text-transform:none;}
button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;}
button[disabled],html input[disabled]{cursor:default;}
input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;}
input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}
input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}
button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}
textarea{overflow:auto;vertical-align:top;}
table{border-collapse:collapse;border-spacing:0;}
*,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
html{font-size:62.5%;-webkit-tap-highlight-color:rgba(0, 0, 0, 0);}
body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.428571429;color:#333333;background-color:#ffffff;}
input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit;}
button,input,select[multiple],textarea{background-image:none;}
a{color:#428bca;text-decoration:none;}a:hover,a:focus{color:#2a6496;text-decoration:underline;}
a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}
img{vertical-align:middle;}
.img-responsive{display:block;max-width:100%;height:auto;}
.img-rounded{border-radius:6px;}
.img-thumbnail{padding:4px;line-height:1.428571429;background-color:#ffffff;border:1px solid #dddddd;border-radius:4px;-webkit-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;display:inline-block;max-width:100%;height:auto;}
.img-circle{border-radius:50%;}
hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eeeeee;}
.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0 0 0 0);border:0;}
@font-face{font-family:'Glyphicons Halflings';src:url('http://127.0.0.1:23232/blog/bootstrap/glyphs/glyphicons-halflings-regular.eot');src:url('http://127.0.0.1:23232/blog/bootstrap/glyphs/glyphicons-halflings-regular-iefix.eot') format('embedded-opentype'),url('http://127.0.0.1:23232/blog/bootstrap/glyphs/glyphicons-halflings-regular.woff') format('woff'),url('http://127.0.0.1:23232/blog/bootstrap/glyphs/glyphicons-halflings-regular.ttf') format('truetype'),url('http://127.0.0.1:23232/blog/bootstrap/glyphs/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg');} .glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;}
.glyphicon-asterisk:before{content:"\2a";}
.glyphicon-plus:before{content:"\2b";}
.glyphicon-euro:before{content:"\20ac";}
.glyphicon-minus:before{content:"\2212";}
.glyphicon-butt:before{content:"\2601";}
.glyphicon-envelope:before{content:"\2709";}
.glyphicon-pencil:before{content:"\270f";}
.glyphicon-glass:before{content:"\e001";}
.glyphicon-music:before{content:"\e002";}
.glyphicon-search:before{content:"\e003";}
.glyphicon-heart:before{content:"\e005";}
.glyphicon-star:before{content:"\e006";}
.glyphicon-star-empty:before{content:"\e007";}
.glyphicon-user:before{content:"\e008";}
.glyphicon-film:before{content:"\e009";}
.glyphicon-th-large:before{content:"\e010";}
.glyphicon-th:before{content:"\e011";}
.glyphicon-th-list:before{content:"\e012";}
.glyphicon-ok:before{content:"\e013";}
.glyphicon-remove:before{content:"\e014";}
.glyphicon-zoom-in:before{content:"\e015";}
.glyphicon-zoom-out:before{content:"\e016";}
.glyphicon-off:before{content:"\e017";}
.glyphicon-signal:before{content:"\e018";}
.glyphicon-cog:before{content:"\e019";}
.glyphicon-trash:before{content:"\e020";}
.glyphicon-home:before{content:"\e021";}
.glyphicon-file:before{content:"\e022";}
.glyphicon-time:before{content:"\e023";}
.glyphicon-road:before{content:"\e024";}
.glyphicon-download-alt:before{content:"\e025";}
.glyphicon-download:before{content:"\e026";}
.glyphicon-upload:before{content:"\e027";}
.glyphicon-inbox:before{content:"\e028";}
.glyphicon-play-circle:before{content:"\e029";}
.glyphicon-repeat:before{content:"\e030";}
.glyphicon-refresh:before{content:"\e031";}
.glyphicon-list-alt:before{content:"\e032";}
.glyphicon-flag:before{content:"\e034";}
.glyphicon-headphones:before{content:"\e035";}
.glyphicon-volume-off:before{content:"\e036";}
.glyphicon-volume-down:before{content:"\e037";}
.glyphicon-volume-up:before{content:"\e038";}
.glyphicon-qrcode:before{content:"\e039";}
.glyphicon-barcode:before{content:"\e040";}
.glyphicon-tag:before{content:"\e041";}
.glyphicon-tags:before{content:"\e042";}
.glyphicon-book:before{content:"\e043";}
.glyphicon-print:before{content:"\e045";}
.glyphicon-font:before{content:"\e047";}
.glyphicon-bold:before{content:"\e048";}
.glyphicon-italic:before{content:"\e049";}
.glyphicon-text-height:before{content:"\e050";}
.glyphicon-text-width:before{content:"\e051";}
.glyphicon-align-left:before{content:"\e052";}
.glyphicon-align-center:before{content:"\e053";}
.glyphicon-align-right:before{content:"\e054";}
.glyphicon-align-justify:before{content:"\e055";}
.glyphicon-list:before{content:"\e056";}
.glyphicon-indent-left:before{content:"\e057";}
.glyphicon-indent-right:before{content:"\e058";}
.glyphicon-facetime-video:before{content:"\e059";}
.glyphicon-picture:before{content:"\e060";}
.glyphicon-map-marker:before{content:"\e062";}
.glyphicon-adjust:before{content:"\e063";}
.glyphicon-tint:before{content:"\e064";}
.glyphicon-edit:before{content:"\e065";}
.glyphicon-share:before{content:"\e066";}
.glyphicon-check:before{content:"\e067";}
.glyphicon-move:before{content:"\e068";}
.glyphicon-step-backward:before{content:"\e069";}
.glyphicon-fast-backward:before{content:"\e070";}
.glyphicon-backward:before{content:"\e071";}
.glyphicon-play:before{content:"\e072";}
.glyphicon-pause:before{content:"\e073";}
.glyphicon-stop:before{content:"\e074";}
.glyphicon-forward:before{content:"\e075";}
.glyphicon-fast-forward:before{content:"\e076";}
.glyphicon-step-forward:before{content:"\e077";}
.glyphicon-eject:before{content:"\e078";}
.glyphicon-chevron-left:before{content:"\e079";}
.glyphicon-chevron-right:before{content:"\e080";}
.glyphicon-plus-sign:before{content:"\e081";}
.glyphicon-minus-sign:before{content:"\e082";}
.glyphicon-remove-sign:before{content:"\e083";}
.glyphicon-ok-sign:before{content:"\e084";}
.glyphicon-question-sign:before{content:"\e085";}
.glyphicon-info-sign:before{content:"\e086";}
.glyphicon-screenshot:before{content:"\e087";}
.glyphicon-remove-circle:before{content:"\e088";}
.glyphicon-ok-circle:before{content:"\e089";}
.glyphicon-ban-circle:before{content:"\e090";}
.glyphicon-arrow-left:before{content:"\e091";}
.glyphicon-arrow-right:before{content:"\e092";}
.glyphicon-arrow-up:before{content:"\e093";}
.glyphicon-arrow-down:before{content:"\e094";}
.glyphicon-share-alt:before{content:"\e095";}
.glyphicon-resize-full:before{content:"\e096";}
.glyphicon-resize-small:before{content:"\e097";}
.glyphicon-exclamation-sign:before{content:"\e101";}
.glyphicon-gift:before{content:"\e102";}
.glyphicon-leaf:before{content:"\e103";}
.glyphicon-eye-open:before{content:"\e105";}
.glyphicon-eye-close:before{content:"\e106";}
.glyphicon-warning-sign:before{content:"\e107";}
.glyphicon-plane:before{content:"\e108";}
.glyphicon-random:before{content:"\e110";}
.glyphicon-comment:before{content:"\e111";}
.glyphicon-magnet:before{content:"\e112";}
.glyphicon-chevron-up:before{content:"\e113";}
.glyphicon-chevron-down:before{content:"\e114";}
.glyphicon-retweet:before{content:"\e115";}
.glyphicon-shopping-cart:before{content:"\e116";}
.glyphicon-folder-close:before{content:"\e117";}
.glyphicon-folder-open:before{content:"\e118";}
.glyphicon-resize-vertical:before{content:"\e119";}
.glyphicon-resize-horizontal:before{content:"\e120";}
.glyphicon-hdd:before{content:"\e121";}
.glyphicon-bullhorn:before{content:"\e122";}
.glyphicon-certificate:before{content:"\e124";}
.glyphicon-thumbs-up:before{content:"\e125";}
.glyphicon-thumbs-down:before{content:"\e126";}
.glyphicon-hand-right:before{content:"\e127";}
.glyphicon-hand-left:before{content:"\e128";}
.glyphicon-hand-up:before{content:"\e129";}
.glyphicon-hand-down:before{content:"\e130";}
.glyphicon-circle-arrow-right:before{content:"\e131";}
.glyphicon-circle-arrow-left:before{content:"\e132";}
.glyphicon-circle-arrow-up:before{content:"\e133";}
.glyphicon-circle-arrow-down:before{content:"\e134";}
.glyphicon-globe:before{content:"\e135";}
.glyphicon-tasks:before{content:"\e137";}
.glyphicon-filter:before{content:"\e138";}
.glyphicon-fullscreen:before{content:"\e140";}
.glyphicon-dashboard:before{content:"\e141";}
.glyphicon-heart-empty:before{content:"\e143";}
.glyphicon-link:before{content:"\e144";}
.glyphicon-phone:before{content:"\e145";}
.glyphicon-usd:before{content:"\e148";}
.glyphicon-gbp:before{content:"\e149";}
.glyphicon-sort:before{content:"\e150";}
.glyphicon-sort-by-alphabet:before{content:"\e151";}
.glyphicon-sort-by-alphabet-alt:before{content:"\e152";}
.glyphicon-sort-by-order:before{content:"\e153";}
.glyphicon-sort-by-order-alt:before{content:"\e154";}
.glyphicon-sort-by-attributes:before{content:"\e155";}
.glyphicon-sort-by-attributes-alt:before{content:"\e156";}
.glyphicon-unchecked:before{content:"\e157";}
.glyphicon-expand:before{content:"\e158";}
.glyphicon-collapse-down:before{content:"\e159";}
.glyphicon-collapse-up:before{content:"\e160";}
.glyphicon-log-in:before{content:"\e161";}
.glyphicon-flash:before{content:"\e162";}
.glyphicon-log-out:before{content:"\e163";}
.glyphicon-new-window:before{content:"\e164";}
.glyphicon-record:before{content:"\e165";}
.glyphicon-save:before{content:"\e166";}
.glyphicon-open:before{content:"\e167";}
.glyphicon-saved:before{content:"\e168";}
.glyphicon-import:before{content:"\e169";}
.glyphicon-export:before{content:"\e170";}
.glyphicon-send:before{content:"\e171";}
.glyphicon-floppy-disk:before{content:"\e172";}
.glyphicon-floppy-saved:before{content:"\e173";}
.glyphicon-floppy-remove:before{content:"\e174";}
.glyphicon-floppy-save:before{content:"\e175";}
.glyphicon-floppy-open:before{content:"\e176";}
.glyphicon-credit-card:before{content:"\e177";}
.glyphicon-transfer:before{content:"\e178";}
.glyphicon-cutlery:before{content:"\e179";}
.glyphicon-header:before{content:"\e180";}
.glyphicon-compressed:before{content:"\e181";}
.glyphicon-earphone:before{content:"\e182";}
.glyphicon-phone-alt:before{content:"\e183";}
.glyphicon-tower:before{content:"\e184";}
.glyphicon-stats:before{content:"\e185";}
.glyphicon-sd-video:before{content:"\e186";}
.glyphicon-hd-video:before{content:"\e187";}
.glyphicon-subtitles:before{content:"\e188";}
.glyphicon-sound-stereo:before{content:"\e189";}
.glyphicon-sound-dolby:before{content:"\e190";}
.glyphicon-sound-5-1:before{content:"\e191";}
.glyphicon-sound-6-1:before{content:"\e192";}
.glyphicon-sound-7-1:before{content:"\e193";}
.glyphicon-copyright-mark:before{content:"\e194";}
.glyphicon-registration-mark:before{content:"\e195";}
.glyphicon-butt-download:before{content:"\e197";}
.glyphicon-butt-upload:before{content:"\e198";}
.glyphicon-tree-conifer:before{content:"\e199";}
.glyphicon-tree-deciduous:before{content:"\e200";}
.glyphicon-briefcase:before{content:"\1f4bc";}
.glyphicon-calendar:before{content:"\1f4c5";}
.glyphicon-pushpin:before{content:"\1f4cc";}
.glyphicon-paperclip:before{content:"\1f4ce";}
.glyphicon-camera:before{content:"\1f4f7";}
.glyphicon-lock:before{content:"\1f512";}
.glyphicon-bell:before{content:"\1f514";}
.glyphicon-bookmark:before{content:"\1f516";}
.glyphicon-fire:before{content:"\1f525";}
.glyphicon-wrench:before{content:"\1f527";} |
docs/api/org/apache/hadoop/mapred/lib/class-use/NullOutputFormat.html | InMobi/hadoop | <!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_20) on Fri Mar 25 19:54:53 PDT 2011 -->
<TITLE>
Uses of Class org.apache.hadoop.mapred.lib.NullOutputFormat (Hadoop 0.20.2-cdh3u0 API)
</TITLE>
<META NAME="date" CONTENT="2011-03-25">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.hadoop.mapred.lib.NullOutputFormat (Hadoop 0.20.2-cdh3u0 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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/hadoop/mapred/lib/NullOutputFormat.html" title="class in org.apache.hadoop.mapred.lib"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/hadoop/mapred/lib//class-useNullOutputFormat.html" target="_top"><B>FRAMES</B></A>
<A HREF="NullOutputFormat.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.apache.hadoop.mapred.lib.NullOutputFormat</B></H2>
</CENTER>
No usage of org.apache.hadoop.mapred.lib.NullOutputFormat
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/hadoop/mapred/lib/NullOutputFormat.html" title="class in org.apache.hadoop.mapred.lib"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/hadoop/mapred/lib//class-useNullOutputFormat.html" target="_top"><B>FRAMES</B></A>
<A HREF="NullOutputFormat.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright © 2009 The Apache Software Foundation
</BODY>
</HTML>
|
_libs/wijmo-5/styles/themes/wijmo.theme.organic.css | mabetle/mps | /* -- Backgrounds -- */
.wj-content,
div[wj-part='cells'] {
color: #261f15;
background: #f6f5ed;
}
.wj-content .wj-input-group .wj-form-control {
color: #261f15;
background: #f6f5ed;
}
.wj-listbox-item:not(.wj-state-selected):hover {
background: rgba(0, 0, 0, 0.04);
}
/* -- Headers -- */
.wj-header {
background: #604e31;
color: #ffffff;
}
.wj-flexgrid .wj-group:not(.wj-state-selected):not(.wj-state-multi-selected) {
/* Group row background */
background: #d2cabe;
color: #000000;
}
.wj-flexgrid .wj-marker {
background: #90a938;
}
/* -- Grid -- */
div[wj-part='root'] {
background: #eae8e0;
}
.wj-state-selected {
background: #90a938;
color: #ffffff;
}
.wj-state-multi-selected {
background: #c4cab0;
color: #261f15;
}
.wj-input-group .wj-form-control,
.wj-grid-editor {
background: #fff;
color: #000000;
}
div[wj-part='rhcells'] .wj-header {
background: #604e31;
}
.wj-cell {
border-right: 0 solid rgba(0, 0, 0, 0.2);
border-bottom: 0 solid rgba(0, 0, 0, 0.2);
}
[dir="rtl"] .wj-cell {
border-left: 0 solid rgba(0, 0, 0, 0.2);
}
.wj-cell:not(.wj-header):not(.wj-group):not(.wj-alt):not(.wj-state-selected):not(.wj-state-multi-selected) {
/* Default grid cell color */
background: #f6f5ed;
}
.wj-alt:not(.wj-header):not(.wj-group):not(.wj-state-selected):not(.wj-state-multi-selected) {
/* Alternate grid cell color */
background: #eeecdc;
}
.wj-frozen.wj-cell:not(.wj-header):not(.wj-group):not(.wj-alt):not(.wj-state-selected):not(.wj-state-multi-selected) {
/* Default frozen cell color */
background: #e5e2cf;
color: #261f15;
}
.wj-frozen.wj-alt:not(.wj-header):not(.wj-group):not(.wj-state-selected):not(.wj-state-multi-selected) {
/* Alternate frozen cell color */
background: #dcd8be;
color: #261f15;
}
.wj-cell.wj-frozen-row {
border-bottom-color: #261f15;
border-width: 0;
}
.wj-cell.wj-frozen-col {
border-right-color: #261f15;
border-width: 0;
}
.wj-flexgrid .wj-header.wj-state-multi-selected {
/* Selected headers */
background: #796b55;
color: #ffffff;
font-weight: bold;
}
.wj-flexgrid .wj-colheaders .wj-header.wj-state-multi-selected {
/* Selected column headers */
border-bottom: 2px solid #90a938 !important;
}
.wj-flexgrid .wj-rowheaders .wj-header.wj-state-multi-selected {
/* Selected row headers */
border-right: 2px solid #90a938 !important;
}
.wj-flexgrid .wj-marquee {
/* Selection Marquee */
position: absolute;
box-sizing: border-box;
border: 2px solid #90a938 !important;
}
.wj-flexsheet .wj-marquee {
/* FlexSheet Marquee Border */
border: 2px solid #90a938 !important;
}
/* -- Buttons -- */
.wj-content .wj-input-group-btn > .wj-btn,
.wj-content .wj-btn-group > .wj-btn {
background: #90a938;
color: #ffffff;
}
.wj-content .wj-input-group-btn > .wj-btn:hover,
.wj-content .wj-btn-group > .wj-btn:hover {
background: #abc54f;
color: #ffffff;
}
.wj-content .wj-input-group-btn > .wj-btn:focus,
.wj-content .wj-btn-group > .wj-btn:focus {
background: #abc54f;
color: #ffffff;
}
.wj-content:not(.wj-dropdown-panel):not(.wj-listbox):not(.wj-flexgrid):not(.wj-calendar-outer) {
border: 1px solid rgba(0, 0, 0, 0.2);
}
.wj-btn-default {
border: 1px solid rgba(0, 0, 0, 0.2);
}
.wj-input-group-btn > .wj-btn {
border: 1px;
}
/* -- Border Radii -- */
.wj-content,
.wj-input-group,
.wj-btn-group,
.wj-btn-group-vertical,
.wj-tooltip,
.customEdit {
border-radius: 0px;
}
/* -- Tooltip -- */
.wj-tooltip {
background: #f2e9da;
color: #000000;
border: 1px solid rgba(0, 0, 0, 0.1);
}
/* -- Gauges -- */
.wj-gauge .wj-pointer path {
fill: #90a938;
}
.wj-cell.wj-frozen {
border: 0;
}
|
docs/com/google/api/ads/dfp/v201211/TextValue.html | google-code-export/google-api-dfp-java | <!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-google-v5) on Thu Dec 19 17:42:28 EST 2013 -->
<title>TextValue</title>
<meta name="date" content="2013-12-19">
<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="TextValue";
}
//-->
</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="../../../../../../com/google/api/ads/dfp/v201211/TextAdCreative.html" title="class in com.google.api.ads.dfp.v201211"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/google/api/ads/dfp/v201211/ThirdPartyCreative.html" title="class in com.google.api.ads.dfp.v201211"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/google/api/ads/dfp/v201211/TextValue.html" target="_top">Frames</a></li>
<li><a href="TextValue.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">com.google.api.ads.dfp.v201211</div>
<h2 title="Class TextValue" class="title">Class TextValue</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li><a href="../../../../../../com/google/api/ads/dfp/v201211/Value.html" title="class in com.google.api.ads.dfp.v201211">com.google.api.ads.dfp.v201211.Value</a></li>
<li>
<ul class="inheritance">
<li>com.google.api.ads.dfp.v201211.TextValue</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>java.io.Serializable</dd>
</dl>
<hr>
<br>
<pre>public class <span class="strong">TextValue</span>
extends <a href="../../../../../../com/google/api/ads/dfp/v201211/Value.html" title="class in com.google.api.ads.dfp.v201211">Value</a>
implements java.io.Serializable</pre>
<div class="block">Contains a string value.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../../serialized-form.html#com.google.api.ads.dfp.v201211.TextValue">Serialized Form</a></dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201211/TextValue.html#TextValue()">TextValue</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201211/TextValue.html#TextValue(java.lang.String, java.lang.String)">TextValue</a></strong>(java.lang.String valueType,
java.lang.String value)</code> </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"> </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>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201211/TextValue.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object obj)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static org.apache.axis.encoding.Deserializer</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201211/TextValue.html#getDeserializer(java.lang.String, java.lang.Class, javax.xml.namespace.QName)">getDeserializer</a></strong>(java.lang.String mechType,
java.lang.Class _javaType,
javax.xml.namespace.QName _xmlType)</code>
<div class="block">Get Custom Deserializer</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static org.apache.axis.encoding.Serializer</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201211/TextValue.html#getSerializer(java.lang.String, java.lang.Class, javax.xml.namespace.QName)">getSerializer</a></strong>(java.lang.String mechType,
java.lang.Class _javaType,
javax.xml.namespace.QName _xmlType)</code>
<div class="block">Get Custom Serializer</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static org.apache.axis.description.TypeDesc</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201211/TextValue.html#getTypeDesc()">getTypeDesc</a></strong>()</code>
<div class="block">Return type metadata object</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201211/TextValue.html#getValue()">getValue</a></strong>()</code>
<div class="block">Gets the value value for this TextValue.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201211/TextValue.html#hashCode()">hashCode</a></strong>()</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201211/TextValue.html#setValue(java.lang.String)">setValue</a></strong>(java.lang.String value)</code>
<div class="block">Sets the value value for this TextValue.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_com.google.api.ads.dfp.v201211.Value">
<!-- -->
</a>
<h3>Methods inherited from class com.google.api.ads.dfp.v201211.<a href="../../../../../../com/google/api/ads/dfp/v201211/Value.html" title="class in com.google.api.ads.dfp.v201211">Value</a></h3>
<code><a href="../../../../../../com/google/api/ads/dfp/v201211/Value.html#getValueType()">getValueType</a>, <a href="../../../../../../com/google/api/ads/dfp/v201211/Value.html#setValueType(java.lang.String)">setValueType</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="TextValue()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TextValue</h4>
<pre>public TextValue()</pre>
</li>
</ul>
<a name="TextValue(java.lang.String, java.lang.String)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>TextValue</h4>
<pre>public TextValue(java.lang.String valueType,
java.lang.String value)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getValue()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getValue</h4>
<pre>public java.lang.String getValue()</pre>
<div class="block">Gets the value value for this TextValue.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>value * The string value.</dd></dl>
</li>
</ul>
<a name="setValue(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setValue</h4>
<pre>public void setValue(java.lang.String value)</pre>
<div class="block">Sets the value value for this TextValue.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>value</code> - * The string value.</dd></dl>
</li>
</ul>
<a name="equals(java.lang.Object)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>equals</h4>
<pre>public boolean equals(java.lang.Object obj)</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../../../../com/google/api/ads/dfp/v201211/Value.html#equals(java.lang.Object)">equals</a></code> in class <code><a href="../../../../../../com/google/api/ads/dfp/v201211/Value.html" title="class in com.google.api.ads.dfp.v201211">Value</a></code></dd>
</dl>
</li>
</ul>
<a name="hashCode()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>hashCode</h4>
<pre>public int hashCode()</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../../../../com/google/api/ads/dfp/v201211/Value.html#hashCode()">hashCode</a></code> in class <code><a href="../../../../../../com/google/api/ads/dfp/v201211/Value.html" title="class in com.google.api.ads.dfp.v201211">Value</a></code></dd>
</dl>
</li>
</ul>
<a name="getTypeDesc()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getTypeDesc</h4>
<pre>public static org.apache.axis.description.TypeDesc getTypeDesc()</pre>
<div class="block">Return type metadata object</div>
</li>
</ul>
<a name="getSerializer(java.lang.String, java.lang.Class, javax.xml.namespace.QName)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getSerializer</h4>
<pre>public static org.apache.axis.encoding.Serializer getSerializer(java.lang.String mechType,
java.lang.Class _javaType,
javax.xml.namespace.QName _xmlType)</pre>
<div class="block">Get Custom Serializer</div>
</li>
</ul>
<a name="getDeserializer(java.lang.String, java.lang.Class, javax.xml.namespace.QName)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getDeserializer</h4>
<pre>public static org.apache.axis.encoding.Deserializer getDeserializer(java.lang.String mechType,
java.lang.Class _javaType,
javax.xml.namespace.QName _xmlType)</pre>
<div class="block">Get Custom Deserializer</div>
</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="../../../../../../com/google/api/ads/dfp/v201211/TextAdCreative.html" title="class in com.google.api.ads.dfp.v201211"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/google/api/ads/dfp/v201211/ThirdPartyCreative.html" title="class in com.google.api.ads.dfp.v201211"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/google/api/ads/dfp/v201211/TextValue.html" target="_top">Frames</a></li>
<li><a href="TextValue.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
solr-4.5.0/docs/solr-core/org/apache/solr/search/grouping/endresulttransformer/package-summary.html | hajimeni/dbflute-solr-example | <!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_45) on Sat Sep 28 14:09:51 CEST 2013 -->
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<TITLE>
org.apache.solr.search.grouping.endresulttransformer (Solr 4.5.0 API)
</TITLE>
<META NAME="date" CONTENT="2013-09-28">
<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="org.apache.solr.search.grouping.endresulttransformer (Solr 4.5.0 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> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../org/apache/solr/search/grouping/distributed/shardresultserializer/package-summary.html"><B>PREV PACKAGE</B></A>
<A HREF="../../../../../../org/apache/solr/search/join/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/solr/search/grouping/endresulttransformer/package-summary.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<H2>
Package org.apache.solr.search.grouping.endresulttransformer
</H2>
APIs and classes for transforming result grouping results into the appropriate response format
<P>
<B>See:</B>
<BR>
<A HREF="#package_description"><B>Description</B></A>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Interface Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../../../org/apache/solr/search/grouping/endresulttransformer/EndResultTransformer.html" title="interface in org.apache.solr.search.grouping.endresulttransformer">EndResultTransformer</A></B></TD>
<TD>Responsible for transforming the grouped result into the final format for displaying purposes.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../../../org/apache/solr/search/grouping/endresulttransformer/EndResultTransformer.SolrDocumentSource.html" title="interface in org.apache.solr.search.grouping.endresulttransformer">EndResultTransformer.SolrDocumentSource</A></B></TD>
<TD>Abstracts the source for <A HREF="../../../../../../../solr-solrj/org/apache/solr/common/SolrDocument.html?is-external=true" title="class or interface in org.apache.solr.common"><CODE>SolrDocument</CODE></A> instances.</TD>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../../../org/apache/solr/search/grouping/endresulttransformer/GroupedEndResultTransformer.html" title="class in org.apache.solr.search.grouping.endresulttransformer">GroupedEndResultTransformer</A></B></TD>
<TD>Implementation of <A HREF="../../../../../../org/apache/solr/search/grouping/endresulttransformer/EndResultTransformer.html" title="interface in org.apache.solr.search.grouping.endresulttransformer"><CODE>EndResultTransformer</CODE></A> that keeps each grouped result separate in the final response.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../../../org/apache/solr/search/grouping/endresulttransformer/MainEndResultTransformer.html" title="class in org.apache.solr.search.grouping.endresulttransformer">MainEndResultTransformer</A></B></TD>
<TD>Implementation of <A HREF="../../../../../../org/apache/solr/search/grouping/endresulttransformer/EndResultTransformer.html" title="interface in org.apache.solr.search.grouping.endresulttransformer"><CODE>EndResultTransformer</CODE></A> that transforms the grouped result into the main result list in the
response.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../../../org/apache/solr/search/grouping/endresulttransformer/SimpleEndResultTransformer.html" title="class in org.apache.solr.search.grouping.endresulttransformer">SimpleEndResultTransformer</A></B></TD>
<TD>Implementation of <A HREF="../../../../../../org/apache/solr/search/grouping/endresulttransformer/EndResultTransformer.html" title="interface in org.apache.solr.search.grouping.endresulttransformer"><CODE>EndResultTransformer</CODE></A> that transforms the grouped result into a single flat list.</TD>
</TR>
</TABLE>
<P>
<A NAME="package_description"><!-- --></A><H2>
Package org.apache.solr.search.grouping.endresulttransformer Description
</H2>
<P>
<p>
APIs and classes for transforming result grouping results into the appropriate response format
</p>
<P>
<P>
<DL>
</DL>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../org/apache/solr/search/grouping/distributed/shardresultserializer/package-summary.html"><B>PREV PACKAGE</B></A>
<A HREF="../../../../../../org/apache/solr/search/join/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/solr/search/grouping/endresulttransformer/package-summary.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<i>Copyright © 2000-2013 Apache Software Foundation. All Rights Reserved.</i>
<script src='../../../../../../prettify.js' type='text/javascript'></script>
<script type='text/javascript'>
(function(){
var oldonload = window.onload;
if (typeof oldonload != 'function') {
window.onload = prettyPrint;
} else {
window.onload = function() {
oldonload();
prettyPrint();
}
}
})();
</script>
</BODY>
</HTML>
|
docs/devapidocs/org/apache/hadoop/hbase/client/class-use/HTableInterface.html | lshain/hbase-0.98.6-hadoop2 | <!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_65) on Wed Sep 03 20:05:59 PDT 2014 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Interface org.apache.hadoop.hbase.client.HTableInterface (HBase 0.98.6-hadoop2 API)</title>
<meta name="date" content="2014-09-03">
<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.hadoop.hbase.client.HTableInterface (HBase 0.98.6-hadoop2 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/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">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?org/apache/hadoop/hbase/client/class-use/HTableInterface.html" target="_top">Frames</a></li>
<li><a href="HTableInterface.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.hadoop.hbase.client.HTableInterface" class="title">Uses of Interface<br>org.apache.hadoop.hbase.client.HTableInterface</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/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#org.apache.hadoop.hbase">org.apache.hadoop.hbase</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#org.apache.hadoop.hbase.client">org.apache.hadoop.hbase.client</a></td>
<td class="colLast">
<div class="block">Provides HBase Client</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#org.apache.hadoop.hbase.coprocessor">org.apache.hadoop.hbase.coprocessor</a></td>
<td class="colLast">
<div class="block">Table of Contents</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#org.apache.hadoop.hbase.rest.client">org.apache.hadoop.hbase.rest.client</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#org.apache.hadoop.hbase.util">org.apache.hadoop.hbase.util</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.apache.hadoop.hbase">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a> in <a href="../../../../../../org/apache/hadoop/hbase/package-summary.html">org.apache.hadoop.hbase</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/hadoop/hbase/package-summary.html">org.apache.hadoop.hbase</a> that return <a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></code></td>
<td class="colLast"><span class="strong">CoprocessorEnvironment.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/CoprocessorEnvironment.html#getTable(org.apache.hadoop.hbase.TableName)">getTable</a></strong>(<a href="../../../../../../org/apache/hadoop/hbase/TableName.html" title="class in org.apache.hadoop.hbase">TableName</a> tableName)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></code></td>
<td class="colLast"><span class="strong">CoprocessorEnvironment.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/CoprocessorEnvironment.html#getTable(org.apache.hadoop.hbase.TableName,%20java.util.concurrent.ExecutorService)">getTable</a></strong>(<a href="../../../../../../org/apache/hadoop/hbase/TableName.html" title="class in org.apache.hadoop.hbase">TableName</a> tableName,
<a href="http://docs.oracle.com/javase/6/docs/api/java/util/concurrent/ExecutorService.html?is-external=true" title="class or interface in java.util.concurrent">ExecutorService</a> service)</code> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.apache.hadoop.hbase.client">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a> in <a href="../../../../../../org/apache/hadoop/hbase/client/package-summary.html">org.apache.hadoop.hbase.client</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/hadoop/hbase/client/package-summary.html">org.apache.hadoop.hbase.client</a> that implement <a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></span><span class="tabEnd"> </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 </code></td>
<td class="colLast"><code><strong><a href="../../../../../../org/apache/hadoop/hbase/client/HTable.html" title="class in org.apache.hadoop.hbase.client">HTable</a></strong></code>
<div class="block">Used to communicate with a single HBase table.</div>
</td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../org/apache/hadoop/hbase/client/package-summary.html">org.apache.hadoop.hbase.client</a> that return <a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>protected <a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></code></td>
<td class="colLast"><span class="strong">HTablePool.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/client/HTablePool.html#createHTable(java.lang.String)">createHTable</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> tableName)</code>
<div class="block"><strong>Deprecated.</strong> </div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></code></td>
<td class="colLast"><span class="strong">HTableFactory.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/client/HTableFactory.html#createHTableInterface(org.apache.hadoop.conf.Configuration,%20byte[])">createHTableInterface</a></strong>(org.apache.hadoop.conf.Configuration config,
byte[] tableName)</code>
<div class="block"><strong>Deprecated.</strong> </div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></code></td>
<td class="colLast"><span class="strong">HTableInterfaceFactory.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterfaceFactory.html#createHTableInterface(org.apache.hadoop.conf.Configuration,%20byte[])">createHTableInterface</a></strong>(org.apache.hadoop.conf.Configuration config,
byte[] tableName)</code>
<div class="block">Creates a new HTableInterface.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></code></td>
<td class="colLast"><span class="strong">HConnection.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/client/HConnection.html#getTable(byte[])">getTable</a></strong>(byte[] tableName)</code>
<div class="block">Retrieve an HTableInterface implementation for access to a table.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></code></td>
<td class="colLast"><span class="strong">HConnectionManager.HConnectionImplementation.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/client/HConnectionManager.HConnectionImplementation.html#getTable(byte[])">getTable</a></strong>(byte[] tableName)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></code></td>
<td class="colLast"><span class="strong">HTablePool.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/client/HTablePool.html#getTable(byte[])">getTable</a></strong>(byte[] tableName)</code>
<div class="block"><strong>Deprecated.</strong> </div>
<div class="block">Get a reference to the specified table from the pool.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></code></td>
<td class="colLast"><span class="strong">HConnection.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/client/HConnection.html#getTable(byte[],%20java.util.concurrent.ExecutorService)">getTable</a></strong>(byte[] tableName,
<a href="http://docs.oracle.com/javase/6/docs/api/java/util/concurrent/ExecutorService.html?is-external=true" title="class or interface in java.util.concurrent">ExecutorService</a> pool)</code>
<div class="block">Retrieve an HTableInterface implementation for access to a table.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></code></td>
<td class="colLast"><span class="strong">HConnectionManager.HConnectionImplementation.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/client/HConnectionManager.HConnectionImplementation.html#getTable(byte[],%20java.util.concurrent.ExecutorService)">getTable</a></strong>(byte[] tableName,
<a href="http://docs.oracle.com/javase/6/docs/api/java/util/concurrent/ExecutorService.html?is-external=true" title="class or interface in java.util.concurrent">ExecutorService</a> pool)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></code></td>
<td class="colLast"><span class="strong">HConnection.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/client/HConnection.html#getTable(java.lang.String)">getTable</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> tableName)</code>
<div class="block">Retrieve an HTableInterface implementation for access to a table.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></code></td>
<td class="colLast"><span class="strong">HConnectionManager.HConnectionImplementation.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/client/HConnectionManager.HConnectionImplementation.html#getTable(java.lang.String)">getTable</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> tableName)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></code></td>
<td class="colLast"><span class="strong">HTablePool.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/client/HTablePool.html#getTable(java.lang.String)">getTable</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> tableName)</code>
<div class="block"><strong>Deprecated.</strong> </div>
<div class="block">Get a reference to the specified table from the pool.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></code></td>
<td class="colLast"><span class="strong">HConnection.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/client/HConnection.html#getTable(java.lang.String,%20java.util.concurrent.ExecutorService)">getTable</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> tableName,
<a href="http://docs.oracle.com/javase/6/docs/api/java/util/concurrent/ExecutorService.html?is-external=true" title="class or interface in java.util.concurrent">ExecutorService</a> pool)</code>
<div class="block">Retrieve an HTableInterface implementation for access to a table.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></code></td>
<td class="colLast"><span class="strong">HConnectionManager.HConnectionImplementation.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/client/HConnectionManager.HConnectionImplementation.html#getTable(java.lang.String,%20java.util.concurrent.ExecutorService)">getTable</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> tableName,
<a href="http://docs.oracle.com/javase/6/docs/api/java/util/concurrent/ExecutorService.html?is-external=true" title="class or interface in java.util.concurrent">ExecutorService</a> pool)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></code></td>
<td class="colLast"><span class="strong">HConnection.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/client/HConnection.html#getTable(org.apache.hadoop.hbase.TableName)">getTable</a></strong>(<a href="../../../../../../org/apache/hadoop/hbase/TableName.html" title="class in org.apache.hadoop.hbase">TableName</a> tableName)</code>
<div class="block">Retrieve an HTableInterface implementation for access to a table.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></code></td>
<td class="colLast"><span class="strong">HConnectionManager.HConnectionImplementation.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/client/HConnectionManager.HConnectionImplementation.html#getTable(org.apache.hadoop.hbase.TableName)">getTable</a></strong>(<a href="../../../../../../org/apache/hadoop/hbase/TableName.html" title="class in org.apache.hadoop.hbase">TableName</a> tableName)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></code></td>
<td class="colLast"><span class="strong">HConnection.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/client/HConnection.html#getTable(org.apache.hadoop.hbase.TableName,%20java.util.concurrent.ExecutorService)">getTable</a></strong>(<a href="../../../../../../org/apache/hadoop/hbase/TableName.html" title="class in org.apache.hadoop.hbase">TableName</a> tableName,
<a href="http://docs.oracle.com/javase/6/docs/api/java/util/concurrent/ExecutorService.html?is-external=true" title="class or interface in java.util.concurrent">ExecutorService</a> pool)</code>
<div class="block">Retrieve an HTableInterface implementation for access to a table.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></code></td>
<td class="colLast"><span class="strong">HConnectionManager.HConnectionImplementation.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/client/HConnectionManager.HConnectionImplementation.html#getTable(org.apache.hadoop.hbase.TableName,%20java.util.concurrent.ExecutorService)">getTable</a></strong>(<a href="../../../../../../org/apache/hadoop/hbase/TableName.html" title="class in org.apache.hadoop.hbase">TableName</a> tableName,
<a href="http://docs.oracle.com/javase/6/docs/api/java/util/concurrent/ExecutorService.html?is-external=true" title="class or interface in java.util.concurrent">ExecutorService</a> pool)</code> </td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../org/apache/hadoop/hbase/client/package-summary.html">org.apache.hadoop.hbase.client</a> with parameters of type <a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">HTablePool.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/client/HTablePool.html#putTable(org.apache.hadoop.hbase.client.HTableInterface)">putTable</a></strong>(<a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a> table)</code>
<div class="block"><strong>Deprecated.</strong> </div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">HTableFactory.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/client/HTableFactory.html#releaseHTableInterface(org.apache.hadoop.hbase.client.HTableInterface)">releaseHTableInterface</a></strong>(<a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a> table)</code>
<div class="block"><strong>Deprecated.</strong> </div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">HTableInterfaceFactory.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterfaceFactory.html#releaseHTableInterface(org.apache.hadoop.hbase.client.HTableInterface)">releaseHTableInterface</a></strong>(<a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a> table)</code>
<div class="block">Release the HTable resource represented by the table.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.apache.hadoop.hbase.coprocessor">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a> in <a href="../../../../../../org/apache/hadoop/hbase/coprocessor/package-summary.html">org.apache.hadoop.hbase.coprocessor</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation">
<caption><span>Fields in <a href="../../../../../../org/apache/hadoop/hbase/coprocessor/package-summary.html">org.apache.hadoop.hbase.coprocessor</a> with type parameters of type <a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>protected <a href="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><<a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a>></code></td>
<td class="colLast"><span class="strong">CoprocessorHost.Environment.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/coprocessor/CoprocessorHost.Environment.html#openTables">openTables</a></strong></code>
<div class="block">Accounting for tables opened by the coprocessor</div>
</td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../org/apache/hadoop/hbase/coprocessor/package-summary.html">org.apache.hadoop.hbase.coprocessor</a> that return <a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></code></td>
<td class="colLast"><span class="strong">CoprocessorHost.Environment.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/coprocessor/CoprocessorHost.Environment.html#getTable(org.apache.hadoop.hbase.TableName)">getTable</a></strong>(<a href="../../../../../../org/apache/hadoop/hbase/TableName.html" title="class in org.apache.hadoop.hbase">TableName</a> tableName)</code>
<div class="block">Open a table from within the Coprocessor environment</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></code></td>
<td class="colLast"><span class="strong">CoprocessorHost.Environment.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/coprocessor/CoprocessorHost.Environment.html#getTable(org.apache.hadoop.hbase.TableName,%20java.util.concurrent.ExecutorService)">getTable</a></strong>(<a href="../../../../../../org/apache/hadoop/hbase/TableName.html" title="class in org.apache.hadoop.hbase">TableName</a> tableName,
<a href="http://docs.oracle.com/javase/6/docs/api/java/util/concurrent/ExecutorService.html?is-external=true" title="class or interface in java.util.concurrent">ExecutorService</a> pool)</code>
<div class="block">Open a table from within the Coprocessor environment</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.apache.hadoop.hbase.rest.client">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a> in <a href="../../../../../../org/apache/hadoop/hbase/rest/client/package-summary.html">org.apache.hadoop.hbase.rest.client</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/hadoop/hbase/rest/client/package-summary.html">org.apache.hadoop.hbase.rest.client</a> that implement <a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></span><span class="tabEnd"> </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 </code></td>
<td class="colLast"><code><strong><a href="../../../../../../org/apache/hadoop/hbase/rest/client/RemoteHTable.html" title="class in org.apache.hadoop.hbase.rest.client">RemoteHTable</a></strong></code>
<div class="block">HTable interface to remote tables accessed via REST gateway</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.apache.hadoop.hbase.util">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a> in <a href="../../../../../../org/apache/hadoop/hbase/util/package-summary.html">org.apache.hadoop.hbase.util</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/hadoop/hbase/util/package-summary.html">org.apache.hadoop.hbase.util</a> that return <a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../org/apache/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">HTableInterface</a></code></td>
<td class="colLast"><span class="strong">ConnectionCache.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/util/ConnectionCache.html#getTable(java.lang.String)">getTable</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> tableName)</code>
<div class="block">Caller closes the table afterwards.</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/hadoop/hbase/client/HTableInterface.html" title="interface in org.apache.hadoop.hbase.client">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?org/apache/hadoop/hbase/client/class-use/HTableInterface.html" target="_top">Frames</a></li>
<li><a href="HTableInterface.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 © 2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
</html>
|
test/mysite/webapp/templates/webapp/viewguides.html | lemarcudal/sha_thedivision | {% if request.user.is_authenticated %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Strategic Homeland Division</title>
{% load staticfiles %}
<!-- Bootstrap -->
<link href="{% static 'css/bootstrap.min.css' %}" rel="stylesheet">
<link rel="stylesheet" href="{% static 'css/font-awesome.min.css' %}">
<link rel="stylesheet" href="{% static 'css/animate.css' %}">
<link href="{% static 'css/animate.min.css' %}" rel="stylesheet">
<link href="{% static 'css/style.css' %}" rel="stylesheet" />
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body class="body" style="background-image: url({% static 'img/tctd2.jpg' %});background-size: cover; background-repeat: no-repeat;">
<header id="header">
<nav class="navbar navbar-default navbar-static-top" role="banner" style="background-color: black">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="navbar-brand">
<a href="/"><h1><font face="Borda" color="Orange">The Division HQ</font></h1></a>
</div>
</div>
<div class="navbar-collapse collapse">
<div class="menu">
<ul class="nav nav-tabs" role="tablist">
<style>
border-color="Orange"
</style>
{% if request.user.is_authenticated %}
<li><a href="/" onclick="return false;" style="background-color: black"><font color="Orange" face="Borda">Agent {{ request.user }} is now online</font></a></li>
<li><a href="/logout" style="background-color: black"><font color="Orange" face="Borda">Logout</font></a></li>
<li role="presentation"><a href="/" style="background-color: black"><font color="Orange" face="Borda">Home</font></a></li>
<li role="presentation"><a href="http://tomclancy-thedivision.ubi.com/game/en-us/home/" style="background-color: black"><font color="Orange" face="Borda">Official Site</font></a></li>
<li role="presentation"><a href="/viewguides" style="background-color: black"><font color="Orange" face="Borda">Guide</font></a></li>
{% else %}
<li role="presentation"><a href="/" style="background-color: black"><font color="Orange" face="Borda">Home</font></a></li>
<li role="presentation"><a href="http://tomclancy-thedivision.ubi.com/game/en-us/home/" style="background-color: black"><font color="Orange" face="Borda">Official Site</font></a></li>
<li role="presentation"><a href="/viewguides" style="background-color: black"><font color="Orange" face="Borda">Guide</font></a></li>
{% endif %}
</ul>
</div>
</div>
</div><!--/.container-->
</nav><!--/nav-->
</header><!--/header-->
<!--REAL LOGIN SERIOUSLY-->
{% load crispy_forms_tags %}
{% block content %}
{% if request.user.is_authenticated %}
<div class="container">
<div class="col-md-8 col-md-offset-2">
<img src="{% static 'img/tctd3.png' %}" height="70" width="300" style="float: left;">
<h3 style="white-space: pre;"><a href="/"><font face="Borda" color="Orange">HOME</font></a> <a href="http://tomclancy-thedivision.ubi.com/game/en-us/media/"><font face="Borda" color="Orange">MEDIA</font></a> <a href="http://tomclancy-thedivision.ubi.com/game/en-GB/game_info/index.aspx"><font face="Borda" color="Orange">GAME-INFO</font></a> <a href="http://tomclancy-thedivision.ubi.com/game/en-GB/news/index.aspx"><font face="Borda" color="Orange">NEWS</font></a></h3>
<br><center>
<form method='GET' action=''>
<font color="Orange"/><input type='text' style="background-color: #000000; opacity: 0.7;" name='q' placeholder='Search Posts' value='{{ request.GET.q }}' />
<input type='submit' value='Search'/>
</form></center>
</div>
<div class="col-md-8 col-md-offset-2" style="background-color: #000000; opacity: 0.7;" >
{% if messages %}
<ul class="messages">
{% for message in messages %}
<li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
<h2><font face="Borda" color="Orange"><left>ITEM BUILDS</left></font></h2>
<a href="/postthread/create/" class="btn btn-default btn-lg" style="background-color: transparent;"><font color="Orange"> CREATE THREAD </font></a>
{% for obj in object_list %}
<h4><font face="Borda" color="Orange"><i class="fa fa-file"></i> <a href='{{ obj.get_absolute_url }}'><font face="Borda" color="Orange">{{ obj.title }}</a><br><h5><font face="Borda" color="Orange">{{ obj.timestamp}}</font></h5></font></h4><h6>by {{ obj.user }}</h6><hr>
{% endfor %}
<div class="pagination">
<span class="step-links">
{% if object_list.has_previous %}
<a href="?{{ page_request_var }}={{ object_list.previous_page_number }}"><font face="Borda" color="Orange">PREVIOUS</a></font>
{% endif %}
<span class="current">
Page {{ object_list.number }} of {{ object_list.paginator.num_pages }}.
</span>
{% if object_list.has_next %}
<a href="?{{ page_request_var }}={{ object_list.next_page_number }}"><font face="Borda" color="Orange">NEXT</font></a>
{% endif %}
</span>
</div>
</div>
</div>
</div>
{% else %}
{% endif %}
{% endblock %}
<section class="action" style="background-color:#696969">
<div class="container">
<div class="left-text hidden-xs">
<h4><font face="Borda" color="#FFF5EE">STATE OF THE GAME 29.09.2016</font></h4>
<h5>{{ posts }}</h5>
<em><h2><font face="Borda" color="#FFF5EE">Greetings Agents!</h2>Last week’s State of the Game article covered heaps of information. If you are looking for more regarding the key elements we are looking into for <a target="_blank" href="http://tomclancy-thedivision.ubi.com/game/en-GB/news/detail.aspx?c=tcm:154-267734-16&ct=tcm:148-76770-32"><font color=#FFF5EE><u>Update 1.4</u></font></a>, what the Elite Task Force was up to, or the newest Agent Intel topic, make sure you check it out.!</font></em>
</div>
<div class="right-image hidden-xs">
</div>
</div>
</section>
<div class="sub-footer">
<div class="container">
<div class="social-icon">
<div class="col-md-4">
<ul class="social-network">
<li><a href="https://web.facebook.com/TheDivisionGame/?fref=ts" class="fb tool-tip" title="Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/thedivisiongame" class="twitter tool-tip" title="Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.youtube.com/playlist?list=PLBnrd5k2F2INJFw2M5d6ZO3v2N8TbpZNC" class="ytube tool-tip" title="You Tube"><i class="fa fa-youtube-play"></i></a></li>
</ul>
</div>
</div>
<div class="col-md-4 col-md-offset-4">
<div class="copyright">
© 2016 by <a target="_blank" href="http://bootstraptaste.com/" title="Free Twitter Bootstrap WordPress Themes and HTML templates">Bootstrap Themes</a>.All Rights Reserved.
</div>
<!--
All links in the footer should remain intact.
Licenseing information is available at: http://bootstraptaste.com/license/
You can buy this theme without footer links online at: http://bootstraptaste.com/buy/?theme=Day
-->
</div>
</div>
</div>
<div class="container">
<p class="legal" align="center">© 2015 Ubisoft Entertainment. All Rights Reserved. Snowdrop, Tom Clancy’s, The Division logo, the Soldier Icon, Uplay, the Uplay logo, Ubi.com, Ubisoft, and the Ubisoft logo are trademarks of Ubisoft Entertainment in the US and/or other countries. The “PS” Family logo is a registered trademark and “PS4” is a trademark of Sony Computer Entertainment Inc. Software platform logo (TM and ©) EMA 2006.
<br>
<br>
<a href="https://legal.ubi.com/privacypolicy/en-US" target="_blank" alt="Ubisoft Privacy Policy" style="text-decoration:underline;font-size:12px;color:#FFF;!important">UBISOFT PRIVACY POLICY</a> <a href="https://legal.ubi.com/termsofuse" target="_blank" alt="Ubisoft Privacy Policy" style="text-decoration:underline;font-size:12px;color:#FFF;!important">UBISOFT TERMS OF USE</a>
</p><p></p>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="{% static 'js/jquery.js' %}"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="{% static 'js/bootstrap.min.js' %}"></script>
<script src="{% static 'js/wow.min.js' %}"></script>
<script>
wow = new WOW(
{
} )
.init();
</script>
</body>
</html>
{% else %}
{% endif %} |
docs/_docs/javadoc/com/centurylink/mdw/boot/servlet/WebContentServlet.html | CenturyLinkCloud/mdw | <!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 -->
<title>WebContentServlet (MDW 6 API JavaDocs)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="WebContentServlet (MDW 6 API JavaDocs)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="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="../../../../../com/centurylink/mdw/boot/servlet/WebContentFilter.html" title="class in com.centurylink.mdw.boot.servlet"><span class="typeNameLink">Prev Class</span></a></li>
<li>Next Class</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?com/centurylink/mdw/boot/servlet/WebContentServlet.html" target="_top">Frames</a></li>
<li><a href="WebContentServlet.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">com.centurylink.mdw.boot.servlet</div>
<h2 title="Class WebContentServlet" class="title">Class WebContentServlet</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>javax.servlet.GenericServlet</li>
<li>
<ul class="inheritance">
<li>javax.servlet.http.HttpServlet</li>
<li>
<ul class="inheritance">
<li>com.centurylink.mdw.boot.servlet.WebContentServlet</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>java.io.Serializable, javax.servlet.Servlet, javax.servlet.ServletConfig</dd>
</dl>
<hr>
<br>
<pre>@WebServlet(urlPatterns="/hub/*",
loadOnStartup=1)
public class <span class="typeNameLabel">WebContentServlet</span>
extends javax.servlet.http.HttpServlet</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../serialized-form.html#com.centurylink.mdw.boot.servlet.WebContentServlet">Serialized Form</a></dd>
</dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../com/centurylink/mdw/boot/servlet/WebContentServlet.html#WebContentServlet--">WebContentServlet</a></span>()</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../com/centurylink/mdw/boot/servlet/WebContentServlet.html#service-javax.servlet.http.HttpServletRequest-javax.servlet.http.HttpServletResponse-">service</a></span>(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)</code> </td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.javax.servlet.http.HttpServlet">
<!-- -->
</a>
<h3>Methods inherited from class javax.servlet.http.HttpServlet</h3>
<code>doDelete, doGet, doHead, doOptions, doPost, doPut, doTrace, getLastModified, service</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.javax.servlet.GenericServlet">
<!-- -->
</a>
<h3>Methods inherited from class javax.servlet.GenericServlet</h3>
<code>destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, init, log, log</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>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">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="WebContentServlet--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>WebContentServlet</h4>
<pre>public WebContentServlet()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="service-javax.servlet.http.HttpServletRequest-javax.servlet.http.HttpServletResponse-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>service</h4>
<pre>protected void service(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
throws javax.servlet.ServletException,
java.io.IOException</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code>service</code> in class <code>javax.servlet.http.HttpServlet</code></dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code>javax.servlet.ServletException</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>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="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="../../../../../com/centurylink/mdw/boot/servlet/WebContentFilter.html" title="class in com.centurylink.mdw.boot.servlet"><span class="typeNameLink">Prev Class</span></a></li>
<li>Next Class</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?com/centurylink/mdw/boot/servlet/WebContentServlet.html" target="_top">Frames</a></li>
<li><a href="WebContentServlet.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small><i>Copyright © 2019 CenturyLink, Inc.</i></small></p>
</body>
</html>
|
lib/archimate/svg/archimate.css | mmorga/archi-tools-rb | svg {
font-family: "Lucida Grande";
font-size: 11px;
}
p {
fill: black;
margin: 0;
stroke: none;
}
path {
fill: inherit;
stroke: inherit;
stroke-width: 1px;
}
.entity-name {
text-align: center;
vertical-align: top;
}
.entity>.properties {
visibility: hidden;
}
.entity:hover>.properties {
visibility: visible;
z-index: 1000;
}
.archimate-legend-title {
font-weight: bold;
}
.archimate-legend {
fill: #eee;
stroke: #bbb;
stroke-width: 2px;
}
table.properties {
background-color: whitesmoke;
border: 2px solid gray;
}
table.properties>caption {
background-color: gray;
border: 2px solid gray;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
.archimate-decoration {
fill:rgba(0,0,0,0.1);
stroke: inherit;
}
.archimate-badge {
fill: none;
stroke: black;
stroke-width: 1px;
}
.archimate-badge-spacer {
float: right;
height: 20px;
width: 20px;
}
.archimate-icon {
fill: none;
stroke: black;
}
.archimate-default-element {
fill: #ddd;
stroke: #999;
}
.archimate-location-background {
fill: #f9b77a;
stroke: #ae8055;
}
.archimate-strategy-background {
fill: #eddfac;
stroke: #44423b;
}
.archimate-business-background {
fill: #fffeb9;
stroke: #b2b181;
}
.archimate-business-decoration {
fill: rgb(229, 229, 162);
stroke: rgb(178, 178, 126);
}
.archimate-application-background {
fill: #ccfdfe;
stroke: #80b2b2;
}
.archimate-application-decoration {
fill: rgb(162, 229, 229);
stroke: rgb(126, 178, 178);
}
.archimate-infrastructure-background {
fill: #cae6b9;
stroke: #8ca081;
}
.archimate-infrastructure-decoration {
fill: #b4cfa4;
stroke: #9bb28d;
}
.archimate-physical-background {
fill: #cdfeb2;
stoke: #313331;
}
.archimate-motivation-background {
fill: #cccdfd;
stroke: #8e8fb1;
}
.archimate-motivation2-background {
fill: #cccdfd;
stroke: #8e8fb1;
}
.archimate-implementation-background {
fill: #fee0e0;
stroke: #b19c9c;
}
.archimate-implementation2-background {
fill: #e0ffe0;
stroke: #9cb29c;
}
.archimate-implementation2-decoration {
fill: #c9e5c9;
stroke: #9cb29c;
}
.archimate-connectors-background, .archimate-other-background {
fill: #eee;
stroke: #bbb;
}
.archimate-note-background {
fill: #fff;
stroke: #b2b2b2;
}
.archimate-group-background {
fill: #d2d7d7;
stroke: #939696;
}
.archimate-grouping-background {
fill: #ffffff;
stroke: #b2b2b2;
stroke-dasharray: 8,4;
}
.archimate-sticky-background {
fill: #fffeb9;
stroke: #b2b181;
}
.archimate-junction-background {
fill: black;
stroke: black;
}
.archimate-or-junction-background {
fill: white;
stroke: black;
}
.archimate-diagram-model-reference-background {
fill: #dcebeb;
stroke: #9aa4a4;
}
.archimate-default-background {
fill: #ddd;
stroke: #999;
}
/* Relationships */
.archimate-relationship {
fill: none;
stroke: black;
stroke-width: 1px;
}
.archimate-relationship-name {
font-size: 9px;
}
.archimate-assignment {
marker-end: url(#archimate-filled-arrow);
marker-start: url(#archimate-dot-marker);
}
.archimate-composition {
marker-start: url(#archimate-filled-diamond);
}
.archimate-used-by {
marker-end: url(#archimate-used-by-arrow);
}
.archimate-serving {
marker-end: url(#archimate-used-by-arrow);
}
.archimate-aggregation {
marker-start: url(#archimate-hollow-diamond);
}
.archimate-access {
marker-end: url(#archimate-open-arrow);
stroke-dasharray: 2, 3;
}
.archimate-realization {
marker-end: url(#archimate-hollow-arrow);
stroke-dasharray: 5, 3;
}
.archimate-specialization {
marker-end: url(#archimate-hollow-arrow);
}
.archimate-influence {
marker-end: url(#archimate-open-arrow);
stroke-dasharray: 5, 3;
}
.archimate-triggering {
marker-end: url(#archimate-filled-arrow);
}
.archimate-flow {
marker-end: url(#archimate-filled-arrow);
stroke-dasharray: 3, 3;
}
|
jyhton/extlibs/titan-1.0.0-hadoop1/javadocs/com/thinkaurelius/titan/graphdb/query/QueryUtil.IndexCall.html | nelmiux/CarnotKE | <!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_45) on Sat Sep 19 17:53:01 EDT 2015 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>QueryUtil.IndexCall (Titan 1.0.0 API)</title>
<meta name="date" content="2015-09-19">
<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="QueryUtil.IndexCall (Titan 1.0.0 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":6};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/QueryUtil.IndexCall.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-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="../../../../../com/thinkaurelius/titan/graphdb/query/QueryUtil.html" title="class in com.thinkaurelius.titan.graphdb.query"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../../com/thinkaurelius/titan/graphdb/query/ResultMergeSortIterator.html" title="class in com.thinkaurelius.titan.graphdb.query"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?com/thinkaurelius/titan/graphdb/query/QueryUtil.IndexCall.html" target="_top">Frames</a></li>
<li><a href="QueryUtil.IndexCall.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </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">com.thinkaurelius.titan.graphdb.query</div>
<h2 title="Interface QueryUtil.IndexCall" class="title">Interface QueryUtil.IndexCall<R></h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>Enclosing class:</dt>
<dd><a href="../../../../../com/thinkaurelius/titan/graphdb/query/QueryUtil.html" title="class in com.thinkaurelius.titan.graphdb.query">QueryUtil</a></dd>
</dl>
<hr>
<br>
<pre>public static interface <span class="typeNameLabel">QueryUtil.IndexCall<R></span></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a><<a href="../../../../../com/thinkaurelius/titan/graphdb/query/QueryUtil.IndexCall.html" title="type parameter in QueryUtil.IndexCall">R</a>></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../com/thinkaurelius/titan/graphdb/query/QueryUtil.IndexCall.html#call-int-">call</a></span>(int limit)</code> </td>
</tr>
</table>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="call-int-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>call</h4>
<pre><a href="http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a><<a href="../../../../../com/thinkaurelius/titan/graphdb/query/QueryUtil.IndexCall.html" title="type parameter in QueryUtil.IndexCall">R</a>> call(int limit)</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/QueryUtil.IndexCall.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-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="../../../../../com/thinkaurelius/titan/graphdb/query/QueryUtil.html" title="class in com.thinkaurelius.titan.graphdb.query"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../../com/thinkaurelius/titan/graphdb/query/ResultMergeSortIterator.html" title="class in com.thinkaurelius.titan.graphdb.query"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?com/thinkaurelius/titan/graphdb/query/QueryUtil.IndexCall.html" target="_top">Frames</a></li>
<li><a href="QueryUtil.IndexCall.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2012–2015. All rights reserved.</small></p>
</body>
</html>
|
2018.1.0/apidocs/org/wildfly/swarm/config/undertow/class-use/HandlerConfiguration.HandlerConfigurationResources.html | wildfly-swarm/wildfly-swarm-javadocs | <!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_151) on Mon Jan 15 08:36:52 MST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.wildfly.swarm.config.undertow.HandlerConfiguration.HandlerConfigurationResources (BOM: * : All 2018.1.0 API)</title>
<meta name="date" content="2018-01-15">
<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 org.wildfly.swarm.config.undertow.HandlerConfiguration.HandlerConfigurationResources (BOM: * : All 2018.1.0 API)";
}
}
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="../../../../../../org/wildfly/swarm/config/undertow/HandlerConfiguration.HandlerConfigurationResources.html" title="class in org.wildfly.swarm.config.undertow">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">WildFly Swarm API, 2018.1.0</div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/wildfly/swarm/config/undertow/class-use/HandlerConfiguration.HandlerConfigurationResources.html" target="_top">Frames</a></li>
<li><a href="HandlerConfiguration.HandlerConfigurationResources.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class org.wildfly.swarm.config.undertow.HandlerConfiguration.HandlerConfigurationResources" class="title">Uses of Class<br>org.wildfly.swarm.config.undertow.HandlerConfiguration.HandlerConfigurationResources</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="../../../../../../org/wildfly/swarm/config/undertow/HandlerConfiguration.HandlerConfigurationResources.html" title="class in org.wildfly.swarm.config.undertow">HandlerConfiguration.HandlerConfigurationResources</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#org.wildfly.swarm.config.undertow">org.wildfly.swarm.config.undertow</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.wildfly.swarm.config.undertow">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/undertow/HandlerConfiguration.HandlerConfigurationResources.html" title="class in org.wildfly.swarm.config.undertow">HandlerConfiguration.HandlerConfigurationResources</a> in <a href="../../../../../../org/wildfly/swarm/config/undertow/package-summary.html">org.wildfly.swarm.config.undertow</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="../../../../../../org/wildfly/swarm/config/undertow/package-summary.html">org.wildfly.swarm.config.undertow</a> that return <a href="../../../../../../org/wildfly/swarm/config/undertow/HandlerConfiguration.HandlerConfigurationResources.html" title="class in org.wildfly.swarm.config.undertow">HandlerConfiguration.HandlerConfigurationResources</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/undertow/HandlerConfiguration.HandlerConfigurationResources.html" title="class in org.wildfly.swarm.config.undertow">HandlerConfiguration.HandlerConfigurationResources</a></code></td>
<td class="colLast"><span class="typeNameLabel">HandlerConfiguration.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/undertow/HandlerConfiguration.html#subresources--">subresources</a></span>()</code> </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="../../../../../../org/wildfly/swarm/config/undertow/HandlerConfiguration.HandlerConfigurationResources.html" title="class in org.wildfly.swarm.config.undertow">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../../overview-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">WildFly Swarm API, 2018.1.0</div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/wildfly/swarm/config/undertow/class-use/HandlerConfiguration.HandlerConfigurationResources.html" target="_top">Frames</a></li>
<li><a href="HandlerConfiguration.HandlerConfigurationResources.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 © 2018 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
|
2017.11.0/apidocs/org/wildfly/swarm/topology/class-use/TopologyMessages_$logger.html | wildfly-swarm/wildfly-swarm-javadocs | <!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_112) on Mon Nov 06 11:57:27 MST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.wildfly.swarm.topology.TopologyMessages_$logger (BOM: * : All 2017.11.0 API)</title>
<meta name="date" content="2017-11-06">
<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 org.wildfly.swarm.topology.TopologyMessages_$logger (BOM: * : All 2017.11.0 API)";
}
}
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="../../../../../org/wildfly/swarm/topology/TopologyMessages_$logger.html" title="class in org.wildfly.swarm.topology">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../overview-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">WildFly Swarm API, 2017.11.0</div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/wildfly/swarm/topology/class-use/TopologyMessages_$logger.html" target="_top">Frames</a></li>
<li><a href="TopologyMessages_$logger.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class org.wildfly.swarm.topology.TopologyMessages_$logger" class="title">Uses of Class<br>org.wildfly.swarm.topology.TopologyMessages_$logger</h2>
</div>
<div class="classUseContainer">No usage of org.wildfly.swarm.topology.TopologyMessages_$logger</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="../../../../../org/wildfly/swarm/topology/TopologyMessages_$logger.html" title="class in org.wildfly.swarm.topology">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../overview-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">WildFly Swarm API, 2017.11.0</div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/wildfly/swarm/topology/class-use/TopologyMessages_$logger.html" target="_top">Frames</a></li>
<li><a href="TopologyMessages_$logger.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 © 2017 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
|
htdocs/css/styles.css | tarkenfire/MDF3_Mancuso | body
{
background: url('img/background.png') !important;
}
#send-email
{
margin-right: 10px;
margin-top: 10px;
margin-bottom: 10px;
}
.form-label
{
margin-top: 10px;
}
#body-text
{
height: 200px;
resize: none;
}
|
docs/articles/guides-mllib.html | kevinykuo/sparklyr | <!DOCTYPE html>
<!-- Generated by pkgdown: do not edit by hand --><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Spark Machine Learning Library (MLlib) • sparklyr</title>
<!-- jquery --><script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha384-nrOSfDHtoPMzJHjVTdCopGqIqeYETSXhZDFyniQ8ZHcVy08QesyHcnOUpMpqnmWq" crossorigin="anonymous"></script><!-- Bootstrap --><link href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/cosmo/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script><!-- Font Awesome icons --><link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous">
<!-- pkgdown --><link href="../pkgdown.css" rel="stylesheet">
<script src="../jquery.sticky-kit.min.js"></script><script src="../pkgdown.js"></script><!-- mathjax --><script src="https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script><!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container template-vignette">
<header><div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">sparklyr</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li>
<a href="../index.html">Home</a>
</li>
<li>
<a href="../articles/gallery.html">Gallery</a>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
Guides
<span class="caret"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li>
<a href="../articles/guides-dplyr.html">dplyr</a>
</li>
<li>
<a href="../articles/guides-mllib.html">mllib</a>
</li>
<li>
<a href="../articles/guides-distributed-r.html">Distributed R</a>
</li>
<li>
<a href="../articles/deployment-connections.html">User connection options</a>
</li>
<li>
<a href="../articles/guides-caching.html">Caching</a>
</li>
<li>
<a href="../articles/guides-h2o.html">H2O</a>
</li>
<li>
<a href="../articles/guides-extensions.html">Extensions</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
Deployment
<span class="caret"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li>
<a href="../articles/deployment-overview.html">Overview</a>
</li>
<li>
<a href="../articles/deployment-data-lakes.html">Data Lakes</a>
</li>
<li>
<a href="../articles/deployment-cdh.html">Cloudera</a>
</li>
<li>
<a href="../articles/deployment-amazon.html">Amazon</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
Reference
<span class="caret"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li>
<a href="../reference/index.html">Functions</a>
</li>
<li>
<a href="https://github.com/rstudio/cheatsheets/raw/master/source/pdfs/sparklyr.pdf">Cheatsheet</a>
</li>
<li>
<a href="../articles/reference-media.html">Media</a>
</li>
<li>
<a href="../news/index.html">News</a>
</li>
</ul>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="https://github.com/rstudio/sparklyr">
<span class="fa fa-github"></span>
</a>
</li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
<!--/.container -->
</div>
<!--/.navbar -->
</header><div class="row">
<div class="col-md-9">
<div class="page-header toc-ignore">
<h1>Spark Machine Learning Library (MLlib)</h1>
</div>
<div class="contents">
<div id="overview" class="section level2">
<h2 class="hasAnchor">
<a href="#overview" class="anchor"></a>Overview</h2>
<p><strong>sparklyr</strong> provides bindings to Spark’s distributed <a href="https://spark.apache.org/docs/latest/mllib-guide.html">machine learning</a> library. In particular, sparklyr allows you to access the machine learning routines provided by the <a href="https://spark.apache.org/docs/latest/ml-guide.html">spark.ml</a> package. Together with sparklyr’s <a href="dplyr.html">dplyr</a> interface, you can easily create and tune machine learning workflows on Spark, orchestrated entirely within R.</p>
<p>sparklyr provides three families of functions that you can use with Spark machine learning:</p>
<ul>
<li>Machine learning algorithms for analyzing data (<code>ml_*</code>)</li>
<li>Feature transformers for manipulating individual features (<code>ft_*</code>)</li>
<li>Functions for manipulating Spark DataFrames (<code>sdf_*</code>)</li>
</ul>
<p>An analytic workflow with sparklyr might be composed of the following stages. For an example see <a href="#example-workflow">Example Workflow</a>.</p>
<ol style="list-style-type: decimal">
<li>Perform SQL queries through the sparklyr <a href="dplyr.html">dplyr</a> interface,</li>
<li>Use the <code>sdf_*</code> and <code>ft_*</code> family of functions to generate new columns, or partition your data set,</li>
<li>Choose an appropriate machine learning algorithm from the <code>ml_*</code> family of functions to model your data,</li>
<li>Inspect the quality of your model fit, and use it to make predictions with new data.</li>
<li>Collect the results for visualization and further analysis in R</li>
</ol>
</div>
<div id="algorithms" class="section level2">
<h2 class="hasAnchor">
<a href="#algorithms" class="anchor"></a>Algorithms</h2>
<p>Spark’s machine learning library can be accessed from sparklyr through the <code>ml_*</code> set of functions:</p>
<table class="table">
<thead><tr class="header">
<th>Function</th>
<th>Description</th>
</tr></thead>
<tbody>
<tr class="odd">
<td><a href="reference/sparklyr/latest/ml_kmeans.html"><code>ml_kmeans</code></a></td>
<td>K-Means Clustering</td>
</tr>
<tr class="even">
<td><a href="reference/sparklyr/latest/ml_linear_regression.html"><code>ml_linear_regression</code></a></td>
<td>Linear Regression</td>
</tr>
<tr class="odd">
<td><a href="reference/sparklyr/latest/ml_logistic_regression.html"><code>ml_logistic_regression</code></a></td>
<td>Logistic Regression</td>
</tr>
<tr class="even">
<td><a href="reference/sparklyr/latest/ml_survival_regression.html"><code>ml_survival_regression</code></a></td>
<td>Survival Regression</td>
</tr>
<tr class="odd">
<td><a href="reference/sparklyr/latest/ml_generalized_linear_regression.html"><code>ml_generalized_linear_regression</code></a></td>
<td>Generalized Linear Regression</td>
</tr>
<tr class="even">
<td><a href="reference/sparklyr/latest/ml_decision_tree.html"><code>ml_decision_tree</code></a></td>
<td>Decision Trees</td>
</tr>
<tr class="odd">
<td><a href="reference/sparklyr/latest/ml_random_forest.html"><code>ml_random_forest</code></a></td>
<td>Random Forests</td>
</tr>
<tr class="even">
<td><a href="reference/sparklyr/latest/ml_gradient_boosted_trees.html"><code>ml_gradient_boosted_trees</code></a></td>
<td>Gradient-Boosted Trees</td>
</tr>
<tr class="odd">
<td><a href="reference/sparklyr/latest/ml_pca.html"><code>ml_pca</code></a></td>
<td>Principal Components Analysis</td>
</tr>
<tr class="even">
<td><a href="reference/sparklyr/latest/ml_naive_bayes.html"><code>ml_naive_bayes</code></a></td>
<td>Naive-Bayes</td>
</tr>
<tr class="odd">
<td><a href="reference/sparklyr/latest/ml_multilayer_perceptron.html"><code>ml_multilayer_perceptron</code></a></td>
<td>Multilayer Perceptron</td>
</tr>
<tr class="even">
<td><a href="reference/sparklyr/latest/ml_lda.html"><code>ml_lda</code></a></td>
<td>Latent Dirichlet Allocation</td>
</tr>
<tr class="odd">
<td><a href="reference/sparklyr/latest/ml_lda.html"><code>ml_one_vs_rest</code></a></td>
<td>One vs Rest</td>
</tr>
</tbody>
</table>
<div id="formulas" class="section level3 toc-ignore">
<h3 class="hasAnchor">
<a href="#formulas" class="anchor"></a>Formulas</h3>
<p>The <code>ml_*</code> functions take the arguments <code>response</code> and <code>features</code>. But <code>features</code> can also be a formula with main effects (it currently does not accept interaction terms). The intercept term can be omitted by using <code>-1</code>.</p>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r"><span class="co"># Equivalent statements</span>
<span class="kw"><a href="../reference/ml_linear_regression.html">ml_linear_regression</a></span>(z <span class="op">~</span><span class="st"> </span><span class="op">-</span><span class="dv">1</span> <span class="op">+</span><span class="st"> </span>x <span class="op">+</span><span class="st"> </span>y)
<span class="kw"><a href="../reference/ml_linear_regression.html">ml_linear_regression</a></span>(<span class="dt">intercept =</span> <span class="ot">FALSE</span>, <span class="dt">response =</span> <span class="st">"z"</span>, <span class="dt">features =</span> <span class="kw">c</span>(<span class="st">"x"</span>, <span class="st">"y"</span>))</code></pre></div>
</div>
<div id="options" class="section level3 toc-ignore">
<h3 class="hasAnchor">
<a href="#options" class="anchor"></a>Options</h3>
<p>The Spark model output can be modified with the <code>ml_options</code> argument in the <code>ml_*</code> functions. The <code>ml_options</code> is an <em>experts only</em> interface for tweaking the model output. For example, <code>model.transform</code> can be used to mutate the Spark model object before the fit is performed.</p>
</div>
</div>
<div id="transformers" class="section level2">
<h2 class="hasAnchor">
<a href="#transformers" class="anchor"></a>Transformers</h2>
<p>A model is often fit not on a dataset as-is, but instead on some transformation of that dataset. Spark provides <a href="http://spark.apache.org/docs/latest/ml-features.html">feature transformers</a>, facilitating many common transformations of data within a Spark DataFrame, and sparklyr exposes these within the <code>ft_*</code> family of functions. These routines generally take one or more input columns, and generate a new output column formed as a transformation of those columns.</p>
<table class="table">
<colgroup>
<col width="38%">
<col width="61%">
</colgroup>
<thead><tr class="header">
<th>Function</th>
<th>Description</th>
</tr></thead>
<tbody>
<tr class="odd">
<td><a href="reference/sparklyr/latest/ft_binarizer.html"><code>ft_binarizer</code></a></td>
<td>Threshold numerical features to binary (0/1) feature</td>
</tr>
<tr class="even">
<td><a href="reference/sparklyr/latest/ft_bucketizer.html"><code>ft_bucketizer</code></a></td>
<td>Bucketizer transforms a column of continuous features to a column of feature buckets</td>
</tr>
<tr class="odd">
<td><a href="reference/sparklyr/latest/ft_discrete_cosine_transform.html"><code>ft_discrete_cosine_transform</code></a></td>
<td>Transforms a length NN real-valued sequence in the time domain into another length NN real-valued sequence in the frequency domain</td>
</tr>
<tr class="even">
<td><a href="reference/sparklyr/latest/ft_elementwise_product.html"><code>ft_elementwise_product</code></a></td>
<td>Multiplies each input vector by a provided weight vector, using element-wise multiplication.</td>
</tr>
<tr class="odd">
<td><a href="reference/sparklyr/latest/ft_index_to_string.html"><code>ft_index_to_string</code></a></td>
<td>Maps a column of label indices back to a column containing the original labels as strings</td>
</tr>
<tr class="even">
<td><a href="reference/sparklyr/latest/ft_quantile_discretizer.html"><code>ft_quantile_discretizer</code></a></td>
<td>Takes a column with continuous features and outputs a column with binned categorical features</td>
</tr>
<tr class="odd">
<td><a href="reference/sparklyr/latest/ft_sql_transformer.html"><code>ft_sql_transformer</code></a></td>
<td>Implements the transformations which are defined by a SQL statement</td>
</tr>
<tr class="even">
<td><a href="reference/sparklyr/latest/ft_string_indexer.html"><code>ft_string_indexer</code></a></td>
<td>Encodes a string column of labels to a column of label indices</td>
</tr>
<tr class="odd">
<td><a href="reference/sparklyr/latest/ft_vector_assembler.html"><code>ft_vector_assembler</code></a></td>
<td>Combines a given list of columns into a single vector column</td>
</tr>
</tbody>
</table>
</div>
<div id="utilities" class="section level2">
<h2 class="hasAnchor">
<a href="#utilities" class="anchor"></a>Utilities</h2>
<p>Functions for interacting with Spark ML model fits.</p>
<table class="table">
<colgroup>
<col width="38%">
<col width="61%">
</colgroup>
<thead><tr class="header">
<th>Function</th>
<th>Description</th>
</tr></thead>
<tbody>
<tr class="odd">
<td><a href="http://spark.rstudio.com/reference/sparklyr/latest/ml_binary_classification_eval.html"><code>ml_binary_classification_eval</code></a></td>
<td>Calculates the area under the curve for a binary classification model.</td>
</tr>
<tr class="even">
<td><a href="http://spark.rstudio.com/reference/sparklyr/latest/ml_classification_eval.html"><code>ml_classification_eval</code></a></td>
<td>Calculates performance metrics (i.e. f1, precision, recall, weightedPrecision, weightedRecall, and accuracy) for binary and multiclass classification model.</td>
</tr>
<tr class="odd">
<td><a href="http://spark.rstudio.com/reference/sparklyr/latest/ml_tree_feature_importance.html"><code>ml_tree_feature_importance</code></a></td>
<td>Calculates variable importance for decision trees (i.e. decision trees, random forests, gradient boosted trees).</td>
</tr>
<tr class="even">
<td><a href="http://spark.rstudio.com/reference/sparklyr/latest/ml_saveload.html"><code>ml_saveload</code></a></td>
<td>Save and load model fits. For use with scoring models across platforms (e.g. using a model as an estimator in a Spark application). <em>These functions are currently experimental and not yet ready for production use.</em>
</td>
</tr>
</tbody>
</table>
</div>
<div id="extensions" class="section level2">
<h2 class="hasAnchor">
<a href="#extensions" class="anchor"></a>Extensions</h2>
<p>Functions for creating custom wrappers to other Spark ML algorithms.</p>
<table class="table">
<colgroup>
<col width="38%">
<col width="61%">
</colgroup>
<thead><tr class="header">
<th>Function</th>
<th>Description</th>
</tr></thead>
<tbody>
<tr class="odd">
<td><a href="http://spark.rstudio.com/reference/sparklyr/latest/ensure.html"><code>ensure</code></a></td>
<td>Enforces Specific Structure for R Objects.</td>
</tr>
<tr class="even">
<td><a href="http://spark.rstudio.com/reference/sparklyr/latest/ml_create_dummy_variables.html"><code>ml_create_dummy_variables</code></a></td>
<td>Given a column in a Spark DataFrame, generate a new Spark DataFrame containing dummy variable columns.</td>
</tr>
<tr class="odd">
<td><a href="http://spark.rstudio.com/reference/sparklyr/latest/ml_model.html"><code>ml_model</code></a></td>
<td>Creates an ML Model Object.</td>
</tr>
<tr class="even">
<td><a href="http://spark.rstudio.com/reference/sparklyr/latest/ml_options.html"><code>ml_options</code></a></td>
<td>Provides Options for Spark.ML Routines.</td>
</tr>
<tr class="odd">
<td><a href="http://spark.rstudio.com/reference/sparklyr/latest/ml_prepare_dataframe.html"><code>ml_prepare_dataframe</code></a></td>
<td>Prepares a Spark DataFrame for Spark ML Routines.</td>
</tr>
<tr class="even">
<td><a href="http://spark.rstudio.com/reference/sparklyr/latest/ml_prepare_inputs.html"><code>ml_prepare_response_features_intercept</code></a></td>
<td>Pre-process / normalize the inputs typically passed to a Spark ML routine.</td>
</tr>
</tbody>
</table>
</div>
<div id="examples" class="section level2">
<h2 class="hasAnchor">
<a href="#examples" class="anchor"></a>Examples</h2>
<p>We will use the <code>iris</code> data set to examine a handful of learning algorithms and transformers. The iris data set measures attributes for 150 flowers in 3 different species of iris.</p>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r"><span class="kw">library</span>(sparklyr)
<span class="kw">library</span>(ggplot2)
<span class="kw">library</span>(dplyr)</code></pre></div>
<pre><code>##
## Attaching package: 'dplyr'</code></pre>
<pre><code>## The following objects are masked from 'package:stats':
##
## filter, lag</code></pre>
<pre><code>## The following objects are masked from 'package:base':
##
## intersect, setdiff, setequal, union</code></pre>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r">sc <-<span class="st"> </span><span class="kw"><a href="../reference/spark-connections.html">spark_connect</a></span>(<span class="dt">master =</span> <span class="st">"local"</span>)</code></pre></div>
<pre><code>## * Using Spark: 2.1.0</code></pre>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r">iris_tbl <-<span class="st"> </span><span class="kw"><a href="http://dplyr.tidyverse.org/reference/copy_to.html">copy_to</a></span>(sc, iris, <span class="st">"iris"</span>, <span class="dt">overwrite =</span> <span class="ot">TRUE</span>)
iris_tbl</code></pre></div>
<pre><code>## # Source: table<iris> [?? x 5]
## # Database: spark_connection
## Sepal_Length Sepal_Width Petal_Length Petal_Width Species
## <dbl> <dbl> <dbl> <dbl> <chr>
## 1 5.1 3.5 1.4 0.2 setosa
## 2 4.9 3.0 1.4 0.2 setosa
## 3 4.7 3.2 1.3 0.2 setosa
## 4 4.6 3.1 1.5 0.2 setosa
## 5 5.0 3.6 1.4 0.2 setosa
## 6 5.4 3.9 1.7 0.4 setosa
## 7 4.6 3.4 1.4 0.3 setosa
## 8 5.0 3.4 1.5 0.2 setosa
## 9 4.4 2.9 1.4 0.2 setosa
## 10 4.9 3.1 1.5 0.1 setosa
## # ... with more rows</code></pre>
<div id="k-means-clustering" class="section level3">
<h3 class="hasAnchor">
<a href="#k-means-clustering" class="anchor"></a>K-Means Clustering</h3>
<p>Use Spark’s <a href="http://spark.apache.org/docs/latest/ml-clustering.html#k-means">K-means clustering</a> to partition a dataset into groups. K-means clustering partitions points into <code>k</code> groups, such that the sum of squares from points to the assigned cluster centers is minimized.</p>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r">kmeans_model <-<span class="st"> </span>iris_tbl <span class="op">%>%</span>
<span class="st"> </span><span class="kw"><a href="http://dplyr.tidyverse.org/reference/select.html">select</a></span>(Petal_Width, Petal_Length) <span class="op">%>%</span>
<span class="st"> </span><span class="kw"><a href="../reference/ml_kmeans.html">ml_kmeans</a></span>(<span class="dt">centers =</span> <span class="dv">3</span>)</code></pre></div>
<pre><code>## * No rows dropped by 'na.omit' call</code></pre>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r"><span class="co"># print our model fit</span>
kmeans_model</code></pre></div>
<pre><code>## K-means clustering with 3 clusters
##
## Cluster centers:
## Petal_Width Petal_Length
## 1 1.359259 4.292593
## 2 0.246000 1.462000
## 3 2.047826 5.626087
##
## Within Set Sum of Squared Errors = 31.41289</code></pre>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r"><span class="co"># predict the associated class</span>
predicted <-<span class="st"> </span><span class="kw"><a href="../reference/sdf_predict.html">sdf_predict</a></span>(kmeans_model, iris_tbl) <span class="op">%>%</span>
<span class="st"> </span>collect
<span class="kw">table</span>(predicted<span class="op">$</span>Species, predicted<span class="op">$</span>prediction)</code></pre></div>
<pre><code>##
## 0 1 2
## setosa 0 50 0
## versicolor 48 0 2
## virginica 6 0 44</code></pre>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r"><span class="co"># plot cluster membership</span>
<span class="kw"><a href="../reference/sdf_predict.html">sdf_predict</a></span>(kmeans_model) <span class="op">%>%</span>
<span class="st"> </span><span class="kw"><a href="http://dplyr.tidyverse.org/reference/compute.html">collect</a></span>() <span class="op">%>%</span>
<span class="st"> </span><span class="kw"><a href="http://www.rdocumentation.org/packages/ggplot2/topics/ggplot">ggplot</a></span>(<span class="kw"><a href="http://www.rdocumentation.org/packages/ggplot2/topics/aes">aes</a></span>(Petal_Length, Petal_Width)) <span class="op">+</span>
<span class="st"> </span><span class="kw"><a href="http://www.rdocumentation.org/packages/ggplot2/topics/geom_point">geom_point</a></span>(<span class="kw"><a href="http://www.rdocumentation.org/packages/ggplot2/topics/aes">aes</a></span>(Petal_Width, Petal_Length, <span class="dt">col =</span> <span class="kw">factor</span>(prediction <span class="op">+</span><span class="st"> </span><span class="dv">1</span>)),
<span class="dt">size =</span> <span class="dv">2</span>, <span class="dt">alpha =</span> <span class="fl">0.5</span>) <span class="op">+</span><span class="st"> </span>
<span class="st"> </span><span class="kw"><a href="http://www.rdocumentation.org/packages/ggplot2/topics/geom_point">geom_point</a></span>(<span class="dt">data =</span> kmeans_model<span class="op">$</span>centers, <span class="kw"><a href="http://www.rdocumentation.org/packages/ggplot2/topics/aes">aes</a></span>(Petal_Width, Petal_Length),
<span class="dt">col =</span> scales<span class="op">::</span><span class="kw"><a href="http://www.rdocumentation.org/packages/scales/topics/muted">muted</a></span>(<span class="kw">c</span>(<span class="st">"red"</span>, <span class="st">"green"</span>, <span class="st">"blue"</span>)),
<span class="dt">pch =</span> <span class="st">'x'</span>, <span class="dt">size =</span> <span class="dv">12</span>) <span class="op">+</span>
<span class="st"> </span><span class="kw"><a href="http://www.rdocumentation.org/packages/ggplot2/topics/scale_hue">scale_color_discrete</a></span>(<span class="dt">name =</span> <span class="st">"Predicted Cluster"</span>,
<span class="dt">labels =</span> <span class="kw">paste</span>(<span class="st">"Cluster"</span>, <span class="dv">1</span><span class="op">:</span><span class="dv">3</span>)) <span class="op">+</span>
<span class="st"> </span><span class="kw"><a href="http://www.rdocumentation.org/packages/ggplot2/topics/labs">labs</a></span>(
<span class="dt">x =</span> <span class="st">"Petal Length"</span>,
<span class="dt">y =</span> <span class="st">"Petal Width"</span>,
<span class="dt">title =</span> <span class="st">"K-Means Clustering"</span>,
<span class="dt">subtitle =</span> <span class="st">"Use Spark.ML to predict cluster membership with the iris dataset."</span>
)</code></pre></div>
<p><img src="guides-mllib_files/figure-html/unnamed-chunk-5-1.png" width="672"></p>
</div>
<div id="linear-regression" class="section level3">
<h3 class="hasAnchor">
<a href="#linear-regression" class="anchor"></a>Linear Regression</h3>
<p>Use Spark’s <a href="http://spark.apache.org/docs/latest/ml-classification-regression.html#linear-regression">linear regression</a> to model the linear relationship between a response variable and one or more explanatory variables.</p>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r">lm_model <-<span class="st"> </span>iris_tbl <span class="op">%>%</span>
<span class="st"> </span><span class="kw"><a href="http://dplyr.tidyverse.org/reference/select.html">select</a></span>(Petal_Width, Petal_Length) <span class="op">%>%</span>
<span class="st"> </span><span class="kw"><a href="../reference/ml_linear_regression.html">ml_linear_regression</a></span>(Petal_Length <span class="op">~</span><span class="st"> </span>Petal_Width)</code></pre></div>
<pre><code>## * No rows dropped by 'na.omit' call</code></pre>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r">iris_tbl <span class="op">%>%</span>
<span class="st"> </span><span class="kw"><a href="http://dplyr.tidyverse.org/reference/select.html">select</a></span>(Petal_Width, Petal_Length) <span class="op">%>%</span>
<span class="st"> </span>collect <span class="op">%>%</span>
<span class="st"> </span><span class="kw"><a href="http://www.rdocumentation.org/packages/ggplot2/topics/ggplot">ggplot</a></span>(<span class="kw"><a href="http://www.rdocumentation.org/packages/ggplot2/topics/aes">aes</a></span>(Petal_Length, Petal_Width)) <span class="op">+</span>
<span class="st"> </span><span class="kw"><a href="http://www.rdocumentation.org/packages/ggplot2/topics/geom_point">geom_point</a></span>(<span class="kw"><a href="http://www.rdocumentation.org/packages/ggplot2/topics/aes">aes</a></span>(Petal_Width, Petal_Length), <span class="dt">size =</span> <span class="dv">2</span>, <span class="dt">alpha =</span> <span class="fl">0.5</span>) <span class="op">+</span>
<span class="st"> </span><span class="kw"><a href="http://www.rdocumentation.org/packages/ggplot2/topics/geom_abline">geom_abline</a></span>(<span class="kw"><a href="http://www.rdocumentation.org/packages/ggplot2/topics/aes">aes</a></span>(<span class="dt">slope =</span> <span class="kw">coef</span>(lm_model)[[<span class="st">"Petal_Width"</span>]],
<span class="dt">intercept =</span> <span class="kw">coef</span>(lm_model)[[<span class="st">"(Intercept)"</span>]]),
<span class="dt">color =</span> <span class="st">"red"</span>) <span class="op">+</span>
<span class="st"> </span><span class="kw"><a href="http://www.rdocumentation.org/packages/ggplot2/topics/labs">labs</a></span>(
<span class="dt">x =</span> <span class="st">"Petal Width"</span>,
<span class="dt">y =</span> <span class="st">"Petal Length"</span>,
<span class="dt">title =</span> <span class="st">"Linear Regression: Petal Length ~ Petal Width"</span>,
<span class="dt">subtitle =</span> <span class="st">"Use Spark.ML linear regression to predict petal length as a function of petal width."</span>
)</code></pre></div>
<p><img src="guides-mllib_files/figure-html/unnamed-chunk-6-1.png" width="672"></p>
</div>
<div id="logistic-regression" class="section level3">
<h3 class="hasAnchor">
<a href="#logistic-regression" class="anchor"></a>Logistic Regression</h3>
<p>Use Spark’s <a href="http://spark.apache.org/docs/latest/ml-classification-regression.html#logistic-regression">logistic regression</a> to perform logistic regression, modeling a binary outcome as a function of one or more explanatory variables.</p>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r"><span class="co"># Prepare beaver dataset</span>
beaver <-<span class="st"> </span>beaver2
beaver<span class="op">$</span>activ <-<span class="st"> </span><span class="kw">factor</span>(beaver<span class="op">$</span>activ, <span class="dt">labels =</span> <span class="kw">c</span>(<span class="st">"Non-Active"</span>, <span class="st">"Active"</span>))
<span class="kw"><a href="http://dplyr.tidyverse.org/reference/copy_to.html">copy_to</a></span>(sc, beaver, <span class="st">"beaver"</span>)</code></pre></div>
<pre><code>## # Source: table<beaver> [?? x 4]
## # Database: spark_connection
## day time temp activ
## <dbl> <dbl> <dbl> <chr>
## 1 307 930 36.58 Non-Active
## 2 307 940 36.73 Non-Active
## 3 307 950 36.93 Non-Active
## 4 307 1000 37.15 Non-Active
## 5 307 1010 37.23 Non-Active
## 6 307 1020 37.24 Non-Active
## 7 307 1030 37.24 Non-Active
## 8 307 1040 36.90 Non-Active
## 9 307 1050 36.95 Non-Active
## 10 307 1100 36.89 Non-Active
## # ... with more rows</code></pre>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r">beaver_tbl <-<span class="st"> </span><span class="kw"><a href="http://dplyr.tidyverse.org/reference/tbl.html">tbl</a></span>(sc, <span class="st">"beaver"</span>)
glm_model <-<span class="st"> </span>beaver_tbl <span class="op">%>%</span>
<span class="st"> </span><span class="kw"><a href="http://dplyr.tidyverse.org/reference/mutate.html">mutate</a></span>(<span class="dt">binary_response =</span> <span class="kw">as.numeric</span>(activ <span class="op">==</span><span class="st"> "Active"</span>)) <span class="op">%>%</span>
<span class="st"> </span><span class="kw"><a href="../reference/ml_logistic_regression.html">ml_logistic_regression</a></span>(binary_response <span class="op">~</span><span class="st"> </span>temp)</code></pre></div>
<pre><code>## * No rows dropped by 'na.omit' call</code></pre>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r">glm_model</code></pre></div>
<pre><code>## Call: binary_response ~ temp
##
## Coefficients:
## (Intercept) temp
## -550.52331 14.69184</code></pre>
</div>
<div id="pca" class="section level3">
<h3 class="hasAnchor">
<a href="#pca" class="anchor"></a>PCA</h3>
<p>Use Spark’s <a href="https://spark.apache.org/docs/latest/mllib-dimensionality-reduction.html">Principal Components Analysis (PCA)</a> to perform dimensionality reduction. PCA is a statistical method to find a rotation such that the first coordinate has the largest variance possible, and each succeeding coordinate in turn has the largest variance possible.</p>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r">pca_model <-<span class="st"> </span><span class="kw"><a href="http://dplyr.tidyverse.org/reference/tbl.html">tbl</a></span>(sc, <span class="st">"iris"</span>) <span class="op">%>%</span>
<span class="st"> </span><span class="kw"><a href="http://dplyr.tidyverse.org/reference/select.html">select</a></span>(<span class="op">-</span>Species) <span class="op">%>%</span>
<span class="st"> </span><span class="kw"><a href="../reference/ml_pca.html">ml_pca</a></span>()</code></pre></div>
<pre><code>## * No rows dropped by 'na.omit' call</code></pre>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r"><span class="kw">print</span>(pca_model)</code></pre></div>
<pre><code>## Explained variance:
##
## PC1 PC2 PC3 PC4
## 0.924618723 0.053066483 0.017102610 0.005212184
##
## Rotation:
## PC1 PC2 PC3 PC4
## Sepal_Length -0.36138659 -0.65658877 0.58202985 0.3154872
## Sepal_Width 0.08452251 -0.73016143 -0.59791083 -0.3197231
## Petal_Length -0.85667061 0.17337266 -0.07623608 -0.4798390
## Petal_Width -0.35828920 0.07548102 -0.54583143 0.7536574</code></pre>
</div>
<div id="random-forest" class="section level3">
<h3 class="hasAnchor">
<a href="#random-forest" class="anchor"></a>Random Forest</h3>
<p>Use Spark’s <a href="https://spark.apache.org/docs/latest/ml-classification-regression.html#random-forest-regression">Random Forest</a> to perform regression or multiclass classification.</p>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r">rf_model <-<span class="st"> </span>iris_tbl <span class="op">%>%</span>
<span class="st"> </span><span class="kw"><a href="../reference/ml_random_forest.html">ml_random_forest</a></span>(Species <span class="op">~</span><span class="st"> </span>Petal_Length <span class="op">+</span><span class="st"> </span>Petal_Width, <span class="dt">type =</span> <span class="st">"classification"</span>)</code></pre></div>
<pre><code>## * No rows dropped by 'na.omit' call</code></pre>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r">rf_predict <-<span class="st"> </span><span class="kw"><a href="../reference/sdf_predict.html">sdf_predict</a></span>(rf_model, iris_tbl) <span class="op">%>%</span>
<span class="st"> </span><span class="kw"><a href="../reference/ft_string_indexer.html">ft_string_indexer</a></span>(<span class="st">"Species"</span>, <span class="st">"Species_idx"</span>) <span class="op">%>%</span>
<span class="st"> </span>collect
<span class="kw">table</span>(rf_predict<span class="op">$</span>Species_idx, rf_predict<span class="op">$</span>prediction)</code></pre></div>
<pre><code>##
## 0 1 2
## 0 49 1 0
## 1 0 50 0
## 2 0 0 50</code></pre>
</div>
<div id="sdf-partitioning" class="section level3">
<h3 class="hasAnchor">
<a href="#sdf-partitioning" class="anchor"></a>SDF Partitioning</h3>
<p>Split a Spark DataFrame into training, test datasets.</p>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r">partitions <-<span class="st"> </span><span class="kw"><a href="http://dplyr.tidyverse.org/reference/tbl.html">tbl</a></span>(sc, <span class="st">"iris"</span>) <span class="op">%>%</span>
<span class="st"> </span><span class="kw"><a href="../reference/sdf_partition.html">sdf_partition</a></span>(<span class="dt">training =</span> <span class="fl">0.75</span>, <span class="dt">test =</span> <span class="fl">0.25</span>, <span class="dt">seed =</span> <span class="dv">1099</span>)
fit <-<span class="st"> </span>partitions<span class="op">$</span>training <span class="op">%>%</span>
<span class="st"> </span><span class="kw"><a href="../reference/ml_linear_regression.html">ml_linear_regression</a></span>(Petal_Length <span class="op">~</span><span class="st"> </span>Petal_Width)</code></pre></div>
<pre><code>## * No rows dropped by 'na.omit' call</code></pre>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r">estimate_mse <-<span class="st"> </span><span class="cf">function</span>(df){
<span class="kw"><a href="../reference/sdf_predict.html">sdf_predict</a></span>(fit, df) <span class="op">%>%</span>
<span class="st"> </span><span class="kw"><a href="http://dplyr.tidyverse.org/reference/mutate.html">mutate</a></span>(<span class="dt">resid =</span> Petal_Length <span class="op">-</span><span class="st"> </span>prediction) <span class="op">%>%</span>
<span class="st"> </span><span class="kw"><a href="http://dplyr.tidyverse.org/reference/summarise.html">summarize</a></span>(<span class="dt">mse =</span> <span class="kw">mean</span>(resid <span class="op">^</span><span class="st"> </span><span class="dv">2</span>)) <span class="op">%>%</span>
<span class="st"> </span>collect
}
<span class="kw">sapply</span>(partitions, estimate_mse)</code></pre></div>
<pre><code>## $training.mse
## [1] 0.2374596
##
## $test.mse
## [1] 0.1898848</code></pre>
</div>
<div id="ft-string-indexing" class="section level3">
<h3 class="hasAnchor">
<a href="#ft-string-indexing" class="anchor"></a>FT String Indexing</h3>
<p>Use <code>ft_string_indexer</code> and <code>ft_index_to_string</code> to convert a character column into a numeric column and back again.</p>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r">ft_string2idx <-<span class="st"> </span>iris_tbl <span class="op">%>%</span>
<span class="st"> </span><span class="kw"><a href="../reference/ft_string_indexer.html">ft_string_indexer</a></span>(<span class="st">"Species"</span>, <span class="st">"Species_idx"</span>) <span class="op">%>%</span>
<span class="st"> </span><span class="kw"><a href="../reference/ft_index_to_string.html">ft_index_to_string</a></span>(<span class="st">"Species_idx"</span>, <span class="st">"Species_remap"</span>) <span class="op">%>%</span>
<span class="st"> </span>collect
<span class="kw">table</span>(ft_string2idx<span class="op">$</span>Species, ft_string2idx<span class="op">$</span>Species_remap)</code></pre></div>
<pre><code>##
## setosa versicolor virginica
## setosa 50 0 0
## versicolor 0 50 0
## virginica 0 0 50</code></pre>
</div>
<div id="sdf-mutate" class="section level3">
<h3 class="hasAnchor">
<a href="#sdf-mutate" class="anchor"></a>SDF Mutate</h3>
<p><a href="reference/sparklyr/latest/sdf_mutate.html">sdf_mutate</a> is provided as a helper function, to allow you to use feature transformers. For example, the previous code snippet could have been written as:</p>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r">ft_string2idx <-<span class="st"> </span>iris_tbl <span class="op">%>%</span>
<span class="st"> </span><span class="kw">sdf_mutate</span>(<span class="dt">Species_idx =</span> <span class="kw"><a href="../reference/ft_string_indexer.html">ft_string_indexer</a></span>(Species)) <span class="op">%>%</span>
<span class="st"> </span><span class="kw">sdf_mutate</span>(<span class="dt">Species_remap =</span> <span class="kw"><a href="../reference/ft_index_to_string.html">ft_index_to_string</a></span>(Species_idx)) <span class="op">%>%</span>
<span class="st"> </span>collect
ft_string2idx <span class="op">%>%</span>
<span class="st"> </span><span class="kw"><a href="http://dplyr.tidyverse.org/reference/select.html">select</a></span>(Species, Species_idx, Species_remap) <span class="op">%>%</span>
<span class="st"> </span>distinct</code></pre></div>
<pre><code>## # A tibble: 3 x 3
## Species Species_idx Species_remap
## <chr> <dbl> <chr>
## 1 setosa 2 setosa
## 2 versicolor 0 versicolor
## 3 virginica 1 virginica</code></pre>
</div>
<div id="example-workflow" class="section level3">
<h3 class="hasAnchor">
<a href="#example-workflow" class="anchor"></a>Example Workflow</h3>
<p>Let’s walk through a simple example to demonstrate the use of Spark’s machine learning algorithms within R. We’ll use <a href="reference/sparklyr/latest/ml_linear_regression.html">ml_linear_regression</a> to fit a linear regression model. Using the built-in <code>mtcars</code> dataset, we’ll try to predict a car’s fuel consumption (<code>mpg</code>) based on its weight (<code>wt</code>), and the number of cylinders the engine contains (<code>cyl</code>).</p>
<p>First, we will copy the <code>mtcars</code> dataset into Spark.</p>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r">mtcars_tbl <-<span class="st"> </span><span class="kw"><a href="http://dplyr.tidyverse.org/reference/copy_to.html">copy_to</a></span>(sc, mtcars, <span class="st">"mtcars"</span>)</code></pre></div>
<p>Transform the data with Spark SQL, feature transformers, and DataFrame functions.</p>
<ol style="list-style-type: decimal">
<li>Use Spark SQL to remove all cars with horsepower less than 100</li>
<li>Use Spark feature transformers to bucket cars into two groups based on cylinders</li>
<li>Use Spark DataFrame functions to partition the data into test and training</li>
</ol>
<p>Then fit a linear model using spark ML. Model MPG as a function of weight and cylinders.</p>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r"><span class="co"># transform our data set, and then partition into 'training', 'test'</span>
partitions <-<span class="st"> </span>mtcars_tbl <span class="op">%>%</span>
<span class="st"> </span><span class="kw"><a href="http://dplyr.tidyverse.org/reference/filter.html">filter</a></span>(hp <span class="op">>=</span><span class="st"> </span><span class="dv">100</span>) <span class="op">%>%</span>
<span class="st"> </span><span class="kw">sdf_mutate</span>(<span class="dt">cyl8 =</span> <span class="kw"><a href="../reference/ft_bucketizer.html">ft_bucketizer</a></span>(cyl, <span class="kw">c</span>(<span class="dv">0</span>,<span class="dv">8</span>,<span class="dv">12</span>))) <span class="op">%>%</span>
<span class="st"> </span><span class="kw"><a href="../reference/sdf_partition.html">sdf_partition</a></span>(<span class="dt">training =</span> <span class="fl">0.5</span>, <span class="dt">test =</span> <span class="fl">0.5</span>, <span class="dt">seed =</span> <span class="dv">888</span>)
<span class="co"># fit a linear mdoel to the training dataset</span>
fit <-<span class="st"> </span>partitions<span class="op">$</span>training <span class="op">%>%</span>
<span class="st"> </span><span class="kw"><a href="../reference/ml_linear_regression.html">ml_linear_regression</a></span>(mpg <span class="op">~</span><span class="st"> </span>wt <span class="op">+</span><span class="st"> </span>cyl)</code></pre></div>
<pre><code>## * No rows dropped by 'na.omit' call</code></pre>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r"><span class="co"># summarize the model</span>
<span class="kw">summary</span>(fit)</code></pre></div>
<pre><code>## Call: ml_linear_regression(., mpg ~ wt + cyl)
##
## Deviance Residuals::
## Min 1Q Median 3Q Max
## -2.0947 -1.2747 -0.1129 1.0876 2.2185
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 33.79558 2.67240 12.6462 4.92e-07 ***
## wt -1.59625 0.73729 -2.1650 0.05859 .
## cyl -1.58036 0.49670 -3.1817 0.01115 *
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## R-Squared: 0.8267
## Root Mean Squared Error: 1.437</code></pre>
<p>The <code>summary()</code> suggests that our model is a fairly good fit, and that both a cars weight, as well as the number of cylinders in its engine, will be powerful predictors of its average fuel consumption. (The model suggests that, on average, heavier cars consume more fuel.)</p>
<p>Let’s use our Spark model fit to predict the average fuel consumption on our test data set, and compare the predicted response with the true measured fuel consumption. We’ll build a simple ggplot2 plot that will allow us to inspect the quality of our predictions.</p>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r"><span class="co"># Score the data</span>
pred <-<span class="st"> </span><span class="kw"><a href="../reference/sdf_predict.html">sdf_predict</a></span>(fit, partitions<span class="op">$</span>test) <span class="op">%>%</span>
<span class="st"> </span>collect
<span class="co"># Plot the predicted versus actual mpg</span>
<span class="kw"><a href="http://www.rdocumentation.org/packages/ggplot2/topics/ggplot">ggplot</a></span>(pred, <span class="kw"><a href="http://www.rdocumentation.org/packages/ggplot2/topics/aes">aes</a></span>(<span class="dt">x =</span> mpg, <span class="dt">y =</span> prediction)) <span class="op">+</span>
<span class="st"> </span><span class="kw"><a href="http://www.rdocumentation.org/packages/ggplot2/topics/geom_abline">geom_abline</a></span>(<span class="dt">lty =</span> <span class="st">"dashed"</span>, <span class="dt">col =</span> <span class="st">"red"</span>) <span class="op">+</span>
<span class="st"> </span><span class="kw"><a href="http://www.rdocumentation.org/packages/ggplot2/topics/geom_point">geom_point</a></span>() <span class="op">+</span>
<span class="st"> </span><span class="kw"><a href="http://www.rdocumentation.org/packages/ggplot2/topics/theme">theme</a></span>(<span class="dt">plot.title =</span> <span class="kw"><a href="http://www.rdocumentation.org/packages/ggplot2/topics/element">element_text</a></span>(<span class="dt">hjust =</span> <span class="fl">0.5</span>)) <span class="op">+</span>
<span class="st"> </span><span class="kw"><a href="http://www.rdocumentation.org/packages/ggplot2/topics/coord_fixed">coord_fixed</a></span>(<span class="dt">ratio =</span> <span class="dv">1</span>) <span class="op">+</span>
<span class="st"> </span><span class="kw"><a href="http://www.rdocumentation.org/packages/ggplot2/topics/labs">labs</a></span>(
<span class="dt">x =</span> <span class="st">"Actual Fuel Consumption"</span>,
<span class="dt">y =</span> <span class="st">"Predicted Fuel Consumption"</span>,
<span class="dt">title =</span> <span class="st">"Predicted vs. Actual Fuel Consumption"</span>
)</code></pre></div>
<p><img src="guides-mllib_files/figure-html/unnamed-chunk-15-1.png" width="672"></p>
<p>Although simple, our model appears to do a fairly good job of predicting a car’s average fuel consumption.</p>
<p>As you can see, we can easily and effectively combine feature transformers, machine learning algorithms, and Spark DataFrame functions into a complete analysis with Spark and R.</p>
</div>
</div>
</div>
</div>
<div class="col-md-3 hidden-xs hidden-sm" id="sidebar">
<div id="tocnav">
<h2 class="hasAnchor">
<a href="#tocnav" class="anchor"></a>Contents</h2>
<ul class="nav nav-pills nav-stacked">
<li><a href="#overview">Overview</a></li>
<li><a href="#algorithms">Algorithms</a></li>
<li><a href="#transformers">Transformers</a></li>
<li><a href="#utilities">Utilities</a></li>
<li><a href="#extensions">Extensions</a></li>
<li><a href="#examples">Examples</a></li>
</ul>
</div>
</div>
</div>
<footer><div class="copyright">
<p>Developed by Javier Luraschi, Kevin Ushey, JJ Allaire, The Apache Software Foundation.</p>
</div>
<div class="pkgdown">
<p>Site built with <a href="http://hadley.github.io/pkgdown/">pkgdown</a>.</p>
</div>
</footer>
</div>
</body>
</html>
|
内存泄漏/Eight Ways Your Android App Can Leak Memory_files/dnd-shortcodes.css | shenjianli/book |
.dnd_follow_us{
font-size: 16px;
}
.dnd_follow_us a{
margin-right: 10px;
text-decoration: none;
display: inline-block;
background: #f5f6f8;
width: 36px;
height: 36px;
line-height: 36px;
text-align: center;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
color:#9fa4af;
margin-bottom: 20px;
font-size: 13px;
}
.dnd_follow_us a:last-child{
margin-right: 0;
}
#ABdev_main_footer .dnd_socialicon_facebook:hover i{color: #3B5998;}
#ABdev_main_footer .dnd_socialicon_twitter:hover i{color: #4099FF;}
#ABdev_main_footer .dnd_socialicon_googleplus:hover i{color: #d34836;}
#ABdev_main_footer .dnd_socialicon_linkedin:hover i{color: #0e76a8;}
#ABdev_main_footer .dnd_socialicon_pinterest:hover i{color: #c8232c;}
.dnd_follow_us a:hover{
text-decoration: none;
background: #999;
color:#fff;
}
.dnd_follow_us .dnd_socialicon_facebook:hover{background: #3B5998;}
.dnd_follow_us .dnd_socialicon_twitter:hover{background: #4099FF;}
.dnd_follow_us .dnd_socialicon_googleplus:hover{background: #d34836;}
.dnd_follow_us .dnd_socialicon_linkedin:hover{background: #0e76a8;}
.dnd_follow_us .dnd_socialicon_pinterest:hover{background: #c8232c;}
.dnd_tooltip{
cursor: pointer;
}
|
generated/javadoc/com/communote/server/core/vo/query/class-use/QueryParameters.html | Communote/communote.github.io | <!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_162) on Sat Feb 02 18:57:42 CET 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class com.communote.server.core.vo.query.QueryParameters (Communote 3.5 API)</title>
<meta name="date" content="2019-02-02">
<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 com.communote.server.core.vo.query.QueryParameters (Communote 3.5 API)";
}
}
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="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">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?com/communote/server/core/vo/query/class-use/QueryParameters.html" target="_top">Frames</a></li>
<li><a href="QueryParameters.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class com.communote.server.core.vo.query.QueryParameters" class="title">Uses of Class<br>com.communote.server.core.vo.query.QueryParameters</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="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#com.communote.plugins.activity.base.task">com.communote.plugins.activity.base.task</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#com.communote.server.core.query">com.communote.server.core.query</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#com.communote.server.core.vo.query">com.communote.server.core.vo.query</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#com.communote.server.core.vo.query.blog">com.communote.server.core.vo.query.blog</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#com.communote.server.core.vo.query.blog.external">com.communote.server.core.vo.query.blog.external</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#com.communote.server.core.vo.query.post">com.communote.server.core.vo.query.post</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#com.communote.server.core.vo.query.tag">com.communote.server.core.vo.query.tag</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#com.communote.server.core.vo.query.user">com.communote.server.core.vo.query.user</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#com.communote.server.persistence.query">com.communote.server.persistence.query</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#com.communote.server.web.fe.portal.blog.helper">com.communote.server.web.fe.portal.blog.helper</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#com.communote.server.web.fe.widgets">com.communote.server.web.fe.widgets</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="com.communote.plugins.activity.base.task">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> in <a href="../../../../../../../com/communote/plugins/activity/base/task/package-summary.html">com.communote.plugins.activity.base.task</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation">
<caption><span>Subclasses of <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> in <a href="../../../../../../../com/communote/plugins/activity/base/task/package-summary.html">com.communote.plugins.activity.base.task</a></span><span class="tabEnd"> </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 </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../com/communote/plugins/activity/base/task/DeleteActivitiesNoteQueryParameters.html" title="class in com.communote.plugins.activity.base.task">DeleteActivitiesNoteQueryParameters</a></span></code>
<div class="block"><a href="../../../../../../../com/communote/server/core/vo/query/post/NoteQueryParameters.html" title="class in com.communote.server.core.vo.query.post"><code>NoteQueryParameters</code></a> with additional fields for retrieving only activities but excluding
those that cannot be deleted.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.communote.server.core.query">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> in <a href="../../../../../../../com/communote/server/core/query/package-summary.html">com.communote.server.core.query</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="../../../../../../../com/communote/server/core/query/package-summary.html">com.communote.server.core.query</a> with type parameters of type <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><L,T extends <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a>><br><a href="../../../../../../../com/communote/common/util/PageableList.html" title="class in com.communote.common.util">PageableList</a><L></code></td>
<td class="colLast"><span class="typeNameLabel">QueryManagement.</span><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/core/query/QueryManagement.html#executeQuery-com.communote.server.core.vo.query.Query-T-">executeQuery</a></span>(<a href="../../../../../../../com/communote/server/core/vo/query/Query.html" title="class in com.communote.server.core.vo.query">Query</a><L,T> query,
T queryParameters)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
<div class="block"><span class="deprecationComment">Use <a href="../../../../../../../com/communote/server/core/query/QueryManagement.html#query-com.communote.server.core.vo.query.Query-T-com.communote.server.core.vo.query.QueryResultConverter-"><code>QueryManagement.query(Query, QueryParameters, QueryResultConverter)</code></a> instead.</span></div>
</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><L,T extends <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a>><br><a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><L></code></td>
<td class="colLast"><span class="typeNameLabel">QueryManagement.</span><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/core/query/QueryManagement.html#executeQueryComplete-com.communote.server.core.vo.query.Query-T-">executeQueryComplete</a></span>(<a href="../../../../../../../com/communote/server/core/vo/query/Query.html" title="class in com.communote.server.core.vo.query">Query</a><L,T> query,
T queryParameters)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><O,L,T extends <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a>><br><a href="../../../../../../../com/communote/common/util/PageableList.html" title="class in com.communote.common.util">PageableList</a><O></code></td>
<td class="colLast"><span class="typeNameLabel">QueryManagement.</span><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/core/query/QueryManagement.html#query-com.communote.server.core.vo.query.Query-T-com.communote.server.core.vo.query.QueryResultConverter-">query</a></span>(<a href="../../../../../../../com/communote/server/core/vo/query/Query.html" title="class in com.communote.server.core.vo.query">Query</a><L,T> query,
T queryParameters,
<a href="../../../../../../../com/communote/server/core/vo/query/QueryResultConverter.html" title="class in com.communote.server.core.vo.query">QueryResultConverter</a><L,O> converter)</code>
<div class="block">Executes the given query and converts the result using the given converter.</div>
</td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../com/communote/server/core/query/package-summary.html">com.communote.server.core.query</a> with parameters of type <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><L> <a href="../../../../../../../com/communote/common/util/PageableList.html" title="class in com.communote.common.util">PageableList</a><L></code></td>
<td class="colLast"><span class="typeNameLabel">QueryManagement.</span><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/core/query/QueryManagement.html#query-com.communote.server.core.vo.query.Query-com.communote.server.core.vo.query.QueryParameters-">query</a></span>(<a href="../../../../../../../com/communote/server/core/vo/query/Query.html" title="class in com.communote.server.core.vo.query">Query</a><L,?> query,
<a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> queryParameters)</code>
<div class="block">Returns the result without converting them in any way.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.communote.server.core.vo.query">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> in <a href="../../../../../../../com/communote/server/core/vo/query/package-summary.html">com.communote.server.core.vo.query</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../../../../com/communote/server/core/vo/query/package-summary.html">com.communote.server.core.vo.query</a> with type parameters of type <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a></span><span class="tabEnd"> </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 </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/core/vo/query/Query.html" title="class in com.communote.server.core.vo.query">Query</a><R,I extends <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a>></span></code>
<div class="block">Abstract implementation for Communote queries.</div>
</td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation">
<caption><span>Subclasses of <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> in <a href="../../../../../../../com/communote/server/core/vo/query/package-summary.html">com.communote.server.core.vo.query</a></span><span class="tabEnd"> </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 </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/core/vo/query/PropertyQueryParameters.html" title="class in com.communote.server.core.vo.query">PropertyQueryParameters</a></span></code>
<div class="block">Abstract Query Parameter holding Property Filters</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/core/vo/query/TaggingCoreItemTimeLimitsQueryParameters.html" title="class in com.communote.server.core.vo.query">TaggingCoreItemTimeLimitsQueryParameters</a></span></code>
<div class="block">The instance for <a href="../../../../../../../com/communote/server/core/vo/query/TaggingCoreItemTimeLimitsQuery.html" title="class in com.communote.server.core.vo.query"><code>TaggingCoreItemTimeLimitsQuery</code></a>.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/core/vo/query/TimelineQueryParameters.html" title="class in com.communote.server.core.vo.query">TimelineQueryParameters</a></span></code>
<div class="block">The base instance for <code>CoreItemQueryDefinition</code> It defines filter attributes for getting
resources.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.communote.server.core.vo.query.blog">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> in <a href="../../../../../../../com/communote/server/core/vo/query/blog/package-summary.html">com.communote.server.core.vo.query.blog</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation">
<caption><span>Subclasses of <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> in <a href="../../../../../../../com/communote/server/core/vo/query/blog/package-summary.html">com.communote.server.core.vo.query.blog</a></span><span class="tabEnd"> </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 </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/core/vo/query/blog/BlogMemberManagementQueryParameters.html" title="class in com.communote.server.core.vo.query.blog">BlogMemberManagementQueryParameters</a></span></code>
<div class="block">Query instance to retrieve the blog member roles for a blog</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/core/vo/query/blog/BlogMemberQueryParameters.html" title="class in com.communote.server.core.vo.query.blog">BlogMemberQueryParameters</a></span></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/core/vo/query/blog/BlogQueryParameters.html" title="class in com.communote.server.core.vo.query.blog">BlogQueryParameters</a></span></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/core/vo/query/blog/TopicTimelineParameters.html" title="class in com.communote.server.core.vo.query.blog">TopicTimelineParameters</a></span></code>
<div class="block">Query instance to retrieve topics.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.communote.server.core.vo.query.blog.external">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> in <a href="../../../../../../../com/communote/server/core/vo/query/blog/external/package-summary.html">com.communote.server.core.vo.query.blog.external</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation">
<caption><span>Subclasses of <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> in <a href="../../../../../../../com/communote/server/core/vo/query/blog/external/package-summary.html">com.communote.server.core.vo.query.blog.external</a></span><span class="tabEnd"> </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 </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/core/vo/query/blog/external/ExternalObjectQueryParameters.html" title="class in com.communote.server.core.vo.query.blog.external">ExternalObjectQueryParameters</a></span></code>
<div class="block">Parameters for filtering for external objects</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.communote.server.core.vo.query.post">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> in <a href="../../../../../../../com/communote/server/core/vo/query/post/package-summary.html">com.communote.server.core.vo.query.post</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation">
<caption><span>Subclasses of <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> in <a href="../../../../../../../com/communote/server/core/vo/query/post/package-summary.html">com.communote.server.core.vo.query.post</a></span><span class="tabEnd"> </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 </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/core/vo/query/post/NoteQueryParameters.html" title="class in com.communote.server.core.vo.query.post">NoteQueryParameters</a></span></code>
<div class="block">Query instance to find notes</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.communote.server.core.vo.query.tag">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> in <a href="../../../../../../../com/communote/server/core/vo/query/tag/package-summary.html">com.communote.server.core.vo.query.tag</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation">
<caption><span>Subclasses of <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> in <a href="../../../../../../../com/communote/server/core/vo/query/tag/package-summary.html">com.communote.server.core.vo.query.tag</a></span><span class="tabEnd"> </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 </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/core/vo/query/tag/BlogTagQueryParameters.html" title="class in com.communote.server.core.vo.query.tag">BlogTagQueryParameters</a></span></code>
<div class="block">QueryInstance for getting tags of blogs.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/core/vo/query/tag/RankTagQueryParameters.html" title="class in com.communote.server.core.vo.query.tag">RankTagQueryParameters</a></span></code>
<div class="block">Query instance to find tags</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/core/vo/query/tag/TagQueryParameters.html" title="class in com.communote.server.core.vo.query.tag">TagQueryParameters</a></span></code>
<div class="block">Query instance to find tags.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/core/vo/query/tag/UserTagQueryParameters.html" title="class in com.communote.server.core.vo.query.tag">UserTagQueryParameters</a></span></code>
<div class="block">QueryInstance for getting tags of blogs.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.communote.server.core.vo.query.user">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> in <a href="../../../../../../../com/communote/server/core/vo/query/user/package-summary.html">com.communote.server.core.vo.query.user</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation">
<caption><span>Subclasses of <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> in <a href="../../../../../../../com/communote/server/core/vo/query/user/package-summary.html">com.communote.server.core.vo.query.user</a></span><span class="tabEnd"> </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 </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/core/vo/query/user/CommunoteEntityQueryParameters.html" title="class in com.communote.server.core.vo.query.user">CommunoteEntityQueryParameters</a></span></code>
<div class="block">The Class UserManagementQueryInstance.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/core/vo/query/user/UserManagementQueryParameters.html" title="class in com.communote.server.core.vo.query.user">UserManagementQueryParameters</a></span></code>
<div class="block">The Class UserManagementQueryInstance.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/core/vo/query/user/UserQueryParameters.html" title="class in com.communote.server.core.vo.query.user">UserQueryParameters</a></span></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/core/vo/query/user/UserTaggingCoreQueryParameters.html" title="class in com.communote.server.core.vo.query.user">UserTaggingCoreQueryParameters</a></span></code>
<div class="block">Query instance to find user tagged resources</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.communote.server.persistence.query">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> in <a href="../../../../../../../com/communote/server/persistence/query/package-summary.html">com.communote.server.persistence.query</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="../../../../../../../com/communote/server/persistence/query/package-summary.html">com.communote.server.persistence.query</a> with parameters of type <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../com/communote/common/util/PageableList.html" title="class in com.communote.common.util">PageableList</a></code></td>
<td class="colLast"><span class="typeNameLabel">QueryHelperDaoBase.</span><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/persistence/query/QueryHelperDaoBase.html#executeQuery-com.communote.server.core.vo.query.Query-com.communote.server.core.vo.query.QueryParameters-">executeQuery</a></span>(<a href="../../../../../../../com/communote/server/core/vo/query/Query.html" title="class in com.communote.server.core.vo.query">Query</a> query,
<a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> queryParameters)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../com/communote/common/util/PageableList.html" title="class in com.communote.common.util">PageableList</a></code></td>
<td class="colLast"><span class="typeNameLabel">QueryHelperDao.</span><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/persistence/query/QueryHelperDao.html#executeQuery-com.communote.server.core.vo.query.Query-com.communote.server.core.vo.query.QueryParameters-">executeQuery</a></span>(<a href="../../../../../../../com/communote/server/core/vo/query/Query.html" title="class in com.communote.server.core.vo.query">Query</a> query,
<a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> queryParameters)</code>
<div class="block">
execute the query definition</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../com/communote/common/util/PageableList.html" title="class in com.communote.common.util">PageableList</a></code></td>
<td class="colLast"><span class="typeNameLabel">QueryHelperDaoBase.</span><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/persistence/query/QueryHelperDaoBase.html#executeQuery-com.communote.server.core.vo.query.Query-com.communote.server.core.vo.query.QueryParameters-com.communote.server.core.vo.query.QueryResultConverter-com.communote.server.core.filter.ResultSpecification-">executeQuery</a></span>(<a href="../../../../../../../com/communote/server/core/vo/query/Query.html" title="class in com.communote.server.core.vo.query">Query</a> query,
<a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> queryParameters,
<a href="../../../../../../../com/communote/server/core/vo/query/QueryResultConverter.html" title="class in com.communote.server.core.vo.query">QueryResultConverter</a> resultConverter,
<a href="../../../../../../../com/communote/server/core/filter/ResultSpecification.html" title="class in com.communote.server.core.filter">ResultSpecification</a> resultSpecification)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../com/communote/common/util/PageableList.html" title="class in com.communote.common.util">PageableList</a></code></td>
<td class="colLast"><span class="typeNameLabel">QueryHelperDao.</span><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/persistence/query/QueryHelperDao.html#executeQuery-com.communote.server.core.vo.query.Query-com.communote.server.core.vo.query.QueryParameters-com.communote.server.core.vo.query.QueryResultConverter-com.communote.server.core.filter.ResultSpecification-">executeQuery</a></span>(<a href="../../../../../../../com/communote/server/core/vo/query/Query.html" title="class in com.communote.server.core.vo.query">Query</a> query,
<a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> queryParameters,
<a href="../../../../../../../com/communote/server/core/vo/query/QueryResultConverter.html" title="class in com.communote.server.core.vo.query">QueryResultConverter</a> resultConverter,
<a href="../../../../../../../com/communote/server/core/filter/ResultSpecification.html" title="class in com.communote.server.core.filter">ResultSpecification</a> resultSpecification)</code>
<div class="block">
execute the query definition and convert the result</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a></code></td>
<td class="colLast"><span class="typeNameLabel">QueryHelperDaoBase.</span><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/persistence/query/QueryHelperDaoBase.html#executeQueryComplete-com.communote.server.core.vo.query.Query-com.communote.server.core.vo.query.QueryParameters-">executeQueryComplete</a></span>(<a href="../../../../../../../com/communote/server/core/vo/query/Query.html" title="class in com.communote.server.core.vo.query">Query</a> query,
<a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> queryParameters)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a></code></td>
<td class="colLast"><span class="typeNameLabel">QueryHelperDao.</span><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/persistence/query/QueryHelperDao.html#executeQueryComplete-com.communote.server.core.vo.query.Query-com.communote.server.core.vo.query.QueryParameters-">executeQueryComplete</a></span>(<a href="../../../../../../../com/communote/server/core/vo/query/Query.html" title="class in com.communote.server.core.vo.query">Query</a> query,
<a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> queryParameters)</code>
<div class="block">
execute the query instance but not take of max counts or offset; retrieve the complete list</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected <a href="../../../../../../../com/communote/common/util/PageableList.html" title="class in com.communote.common.util">PageableList</a></code></td>
<td class="colLast"><span class="typeNameLabel">QueryHelperDaoImpl.</span><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/persistence/query/QueryHelperDaoImpl.html#handleExecuteQuery-com.communote.server.core.vo.query.Query-com.communote.server.core.vo.query.QueryParameters-">handleExecuteQuery</a></span>(<a href="../../../../../../../com/communote/server/core/vo/query/Query.html" title="class in com.communote.server.core.vo.query">Query</a> query,
<a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> queryParameters)</code>
<div class="block">Performs the core logic for
<a href="../../../../../../../com/communote/server/persistence/query/QueryHelperDaoBase.html#executeQuery-com.communote.server.core.vo.query.Query-com.communote.server.core.vo.query.QueryParameters-"><code>QueryHelperDaoBase.executeQuery(com.communote.server.core.vo.query.Query, com.communote.server.core.vo.query.QueryParameters)</code></a></div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected abstract <a href="../../../../../../../com/communote/common/util/PageableList.html" title="class in com.communote.common.util">PageableList</a></code></td>
<td class="colLast"><span class="typeNameLabel">QueryHelperDaoBase.</span><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/persistence/query/QueryHelperDaoBase.html#handleExecuteQuery-com.communote.server.core.vo.query.Query-com.communote.server.core.vo.query.QueryParameters-">handleExecuteQuery</a></span>(<a href="../../../../../../../com/communote/server/core/vo/query/Query.html" title="class in com.communote.server.core.vo.query">Query</a> query,
<a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> queryParameters)</code>
<div class="block">Performs the core logic for
<a href="../../../../../../../com/communote/server/persistence/query/QueryHelperDaoBase.html#executeQuery-com.communote.server.core.vo.query.Query-com.communote.server.core.vo.query.QueryParameters-"><code>QueryHelperDaoBase.executeQuery(com.communote.server.core.vo.query.Query, com.communote.server.core.vo.query.QueryParameters)</code></a></div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected <a href="../../../../../../../com/communote/common/util/PageableList.html" title="class in com.communote.common.util">PageableList</a></code></td>
<td class="colLast"><span class="typeNameLabel">QueryHelperDaoImpl.</span><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/persistence/query/QueryHelperDaoImpl.html#handleExecuteQuery-com.communote.server.core.vo.query.Query-com.communote.server.core.vo.query.QueryParameters-com.communote.server.core.vo.query.QueryResultConverter-com.communote.server.core.filter.ResultSpecification-">handleExecuteQuery</a></span>(<a href="../../../../../../../com/communote/server/core/vo/query/Query.html" title="class in com.communote.server.core.vo.query">Query</a> query,
<a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> queryParameters,
<a href="../../../../../../../com/communote/server/core/vo/query/QueryResultConverter.html" title="class in com.communote.server.core.vo.query">QueryResultConverter</a> resultConverter,
<a href="../../../../../../../com/communote/server/core/filter/ResultSpecification.html" title="class in com.communote.server.core.filter">ResultSpecification</a> resultSpecification)</code>
<div class="block">Performs the core logic for
<a href="../../../../../../../com/communote/server/persistence/query/QueryHelperDaoBase.html#executeQuery-com.communote.server.core.vo.query.Query-com.communote.server.core.vo.query.QueryParameters-com.communote.server.core.vo.query.QueryResultConverter-com.communote.server.core.filter.ResultSpecification-"><code>QueryHelperDaoBase.executeQuery(com.communote.server.core.vo.query.Query, com.communote.server.core.vo.query.QueryParameters, com.communote.server.core.vo.query.QueryResultConverter, com.communote.server.core.filter.ResultSpecification)</code></a></div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected abstract <a href="../../../../../../../com/communote/common/util/PageableList.html" title="class in com.communote.common.util">PageableList</a></code></td>
<td class="colLast"><span class="typeNameLabel">QueryHelperDaoBase.</span><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/persistence/query/QueryHelperDaoBase.html#handleExecuteQuery-com.communote.server.core.vo.query.Query-com.communote.server.core.vo.query.QueryParameters-com.communote.server.core.vo.query.QueryResultConverter-com.communote.server.core.filter.ResultSpecification-">handleExecuteQuery</a></span>(<a href="../../../../../../../com/communote/server/core/vo/query/Query.html" title="class in com.communote.server.core.vo.query">Query</a> query,
<a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> queryParameters,
<a href="../../../../../../../com/communote/server/core/vo/query/QueryResultConverter.html" title="class in com.communote.server.core.vo.query">QueryResultConverter</a> resultConverter,
<a href="../../../../../../../com/communote/server/core/filter/ResultSpecification.html" title="class in com.communote.server.core.filter">ResultSpecification</a> resultSpecification)</code>
<div class="block">Performs the core logic for
<a href="../../../../../../../com/communote/server/persistence/query/QueryHelperDaoBase.html#executeQuery-com.communote.server.core.vo.query.Query-com.communote.server.core.vo.query.QueryParameters-com.communote.server.core.vo.query.QueryResultConverter-com.communote.server.core.filter.ResultSpecification-"><code>QueryHelperDaoBase.executeQuery(com.communote.server.core.vo.query.Query, com.communote.server.core.vo.query.QueryParameters, com.communote.server.core.vo.query.QueryResultConverter, com.communote.server.core.filter.ResultSpecification)</code></a></div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected <a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a></code></td>
<td class="colLast"><span class="typeNameLabel">QueryHelperDaoImpl.</span><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/persistence/query/QueryHelperDaoImpl.html#handleExecuteQueryComplete-com.communote.server.core.vo.query.Query-com.communote.server.core.vo.query.QueryParameters-">handleExecuteQueryComplete</a></span>(<a href="../../../../../../../com/communote/server/core/vo/query/Query.html" title="class in com.communote.server.core.vo.query">Query</a> query,
<a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> queryInstance)</code>
<div class="block">Performs the core logic for
<a href="../../../../../../../com/communote/server/persistence/query/QueryHelperDaoBase.html#executeQueryComplete-com.communote.server.core.vo.query.Query-com.communote.server.core.vo.query.QueryParameters-"><code>QueryHelperDaoBase.executeQueryComplete(com.communote.server.core.vo.query.Query, com.communote.server.core.vo.query.QueryParameters)</code></a></div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected abstract <a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a></code></td>
<td class="colLast"><span class="typeNameLabel">QueryHelperDaoBase.</span><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/persistence/query/QueryHelperDaoBase.html#handleExecuteQueryComplete-com.communote.server.core.vo.query.Query-com.communote.server.core.vo.query.QueryParameters-">handleExecuteQueryComplete</a></span>(<a href="../../../../../../../com/communote/server/core/vo/query/Query.html" title="class in com.communote.server.core.vo.query">Query</a> query,
<a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> queryParameters)</code>
<div class="block">Performs the core logic for
<a href="../../../../../../../com/communote/server/persistence/query/QueryHelperDaoBase.html#executeQueryComplete-com.communote.server.core.vo.query.Query-com.communote.server.core.vo.query.QueryParameters-"><code>QueryHelperDaoBase.executeQueryComplete(com.communote.server.core.vo.query.Query, com.communote.server.core.vo.query.QueryParameters)</code></a></div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.communote.server.web.fe.portal.blog.helper">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> in <a href="../../../../../../../com/communote/server/web/fe/portal/blog/helper/package-summary.html">com.communote.server.web.fe.portal.blog.helper</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="../../../../../../../com/communote/server/web/fe/portal/blog/helper/package-summary.html">com.communote.server.web.fe.portal.blog.helper</a> with type parameters of type <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static <E extends <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a>><br><a href="../../../../../../../com/communote/common/util/PageableList.html" title="class in com.communote.common.util">PageableList</a><<a href="../../../../../../../com/communote/server/api/core/blog/BlogData.html" title="class in com.communote.server.api.core.blog">BlogData</a>></code></td>
<td class="colLast"><span class="typeNameLabel">BlogSearchHelper.</span><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/web/fe/portal/blog/helper/BlogSearchHelper.html#findBlogs-com.communote.server.core.vo.query.Query-E-boolean-">findBlogs</a></span>(<a href="../../../../../../../com/communote/server/core/vo/query/Query.html" title="class in com.communote.server.core.vo.query">Query</a><<a href="../../../../../../../com/communote/server/api/core/blog/BlogData.html" title="class in com.communote.server.api.core.blog">BlogData</a>,E> query,
E queryParameters,
boolean sortAndLocalizeResult)</code>
<div class="block">runs a query for blogs</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.communote.server.web.fe.widgets">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> in <a href="../../../../../../../com/communote/server/web/fe/widgets/package-summary.html">com.communote.server.web.fe.widgets</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="../../../../../../../com/communote/server/web/fe/widgets/package-summary.html">com.communote.server.web.fe.widgets</a> with parameters of type <a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><span class="typeNameLabel">AbstractPagedListWidget.</span><code><span class="memberNameLink"><a href="../../../../../../../com/communote/server/web/fe/widgets/AbstractPagedListWidget.html#setPageInformation-com.communote.server.core.vo.query.QueryParameters-com.communote.common.util.PageableList-">setPageInformation</a></span>(<a href="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">QueryParameters</a> queryParameters,
<a href="../../../../../../../com/communote/common/util/PageableList.html" title="class in com.communote.common.util">PageableList</a><? extends <a href="../../../../../../../com/communote/server/api/core/common/IdentifiableEntityData.html" title="class in com.communote.server.api.core.common">IdentifiableEntityData</a>> result)</code>
<div class="block">Set the Page Information</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="../../../../../../../com/communote/server/core/vo/query/QueryParameters.html" title="class in com.communote.server.core.vo.query">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?com/communote/server/core/vo/query/class-use/QueryParameters.html" target="_top">Frames</a></li>
<li><a href="QueryParameters.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 © 2019 <a href="https://communote.github.io/">Communote team</a>. All rights reserved.</small></p>
</body>
</html>
|
target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_09_testAbaNumberCheck_19294_bad_8yx.html | dcarda/aba.route.validator | <!DOCTYPE html>
<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"/>
<link rel="SHORTCUT ICON" href="../../../../../img/clover.ico" />
<link rel="stylesheet" href="../../../../../aui/css/aui.min.css" media="all"/>
<link rel="stylesheet" href="../../../../../aui/css/aui-experimental.min.css" media="all"/>
<!--[if IE 9]><link rel="stylesheet" href="../../../../../aui/css/aui-ie9.min.css" media="all"/><![endif]-->
<style type="text/css" media="all">
@import url('../../../../../style.css');
@import url('../../../../../tree.css');
</style>
<script src="../../../../../jquery-1.8.3.min.js" type="text/javascript"></script>
<script src="../../../../../aui/js/aui.min.js" type="text/javascript"></script>
<script src="../../../../../aui/js/aui-experimental.min.js" type="text/javascript"></script>
<script src="../../../../../aui/js/aui-soy.min.js" type="text/javascript"></script>
<script src="../../../../../package-nodes-tree.js" type="text/javascript"></script>
<script src="../../../../../clover-tree.js" type="text/javascript"></script>
<script src="../../../../../clover.js" type="text/javascript"></script>
<script src="../../../../../clover-descriptions.js" type="text/javascript"></script>
<script src="../../../../../cloud.js" type="text/javascript"></script>
<title>ABA Route Transit Number Validator 1.0.1-SNAPSHOT</title>
</head>
<body>
<div id="page">
<header id="header" role="banner">
<nav class="aui-header aui-dropdown2-trigger-group" role="navigation">
<div class="aui-header-inner">
<div class="aui-header-primary">
<h1 id="logo" class="aui-header-logo aui-header-logo-clover">
<a href="http://openclover.org" title="Visit OpenClover home page"><span class="aui-header-logo-device">OpenClover</span></a>
</h1>
</div>
<div class="aui-header-secondary">
<ul class="aui-nav">
<li id="system-help-menu">
<a class="aui-nav-link" title="Open online documentation" target="_blank"
href="http://openclover.org/documentation">
<span class="aui-icon aui-icon-small aui-iconfont-help"> Help</span>
</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<div class="aui-page-panel">
<div class="aui-page-panel-inner">
<div class="aui-page-panel-nav aui-page-panel-nav-clover">
<div class="aui-page-header-inner" style="margin-bottom: 20px;">
<div class="aui-page-header-image">
<a href="http://cardatechnologies.com" target="_top">
<div class="aui-avatar aui-avatar-large aui-avatar-project">
<div class="aui-avatar-inner">
<img src="../../../../../img/clover_logo_large.png" alt="Clover icon"/>
</div>
</div>
</a>
</div>
<div class="aui-page-header-main" >
<h1>
<a href="http://cardatechnologies.com" target="_top">
ABA Route Transit Number Validator 1.0.1-SNAPSHOT
</a>
</h1>
</div>
</div>
<nav class="aui-navgroup aui-navgroup-vertical">
<div class="aui-navgroup-inner">
<ul class="aui-nav">
<li class="">
<a href="../../../../../dashboard.html">Project overview</a>
</li>
</ul>
<div class="aui-nav-heading packages-nav-heading">
<strong>Packages</strong>
</div>
<div class="aui-nav project-packages">
<form method="get" action="#" class="aui package-filter-container">
<input type="text" autocomplete="off" class="package-filter text"
placeholder="Type to filter packages..." name="package-filter" id="package-filter"
title="Start typing package name (or part of the name) to search through the tree. Use arrow keys and the Enter key to navigate."/>
</form>
<p class="package-filter-no-results-message hidden">
<small>No results found.</small>
</p>
<div class="packages-tree-wrapper" data-root-relative="../../../../../" data-package-name="com.cardatechnologies.utils.validators.abaroutevalidator">
<div class="packages-tree-container"></div>
<div class="clover-packages-lozenges"></div>
</div>
</div>
</div>
</nav> </div>
<section class="aui-page-panel-content">
<div class="aui-page-panel-content-clover">
<div class="aui-page-header-main"><ol class="aui-nav aui-nav-breadcrumbs">
<li><a href="../../../../../dashboard.html"> Project Clover database Sat Aug 7 2021 12:29:33 MDT</a></li>
<li><a href="test-pkg-summary.html">Package com.cardatechnologies.utils.validators.abaroutevalidator</a></li>
<li><a href="test-Test_AbaRouteValidator_09.html">Class Test_AbaRouteValidator_09</a></li>
</ol></div>
<h1 class="aui-h2-clover">
Test testAbaNumberCheck_19294_bad
</h1>
<table class="aui">
<thead>
<tr>
<th>Test</th>
<th><label title="The test result. Either a Pass, Fail or Error.">Status</label></th>
<th><label title="When the test execution was started">Start time</label></th>
<th><label title="The total time in seconds taken to run this test.">Time (seconds)</label></th>
<th><label title="A failure or error message if the test is not successful.">Message</label></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_09.html?line=39307#src-39307" >testAbaNumberCheck_19294_bad</a>
</td>
<td>
<span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span>
</td>
<td>
7 Aug 12:39:01
</td>
<td>
0.0 </td>
<td>
<div></div>
<div class="errorMessage"></div>
</td>
</tr>
</tbody>
</table>
<div> </div>
<table class="aui aui-table-sortable">
<thead>
<tr>
<th style="white-space:nowrap;"><label title="A class that was directly hit by this test.">Target Class</label></th>
<th colspan="4"><label title="The percentage of coverage contributed by each single test.">Coverage contributed by</label> testAbaNumberCheck_19294_bad</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.exceptions.AbaRouteValidationException</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/exceptions/AbaRouteValidationException.html?id=11625#AbaRouteValidationException" title="AbaRouteValidationException" name="sl-43">com.cardatechnologies.utils.validators.abaroutevalidator.exceptions.AbaRouteValidationException</a>
</td>
<td>
<span class="sortValue">0.5714286</span>57.1%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="57.1% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:57.1%"></div></div></div> </td>
</tr>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.ErrorCodes</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/ErrorCodes.html?id=11625#ErrorCodes" title="ErrorCodes" name="sl-42">com.cardatechnologies.utils.validators.abaroutevalidator.ErrorCodes</a>
</td>
<td>
<span class="sortValue">0.5714286</span>57.1%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="57.1% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:57.1%"></div></div></div> </td>
</tr>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=11625#AbaRouteValidator" title="AbaRouteValidator" name="sl-47">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</a>
</td>
<td>
<span class="sortValue">0.29411766</span>29.4%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="29.4% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:29.4%"></div></div></div> </td>
</tr>
</tbody>
</table>
</div> <!-- class="aui-page-panel-content-clover" -->
<footer id="footer" role="contentinfo">
<section class="footer-body">
<ul>
<li>
Report generated by <a target="_new" href="http://openclover.org">OpenClover</a> v 4.4.1
on Sat Aug 7 2021 12:49:26 MDT using coverage data from Sat Aug 7 2021 12:47:23 MDT.
</li>
</ul>
<ul>
<li>OpenClover is free and open-source software. </li>
</ul>
</section>
</footer> </section> <!-- class="aui-page-panel-content" -->
</div> <!-- class="aui-page-panel-inner" -->
</div> <!-- class="aui-page-panel" -->
</div> <!-- id="page" -->
</body>
</html> |
index.html | somamo/kitahub-page | <!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Kitahub</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="google-site-verification" content="Iz8SwxACXNfAcKT6LAdXrXDfsOHfhFTUem_3BPDJAXI" />
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="assets/css/normalize.css" media="screen">
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="assets/css/styles.css">
<link rel="stylesheet" type="text/css" href="assets/css/github-light.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="/assets/js/bootstrap.js"></script>
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top header">
<div class="container">
<div class="navbar-header header-logo">
<a class="navbar-brand logo-position" href="index.html">
<img alt="Brand" src="assets/img/kitahub-logo.png" class="logo">
</a>
</div>
<ul class="nav navbar-nav navbar-right header-links">
<li><a href="#contact">Kontakt</a></li>
</ul>
</div>
</nav>
<div class="jumbotron img-area">
<img alt="Kitaplatz-Vergabeprozess" src="assets/img/kitaanmeldung.svg" class="main-graphic">
</div>
<div class="container text-area">
<div class="row">
<div class="col-md-4">
<img alt="Brand" src="assets/img/kitahub-logo.png" class="logo-m">
</div>
<div class="col-md-8 kitahub-profil">
<p>Kitahub ist eine soziale Initiative aus Eltern und Software Entwicklern mit dem Ziel gemeinsam mit Kitas einen Online-Dienst für die Vergabe von Betreuungsplätzen zu entwickeln.</p>
</div>
</div>
<div class="row">
<div class="col-md-4">
<h3 class="hl">
<a id="innovativer-onlinedienst" class="anchor" href="#innovativer-onlinedienst" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Innovativer Onlinedienst
</h3>
<p>Mit unserer Hilfe können Kitaleiter Ihr Anmeldeverfahren stark vereinfachen. Ein gemeinsam mit Kitas entwickelter Online-Service erlaubt es den bürokratischen Aufwand zu reduzieren und die Kommunikation mit den Bewerbern zu verbessern. </p>
</div>
<div class="col-md-4">
<h3 class="hl">
<a id="effizientes-verfahren" class="anchor" href="#effizientes-verfahren" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Effizientes Verfahren
</h3>
<p>Mit einer stadtweiten Anmeldung helfen wir Eltern sich nur einmal zentral anmelden zu müssen. Dadurch können Kitas bei der Vergabe von Plätzen besser auf die Bedürfnisse aller Eltern eingehen. Außerdem erhöht sich die Übersichtlichkeit, da bereits bei einer anderen Kita angenommene Bewerber automatisch von der Liste verschwinden. </p>
</div>
<div class="col-md-4">
<h3 class="hl">
<a id="transparenz-für-alle" class="anchor" href="#transparenz-f%C3%BCr-alle" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Transparenz für alle
</h3>
<p>Durch die Einbeziehung der Eltern in die Entwicklung wird eine hohe Zufriedenheit auf beiden Seiten gewährleistet. Die Vergabe der Kitaplätze kann durch die Eltern besser nachvollzogen werden. Die Kitas bekommen einen Überblick über die tatsächliche Nachfrage und der tatsächliche Bedarf in der Stadt wird transparent gemacht. </p>
</div>
</div>
</div>
<div class="container text-area" id="contact">
<hr>
<div class="row text-center">
<h1 class="hl-contact">Kontakt</h1>
<p>Katharina Ehrhardt</p>
<p>Telefon: 0331 2737 9412 </br> Mobil: 0176 3140 6751</p>
<p>Email: info@kitahub.de</p>
<p>Große Weinmeisterstr. 63 B</br> 14469 Potsdam</p>
</div>
</div>
<div class="container">
<div class="footer">
<p>© Katharina Ehrhardt. All Rights Reserved.</p>
<p>Impressum: Katharina Ehrhardt, Große Weinmeisterstr. 63 B, 14469 Potsdam</p>
<p>Externe Verweise: Für die Inhalte fremder Internetseiten, die durch Links auf meiner Seiten erreicht werden, übernehme ich keine Haftung.</p>
<p>Datenschutz: Kontaktdaten, die im Rahmen von Anfragen angegeben werden, werden ausschließlich für die Korrespondenz verwendet.</p>
</div>
</div>
</body>
</html>
|
floatz.dev.kit/templates/layout.010.fixed/index.html | floatzcss/floatz | <!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>floatz - Layout.010</title>
<meta http-equiv="content-type" content="text/html; CHARSET=utf-8" />
<meta http-equiv="content-script-type" content="text/javascript" />
<meta http-equiv="content-style-type" content="text/css" />
<meta http-equiv="content-language" content="en" />
<meta name="author" content="" />
<meta name="robots" content="index,follow" />
<meta name="description" content="" />
<link rel="stylesheet" type="text/css" href="styles/project.css" />
<!--[if lte IE 6]>
<link rel="stylesheet" type="text/css" href="styles/floatz-1.4.0/floatz.liquid.ie-lte6.css" />
<![endif]-->
<!--[if IE 7]>
<link rel="stylesheet" type="text/css" href="styles/floatz-1.4.0/floatz.liquid.ie-7.css" />
<![endif]-->
<!--[if IE 8]>
<link rel="stylesheet" type="text/css" href="styles/floatz-1.4.0/floatz.liquid.ie-8.css" />
<![endif]-->
<!--[if IE 9]>
<link rel="stylesheet" type="text/css" href="styles/floatz-1.4.0/floatz.liquid.ie-9.css" />
<![endif]-->
<script type="text/javascript" src="styles/floatz-1.4.0/scripts/LAB-2.0.3.min.js"></script>
<script type="text/javascript" src="scripts/project.js"></script>
</head>
<body>
<!-- page -->
<div id="flz_page">
<!-- skiplinks -->
<div class="flz_skipnav">
<a class="flz_skiplink" href="#menu">Skip to menu</a> <a
class="flz_skiplink" href="#content">Skip to content</a>
</div>
<!-- header -->
<div class="flz_box header">
<div class="flz_spacer">
<img src="images/logo.jpg" alt="Goto homepage" />
<!-- meta navigation -->
<ul class="flz_listnav flz_topnav">
<li class="flz_selected"><a href="#">Meta 1</a> |</li>
<li><a href="#">Meta 2</a> |</li>
<li><a href="#">Meta 3</a> |</li>
<li><a href="#">Meta 4</a></li>
</ul>
</div>
</div>
<!-- menu -->
<div class="flz_box menu">
<a id="menu" class="flz_anchor"></a>
<div class="flz_box flz_hmenu">
<ul>
<li class="flz_selected"><a href="#">Menu 1</a></li>
<li><a href="#">Menu 2</a></li>
<li><a href="#">Menu 3</a></li>
<li><a href="#">Menu 4</a></li>
</ul>
</div>
</div>
<!-- content -->
<div class="flz_box flz_relative content">
<a id="content" class="flz_anchor"></a>
<!-- breadcrumb -->
<ul class="flz_listnav flz_breadcrumb">
<li class="flz_selected"><a href="#">Item 1</a> ></li>
<li><a href="#">Item 2</a> ></li>
<li><a href="#">Item 3</a> ></li>
<li><a href="#">Item 4</a></li>
</ul>
<!-- article -->
<div class="flz_spacer">
<h1>Page Title</h1>
<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed
diam nonumy eirmod tempor invidunt ut labore et dolore magna
aliquyam erat, sed diam voluptua. At vero eos et accusam et justo
duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata
sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,
consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt
ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero
eos et accusam et justo duo dolores et ea rebum. Stet clita kasd
gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
</p>
</div>
</div>
<!-- footer -->
<div class="flz_box flz_r100 footer">
<div class="flz_spacer">
Copyright © 2008-2010 by <a href="http://design.humml.eu">:hummldesign</a>.
Layout based on <a href="http://code.google.com/p/floatz">floatz</a>.
</div>
</div>
</div>
</body>
</html>
|
src/asserts/css/main.css | datht-gh/shoppingCart |
html {
color: #222;
/*font-size: 1em;*/
line-height: 1.4;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
height: 100%;
width: 100%;
}
body {
margin: 0;
background: white;
}
.main{
width: 100%;
}
.shop-header{
height: 100px;
background-color: tomato;
margin-bottom:10px;
border-bottom: 1px solid #de252f;
-webkit-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
position: fixed;
width: 100%;
z-index: 9999;
}
.shop-header .head{
width: 100%;height:25px;background-color:#222222;
}
.shop-header .container a{
margin-left: 40px;
margin-right:30px;
color: #fff;
line-height: 1.8em;
}
.shop-header .myCart{
margin-top:8px;
margin-right:30px;
}
.shop-header .navbar-brand{
margin-left: 20px;
}
.shop-slider{
padding:105px 32px 10px 42px;
}
.shop-slider .shop-breadcrumb{
margin-bottom:10px;
margin-top:10px;
}
.shop-slider li{
margin-left: -40px;
}
.shop-content.no-slider {
padding-top:120px;
height: auto;
min-height:600px;
}
.col-sm-3.shop-item{
}
.shop-item{
padding-top: 10px;
padding-bottom: 10px;
}
.shop-item .thumbnail{
cursor: pointer;
border: 1px solid #ddd;
border-radius: .25rem;
-webkit-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
padding: 8px 2px 3px 2px;
}
.shop-item .shop-img{
width: 100%;
}
.shop-item .caption{
padding:5px 2px 4px 2px;
line-height: 1.3em;
height: 80px;
}
.shop-item .caption h4{
font-size:18px;
}
.shop-item .caption p strong{
color: darkred;
}
.shop-item .shop-to-cart{
bottom: 0;
right: 0;
margin-top: -10px;
}
.to-right{
float: right;
}
.shop-product .price{
font-size:24px;
color: red;
font-weight: bold;
}
.shop-product .description{
font-size:14px;
color: #687077;
}
.shop-product .action{
margin-top: 20px;
}
.shop-details{
margin-top:120px;
}
footer{
margin-top:40px;
height:50px;
padding:10px 5px 10px 5px;
bottom: 0;
}
.navbar-brand img{
width:230px;
}
@media (min-width:500px)and (max-width:800px){
.navbar-brand img{
width:160px;
}
.shop-header .head{
height:50px;
font-size:12px;
}
.shop-header {
height:120px;
}
.shop-content.no-slider {
padding-top:140px;
}
}
@media (max-width:500px ){
.navbar-default .container{
width:100%;
}
.shop-header {
height:90px;
}
.navbar-brand img{
width:130px;
}
.shop-header .head{
height:40px;
font-size:11px;
}
.shop-header .myCart{
margin-left: 0px;
padding:4px 2px 4px 2px;
font-size:14px;
}
}
.form-control{
border-width: 1px;
border-color: slategrey;
} |
javadoc/com/box/boxjavalibv2/javafxoauth/package-summary.html | ElectroJunkie/box-java-sdk-v2-master | <!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_11) on Fri Jan 24 10:09:05 PST 2014 -->
<title>com.box.boxjavalibv2.javafxoauth</title>
<meta name="date" content="2014-01-24">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="com.box.boxjavalibv2.javafxoauth";
}
//-->
</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-use.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../com/box/boxjavalibv2/interfaces/package-summary.html">Prev Package</a></li>
<li><a href="../../../../com/box/boxjavalibv2/javafxoauth/sample/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?com/box/boxjavalibv2/javafxoauth/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 com.box.boxjavalibv2.javafxoauth</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"> </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="../../../../com/box/boxjavalibv2/javafxoauth/JavaFxOAuthFlow.html" title="class in com.box.boxjavalibv2.javafxoauth">JavaFxOAuthFlow</a></td>
<td class="colLast">
<div class="block">Java OAuth UI running on javafx.</div>
</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-use.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../com/box/boxjavalibv2/interfaces/package-summary.html">Prev Package</a></li>
<li><a href="../../../../com/box/boxjavalibv2/javafxoauth/sample/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?com/box/boxjavalibv2/javafxoauth/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>
|
src/main/webapp/css/common/index.css | jiangzq1023/simple-security | #loading{width:100%; height:100%; margin:0; position:absolute; z-index:7;text-align:center; padding:0; display:none}
#loading .loading-bg{width:100%; height:100%; background:#fff; position:absolute; z-index:8; -moz-opacity:0.8;-khtml-opacity: 0.8;opacity: 0.8;}
#loading img{position:absolute; z-index:9; left:44%; top:260px;}
#loading .loading-modal{left:30%; top:140px}
.navbar .brand {
float: left;
display: block;
padding: 2px 20px 2px;
margin-left: -20px;
font-size: 20px;
font-weight: 200;
line-height: 1;
color: #f5f5f5;
}
.navbar .navbar-text {
margin-bottom: 0;
line-height: 40px;
}
.navbar .navbar-link {
color: #f5f5f5;
}
.navbar .navbar-link:hover {
color: #ffffff;
}
.navbar .dropdown-menu:after {
content: '';
display: inline-block;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 6px solid #ffffff;
position: absolute;
top: -6px;
left: 10px;
}
.navbar-fixed-bottom .dropdown-menu:before {
border-top: 7px solid #ccc;
border-top-color: rgba(0, 0, 0, 0.2);
border-bottom: 0;
bottom: -7px;
top: auto;
}
.navbar-fixed-bottom .dropdown-menu:after {
border-top: 6px solid #ffffff;
border-bottom: 0;
bottom: -6px;
top: auto;
}
.navbar .pull-right .dropdown-menu,
.navbar .dropdown-menu.pull-right {
left: auto;
right: 0;
top:38px;
}
.navbar .pull-right .dropdown-menu:before,
.navbar .dropdown-menu.pull-right:before {
left: auto;
right: 12px;
}
.navbar .pull-right .dropdown-menu:after,
.navbar .dropdown-menu.pull-right:after {
left: auto;
right: 13px;
}
.sidebar-nav{
min-height:0;
box-shadow: 0 0 10px #BDBDBD;
-webkit-box-shadow: 0 0 10px #BDBDBD;
-moz-box-shadow: 0 0 10px #BDBDBD;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
margin-bottom: 0;
padding-bottom:0;
}
.sidebar-nav > ul > li:not(.nav-header){
margin-right:-2px;
margin-left:-2px;
}
.breadcrumb {
padding: 7px 14px;
margin: 0 0 18px;
list-style: none;
background-color: #fbfbfb;
background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5));
background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
background-image: linear-gradient(top, #ffffff, #f5f5f5);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
border: 1px solid #ddd;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset 0 1px 0 #ffffff;
-moz-box-shadow: inset 0 1px 0 #ffffff;
box-shadow: inset 0 1px 0 #ffffff;
}
.navbar .navbar-inner {
background-color: #3f9fd9;
}
.navbar-inner{
background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,0.15) 50%, rgba(30,30,30,0) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(50%,rgba(0,0,0,0.15)), color-stop(100%,rgba(30,30,30,0)));
background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(0,0,0,0.15) 50%,rgba(30,30,30,0) 100%);
background: -o-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(0,0,0,0.15) 50%,rgba(30,30,30,0) 100%);
background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(0,0,0,0.15) 50%,rgba(30,30,30,0) 100%);
background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(0,0,0,0.15) 50%,rgba(30,30,30,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#001e1e1e',GradientType=0 );
}
.navbar .nav li.dropdown.active > .dropdown-toggle,
.navbar .nav li.dropdown.active.open > .dropdown-toggle {
background-color: rgba(0, 0, 0, 0.2);
}
.hide {
display: none;
}
.show {
display: block;
}
footer{
clear:both;
margin-top:30px;
}
footer .pull-right{
float:right;
margin-right:10px;
}
footer .pull-left{
float:left;
margin-left:10px;
}
.pull-left{
float:left !important;
}
.pull-right{
float:right !important;
}
.box{
border: 1px solid #DEDEDE;
border-radius:3px;
-webkit-border-radius:3px;
-moz-border-radius:3px;
margin-top: 10px;
margin-bottom: 10px ;
box-shadow: 0 0 10px rgba(189, 189, 189, 0.4);
-webkit-box-shadow: 0 0 10px rgba(189, 189, 189, 0.4);
-moz-box-shadow: 0 0 10px rgba(189, 189, 189, 0.4);
}
.box-header{
border:none;
padding-top:5px;
border-bottom: 1px solid #DEDEDE;
border-radius:3px 3px 0 0;
-webkit-border-radius:3px 3px 0 0;
-moz-border-radius:3px 3px 0 0;
height:12px;
min-height:12px;
margin-bottom: 0;
cursor:move;
font-weight:bold;
font-size:16px;
background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,0.1) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(100%,rgba(0,0,0,0.1)));
background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(0,0,0,0.1) 100%);
background: -o-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(0,0,0,0.1) 100%);
background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(0,0,0,0.1) 100%);
background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(0,0,0,0.1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#1a000000',GradientType=0 );
}
.box-header h2{
font-size:14px;
width:auto;
clear:none;
float:left;
padding:0;
margin:0;
line-height:26px;
}
.box-header h3{
font-size:13px;
width:auto;
clear:none;
float:left;
line-height:25px;
}
.box-header h2 > i{
margin-top:1px;
}
.box-icon{
float:right;
}
.box-icon a{
clear:none;
float:left;
margin:0 2px;
height: 18px;
width:5px;
margin-top: -1px;
}
.box-icon a i{
margin-left:-4.5px;
}
.box-content{
padding:10px;
}
.btn-round{
border-radius: 40px;
-webkit-border-radius: 40px;
-moz-border-radius: 40px;
font-size:12px;
padding-top:4px;
}
.box-content{
padding:10px;
}
.icon-white {
background-image: url("../../img/glyphicons-halflings-white.png");
}
.icon-chevron-up {
background-position: -288px -120px;
}
.icon-chevron-down {
background-position: -313px -119px;
}
.btn {
}
.btn:hover {
background-position: 0 0;
}
.sidebar-nav {padding: 9px 0; }
.icon2{ background:url(../../img/hp_icon.png) no-repeat; width:16px; height:16px;}
.icon2-down{ background-position:0px 0px;float: right;margin-top: 7px;margin-right: 6px;opacity: .25;}
.icon2-up{ background-position:-16px 0px;float: right;margin-top: 7px;margin-right: 6px;opacity: .25;}
.icon2-right{ background-position:-64px 0px;float:left;margin-top:7px;margin-left: 2px; margin-right:2px;opacity: .25;}
.icon2-left{ background-position:-80px 0px;float: right;margin-top: 7px;margin-right: 6px;opacity: .25;}
.icon2-jian{background-position:-32px top;float: left;margin-top:11px;margin-left: 6px;opacity: .25; margin-right:6px;}
.icon2-jia{background-position:-48px top;float: left;margin-top:11px;margin-left: 6px;opacity: .25; margin-right:6px;}
.icon2-no{float: left;margin-top:7px;margin-left: 6px;opacity: .25; margin-right:4px; width:16px; display:block;}
.icon2-space{}
.no-radius{-webkit-border-radius: 0 0 0 0;-moz-border-radius: 0 0 0 0x; border-radius:0 0 0 0; margin-bottom:0; color:#999;}
.hidden-tablet{ color:#666;border-bottom:1px solid #dddddd;}
.three-font{ color:#999}
.ajax-link{ background:#F5f5f5}
.three-bg{ background:#fcfcfc; display:none;}
.main-menu{ margin-bottom:0;}
.dibu{overflow:hidden; padding-top:10px;}
.pull-right{ padding-top:4px;}
.setting{ position:absolute; right:6px; top:6px; background:#c8c8c8 url(../../img/glyphicons-halflings.png) no-repeat -358px bottom; width:20px; height:20px;
filter:alpha(opacity=30);
-moz-opacity:0.3;
-khtml-opacity: 0.3;
opacity: 0.3;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
cursor:pointer;
}
.setting-re{border:1px solid #CCC;
width:18px; height:18px;
filter:alpha(opacity=80);
-moz-opacity:0.8;
-khtml-opacity: 0.8;
opacity: 0.8;
cursor:pointer;}
.right-menu{position:absolute;left:93%; top:4px;background:#FFF;
z-index: 1000;
list-style: none;
min-width:100px;
display:none;
background-color: white;
border: 1px solid #CCC;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
cursor:pointer;
padding-top:6px; padding-bottom:6px;
}
.right-menu .divider2 {
height: 1px;
margin: 9px 1px;
overflow: hidden;
background-color: #E5E5E5;
border-bottom: 1px solid white;
display:block}
.right-menu li a{ display:block; height:100%; padding:5px; padding-top:2px; padding-bottom:2px;}
.right-menu li a:hover{ background:#007dc1; color:#FFF; text-decoration:none}
.right-menu:after {
content: '';
display: inline-block;
border-top: 6px solid transparent;
border-bottom: 6px solid transparent;
border-right: 6px solid #ccc;
position: absolute;
top: 0px;
left: -7px;
}
.right-menu:before {
border-top: 7px solid transparent;
border-top-color: rgba(0, 0, 0, 0.2);
border-bottom: 0;
bottom: -7px;
top: auto;
}
.right-menu:after {
border-top: 6px solid transparent;
top-bottom: 0;
top: 4px;
bottom: auto;
}
.right-menu .checkbox{ background:#FFF; border:1px solid #f2f2f2; vertical-align:top; margin-right:2px;}
/*菜单css*/
.sidebar-nav ul{ list-style:none;margin-bottom:0; margin-left:0;}
.sidebar-nav ul .first-menu{ font-size:14px; line-height:38px; color:#0088cd; cursor:pointer}
.sidebar-nav ul .second-menu{ font-size:12px; color:#595959; background:#ffffff;}
.sidebar-nav ul .third-menu{ background:#fcfcfc}
.sidebar-nav ul li{ line-height:30px; border-bottom:1px solid #dddddd; font-size:12px;}
.sidebar-nav ul li a{ display:block; height:100%; width:100%; color:#595959;}
.sidebar-nav ul li a:hover{ text-decoration:none; background:#f5f5f5;}
.sidebar-nav ul li .third-menu a{ color:#999999;}
.sidebar-nav ul li:hover{ background:#ffffff;}
.sidebar-nav ul .opened{ border-bottom:none; display:block}
.sidebar-nav ul .closed{ display:none;border-bottom:none;}
.order-top{position: absolute;top:71px;}
.row-fluid .content-left{ margin-left:17.09401709%}
.sidebar-nav .selected a,.sidebar-nav .selected a:hover{ color:#FFF;background-color:#007fc4;}
/*hp-date*/
.hp-date,.hp-date-start,.hp-date-hhmm,.hp-date-hhmmss,.hp-date-yyyymmdd,.hp-date-yyyymm{ background:url(../../img/date-ico1.gif) right center no-repeat; cursor:pointer}
.hp-date-end{background:url(../../img/date-ico2.gif) right center no-repeat;cursor:pointer}
/*下拉菜单*/
.controls{ position:relative;}
.dropdown-input{display: inline-block;
padding: 4px 12px;
margin-bottom: 0;
font-size: 14px;
background-color: #ffffff;
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0 );
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));
background-image: -webkit-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
background-image: -moz-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
background-image: -o-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
background-image: -ms-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
background-image: linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
-webkit-border-radius: 3px;
-moz-border-radius : 3px;
border-radius : 3px;
-moz-background-clip : padding;
-webkit-background-clip: padding-box;
background-clip : padding-box;
border: 1px solid #cccccc;
-webkit-box-shadow: 0 0 3px #ffffff inset, 0 1px 1px rgba(0,0,0,0.1);
-moz-box-shadow : 0 0 3px #ffffff inset, 0 1px 1px rgba(0,0,0,0.1);
box-shadow : 0 0 3px #ffffff inset, 0 1px 1px rgba(0,0,0,0.1);
display: block;
overflow: hidden;
white-space: nowrap;
height: 29px;
line-height: 30px;
padding: 0 0 0 8px;
color: #444444;
text-decoration: none;
cursor:pointer
}
.icon3-down{background:url(../../img/icon3.png) no-repeat top right; width:10px; height:8px; position:absolute; left:205px; top:12px;z-index:9}
.icon3-up{background:url(../../img/icon3.png) no-repeat bottom right; width:10px; height:8px; position:absolute; left:205px; top:7px;z-index:9}
.dropdown-input-hover{border: 1px solid #CCC;
-webkit-box-shadow: 0 1px 0 white inset;
-moz-box-shadow: 0 1px 0 #fff inset;
-o-box-shadow: 0 1px 0 #fff inset;
box-shadow: 0 1px 0 white inset;
background-color: #EEE;
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0 );
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #EEE), color-stop(80%, white));
background-image: -webkit-linear-gradient(top, #EEE 20%, white 80%);
background-image: -moz-linear-gradient(top, #EEE 20%, white 80%);
background-image: -o-linear-gradient(top, #EEE 20%, white 80%);
background-image: -ms-linear-gradient(top, #EEE 20%, white 80%);
background-image: linear-gradient(top, #EEE 20%, white 80%);
-webkit-border-bottom-left-radius: 0;
-webkit-border-bottom-right-radius: 0;
-moz-border-radius-bottomleft: 0;
-moz-border-radius-bottomright: 0;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;}
.dropdown-list{
list-style:none;
width:218px;
position:absolute;
left:-25px;
top:27px;
z-index:8;
border:1px solid #ccc;
border-top:none; padding-top:10px;
-webkit-border-radius: 0 0 4px 4px;
-moz-border-radius: 0 0 4px 4px;
border-radius: 0 0 4px 4px;
-moz-background-clip: padding;
-webkit-background-clip: padding-box;
background-clip: padding-box;
background:#FFF;
display:none;
-webkit-box-shadow: 0 0 0 4px white inset;
-moz-box-shadow: 0 0 0 4px #fff inset;
-o-box-shadow: 0 0 0 4px #fff inset;
box-shadow: 0 0 0 4px white inset;}
.dropdown-list li a{ line-height:26px; text-align:center; color:#333; display:block; height:26px; text-align:left; padding-left:7px;}
.dropdown-list li a:hover{ background:#007fc4; color:#FFF; text-decoration:none}
|
Docs/Doxy/html/class_g_f_geometry_collection-members.html | TheClimateCorporation/geofeatures-ios | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.10"/>
<title>GeoFeatures: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">GeoFeatures
</div>
<div id="projectbrief">A full featured, lightweight and fast geometry library for Objective-C.</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.10 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">GFGeometryCollection Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="interface_g_f_geometry_collection.html">GFGeometryCollection</a>, including all inherited members.</p>
<table class="directory">
<tr class="even"><td class="entry">- </td><td><a class="el" href="interface_g_f_geometry.html#a0028dc3b2c2315a24d803dfa4cf2250e">area</a></td><td class="entry"><a class="el" href="interface_g_f_geometry.html">GFGeometry</a></td><td class="entry"></td></tr>
<tr><td class="entry">- </td><td><a class="el" href="interface_g_f_geometry.html#a808ba7daf6d4c3d742668ad3fe5d0f0e">boundingBox</a></td><td class="entry"><a class="el" href="interface_g_f_geometry.html">GFGeometry</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry">- </td><td><a class="el" href="interface_g_f_geometry.html#af53b7bf19dfea6827eed19a7979c7dca">centroid</a></td><td class="entry"><a class="el" href="interface_g_f_geometry.html">GFGeometry</a></td><td class="entry"></td></tr>
<tr><td class="entry">- </td><td><a class="el" href="interface_g_f_geometry_collection.html#a020dd5245b572a391ccbd1ea92699240">count</a></td><td class="entry"><a class="el" href="interface_g_f_geometry_collection.html">GFGeometryCollection</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry">- </td><td><a class="el" href="interface_g_f_geometry_collection.html#a1910e3af2895a6c9cb7baf18ec791aad">firstGeometry</a></td><td class="entry"><a class="el" href="interface_g_f_geometry_collection.html">GFGeometryCollection</a></td><td class="entry"></td></tr>
<tr><td class="entry">- </td><td><a class="el" href="interface_g_f_geometry_collection.html#aa4a654ef8751bdf8abac169f8746d026">geometryAtIndex:</a></td><td class="entry"><a class="el" href="interface_g_f_geometry_collection.html">GFGeometryCollection</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry">+ </td><td><a class="el" href="interface_g_f_geometry.html#afcdd23bd5dd4b04868d6baf577f9bb32">geometryWithGeoJSONGeometry:</a></td><td class="entry"><a class="el" href="interface_g_f_geometry.html">GFGeometry(GeoJSON)</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry">+ </td><td><a class="el" href="interface_g_f_geometry.html#a26ad5ae365b4dd4847fdb3370dfb6bb2">geometryWithWKT:</a></td><td class="entry"><a class="el" href="interface_g_f_geometry.html">GFGeometry(WKT)</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry">- </td><td><a class="el" href="interface_g_f_geometry_collection.html#a260bb3daa9d3324cb1cc2fa9ef3a61e9">initWithArray:</a></td><td class="entry"><a class="el" href="interface_g_f_geometry_collection.html">GFGeometryCollection</a></td><td class="entry"></td></tr>
<tr><td class="entry">- </td><td><a class="el" href="interface_g_f_geometry.html#a3a63de5905eae52356c6afd7313e4828">isValid</a></td><td class="entry"><a class="el" href="interface_g_f_geometry.html">GFGeometry</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry">- </td><td><a class="el" href="interface_g_f_geometry_collection.html#a46262687af8b3c6599b2b2d68b0481b6">lastGeometry</a></td><td class="entry"><a class="el" href="interface_g_f_geometry_collection.html">GFGeometryCollection</a></td><td class="entry"></td></tr>
<tr><td class="entry">- </td><td><a class="el" href="interface_g_f_geometry.html#ab68dd3c418a3f06c6593d02dfebe2585">length</a></td><td class="entry"><a class="el" href="interface_g_f_geometry.html">GFGeometry</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry">- </td><td><a class="el" href="interface_g_f_geometry.html#a69a56e7786e1de09034c546ade1c7262">mkMapOverlays</a></td><td class="entry"><a class="el" href="interface_g_f_geometry.html">GFGeometry(MapKit)</a></td><td class="entry"></td></tr>
<tr><td class="entry">- </td><td><a class="el" href="interface_g_f_geometry.html#a31593eea12da7a9ed46b2dd4e6ca511e">perimeter</a></td><td class="entry"><a class="el" href="interface_g_f_geometry.html">GFGeometry</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry">- </td><td><a class="el" href="interface_g_f_geometry.html#a89a1dd53c1d9a51fd5b933fde28be5b7">toGeoJSONGeometry</a></td><td class="entry"><a class="el" href="interface_g_f_geometry.html">GFGeometry(GeoJSON)</a></td><td class="entry"></td></tr>
<tr><td class="entry">- </td><td><a class="el" href="interface_g_f_geometry.html#a9d257cce05d031211e2cece24b5530e4">toWKTString</a></td><td class="entry"><a class="el" href="interface_g_f_geometry.html">GFGeometry(WKT)</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry">- </td><td><a class="el" href="interface_g_f_geometry.html#a58c32fcf4a3932281498d1a1b25fb46b">union_:</a></td><td class="entry"><a class="el" href="interface_g_f_geometry.html">GFGeometry</a></td><td class="entry"></td></tr>
<tr><td class="entry">- </td><td><a class="el" href="interface_g_f_geometry.html#a832350c76f4a42a39889c9138108edd2">within:</a></td><td class="entry"><a class="el" href="interface_g_f_geometry.html">GFGeometry</a></td><td class="entry"></td></tr>
</table></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.10
</small></address>
</body>
</html>
|
SUYI/img/rscript.html | caHaber/caHaber.github.io | <link href="txtstyle.css" rel="stylesheet" type="text/css" /> <hr>
setwd("/Users/cabertron/.exploratory/projects/Final_360f5f6c9747/data")
<hr>
read_delim("Data_SY11-12.csv" , ",", quote = "\"", skip = 0 , col_names = TRUE , na = c("","NA"), n_max=-1 , locale=locale(encoding = "ASCII") , progress = FALSE) %>%
`_tam_cleanDataFrame`() %>%
<hr>
mutate(MathPercentTotal = (`Math Percentile Rank Wtr 12` + `Math Percentile Rank Spr 12`)/2 ) %>%
<hr>
mutate(ReadingPercentTotal = (`Reading Percentile Rank Wtr 12` + `Reading Percentile Rank Spr 12`)/2 ) %>%
<hr>
select(SchID,Grade,HomeLanguage,`Federal Race Code`,ReadingPercentTotal,MathPercentTotal) %>%
<hr>
filter(Grade == "0" | Grade == "1" | Grade == "2" | Grade == "3" | Grade == "4" | Grade == "5" | Grade == "6" | Grade == "7" | Grade == "8" ) %>%
<hr>
mutate(`Federal Race Code`, `Federal Race Code` = ifelse(`Federal Race Code` == "B","African-American",`Federal Race Code`)) %>%
<hr>
mutate(`Federal Race Code`, `Federal Race Code` = ifelse(`Federal Race Code` == "A","Asian",`Federal Race Code`)) %>%
<hr>
mutate(`Federal Race Code`, `Federal Race Code` = ifelse(`Federal Race Code` == "H","Hispanic",`Federal Race Code`)) %>%
<hr>
mutate(`Federal Race Code`, `Federal Race Code` = ifelse(`Federal Race Code` == "W","White",`Federal Race Code`))
<hr>
# Definition of _tam_cleanDataFrame function. It cleans up the imported data frame.
`_tam_cleanDataFrame` = function(df){
df %>%
# tibble::repair_name repairs column names such as columns with NA in its name.
repair_names() %>%
# Drop columns whose data type is 'data.frame', which causes error in further analysis.
.[!sapply(., is.data.frame)]
}
|
__tests__/cases-core/transition/preset/ease/easeInOutCubic.css | ctr-lang/ctr | .test {
width: 200px;
height: 400px;
transition-delay: 0s;
transition-duration: 0.5s;
transition-property: height;
transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.test {
width: 200px;
height: 400px;
transition-delay: 0s;
transition-duration: 0.5s;
transition-property: height;
transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.test {
width: 200px;
height: 400px;
transition-delay: 0s;
transition-duration: 0.5s;
transition-property: height;
transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.test {
width: 200px;
height: 400px;
transition-delay: 0s;
transition-duration: 0.5s;
transition-property: height;
transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
|
doc/eu/newsreader/eventcoreference/util/FilterCorefSets.html | cltl/EventCoreference | <!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_91) on Thu Jan 05 14:52:58 CET 2017 -->
<title>FilterCorefSets</title>
<meta name="date" content="2017-01-05">
<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="FilterCorefSets";
}
}
catch(err) {
}
//-->
var methods = {"i0":9};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../eu/newsreader/eventcoreference/util/EventTypes.html" title="class in eu.newsreader.eventcoreference.util"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../eu/newsreader/eventcoreference/util/FixUri.html" title="class in eu.newsreader.eventcoreference.util"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?eu/newsreader/eventcoreference/util/FilterCorefSets.html" target="_top">Frames</a></li>
<li><a href="FilterCorefSets.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">eu.newsreader.eventcoreference.util</div>
<h2 title="Class FilterCorefSets" class="title">Class FilterCorefSets</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>eu.newsreader.eventcoreference.util.FilterCorefSets</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="typeNameLabel">FilterCorefSets</span>
extends java.lang.Object</pre>
<div class="block">Created with IntelliJ IDEA.
User: kyoto
Date: 3/18/13
Time: 7:21 PM
To change this template use File | Settings | File Templates.</div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../eu/newsreader/eventcoreference/util/FilterCorefSets.html#FilterCorefSets--">FilterCorefSets</a></span>()</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../eu/newsreader/eventcoreference/util/FilterCorefSets.html#main-java.lang.String:A-">main</a></span>(java.lang.String[] args)</code> </td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>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">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="FilterCorefSets--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>FilterCorefSets</h4>
<pre>public FilterCorefSets()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="main-java.lang.String:A-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>main</h4>
<pre>public static void main(java.lang.String[] args)</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../eu/newsreader/eventcoreference/util/EventTypes.html" title="class in eu.newsreader.eventcoreference.util"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../eu/newsreader/eventcoreference/util/FixUri.html" title="class in eu.newsreader.eventcoreference.util"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?eu/newsreader/eventcoreference/util/FilterCorefSets.html" target="_top">Frames</a></li>
<li><a href="FilterCorefSets.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
test-output/old/Suite/methods.html | davidgaskins/informationRetrievalProject | <h2>Methods run, sorted chronologically</h2><h3>>> means before, << means after</h3><p/><br/><em>Suite</em><p/><small><i>(Hover the method name to see the test class name)</i></small><p/>
<table border="1">
<tr><th>Time</th><th>Delta (ms)</th><th>Suite<br>configuration</th><th>Test<br>configuration</th><th>Class<br>configuration</th><th>Groups<br>configuration</th><th>Method<br>configuration</th><th>Test<br>method</th><th>Thread</th><th>Instances</th></tr>
<tr bgcolor="a78785"> <td>15/01/11 20:45:40</td> <td>0</td> <td> </td><td> </td><td title=">>QueryFactoryTest.setup()[pri:0, instance:test.java.Test.queryProcessor.QueryFactoryTest@4a6bb386]">>>setup</td>
<td> </td><td> </td><td> </td> <td>main@1954648890</td> <td></td> </tr>
<tr bgcolor="a78785"> <td>15/01/11 20:45:40</td> <td>14</td> <td> </td><td> </td><td> </td><td> </td><td> </td><td title="QueryFactoryTest.createBasicQuery()[pri:0, instance:test.java.Test.queryProcessor.QueryFactoryTest@4a6bb386]">createBasicQuery</td>
<td>main@1954648890</td> <td></td> </tr>
<tr bgcolor="a78785"> <td>15/01/11 20:45:40</td> <td>26</td> <td> </td><td> </td><td> </td><td> </td><td> </td><td title="QueryFactoryTest.createNearQuery()[pri:0, instance:test.java.Test.queryProcessor.QueryFactoryTest@4a6bb386]">createNearQuery</td>
<td>main@1954648890</td> <td></td> </tr>
<tr bgcolor="a78785"> <td>15/01/11 20:45:40</td> <td>28</td> <td> </td><td> </td><td> </td><td> </td><td> </td><td title="QueryFactoryTest.createNotQuery()[pri:0, instance:test.java.Test.queryProcessor.QueryFactoryTest@4a6bb386]">createNotQuery</td>
<td>main@1954648890</td> <td></td> </tr>
<tr bgcolor="a78785"> <td>15/01/11 20:45:40</td> <td>31</td> <td> </td><td> </td><td> </td><td> </td><td> </td><td title="QueryFactoryTest.createPhraseLiteral()[pri:0, instance:test.java.Test.queryProcessor.QueryFactoryTest@4a6bb386]">createPhraseLiteral</td>
<td>main@1954648890</td> <td></td> </tr>
</table>
|
src/patterns/components/list/unordered.html | Rise-Vision/style-guide | ---
title: Unordered List
styles: base/typography.scss
maturity: draft
---
<ul>
<li>Item One</li>
<li>Item Two</li>
<li>Item Three</li>
</ul> |
2018.5.0/apidocs/org/wildfly/swarm/microprofile/faulttolerance/deployment/package-tree.html | wildfly-swarm/wildfly-swarm-javadocs | <!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_151) on Wed May 02 00:35:09 MST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.wildfly.swarm.microprofile.faulttolerance.deployment Class Hierarchy (BOM: * : All 2018.5.0 API)</title>
<meta name="date" content="2018-05-02">
<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="org.wildfly.swarm.microprofile.faulttolerance.deployment Class Hierarchy (BOM: * : All 2018.5.0 API)";
}
}
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>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">WildFly Swarm API, 2018.5.0</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../org/wildfly/swarm/microprofile/faulttolerance/package-tree.html">Prev</a></li>
<li><a href="../../../../../../org/wildfly/swarm/microprofile/faulttolerance/deployment/config/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/wildfly/swarm/microprofile/faulttolerance/deployment/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.wildfly.swarm.microprofile.faulttolerance.deployment</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.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Object</span></a>
<ul>
<li type="circle"><any>
<ul>
<li type="circle">org.wildfly.swarm.microprofile.faulttolerance.deployment.<a href="../../../../../../org/wildfly/swarm/microprofile/faulttolerance/deployment/CompositeCommand.html" title="class in org.wildfly.swarm.microprofile.faulttolerance.deployment"><span class="typeNameLink">CompositeCommand</span></a></li>
<li type="circle">org.wildfly.swarm.microprofile.faulttolerance.deployment.<a href="../../../../../../org/wildfly/swarm/microprofile/faulttolerance/deployment/HystrixCommandBinding.Literal.html" title="class in org.wildfly.swarm.microprofile.faulttolerance.deployment"><span class="typeNameLink">HystrixCommandBinding.Literal</span></a> (implements org.wildfly.swarm.microprofile.faulttolerance.deployment.<a href="../../../../../../org/wildfly/swarm/microprofile/faulttolerance/deployment/HystrixCommandBinding.html" title="annotation in org.wildfly.swarm.microprofile.faulttolerance.deployment">HystrixCommandBinding</a>)</li>
<li type="circle">org.wildfly.swarm.microprofile.faulttolerance.deployment.<a href="../../../../../../org/wildfly/swarm/microprofile/faulttolerance/deployment/SimpleCommand.html" title="class in org.wildfly.swarm.microprofile.faulttolerance.deployment"><span class="typeNameLink">SimpleCommand</span></a></li>
</ul>
</li>
<li type="circle">org.wildfly.swarm.microprofile.faulttolerance.deployment.<a href="../../../../../../org/wildfly/swarm/microprofile/faulttolerance/deployment/HystrixCommandInterceptor.html" title="class in org.wildfly.swarm.microprofile.faulttolerance.deployment"><span class="typeNameLink">HystrixCommandInterceptor</span></a></li>
<li type="circle">org.wildfly.swarm.microprofile.faulttolerance.deployment.<a href="../../../../../../org/wildfly/swarm/microprofile/faulttolerance/deployment/HystrixExtension.html" title="class in org.wildfly.swarm.microprofile.faulttolerance.deployment"><span class="typeNameLink">HystrixExtension</span></a></li>
<li type="circle">org.wildfly.swarm.microprofile.faulttolerance.deployment.<a href="../../../../../../org/wildfly/swarm/microprofile/faulttolerance/deployment/HystrixExtension.HystrixInterceptorBindingAnnotatedType.html" title="class in org.wildfly.swarm.microprofile.faulttolerance.deployment"><span class="typeNameLink">HystrixExtension.HystrixInterceptorBindingAnnotatedType</span></a><T></li>
<li type="circle">java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Throwable</span></a> (implements java.io.<a href="http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a>)
<ul>
<li type="circle">java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Exception</span></a>
<ul>
<li type="circle">java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/RuntimeException.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">RuntimeException</span></a>
<ul>
<li type="circle">org.wildfly.swarm.microprofile.faulttolerance.deployment.<a href="../../../../../../org/wildfly/swarm/microprofile/faulttolerance/deployment/FailureNotHandledException.html" title="class in org.wildfly.swarm.microprofile.faulttolerance.deployment"><span class="typeNameLink">FailureNotHandledException</span></a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h2 title="Annotation Type Hierarchy">Annotation Type Hierarchy</h2>
<ul>
<li type="circle">org.wildfly.swarm.microprofile.faulttolerance.deployment.<a href="../../../../../../org/wildfly/swarm/microprofile/faulttolerance/deployment/HystrixCommandBinding.html" title="annotation in org.wildfly.swarm.microprofile.faulttolerance.deployment"><span class="typeNameLink">HystrixCommandBinding</span></a> (implements java.lang.annotation.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true" title="class or interface in java.lang.annotation">Annotation</a>)</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>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">WildFly Swarm API, 2018.5.0</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../org/wildfly/swarm/microprofile/faulttolerance/package-tree.html">Prev</a></li>
<li><a href="../../../../../../org/wildfly/swarm/microprofile/faulttolerance/deployment/config/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/wildfly/swarm/microprofile/faulttolerance/deployment/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 © 2018 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
|
lib/jade-4.3.2/doc/api/jade/content/package-frame.html | tomkren/pikater | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="it">
<head>
<!-- Generated by javadoc (version 1.7.0_03) on Fri Mar 28 15:35:30 CET 2014 -->
<title>jade.content (JADE v4.3.2 API)</title>
<meta name="date" content="2014-03-28">
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
</head>
<body>
<h1 class="bar"><a href="../../jade/content/package-summary.html" target="classFrame">jade.content</a></h1>
<div class="indexContainer">
<h2 title="Interfaces">Interfaces</h2>
<ul title="Interfaces">
<li><a href="AgentAction.html" title="interface in jade.content" target="classFrame"><i>AgentAction</i></a></li>
<li><a href="Concept.html" title="interface in jade.content" target="classFrame"><i>Concept</i></a></li>
<li><a href="ContentElement.html" title="interface in jade.content" target="classFrame"><i>ContentElement</i></a></li>
<li><a href="Predicate.html" title="interface in jade.content" target="classFrame"><i>Predicate</i></a></li>
<li><a href="Term.html" title="interface in jade.content" target="classFrame"><i>Term</i></a></li>
</ul>
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="ContentElementList.html" title="class in jade.content" target="classFrame">ContentElementList</a></li>
<li><a href="ContentManager.html" title="class in jade.content" target="classFrame">ContentManager</a></li>
<li><a href="OntoACLMessage.html" title="class in jade.content" target="classFrame">OntoACLMessage</a></li>
<li><a href="OntoAID.html" title="class in jade.content" target="classFrame">OntoAID</a></li>
</ul>
<h2 title="Exceptions">Exceptions</h2>
<ul title="Exceptions">
<li><a href="ContentException.html" title="class in jade.content" target="classFrame">ContentException</a></li>
</ul>
</div>
</body>
</html>
|
public/modules/groups/views/edit-group.client.view.html | valuesetworkbench/valueset-workbench | <section data-ng-controller="EditGroupsController" xmlns="http://www.w3.org/1999/html">
<div class="container">
<div class="page-header">
<div class="row">
<h1>{{ group.name }}</h1>
</div>
<div class="row">
<div class="col-md-4">
<div>
<img class="group-list-logo" ng-src="{{group.logo}}">
<button type="button" ng-click="changeLogo()" class="btn btn-default btn-xs edit-logo-button">
<i class="fa fa-pencil" aria-hidden="true"></i>
</button>
</div>
</div>
<div class="col-md-8">
<div>
<label>Description:</label>
<textarea rows="5" data-ng-model="group.description" id="description" class="form-control group-description"></textarea>
</div>
</div>
</div>
</div>
<div class="row">
<h2>Membership</h2>
<div class="form-horizontal">
<div>
<div class="list-groups">
<span class="row" ng-repeat="member in group.members" ng-init="userInfo = getUserInfo(member.user)">
<div>
<div class="row">
<div class="col-md-3">
<img ng-src="photos/{{ userInfo._id }}" class="group-profile-avatar"/>
<div>
<button ng-show="group.owner != member.user" type="button" ng-click="removeUser(member)" class="btn btn-xs btn-danger">
<span class="glyphicon glyphicon-remove" aria-hidden="true"></span> Remove
</button>
<button ng-show="group.owner != member.user" type="button" ng-click="makeOwner(member)" class="btn btn-xs btn-success">
<span class="glyphicon glyphicon-star" aria-hidden="true"></span> Owner
</button>
</div>
</div>
<div class="col-md-9">
<h4 style="vertical-align: top">{{userInfo.displayName}}
<span class="label label-primary" ng-show="group.owner == member.user">
<span class="glyphicon glyphicon-star" aria-hidden="true"></span> Group Owner</span>
</h4>
<div class="row">
<div class="col-md-8">
<span class="label label-success">Permissions</span>
<div class="checkbox" ng-repeat="permission in ['Create', 'Edit', 'Delete']">
<label >
<input type="checkbox" checklist-model="member.permissions" checklist-value="permission"> {{permission}}
</label>
</div>
</div>
</div>
</div>
</div>
</div>
</span>
</div>
</div>
</div>
<div class="row">
<div ng-show="availableUsers.length > 0" class="form-group">
<div class="col-md-4">
<ui-select ng-model="current.selected" theme="bootstrap" ng-disabled="disabled">
<ui-select-match placeholder="Select a user to add to the group...">{{$select.selected.displayName}}</ui-select-match>
<ui-select-choices repeat="user in availableUsers">
<img ng-src="photos/{{ user._id }}" class="group-select-profile-avatar"/> <span ng-bind-html="user.displayName | highlight: $select.search"></span>
</ui-select-choices>
</ui-select>
</div>
<div class="col-md-4">
<button type="button" ng-click="addUser()" class="btn btn-default" aria-label="Left Align">
Add <span class="glyphicon glyphicon-plus" aria-hidden="true"></span>
</button>
</div>
</div>
</div>
<div style="margin-top:50px">
<button type="button" ng-click="update()" class="btn btn-default" aria-label="Left Align">
<span class="glyphicon glyphicon-floppy-disk" aria-hidden="true"></span> Save Group
</button>
</div>
</div>
</div>
</section> |
css/style.css | BosmanOne/coins_fountain | body {
margin: 0px;
padding: 0px;
overflow: hidden;
}
|
no-memory-ocean.html | KongLiga/flex | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>flex</title>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="http://cdn.bootcss.com/font-awesome/4.5.0/css/font-awesome.min.css">
</head>
<body>
<div class="app-wrap">
<header class="app-header">
<a href="" class="button">
<i class="fa fa-user"></i>
关于
</a>
<h1>没有回忆的海洋</h1>
<a href="index.html" class="button">
<i class="fa fa-diamond"></i>
更多
</a>
</header>
<div class="content">
<p>
肖申克的救赎是IMDB和豆瓣电影排行榜双料第一,也是很多人心目中的No.1。它给了很多处在困境中的人以力量。
</p>
<p>
有些鸟儿是关不住的。他们的羽毛太鲜亮了。
</p>
<p>
在漫长的牢狱生活中安迪淋漓尽致的展现了一只拥有鲜亮羽毛的鸟会有多鲜亮————环境无法阻挡它的光芒。
</p>
<p>
但是照例,那些老生常谈的不是我们谈论的焦点。当然这次也不是要谈『鲜亮』羽毛的问题。不可否认这部经典中的经典中有一捞一大把的经典台词。但是独爱这一句:
</p>
<p>
你知道墨西哥人怎样说太平洋的吗?那是没有回忆的海洋。
You know what the Mexicans say about the Pacific?They say it has no Memory.
</p>
<p>
这本不是安迪要承担的罪过,他承担了很久;他已经完成了救赎,他要求的不多。他付出了二十年大好时光的代价,只求一个没有回忆的海洋。
</p>
<p>
肖申克的救赎,一座肖申克改变了很多东西,被它困住的人们在挣扎地实现救赎。
</p>
<p>
你问瑞德,你承认错误了吗?瑞德说:I’m a changed man。接着你盖下了拒绝的章印。历经铅华,你问瑞德,你承认错误了吗?瑞德说,
</p>
<p>
我无时不刻地对自己的所作所为深感内疚,这不是因为我在这里(指监狱),也不是讨好你们(指假释官)。回首曾经走过的弯路,我多么想对那个犯下重罪的愚蠢的年轻人说些什么,告诉他我现在的感受,告诉他还可以有其他的方式解决问题。可是,我做不到了。那个年轻人早已淹没在岁月的长河里,只留下一个老人孤独地面对过去。重新做人?骗人罢了!小子,别再浪费我的时间了,盖你的章吧,我不会再废话了。
</p>
<p>
人生是一段奇妙的旅程,其中充斥着无数的选择,而有些选择很致命,会吞噬掉你的旅途,让你不再有选择。无期徒刑是什么?独囚一个月是什么?监狱体制化是什么?
</p>
<p>
我们无从感受。我们无法评判。
</p>
<p>
向经历救赎的人致敬。
</p>
<p>
愿你们都有一片没有回忆的海洋。
</p>
</div>
<div class="app-footer">
<a href="about.html">
<i class="fa fa-arrow-left"></i>
下一篇
</a>
<a href="no-memory-ocean.html">
<i class="fa fa-home"></i>
主页
</a>
<a href="index.html">
<i class="fa fa-arrow-right"></i>
上一篇
</a>
</div>
</body>
</html> |
docs/api/org/apache/hadoop/typedbytes/package-use.html | simplegeo/hadoop | <!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_20) on Thu Feb 24 01:10:11 PST 2011 -->
<TITLE>
Uses of Package org.apache.hadoop.typedbytes (Hadoop 0.20.2-cdh3u0-SNAPSHOT API)
</TITLE>
<META NAME="date" CONTENT="2011-02-24">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Package org.apache.hadoop.typedbytes (Hadoop 0.20.2-cdh3u0-SNAPSHOT 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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?org/apache/hadoop/typedbytes/package-use.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Package<br>org.apache.hadoop.typedbytes</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/typedbytes/package-summary.html">org.apache.hadoop.typedbytes</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.apache.hadoop.streaming.io"><B>org.apache.hadoop.streaming.io</B></A></TD>
<TD> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.apache.hadoop.typedbytes"><B>org.apache.hadoop.typedbytes</B></A></TD>
<TD>Typed bytes are sequences of bytes in which the first byte is a type code. </TD>
</TR>
</TABLE>
<P>
<A NAME="org.apache.hadoop.streaming.io"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Classes in <A HREF="../../../../org/apache/hadoop/typedbytes/package-summary.html">org.apache.hadoop.typedbytes</A> used by <A HREF="../../../../org/apache/hadoop/streaming/io/package-summary.html">org.apache.hadoop.streaming.io</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><B><A HREF="../../../../org/apache/hadoop/typedbytes/class-use/TypedBytesWritable.html#org.apache.hadoop.streaming.io"><B>TypedBytesWritable</B></A></B>
<BR>
Writable for typed bytes.</TD>
</TR>
</TABLE>
<P>
<A NAME="org.apache.hadoop.typedbytes"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Classes in <A HREF="../../../../org/apache/hadoop/typedbytes/package-summary.html">org.apache.hadoop.typedbytes</A> used by <A HREF="../../../../org/apache/hadoop/typedbytes/package-summary.html">org.apache.hadoop.typedbytes</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><B><A HREF="../../../../org/apache/hadoop/typedbytes/class-use/Type.html#org.apache.hadoop.typedbytes"><B>Type</B></A></B>
<BR>
The possible type codes.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><B><A HREF="../../../../org/apache/hadoop/typedbytes/class-use/TypedBytesInput.html#org.apache.hadoop.typedbytes"><B>TypedBytesInput</B></A></B>
<BR>
Provides functionality for reading typed bytes.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><B><A HREF="../../../../org/apache/hadoop/typedbytes/class-use/TypedBytesOutput.html#org.apache.hadoop.typedbytes"><B>TypedBytesOutput</B></A></B>
<BR>
Provides functionality for writing typed bytes.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><B><A HREF="../../../../org/apache/hadoop/typedbytes/class-use/TypedBytesRecordInput.html#org.apache.hadoop.typedbytes"><B>TypedBytesRecordInput</B></A></B>
<BR>
Serializer for records that writes typed bytes.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><B><A HREF="../../../../org/apache/hadoop/typedbytes/class-use/TypedBytesRecordOutput.html#org.apache.hadoop.typedbytes"><B>TypedBytesRecordOutput</B></A></B>
<BR>
Deserialized for records that reads typed bytes.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><B><A HREF="../../../../org/apache/hadoop/typedbytes/class-use/TypedBytesWritable.html#org.apache.hadoop.typedbytes"><B>TypedBytesWritable</B></A></B>
<BR>
Writable for typed bytes.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><B><A HREF="../../../../org/apache/hadoop/typedbytes/class-use/TypedBytesWritableInput.html#org.apache.hadoop.typedbytes"><B>TypedBytesWritableInput</B></A></B>
<BR>
Provides functionality for reading typed bytes as Writable objects.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><B><A HREF="../../../../org/apache/hadoop/typedbytes/class-use/TypedBytesWritableOutput.html#org.apache.hadoop.typedbytes"><B>TypedBytesWritableOutput</B></A></B>
<BR>
Provides functionality for writing Writable objects as typed bytes.</TD>
</TR>
</TABLE>
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?org/apache/hadoop/typedbytes/package-use.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright © 2009 The Apache Software Foundation
</BODY>
</HTML>
|
docs/javadoc/opensaml3/1.4.0/se/litsec/eidas/opensaml/metadata/impl/class-use/DistributionPointsUnmarshaller.html | litsec/eidas-opensaml | <!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_191) on Wed Jun 05 15:47:25 CEST 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class se.litsec.eidas.opensaml.metadata.impl.DistributionPointsUnmarshaller (eIDAS extension for OpenSAML 3.x - 1.4.0)</title>
<meta name="date" content="2019-06-05">
<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 se.litsec.eidas.opensaml.metadata.impl.DistributionPointsUnmarshaller (eIDAS extension for OpenSAML 3.x - 1.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="../../../../../../../se/litsec/eidas/opensaml/metadata/impl/DistributionPointsUnmarshaller.html" title="class in se.litsec.eidas.opensaml.metadata.impl">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?se/litsec/eidas/opensaml/metadata/impl/class-use/DistributionPointsUnmarshaller.html" target="_top">Frames</a></li>
<li><a href="DistributionPointsUnmarshaller.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class se.litsec.eidas.opensaml.metadata.impl.DistributionPointsUnmarshaller" class="title">Uses of Class<br>se.litsec.eidas.opensaml.metadata.impl.DistributionPointsUnmarshaller</h2>
</div>
<div class="classUseContainer">No usage of se.litsec.eidas.opensaml.metadata.impl.DistributionPointsUnmarshaller</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="../../../../../../../se/litsec/eidas/opensaml/metadata/impl/DistributionPointsUnmarshaller.html" title="class in se.litsec.eidas.opensaml.metadata.impl">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?se/litsec/eidas/opensaml/metadata/impl/class-use/DistributionPointsUnmarshaller.html" target="_top">Frames</a></li>
<li><a href="DistributionPointsUnmarshaller.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 © 2019 <a href="http://www.litsec.se">Litsec AB</a>. All rights reserved.</small></p>
</body>
</html>
|
doxygen/ovs_all/html/ofp-parse_8h_source.html | vladn-ma/vladn-ovs-doc | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.9.1"/>
<title>ovs all: /home/vladn/git/ovs/lib/ofp-parse.h Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
$(window).load(resizeHeight);
</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">ovs all
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.9.1 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File List</span></a></li>
<li><a href="globals.html"><span>Globals</span></a></li>
</ul>
</div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('ofp-parse_8h_source.html','');});
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="headertitle">
<div class="title">ofp-parse.h</div> </div>
</div><!--header-->
<div class="contents">
<a href="ofp-parse_8h.html">Go to the documentation of this file.</a><div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span> <span class="comment">/*</span></div>
<div class="line"><a name="l00002"></a><span class="lineno"> 2</span> <span class="comment"> * Copyright (c) 2010, 2011, 2012, 2013, 2014, 2015 Nicira, Inc.</span></div>
<div class="line"><a name="l00003"></a><span class="lineno"> 3</span> <span class="comment"> *</span></div>
<div class="line"><a name="l00004"></a><span class="lineno"> 4</span> <span class="comment"> * Licensed under the Apache License, Version 2.0 (the "License");</span></div>
<div class="line"><a name="l00005"></a><span class="lineno"> 5</span> <span class="comment"> * you may not use this file except in compliance with the License.</span></div>
<div class="line"><a name="l00006"></a><span class="lineno"> 6</span> <span class="comment"> * You may obtain a copy of the License at:</span></div>
<div class="line"><a name="l00007"></a><span class="lineno"> 7</span> <span class="comment"> *</span></div>
<div class="line"><a name="l00008"></a><span class="lineno"> 8</span> <span class="comment"> * http://www.apache.org/licenses/LICENSE-2.0</span></div>
<div class="line"><a name="l00009"></a><span class="lineno"> 9</span> <span class="comment"> *</span></div>
<div class="line"><a name="l00010"></a><span class="lineno"> 10</span> <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span></div>
<div class="line"><a name="l00011"></a><span class="lineno"> 11</span> <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span></div>
<div class="line"><a name="l00012"></a><span class="lineno"> 12</span> <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span></div>
<div class="line"><a name="l00013"></a><span class="lineno"> 13</span> <span class="comment"> * See the License for the specific language governing permissions and</span></div>
<div class="line"><a name="l00014"></a><span class="lineno"> 14</span> <span class="comment"> * limitations under the License.</span></div>
<div class="line"><a name="l00015"></a><span class="lineno"> 15</span> <span class="comment"> */</span></div>
<div class="line"><a name="l00016"></a><span class="lineno"> 16</span> </div>
<div class="line"><a name="l00017"></a><span class="lineno"> 17</span> <span class="comment">/* OpenFlow protocol string to flow parser. */</span></div>
<div class="line"><a name="l00018"></a><span class="lineno"> 18</span> </div>
<div class="line"><a name="l00019"></a><span class="lineno"> 19</span> <span class="preprocessor">#ifndef OFP_PARSE_H</span></div>
<div class="line"><a name="l00020"></a><span class="lineno"> 20</span> <span class="preprocessor">#define OFP_PARSE_H 1</span></div>
<div class="line"><a name="l00021"></a><span class="lineno"> 21</span> </div>
<div class="line"><a name="l00022"></a><span class="lineno"> 22</span> <span class="preprocessor">#include <stdbool.h></span></div>
<div class="line"><a name="l00023"></a><span class="lineno"> 23</span> <span class="preprocessor">#include <stdint.h></span></div>
<div class="line"><a name="l00024"></a><span class="lineno"> 24</span> <span class="preprocessor">#include <<a class="code" href="stdio_8h.html">stdio.h</a>></span></div>
<div class="line"><a name="l00025"></a><span class="lineno"> 25</span> <span class="preprocessor">#include "<a class="code" href="lib_2compiler_8h.html">compiler.h</a>"</span></div>
<div class="line"><a name="l00026"></a><span class="lineno"> 26</span> <span class="preprocessor">#include "<a class="code" href="include_2openvswitch_2types_8h.html">openvswitch/types.h</a>"</span></div>
<div class="line"><a name="l00027"></a><span class="lineno"> 27</span> <span class="preprocessor">#include "<a class="code" href="packets_8h.html">packets.h</a>"</span></div>
<div class="line"><a name="l00028"></a><span class="lineno"> 28</span> </div>
<div class="line"><a name="l00029"></a><span class="lineno"> 29</span> <span class="keyword">struct </span><a class="code" href="structflow.html">flow</a>;</div>
<div class="line"><a name="l00030"></a><span class="lineno"> 30</span> <span class="keyword">struct </span><a class="code" href="structofpbuf.html">ofpbuf</a>;</div>
<div class="line"><a name="l00031"></a><span class="lineno"> 31</span> <span class="keyword">struct </span><a class="code" href="structofputil__flow__mod.html">ofputil_flow_mod</a>;</div>
<div class="line"><a name="l00032"></a><span class="lineno"> 32</span> <span class="keyword">struct </span><a class="code" href="structofputil__flow__monitor__request.html">ofputil_flow_monitor_request</a>;</div>
<div class="line"><a name="l00033"></a><span class="lineno"> 33</span> <span class="keyword">struct </span><a class="code" href="structofputil__flow__stats__request.html">ofputil_flow_stats_request</a>;</div>
<div class="line"><a name="l00034"></a><span class="lineno"> 34</span> <span class="keyword">struct </span><a class="code" href="structofputil__group__mod.html">ofputil_group_mod</a>;</div>
<div class="line"><a name="l00035"></a><span class="lineno"> 35</span> <span class="keyword">struct </span><a class="code" href="structofputil__meter__mod.html">ofputil_meter_mod</a>;</div>
<div class="line"><a name="l00036"></a><span class="lineno"> 36</span> <span class="keyword">struct </span><a class="code" href="structofputil__table__mod.html">ofputil_table_mod</a>;</div>
<div class="line"><a name="l00037"></a><span class="lineno"> 37</span> <span class="keyword">struct </span><a class="code" href="structofputil__geneve__table__mod.html">ofputil_geneve_table_mod</a>;</div>
<div class="line"><a name="l00038"></a><span class="lineno"> 38</span> <span class="keyword">struct </span><a class="code" href="structsimap.html">simap</a>;</div>
<div class="line"><a name="l00039"></a><span class="lineno"> 39</span> <span class="keyword">enum</span> <a class="code" href="ofp-util_8h.html#ad6ddb245efe25cc866d15c8560a89374">ofputil_protocol</a>;</div>
<div class="line"><a name="l00040"></a><span class="lineno"> 40</span> </div>
<div class="line"><a name="l00041"></a><span class="lineno"> 41</span> <span class="keywordtype">char</span> *<a class="code" href="ofp-parse_8h.html#a3e2346696acc847cfc59494b589bf345">parse_ofp_str</a>(<span class="keyword">struct</span> <a class="code" href="structofputil__flow__mod.html">ofputil_flow_mod</a> *, <span class="keywordtype">int</span> command, <span class="keyword">const</span> <span class="keywordtype">char</span> *str_,</div>
<div class="line"><a name="l00042"></a><span class="lineno"> 42</span>  <span class="keyword">enum</span> <a class="code" href="ofp-util_8h.html#ad6ddb245efe25cc866d15c8560a89374">ofputil_protocol</a> *<a class="code" href="ovs-testcontroller_8c.html#a2af580cfe763faa6f273fb2772dac134">usable_protocols</a>)</div>
<div class="line"><a name="l00043"></a><span class="lineno"> 43</span>  <a class="code" href="include_2openvswitch_2compiler_8h.html#a940a7c6e41803df7ddc67ffcdbe7a278">OVS_WARN_UNUSED_RESULT</a>;</div>
<div class="line"><a name="l00044"></a><span class="lineno"> 44</span> </div>
<div class="line"><a name="l00045"></a><span class="lineno"> 45</span> <span class="keywordtype">char</span> *<a class="code" href="ofp-parse_8h.html#a397f04214719dbe112802eae68a4088f">parse_ofp_flow_mod_str</a>(<span class="keyword">struct</span> <a class="code" href="structofputil__flow__mod.html">ofputil_flow_mod</a> *, <span class="keyword">const</span> <span class="keywordtype">char</span> *<span class="keywordtype">string</span>,</div>
<div class="line"><a name="l00046"></a><span class="lineno"> 46</span>  <span class="keywordtype">int</span> command,</div>
<div class="line"><a name="l00047"></a><span class="lineno"> 47</span>  <span class="keyword">enum</span> <a class="code" href="ofp-util_8h.html#ad6ddb245efe25cc866d15c8560a89374">ofputil_protocol</a> *<a class="code" href="ovs-testcontroller_8c.html#a2af580cfe763faa6f273fb2772dac134">usable_protocols</a>)</div>
<div class="line"><a name="l00048"></a><span class="lineno"> 48</span>  <a class="code" href="include_2openvswitch_2compiler_8h.html#a940a7c6e41803df7ddc67ffcdbe7a278">OVS_WARN_UNUSED_RESULT</a>;</div>
<div class="line"><a name="l00049"></a><span class="lineno"> 49</span> </div>
<div class="line"><a name="l00050"></a><span class="lineno"> 50</span> <span class="keywordtype">char</span> *<a class="code" href="ofp-parse_8h.html#a5d66414671f42efa394078392ae0fb79">parse_ofp_table_mod</a>(<span class="keyword">struct</span> <a class="code" href="structofputil__table__mod.html">ofputil_table_mod</a> *,</div>
<div class="line"><a name="l00051"></a><span class="lineno"> 51</span>  <span class="keyword">const</span> <span class="keywordtype">char</span> *table_id, <span class="keyword">const</span> <span class="keywordtype">char</span> *flow_miss_handling,</div>
<div class="line"><a name="l00052"></a><span class="lineno"> 52</span>  <a class="code" href="Types_8h.html#a435d1572bf3f880d55459d9805097f62">uint32_t</a> *usable_versions)</div>
<div class="line"><a name="l00053"></a><span class="lineno"> 53</span>  <a class="code" href="include_2openvswitch_2compiler_8h.html#a940a7c6e41803df7ddc67ffcdbe7a278">OVS_WARN_UNUSED_RESULT</a>;</div>
<div class="line"><a name="l00054"></a><span class="lineno"> 54</span> </div>
<div class="line"><a name="l00055"></a><span class="lineno"> 55</span> <span class="keywordtype">char</span> *<a class="code" href="ofp-parse_8h.html#a83e227c9798e6a72027b1c4d53dd6741">parse_ofp_flow_mod_file</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="test-rstp_8c.html#a89e7a505203c95130b3355a263a38fe2">file_name</a>, <span class="keywordtype">int</span> command,</div>
<div class="line"><a name="l00056"></a><span class="lineno"> 56</span>  <span class="keyword">struct</span> <a class="code" href="structofputil__flow__mod.html">ofputil_flow_mod</a> **fms, <span class="keywordtype">size_t</span> *n_fms,</div>
<div class="line"><a name="l00057"></a><span class="lineno"> 57</span>  <span class="keyword">enum</span> <a class="code" href="ofp-util_8h.html#ad6ddb245efe25cc866d15c8560a89374">ofputil_protocol</a> *<a class="code" href="ovs-testcontroller_8c.html#a2af580cfe763faa6f273fb2772dac134">usable_protocols</a>)</div>
<div class="line"><a name="l00058"></a><span class="lineno"> 58</span>  <a class="code" href="include_2openvswitch_2compiler_8h.html#a940a7c6e41803df7ddc67ffcdbe7a278">OVS_WARN_UNUSED_RESULT</a>;</div>
<div class="line"><a name="l00059"></a><span class="lineno"> 59</span> </div>
<div class="line"><a name="l00060"></a><span class="lineno"> 60</span> <span class="keywordtype">char</span> *<a class="code" href="ofp-parse_8h.html#a4d266c9ee2b86d64d53bec0e5f3e4f80">parse_ofp_flow_stats_request_str</a>(<span class="keyword">struct</span> <a class="code" href="structofputil__flow__stats__request.html">ofputil_flow_stats_request</a> *,</div>
<div class="line"><a name="l00061"></a><span class="lineno"> 61</span>  <span class="keywordtype">bool</span> aggregate, <span class="keyword">const</span> <span class="keywordtype">char</span> *<span class="keywordtype">string</span>,</div>
<div class="line"><a name="l00062"></a><span class="lineno"> 62</span>  <span class="keyword">enum</span> <a class="code" href="ofp-util_8h.html#ad6ddb245efe25cc866d15c8560a89374">ofputil_protocol</a> *<a class="code" href="ovs-testcontroller_8c.html#a2af580cfe763faa6f273fb2772dac134">usable_protocols</a>)</div>
<div class="line"><a name="l00063"></a><span class="lineno"> 63</span>  <a class="code" href="include_2openvswitch_2compiler_8h.html#a940a7c6e41803df7ddc67ffcdbe7a278">OVS_WARN_UNUSED_RESULT</a>;</div>
<div class="line"><a name="l00064"></a><span class="lineno"> 64</span> </div>
<div class="line"><a name="l00065"></a><span class="lineno"> 65</span> <span class="keywordtype">char</span> *<a class="code" href="ofp-parse_8h.html#a84fcef8b97b43a93c47f20e6ad079664">parse_ofp_exact_flow</a>(<span class="keyword">struct</span> <a class="code" href="structflow.html">flow</a> *<a class="code" href="structflow.html">flow</a>, <span class="keyword">struct</span> flow *mask, <span class="keyword">const</span> <span class="keywordtype">char</span> *s,</div>
<div class="line"><a name="l00066"></a><span class="lineno"> 66</span>  <span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structsimap.html">simap</a> *portno_names);</div>
<div class="line"><a name="l00067"></a><span class="lineno"> 67</span> </div>
<div class="line"><a name="l00068"></a><span class="lineno"> 68</span> <span class="keywordtype">char</span> *<a class="code" href="ofp-parse_8h.html#a259b70abee8744f0f110c05a4de1189d">parse_ofp_meter_mod_str</a>(<span class="keyword">struct</span> <a class="code" href="structofputil__meter__mod.html">ofputil_meter_mod</a> *, <span class="keyword">const</span> <span class="keywordtype">char</span> *<span class="keywordtype">string</span>,</div>
<div class="line"><a name="l00069"></a><span class="lineno"> 69</span>  <span class="keywordtype">int</span> command,</div>
<div class="line"><a name="l00070"></a><span class="lineno"> 70</span>  <span class="keyword">enum</span> <a class="code" href="ofp-util_8h.html#ad6ddb245efe25cc866d15c8560a89374">ofputil_protocol</a> *<a class="code" href="ovs-testcontroller_8c.html#a2af580cfe763faa6f273fb2772dac134">usable_protocols</a>)</div>
<div class="line"><a name="l00071"></a><span class="lineno"> 71</span>  <a class="code" href="include_2openvswitch_2compiler_8h.html#a940a7c6e41803df7ddc67ffcdbe7a278">OVS_WARN_UNUSED_RESULT</a>;</div>
<div class="line"><a name="l00072"></a><span class="lineno"> 72</span> </div>
<div class="line"><a name="l00073"></a><span class="lineno"> 73</span> <span class="keywordtype">char</span> *<a class="code" href="ofp-parse_8h.html#aff0f6fa601b6adf9620b169c13df42a1">parse_flow_monitor_request</a>(<span class="keyword">struct</span> <a class="code" href="structofputil__flow__monitor__request.html">ofputil_flow_monitor_request</a> *,</div>
<div class="line"><a name="l00074"></a><span class="lineno"> 74</span>  <span class="keyword">const</span> <span class="keywordtype">char</span> *,</div>
<div class="line"><a name="l00075"></a><span class="lineno"> 75</span>  <span class="keyword">enum</span> <a class="code" href="ofp-util_8h.html#ad6ddb245efe25cc866d15c8560a89374">ofputil_protocol</a> *<a class="code" href="ovs-testcontroller_8c.html#a2af580cfe763faa6f273fb2772dac134">usable_protocols</a>)</div>
<div class="line"><a name="l00076"></a><span class="lineno"> 76</span>  <a class="code" href="include_2openvswitch_2compiler_8h.html#a940a7c6e41803df7ddc67ffcdbe7a278">OVS_WARN_UNUSED_RESULT</a>;</div>
<div class="line"><a name="l00077"></a><span class="lineno"> 77</span> </div>
<div class="line"><a name="l00078"></a><span class="lineno"> 78</span> <span class="keywordtype">char</span> *<a class="code" href="ofp-parse_8h.html#a4a3cef2ff68c11222442db60e14fb904">parse_ofp_group_mod_file</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="test-rstp_8c.html#a89e7a505203c95130b3355a263a38fe2">file_name</a>, <a class="code" href="Types_8h.html#a273cf69d639a59973b6019625df33e30">uint16_t</a> command,</div>
<div class="line"><a name="l00079"></a><span class="lineno"> 79</span>  <span class="keyword">struct</span> <a class="code" href="structofputil__group__mod.html">ofputil_group_mod</a> **gms, <span class="keywordtype">size_t</span> *n_gms,</div>
<div class="line"><a name="l00080"></a><span class="lineno"> 80</span>  <span class="keyword">enum</span> <a class="code" href="ofp-util_8h.html#ad6ddb245efe25cc866d15c8560a89374">ofputil_protocol</a> *<a class="code" href="ovs-testcontroller_8c.html#a2af580cfe763faa6f273fb2772dac134">usable_protocols</a>)</div>
<div class="line"><a name="l00081"></a><span class="lineno"> 81</span>  <a class="code" href="include_2openvswitch_2compiler_8h.html#a940a7c6e41803df7ddc67ffcdbe7a278">OVS_WARN_UNUSED_RESULT</a>;</div>
<div class="line"><a name="l00082"></a><span class="lineno"> 82</span> </div>
<div class="line"><a name="l00083"></a><span class="lineno"> 83</span> <span class="keywordtype">char</span> *<a class="code" href="ofp-parse_8h.html#a8c13fba7fa945858a8918ae156ba707c">parse_ofp_group_mod_str</a>(<span class="keyword">struct</span> <a class="code" href="structofputil__group__mod.html">ofputil_group_mod</a> *, <a class="code" href="Types_8h.html#a273cf69d639a59973b6019625df33e30">uint16_t</a> command,</div>
<div class="line"><a name="l00084"></a><span class="lineno"> 84</span>  <span class="keyword">const</span> <span class="keywordtype">char</span> *<span class="keywordtype">string</span>,</div>
<div class="line"><a name="l00085"></a><span class="lineno"> 85</span>  <span class="keyword">enum</span> <a class="code" href="ofp-util_8h.html#ad6ddb245efe25cc866d15c8560a89374">ofputil_protocol</a> *<a class="code" href="ovs-testcontroller_8c.html#a2af580cfe763faa6f273fb2772dac134">usable_protocols</a>)</div>
<div class="line"><a name="l00086"></a><span class="lineno"> 86</span>  <a class="code" href="include_2openvswitch_2compiler_8h.html#a940a7c6e41803df7ddc67ffcdbe7a278">OVS_WARN_UNUSED_RESULT</a>;</div>
<div class="line"><a name="l00087"></a><span class="lineno"> 87</span> </div>
<div class="line"><a name="l00088"></a><span class="lineno"> 88</span> <span class="keywordtype">char</span> *<a class="code" href="ofp-parse_8h.html#ab4e00265df4a1398bd8b71918b653321">parse_ofp_geneve_table_mod_str</a>(<span class="keyword">struct</span> <a class="code" href="structofputil__geneve__table__mod.html">ofputil_geneve_table_mod</a> *,</div>
<div class="line"><a name="l00089"></a><span class="lineno"> 89</span>  <a class="code" href="Types_8h.html#a273cf69d639a59973b6019625df33e30">uint16_t</a> command, <span class="keyword">const</span> <span class="keywordtype">char</span> *<span class="keywordtype">string</span>,</div>
<div class="line"><a name="l00090"></a><span class="lineno"> 90</span>  <span class="keyword">enum</span> <a class="code" href="ofp-util_8h.html#ad6ddb245efe25cc866d15c8560a89374">ofputil_protocol</a> *<a class="code" href="ovs-testcontroller_8c.html#a2af580cfe763faa6f273fb2772dac134">usable_protocols</a>)</div>
<div class="line"><a name="l00091"></a><span class="lineno"> 91</span>  <a class="code" href="include_2openvswitch_2compiler_8h.html#a940a7c6e41803df7ddc67ffcdbe7a278">OVS_WARN_UNUSED_RESULT</a>;</div>
<div class="line"><a name="l00092"></a><span class="lineno"> 92</span> </div>
<div class="line"><a name="l00093"></a><span class="lineno"> 93</span> <span class="keywordtype">char</span> *<a class="code" href="ofp-parse_8h.html#a8605676106c536cd558961ebb1885b02">str_to_u8</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *str, <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="namespacesetup.html#a61de3710bf6c9d78c0afa352263f8b09">name</a>, <a class="code" href="Types_8h.html#aba7bc1797add20fe3efdf37ced1182c5">uint8_t</a> *valuep)</div>
<div class="line"><a name="l00094"></a><span class="lineno"> 94</span>  <a class="code" href="include_2openvswitch_2compiler_8h.html#a940a7c6e41803df7ddc67ffcdbe7a278">OVS_WARN_UNUSED_RESULT</a>;</div>
<div class="line"><a name="l00095"></a><span class="lineno"> 95</span> <span class="keywordtype">char</span> *<a class="code" href="ofp-parse_8h.html#a4603f3776b611699a4b93e260b5494b5">str_to_u16</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *str, <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="namespacesetup.html#a61de3710bf6c9d78c0afa352263f8b09">name</a>, <a class="code" href="Types_8h.html#a273cf69d639a59973b6019625df33e30">uint16_t</a> *valuep)</div>
<div class="line"><a name="l00096"></a><span class="lineno"> 96</span>  <a class="code" href="include_2openvswitch_2compiler_8h.html#a940a7c6e41803df7ddc67ffcdbe7a278">OVS_WARN_UNUSED_RESULT</a>;</div>
<div class="line"><a name="l00097"></a><span class="lineno"> 97</span> <span class="keywordtype">char</span> *<a class="code" href="ofp-parse_8h.html#adf16d083b6b1d10624440c9d7a91930a">str_to_u32</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *str, <a class="code" href="Types_8h.html#a435d1572bf3f880d55459d9805097f62">uint32_t</a> *valuep) <a class="code" href="include_2openvswitch_2compiler_8h.html#a940a7c6e41803df7ddc67ffcdbe7a278">OVS_WARN_UNUSED_RESULT</a>;</div>
<div class="line"><a name="l00098"></a><span class="lineno"> 98</span> <span class="keywordtype">char</span> *<a class="code" href="ofp-parse_8h.html#aff2757ffb98452a1f3fdbc84107900cc">str_to_u64</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *str, <a class="code" href="Types_8h.html#aaa5d1cd013383c889537491c3cfd9aad">uint64_t</a> *valuep) <a class="code" href="include_2openvswitch_2compiler_8h.html#a940a7c6e41803df7ddc67ffcdbe7a278">OVS_WARN_UNUSED_RESULT</a>;</div>
<div class="line"><a name="l00099"></a><span class="lineno"> 99</span> <span class="keywordtype">char</span> *<a class="code" href="ofp-parse_8h.html#aa09aa6cadb70b06b2aaefa5f86aa0790">str_to_be64</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *str, <a class="code" href="Types_8h.html#a21a6961b68d3796ab7879c80ad9281cc">ovs_be64</a> *valuep) <a class="code" href="include_2openvswitch_2compiler_8h.html#a940a7c6e41803df7ddc67ffcdbe7a278">OVS_WARN_UNUSED_RESULT</a>;</div>
<div class="line"><a name="l00100"></a><span class="lineno"> 100</span> <span class="keywordtype">char</span> *<a class="code" href="ofp-parse_8h.html#a20db180d990fcb59a80952fffdeef8ad">str_to_mac</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *str, <span class="keyword">struct</span> <a class="code" href="structeth__addr.html">eth_addr</a> *mac) <a class="code" href="include_2openvswitch_2compiler_8h.html#a940a7c6e41803df7ddc67ffcdbe7a278">OVS_WARN_UNUSED_RESULT</a>;</div>
<div class="line"><a name="l00101"></a><span class="lineno"> 101</span> <span class="keywordtype">char</span> *<a class="code" href="ofp-parse_8h.html#ad10b3636b93c7ffd3362fd567e0e3d43">str_to_ip</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *str, <a class="code" href="Types_8h.html#ae1eb23768e4dd2d6b787d319e31cda8e">ovs_be32</a> *<a class="code" href="datapath_2flow_8h.html#a898dda7a587e3b8e5f8e257c1cea69f6">ip</a>) <a class="code" href="include_2openvswitch_2compiler_8h.html#a940a7c6e41803df7ddc67ffcdbe7a278">OVS_WARN_UNUSED_RESULT</a>;</div>
<div class="line"><a name="l00102"></a><span class="lineno"> 102</span> </div>
<div class="line"><a name="l00103"></a><span class="lineno"> 103</span> <span class="preprocessor">#endif </span><span class="comment">/* ofp-parse.h */</span><span class="preprocessor"></span></div>
<div class="ttc" id="include_2openvswitch_2compiler_8h_html_a940a7c6e41803df7ddc67ffcdbe7a278"><div class="ttname"><a href="include_2openvswitch_2compiler_8h.html#a940a7c6e41803df7ddc67ffcdbe7a278">OVS_WARN_UNUSED_RESULT</a></div><div class="ttdeci">#define OVS_WARN_UNUSED_RESULT</div><div class="ttdef"><b>Definition:</b> compiler.h:48</div></div>
<div class="ttc" id="ofp-parse_8h_html_ad10b3636b93c7ffd3362fd567e0e3d43"><div class="ttname"><a href="ofp-parse_8h.html#ad10b3636b93c7ffd3362fd567e0e3d43">str_to_ip</a></div><div class="ttdeci">char * str_to_ip(const char *str, ovs_be32 *ip) OVS_WARN_UNUSED_RESULT</div><div class="ttdef"><b>Definition:</b> ofp-parse.c:160</div></div>
<div class="ttc" id="ofp-parse_8h_html_aa09aa6cadb70b06b2aaefa5f86aa0790"><div class="ttname"><a href="ofp-parse_8h.html#aa09aa6cadb70b06b2aaefa5f86aa0790">str_to_be64</a></div><div class="ttdeci">char * str_to_be64(const char *str, ovs_be64 *valuep) OVS_WARN_UNUSED_RESULT</div><div class="ttdef"><b>Definition:</b> ofp-parse.c:130</div></div>
<div class="ttc" id="ofp-parse_8h_html_a83e227c9798e6a72027b1c4d53dd6741"><div class="ttname"><a href="ofp-parse_8h.html#a83e227c9798e6a72027b1c4d53dd6741">parse_ofp_flow_mod_file</a></div><div class="ttdeci">char * parse_ofp_flow_mod_file(const char *file_name, int command, struct ofputil_flow_mod **fms, size_t *n_fms, enum ofputil_protocol *usable_protocols) OVS_WARN_UNUSED_RESULT</div><div class="ttdef"><b>Definition:</b> ofp-parse.c:959</div></div>
<div class="ttc" id="Types_8h_html_aba7bc1797add20fe3efdf37ced1182c5"><div class="ttname"><a href="Types_8h.html#aba7bc1797add20fe3efdf37ced1182c5">uint8_t</a></div><div class="ttdeci">unsigned char uint8_t</div><div class="ttdef"><b>Definition:</b> Types.h:26</div></div>
<div class="ttc" id="ofp-parse_8h_html_a4d266c9ee2b86d64d53bec0e5f3e4f80"><div class="ttname"><a href="ofp-parse_8h.html#a4d266c9ee2b86d64d53bec0e5f3e4f80">parse_ofp_flow_stats_request_str</a></div><div class="ttdeci">char * parse_ofp_flow_stats_request_str(struct ofputil_flow_stats_request *, bool aggregate, const char *string, enum ofputil_protocol *usable_protocols) OVS_WARN_UNUSED_RESULT</div><div class="ttdef"><b>Definition:</b> ofp-parse.c:1020</div></div>
<div class="ttc" id="lib_2compiler_8h_html"><div class="ttname"><a href="lib_2compiler_8h.html">compiler.h</a></div></div>
<div class="ttc" id="ofp-parse_8h_html_a4603f3776b611699a4b93e260b5494b5"><div class="ttname"><a href="ofp-parse_8h.html#a4603f3776b611699a4b93e260b5494b5">str_to_u16</a></div><div class="ttdeci">char * str_to_u16(const char *str, const char *name, uint16_t *valuep) OVS_WARN_UNUSED_RESULT</div><div class="ttdef"><b>Definition:</b> ofp-parse.c:67</div></div>
<div class="ttc" id="ofp-parse_8h_html_aff0f6fa601b6adf9620b169c13df42a1"><div class="ttname"><a href="ofp-parse_8h.html#aff0f6fa601b6adf9620b169c13df42a1">parse_flow_monitor_request</a></div><div class="ttdeci">char * parse_flow_monitor_request(struct ofputil_flow_monitor_request *, const char *, enum ofputil_protocol *usable_protocols) OVS_WARN_UNUSED_RESULT</div><div class="ttdef"><b>Definition:</b> ofp-parse.c:848</div></div>
<div class="ttc" id="ofp-parse_8h_html_aff2757ffb98452a1f3fdbc84107900cc"><div class="ttname"><a href="ofp-parse_8h.html#aff2757ffb98452a1f3fdbc84107900cc">str_to_u64</a></div><div class="ttdeci">char * str_to_u64(const char *str, uint64_t *valuep) OVS_WARN_UNUSED_RESULT</div><div class="ttdef"><b>Definition:</b> ofp-parse.c:106</div></div>
<div class="ttc" id="Types_8h_html_ae1eb23768e4dd2d6b787d319e31cda8e"><div class="ttname"><a href="Types_8h.html#ae1eb23768e4dd2d6b787d319e31cda8e">ovs_be32</a></div><div class="ttdeci">unsigned int ovs_be32</div><div class="ttdef"><b>Definition:</b> Types.h:24</div></div>
<div class="ttc" id="Types_8h_html_a21a6961b68d3796ab7879c80ad9281cc"><div class="ttname"><a href="Types_8h.html#a21a6961b68d3796ab7879c80ad9281cc">ovs_be64</a></div><div class="ttdeci">unsigned long long ovs_be64</div><div class="ttdef"><b>Definition:</b> Types.h:22</div></div>
<div class="ttc" id="ofp-util_8h_html_ad6ddb245efe25cc866d15c8560a89374"><div class="ttname"><a href="ofp-util_8h.html#ad6ddb245efe25cc866d15c8560a89374">ofputil_protocol</a></div><div class="ttdeci">ofputil_protocol</div><div class="ttdef"><b>Definition:</b> ofp-util.h:78</div></div>
<div class="ttc" id="Types_8h_html_a273cf69d639a59973b6019625df33e30"><div class="ttname"><a href="Types_8h.html#a273cf69d639a59973b6019625df33e30">uint16_t</a></div><div class="ttdeci">unsigned short uint16_t</div><div class="ttdef"><b>Definition:</b> Types.h:25</div></div>
<div class="ttc" id="structofputil__meter__mod_html"><div class="ttname"><a href="structofputil__meter__mod.html">ofputil_meter_mod</a></div><div class="ttdef"><b>Definition:</b> ofp-util.h:773</div></div>
<div class="ttc" id="structsimap_html"><div class="ttname"><a href="structsimap.html">simap</a></div><div class="ttdef"><b>Definition:</b> simap.h:27</div></div>
<div class="ttc" id="structofputil__flow__mod_html"><div class="ttname"><a href="structofputil__flow__mod.html">ofputil_flow_mod</a></div><div class="ttdef"><b>Definition:</b> ofp-util.h:273</div></div>
<div class="ttc" id="structofpbuf_html"><div class="ttname"><a href="structofpbuf.html">ofpbuf</a></div><div class="ttdef"><b>Definition:</b> ofpbuf.h:55</div></div>
<div class="ttc" id="structofputil__flow__stats__request_html"><div class="ttname"><a href="structofputil__flow__stats__request.html">ofputil_flow_stats_request</a></div><div class="ttdef"><b>Definition:</b> ofp-util.h:330</div></div>
<div class="ttc" id="ofp-parse_8h_html_ab4e00265df4a1398bd8b71918b653321"><div class="ttname"><a href="ofp-parse_8h.html#ab4e00265df4a1398bd8b71918b653321">parse_ofp_geneve_table_mod_str</a></div><div class="ttdeci">char * parse_ofp_geneve_table_mod_str(struct ofputil_geneve_table_mod *, uint16_t command, const char *string, enum ofputil_protocol *usable_protocols) OVS_WARN_UNUSED_RESULT</div><div class="ttdef"><b>Definition:</b> ofp-parse.c:1624</div></div>
<div class="ttc" id="ovs-testcontroller_8c_html_a2af580cfe763faa6f273fb2772dac134"><div class="ttname"><a href="ovs-testcontroller_8c.html#a2af580cfe763faa6f273fb2772dac134">usable_protocols</a></div><div class="ttdeci">static enum ofputil_protocol usable_protocols</div><div class="ttdef"><b>Definition:</b> ovs-testcontroller.c:87</div></div>
<div class="ttc" id="ofp-parse_8h_html_a20db180d990fcb59a80952fffdeef8ad"><div class="ttname"><a href="ofp-parse_8h.html#a20db180d990fcb59a80952fffdeef8ad">str_to_mac</a></div><div class="ttdeci">char * str_to_mac(const char *str, struct eth_addr *mac) OVS_WARN_UNUSED_RESULT</div><div class="ttdef"><b>Definition:</b> ofp-parse.c:147</div></div>
<div class="ttc" id="structofputil__flow__monitor__request_html"><div class="ttname"><a href="structofputil__flow__monitor__request.html">ofputil_flow_monitor_request</a></div><div class="ttdef"><b>Definition:</b> ofp-util.h:918</div></div>
<div class="ttc" id="structofputil__geneve__table__mod_html"><div class="ttname"><a href="structofputil__geneve__table__mod.html">ofputil_geneve_table_mod</a></div><div class="ttdef"><b>Definition:</b> ofp-util.h:1201</div></div>
<div class="ttc" id="structofputil__group__mod_html"><div class="ttname"><a href="structofputil__group__mod.html">ofputil_group_mod</a></div><div class="ttdef"><b>Definition:</b> ofp-util.h:1071</div></div>
<div class="ttc" id="ofp-parse_8h_html_a4a3cef2ff68c11222442db60e14fb904"><div class="ttname"><a href="ofp-parse_8h.html#a4a3cef2ff68c11222442db60e14fb904">parse_ofp_group_mod_file</a></div><div class="ttdeci">char * parse_ofp_group_mod_file(const char *file_name, uint16_t command, struct ofputil_group_mod **gms, size_t *n_gms, enum ofputil_protocol *usable_protocols) OVS_WARN_UNUSED_RESULT</div><div class="ttdef"><b>Definition:</b> ofp-parse.c:1557</div></div>
<div class="ttc" id="ofp-parse_8h_html_a5d66414671f42efa394078392ae0fb79"><div class="ttname"><a href="ofp-parse_8h.html#a5d66414671f42efa394078392ae0fb79">parse_ofp_table_mod</a></div><div class="ttdeci">char * parse_ofp_table_mod(struct ofputil_table_mod *, const char *table_id, const char *flow_miss_handling, uint32_t *usable_versions) OVS_WARN_UNUSED_RESULT</div><div class="ttdef"><b>Definition:</b> ofp-parse.c:896</div></div>
<div class="ttc" id="stdio_8h_html"><div class="ttname"><a href="stdio_8h.html">stdio.h</a></div></div>
<div class="ttc" id="Types_8h_html_a435d1572bf3f880d55459d9805097f62"><div class="ttname"><a href="Types_8h.html#a435d1572bf3f880d55459d9805097f62">uint32_t</a></div><div class="ttdeci">unsigned int uint32_t</div><div class="ttdef"><b>Definition:</b> Types.h:24</div></div>
<div class="ttc" id="datapath_2flow_8h_html_a898dda7a587e3b8e5f8e257c1cea69f6"><div class="ttname"><a href="datapath_2flow_8h.html#a898dda7a587e3b8e5f8e257c1cea69f6">ip</a></div><div class="ttdeci">struct @17::@23 ip</div></div>
<div class="ttc" id="packets_8h_html"><div class="ttname"><a href="packets_8h.html">packets.h</a></div></div>
<div class="ttc" id="ofp-parse_8h_html_a259b70abee8744f0f110c05a4de1189d"><div class="ttname"><a href="ofp-parse_8h.html#a259b70abee8744f0f110c05a4de1189d">parse_ofp_meter_mod_str</a></div><div class="ttdeci">char * parse_ofp_meter_mod_str(struct ofputil_meter_mod *, const char *string, int command, enum ofputil_protocol *usable_protocols) OVS_WARN_UNUSED_RESULT</div><div class="ttdef"><b>Definition:</b> ofp-parse.c:754</div></div>
<div class="ttc" id="structofputil__table__mod_html"><div class="ttname"><a href="structofputil__table__mod.html">ofputil_table_mod</a></div><div class="ttdef"><b>Definition:</b> ofp-util.h:624</div></div>
<div class="ttc" id="ofp-parse_8h_html_a84fcef8b97b43a93c47f20e6ad079664"><div class="ttname"><a href="ofp-parse_8h.html#a84fcef8b97b43a93c47f20e6ad079664">parse_ofp_exact_flow</a></div><div class="ttdeci">char * parse_ofp_exact_flow(struct flow *flow, struct flow *mask, const char *s, const struct simap *portno_names)</div><div class="ttdef"><b>Definition:</b> ofp-parse.c:1060</div></div>
<div class="ttc" id="ofp-parse_8h_html_a8c13fba7fa945858a8918ae156ba707c"><div class="ttname"><a href="ofp-parse_8h.html#a8c13fba7fa945858a8918ae156ba707c">parse_ofp_group_mod_str</a></div><div class="ttdeci">char * parse_ofp_group_mod_str(struct ofputil_group_mod *, uint16_t command, const char *string, enum ofputil_protocol *usable_protocols) OVS_WARN_UNUSED_RESULT</div><div class="ttdef"><b>Definition:</b> ofp-parse.c:1541</div></div>
<div class="ttc" id="structeth__addr_html"><div class="ttname"><a href="structeth__addr.html">eth_addr</a></div><div class="ttdef"><b>Definition:</b> types.h:112</div></div>
<div class="ttc" id="test-rstp_8c_html_a89e7a505203c95130b3355a263a38fe2"><div class="ttname"><a href="test-rstp_8c.html#a89e7a505203c95130b3355a263a38fe2">file_name</a></div><div class="ttdeci">static const char * file_name</div><div class="ttdef"><b>Definition:</b> test-rstp.c:60</div></div>
<div class="ttc" id="namespacesetup_html_a61de3710bf6c9d78c0afa352263f8b09"><div class="ttname"><a href="namespacesetup.html#a61de3710bf6c9d78c0afa352263f8b09">setup.name</a></div><div class="ttdeci">string name</div><div class="ttdef"><b>Definition:</b> setup.py:30</div></div>
<div class="ttc" id="ofp-parse_8h_html_a397f04214719dbe112802eae68a4088f"><div class="ttname"><a href="ofp-parse_8h.html#a397f04214719dbe112802eae68a4088f">parse_ofp_flow_mod_str</a></div><div class="ttdeci">char * parse_ofp_flow_mod_str(struct ofputil_flow_mod *, const char *string, int command, enum ofputil_protocol *usable_protocols) OVS_WARN_UNUSED_RESULT</div><div class="ttdef"><b>Definition:</b> ofp-parse.c:869</div></div>
<div class="ttc" id="structflow_html"><div class="ttname"><a href="structflow.html">flow</a></div><div class="ttdef"><b>Definition:</b> flow.h:94</div></div>
<div class="ttc" id="ofp-parse_8h_html_a3e2346696acc847cfc59494b589bf345"><div class="ttname"><a href="ofp-parse_8h.html#a3e2346696acc847cfc59494b589bf345">parse_ofp_str</a></div><div class="ttdeci">char * parse_ofp_str(struct ofputil_flow_mod *, int command, const char *str_, enum ofputil_protocol *usable_protocols) OVS_WARN_UNUSED_RESULT</div><div class="ttdef"><b>Definition:</b> ofp-parse.c:533</div></div>
<div class="ttc" id="include_2openvswitch_2types_8h_html"><div class="ttname"><a href="include_2openvswitch_2types_8h.html">types.h</a></div></div>
<div class="ttc" id="ofp-parse_8h_html_adf16d083b6b1d10624440c9d7a91930a"><div class="ttname"><a href="ofp-parse_8h.html#adf16d083b6b1d10624440c9d7a91930a">str_to_u32</a></div><div class="ttdeci">char * str_to_u32(const char *str, uint32_t *valuep) OVS_WARN_UNUSED_RESULT</div><div class="ttdef"><b>Definition:</b> ofp-parse.c:83</div></div>
<div class="ttc" id="ofp-parse_8h_html_a8605676106c536cd558961ebb1885b02"><div class="ttname"><a href="ofp-parse_8h.html#a8605676106c536cd558961ebb1885b02">str_to_u8</a></div><div class="ttdeci">char * str_to_u8(const char *str, const char *name, uint8_t *valuep) OVS_WARN_UNUSED_RESULT</div><div class="ttdef"><b>Definition:</b> ofp-parse.c:49</div></div>
<div class="ttc" id="Types_8h_html_aaa5d1cd013383c889537491c3cfd9aad"><div class="ttname"><a href="Types_8h.html#aaa5d1cd013383c889537491c3cfd9aad">uint64_t</a></div><div class="ttdeci">unsigned long long uint64_t</div><div class="ttdef"><b>Definition:</b> Types.h:22</div></div>
</div><!-- fragment --></div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="dir_36ad3adc1aabcd87770fae1b41e5ac14.html">ovs</a></li><li class="navelem"><a class="el" href="dir_915fb0c656ffb8a17b4ec5b2ac3f6404.html">lib</a></li><li class="navelem"><a class="el" href="ofp-parse_8h.html">ofp-parse.h</a></li>
<li class="footer">Generated on Wed Sep 9 2015 19:07:23 for ovs all by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.9.1 </li>
</ul>
</div>
</body>
</html>
|
docs/cvs/classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_rigidbody3_dof_actuator-members.html | sintefneodroid/droid | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.13"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Neodroid: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="neodroidcropped124.png"/></td>
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">Neodroid
 <span id="projectnumber">0.2.0</span>
</div>
<div id="projectbrief">Machine Learning Environment Prototyping Tool</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.13 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_rigidbody3_dof_actuator.html','');});
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="headertitle">
<div class="title">droid.Runtime.Prototyping.Actuators.Rigidbody3DofActuator Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_rigidbody3_dof_actuator.html">droid.Runtime.Prototyping.Actuators.Rigidbody3DofActuator</a>, including all inherited members.</p>
<table class="directory">
<tr class="even"><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_rigidbody3_dof_actuator.html#a4bbf7cb5d04ff02536b76dad31a1aae6">_Angular_Actuators</a></td><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_rigidbody3_dof_actuator.html">droid.Runtime.Prototyping.Actuators.Rigidbody3DofActuator</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_utilities_1_1_game_objects_1_1_prototyping_game_object.html#a44c13e1533869caebba884b955dacdc1">_Custom_Name</a></td><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_utilities_1_1_game_objects_1_1_prototyping_game_object.html">droid.Runtime.Utilities.GameObjects.PrototypingGameObject</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_rigidbody3_dof_actuator.html#a246f902ddc4c05786b8971dad274e7ac">_ForceMode</a></td><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_rigidbody3_dof_actuator.html">droid.Runtime.Prototyping.Actuators.Rigidbody3DofActuator</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_rigidbody3_dof_actuator.html#a61988db339acb3e978955351550b53b9">_Relative_To</a></td><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_rigidbody3_dof_actuator.html">droid.Runtime.Prototyping.Actuators.Rigidbody3DofActuator</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_rigidbody3_dof_actuator.html#a430c544018f1af7af067d225dd6b5426">_Rigidbody</a></td><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_rigidbody3_dof_actuator.html">droid.Runtime.Prototyping.Actuators.Rigidbody3DofActuator</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_actuator.html#af189cb4385dd3153c6992a8c014c11f5">ApplyMotion</a>(IMotion motion)</td><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_actuator.html">droid.Runtime.Prototyping.Actuators.Actuator</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_utilities_1_1_game_objects_1_1_prototyping_game_object.html#a6a496b0c040a1a7b3ffaabe7759cd9b7">Awake</a>()</td><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_utilities_1_1_game_objects_1_1_prototyping_game_object.html">droid.Runtime.Utilities.GameObjects.PrototypingGameObject</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_utilities_1_1_game_objects_1_1_prototyping_game_object.html#a2ef17a75fdee089a8210bc53dbcb97fd">Clear</a>()</td><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_utilities_1_1_game_objects_1_1_prototyping_game_object.html">droid.Runtime.Utilities.GameObjects.PrototypingGameObject</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">virtual</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_actuator.html#af67855f16c74ea4de861ffe157c9749f">EnergyCost</a></td><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_actuator.html">droid.Runtime.Prototyping.Actuators.Actuator</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_actuator.html#a0b11aa54067984db65b82840deb0aadb">EnergySpendSinceReset</a></td><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_actuator.html">droid.Runtime.Prototyping.Actuators.Actuator</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_actuator.html#adfdd39f42cf1891fa88c699ba2342efe">EnvironmentReset</a>()</td><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_actuator.html">droid.Runtime.Prototyping.Actuators.Actuator</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_actuator.html#abf3e3d452c9ceaf19eaa4d4517c65196">GetEnergySpend</a>()</td><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_actuator.html">droid.Runtime.Prototyping.Actuators.Actuator</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_utilities_1_1_game_objects_1_1_prototyping_game_object.html#a957c322c80c1e0b489bd9f0ce5d8badc">Identifier</a></td><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_utilities_1_1_game_objects_1_1_prototyping_game_object.html">droid.Runtime.Utilities.GameObjects.PrototypingGameObject</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_rigidbody3_dof_actuator.html#a264c16519051f3ed3de3361cabaa0851">InnerApplyMotion</a>(IMotion motion)</td><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_rigidbody3_dof_actuator.html">droid.Runtime.Prototyping.Actuators.Rigidbody3DofActuator</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">virtual</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_actuator.html#a7f54189669205aba281ce5ea78a6ac0d">MotionSpace</a></td><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_actuator.html">droid.Runtime.Prototyping.Actuators.Actuator</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_actuator.html#aa8d0111ce7398c07141d633725c4a943">Parent</a></td><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_actuator.html">droid.Runtime.Prototyping.Actuators.Actuator</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_rigidbody3_dof_actuator.html#a473f373acc7153cc77125f5eee7d5698">PrototypingTypeName</a></td><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_rigidbody3_dof_actuator.html">droid.Runtime.Prototyping.Actuators.Rigidbody3DofActuator</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_utilities_1_1_game_objects_1_1_prototyping_game_object.html#a22bacda56b91708e45bca46401d7c3e4">RefreshAwake</a>()</td><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_utilities_1_1_game_objects_1_1_prototyping_game_object.html">droid.Runtime.Utilities.GameObjects.PrototypingGameObject</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_utilities_1_1_game_objects_1_1_prototyping_game_object.html#a5c40d471089c5a4acf71244c62938b65">RefreshStart</a>()</td><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_utilities_1_1_game_objects_1_1_prototyping_game_object.html">droid.Runtime.Utilities.GameObjects.PrototypingGameObject</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_rigidbody3_dof_actuator.html#a46b0c26ae56e8aa654029237d1219e78">RegisterComponent</a>()</td><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_rigidbody3_dof_actuator.html">droid.Runtime.Prototyping.Actuators.Rigidbody3DofActuator</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">virtual</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_actuator.html#a6a846923cca2016e18438e9da6186934">Sample</a>()</td><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_actuator.html">droid.Runtime.Prototyping.Actuators.Actuator</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_rigidbody3_dof_actuator.html#a9be001f76afc62dd9fbaa493af58fce9">Setup</a>()</td><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_rigidbody3_dof_actuator.html">droid.Runtime.Prototyping.Actuators.Rigidbody3DofActuator</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">virtual</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_utilities_1_1_game_objects_1_1_prototyping_game_object.html#a4cf26b33fb24c8311d75e0a4bbbae452">Start</a>()</td><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_utilities_1_1_game_objects_1_1_prototyping_game_object.html">droid.Runtime.Utilities.GameObjects.PrototypingGameObject</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_actuator.html#a4937e076c811dc0977639fb7f3ded6d0">ToString</a>()</td><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_actuator.html">droid.Runtime.Prototyping.Actuators.Actuator</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_actuator.html#a012d4bba9748f9fd430ac430e4a96f9b">UnRegisterComponent</a>()</td><td class="entry"><a class="el" href="classdroid_1_1_runtime_1_1_prototyping_1_1_actuators_1_1_actuator.html">droid.Runtime.Prototyping.Actuators.Actuator</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">virtual</span></td></tr>
</table></div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="footer">Generated by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
</ul>
</div>
</body>
</html>
|
assets/styles/explorer.css | rjsteinert/taktaktak | @charset "utf-8";
/* CSS Document */
.tak_formulario div input[type="text"], .tak_formulario div input[type="password"] {
background: url(../../assets/images/frontend/fondo_camposregistro.png) no-repeat;
width:207px;
padding:15px 0 0 25px;
height:43px;
}
.tak_crearavatar {
margin:60px 0 0 20px;
float:left;
width:304px;
height:300px;
position:relative;
}
.tak_menuauxiliar_buscador input[type="text"] {
background: url(../../assets/images/frontend/buscador_caja.png) no-repeat;
width:118px;
height:20px;
padding:5px 10px 0 25px;
margin:12px 0 0 0;
*margin:-8px 0 0 0;
border:none;
color:#999;
}
.tak_menuauxiliar_buscador input.buscar {
background: url(../../assets/images/frontend/btn_buscador.png) no-repeat;
width:18px;
height:20px;
position:absolute;
z-index:1;
bottom:1px;
left:5px;
border:none;
} |
css/style.css | Makadu/Makadu_site | /*--
Author: W3layouts
Author URL: http://w3layouts.com
License: Creative Commons Attribution 3.0 Unported
License URL: http://creativecommons.org/licenses/by/3.0/
--*/
.center-block {float: none !important}
/*-- header --*/
html,body {
font-family: 'Open Sans', sans-serif;
background:#FFF;
font-size:100%;
}
/*-- header --*/
.head-bg{
min-height: 645px;
}
.header{
background:url(../images/bg.jpg) no-repeat 0px 0px;
background-size: cover;
height: 555px;
position:relative;
}
.head-info{
top: 25%;
left: 24%;
height: auto;
}
.head-info span img{
display:none;
}
.head-text{
text-align: center;
float:left;
width: 57%;
margin: 5em 0 0 10em;
}
.head-text h1{
color: #FFF;
text-align: center;
font-weight: 300;
font-size: 40px;
}
.head-text p{
color:#FFF;
text-align:center;
font-size:20px;
font-weight: 300;
margin: 1em 0;
height: auto;
}
.button-google {
text-align: right;
margin-top: 1em;
margin-bottom: 4em;
float: right;
}
.button-apple {
text-align: left;
margin-top: 1em;
margin-bottom: 4em;
float: right;
}
.button-git {
text-align: center;
margin-top: 1em;
}
}.button {
text-align: center;
margin-top: 3em;
padding:2em;
}
.button a {
color: #FFF;
font-size: 16px;
font-weight: 300;
padding: .5em 1.5em;
background: #58D093;
box-shadow: 0px 2px 0px #3C9066;
border-radius: 7px;
-webkit-border-radius: 7px;
-moz-border-radius: 7px;
-o-border-radius: 7px;
-ms-border-radius: 7px;
}
.button a:hover{
color:#FFF;
text-decoration:none;
background: #425A5A;
box-shadow: 0px 2px 0px #2C3D3D;
transition: .5s all;
-webkit-transition: .5s all;
-moz-transition: .5s all;
-o-transition: .5s all;
-ms-transition: .5s all;
}
.mobile-device{
float:right;
}
/*-- Slider Part starts Here--*/
#slider2,
#slider3 {
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
margin: 0 auto;
}
.rslides_tabs {
list-style: none;
padding: 0;
background: rgba(0,0,0,.25);
box-shadow: 0 0 1px rgba(255,255,255,.3), inset 0 0 5px rgba(0,0,0,1.0);
-moz-box-shadow: 0 0 1px rgba(255,255,255,.3), inset 0 0 5px rgba(0,0,0,1.0);
-webkit-box-shadow: 0 0 1px rgba(255,255,255,.3), inset 0 0 5px rgba(0,0,0,1.0);
font-size: 18px;
list-style: none;
margin: 0 auto 50px;
max-width: 540px;
padding: 10px 0;
text-align: center;
width: 100%;
}
.rslides_tabs li {
display: inline;
float: none;
margin-right: 1px;
list-style-type:none;
}
.rslides_tabs a {
width: auto;
line-height: 20px;
padding: 9px 20px;
height: auto;
background: transparent;
display: inline;
}
.rslides_tabs li:first-child {
margin-left: 0;
}
.rslides_tabs .rslides_here a {
background: rgba(255,255,255,.1);
color: #fff;
font-weight: bold;
}
.events {
list-style: none;
}
.callbacks_container {
position: relative;
float: center;
width: 100%;
max-height:
}
.callbacks {
position: relative;
list-style: none;
overflow: hidden;
width: 100%;
padding: 0;
margin: 0;
}
.callbacks li {
position: absolute;
width: 100%;
left: 0;
top: 0;
}
.callbacks img {
position: relative;
z-index: 1;
height: auto;
border: 0;
}
.callbacks .caption {
display: block;
position: absolute;
z-index: 2;
font-size: 20px;
text-shadow: none;
color: #fff;
left: 0;
right: 0;
padding: 10px 20px;
margin: 0;
max-width: none;
top: 10%;
text-align: center;
}
.callbacks_nav {
position: absolute;
-webkit-tap-highlight-color: rgba(0,0,0,0);
top: 52%;
left: 0;
opacity: 0.7;
z-index: 3;
text-indent: -9999px;
overflow: hidden;
text-decoration: none;
height: 61px;
width: 55px;
background: transparent url("../images/themes.png") no-repeat left top;
margin-top: -65px;
}
.callbacks_nav:active {
opacity: 1.0;
}
.callbacks_nav.next {
left: auto;
background-position: right top;
right: 0;
}
#slider3-pager a {
display: inline-block;
}
#slider3-pager span{
float: left;
}
#slider3-pager span{
width:100px;
height:15px;
background:#fff;
display:inline-block;
border-radius:30em;
opacity:0.6;
}
#slider3-pager .rslides_here a {
background: #FFF;
border-radius:30em;
opacity:1;
}
#slider3-pager a {
padding: 0;
}
#slider3-pager li{
display:inline-block;
}
.rslides {
position: relative;
list-style: none;
overflow: hidden;
width: 100%;
padding: 0;
margin: 0;
}
.rslides li {
-webkit-backface-visibility: hidden;
position: absolute;
display: none;
width: 100%;
left: 0;
top: 0;
}
.rslides li{
position: relative;
display: block;
float: left;
}
.rslides img {
height: auto;
border: 0;
}
.callbacks_tabs{
list-style: none;
position: absolute;
top: 19%;
z-index: 999;
left: 114.1%;
padding: 0;
}
ul.callbacks_tabs.callbacks2_tabs {
display: none;
}
@media screen and (max-width: 600px) {
.callbacks_nav {
top: 47%;
}
}
/*----*/
.callbacks_tabs li{
display:inline-block;
}
.callbacks_tabs a{
visibility: hidden;
}
.callbacks_tabs a:after {
content: "\f111";
font-size:0;
font-family: FontAwesome;
visibility: visible;
display: block;
height:18px;
width:18px;
display:inline-block;
border:2px solid #FFF;
background: #FFF;
border-radius: 30px;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
-o-border-radius: 30px;
-ms-border-radius: 30px;
}
.callbacks_tabs li:nth-child(1) a:before{
content:none;
}
.callbacks_tabs a:before{
content: "\f111";
font-size: 0;
font-family: FontAwesome;
visibility: visible;
display: block;
height: 35px;
width: 0.5px;
display: inline-block;
position: absolute;
left: 8px;
}
.callbacks_here a:after{
border: 2px solid #475B5B;
background: #FFF;
}
/*-- welcome-note --*/
.welcome-note h2{
font-size: 55px;
color: #1E3435;
text-align: center;
margin-bottom: 2em;
}
.welcome-note img{
display: block;
margin-left: auto;
margin-right: auto }
}
.welcome-note {
padding: 4em 0;
height: auto;
margin-top: 4em;
}
.welcome-note p{
font-size: 35px;
color: #1E3435;
text-align: center;
margin: 0 auto;
width: 80%;
font-weight: 400;
line-height: 1.5em;
height: auto;
}
.welcome-center p{
font-size: 28px;
color: #1E3435;
text-align: center;
margin: 0 auto;
width: 80%;
font-weight: 400;
line-height: 1.5em;
height: auto;
}
.welcome-side p{
font-size: 24px;
color: #1E3435;
text-align: center;
margin: 0 auto;
width: 100%;
font-weight: 400;
line-height: 1.5em;
height: auto;
}
.welcome-note ul{
margin-bottom: 2em;
}
.welcome-note li{
font-size: 20px;
color: #1E3435;
text-align: center;
margin: 0 auto;
width: 100%;
font-weight: 400;
line-height: 1.5em;
height: auto;
}
.welcome-note img{
margin-top:2em;
margin-bottom: 3em;
}
.welcome-side img{
margin-top: 3em;
margin-bottom: 0em;
}
/* Grow */
.hvr-grow {
display: inline-block;
vertical-align: middle;
-webkit-transform: translateZ(0);
transform: translateZ(0);
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-moz-osx-font-smoothing: grayscale;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-property: transform;
transition-property: transform;
}
.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
/*-- contact-note --*/
.contact-note h2{
font-size: 35px;
color: #1E3435;
text-align: center;
margin: 0;
}
.contact-note {
padding: 4em 0;
}
.contact-note p{
font-size: 20px;
color: #1E3435;
text-align: center;
margin: 0 auto;
width: 80%;
font-weight: 400;
line-height: 2em;
}
/*-- app --*/
.app{
background:#F0F2F3;
padding: 6em 0;
}
.app-left h3{
font-size: 35px;
color: #203837;
margin: 0;
text-align: center;
font-weight: 300;
}
.app-left p{
font-size: 16px;
color: #203837;
text-align: center;
margin:1em 0;
line-height: 1.8em;
}
iframe {
width: 100%;
min-height: 300px;
}
/*-- app-bottom --*/
.bottom-grids {
background: url(../images/) no-repeat 103px 252px;
padding-bottom: 0em;
}
.app-bottom{
padding: 4em 0;
background: #F5F5F5;
}
.bottom-grid{
text-align:center;
padding: 2em;
}
.bottom-grid img {
margin-bottom: 1.5em;
}
.border{
border: solid 1px #CBCBCB;
margin: 1em auto;
width: 80%;
}
.bottom-grid h4{
font-size:26px;
color:#1E3536;
margin:0;
}
.bottom-grid p{
color:#8E8E8E;
font-size:16px;
margin:1em 0;
}
/*-- footer --*/
.footer{
background: url(../images/bg.jpg) no-repeat 0px 0px;
background-size:cover;
padding: 1em 0;
}
.container.wrap {
width: 90%;
margin: 0 auto;
}
.footer-left{
float:left;
}
.footer-left p{
color:#969696;
font-size:16px;
margin: .5em 0;
}
.footer-left p a{
color:#969696;
}
.footer-left p a:hover{
color:#58D093;
text-decoration:none;
transition: .5s all;
-webkit-transition: .5s all;
-moz-transition: .5s all;
-o-transition: .5s all;
-ms-transition: .5s all;
}
.footer-right{
float:right;
}
.footer-right ul {
padding:0;
margin: 1.5em 0;
}
.footer-right ul li{
display:inline-block;
}
.footer-right ul li a.facebook{
background: url(../images/social-icons.png) no-repeat 0px 0px;
width: 42px;
height: 42px;
display: block;
}
.footer-right ul li a.facebook:hover{
background: url(../images/social-iconshr.png) no-repeat 0px 0px;
transition: .5s all;
-webkit-transition: .5s all;
-moz-transition: .5s all;
-o-transition: .5s all;
-ms-transition: .5s all;
}
.footer-right ul li a.twitter{
background: url(../images/social-icons.png) no-repeat -72px 0px;
width: 42px;
height: 42px;
display: block;
margin: 0 2em;
}
.footer-right ul li a.twitter:hover{
background: url(../images/social-iconshr.png) no-repeat -72px 0px;
transition: .5s all;
-webkit-transition: .5s all;
-moz-transition: .5s all;
-o-transition: .5s all;
-ms-transition: .5s all;
}
.footer-right ul li a.chrome{
background: url(../images/social-icons.png) no-repeat -144px 0px;
width: 42px;
height: 42px;
display: block;
}
.footer-right ul li a.chrome:hover{
background: url(../images/social-iconshr.png) no-repeat -144px 0px;
transition: .5s all;
-webkit-transition: .5s all;
-moz-transition: .5s all;
-o-transition: .5s all;
-ms-transition: .5s all;
}
/*-- to-top --*/
#toTop {
display: none;
text-decoration: none;
position: fixed;
bottom: 14px;
right: 2%;
overflow: hidden;
width: 30px;
height: 30px;
border: none;
text-indent: 100%;
background: url("../images/up-arrow.png") no-repeat 0px 0px;
}
#toTopHover {
width: 30px;
height: 30px;
display: block;
overflow: hidden;
float: right;
opacity: 0;
-moz-opacity: 0;
filter: alpha(opacity=0);
}
/*-- responsive-design --*/
@media (max-width:1440px)
{
.callbacks_tabs {
left: 107%;
}
.team {
background: url(../images/) no-repeat 241px 347px #F5F5F5;
}
}
@media (max-width:1366px)
{
.callbacks_tabs {
left: 105%;
}
}
@media (max-width:1280px)
{
.callbacks_tabs {
left: 102%;
}
.team {
background: url(../images/) no-repeat 166px 347px #F5F5F5;
}
}
@media (max-width:1024px)
{
.head-info {
width: 97%;
height: auto;
}
.head-text {
width: 50%;
height: auto;
}
.callbacks_tabs {
left: 99%;
}
.welcome-note {
padding: 3em 0;
height: auto;
}
.welcome-note p {
width: 62%;
height: auto;
}
.welcome-note li{
width: 62%;
height: auto;
}
.bottom-grids {
background: url(../images/) no-repeat 19px 252px;
}
.team {
background: url(../images/) no-repeat 51px 347px #F5F5F5;
}
.plans-grid {
width: 22%;
}
.plan-text {
width: 52%;
left: 50px;
}
}
@media (max-width:768px)
{
.head-text {
margin: 5em 0 0 5em;
height: auto;
}
.welcome-note {
padding: 1em 0;
height: auto;
}
.welcome-note h2 {
font-size: 60px;
height: auto;
}
.app {
padding: 2em 0;
}
.app-left h3 {
text-align: center;
}
.app-left p {
text-align: center;
}
.button {
text-align: center;
margin: 2em 0;
}
.app-bottom {
padding: 2em 0;
}
.border {
margin: .5em auto;
width: 38%;
}
.bottom-grid h4 {
font-size: 24px;
}
.bottom-grids {
background: url(../images/) no-repeat -27px 774px;
background-size: 106%;
}
.team {
background: url(../images/) no-repeat -11px 357px #F5F5F5;
background-size: 100%;
}
.plans {
padding: 1em 0;
}
.plans-grid {
width: 46%;
margin: 0 1em 5.5em;
}
.plan-text {
width: 34%;
left: 107px;
}
.contact {
padding: 0em 0 2em 0;
}
.contact-info {
width: 83%;
}
form textarea {
min-height: 130px;
}
}
@media (max-width:640px)
{
.header {
height: 737px;;
}
.head-info {
width: 100%;
height: auto;
}
.head-info p {
display: none;
.button-google {
text-align: center;
margin-top: 1em;
margin-bottom: 1em;
float: none;
}
.button-apple {
text-align: center;
margin-top: 1em;
margin-bottom: 1em;
float: none;
}
}
.head-text {
width: 88%;
text-align:center;
float: none;
margin: 0 auto;
height: auto;
}
.head-text h1 {
text-align: center;
}
.head-text p {
text-align: center;
height: auto;
}
.mobile-device {
float: none;
text-align: center;
}
.head-info span img{
display:block;
width: 32%;
margin: 0 auto;
}
.mobile-device img {
display:none;
}
.callbacks_tabs {
left: 93%;
top: 24%;
}
.callbacks_tabs a:after {
height: 15px;
width: 15px;
}
.callbacks_tabs li {
margin: 1em 0;
}
.app-bottom {
padding: 2em 0 0 0;
}
.bottom-grids {
background: url(../images/) no-repeat -27px 737px;
padding-bottom: 4em;
}
.team {
background: url(../images/) no-repeat -11px 388px #F5F5F5;
padding-bottom: 3em;
}
.plans-grid {
width: 45.28%;
margin: 0 1em 4.5em;
}
.plan-text {
width: 35%;
left: 83px;
top: -46px;
}
.plan-text p {
margin: -17px 0 0 13px;
}
.plans-grid-head {
padding: 3em 0 1em 0;
}
.plan-text span {
font-size: 40px;
}
}
@media (max-width:480px)
{
.header {
height: 547px;
}
.head-bg {
min-height: 545px;
}
.head-logo a img {
width: 20%;
}
.head-text p {
overflow: hidden;
height: auto;
}
.button-google {
text-align: center;
margin-top: 0em;
margin-bottom: 0em;
float: none;
}
.button-apple {
text-align: center;
margin-top: 0em;
margin-bottom: 2em;
float: none;
}
.button {
margin: 1em 0 1.5em;
}
.button a {
font-size: 14px;
}
.mobile-device img {
width: 50%;
}
.welcome-note h2 {
font-size: 50px;
height: auto;
}
.welcome-note p {
width: 94%;
overflow: hidden;
height: 64px;
font-size: 16px;
height: auto;
}
.welcome-note li{
width: 94%;
overflow: hidden;
height: 64px;
font-size: 16px;
height: auto;
}
.app-left h3 {
font-size: 26px;
}
.app-left p {
overflow: hidden;
height: 51px;
font-size: 14px;
display: none;
}
.bottom-grid h4 {
font-size: 20px;
}
.bottom-grid p {
font-size: 14px;
margin: 1em auto;
width: 80%;
}
.bottom-grids {
background: url(../images/) no-repeat -5px 782px;
background-size: 100%;
}
.team p.subtext {
overflow: hidden;
height: 45px;
font-size:16px;
}
.u-coma img {
width: 4%;
}
.d-coma img {
width: 4%;
}
.team p {
margin: .5em 0;
}
.plans h3 {
font-size: 26px;
}
.team {
background: url(../images/) no-repeat -2px 275px #F5F5F5;
background-size: 100%;
}
.plans p {
font-size: 14px;
}
.plans-grids {
padding: 4em 0 0 0;
}
.plan-text span {
font-size: 36px;
}
.plan-text {
width: 44%;
left: 56px;
top: -40px;
}
.plan-button {
padding: 2em 0;
}
.plan-button a {
font-size: 14px;
}
.plans-grid {
width: 43.53%;
}
.contact-info h3 {
font-size: 26px;
}
.contact-info p {
font-size: 16px;
}
form input[type="text"] {
font-size: 16px;
}
form textarea {
text-indent: 16px;
min-height: 110px;
}
form input[type="submit"] {
font-size: 16px;
}
.footer-left a img {
width: 37%;
}
.footer-left p {
font-size: 14px;
}
.footer-right ul {
margin: 1.5em 0;
}
.footer-right ul li a.facebook {
background: url(../images/social-icons.png) no-repeat 5px 0px;
width: 41px;
height: 30px;
background-size: 321%;
}
.footer-right ul li a.facebook:hover {
background: url(../images/social-iconshr.png) no-repeat 5px 0px;
background-size: 321%;
}
.footer-right ul li a.twitter {
background: url(../images/social-icons.png) no-repeat -47px 0px;
width: 41px;
height: 30px;
margin: 0 0em;
background-size: 321%;
}
.footer-right ul li a.twitter:hover {
background: url(../images/social-iconshr.png) no-repeat -47px 0px;
background-size: 321%;
}
.footer-right ul li a.chrome {
background: url(../images/social-icons.png) no-repeat -98px 0px;
width: 41px;
height: 30px;
background-size: 321%;
}
.footer-right ul li a.chrome:hover {
background: url(../images/social-iconshr.png) no-repeat -98px 0px;
background-size: 321%;
}
}
@media (max-width:320px)
{
.head-logo a img {
width: 26%;
}
.head-info span img {
width: 54%;
margin: 1em auto;
}
.head-text h1 {
font-size: 26px;
}
.button a {
padding: .5em 1em;
}
.callbacks_tabs li {
margin: 0em 0;
}
.mobile-device img {
width: 66%;
}
.header {
height: 532px;
}
.head-bg {
min-height: 531px;
}
.welcome-note h2 {
font-size: 36px;
}
.welcome-note p {
height: 47px;
line-height: 2.5em;
}
.welcome-note li {
height: 47px;
line-height: 2.5em;
}
iframe {
min-height: 137px;
}
.app {
padding: 1em 0;
}
.app-left h3 {
font-size: 20px;
}
.app-left p {
margin: .5em 0;
line-height: 1.5em;
height: 43px;
}
.bottom-grid img {
margin-bottom: .5em;
width: 19%;
}
.bottom-grid h4 {
font-size: 18px;
}
.bottom-grid p {
margin: .8em auto;
}
.border {
width: 71%;
}
.bottom-grids {
background: url(../images/) no-repeat -31px 592px;
padding-bottom: 3em;
background-size: 120%;
}
.team p {
font-size: 18px;
margin: .5em 0 0 0;
}
.team p.subtext {
height: 43px;
font-size: 14px;
}
.plans {
padding: .5em 0;
}
.plans h3 {
font-size: 22px;
}
.plans p {
width: 100%;
font-size: 14px;
}
.plans-grids {
padding: 3em 0 0 0;
}
.plans-grid {
width: 44.85%;
margin: 0 .5em 4em;
}
.plans-grid h4 {
font-size: 22px;
}
.plans-grid-bottom span {
font-size: 11px;
}
.plan-text span {
font-size: 36px;
}
.plan-text {
width: 68%;
left: 20px;
}
.plan-button a {
padding: .3em 0.5em;
}
.plans-grid-bottom p {
padding: .5em 0;
}
.plan-button {
padding: 1em 0;
}
.contact-info h3 {
font-size: 22px;
}
.contact-info p {
margin: .5em 0;
}
.contact-info {
width: 100%;
}
form input[type="text"] {
margin-bottom: 1em;
font-size: 14px;
}
form textarea {
font-size: 14px;
min-height: 72px;
}
form input[type="submit"] {
font-size: 14px;
padding: .3em 2em;
}
.footer-left a img {
width: 30%;
}
.text-field-email {
float: none;
width: 100%;
}
.text-field-name {
float: none;
width: 100%;
}
.container.wrap {
width: 100%;
}
.footer-left {
float: none;
text-align: center;
}
.footer-right {
float: none;
text-align: center;
}
.footer-right ul {
margin: .5em 0;
}
.footer {
padding: 0.5em 0;
}
#toTop {
width: 21px;
height: 21px;
background-size: 100%;
}
} |
docs/2021.1.0-RELEASE-KOTLIN/zircon.core/zircon.core/org.hexworks.zircon.internal.data/-default-character-tile/copy.html | Hexworks/zircon | <html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>copy</title>
<link href="../../../images/logo-icon.svg" rel="icon" type="image/svg">
<script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async="async"></script>
<link href="../../../styles/style.css" rel="Stylesheet">
<link href="../../../styles/logo-styles.css" rel="Stylesheet">
<link href="../../../styles/jetbrains-mono.css" rel="Stylesheet">
<link href="../../../styles/main.css" rel="Stylesheet">
<script type="text/javascript" src="../../../scripts/clipboard.js" async="async"></script>
<script type="text/javascript" src="../../../scripts/navigation-loader.js" async="async"></script>
<script type="text/javascript" src="../../../scripts/platform-content-handler.js" async="async"></script>
<script type="text/javascript" src="../../../scripts/main.js" async="async"></script>
</head>
<body>
<div id="container">
<div id="leftColumn">
<div id="logo"></div>
<div id="paneSearch"></div>
<div id="sideMenu"></div>
</div>
<div id="main">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<script type="text/javascript" src="../../../scripts/pages.js"></script>
<script type="text/javascript" src="../../../scripts/main.js"></script>
<div class="main-content" id="content" pageIds="org.hexworks.zircon.internal.data/DefaultCharacterTile/copy/#kotlin.Char#org.hexworks.zircon.api.graphics.StyleSet/PointingToDeclaration//-755115832">
<div class="navigation-wrapper" id="navigation-wrapper">
<div class="breadcrumbs"><a href="../../index.html">zircon.core</a>/<a href="../index.html">org.hexworks.zircon.internal.data</a>/<a href="index.html">DefaultCharacterTile</a>/<a href="copy.html">copy</a></div>
<div class="pull-right d-flex">
<div class="filter-section" id="filter-section"><button class="platform-tag platform-selector common-like" data-active="" data-filter=":zircon.core:dokkaHtml/commonMain">common</button></div>
<div id="searchBar"></div>
</div>
</div>
<div class="cover ">
<h1 class="cover"><span>copy</span></h1>
</div>
<div class="divergent-group" data-filterable-current=":zircon.core:dokkaHtml/commonMain" data-filterable-set=":zircon.core:dokkaHtml/commonMain"><div class="with-platform-tags"><span class="pull-right"></span></div>
<div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":zircon.core:dokkaHtml/commonMain"><div class="symbol monospace">fun <a href="copy.html">copy</a>(character: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-char/index.html">Char</a>, styleSet: <a href="../../org.hexworks.zircon.api.graphics/-style-set/index.html">StyleSet</a> = StyleSet.defaultStyle()): <a href="index.html">DefaultCharacterTile</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
<h2 class="">Sources</h2>
<div class="table" data-togglable="Sources"><a data-name="%5Borg.hexworks.zircon.internal.data%2FDefaultCharacterTile%2Fcopy%2F%23kotlin.Char%23org.hexworks.zircon.api.graphics.StyleSet%2FPointingToDeclaration%2F%5D%2FSource%2F-755115832" anchor-label="https://github.com/Hexworks/zircon/tree/master/zircon.core/src/commonMain/kotlin/org/hexworks/zircon/internal/data/DefaultCharacterTile.kt#L6" id="%5Borg.hexworks.zircon.internal.data%2FDefaultCharacterTile%2Fcopy%2F%23kotlin.Char%23org.hexworks.zircon.api.graphics.StyleSet%2FPointingToDeclaration%2F%5D%2FSource%2F-755115832" data-filterable-set=":zircon.core:dokkaHtml/commonMain"></a>
<div class="table-row" data-filterable-current=":zircon.core:dokkaHtml/commonMain" data-filterable-set=":zircon.core:dokkaHtml/commonMain">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex"><a href="https://github.com/Hexworks/zircon/tree/master/zircon.core/src/commonMain/kotlin/org/hexworks/zircon/internal/data/DefaultCharacterTile.kt#L6">(source)</a><span class="anchor-wrapper"><span class="anchor-icon" pointing-to="%5Borg.hexworks.zircon.internal.data%2FDefaultCharacterTile%2Fcopy%2F%23kotlin.Char%23org.hexworks.zircon.api.graphics.StyleSet%2FPointingToDeclaration%2F%5D%2FSource%2F-755115832"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div></div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content"></a></span><span>© 2020 Copyright</span><span class="pull-right"><span>Sponsored and developed by dokka</span><a href="https://github.com/Kotlin/dokka"><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body>
</html>
|
Bootstrap3/布局相关/偏移列.html | ijlhjj/webclient | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Bootstrap Template</title>
<link href="../css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-6 col-md-offset-3" style="background-color:#dedef8; box-shadow:inset 1px -1px 1px #444, inset -1px 1px 1px #444;">
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
</p>
</div>
</div>
</div>
<script src="../js/jquery.min.js"></script>
<script src="../js/bootstrap.min.js"></script>
</body>
</html> |
前端练习/11面向对象/面向对象三个特征/09_02实战-计算周长对象继承实现.html | puyanLiu/LPYFramework | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
</head>
<body>
</body>
</html>
<script>
var sharp = function(name){
this.name = name;
}
sharp.prototype = {
//改方法被继承,这个方法是大家都有的,并且都一样,可以放在基类中
getName : function(){
return this.name;
}
//会根据不同的形状而被重写
,zhouchang : function(){
return 100;
}
};
//矩形对象
var Rectangle = function(length,width){
sharp.call(this, name);
this.name='矩形';
this.length =length;
this.width = width;
}
//重写计算周长的方法
Rectangle.prototype = new sharp();
Rectangle.prototype.zhouchang = function(){
return (this.length + this.width) * 2;
}
//好处
//以后新增一个计算其他形状的需求,不用修改原来的代码,只需要扩充即可.
//新增一个正方形
var Square = function(length){
sharp.call(this, name);
this.name='正方形';
this.length =length;
//this.width = width;
}
//重写计算周长的方法
Square.prototype = new sharp();
Square.prototype.zhouchang = function(){
return this.length * 4;
}
//新增一个圆形
var Circle = function(radius){
sharp.call(this, name);
this.name='圆形';
this.radius =radius;
//this.width = width;
}
//重写计算周长的方法
Circle.prototype = new sharp();
Circle.prototype.zhouchang = function(){
//圆的周长=2×圆周率×半径 或 圆周率×直径
return 2 * Math.PI * this.radius;
}
//使用对象 封装
function computezhouchang(shape) {
console.log( shape.getName() + '的周长是' + shape.zhouchang() );
}
//组装世界
//var rectangle = new Rectangle('矩形',10,20);
//computezhouchang(rectangle);
//去掉属性name
var rectangle = new Rectangle(10,20);
computezhouchang(rectangle);
//正方形
var square = new Square(10);
computezhouchang(square);
//圆形
var circle = new Circle(10);
computezhouchang(circle);
// var Rectangle = function(name,length,width){
// sharp.call(this, name);
// this.length =length;
// this.width = width;
// }
// Rectangle.prototype = new sharp();
// Rectangle.prototype.zhouchang = function(){
// return (this.length + this.width) * 2;
// }
// function computezhouchang(shape) {
// console.log( shape.getName() + '的周长是' + shape.zhouchang() );
// }
// var rectangle = new Rectangle('矩形',10,20);
// computezhouchang(rectangle);
</script> |
Dependencies/bgfx/docs/javadoc/org/lwjgl/bgfx/BGFXCaptureBeginCallback.html | VirtualGamer/SnowEngine | <!DOCTYPE HTML>
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (9-ea) on Sun Oct 30 18:52:44 UTC 2016 -->
<title>BGFXCaptureBeginCallback (LWJGL 3.1.0 - bgfx)</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="dc.created" content="2016-10-30">
<link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
<script type="text/javascript" src="../../../jquery/jszip/dist/jszip.min.js"></script>
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
<!--[if IE]>
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
<![endif]-->
<script type="text/javascript" src="../../../jquery/jquery-1.10.2.js"></script>
<script type="text/javascript" src="../../../jquery/jquery-ui.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="BGFXCaptureBeginCallback (LWJGL 3.1.0 - bgfx)";
}
}
catch(err) {
}
//-->
var methods = {"i0":9,"i1":9};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
var pathtoroot = "../../../";loadScripts(document, 'script');</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<header role="banner">
<nav role="navigation">
<div class="fixedNav">
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a id="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a id="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../org/lwjgl/bgfx/package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../org/lwjgl/bgfx/BGFXCapsLimits.Buffer.html" title="class in org.lwjgl.bgfx"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../org/lwjgl/bgfx/BGFXCaptureBeginCallbackI.html" title="interface in org.lwjgl.bgfx"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?org/lwjgl/bgfx/BGFXCaptureBeginCallback.html" target="_top">Frames</a></li>
<li><a href="BGFXCaptureBeginCallback.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>
<ul class="navListSearch">
<li><span>SEARCH: </span>
<input type="text" id="search" value=" " disabled="disabled">
<input type="reset" id="reset" value=" " disabled="disabled">
</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>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a id="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
</div>
<div class="navPadding"> </div>
</nav>
</header>
<!-- ======== START OF CLASS DATA ======== -->
<main role="main">
<div class="header">
<div class="subTitle"><span class="packageLabelInClass">Package</span> <a href="../../../org/lwjgl/bgfx/package-summary.html" target="classFrame">org.lwjgl.bgfx</a></div>
<h2 title="Class BGFXCaptureBeginCallback" class="title">Class BGFXCaptureBeginCallback</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>org.lwjgl.system.Callback</li>
<li>
<ul class="inheritance">
<li>org.lwjgl.bgfx.BGFXCaptureBeginCallback</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>java.lang.AutoCloseable, <a href="../../../org/lwjgl/bgfx/BGFXCaptureBeginCallbackI.html" title="interface in org.lwjgl.bgfx">BGFXCaptureBeginCallbackI</a>, org.lwjgl.system.CallbackI, org.lwjgl.system.CallbackI.V, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer</dd>
</dl>
<hr>
<br>
<pre>public abstract class <span class="typeNameLabel">BGFXCaptureBeginCallback</span>
extends org.lwjgl.system.Callback
implements <a href="../../../org/lwjgl/bgfx/BGFXCaptureBeginCallbackI.html" title="interface in org.lwjgl.bgfx">BGFXCaptureBeginCallbackI</a></pre>
<div class="block">Called when capture begins.</div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="nested.class.summary">
<!-- -->
</a>
<h3>Nested Class Summary</h3>
<ul class="blockList">
<li class="blockList"><a id="nested.classes.inherited.from.class.org.lwjgl.system.CallbackI">
<!-- -->
</a>
<h3>Nested classes/interfaces inherited from interface org.lwjgl.system.CallbackI</h3>
<code>org.lwjgl.system.CallbackI.B, org.lwjgl.system.CallbackI.D, org.lwjgl.system.CallbackI.F, org.lwjgl.system.CallbackI.I, org.lwjgl.system.CallbackI.J, org.lwjgl.system.CallbackI.P, org.lwjgl.system.CallbackI.S, org.lwjgl.system.CallbackI.V, org.lwjgl.system.CallbackI.Z</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a id="nested.classes.inherited.from.class.org.lwjgl.system.Pointer">
<!-- -->
</a>
<h3>Nested classes/interfaces inherited from interface org.lwjgl.system.Pointer</h3>
<code>org.lwjgl.system.Pointer.Default</code></li>
</ul>
</li>
</ul>
</section>
<!-- =========== FIELD SUMMARY =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="field.summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<ul class="blockList">
<li class="blockList"><a id="fields.inherited.from.class.org.lwjgl.bgfx.BGFXCaptureBeginCallbackI">
<!-- -->
</a>
<h3>Fields inherited from interface org.lwjgl.bgfx.<a href="../../../org/lwjgl/bgfx/BGFXCaptureBeginCallbackI.html" title="interface in org.lwjgl.bgfx">BGFXCaptureBeginCallbackI</a></h3>
<code><a href="../../../org/lwjgl/bgfx/BGFXCaptureBeginCallbackI.html#SIGNATURE">SIGNATURE</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a id="fields.inherited.from.class.org.lwjgl.system.Pointer">
<!-- -->
</a>
<h3>Fields inherited from interface org.lwjgl.system.Pointer</h3>
<code>POINTER_SHIFT, POINTER_SIZE</code></li>
</ul>
</li>
</ul>
</section>
<!-- ========== METHOD SUMMARY =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>static <a href="../../../org/lwjgl/bgfx/BGFXCaptureBeginCallback.html" title="class in org.lwjgl.bgfx">BGFXCaptureBeginCallback</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../org/lwjgl/bgfx/BGFXCaptureBeginCallback.html#create-org.lwjgl.bgfx.BGFXCaptureBeginCallbackI-">create</a></span>(<a href="../../../org/lwjgl/bgfx/BGFXCaptureBeginCallbackI.html" title="interface in org.lwjgl.bgfx">BGFXCaptureBeginCallbackI</a> instance)</code>
<div class="block">Creates a <code>BGFXCaptureBeginCallback</code> instance that delegates to the specified <code>BGFXCaptureBeginCallbackI</code> instance.</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>static <a href="../../../org/lwjgl/bgfx/BGFXCaptureBeginCallback.html" title="class in org.lwjgl.bgfx">BGFXCaptureBeginCallback</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../org/lwjgl/bgfx/BGFXCaptureBeginCallback.html#create-long-">create</a></span>(long functionPointer)</code>
<div class="block">Creates a <code>BGFXCaptureBeginCallback</code> instance from the specified function pointer.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.org.lwjgl.system.Callback">
<!-- -->
</a>
<h3>Methods inherited from class org.lwjgl.system.Callback</h3>
<code>__stdcall, address, equals, free, free, get, hashCode, toString</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>getClass, notify, notifyAll, wait, wait, wait</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.org.lwjgl.bgfx.BGFXCaptureBeginCallbackI">
<!-- -->
</a>
<h3>Methods inherited from interface org.lwjgl.bgfx.<a href="../../../org/lwjgl/bgfx/BGFXCaptureBeginCallbackI.html" title="interface in org.lwjgl.bgfx">BGFXCaptureBeginCallbackI</a></h3>
<code><a href="../../../org/lwjgl/bgfx/BGFXCaptureBeginCallbackI.html#callback-long-">callback</a>, <a href="../../../org/lwjgl/bgfx/BGFXCaptureBeginCallbackI.html#getSignature--">getSignature</a>, <a href="../../../org/lwjgl/bgfx/BGFXCaptureBeginCallbackI.html#invoke-long-int-int-int-int-boolean-">invoke</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.org.lwjgl.system.CallbackI">
<!-- -->
</a>
<h3>Methods inherited from interface org.lwjgl.system.CallbackI</h3>
<code>address</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.org.lwjgl.system.NativeResource">
<!-- -->
</a>
<h3>Methods inherited from interface org.lwjgl.system.NativeResource</h3>
<code>close</code></li>
</ul>
</li>
</ul>
</section>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a id="create-long-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>create</h4>
<pre>public static <a href="../../../org/lwjgl/bgfx/BGFXCaptureBeginCallback.html" title="class in org.lwjgl.bgfx">BGFXCaptureBeginCallback</a> create(long functionPointer)</pre>
<div class="block">Creates a <code>BGFXCaptureBeginCallback</code> instance from the specified function pointer.</div>
</li>
</ul>
<a id="create-org.lwjgl.bgfx.BGFXCaptureBeginCallbackI-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>create</h4>
<pre>public static <a href="../../../org/lwjgl/bgfx/BGFXCaptureBeginCallback.html" title="class in org.lwjgl.bgfx">BGFXCaptureBeginCallback</a> create(<a href="../../../org/lwjgl/bgfx/BGFXCaptureBeginCallbackI.html" title="interface in org.lwjgl.bgfx">BGFXCaptureBeginCallbackI</a> instance)</pre>
<div class="block">Creates a <code>BGFXCaptureBeginCallback</code> instance that delegates to the specified <code>BGFXCaptureBeginCallbackI</code> instance.</div>
</li>
</ul>
</li>
</ul>
</section>
</li>
</ul>
</div>
</div>
</main>
<!-- ========= END OF CLASS DATA ========= -->
<footer role="contentinfo">
<nav role="navigation">
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a id="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a id="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../org/lwjgl/bgfx/package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../org/lwjgl/bgfx/BGFXCapsLimits.Buffer.html" title="class in org.lwjgl.bgfx"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../org/lwjgl/bgfx/BGFXCaptureBeginCallbackI.html" title="interface in org.lwjgl.bgfx"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?org/lwjgl/bgfx/BGFXCaptureBeginCallback.html" target="_top">Frames</a></li>
<li><a href="BGFXCaptureBeginCallback.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>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a id="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</nav>
<p class="legalCopy"><small><i>Copyright LWJGL. All Rights Reserved. <a href="https://www.lwjgl.org/license">License terms</a>.</i></small></p>
</footer>
</body>
</html>
|
ssm-demo/WebRoot/css/tab.css | ZHENFENG13/ssm-demo | #item_hd, #order_hd {
height: 47px;
margin: 16px 0;
padding-left: 650px
}
#item_search_wrap, #order_search_wrap {
height: 45px;
border: 1px solid #b5b5bc;
border-radius: 4px
}
#item_search_key, #order_search_key {
height: 45px;
border: none;
border-radius: 4px;
background: url(../images/search_icon.png) 10px center no-repeat #fff;
text-indent: 40px
}
#item_search_hd, #order_search_hd {
text-indent: 20px;
margin: 16px 0
}
#tab_ul {
left: 0;
top: 0;
margin: 0;
width: 600px;
height: 45px;
line-height: 45px;
border-top: 1px solid #b5b5bc;
border-bottom: 1px solid #b5b5bc;
border-left: 1px solid #b5b5bc;
border-radius: 4px;
box-shadow: 0 1px 2px #999;
background: -webkit-gradient(linear, 50% 0, 50% 100%, from(#fff),
to(#f9f9fb));
background: -webkit-linear-gradient(90deg, #f9f9fb, #fff);
background: -moz-linear-gradient(90deg, #f9f9fb, #fff);
background: -o-linear-gradient(90deg, #f9f9fb, #fff)
}
.tab_li {
width: 149px;
height: 100%;
border-right: 1px solid #b5b5bc;
display: block
}
.current_tab_li {
background-color: #414141;
color: #fff
}
.tab_arrow_down, .tab_arrow_up {
width: 0;
height: 0;
border-style: solid;
right: 16px
}
.tab_arrow_up {
border-width: 0 4px 6px;
border-color: transparent transparent #414141;
top: 16px
}
.tab_arrow_down {
border-width: 6px 4px 0;
border-color: #414141 transparent transparent;
top: 24px
}
.current_tab_li .tab_arrow_up {
border-color: transparent transparent #fff
}
.current_tab_li .tab_arrow_down {
border-color: #fff transparent transparent
}
.current_tab_arrow_up {
border-color: transparent transparent #cd312d !important
}
.current_tab_arrow_down {
border-color: #cd312d transparent transparent !important
}
#list_wrap {
padding: 0 15px;
box-shadow: 1px 1px 1px 1px #e2e2e4;
background-color: #fff;
}
#list_hd, #list_page, #list_ul, .list_li {
display: block
}
#list_hd {
height: 54px
}
.list_hd_lineH {
padding: 0 !important;
line-height: 54px !important
}
#list_hd_line {
width: 100%;
height: 1px;
background-color: #bfbfbf;
overflow: hidden;
top: 54px;
left: 0
}
.list_li {
padding: 15px 0;
border-bottom: 1px dashed #dadae0
}
.del_item {
cursor: pointer
}
#list_page {
height: 40px;
padding: 24px 0
}
#next_page, #prev_page {
width: 110px;
height: 30px;
line-height: 30px;
margin: 0 5px
}
#prev_page a:hover {
width: 95px;
height: 30px;
line-height: 30px;
margin: 0 5px;
}
#page_num {
padding: 0 10px;
height: 30px;
line-height: 30px;
border: 1px solid #babac0;
border-radius: 4px
}
#list_loading {
width: 100%;
height: 110px;
display: block
} |
_includes/gallery.html | Luke-Holly/Sampson-the-Longhorn-Website | <div id="blueimp-gallery" class="blueimp-gallery">
<div class="slides"></div>
<h3 class="title"></h3>
<a class="prev">‹</a>
<a class="next">›</a>
<a class="close">×</a>
<a class="play-pause"></a>
<ol class="indicator"></ol>
</div>
<div align="center" style="max-width:80%;">
<div id="links">
<a href="http://placehold.it/400x400" title="Banana">
<img src="http://placehold.it/150x150" alt="Placeholder">
</a>
<a href="http://placehold.it/400x400" title="Banana">
<img src="http://placehold.it/150x150" alt="Placeholder">
</a>
<a href="http://placehold.it/400x400" title="Banana">
<img src="http://placehold.it/150x150" alt="Placeholder">
</a>
<a href="http://placehold.it/400x400" title="Banana">
<img src="http://placehold.it/150x150" alt="Placeholder">
</a>
<a href="http://placehold.it/400x400" title="Banana">
<img src="http://placehold.it/150x150" alt="Placeholder">
</a>
<a href="http://placehold.it/400x400" title="Banana">
<img src="http://placehold.it/150x150" alt="Placeholder">
</a>
<a href="http://placehold.it/400x400" title="Banana">
<img src="http://placehold.it/150x150" alt="Placeholder">
</a>
<a href="http://placehold.it/400x400" title="Banana">
<img src="http://placehold.it/150x150" alt="Placeholder">
</a>
<a href="http://placehold.it/400x400" title="Banana">
<img src="http://placehold.it/150x150" alt="Placeholder">
</a>
<a href="http://placehold.it/400x400" title="Banana">
<img src="http://placehold.it/150x150" alt="Placeholder">
</a>
<a href="http://placehold.it/400x400" title="Banana">
<img src="http://placehold.it/150x150" alt="Placeholder">
</a>
<a href="http://placehold.it/400x400" title="Banana">
<img src="http://placehold.it/150x150" alt="Placeholder">
</a>
<a href="http://placehold.it/400x400" title="Banana">
<img src="http://placehold.it/150x150" alt="Placeholder">
</a>
<a href="http://placehold.it/400x400" title="Banana">
<img src="http://placehold.it/150x150" alt="Placeholder">
</a>
<a href="http://placehold.it/400x400" title="Banana">
<img src="http://placehold.it/150x150" alt="Placeholder">
</a>
<a href="http://placehold.it/400x400" title="Banana">
<img src="http://placehold.it/150x150" alt="Placeholder">
</a>
<a href="http://placehold.it/400x400" title="Banana">
<img src="http://placehold.it/150x150" alt="Placeholder">
</a>
<a href="http://placehold.it/400x400" title="Banana">
<img src="http://placehold.it/150x150" alt="Placeholder">
</a>
<a href="http://placehold.it/400x400" title="Banana">
<img src="http://placehold.it/150x150" alt="Placeholder">
</a>
<a href="http://placehold.it/400x400" title="Banana">
<img src="http://placehold.it/150x150" alt="Placeholder">
</a>
<a href="http://placehold.it/400x400" title="Banana">
<img src="http://placehold.it/150x150" alt="Placeholder">
</a>
<a href="http://placehold.it/400x400" title="Banana">
<img src="http://placehold.it/150x150" alt="Placeholder">
</a>
</div>
</dv>
|
web/application/src/main/java/org/artifactory/webapp/wicket/page/deploy/DeployArtifactPage.html | alancnet/artifactory | <wicket:extend>
<div wicket:id="deployArtifactPanel"></div>
</wicket:extend> |
workspace/myproject/myproject/templates/example/admin_3_rounded/page_general_about.html | liangazhou/django-rdp | <!DOCTYPE html>
<!--
Template Name: Metronic - Responsive Admin Dashboard Template build with Twitter Bootstrap 3.3.5
Version: 4.5.2
Author: KeenThemes
Website: http://www.keenthemes.com/
Contact: support@keenthemes.com
Follow: www.twitter.com/keenthemes
Like: www.facebook.com/keenthemes
Purchase: http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes
License: You must have a valid license purchased only from themeforest(the above link) in order to legally use the theme for your project.
-->
<!--[if IE 8]> <html lang="en" class="ie8 no-js"> <![endif]-->
<!--[if IE 9]> <html lang="en" class="ie9 no-js"> <![endif]-->
<!--[if !IE]><!-->
<html lang="en">
<!--<![endif]-->
<!-- BEGIN HEAD -->
<head>
<meta charset="utf-8" />
<title>Metronic | About Us</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="width=device-width, initial-scale=1" name="viewport" />
<meta content="" name="description" />
<meta content="" name="author" />
<!-- BEGIN GLOBAL MANDATORY STYLES -->
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700&subset=all" rel="stylesheet" type="text/css" />
<link href="../assets/global/plugins/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
<link href="../assets/global/plugins/simple-line-icons/simple-line-icons.min.css" rel="stylesheet" type="text/css" />
<link href="../assets/global/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="../assets/global/plugins/uniform/css/uniform.default.css" rel="stylesheet" type="text/css" />
<link href="../assets/global/plugins/bootstrap-switch/css/bootstrap-switch.min.css" rel="stylesheet" type="text/css" />
<!-- END GLOBAL MANDATORY STYLES -->
<!-- BEGIN THEME GLOBAL STYLES -->
<link href="../assets/global/css/components-rounded.min.css" rel="stylesheet" id="style_components" type="text/css" />
<link href="../assets/global/css/plugins.min.css" rel="stylesheet" type="text/css" />
<!-- END THEME GLOBAL STYLES -->
<!-- BEGIN PAGE LEVEL STYLES -->
<link href="../assets/pages/css/about.min.css" rel="stylesheet" type="text/css" />
<!-- END PAGE LEVEL STYLES -->
<!-- BEGIN THEME LAYOUT STYLES -->
<link href="../assets/layouts/layout3/css/layout.min.css" rel="stylesheet" type="text/css" />
<link href="../assets/layouts/layout3/css/themes/default.min.css" rel="stylesheet" type="text/css" id="style_color" />
<link href="../assets/layouts/layout3/css/custom.min.css" rel="stylesheet" type="text/css" />
<!-- END THEME LAYOUT STYLES -->
<link rel="shortcut icon" href="favicon.ico" /> </head>
<!-- END HEAD -->
<body class="page-container-bg-solid page-boxed">
<!-- BEGIN HEADER -->
<div class="page-header">
<!-- BEGIN HEADER TOP -->
<div class="page-header-top">
<div class="container">
<!-- BEGIN LOGO -->
<div class="page-logo">
<a href="index.html">
<img src="../assets/layouts/layout3/img/logo-default.jpg" alt="logo" class="logo-default">
</a>
</div>
<!-- END LOGO -->
<!-- BEGIN RESPONSIVE MENU TOGGLER -->
<a href="javascript:;" class="menu-toggler"></a>
<!-- END RESPONSIVE MENU TOGGLER -->
<!-- BEGIN TOP NAVIGATION MENU -->
<div class="top-menu">
<ul class="nav navbar-nav pull-right">
<!-- BEGIN NOTIFICATION DROPDOWN -->
<li class="dropdown dropdown-extended dropdown-notification dropdown-dark" id="header_notification_bar">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true">
<i class="icon-bell"></i>
<span class="badge badge-default">7</span>
</a>
<ul class="dropdown-menu">
<li class="external">
<h3>You have
<strong>12 pending</strong> tasks</h3>
<a href="app_todo.html">view all</a>
</li>
<li>
<ul class="dropdown-menu-list scroller" style="height: 250px;" data-handle-color="#637283">
<li>
<a href="javascript:;">
<span class="time">just now</span>
<span class="details">
<span class="label label-sm label-icon label-success">
<i class="fa fa-plus"></i>
</span> New user registered. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">3 mins</span>
<span class="details">
<span class="label label-sm label-icon label-danger">
<i class="fa fa-bolt"></i>
</span> Server #12 overloaded. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">10 mins</span>
<span class="details">
<span class="label label-sm label-icon label-warning">
<i class="fa fa-bell-o"></i>
</span> Server #2 not responding. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">14 hrs</span>
<span class="details">
<span class="label label-sm label-icon label-info">
<i class="fa fa-bullhorn"></i>
</span> Application error. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">2 days</span>
<span class="details">
<span class="label label-sm label-icon label-danger">
<i class="fa fa-bolt"></i>
</span> Database overloaded 68%. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">3 days</span>
<span class="details">
<span class="label label-sm label-icon label-danger">
<i class="fa fa-bolt"></i>
</span> A user IP blocked. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">4 days</span>
<span class="details">
<span class="label label-sm label-icon label-warning">
<i class="fa fa-bell-o"></i>
</span> Storage Server #4 not responding dfdfdfd. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">5 days</span>
<span class="details">
<span class="label label-sm label-icon label-info">
<i class="fa fa-bullhorn"></i>
</span> System Error. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">9 days</span>
<span class="details">
<span class="label label-sm label-icon label-danger">
<i class="fa fa-bolt"></i>
</span> Storage server failed. </span>
</a>
</li>
</ul>
</li>
</ul>
</li>
<!-- END NOTIFICATION DROPDOWN -->
<!-- BEGIN TODO DROPDOWN -->
<li class="dropdown dropdown-extended dropdown-tasks dropdown-dark" id="header_task_bar">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true">
<i class="icon-calendar"></i>
<span class="badge badge-default">3</span>
</a>
<ul class="dropdown-menu extended tasks">
<li class="external">
<h3>You have
<strong>12 pending</strong> tasks</h3>
<a href="app_todo_2.html">view all</a>
</li>
<li>
<ul class="dropdown-menu-list scroller" style="height: 275px;" data-handle-color="#637283">
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">New release v1.2 </span>
<span class="percent">30%</span>
</span>
<span class="progress">
<span style="width: 40%;" class="progress-bar progress-bar-success" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">40% Complete</span>
</span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">Application deployment</span>
<span class="percent">65%</span>
</span>
<span class="progress">
<span style="width: 65%;" class="progress-bar progress-bar-danger" aria-valuenow="65" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">65% Complete</span>
</span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">Mobile app release</span>
<span class="percent">98%</span>
</span>
<span class="progress">
<span style="width: 98%;" class="progress-bar progress-bar-success" aria-valuenow="98" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">98% Complete</span>
</span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">Database migration</span>
<span class="percent">10%</span>
</span>
<span class="progress">
<span style="width: 10%;" class="progress-bar progress-bar-warning" aria-valuenow="10" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">10% Complete</span>
</span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">Web server upgrade</span>
<span class="percent">58%</span>
</span>
<span class="progress">
<span style="width: 58%;" class="progress-bar progress-bar-info" aria-valuenow="58" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">58% Complete</span>
</span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">Mobile development</span>
<span class="percent">85%</span>
</span>
<span class="progress">
<span style="width: 85%;" class="progress-bar progress-bar-success" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">85% Complete</span>
</span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">New UI release</span>
<span class="percent">38%</span>
</span>
<span class="progress progress-striped">
<span style="width: 38%;" class="progress-bar progress-bar-important" aria-valuenow="18" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">38% Complete</span>
</span>
</span>
</a>
</li>
</ul>
</li>
</ul>
</li>
<!-- END TODO DROPDOWN -->
<li class="droddown dropdown-separator">
<span class="separator"></span>
</li>
<!-- BEGIN INBOX DROPDOWN -->
<li class="dropdown dropdown-extended dropdown-inbox dropdown-dark" id="header_inbox_bar">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true">
<span class="circle">3</span>
<span class="corner"></span>
</a>
<ul class="dropdown-menu">
<li class="external">
<h3>You have
<strong>7 New</strong> Messages</h3>
<a href="app_inbox.html">view all</a>
</li>
<li>
<ul class="dropdown-menu-list scroller" style="height: 275px;" data-handle-color="#637283">
<li>
<a href="#">
<span class="photo">
<img src="../assets/layouts/layout3/img/avatar2.jpg" class="img-circle" alt=""> </span>
<span class="subject">
<span class="from"> Lisa Wong </span>
<span class="time">Just Now </span>
</span>
<span class="message"> Vivamus sed auctor nibh congue nibh. auctor nibh auctor nibh... </span>
</a>
</li>
<li>
<a href="#">
<span class="photo">
<img src="../assets/layouts/layout3/img/avatar3.jpg" class="img-circle" alt=""> </span>
<span class="subject">
<span class="from"> Richard Doe </span>
<span class="time">16 mins </span>
</span>
<span class="message"> Vivamus sed congue nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span>
</a>
</li>
<li>
<a href="#">
<span class="photo">
<img src="../assets/layouts/layout3/img/avatar1.jpg" class="img-circle" alt=""> </span>
<span class="subject">
<span class="from"> Bob Nilson </span>
<span class="time">2 hrs </span>
</span>
<span class="message"> Vivamus sed nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span>
</a>
</li>
<li>
<a href="#">
<span class="photo">
<img src="../assets/layouts/layout3/img/avatar2.jpg" class="img-circle" alt=""> </span>
<span class="subject">
<span class="from"> Lisa Wong </span>
<span class="time">40 mins </span>
</span>
<span class="message"> Vivamus sed auctor 40% nibh congue nibh... </span>
</a>
</li>
<li>
<a href="#">
<span class="photo">
<img src="../assets/layouts/layout3/img/avatar3.jpg" class="img-circle" alt=""> </span>
<span class="subject">
<span class="from"> Richard Doe </span>
<span class="time">46 mins </span>
</span>
<span class="message"> Vivamus sed congue nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span>
</a>
</li>
</ul>
</li>
</ul>
</li>
<!-- END INBOX DROPDOWN -->
<!-- BEGIN USER LOGIN DROPDOWN -->
<li class="dropdown dropdown-user dropdown-dark">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true">
<img alt="" class="img-circle" src="../assets/layouts/layout3/img/avatar9.jpg">
<span class="username username-hide-mobile">Nick</span>
</a>
<ul class="dropdown-menu dropdown-menu-default">
<li>
<a href="page_user_profile_1.html">
<i class="icon-user"></i> My Profile </a>
</li>
<li>
<a href="app_calendar.html">
<i class="icon-calendar"></i> My Calendar </a>
</li>
<li>
<a href="app_inbox.html">
<i class="icon-envelope-open"></i> My Inbox
<span class="badge badge-danger"> 3 </span>
</a>
</li>
<li>
<a href="app_todo_2.html">
<i class="icon-rocket"></i> My Tasks
<span class="badge badge-success"> 7 </span>
</a>
</li>
<li class="divider"> </li>
<li>
<a href="page_user_lock_1.html">
<i class="icon-lock"></i> Lock Screen </a>
</li>
<li>
<a href="page_user_login_1.html">
<i class="icon-key"></i> Log Out </a>
</li>
</ul>
</li>
<!-- END USER LOGIN DROPDOWN -->
<!-- BEGIN QUICK SIDEBAR TOGGLER -->
<li class="dropdown dropdown-extended quick-sidebar-toggler">
<span class="sr-only">Toggle Quick Sidebar</span>
<i class="icon-logout"></i>
</li>
<!-- END QUICK SIDEBAR TOGGLER -->
</ul>
</div>
<!-- END TOP NAVIGATION MENU -->
</div>
</div>
<!-- END HEADER TOP -->
<!-- BEGIN HEADER MENU -->
<div class="page-header-menu">
<div class="container">
<!-- BEGIN HEADER SEARCH BOX -->
<form class="search-form" action="page_general_search.html" method="GET">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search" name="query">
<span class="input-group-btn">
<a href="javascript:;" class="btn submit">
<i class="icon-magnifier"></i>
</a>
</span>
</div>
</form>
<!-- END HEADER SEARCH BOX -->
<!-- BEGIN MEGA MENU -->
<!-- DOC: Apply "hor-menu-light" class after the "hor-menu" class below to have a horizontal menu with white background -->
<!-- DOC: Remove data-hover="dropdown" and data-close-others="true" attributes below to disable the dropdown opening on mouse hover -->
<div class="hor-menu ">
<ul class="nav navbar-nav">
<li class="menu-dropdown classic-menu-dropdown ">
<a href="javascript:;"> Dashboard
<span class="arrow"></span>
</a>
<ul class="dropdown-menu pull-left">
<li class=" ">
<a href="index.html" class="nav-link ">
<i class="icon-bar-chart"></i> Default Dashboard
<span class="badge badge-success">1</span>
</a>
</li>
<li class=" ">
<a href="dashboard_2.html" class="nav-link ">
<i class="icon-bulb"></i> Dashboard 2 </a>
</li>
<li class=" ">
<a href="dashboard_3.html" class="nav-link ">
<i class="icon-graph"></i> Dashboard 3
<span class="badge badge-danger">3</span>
</a>
</li>
</ul>
</li>
<li class="menu-dropdown mega-menu-dropdown ">
<a href="javascript:;"> UI Features
<span class="arrow"></span>
</a>
<ul class="dropdown-menu" style="min-width: 710px">
<li>
<div class="mega-menu-content">
<div class="row">
<div class="col-md-4">
<ul class="mega-menu-submenu">
<li>
<a href="ui_colors.html"> Color Library </a>
</li>
<li>
<a href="ui_general.html"> General Components </a>
</li>
<li>
<a href="ui_buttons.html"> Buttons </a>
</li>
<li>
<a href="ui_confirmations.html"> Popover Confirmations </a>
</li>
<li>
<a href="ui_icons.html"> Font Icons </a>
</li>
<li>
<a href="ui_socicons.html"> Social Icons </a>
</li>
<li>
<a href="ui_typography.html"> Typography </a>
</li>
<li>
<a href="ui_tabs_accordions_navs.html"> Tabs, Accordions & Navs </a>
</li>
<li>
<a href="ui_tree.html"> Tree View </a>
</li>
<li>
<a href="maps_google.html"> Google Maps </a>
</li>
</ul>
</div>
<div class="col-md-4">
<ul class="mega-menu-submenu">
<li>
<a href="maps_vector.html"> Vector Maps </a>
</li>
<li>
<a href="ui_timeline.html"> Timeline </a>
</li>
<li>
<a href="ui_page_progress_style_1.html"> Page Progress Bar - Flash </a>
</li>
<li>
<a href="ui_page_progress_style_2.html"> Page Progress Bar - Big Counter </a>
</li>
<li>
<a href="ui_blockui.html"> Block UI </a>
</li>
<li>
<a href="ui_bootstrap_growl.html"> Bootstrap Growl Notifications </a>
</li>
<li>
<a href="ui_notific8.html"> Notific8 Notifications </a>
</li>
<li>
<a href="ui_toastr.html"> Toastr Notifications </a>
</li>
<li>
<a href="ui_bootbox.html"> Bootbox Dialogs </a>
</li>
</ul>
</div>
<div class="col-md-4">
<ul class="mega-menu-submenu">
<li>
<a href="ui_alerts_api.html"> Metronic Alerts API </a>
</li>
<li>
<a href="ui_session_timeout.html"> Session Timeout </a>
</li>
<li>
<a href="ui_idle_timeout.html"> User Idle Timeout </a>
</li>
<li>
<a href="ui_modals.html"> Modals </a>
</li>
<li>
<a href="ui_extended_modals.html"> Extended Modals </a>
</li>
<li>
<a href="ui_tiles.html"> Tiles </a>
</li>
<li>
<a href="ui_datepaginator.html"> Date Paginator </a>
</li>
<li>
<a href="ui_nestable.html"> Nestable List </a>
</li>
</ul>
</div>
</div>
</div>
</li>
</ul>
</li>
<li class="menu-dropdown classic-menu-dropdown ">
<a href="javascript:;"> Layouts
<span class="arrow"></span>
</a>
<ul class="dropdown-menu pull-left">
<li class=" ">
<a href="layout_mega_menu_light.html" class="nav-link "> Light Mega Menu </a>
</li>
<li class=" ">
<a href="layout_top_bar_light.html" class="nav-link "> Light Top Bar Dropdowns </a>
</li>
<li class=" ">
<a href="layout_fluid_page.html" class="nav-link "> Fluid Page </a>
</li>
<li class=" ">
<a href="layout_top_bar_fixed.html" class="nav-link "> Fixed Top Bar </a>
</li>
<li class=" ">
<a href="layout_mega_menu_fixed.html" class="nav-link "> Fixed Mega Menu </a>
</li>
<li class=" ">
<a href="layout_disabled_menu.html" class="nav-link "> Disabled Menu Links </a>
</li>
<li class=" ">
<a href="layout_blank_page.html" class="nav-link "> Blank Page </a>
</li>
</ul>
</li>
<li class="menu-dropdown mega-menu-dropdown mega-menu-full">
<a href="javascript:;"> Components
<span class="arrow"></span>
</a>
<ul class="dropdown-menu" style="min-width: ">
<li>
<div class="mega-menu-content">
<div class="row">
<div class="col-md-3">
<ul class="mega-menu-submenu">
<li>
<h3>Components 1</h3>
</li>
<li>
<a href="components_date_time_pickers.html"> Date & Time Pickers </a>
</li>
<li>
<a href="components_color_pickers.html"> Color Pickers </a>
</li>
<li>
<a href="components_select2.html"> Select2 Dropdowns </a>
</li>
<li>
<a href="components_bootstrap_select.html"> Bootstrap Select </a>
</li>
<li>
<a href="components_multi_select.html"> Multi Select </a>
</li>
</ul>
</div>
<div class="col-md-3">
<ul class="mega-menu-submenu">
<li>
<h3>Components 2</h3>
</li>
<li>
<a href="components_bootstrap_select_splitter.html"> Select Splitter </a>
</li>
<li>
<a href="components_typeahead.html"> Typeahead Autocomplete </a>
</li>
<li>
<a href="components_bootstrap_tagsinput.html"> Bootstrap Tagsinput </a>
</li>
<li>
<a href="components_bootstrap_switch.html"> Bootstrap Switch </a>
</li>
<li>
<a href="components_bootstrap_maxlength.html"> Bootstrap Maxlength </a>
</li>
</ul>
</div>
<div class="col-md-3">
<ul class="mega-menu-submenu">
<li>
<h3>Components 3</h3>
</li>
<li>
<a href="components_bootstrap_fileinput.html"> Bootstrap File Input </a>
</li>
<li>
<a href="components_bootstrap_touchspin.html"> Bootstrap Touchspin </a>
</li>
<li>
<a href="components_form_tools.html"> Form Widgets & Tools </a>
</li>
<li>
<a href="components_context_menu.html"> Context Menu </a>
</li>
<li>
<a href="components_editors.html"> Markdown & WYSIWYG Editors </a>
</li>
</ul>
</div>
<div class="col-md-3">
<ul class="mega-menu-submenu">
<li>
<h3>Components 4</h3>
</li>
<li>
<a href="components_code_editors.html"> Code Editors </a>
</li>
<li>
<a href="components_ion_sliders.html"> Ion Range Sliders </a>
</li>
<li>
<a href="components_noui_sliders.html"> NoUI Range Sliders </a>
</li>
<li>
<a href="components_knob_dials.html"> Knob Circle Dials </a>
</li>
</ul>
</div>
</div>
</div>
</li>
</ul>
</li>
<li class="menu-dropdown classic-menu-dropdown ">
<a href="javascript:;"> More
<span class="arrow"></span>
</a>
<ul class="dropdown-menu pull-left">
<li class="dropdown-submenu ">
<a href="javascript:;" class="nav-link nav-toggle ">
<i class="icon-settings"></i> Form Stuff
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li class=" ">
<a href="form_controls.html" class="nav-link "> Bootstrap Form
<br>Controls </a>
</li>
<li class=" ">
<a href="form_controls_md.html" class="nav-link "> Material Design
<br>Form Controls </a>
</li>
<li class=" ">
<a href="form_validation.html" class="nav-link "> Form Validation </a>
</li>
<li class=" ">
<a href="form_validation_states_md.html" class="nav-link "> Material Design
<br>Form Validation States </a>
</li>
<li class=" ">
<a href="form_validation_md.html" class="nav-link "> Material Design
<br>Form Validation </a>
</li>
<li class=" ">
<a href="form_layouts.html" class="nav-link "> Form Layouts </a>
</li>
<li class=" ">
<a href="form_input_mask.html" class="nav-link "> Form Input Mask </a>
</li>
<li class=" ">
<a href="form_editable.html" class="nav-link "> Form X-editable </a>
</li>
<li class=" ">
<a href="form_wizard.html" class="nav-link "> Form Wizard </a>
</li>
<li class=" ">
<a href="form_icheck.html" class="nav-link "> iCheck Controls </a>
</li>
<li class=" ">
<a href="form_image_crop.html" class="nav-link "> Image Cropping </a>
</li>
<li class=" ">
<a href="form_fileupload.html" class="nav-link "> Multiple File Upload </a>
</li>
<li class=" ">
<a href="form_dropzone.html" class="nav-link "> Dropzone File Upload </a>
</li>
</ul>
</li>
<li class="dropdown-submenu ">
<a href="javascript:;" class="nav-link nav-toggle ">
<i class="icon-briefcase"></i> Tables
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li class="dropdown-submenu ">
<a href="javascript:;" class="nav-link nav-toggle"> Static Tables
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li class="">
<a href="table_static_basic.html" class="nav-link "> Basic Tables </a>
</li>
<li class="">
<a href="table_static_responsive.html" class="nav-link "> Responsive Tables </a>
</li>
</ul>
</li>
<li class="dropdown-submenu ">
<a href="javascript:;" class="nav-link nav-toggle"> Datatables
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li class="">
<a href="table_datatables_managed.html" class="nav-link "> Managed Datatables </a>
</li>
<li class="">
<a href="table_datatables_buttons.html" class="nav-link "> Buttons Extension </a>
</li>
<li class="">
<a href="table_datatables_colreorder.html" class="nav-link "> Colreorder Extension </a>
</li>
<li class="">
<a href="table_datatables_rowreorder.html" class="nav-link "> Rowreorder Extension </a>
</li>
<li class="">
<a href="table_datatables_scroller.html" class="nav-link "> Scroller Extension </a>
</li>
<li class="">
<a href="table_datatables_fixedheader.html" class="nav-link "> FixedHeader Extension </a>
</li>
<li class="">
<a href="table_datatables_responsive.html" class="nav-link "> Responsive Extension </a>
</li>
<li class="">
<a href="table_datatables_editable.html" class="nav-link "> Editable Datatables </a>
</li>
<li class="">
<a href="table_datatables_ajax.html" class="nav-link "> Ajax Datatables </a>
</li>
</ul>
</li>
</ul>
</li>
<li class="dropdown-submenu ">
<a href="?p=" class="nav-link nav-toggle ">
<i class="icon-wallet"></i> Portlets
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li class=" ">
<a href="portlet_boxed.html" class="nav-link "> Boxed Portlets </a>
</li>
<li class=" ">
<a href="portlet_light.html" class="nav-link "> Light Portlets </a>
</li>
<li class=" ">
<a href="portlet_solid.html" class="nav-link "> Solid Portlets </a>
</li>
<li class=" ">
<a href="portlet_ajax.html" class="nav-link "> Ajax Portlets </a>
</li>
<li class=" ">
<a href="portlet_draggable.html" class="nav-link "> Draggable Portlets </a>
</li>
</ul>
</li>
<li class="dropdown-submenu ">
<a href="?p=" class="nav-link nav-toggle ">
<i class="icon-settings"></i> Elements
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li class=" ">
<a href="elements_steps.html" class="nav-link "> Steps </a>
</li>
<li class=" ">
<a href="elements_lists.html" class="nav-link "> Lists </a>
</li>
<li class=" ">
<a href="elements_ribbons.html" class="nav-link "> Ribbons </a>
</li>
</ul>
</li>
<li class="dropdown-submenu ">
<a href="javascript:;" class="nav-link nav-toggle ">
<i class="icon-bar-chart"></i> Charts
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li class=" ">
<a href="charts_amcharts.html" class="nav-link "> amChart </a>
</li>
<li class=" ">
<a href="charts_flotcharts.html" class="nav-link "> Flot Charts </a>
</li>
<li class=" ">
<a href="charts_flowchart.html" class="nav-link "> Flow Charts </a>
</li>
<li class=" ">
<a href="charts_google.html" class="nav-link "> Google Charts </a>
</li>
<li class=" ">
<a href="charts_echarts.html" class="nav-link "> eCharts </a>
</li>
<li class=" ">
<a href="charts_morris.html" class="nav-link "> Morris Charts </a>
</li>
<li class="dropdown-submenu ">
<a href="javascript:;" class="nav-link nav-toggle"> HighCharts
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li class="">
<a href="charts_highcharts.html" class="nav-link " target="_blank"> HighCharts </a>
</li>
<li class="">
<a href="charts_highstock.html" class="nav-link " target="_blank"> HighStock </a>
</li>
<li class="">
<a href="charts_highmaps.html" class="nav-link " target="_blank"> HighMaps </a>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li class="menu-dropdown classic-menu-dropdown active">
<a href="javascript:;">
<i class="icon-briefcase"></i> Pages
<span class="arrow"></span>
</a>
<ul class="dropdown-menu pull-left">
<li class="dropdown-submenu ">
<a href="javascript:;" class="nav-link nav-toggle ">
<i class="icon-basket"></i> eCommerce
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li class=" ">
<a href="ecommerce_index.html" class="nav-link ">
<i class="icon-home"></i> Dashboard </a>
</li>
<li class=" ">
<a href="ecommerce_orders.html" class="nav-link ">
<i class="icon-basket"></i> Orders </a>
</li>
<li class=" ">
<a href="ecommerce_orders_view.html" class="nav-link ">
<i class="icon-tag"></i> Order View </a>
</li>
<li class=" ">
<a href="ecommerce_products.html" class="nav-link ">
<i class="icon-graph"></i> Products </a>
</li>
<li class=" ">
<a href="ecommerce_products_edit.html" class="nav-link ">
<i class="icon-graph"></i> Product Edit </a>
</li>
</ul>
</li>
<li class="dropdown-submenu ">
<a href="javascript:;" class="nav-link nav-toggle ">
<i class="icon-docs"></i> Apps
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li class=" ">
<a href="app_todo.html" class="nav-link ">
<i class="icon-clock"></i> Todo 1 </a>
</li>
<li class=" ">
<a href="app_todo_2.html" class="nav-link ">
<i class="icon-check"></i> Todo 2 </a>
</li>
<li class=" ">
<a href="app_inbox.html" class="nav-link ">
<i class="icon-envelope"></i> Inbox </a>
</li>
<li class=" ">
<a href="app_calendar.html" class="nav-link ">
<i class="icon-calendar"></i> Calendar </a>
</li>
</ul>
</li>
<li class="dropdown-submenu ">
<a href="javascript:;" class="nav-link nav-toggle ">
<i class="icon-user"></i> User
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li class=" ">
<a href="page_user_profile_1.html" class="nav-link ">
<i class="icon-user"></i> Profile 1 </a>
</li>
<li class=" ">
<a href="page_user_profile_1_account.html" class="nav-link ">
<i class="icon-user-female"></i> Profile 1 Account </a>
</li>
<li class=" ">
<a href="page_user_profile_1_help.html" class="nav-link ">
<i class="icon-user-following"></i> Profile 1 Help </a>
</li>
<li class=" ">
<a href="page_user_profile_2.html" class="nav-link ">
<i class="icon-users"></i> Profile 2 </a>
</li>
<li class="dropdown-submenu ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-notebook"></i> Login
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li class="">
<a href="page_user_login_1.html" class="nav-link " target="_blank"> Login Page 1 </a>
</li>
<li class="">
<a href="page_user_login_2.html" class="nav-link " target="_blank"> Login Page 2 </a>
</li>
<li class="">
<a href="page_user_login_3.html" class="nav-link " target="_blank"> Login Page 3 </a>
</li>
<li class="">
<a href="page_user_login_4.html" class="nav-link " target="_blank"> Login Page 4 </a>
</li>
<li class="">
<a href="page_user_login_5.html" class="nav-link " target="_blank"> Login Page 5 </a>
</li>
<li class="">
<a href="page_user_login_6.html" class="nav-link " target="_blank"> Login Page 6 </a>
</li>
</ul>
</li>
<li class=" ">
<a href="page_user_lock_1.html" class="nav-link " target="_blank">
<i class="icon-lock"></i> Lock Screen 1 </a>
</li>
<li class=" ">
<a href="page_user_lock_2.html" class="nav-link " target="_blank">
<i class="icon-lock-open"></i> Lock Screen 2 </a>
</li>
</ul>
</li>
<li class="dropdown-submenu active">
<a href="javascript:;" class="nav-link nav-toggle active">
<i class="icon-social-dribbble"></i> General
<span class="arrow open"></span>
</a>
<ul class="dropdown-menu">
<li class=" active">
<a href="page_general_about.html" class="nav-link ">
<i class="icon-info"></i> About </a>
</li>
<li class=" ">
<a href="page_general_contact.html" class="nav-link ">
<i class="icon-call-end"></i> Contact </a>
</li>
<li class="dropdown-submenu ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-notebook"></i> Portfolio
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li class="">
<a href="page_general_portfolio_1.html" class="nav-link "> Portfolio 1 </a>
</li>
<li class="">
<a href="page_general_portfolio_2.html" class="nav-link "> Portfolio 2 </a>
</li>
<li class="">
<a href="page_general_portfolio_3.html" class="nav-link "> Portfolio 3 </a>
</li>
<li class="">
<a href="page_general_portfolio_4.html" class="nav-link "> Portfolio 4 </a>
</li>
</ul>
</li>
<li class="dropdown-submenu ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-magnifier"></i> Search
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li class="">
<a href="page_general_search.html" class="nav-link "> Search 1 </a>
</li>
<li class="">
<a href="page_general_search_2.html" class="nav-link "> Search 2 </a>
</li>
<li class="">
<a href="page_general_search_3.html" class="nav-link "> Search 3 </a>
</li>
<li class="">
<a href="page_general_search_4.html" class="nav-link "> Search 4 </a>
</li>
<li class="">
<a href="page_general_search_5.html" class="nav-link "> Search 5 </a>
</li>
</ul>
</li>
<li class=" ">
<a href="page_general_pricing.html" class="nav-link ">
<i class="icon-tag"></i> Pricing </a>
</li>
<li class=" ">
<a href="page_general_faq.html" class="nav-link ">
<i class="icon-wrench"></i> FAQ </a>
</li>
<li class=" ">
<a href="page_general_blog.html" class="nav-link ">
<i class="icon-pencil"></i> Blog </a>
</li>
<li class=" ">
<a href="page_general_blog_post.html" class="nav-link ">
<i class="icon-note"></i> Blog Post </a>
</li>
<li class=" ">
<a href="page_general_invoice.html" class="nav-link ">
<i class="icon-envelope"></i> Invoice </a>
</li>
<li class=" ">
<a href="page_general_invoice_2.html" class="nav-link ">
<i class="icon-envelope"></i> Invoice 2 </a>
</li>
</ul>
</li>
<li class="dropdown-submenu ">
<a href="javascript:;" class="nav-link nav-toggle ">
<i class="icon-settings"></i> System
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li class=" ">
<a href="page_system_coming_soon.html" class="nav-link " target="_blank"> Coming Soon </a>
</li>
<li class=" ">
<a href="page_system_404_1.html" class="nav-link "> 404 Page 1 </a>
</li>
<li class=" ">
<a href="page_system_404_2.html" class="nav-link " target="_blank"> 404 Page 2 </a>
</li>
<li class=" ">
<a href="page_system_404_3.html" class="nav-link " target="_blank"> 404 Page 3 </a>
</li>
<li class=" ">
<a href="page_system_500_1.html" class="nav-link "> 500 Page 1 </a>
</li>
<li class=" ">
<a href="page_system_500_2.html" class="nav-link " target="_blank"> 500 Page 2 </a>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<!-- END MEGA MENU -->
</div>
</div>
<!-- END HEADER MENU -->
</div>
<!-- END HEADER -->
<!-- BEGIN CONTAINER -->
<div class="page-container">
<!-- BEGIN CONTENT -->
<div class="page-content-wrapper">
<!-- BEGIN CONTENT BODY -->
<!-- BEGIN PAGE HEAD-->
<div class="page-head">
<div class="container">
<!-- BEGIN PAGE TITLE -->
<div class="page-title">
<h1>About Us
<small>about us page</small>
</h1>
</div>
<!-- END PAGE TITLE -->
<!-- BEGIN PAGE TOOLBAR -->
<div class="page-toolbar">
<!-- BEGIN THEME PANEL -->
<div class="btn-group btn-theme-panel">
<a href="javascript:;" class="btn dropdown-toggle" data-toggle="dropdown">
<i class="icon-settings"></i>
</a>
<div class="dropdown-menu theme-panel pull-right dropdown-custom hold-on-click">
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-12">
<h3>THEME COLORS</h3>
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-12">
<ul class="theme-colors">
<li class="theme-color theme-color-default" data-theme="default">
<span class="theme-color-view"></span>
<span class="theme-color-name">Default</span>
</li>
<li class="theme-color theme-color-blue-hoki" data-theme="blue-hoki">
<span class="theme-color-view"></span>
<span class="theme-color-name">Blue Hoki</span>
</li>
<li class="theme-color theme-color-blue-steel" data-theme="blue-steel">
<span class="theme-color-view"></span>
<span class="theme-color-name">Blue Steel</span>
</li>
<li class="theme-color theme-color-yellow-orange" data-theme="yellow-orange">
<span class="theme-color-view"></span>
<span class="theme-color-name">Orange</span>
</li>
<li class="theme-color theme-color-yellow-crusta" data-theme="yellow-crusta">
<span class="theme-color-view"></span>
<span class="theme-color-name">Yellow Crusta</span>
</li>
</ul>
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
<ul class="theme-colors">
<li class="theme-color theme-color-green-haze" data-theme="green-haze">
<span class="theme-color-view"></span>
<span class="theme-color-name">Green Haze</span>
</li>
<li class="theme-color theme-color-red-sunglo" data-theme="red-sunglo">
<span class="theme-color-view"></span>
<span class="theme-color-name">Red Sunglo</span>
</li>
<li class="theme-color theme-color-red-intense" data-theme="red-intense">
<span class="theme-color-view"></span>
<span class="theme-color-name">Red Intense</span>
</li>
<li class="theme-color theme-color-purple-plum" data-theme="purple-plum">
<span class="theme-color-view"></span>
<span class="theme-color-name">Purple Plum</span>
</li>
<li class="theme-color theme-color-purple-studio" data-theme="purple-studio">
<span class="theme-color-view"></span>
<span class="theme-color-name">Purple Studio</span>
</li>
</ul>
</div>
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-12 seperator">
<h3>LAYOUT</h3>
<ul class="theme-settings">
<li> Theme Style
<select class="theme-setting theme-setting-style form-control input-sm input-small input-inline tooltips" data-original-title="Change theme style" data-container="body" data-placement="left">
<option value="boxed" selected="selected">Square corners</option>
<option value="rounded">Rounded corners</option>
</select>
</li>
<li> Layout
<select class="theme-setting theme-setting-layout form-control input-sm input-small input-inline tooltips" data-original-title="Change layout type" data-container="body" data-placement="left">
<option value="boxed" selected="selected">Boxed</option>
<option value="fluid">Fluid</option>
</select>
</li>
<li> Top Menu Style
<select class="theme-setting theme-setting-top-menu-style form-control input-sm input-small input-inline tooltips" data-original-title="Change top menu dropdowns style" data-container="body"
data-placement="left">
<option value="dark" selected="selected">Dark</option>
<option value="light">Light</option>
</select>
</li>
<li> Top Menu Mode
<select class="theme-setting theme-setting-top-menu-mode form-control input-sm input-small input-inline tooltips" data-original-title="Enable fixed(sticky) top menu" data-container="body" data-placement="left">
<option value="fixed">Fixed</option>
<option value="not-fixed" selected="selected">Not Fixed</option>
</select>
</li>
<li> Mega Menu Style
<select class="theme-setting theme-setting-mega-menu-style form-control input-sm input-small input-inline tooltips" data-original-title="Change mega menu dropdowns style" data-container="body"
data-placement="left">
<option value="dark" selected="selected">Dark</option>
<option value="light">Light</option>
</select>
</li>
<li> Mega Menu Mode
<select class="theme-setting theme-setting-mega-menu-mode form-control input-sm input-small input-inline tooltips" data-original-title="Enable fixed(sticky) mega menu" data-container="body"
data-placement="left">
<option value="fixed" selected="selected">Fixed</option>
<option value="not-fixed">Not Fixed</option>
</select>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- END THEME PANEL -->
</div>
<!-- END PAGE TOOLBAR -->
</div>
</div>
<!-- END PAGE HEAD-->
<!-- BEGIN PAGE CONTENT BODY -->
<div class="page-content">
<div class="container">
<!-- BEGIN PAGE BREADCRUMBS -->
<ul class="page-breadcrumb breadcrumb">
<li>
<a href="index.html">Home</a>
<i class="fa fa-circle"></i>
</li>
<li>
<a href="#">Pages</a>
<i class="fa fa-circle"></i>
</li>
<li>
<span>General</span>
</li>
</ul>
<!-- END PAGE BREADCRUMBS -->
<!-- BEGIN PAGE CONTENT INNER -->
<div class="page-content-inner">
<!-- BEGIN CONTENT HEADER -->
<div class="row margin-bottom-40 about-header">
<div class="col-md-12">
<h1>About Us</h1>
<h2>Life is either a great adventure or nothing</h2>
<button type="button" class="btn btn-danger">JOIN US TODAY</button>
</div>
</div>
<!-- END CONTENT HEADER -->
<!-- BEGIN CARDS -->
<div class="row margin-bottom-20">
<div class="col-lg-3 col-md-6">
<div class="portlet light">
<div class="card-icon">
<i class="icon-user-follow font-red-sunglo theme-font"></i>
</div>
<div class="card-title">
<span> Best User Expierence </span>
</div>
<div class="card-desc">
<span> The best way to find yourself is
<br> to lose yourself in the service of others </span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="portlet light">
<div class="card-icon">
<i class="icon-trophy font-green-haze theme-font"></i>
</div>
<div class="card-title">
<span> Awards Winner </span>
</div>
<div class="card-desc">
<span> The best way to find yourself is
<br> to lose yourself in the service of others </span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="portlet light">
<div class="card-icon">
<i class="icon-basket font-purple-wisteria theme-font"></i>
</div>
<div class="card-title">
<span> eCommerce Components </span>
</div>
<div class="card-desc">
<span> The best way to find yourself is
<br> to lose yourself in the service of others </span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="portlet light">
<div class="card-icon">
<i class="icon-layers font-blue theme-font"></i>
</div>
<div class="card-title">
<span> Adaptive Components </span>
</div>
<div class="card-desc">
<span> The best way to find yourself is
<br> to lose yourself in the service of others </span>
</div>
</div>
</div>
</div>
<!-- END CARDS -->
<!-- BEGIN TEXT & VIDEO -->
<div class="row margin-bottom-40">
<div class="col-lg-6">
<div class="portlet light about-text">
<h4>
<i class="fa fa-check icon-info"></i> About Metronic</h4>
<p class="margin-top-20"> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper
suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et
accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. </p>
<div class="row">
<div class="col-xs-6">
<ul class="list-unstyled margin-top-10 margin-bottom-10">
<li>
<i class="fa fa-check"></i> Nam liber tempor cum soluta </li>
<li>
<i class="fa fa-check"></i> Mirum est notare quam </li>
<li>
<i class="fa fa-check"></i> Lorem ipsum dolor sit amet </li>
<li>
<i class="fa fa-check"></i> Mirum est notare quam </li>
<li>
<i class="fa fa-check"></i> Mirum est notare quam </li>
</ul>
</div>
<div class="col-xs-6">
<ul class="list-unstyled margin-top-10 margin-bottom-10">
<li>
<i class="fa fa-check"></i> Nam liber tempor cum soluta </li>
<li>
<i class="fa fa-check"></i> Mirum est notare quam </li>
<li>
<i class="fa fa-check"></i> Lorem ipsum dolor sit amet </li>
<li>
<i class="fa fa-check"></i> Mirum est notare quam </li>
<li>
<i class="fa fa-check"></i> Mirum est notare quam </li>
</ul>
</div>
</div>
<div class="about-quote">
<h3>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh</h3>
<p class="about-author">Tom Hardy, 2015</p>
</div>
</div>
</div>
<div class="col-lg-6">
<iframe src="http://player.vimeo.com/video/22439234" style="width:100%; height:500px;border:0" allowfullscreen> </iframe>
</div>
</div>
<!-- END TEXT & VIDEO -->
<!-- BEGIN MEMBERS SUCCESS STORIES -->
<div class="row margin-bottom-40 stories-header" data-auto-height="true">
<div class="col-md-12">
<h1>Members Success Stories</h1>
<h2>Life is either a great adventure or nothing</h2>
</div>
</div>
<div class="row margin-bottom-20 stories-cont">
<div class="col-lg-3 col-md-6">
<div class="portlet light">
<div class="photo">
<img src="../assets/pages/media/users/teambg1.jpg" alt="" class="img-responsive" /> </div>
<div class="title">
<span> Mark Wahlberg </span>
</div>
<div class="desc">
<span> We are at our very best, and we are happiest, when we are fully engaged in work we enjoy on the journey toward the goal we've established for ourselves. </span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="portlet light">
<div class="photo">
<img src="../assets/pages/media/users/teambg2.jpg" alt="" class="img-responsive" /> </div>
<div class="title">
<span> Lindsay Lohan </span>
</div>
<div class="desc">
<span> Do what you love to do and give it your very best. Whether it's business or baseball, or the theater, or any field. If you don't love what you're doing and you can't give it your best, get out of it. </span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="portlet light">
<div class="photo">
<img src="../assets/pages/media/users/teambg5.jpg" alt="" class="img-responsive" /> </div>
<div class="title">
<span> John Travolta </span>
</div>
<div class="desc">
<span> To be nobody but yourself in a world which is doing its best, to make you everybody else means to fight the hardest battle which any human being can fight; and never stop fighting. </span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="portlet light">
<div class="photo">
<img src="../assets/pages/media/users/teambg8.jpg" alt="" class="img-responsive" /> </div>
<div class="title">
<span> Tom Brady </span>
</div>
<div class="desc">
<span> You have to accept whatever comes and the only important thing is that you meet it with courage and with the best that you have to give. Never give up, never surrender. Go all out or gain nothing. </span>
</div>
</div>
</div>
</div>
<div class="row margin-bottom-40 stories-footer">
<div class="col-md-12">
<button type="button" class="btn btn-danger">SEE MORE STORIES</button>
</div>
</div>
<!-- END MEMBERS SUCCESS STORIES -->
<!-- BEGIN LINKS BLOCK -->
<div class="row about-links-cont" data-auto-height="true">
<div class="col-md-6 about-links">
<div class="row">
<div class="col-sm-6 about-links-item">
<h4>UX & Design</h4>
<ul>
<li>
<a href="#">Ui Features</a>
</li>
<li>
<a href="#">Ui Components</a>
</li>
<li>
<a href="#">Flat UI Colors</a>
</li>
</ul>
</div>
<div class="col-sm-6 about-links-item">
<h4>eCommerce</h4>
<ul>
<li>
<a href="#">Dashboard</a>
</li>
<li>
<a href="#">Orders</a>
</li>
<li>
<a href="#">Products</a>
</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-sm-6 about-links-item">
<h4>Page Layouts</h4>
<ul>
<li>
<a href="#">Boxed Page</a>
</li>
<li>
<a href="#">Full Width</a>
</li>
</ul>
</div>
<div class="col-sm-6 about-links-item">
<h4>Form Stuff</h4>
<ul>
<li>
<a href="#">Material Forms</a>
</li>
<li>
<a href="#">Form Wizard</a>
</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-sm-6 about-links-item">
<h4>Charts</h4>
<ul>
<li>
<a href="#">amChart</a>
</li>
<li>
<a href="#">Flotchart</a>
</li>
</ul>
</div>
<div class="col-sm-6 about-links-item">
<h4>Portlets</h4>
<ul>
<li>
<a href="#">General Portlets</a>
</li>
<li>
<a href="#">Ajax Portlets</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-md-6 col-sm-12">
<div class="about-image" style="background: url(../assets/pages/media/works/img4.jpg) center no-repeat;"></div>
</div>
</div>
<!-- END LINKS BLOCK -->
</div>
<!-- END PAGE CONTENT INNER -->
</div>
</div>
<!-- END PAGE CONTENT BODY -->
<!-- END CONTENT BODY -->
</div>
<!-- END CONTENT -->
<!-- BEGIN QUICK SIDEBAR -->
<a href="javascript:;" class="page-quick-sidebar-toggler">
<i class="icon-login"></i>
</a>
<div class="page-quick-sidebar-wrapper" data-close-on-body-click="false">
<div class="page-quick-sidebar">
<ul class="nav nav-tabs">
<li class="active">
<a href="javascript:;" data-target="#quick_sidebar_tab_1" data-toggle="tab"> Users
<span class="badge badge-danger">2</span>
</a>
</li>
<li>
<a href="javascript:;" data-target="#quick_sidebar_tab_2" data-toggle="tab"> Alerts
<span class="badge badge-success">7</span>
</a>
</li>
<li class="dropdown">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown"> More
<i class="fa fa-angle-down"></i>
</a>
<ul class="dropdown-menu pull-right">
<li>
<a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab">
<i class="icon-bell"></i> Alerts </a>
</li>
<li>
<a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab">
<i class="icon-info"></i> Notifications </a>
</li>
<li>
<a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab">
<i class="icon-speech"></i> Activities </a>
</li>
<li class="divider"></li>
<li>
<a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab">
<i class="icon-settings"></i> Settings </a>
</li>
</ul>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane active page-quick-sidebar-chat" id="quick_sidebar_tab_1">
<div class="page-quick-sidebar-chat-users" data-rail-color="#ddd" data-wrapper-class="page-quick-sidebar-list">
<h3 class="list-heading">Staff</h3>
<ul class="media-list list-items">
<li class="media">
<div class="media-status">
<span class="badge badge-success">8</span>
</div>
<img class="media-object" src="../assets/layouts/layout/img/avatar3.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Bob Nilson</h4>
<div class="media-heading-sub"> Project Manager </div>
</div>
</li>
<li class="media">
<img class="media-object" src="../assets/layouts/layout/img/avatar1.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Nick Larson</h4>
<div class="media-heading-sub"> Art Director </div>
</div>
</li>
<li class="media">
<div class="media-status">
<span class="badge badge-danger">3</span>
</div>
<img class="media-object" src="../assets/layouts/layout/img/avatar4.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Deon Hubert</h4>
<div class="media-heading-sub"> CTO </div>
</div>
</li>
<li class="media">
<img class="media-object" src="../assets/layouts/layout/img/avatar2.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Ella Wong</h4>
<div class="media-heading-sub"> CEO </div>
</div>
</li>
</ul>
<h3 class="list-heading">Customers</h3>
<ul class="media-list list-items">
<li class="media">
<div class="media-status">
<span class="badge badge-warning">2</span>
</div>
<img class="media-object" src="../assets/layouts/layout/img/avatar6.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Lara Kunis</h4>
<div class="media-heading-sub"> CEO, Loop Inc </div>
<div class="media-heading-small"> Last seen 03:10 AM </div>
</div>
</li>
<li class="media">
<div class="media-status">
<span class="label label-sm label-success">new</span>
</div>
<img class="media-object" src="../assets/layouts/layout/img/avatar7.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Ernie Kyllonen</h4>
<div class="media-heading-sub"> Project Manager,
<br> SmartBizz PTL </div>
</div>
</li>
<li class="media">
<img class="media-object" src="../assets/layouts/layout/img/avatar8.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Lisa Stone</h4>
<div class="media-heading-sub"> CTO, Keort Inc </div>
<div class="media-heading-small"> Last seen 13:10 PM </div>
</div>
</li>
<li class="media">
<div class="media-status">
<span class="badge badge-success">7</span>
</div>
<img class="media-object" src="../assets/layouts/layout/img/avatar9.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Deon Portalatin</h4>
<div class="media-heading-sub"> CFO, H&D LTD </div>
</div>
</li>
<li class="media">
<img class="media-object" src="../assets/layouts/layout/img/avatar10.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Irina Savikova</h4>
<div class="media-heading-sub"> CEO, Tizda Motors Inc </div>
</div>
</li>
<li class="media">
<div class="media-status">
<span class="badge badge-danger">4</span>
</div>
<img class="media-object" src="../assets/layouts/layout/img/avatar11.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Maria Gomez</h4>
<div class="media-heading-sub"> Manager, Infomatic Inc </div>
<div class="media-heading-small"> Last seen 03:10 AM </div>
</div>
</li>
</ul>
</div>
<div class="page-quick-sidebar-item">
<div class="page-quick-sidebar-chat-user">
<div class="page-quick-sidebar-nav">
<a href="javascript:;" class="page-quick-sidebar-back-to-list">
<i class="icon-arrow-left"></i>Back</a>
</div>
<div class="page-quick-sidebar-chat-user-messages">
<div class="post out">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Bob Nilson</a>
<span class="datetime">20:15</span>
<span class="body"> When could you send me the report ? </span>
</div>
</div>
<div class="post in">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Ella Wong</a>
<span class="datetime">20:15</span>
<span class="body"> Its almost done. I will be sending it shortly </span>
</div>
</div>
<div class="post out">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Bob Nilson</a>
<span class="datetime">20:15</span>
<span class="body"> Alright. Thanks! :) </span>
</div>
</div>
<div class="post in">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Ella Wong</a>
<span class="datetime">20:16</span>
<span class="body"> You are most welcome. Sorry for the delay. </span>
</div>
</div>
<div class="post out">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Bob Nilson</a>
<span class="datetime">20:17</span>
<span class="body"> No probs. Just take your time :) </span>
</div>
</div>
<div class="post in">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Ella Wong</a>
<span class="datetime">20:40</span>
<span class="body"> Alright. I just emailed it to you. </span>
</div>
</div>
<div class="post out">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Bob Nilson</a>
<span class="datetime">20:17</span>
<span class="body"> Great! Thanks. Will check it right away. </span>
</div>
</div>
<div class="post in">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Ella Wong</a>
<span class="datetime">20:40</span>
<span class="body"> Please let me know if you have any comment. </span>
</div>
</div>
<div class="post out">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Bob Nilson</a>
<span class="datetime">20:17</span>
<span class="body"> Sure. I will check and buzz you if anything needs to be corrected. </span>
</div>
</div>
</div>
<div class="page-quick-sidebar-chat-user-form">
<div class="input-group">
<input type="text" class="form-control" placeholder="Type a message here...">
<div class="input-group-btn">
<button type="button" class="btn green">
<i class="icon-paper-clip"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane page-quick-sidebar-alerts" id="quick_sidebar_tab_2">
<div class="page-quick-sidebar-alerts-list">
<h3 class="list-heading">General</h3>
<ul class="feeds list-items">
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-info">
<i class="fa fa-check"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> You have 4 pending tasks.
<span class="label label-sm label-warning "> Take action
<i class="fa fa-share"></i>
</span>
</div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> Just now </div>
</div>
</li>
<li>
<a href="javascript:;">
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-success">
<i class="fa fa-bar-chart-o"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> Finance Report for year 2013 has been released. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 20 mins </div>
</div>
</a>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-danger">
<i class="fa fa-user"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> You have 5 pending membership that requires a quick review. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 24 mins </div>
</div>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-info">
<i class="fa fa-shopping-cart"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> New order received with
<span class="label label-sm label-success"> Reference Number: DR23923 </span>
</div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 30 mins </div>
</div>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-success">
<i class="fa fa-user"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> You have 5 pending membership that requires a quick review. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 24 mins </div>
</div>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-info">
<i class="fa fa-bell-o"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> Web server hardware needs to be upgraded.
<span class="label label-sm label-warning"> Overdue </span>
</div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 2 hours </div>
</div>
</li>
<li>
<a href="javascript:;">
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-default">
<i class="fa fa-briefcase"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> IPO Report for year 2013 has been released. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 20 mins </div>
</div>
</a>
</li>
</ul>
<h3 class="list-heading">System</h3>
<ul class="feeds list-items">
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-info">
<i class="fa fa-check"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> You have 4 pending tasks.
<span class="label label-sm label-warning "> Take action
<i class="fa fa-share"></i>
</span>
</div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> Just now </div>
</div>
</li>
<li>
<a href="javascript:;">
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-danger">
<i class="fa fa-bar-chart-o"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> Finance Report for year 2013 has been released. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 20 mins </div>
</div>
</a>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-default">
<i class="fa fa-user"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> You have 5 pending membership that requires a quick review. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 24 mins </div>
</div>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-info">
<i class="fa fa-shopping-cart"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> New order received with
<span class="label label-sm label-success"> Reference Number: DR23923 </span>
</div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 30 mins </div>
</div>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-success">
<i class="fa fa-user"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> You have 5 pending membership that requires a quick review. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 24 mins </div>
</div>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-warning">
<i class="fa fa-bell-o"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> Web server hardware needs to be upgraded.
<span class="label label-sm label-default "> Overdue </span>
</div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 2 hours </div>
</div>
</li>
<li>
<a href="javascript:;">
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-info">
<i class="fa fa-briefcase"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> IPO Report for year 2013 has been released. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 20 mins </div>
</div>
</a>
</li>
</ul>
</div>
</div>
<div class="tab-pane page-quick-sidebar-settings" id="quick_sidebar_tab_3">
<div class="page-quick-sidebar-settings-list">
<h3 class="list-heading">General Settings</h3>
<ul class="list-items borderless">
<li> Enable Notifications
<input type="checkbox" class="make-switch" checked data-size="small" data-on-color="success" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
<li> Allow Tracking
<input type="checkbox" class="make-switch" data-size="small" data-on-color="info" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
<li> Log Errors
<input type="checkbox" class="make-switch" checked data-size="small" data-on-color="danger" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
<li> Auto Sumbit Issues
<input type="checkbox" class="make-switch" data-size="small" data-on-color="warning" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
<li> Enable SMS Alerts
<input type="checkbox" class="make-switch" checked data-size="small" data-on-color="success" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
</ul>
<h3 class="list-heading">System Settings</h3>
<ul class="list-items borderless">
<li> Security Level
<select class="form-control input-inline input-sm input-small">
<option value="1">Normal</option>
<option value="2" selected>Medium</option>
<option value="e">High</option>
</select>
</li>
<li> Failed Email Attempts
<input class="form-control input-inline input-sm input-small" value="5" /> </li>
<li> Secondary SMTP Port
<input class="form-control input-inline input-sm input-small" value="3560" /> </li>
<li> Notify On System Error
<input type="checkbox" class="make-switch" checked data-size="small" data-on-color="danger" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
<li> Notify On SMTP Error
<input type="checkbox" class="make-switch" checked data-size="small" data-on-color="warning" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
</ul>
<div class="inner-content">
<button class="btn btn-success">
<i class="icon-settings"></i> Save Changes</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- END QUICK SIDEBAR -->
</div>
<!-- END CONTAINER -->
<!-- BEGIN FOOTER -->
<!-- BEGIN PRE-FOOTER -->
<div class="page-prefooter">
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-6 col-xs-12 footer-block">
<h2>About</h2>
<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam dolore. </p>
</div>
<div class="col-md-3 col-sm-6 col-xs12 footer-block">
<h2>Subscribe Email</h2>
<div class="subscribe-form">
<form action="javascript:;">
<div class="input-group">
<input type="text" placeholder="mail@email.com" class="form-control">
<span class="input-group-btn">
<button class="btn" type="submit">Submit</button>
</span>
</div>
</form>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 footer-block">
<h2>Follow Us On</h2>
<ul class="social-icons">
<li>
<a href="javascript:;" data-original-title="rss" class="rss"></a>
</li>
<li>
<a href="javascript:;" data-original-title="facebook" class="facebook"></a>
</li>
<li>
<a href="javascript:;" data-original-title="twitter" class="twitter"></a>
</li>
<li>
<a href="javascript:;" data-original-title="googleplus" class="googleplus"></a>
</li>
<li>
<a href="javascript:;" data-original-title="linkedin" class="linkedin"></a>
</li>
<li>
<a href="javascript:;" data-original-title="youtube" class="youtube"></a>
</li>
<li>
<a href="javascript:;" data-original-title="vimeo" class="vimeo"></a>
</li>
</ul>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 footer-block">
<h2>Contacts</h2>
<address class="margin-bottom-40"> Phone: 800 123 3456
<br> Email:
<a href="mailto:info@metronic.com">info@metronic.com</a>
</address>
</div>
</div>
</div>
</div>
<!-- END PRE-FOOTER -->
<!-- BEGIN INNER FOOTER -->
<div class="page-footer">
<div class="container"> 2014 © Metronic by keenthemes.
<a href="http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes" title="Purchase Metronic just for 27$ and get lifetime updates for free" target="_blank">Purchase Metronic!</a>
</div>
</div>
<div class="scroll-to-top">
<i class="icon-arrow-up"></i>
</div>
<!-- END INNER FOOTER -->
<!-- END FOOTER -->
<!--[if lt IE 9]>
<script src="../assets/global/plugins/respond.min.js"></script>
<script src="../assets/global/plugins/excanvas.min.js"></script>
<![endif]-->
<!-- BEGIN CORE PLUGINS -->
<script src="../assets/global/plugins/jquery.min.js" type="text/javascript"></script>
<script src="../assets/global/plugins/bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
<script src="../assets/global/plugins/js.cookie.min.js" type="text/javascript"></script>
<script src="../assets/global/plugins/bootstrap-hover-dropdown/bootstrap-hover-dropdown.min.js" type="text/javascript"></script>
<script src="../assets/global/plugins/jquery-slimscroll/jquery.slimscroll.min.js" type="text/javascript"></script>
<script src="../assets/global/plugins/jquery.blockui.min.js" type="text/javascript"></script>
<script src="../assets/global/plugins/uniform/jquery.uniform.min.js" type="text/javascript"></script>
<script src="../assets/global/plugins/bootstrap-switch/js/bootstrap-switch.min.js" type="text/javascript"></script>
<!-- END CORE PLUGINS -->
<!-- BEGIN THEME GLOBAL SCRIPTS -->
<script src="../assets/global/scripts/app.min.js" type="text/javascript"></script>
<!-- END THEME GLOBAL SCRIPTS -->
<!-- BEGIN THEME LAYOUT SCRIPTS -->
<script src="../assets/layouts/layout3/scripts/layout.min.js" type="text/javascript"></script>
<script src="../assets/layouts/layout3/scripts/demo.min.js" type="text/javascript"></script>
<script src="../assets/layouts/global/scripts/quick-sidebar.min.js" type="text/javascript"></script>
<!-- END THEME LAYOUT SCRIPTS -->
</body>
</html> |
www/css/jquery.mobile.custom.structure.css | msandt3/gthockey-phonegap | /*
* jQuery Mobile v1.3.2
* http://jquerymobile.com
*
* Copyright 2010, 2013 jQuery Foundation, Inc. and other contributors
* Released under the MIT license.
* http://jquery.org/license
*
*/
.ui-btn { display: block; text-align: center; cursor:pointer; position: relative; margin: .5em 0; padding: 0; }
.ui-mini { margin-top: .25em; margin-bottom: .25em; }
.ui-btn-left, .ui-btn-right, .ui-input-clear, .ui-btn-inline,
.ui-grid-a .ui-btn, .ui-grid-b .ui-btn, .ui-grid-c .ui-btn, .ui-grid-d .ui-btn, .ui-grid-e .ui-btn, .ui-grid-solo .ui-btn { margin-right: 5px; margin-left: 5px; }
.ui-btn-inner { font-size: 16px; padding: .6em 20px; min-width: .75em; display: block; position: relative; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; zoom: 1; }
.ui-btn input, .ui-btn button { z-index: 2; }
.ui-btn-left, .ui-btn-right, .ui-btn-inline { display: inline-block; vertical-align: middle; }
.ui-mobile .ui-btn-left, .ui-mobile .ui-btn-right, .ui-btn-left > .ui-btn, .ui-btn-right > .ui-btn { margin: 0; } /* .ui-mobile to increase specificity level */
.ui-btn-block { display: block; }
.ui-header > .ui-btn,
.ui-footer > .ui-btn { display: inline-block; margin: 0; }
.ui-header .ui-btn-block,
.ui-footer .ui-btn-block { display: block; }
.ui-header .ui-btn-inner,
.ui-footer .ui-btn-inner,
.ui-mini .ui-btn-inner { font-size: 12.5px; padding: .55em 11px .5em; }
.ui-fullsize .ui-btn-inner,
.ui-fullsize .ui-btn-inner { font-size: 16px; padding: .6em 20px; }
.ui-btn-icon-notext { width: 24px; height: 24px; }
.ui-btn-icon-notext .ui-btn-inner { padding: 0; height: 100%; }
.ui-btn-icon-notext .ui-btn-inner .ui-icon { margin: 2px 1px 2px 3px; float: left; }
.ui-btn-text { position: relative; z-index: 1; width: 100%; -moz-user-select: none; -webkit-user-select: none; -ms-user-select: none; }
div.ui-btn-text { width: auto; }
.ui-btn-icon-notext .ui-btn-text { position: absolute; left: -9999px; }
.ui-btn-icon-left .ui-btn-inner { padding-left: 40px; }
.ui-btn-icon-right .ui-btn-inner { padding-right: 40px; }
.ui-btn-icon-top .ui-btn-inner { padding-top: 40px; }
.ui-btn-icon-bottom .ui-btn-inner { padding-bottom: 40px; }
.ui-header .ui-btn-icon-left .ui-btn-inner,
.ui-footer .ui-btn-icon-left .ui-btn-inner,
.ui-mini.ui-btn-icon-left .ui-btn-inner,
.ui-mini .ui-btn-icon-left .ui-btn-inner { padding-left: 30px; }
.ui-header .ui-btn-icon-right .ui-btn-inner,
.ui-footer .ui-btn-icon-right .ui-btn-inner,
.ui-mini.ui-btn-icon-right .ui-btn-inner,
.ui-mini .ui-btn-icon-right .ui-btn-inner { padding-right: 30px; }
.ui-header .ui-btn-icon-top .ui-btn-inner,
.ui-footer .ui-btn-icon-top .ui-btn-inner { padding: 30px 3px .5em 3px; }
.ui-mini.ui-btn-icon-top .ui-btn-inner,
.ui-mini .ui-btn-icon-top .ui-btn-inner { padding-top: 30px; }
.ui-header .ui-btn-icon-bottom .ui-btn-inner,
.ui-footer .ui-btn-icon-bottom .ui-btn-inner { padding: .55em 3px 30px 3px; }
.ui-mini.ui-btn-icon-bottom .ui-btn-inner,
.ui-mini .ui-btn-icon-bottom .ui-btn-inner { padding-bottom: 30px; }
/* Corner styling inheritance */
.ui-btn-inner {
-webkit-border-radius: inherit;
border-radius: inherit;
}
/*btn icon positioning*/
.ui-btn-icon-notext .ui-icon { display: block; z-index: 0;}
.ui-btn-icon-left > .ui-btn-inner > .ui-icon, .ui-btn-icon-right > .ui-btn-inner > .ui-icon { position: absolute; top: 50%; margin-top: -9px; }
.ui-btn-icon-top .ui-btn-inner .ui-icon, .ui-btn-icon-bottom .ui-btn-inner .ui-icon { position: absolute; left: 50%; margin-left: -9px; }
.ui-btn-icon-left .ui-icon { left: 10px; }
.ui-btn-icon-right .ui-icon { right: 10px; }
.ui-btn-icon-top .ui-icon { top: 10px; }
.ui-btn-icon-bottom .ui-icon { top: auto; bottom: 10px; }
.ui-header .ui-btn-icon-left .ui-icon,
.ui-footer .ui-btn-icon-left .ui-icon,
.ui-mini.ui-btn-icon-left .ui-icon,
.ui-mini .ui-btn-icon-left .ui-icon { left: 5px; }
.ui-header .ui-btn-icon-right .ui-icon,
.ui-footer .ui-btn-icon-right .ui-icon,
.ui-mini.ui-btn-icon-right .ui-icon,
.ui-mini .ui-btn-icon-right .ui-icon { right: 5px; }
.ui-header .ui-btn-icon-top .ui-icon,
.ui-footer .ui-btn-icon-top .ui-icon,
.ui-mini.ui-btn-icon-top .ui-icon,
.ui-mini .ui-btn-icon-top .ui-icon { top: 5px; }
.ui-header .ui-btn-icon-bottom .ui-icon,
.ui-footer .ui-btn-icon-bottom .ui-icon,
.ui-mini.ui-btn-icon-bottom .ui-icon,
.ui-mini .ui-btn-icon-bottom .ui-icon { bottom: 5px; }
/*hiding native button,inputs */
.ui-btn-hidden { position: absolute; top: 0; left: 0; width: 100%; height: 100%; -webkit-appearance: none; cursor: pointer; background: #fff; background: rgba(255,255,255,0); filter: Alpha(Opacity=0); opacity: .1; font-size: 1px; border: none; text-indent: -9999px; }
/* Fixes IE/WP filter alpha opacity bugs */
.ui-disabled .ui-btn-hidden { display: none; }
.ui-disabled { z-index: 1; }
.ui-field-contain .ui-btn.ui-submit { margin: 0; }
label.ui-submit { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; display: block; }
@media all and (min-width: 28em){
.ui-field-contain label.ui-submit { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; }
.ui-field-contain .ui-btn.ui-submit { width: 78%; display: inline-block; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; }
.ui-hide-label .ui-btn.ui-submit { width: auto; display: block; }
}
/* some unsets - more probably needed */
.ui-mobile, .ui-mobile body { height: 99.9%; }
.ui-mobile fieldset, .ui-page { padding: 0; margin: 0; }
.ui-mobile a img, .ui-mobile fieldset { border-width: 0; }
.ui-mobile fieldset { min-width: 0; }
/* responsive page widths */
.ui-mobile-viewport { margin: 0; overflow-x: visible; -webkit-text-size-adjust: 100%; -ms-text-size-adjust:none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
/* Issue #2066 */
body.ui-mobile-viewport,
div.ui-mobile-viewport { overflow-x: hidden; }
/* "page" containers - full-screen views, one should always be in view post-pageload */
.ui-mobile [data-role=page], .ui-mobile [data-role=dialog], .ui-page { top: 0; left: 0; width: 100%; min-height: 100%; position: absolute; display: none; border: 0; }
.ui-mobile .ui-page-active { display: block; overflow: visible; }
/* on ios4, setting focus on the page element causes flashing during transitions when there is an outline, so we turn off outlines */
.ui-page { outline: none; }
/*orientations from js are available */
@media screen and (orientation: portrait){
.ui-mobile .ui-page { min-height: 420px; }
}
@media screen and (orientation: landscape){
.ui-mobile .ui-page { min-height: 300px; }
}
/* loading screen */
.ui-loading .ui-loader { display: block; }
.ui-loader { display: none; z-index: 9999999; position: fixed; top: 50%; left: 50%; border:0; }
.ui-loader-default { background: none; filter: Alpha(Opacity=18); opacity: .18; width: 46px; height: 46px; margin-left: -23px; margin-top: -23px; }
.ui-loader-verbose { width: 200px; filter: Alpha(Opacity=88); opacity: .88; box-shadow: 0 1px 1px -1px #fff; height: auto; margin-left: -110px; margin-top: -43px; padding: 10px; }
.ui-loader-default h1 { font-size: 0; width: 0; height: 0; overflow: hidden; }
.ui-loader-verbose h1 { font-size: 16px; margin: 0; text-align: center; }
.ui-loader .ui-icon { background-color: #000; display: block; margin: 0; width: 44px; height: 44px; padding: 1px; -webkit-border-radius: 36px; border-radius: 36px; }
.ui-loader-verbose .ui-icon { margin: 0 auto 10px; filter: Alpha(Opacity=75); opacity: .75; }
.ui-loader-textonly { padding: 15px; margin-left: -115px; }
.ui-loader-textonly .ui-icon { display: none; }
.ui-loader-fakefix { position: absolute; }
/*fouc*/
.ui-mobile-rendering > * { visibility: hidden; }
/*headers, content panels*/
.ui-bar, .ui-body { position: relative; padding: .4em 15px; overflow: hidden; display: block; clear:both; }
.ui-bar { font-size: 16px; margin: 0; }
.ui-bar h1, .ui-bar h2, .ui-bar h3, .ui-bar h4, .ui-bar h5, .ui-bar h6 { margin: 0; padding: 0; font-size: 16px; display: inline-block; }
.ui-header, .ui-footer { position: relative; zoom: 1; }
.ui-mobile .ui-header, .ui-mobile .ui-footer { border-left-width: 0; border-right-width: 0; }
.ui-header .ui-btn-left,
.ui-header .ui-btn-right,
.ui-footer .ui-btn-left,
.ui-footer .ui-btn-right,
.ui-header-fixed.ui-fixed-hidden .ui-btn-left,
.ui-header-fixed.ui-fixed-hidden .ui-btn-right { position: absolute; top: 3px; }
.ui-header-fixed .ui-btn-left,
.ui-header-fixed .ui-btn-right { top: 4px;}
.ui-header .ui-btn-left,
.ui-footer .ui-btn-left { left: 5px; }
.ui-header .ui-btn-right,
.ui-footer .ui-btn-right { right: 5px; }
.ui-footer > .ui-btn-icon-notext,
.ui-header > .ui-btn-icon-notext,
.ui-header-fixed.ui-fixed-hidden > .ui-btn-icon-notext { top: 6px; }
.ui-header-fixed > .ui-btn-icon-notext { top: 7px;}
.ui-header .ui-title, .ui-footer .ui-title { min-height: 1.1em; text-align: center; font-size: 16px; display: block; margin: .6em 30% .8em; padding: 0; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; outline: 0 !important; }
.ui-footer .ui-title { margin: .6em 15px .8em; }
/* content area*/
.ui-content { border-width: 0; overflow: visible; overflow-x: hidden; padding: 15px; }
/* corner styling for dialogs and popups */
.ui-corner-all > .ui-header:first-child,
.ui-corner-all > .ui-content:first-child,
.ui-corner-all > .ui-footer:first-child {
-webkit-border-top-left-radius: inherit;
border-top-left-radius: inherit;
-webkit-border-top-right-radius: inherit;
border-top-right-radius: inherit;
}
.ui-corner-all > .ui-header:last-child,
.ui-corner-all > .ui-content:last-child,
.ui-corner-all > .ui-footer:last-child {
-webkit-border-bottom-left-radius: inherit;
border-bottom-left-radius: inherit;
-webkit-border-bottom-right-radius: inherit;
border-bottom-right-radius: inherit;
}
/* icons sizing */
.ui-icon { width: 18px; height: 18px; }
/* non-js content hiding */
.ui-nojs { position: absolute; left: -9999px; }
/* accessible content hiding */
.ui-hide-label label.ui-input-text, .ui-hide-label label.ui-select, .ui-hide-label label.ui-slider, .ui-hide-label label.ui-submit, .ui-hide-label .ui-controlgroup-label,
.ui-hidden-accessible { position: absolute !important; left: -9999px; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
.ui-field-contain, fieldset.ui-field-contain { padding: .8em 0; margin: 0; border-width: 0 0 1px 0; overflow: visible; }
.ui-field-contain:last-child { border-bottom-width: 0; }
.ui-field-contain { max-width: 100%; } /* This prevents horizontal scrollbar in IE7 */
@media all and (min-width: 28em){
.ui-field-contain, .ui-mobile fieldset.ui-field-contain { border-width: 0; padding: 0; margin: 1em 0; }
}
/* content configurations. */
.ui-grid-a, .ui-grid-b, .ui-grid-c, .ui-grid-d { overflow: hidden; }
.ui-block-a, .ui-block-b, .ui-block-c, .ui-block-d, .ui-block-e { margin: 0; padding: 0; border: 0; float: left; min-height: 1px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; }
/* grid solo: 100 - single item fallback */
.ui-grid-solo .ui-block-a { display: block; float: none; }
/* Lower percentages for older browsers (i.e. IE7) to prevent wrapping. -.5px to fix BB5 wrap issue. */
/* grid a: 50/50 */
.ui-grid-a .ui-block-a, .ui-grid-a .ui-block-b { width: 49.95%; }
.ui-grid-a > :nth-child(n) { width: 50%; margin-right: -.5px; }
.ui-grid-a .ui-block-a { clear: left; }
/* grid b: 33/33/33 */
.ui-grid-b .ui-block-a, .ui-grid-b .ui-block-b, .ui-grid-b .ui-block-c { width: 33.25%; }
.ui-grid-b > :nth-child(n) { width: 33.333%; margin-right: -.5px; }
.ui-grid-b .ui-block-a { clear: left; }
/* grid c: 25/25/25/25 */
.ui-grid-c .ui-block-a, .ui-grid-c .ui-block-b, .ui-grid-c .ui-block-c, .ui-grid-c .ui-block-d { width: 24.925%; }
.ui-grid-c > :nth-child(n) { width: 25%; margin-right: -.5px; }
.ui-grid-c .ui-block-a { clear: left; }
/* grid d: 20/20/20/20/20 */
.ui-grid-d .ui-block-a, .ui-grid-d .ui-block-b, .ui-grid-d .ui-block-c, .ui-grid-d .ui-block-d, .ui-grid-d .ui-block-e { width: 19.925%; }
.ui-grid-d > :nth-child(n) { width: 20%; }
.ui-grid-d .ui-block-a { clear: left; }
/* preset breakpoint to switch to stacked grid styles below 35em (560px) */
@media all and (max-width: 35em) {
.ui-responsive .ui-block-a,
.ui-responsive .ui-block-b,
.ui-responsive .ui-block-c,
.ui-responsive .ui-block-d,
.ui-responsive .ui-block-e {
width: 100%;
float:none;
}
}
/* Transitions originally inspired by those from jQtouch, nice work, folks */
.ui-mobile-viewport-transitioning,
.ui-mobile-viewport-transitioning .ui-page {
width: 100%;
height: 100%;
overflow: hidden;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.ui-page-pre-in {
opacity: 0;
}
.in {
-webkit-animation-timing-function: ease-out;
-webkit-animation-duration: 350ms;
-moz-animation-timing-function: ease-out;
-moz-animation-duration: 350ms;
animation-timing-function: ease-out;
animation-duration: 350ms;
}
.out {
-webkit-animation-timing-function: ease-in;
-webkit-animation-duration: 225ms;
-moz-animation-timing-function: ease-in;
-moz-animation-duration: 225ms;
animation-timing-function: ease-in;
animation-duration: 225ms;
}
.ui-collapsible-inset { margin: .5em 0; }
.ui-collapsible-heading { font-size: 16px; display: block; margin: 0 -15px; padding: 0; position: relative; }
.ui-collapsible-inset .ui-collapsible-heading { margin: 0; }
.ui-collapsible-heading .ui-btn { text-align: left; margin: 0; border-left-width: 0; border-right-width: 0; }
.ui-collapsible-inset .ui-collapsible-heading .ui-btn { border-right-width: 1px; border-left-width: 1px; }
.ui-collapsible-collapsed + .ui-collapsible:not(.ui-collapsible-inset) .ui-collapsible-heading .ui-btn { border-top-width: 0; }
.ui-collapsible-set .ui-collapsible:not(.ui-collapsible-inset) .ui-collapsible-heading .ui-btn { border-top-width: 1px; }
.ui-collapsible-heading .ui-btn-inner { padding-left: 12px; padding-right: 12px; }
.ui-collapsible-heading .ui-btn-icon-left .ui-btn-inner { padding-left: 40px; }
.ui-collapsible-heading .ui-btn-icon-right .ui-btn-inner { padding-right: 40px; }
.ui-collapsible-heading .ui-btn-icon-top .ui-btn-inner,
.ui-collapsible-heading .ui-btn-icon-bottom .ui-btn-inner { text-align: center; }
.ui-collapsible-heading .ui-btn-icon-left.ui-mini .ui-btn-inner { padding-left: 30px; }
.ui-collapsible-heading .ui-btn-icon-right.ui-mini .ui-btn-inner { padding-right: 30px; }
.ui-collapsible-heading .ui-btn span.ui-btn { position: absolute; left: 6px; top: 50%; margin: -12px 0 0 0; width: 20px; height: 20px; padding: 1px 0 1px 2px; text-indent: -9999px; }
.ui-collapsible-heading .ui-btn span.ui-btn .ui-btn-inner { padding: 10px 0; }
.ui-collapsible-heading .ui-btn span.ui-btn .ui-icon { left: 0; margin-top: -10px; }
.ui-collapsible-heading-status { position: absolute; top: -9999px; left: 0; }
.ui-collapsible-content {
display: block;
margin: 0 -15px;
padding: 10px 15px;
border-left-width: 0;
border-right-width: 0;
border-top: none; /* Overrides ui-body-* */
background-image: none; /* Overrides ui-body-* */
}
.ui-collapsible-inset .ui-collapsible-content { margin: 0; border-right-width: 1px; border-left-width: 1px; }
.ui-collapsible-content-collapsed { display: none; }
.ui-collapsible-set > .ui-collapsible.ui-corner-all {
-webkit-border-radius: 0;
border-radius: 0;
}
.ui-collapsible-heading,
.ui-collapsible-heading > .ui-btn {
-webkit-border-radius: inherit;
border-radius: inherit;
}
.ui-collapsible-set .ui-collapsible.ui-first-child {
-webkit-border-top-right-radius: inherit;
border-top-right-radius: inherit;
-webkit-border-top-left-radius: inherit;
border-top-left-radius: inherit;
}
.ui-collapsible-content,
.ui-collapsible-set .ui-collapsible.ui-last-child {
-webkit-border-bottom-right-radius: inherit;
border-bottom-right-radius: inherit;
-webkit-border-bottom-left-radius: inherit;
border-bottom-left-radius: inherit;
}
.ui-collapsible-themed-content:not(.ui-collapsible-collapsed) > .ui-collapsible-heading {
-webkit-border-bottom-right-radius: 0;
border-bottom-right-radius: 0;
-webkit-border-bottom-left-radius: 0;
border-bottom-left-radius: 0;
}
.ui-collapsible-set { margin: .5em 0; }
.ui-collapsible-set .ui-collapsible { margin: -1px 0 0; }
.ui-collapsible-set .ui-collapsible.ui-first-child { margin-top: 0; }
.ui-controlgroup, fieldset.ui-controlgroup { padding: 0; margin: .5em 0; zoom: 1; }
.ui-controlgroup.ui-mini, fieldset.ui-controlgroup.ui-mini { margin: .25em 0; }
.ui-field-contain .ui-controlgroup, .ui-field-contain fieldset.ui-controlgroup { margin: 0; }
.ui-bar .ui-controlgroup { margin: 0 5px; }
.ui-controlgroup-label { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .4em; }
/* Fixes legend not wrapping on IE10 */
.ui-controlgroup-label legend { max-width: 100%; }
.ui-controlgroup-controls label.ui-select,
.ui-controlgroup-controls label.ui-submit { position: absolute; left: -9999px; }
.ui-controlgroup li { list-style: none; }
.ui-controlgroup .ui-btn { margin: 0; }
.ui-controlgroup .ui-btn-icon-notext { width: auto; height: auto; top: auto; }
.ui-controlgroup .ui-btn-icon-notext .ui-btn-inner { height: 20px; padding: .6em 20px .6em 20px }
.ui-controlgroup-horizontal .ui-btn-icon-notext .ui-btn-inner { width: 18px; }
.ui-controlgroup.ui-mini .ui-btn-icon-notext .ui-btn-inner,
.ui-header .ui-controlgroup .ui-btn-icon-notext .ui-btn-inner,
.ui-footer .ui-controlgroup .ui-btn-icon-notext .ui-btn-inner { height: 16px; padding: .55em 11px .5em 11px; }
.ui-controlgroup .ui-btn-icon-notext .ui-btn-inner .ui-icon { position: absolute; top: 50%; right: 50%; margin: -9px -9px 0 0; }
.ui-controlgroup-horizontal .ui-btn-inner { text-align: center; }
.ui-controlgroup-horizontal.ui-mini .ui-btn-inner { height: 16px; line-height: 16px; }
.ui-controlgroup .ui-checkbox label, .ui-controlgroup .ui-radio label { font-size: 16px; }
.ui-controlgroup-horizontal .ui-controlgroup-controls:before,
.ui-controlgroup-horizontal .ui-controlgroup-controls:after { content: ""; display: table; }
.ui-controlgroup-horizontal .ui-controlgroup-controls:after { clear: both; }
.ui-controlgroup-horizontal .ui-controlgroup-controls { display: inline-block; vertical-align: middle; zoom: 1; }
.ui-controlgroup-horizontal .ui-controlgroup-controls > .ui-btn, .ui-controlgroup-horizontal .ui-controlgroup-controls li > .ui-btn,
.ui-controlgroup-horizontal .ui-checkbox, .ui-controlgroup-horizontal .ui-radio,
.ui-controlgroup-horizontal .ui-select { float: left; clear: none; margin: 0; }
/* On IE7 the floating selects will be displayed as block if .ui-btn-text has width 100% */
.ui-controlgroup-horizontal .ui-select .ui-btn-text { width: auto; }
.ui-controlgroup-vertical .ui-btn { border-bottom-width: 0; }
.ui-controlgroup-vertical .ui-btn.ui-last-child { border-bottom-width: 1px; }
.ui-controlgroup-horizontal .ui-btn { border-right-width: 0; }
.ui-controlgroup-horizontal .ui-btn.ui-last-child { border-right-width: 1px; }
.ui-controlgroup .ui-btn-corner-all {
-webkit-border-radius: 0;
border-radius: 0;
}
.ui-controlgroup .ui-controlgroup-controls,
.ui-controlgroup .ui-radio,
.ui-controlgroup .ui-checkbox,
.ui-controlgroup .ui-select,
.ui-controlgroup li {
-webkit-border-radius: inherit;
border-radius: inherit;
}
.ui-controlgroup-vertical .ui-btn.ui-first-child {
-webkit-border-top-left-radius: inherit;
border-top-left-radius: inherit;
-webkit-border-top-right-radius: inherit;
border-top-right-radius: inherit;
}
.ui-controlgroup-vertical .ui-btn.ui-last-child {
-webkit-border-bottom-left-radius: inherit;
border-bottom-left-radius: inherit;
-webkit-border-bottom-right-radius: inherit;
border-bottom-right-radius: inherit;
}
.ui-controlgroup-horizontal .ui-btn.ui-first-child {
-webkit-border-top-left-radius: inherit;
border-top-left-radius: inherit;
-webkit-border-bottom-left-radius: inherit;
border-bottom-left-radius: inherit;
}
.ui-controlgroup-horizontal .ui-btn.ui-last-child {
-webkit-border-top-right-radius: inherit;
border-top-right-radius: inherit;
-webkit-border-bottom-right-radius: inherit;
border-bottom-right-radius: inherit;
}
.ui-controlgroup .ui-shadow:not(.ui-focus) {
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
@media all and (min-width: 28em){
.ui-field-contain .ui-controlgroup-label { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; }
.ui-field-contain .ui-controlgroup-controls { width: 78%; display: inline-block; }
.ui-field-contain .ui-controlgroup .ui-select { width: 100%; display: block; }
.ui-field-contain .ui-controlgroup-horizontal .ui-select { width: auto; }
.ui-hide-label .ui-controlgroup-controls { width: 100%; }
}
.ui-dialog {
background: none !important; /* this is to ensure that dialog theming does not apply (by default at least) on the page div */
}
.ui-dialog-contain {
width: 92.5%;
max-width: 500px;
margin: 10% auto 15px auto;
padding: 0;
position: relative;
top: -15px;
}
.ui-dialog-contain > .ui-header,
.ui-dialog-contain > .ui-content,
.ui-dialog-contain > .ui-footer {
display: block;
position: relative;
width: auto;
margin: 0;
}
.ui-dialog-contain > .ui-header {
border: none;
overflow: hidden;
z-index: 10;
padding: 0;
}
.ui-dialog-contain > .ui-content {
padding: 15px;
}
.ui-dialog-contain > .ui-footer {
z-index: 10;
padding: 0 15px;
}
/* fixed page header & footer configuration */
.ui-header-fixed,
.ui-footer-fixed {
left: 0;
right: 0;
width: 100%;
position: fixed;
z-index: 1000;
}
.ui-header-fixed {
top: -1px;
padding-top: 1px;
}
.ui-header-fixed.ui-fixed-hidden {
top: 0;
padding-top: 0;
}
.ui-footer-fixed {
bottom: -1px;
padding-bottom: 1px;
}
.ui-footer-fixed.ui-fixed-hidden {
bottom: 0;
padding-bottom: 0;
}
.ui-header-fullscreen,
.ui-footer-fullscreen {
filter: Alpha(Opacity=90);
opacity: .9;
}
.ui-page-header-fixed {
padding-top: 2.6875em;
}
.ui-page-footer-fixed {
padding-bottom: 2.6875em;
}
.ui-page-header-fullscreen > .ui-content,
.ui-page-footer-fullscreen > .ui-content {
padding: 0;
}
.ui-fixed-hidden {
position: absolute;
}
.ui-page-header-fullscreen .ui-fixed-hidden,
.ui-page-footer-fullscreen .ui-fixed-hidden {
left: -9999px;
}
.ui-header-fixed .ui-btn,
.ui-footer-fixed .ui-btn {
z-index: 10;
}
/* workarounds for other widgets */
.ui-android-2x-fixed .ui-li-has-thumb {
-webkit-transform: translate3d(0,0,0);
}
.ui-checkbox, .ui-radio { position: relative; clear: both; margin: 0; z-index: 1; }
.ui-checkbox .ui-btn, .ui-radio .ui-btn { text-align: left; z-index: 2; }
.ui-controlgroup .ui-checkbox .ui-btn, .ui-controlgroup .ui-radio .ui-btn { margin: 0; }
.ui-checkbox .ui-btn-inner, .ui-radio .ui-btn-inner { white-space: normal; }
.ui-checkbox .ui-btn-icon-left .ui-btn-inner,.ui-radio .ui-btn-icon-left .ui-btn-inner { padding-left: 45px; }
.ui-checkbox .ui-mini.ui-btn-icon-left .ui-btn-inner,.ui-radio .ui-mini.ui-btn-icon-left .ui-btn-inner { padding-left: 36px; }
.ui-checkbox .ui-btn-icon-right .ui-btn-inner, .ui-radio .ui-btn-icon-right .ui-btn-inner { padding-right: 45px; }
.ui-checkbox .ui-mini.ui-btn-icon-right .ui-btn-inner, .ui-radio .ui-mini.ui-btn-icon-right .ui-btn-inner { padding-right: 36px; }
.ui-checkbox .ui-btn-icon-top .ui-btn-inner, .ui-radio .ui-btn-icon-top .ui-btn-inner { padding-right: 0; padding-left: 0; text-align: center; }
.ui-checkbox .ui-btn-icon-bottom .ui-btn-inner, .ui-radio .ui-btn-icon-bottom .ui-btn-inner { padding-right: 0; padding-left: 0; text-align: center; }
.ui-checkbox .ui-icon, .ui-radio .ui-icon { top: 1.1em; }
.ui-checkbox .ui-btn-icon-left .ui-icon, .ui-radio .ui-btn-icon-left .ui-icon { left: 15px; }
.ui-checkbox .ui-mini.ui-btn-icon-left .ui-icon, .ui-radio .ui-mini.ui-btn-icon-left .ui-icon { left: 9px; }
.ui-checkbox .ui-btn-icon-right .ui-icon, .ui-radio .ui-btn-icon-right .ui-icon { right: 15px; }
.ui-checkbox .ui-mini.ui-btn-icon-right .ui-icon, .ui-radio .ui-mini.ui-btn-icon-right .ui-icon { right: 9px; }
.ui-checkbox .ui-btn-icon-top .ui-icon, .ui-radio .ui-btn-icon-top .ui-icon { top: 10px; }
.ui-checkbox .ui-btn-icon-bottom .ui-icon, .ui-radio .ui-btn-icon-bottom .ui-icon { top: auto; bottom: 10px; }
.ui-checkbox .ui-btn-icon-right .ui-icon, .ui-radio .ui-btn-icon-right .ui-icon { right: 15px; }
.ui-checkbox .ui-mini.ui-btn-icon-right .ui-icon, .ui-radio .ui-mini.ui-btn-icon-right .ui-icon { right: 9px; }
.ui-controlgroup-horizontal .ui-checkbox .ui-icon,
.ui-controlgroup-horizontal .ui-radio .ui-icon { display: none; }
.ui-controlgroup-horizontal .ui-checkbox .ui-btn-inner,
.ui-controlgroup-horizontal .ui-radio .ui-btn-inner { padding: .6em 20px; }
.ui-controlgroup-horizontal .ui-checkbox .ui-mini .ui-btn-inner,
.ui-controlgroup-horizontal .ui-radio .ui-mini .ui-btn-inner { padding: .55em 11px .5em; }
/* input, label positioning */
.ui-checkbox input,.ui-radio input { position:absolute; left:20px; top:50%; width: 10px; height: 10px; margin:-5px 0 0 0; outline: 0 !important; z-index: 1; }
.ui-rangeslider {
zoom: 1;
margin: 0;
}
.ui-rangeslider:before,
.ui-rangeslider:after {
content: "";
display: table;
}
.ui-rangeslider:after {
clear: both;
}
/* Margin-top/bottom: .5em * 16px/14px to make it equal to ui-rangeslider-sliders margin (input font-size is 14px) */
.ui-rangeslider input.ui-input-text.ui-slider-input {
margin: .57143em 0;
}
.ui-rangeslider.ui-mini input.ui-slider-input {
margin: .28571em 0;
}
.ui-rangeslider input.ui-slider-input.ui-rangeslider-last {
float: right;
}
.ui-rangeslider .ui-rangeslider-sliders {
position: relative;
overflow: visible;
height: 30px;
margin: .5em 68px;
}
.ui-rangeslider.ui-mini .ui-rangeslider-sliders {
margin: .25em 68px;
}
.ui-field-contain .ui-rangeslider input.ui-slider-input,
.ui-field-contain .ui-rangeslider.ui-mini input.ui-slider-input,
.ui-field-contain .ui-rangeslider .ui-rangeslider-sliders,
.ui-field-contain .ui-rangeslider.ui-mini .ui-rangeslider-sliders {
margin-top: 0;
margin-bottom: 0;
}
.ui-rangeslider .ui-rangeslider-sliders .ui-slider-track {
position: absolute;
top: 6px;
right: 0;
left: 0;
margin: 0;
}
.ui-rangeslider.ui-mini .ui-rangeslider-sliders .ui-slider-track {
top: 8px;
}
.ui-rangeslider .ui-slider-track:first-child .ui-slider-bg {
display: none;
}
.ui-rangeslider .ui-rangeslider-sliders .ui-slider-track:first-child {
background-color: transparent;
background: none;
border-width: 0;
height: 0;
}
/* this makes ie6 and ie7 set height to 0 to fix z-index problem */
html >/**/body .ui-rangeslider .ui-rangeslider-sliders .ui-slider-track:first-child {
height: 15px;
border-width: 1px;
}
html >/**/body .ui-rangeslider.ui-mini .ui-rangeslider-sliders .ui-slider-track:first-child {
height: 12px;
}
@media all and (min-width: 28em){
.ui-field-contain .ui-rangeslider label.ui-slider {
float: left;
}
.ui-field-contain .ui-rangeslider input.ui-slider-input {
position: relative;
z-index: 1;
}
.ui-field-contain .ui-rangeslider input.ui-slider-input.ui-rangeslider-first,
.ui-field-contain .ui-rangeslider.ui-mini input.ui-slider-input.ui-rangeslider-first {
margin-right: 17px;
}
.ui-field-contain .ui-rangeslider .ui-rangeslider-sliders,
.ui-field-contain .ui-rangeslider.ui-mini .ui-rangeslider-sliders {
float: left;
width: 78%;
margin: 0 -68px;
}
.ui-field-contain .ui-rangeslider .ui-slider-track,
.ui-field-contain .ui-rangeslider.ui-mini .ui-slider-track {
right: 68px;
left: 68px;
}
.ui-field-contain.ui-hide-label .ui-rangeslider input.ui-slider-input.ui-rangeslider-first {
margin: 0;
}
.ui-field-contain.ui-hide-label .ui-rangeslider .ui-rangeslider-sliders,
.ui-field-contain.ui-hide-label .ui-rangeslider.ui-mini .ui-rangeslider-sliders {
width: auto;
float: none;
margin: 0 68px;
}
.ui-field-contain.ui-hide-label .ui-rangeslider .ui-slider-track,
.ui-field-contain.ui-hide-label .ui-rangeslider.ui-mini .ui-slider-track {
right: 0;
left: 0;
}
}
.ui-select { display: block; position: relative; }
.ui-select select { position: absolute; left: -9999px; top: -9999px; }
.ui-select .ui-btn { opacity: 1; }
.ui-field-contain .ui-select .ui-btn { margin: 0; }
/* Fixes #2588: When Windows Phone 7.5 (Mango) tries to calculate a numeric opacity for a select (including "inherit") without explicitly specifying an opacity on the parent to give it context, a bug appears where clicking elsewhere on the page after opening the select will open the select again. */
.ui-select .ui-btn select { cursor: pointer; -webkit-appearance: none; left: 0; top:0; width: 100%; min-height: 1.5em; min-height: 100%; height: 3em; max-height: 100%; filter: Alpha(Opacity=0); opacity: 0; z-index: 2; }
.ui-select .ui-disabled { opacity: .3; }
/* Display none because of issues with IE/WP's filter alpha opacity */
.ui-select .ui-disabled select { display: none; }
@-moz-document url-prefix() { .ui-select .ui-btn select { opacity: 0.0001; }}
.ui-select .ui-btn.ui-select-nativeonly { border-radius: 0; border: 0; }
.ui-select .ui-btn.ui-select-nativeonly select { opacity: 1; text-indent: 0; display: block; }
.ui-select .ui-disabled.ui-select-nativeonly .ui-btn-inner { opacity: 0; }
.ui-select .ui-btn-icon-right .ui-btn-inner, .ui-select .ui-li-has-count .ui-btn-inner { padding-right: 45px; }
.ui-select .ui-mini.ui-btn-icon-right .ui-btn-inner { padding-right: 32px; }
.ui-select .ui-btn-icon-right.ui-li-has-count .ui-btn-inner { padding-right: 80px; }
.ui-select .ui-mini.ui-btn-icon-right.ui-li-has-count .ui-btn-inner { padding-right: 67px; }
.ui-select .ui-btn-icon-right .ui-icon { right: 15px; }
.ui-select .ui-mini.ui-btn-icon-right .ui-icon { right: 7px; }
.ui-select .ui-btn-icon-right.ui-li-has-count .ui-li-count { right: 45px; }
.ui-select .ui-mini.ui-btn-icon-right.ui-li-has-count .ui-li-count { right: 32px; }
/* labels */
label.ui-select { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; display: block; }
/*listbox*/
.ui-select .ui-btn-text, .ui-selectmenu .ui-btn-text { display: block; min-height: 1em; overflow: hidden !important;
/* This !important is required for iPad Safari specifically. See https://github.com/jquery/jquery-mobile/issues/2647 */ }
.ui-select .ui-btn-text { text-overflow: ellipsis; }
.ui-selectmenu { padding: 6px; min-width: 160px; }
.ui-selectmenu .ui-listview { margin: 0; }
.ui-selectmenu .ui-btn.ui-li-divider { cursor: default; }
.ui-screen-hidden, .ui-selectmenu-list .ui-li .ui-icon { display: none; }
.ui-selectmenu-list .ui-li .ui-icon { display: block; }
.ui-li.ui-selectmenu-placeholder { display: none; }
.ui-selectmenu .ui-header { margin: 0; padding: 0; }
.ui-selectmenu.ui-popup .ui-header { -webkit-border-top-left-radius: 0; border-top-left-radius: 0; -webkit-border-top-right-radius: 0; border-top-right-radius: 0; }
.ui-selectmenu .ui-header .ui-title { margin: 0.6em 46px 0.8em; }
@media all and (min-width: 28em){
.ui-field-contain label.ui-select { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; }
.ui-field-contain .ui-select { width: 78%; display: inline-block; }
.ui-hide-label .ui-select { width: 100%; }
}
/* when no placeholder is defined in a multiple select, the header height doesn't even extend past the close button. this shim's content in there */
.ui-selectmenu .ui-header h1:after { content: '.'; visibility: hidden; }
label.ui-slider {
font-size: 16px;
line-height: 1.4;
font-weight: normal;
margin: 0;
display: block;
}
.ui-field-contain label.ui-slider {
margin-bottom: .4em;
}
div.ui-slider {
height: 30px;
margin: .5em 0;
zoom: 1;
}
div.ui-slider.ui-mini {
margin: .25em 0;
}
.ui-field-contain div.ui-slider,
.ui-field-contain div.ui-slider.ui-mini {
margin: 0;
}
div.ui-slider:before, div.ui-slider:after {
content: "";
display: table;
}
div.ui-slider:after {
clear: both;
}
/* High level of specificity to override Textinput CSS. */
input.ui-input-text.ui-slider-input {
display: block;
float: left;
margin: 0;
padding: 4px;
width: 40px;
height: 22px;
line-height: 22px;
font-size: 14px;
border-width: 0;
background-image: none;
font-weight: bold;
text-align: center;
vertical-align: text-bottom;
outline: 0;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
-ms-box-sizing: content-box;
box-sizing: content-box;
}
.ui-slider-input::-webkit-outer-spin-button,
.ui-slider-input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.ui-slider-track,
.ui-slider-switch {
position: relative;
overflow: visible;
height: 15px;
margin: 0 15px 0 68px;
top: 6px;
}
.ui-slider-track.ui-mini {
height: 12px;
top: 8px;
}
.ui-slider-bg {
border: none;
height: 100%;
}
/* High level of specificity to override button margins in grids */
.ui-slider-track .ui-btn.ui-slider-handle,
.ui-slider-switch .ui-btn.ui-slider-handle {
position: absolute;
z-index: 1;
top: 50%;
width: 28px;
height: 28px;
margin: -15px 0 0 -15px;
outline: 0;
}
.ui-slider-track.ui-mini .ui-slider-handle {
height: 14px;
width: 14px;
margin: -8px 0 0 -7px;
}
.ui-slider-handle .ui-btn-inner {
padding: 0;
height: 100%;
}
.ui-slider-track.ui-mini .ui-slider-handle .ui-btn-inner {
height: 30px;
width: 30px;
padding: 0;
margin: -9px 0 0 -9px;
border-top: none;
}
select.ui-slider-switch {
display: none;
}
div.ui-slider-switch {
display: inline-block;
height: 32px;
width: 5.8em;
margin: .5em 0;
top: 0;
}
/* reset the clearfix */
div.ui-slider-switch:before, div.ui-slider-switch:after {
display: none;
clear: none;
}
div.ui-slider-switch.ui-mini {
width: 5em;
height: 29px;
margin: .25em 0;
top: 0;
}
.ui-field-contain .ui-slider-switch,
.ui-field-contain .ui-slider-switch.ui-mini {
margin: 0;
}
.ui-slider-inneroffset {
margin: 0 16px;
position: relative;
z-index: 1;
}
.ui-slider-switch.ui-mini .ui-slider-inneroffset {
margin: 0 15px 0 14px;
}
.ui-slider-switch .ui-btn.ui-slider-handle {
margin: 1px 0 0 -15px;
}
.ui-slider-switch.ui-mini .ui-slider-handle {
width: 25px;
height: 25px;
margin: 1px 0 0 -13px;
padding: 0;
}
.ui-slider-handle-snapping {
-webkit-transition: left 70ms linear;
-moz-transition: left 70ms linear;
}
.ui-slider-switch.ui-mini .ui-slider-handle .ui-btn-inner {
height: 30px;
width: 30px;
padding: 0;
margin: 0;
border-top: none;
}
.ui-slider-switch .ui-slider-label {
position: absolute;
text-align: center;
width: 100%;
overflow: hidden;
font-size: 16px;
top: 0;
line-height: 2;
min-height: 100%;
border-width: 0;
white-space: nowrap;
cursor: pointer;
}
.ui-slider-switch.ui-mini .ui-slider-label {
font-size: 14px;
}
.ui-slider-switch .ui-slider-label-a {
z-index: 1;
left: 0;
text-indent: -1.5em;
}
.ui-slider-switch .ui-slider-label-b {
z-index: 0;
right: 0;
text-indent: 1.5em;
}
@media all and (min-width: 28em){
.ui-field-contain label.ui-slider {
vertical-align: top;
display: inline-block;
width: 20%;
margin: 0 2% 0 0;
}
.ui-field-contain div.ui-slider {
display: inline-block;
width: 78%;
}
.ui-field-contain.ui-hide-label div.ui-slider {
display: block;
width: auto;
}
.ui-field-contain div.ui-slider-switch,
.ui-field-contain.ui-hide-label div.ui-slider-switch {
display: inline-block;
width: 5.8em;
}
.ui-field-contain div.ui-slider-switch.ui-mini {
width: 5em;
}
}
label.ui-input-text { font-size: 16px; line-height: 1.4; display: block; font-weight: normal; margin: 0 0 .3em; }
input.ui-input-text, textarea.ui-input-text { background-image: none; padding: .4em; margin: .5em 0; min-height: 1.4em; line-height: 1.4em; font-size: 16px; display: block; width: 100%; outline: 0; }
input.ui-mini, .ui-mini input, textarea.ui-mini { font-size: 14px; }
div.ui-input-text input.ui-input-text, div.ui-input-text textarea.ui-input-text,
.ui-input-search input.ui-input-text { border: none; width: 100%; padding: .4em 0; margin: 0; display: block; background: transparent none; outline: 0 !important; }
.ui-input-search, div.ui-input-text { margin: .5em 0; background-image: none; position: relative; }
.ui-input-search { padding: 0 30px; }
div.ui-input-text { padding: 0 .4em; }
div.ui-input-has-clear { padding: 0 30px 0 .4em; }
input.ui-input-text.ui-mini, textarea.ui-input-text.ui-mini,
.ui-input-search.ui-mini, div.ui-input-text.ui-mini { margin: .25em 0; }
.ui-field-contain input.ui-input-text, .ui-field-contain textarea.ui-input-text,
.ui-field-contain .ui-input-search, .ui-field-contain div.ui-input-text { margin: 0; }
textarea.ui-input-text { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; }
input.ui-input-text { -webkit-appearance: none; }
textarea.ui-input-text { height: 50px; -webkit-transition: height 200ms linear; -moz-transition: height 200ms linear; -o-transition: height 200ms linear; transition: height 200ms linear; }
textarea.ui-mini { height: 45px; }
.ui-icon-searchfield:after { position: absolute; left: 7px; top: 50%; margin-top: -9px; content: ""; width: 18px; height: 18px; opacity: .5; }
.ui-input-search .ui-input-clear, .ui-input-text .ui-input-clear { position: absolute; right: 0; top: 50%; margin-top: -13px; }
.ui-mini .ui-input-clear { right: -3px; }
.ui-input-search .ui-input-clear-hidden, .ui-input-text .ui-input-clear-hidden { display: none; }
/* Resolves issue #5166: Added to support issue introduced in Firefox 15. We can likely remove this in the future. */
input::-moz-placeholder, textarea::-moz-placeholder { color: #aaa; }
/* For IE10 */
:-ms-input-placeholder { color: #aaa; }
/* Resolves issue #5131: Width of textinput depends on its type, for Android 4.1 */
input[type=number]::-webkit-outer-spin-button { margin: 0; }
@media all and (min-width: 28em){
.ui-field-contain label.ui-input-text { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0 }
.ui-field-contain input.ui-input-text,
.ui-field-contain textarea.ui-input-text,
.ui-field-contain .ui-input-search,
.ui-field-contain div.ui-input-text { width: 78%; display: inline-block; }
.ui-field-contain .ui-input-search,
.ui-field-contain div.ui-input-text { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; }
.ui-hide-label input.ui-input-text,
.ui-hide-label textarea.ui-input-text,
.ui-hide-label .ui-input-search,
.ui-hide-label div.ui-input-text,
.ui-input-search input.ui-input-text,
div.ui-input-text input.ui-input-text { width: 100%; }
}
.ui-listview { margin: 0; }
ol.ui-listview, ol.ui-listview .ui-li-divider { counter-reset: listnumbering; }
.ui-content .ui-listview, .ui-panel-inner > .ui-listview { margin: -15px; }
.ui-collapsible-content > .ui-listview { margin: -10px -15px; }
.ui-content .ui-listview-inset, .ui-panel-inner .ui-listview-inset { margin: 1em 0; }
.ui-collapsible-content .ui-listview-inset { margin: .5em 0; }
.ui-listview, .ui-li { list-style: none; padding: 0; }
.ui-li, .ui-li.ui-field-contain { display: block; margin: 0; position: relative; overflow: visible; text-align: left; border-width: 0; border-top-width: 1px; }
.ui-li.ui-btn, .ui-li.ui-field-contain, .ui-li-divider, .ui-li-static { margin: 0; }
.ui-listview-inset .ui-li { border-right-width: 1px; border-left-width: 1px; }
.ui-li.ui-last-child, .ui-li.ui-field-contain.ui-last-child { border-bottom-width: 1px; }
.ui-collapsible-content > .ui-listview:not(.ui-listview-inset) > .ui-li.ui-first-child { border-top-width: 0; }
.ui-collapsible-themed-content .ui-listview:not(.ui-listview-inset) > .ui-li.ui-last-child { border-bottom-width: 0; }
.ui-li .ui-btn-text a.ui-link-inherit { text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
.ui-li-static { background-image: none; }
.ui-li-divider { padding: .5em 15px; font-size: 14px; font-weight: bold; }
ol.ui-listview .ui-link-inherit:before, ol.ui-listview .ui-li-static:before, .ui-li-dec { font-size: .8em; display: inline-block; padding-right: .3em; font-weight: normal; counter-increment: listnumbering; content: counter(listnumbering) ". "; }
ol.ui-listview .ui-li-jsnumbering:before { content: "" !important; } /* to avoid chance of duplication */
.ui-listview .ui-li > .ui-btn-text {
-webkit-border-radius: inherit;
border-radius: inherit;
}
.ui-listview > .ui-li.ui-first-child,
.ui-listview .ui-btn.ui-first-child > .ui-li > .ui-btn-text > .ui-link-inherit {
-webkit-border-top-right-radius: inherit;
border-top-right-radius: inherit;
-webkit-border-top-left-radius: inherit;
border-top-left-radius: inherit;
}
.ui-listview > .ui-li.ui-last-child,
.ui-listview .ui-btn.ui-last-child > .ui-li > .ui-btn-text > .ui-link-inherit,
.ui-collapsible-content > .ui-listview:not(.ui-listview-inset),
.ui-collapsible-content > .ui-listview:not(.ui-listview-inset) .ui-li.ui-last-child {
-webkit-border-bottom-right-radius: inherit;
border-bottom-right-radius: inherit;
-webkit-border-bottom-left-radius: inherit;
border-bottom-left-radius: inherit;
}
.ui-listview > .ui-li.ui-first-child .ui-li-link-alt {
-webkit-border-top-right-radius: inherit;
border-top-right-radius: inherit;
}
.ui-listview > .ui-li.ui-last-child .ui-li-link-alt {
-webkit-border-bottom-right-radius: inherit;
border-bottom-right-radius: inherit;
}
.ui-listview > .ui-li.ui-first-child .ui-li-thumb:not(.ui-li-icon) {
-webkit-border-top-left-radius: inherit;
border-top-left-radius: inherit;
}
.ui-listview > .ui-li.ui-last-child .ui-li-thumb:not(.ui-li-icon) {
-webkit-border-bottom-left-radius: inherit;
border-bottom-left-radius: inherit;
}
.ui-li>.ui-btn-inner { display: block; position: relative; padding: 0; }
.ui-li .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li { padding: .7em 15px; display: block; }
.ui-li-has-thumb .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-thumb { min-height: 59px; padding-left: 100px; }
.ui-li-has-icon .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-icon { min-height: 20px; padding-left: 40px; }
.ui-li-has-count .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-count, .ui-li-divider.ui-li-has-count { padding-right: 45px; }
.ui-li-has-arrow .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-arrow { padding-right: 40px; }
.ui-li-has-arrow.ui-li-has-count .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-arrow.ui-li-has-count { padding-right: 75px; }
.ui-li-heading { font-size: 16px; font-weight: bold; display: block; margin: .6em 0; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
.ui-li-desc { font-size: 12px; font-weight: normal; display: block; margin: -.5em 0 .6em; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
ol.ui-listview > .ui-li .ui-li-heading { display: inline-block; width: 100%; margin-left: -1.3em; text-indent: 1.3em; vertical-align: middle; }
ol.ui-listview > .ui-li .ui-li-desc:not(.ui-li-aside) { text-indent: 1.55em; }
.ui-li-thumb, .ui-listview .ui-li-icon { position: absolute; left: 1px; top: 0; max-height: 80px; max-width: 80px; }
.ui-listview .ui-li-icon { max-height: 16px; max-width: 16px; left: 10px; top: .9em; }
.ui-li-thumb, .ui-listview .ui-li-icon, .ui-li-content { float: left; margin-right: 10px; }
.ui-li-aside { float: right; width: 50%; text-align: right; margin: .3em 0; }
@media all and (min-width: 480px){
.ui-li-aside { width: 45%; }
}
.ui-li-divider { cursor: default; }
.ui-li-has-alt .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-alt { padding-right: 53px; }
.ui-li-has-alt.ui-li-has-count .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-alt.ui-li-has-count { padding-right: 88px; }
.ui-li-has-count .ui-li-count { position: absolute; font-size: 11px; font-weight: bold; padding: .2em .5em; top: 50%; margin-top: -.9em; right: 10px; }
.ui-li-has-count.ui-li-divider .ui-li-count, .ui-li-has-count .ui-link-inherit .ui-li-count { margin-top: -.95em; }
.ui-li-has-arrow.ui-li-has-count .ui-li-count { right: 40px; }
.ui-li-has-alt.ui-li-has-count .ui-li-count { right: 53px; }
.ui-li-link-alt { position: absolute; width: 40px; height: 100%; border-width: 0; border-left-width: 1px; top: 0; right: 0; margin: 0; padding: 0; z-index: 2; }
.ui-li-link-alt .ui-btn { overflow: hidden; position: absolute; right: 8px; top: 50%; margin: -13px 0 0 0; border-bottom-width: 1px; z-index: -1;}
.ui-li-link-alt .ui-btn-inner { padding: 0; height: 100%; position: absolute; width: 100%; top: 0; left: 0;}
.ui-li-link-alt .ui-btn .ui-icon { right: 50%; margin-right: -9px; }
.ui-li-link-alt .ui-btn-icon-notext .ui-btn-inner .ui-icon { position: absolute; top: 50%; margin-top: -9px; }
.ui-listview * .ui-btn-inner > .ui-btn > .ui-btn-inner { border-top: 0; }
.ui-listview-filter { border-width: 0; overflow: hidden; margin: -15px -15px 15px -15px; }
.ui-collapsible-content .ui-listview-filter { margin: -10px -15px 10px -15px; border-bottom: inherit; }
.ui-listview-filter-inset { margin: -15px -5px; background: transparent; }
.ui-collapsible-content .ui-listview-filter-inset { margin: -5px; border-bottom-width: 0; }
.ui-listview-filter .ui-input-search { margin: 5px; width: auto; display: block; }
.ui-li.ui-screen-hidden{ display:none; }
/* Odd iPad positioning issue. */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
.ui-li .ui-btn-text { overflow: visible; }
}
.ui-navbar { max-width: 100%; }
.ui-navbar.ui-mini { margin: 0; }
.ui-navbar ul:before, .ui-navbar ul:after { content: " "; display: table; }
.ui-navbar ul:after { clear: both; }
.ui-navbar ul { list-style:none; margin: 0; padding: 0; position: relative; display: block; border: 0; max-width: 100%; overflow: visible; zoom: 1; }
.ui-navbar li .ui-btn { display: block; text-align: center; margin: 0 -1px 0 0; border-right-width: 0; }
.ui-navbar li .ui-btn-icon-right .ui-icon { right: 6px; }
/* add border if not in header/footer (full width) */
.ui-navbar li:last-child .ui-btn,
.ui-navbar .ui-grid-duo .ui-block-b .ui-btn { margin-right: 0; border-right-width: 1px; }
.ui-header .ui-navbar li:last-child .ui-btn,
.ui-footer .ui-navbar li:last-child .ui-btn,
.ui-header .ui-navbar .ui-grid-duo .ui-block-b .ui-btn,
.ui-footer .ui-navbar .ui-grid-duo .ui-block-b .ui-btn { margin-right: -1px; border-right-width: 0; }
.ui-navbar .ui-grid-duo li.ui-block-a:last-child .ui-btn { margin-right: -1px; border-right-width: 1px; }
.ui-header .ui-navbar li .ui-btn,
.ui-footer .ui-navbar li .ui-btn { border-top-width: 0; border-bottom-width: 0; }
/* fixing gaps caused by subpixel problem */
.ui-header .ui-navbar .ui-grid-b li.ui-block-c .ui-btn,
.ui-footer .ui-navbar .ui-grid-b li.ui-block-c .ui-btn { margin-right: -5px; }
.ui-header .ui-navbar .ui-grid-c li.ui-block-d .ui-btn,
.ui-footer .ui-navbar .ui-grid-c li.ui-block-d .ui-btn,
.ui-header .ui-navbar .ui-grid-d li.ui-block-e .ui-btn,
.ui-footer .ui-navbar .ui-grid-d li.ui-block-e .ui-btn { margin-right: -4px; }
.ui-header .ui-navbar .ui-grid-b li.ui-block-c .ui-btn-icon-right .ui-icon,
.ui-footer .ui-navbar .ui-grid-b li.ui-block-c .ui-btn-icon-right .ui-icon,
.ui-header .ui-navbar .ui-grid-c li.ui-block-d .ui-btn-icon-right .ui-icon,
.ui-footer .ui-navbar .ui-grid-c li.ui-block-d .ui-btn-icon-right .ui-icon,
.ui-header .ui-navbar .ui-grid-d li.ui-block-e .ui-btn-icon-right .ui-icon,
.ui-footer .ui-navbar .ui-grid-d li.ui-block-e .ui-btn-icon-right .ui-icon { right: 8px; }
.ui-navbar li .ui-btn .ui-btn-inner { padding-top: .7em; padding-bottom: .8em }
.ui-navbar li .ui-btn-icon-top .ui-btn-inner { padding-top: 30px; }
.ui-navbar li .ui-btn-icon-bottom .ui-btn-inner { padding-bottom: 30px; }
/* panel */
.ui-panel {
width: 17em;
min-height: 100%;
max-height: none;
border-width: 0;
position: absolute;
top: 0;
display: block;
}
.ui-panel-closed {
width: 0;
max-height: 100%;
overflow: hidden;
visibility: hidden;
}
.ui-panel-fixed {
position: fixed;
bottom: -1px; /* fixes gap on Chrome for Android */
padding-bottom: 1px;
}
.ui-panel-display-overlay {
z-index: 1001; /* fixed toolbars have z-index 1000 */
}
.ui-panel-display-reveal {
z-index: 0;
}
.ui-panel-display-push {
z-index: 999;
}
.ui-panel-inner {
padding: 15px;
}
/* content-wrap */
.ui-panel-content-wrap {
position: relative;
left: 0;
min-height: inherit;
border: none;
z-index: 999;
}
.ui-panel-content-wrap-display-overlay,
.ui-panel-animate.ui-panel-content-wrap > .ui-header, /* ios4 fix */
.ui-panel-content-wrap-closed {
position: static;
}
/* dismiss */
.ui-panel-dismiss {
position: absolute;
top: 0;
left:0;
height: 100%;
width: 100%;
z-index: 1002;
display: none;
}
.ui-panel-dismiss-open {
display: block;
}
/* animate class is added to panel, wrapper and fixed toolbars */
.ui-panel-animate {
-webkit-transition: -webkit-transform 350ms ease;
-moz-transition: -moz-transform 350ms ease;
transition: transform 350ms ease;
}
/* hardware acceleration for smoother transitions on WebKit browsers */
.ui-panel-animate.ui-panel:not(.ui-panel-display-reveal),
.ui-panel-animate.ui-panel:not(.ui-panel-display-reveal) > div,
.ui-panel-animate.ui-panel-closed.ui-panel-display-reveal > div,
.ui-panel-animate.ui-panel-content-wrap,
.ui-panel-animate.ui-panel-content-fixed-toolbar {
-webkit-backface-visibility: hidden;
-webkit-transform: translate3d(0,0,0);
}
/* positioning: panel */
/* panel left */
.ui-panel-position-left {
left: -17em;
}
/* animated: panel left (for overlay and push) */
.ui-panel-animate.ui-panel-position-left.ui-panel-display-overlay,
.ui-panel-animate.ui-panel-position-left.ui-panel-display-push {
left: 0;
-webkit-transform: translate3d(-17em,0,0);
-moz-transform: translate3d(-17em,0,0);
transform: translate3d(-17em,0,0);
}
/* panel left open */
.ui-panel-position-left.ui-panel-display-reveal, /* negate "panel left" for reveal */
.ui-panel-position-left.ui-panel-open {
left: 0;
}
/* animated: panel left open (for overlay and push) */
.ui-panel-animate.ui-panel-position-left.ui-panel-open.ui-panel-display-overlay,
.ui-panel-animate.ui-panel-position-left.ui-panel-open.ui-panel-display-push {
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
-moz-transform: none;
}
/* panel right */
.ui-panel-position-right {
right: -17em;
}
/* animated: panel right (for overlay and push) */
.ui-panel-animate.ui-panel-position-right.ui-panel-display-overlay,
.ui-panel-animate.ui-panel-position-right.ui-panel-display-push {
right: 0;
-webkit-transform: translate3d(17em,0,0);
-moz-transform: translate3d(17em,0,0);
transform: translate3d(17em,0,0);
}
/* panel right open */
.ui-panel-position-right.ui-panel-display-reveal, /* negate "panel right" for reveal */
.ui-panel-position-right.ui-panel-open {
right: 0;
}
/* animated: panel right open (for overlay and push) */
.ui-panel-animate.ui-panel-position-right.ui-panel-open.ui-panel-display-overlay,
.ui-panel-animate.ui-panel-position-right.ui-panel-open.ui-panel-display-push {
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
-moz-transform: none;
}
/* positioning: content wrap, fixed toolbars and dismiss */
/* panel left open */
.ui-panel-content-fixed-toolbar-position-left.ui-panel-content-fixed-toolbar-open,
.ui-panel-content-wrap-position-left.ui-panel-content-wrap-open,
.ui-panel-dismiss-position-left.ui-panel-dismiss-open {
left: 17em;
right: -17em;
}
/* animated: panel left open (for reveal and push) */
.ui-panel-animate.ui-panel-content-fixed-toolbar-position-left.ui-panel-content-fixed-toolbar-open.ui-panel-content-fixed-toolbar-display-reveal,
.ui-panel-animate.ui-panel-content-fixed-toolbar-position-left.ui-panel-content-fixed-toolbar-open.ui-panel-content-fixed-toolbar-display-push,
.ui-panel-animate.ui-panel-content-wrap-position-left.ui-panel-content-wrap-open.ui-panel-content-wrap-display-reveal,
.ui-panel-animate.ui-panel-content-wrap-position-left.ui-panel-content-wrap-open.ui-panel-content-wrap-display-push {
left: 0;
right: 0;
-webkit-transform: translate3d(17em,0,0);
-moz-transform: translate3d(17em,0,0);
transform: translate3d(17em,0,0);
}
/* panel right open */
.ui-panel-content-fixed-toolbar-position-right.ui-panel-content-fixed-toolbar-open,
.ui-panel-content-wrap-position-right.ui-panel-content-wrap-open,
.ui-panel-dismiss-position-right.ui-panel-dismiss-open {
left: -17em;
right: 17em;
}
/* animated: panel right open (for reveal and push) */
.ui-panel-animate.ui-panel-content-fixed-toolbar-position-right.ui-panel-content-fixed-toolbar-open.ui-panel-content-fixed-toolbar-display-reveal,
.ui-panel-animate.ui-panel-content-fixed-toolbar-position-right.ui-panel-content-fixed-toolbar-open.ui-panel-content-fixed-toolbar-display-push,
.ui-panel-animate.ui-panel-content-wrap-position-right.ui-panel-content-wrap-open.ui-panel-content-wrap-display-reveal,
.ui-panel-animate.ui-panel-content-wrap-position-right.ui-panel-content-wrap-open.ui-panel-content-wrap-display-push {
left: 0;
right: 0;
-webkit-transform: translate3d(-17em,0,0);
-moz-transform: translate3d(-17em,0,0);
transform: translate3d(-17em,0,0);
}
/* negate "panel left/right open" for overlay */
.ui-panel-content-fixed-toolbar-open.ui-panel-content-fixed-toolbar-display-overlay,
.ui-panel-content-wrap-open.ui-panel-content-wrap-display-overlay {
left: 0;
}
/* always disable overflow-x to prevent zoom issue on Android */
.ui-page-active.ui-page-panel {
overflow-x: hidden;
}
/* shadows and borders */
.ui-panel-display-reveal {
-webkit-box-shadow: inset -5px 0 5px rgba(0,0,0,.15);
-moz-box-shadow: inset -5px 0 5px rgba(0,0,0,.15);
box-shadow: inset -5px 0 5px rgba(0,0,0,.15);
}
.ui-panel-position-right.ui-panel-display-reveal {
-webkit-box-shadow: inset 5px 0 5px rgba(0,0,0,.15);
-moz-box-shadow: inset 5px 0 5px rgba(0,0,0,.15);
box-shadow: inset 5px 0 5px rgba(0,0,0,.15);
}
.ui-panel-display-overlay {
-webkit-box-shadow: 5px 0 5px rgba(0,0,0,.15);
-moz-box-shadow: 5px 0 5px rgba(0,0,0,.15);
box-shadow: 5px 0 5px rgba(0,0,0,.15);
}
.ui-panel-position-right.ui-panel-display-overlay {
-webkit-box-shadow: -5px 0 5px rgba(0,0,0,.15);
-moz-box-shadow: -5px 0 5px rgba(0,0,0,.15);
box-shadow: -5px 0 5px rgba(0,0,0,.15);
}
.ui-panel-display-push.ui-panel-open.ui-panel-position-left {
border-right-width: 1px;
margin-right: -1px;
}
.ui-panel-animate.ui-panel-content-fixed-toolbar-position-left.ui-panel-content-fixed-toolbar-open.ui-panel-content-fixed-toolbar-display-push {
margin-left: 1px;
}
.ui-panel-display-push.ui-panel-open.ui-panel-position-right {
border-left-width: 1px;
margin-left: -1px;
}
.ui-panel-animate.ui-panel-content-fixed-toolbar-position-right.ui-panel-content-fixed-toolbar-open.ui-panel-content-fixed-toolbar-display-push {
margin-right: 1px;
}
/* wrap on wide viewports once open */
@media (min-width:55em){
.ui-responsive-panel.ui-page-panel-open .ui-panel-content-fixed-toolbar-display-push.ui-panel-content-fixed-toolbar-position-left,
.ui-responsive-panel.ui-page-panel-open .ui-panel-content-fixed-toolbar-display-reveal.ui-panel-content-fixed-toolbar-position-left,
.ui-responsive-panel.ui-page-panel-open .ui-panel-content-wrap-display-push.ui-panel-content-wrap-position-left,
.ui-responsive-panel.ui-page-panel-open .ui-panel-content-wrap-display-reveal.ui-panel-content-wrap-position-left {
margin-right: 17em;
}
.ui-responsive-panel.ui-page-panel-open .ui-panel-content-fixed-toolbar-display-push.ui-panel-content-fixed-toolbar-position-right,
.ui-responsive-panel.ui-page-panel-open .ui-panel-content-fixed-toolbar-display-reveal.ui-panel-content-fixed-toolbar-position-right,
.ui-responsive-panel.ui-page-panel-open .ui-panel-content-wrap-display-push.ui-panel-content-wrap-position-right,
.ui-responsive-panel.ui-page-panel-open .ui-panel-content-wrap-display-reveal.ui-panel-content-wrap-position-right {
margin-left: 17em;
}
.ui-responsive-panel.ui-page-panel-open .ui-panel-content-fixed-toolbar-display-push,
.ui-responsive-panel.ui-page-panel-open .ui-panel-content-fixed-toolbar-display-reveal {
width: auto;
}
.ui-responsive-panel .ui-panel-dismiss-display-push {
display: none;
}
}
.ui-popup-open .ui-header-fixed,
.ui-popup-open .ui-footer-fixed {
position: absolute !important; /* See line #553 of popup.js */
}
.ui-popup-screen {
background-image: url(data:image/gif;base64,R0lGODlhAQABAID/AMDAwAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==); /* Necessary to set some form of background to ensure element is clickable in IE6/7. While legacy IE won't understand the data-URI'd image, it ensures no additional requests occur in all other browsers with little overhead. */
top: 0;
left: 0;
right: 0;
bottom: 1px;
position: absolute;
filter: Alpha(Opacity=0);
opacity: 0;
z-index: 1099;
}
.ui-popup-screen.in {
opacity: 0.5;
filter: Alpha(Opacity=50);
}
.ui-popup-screen.out {
opacity: 0;
filter: Alpha(Opacity=0);
}
.ui-popup-container {
z-index: 1100;
display: inline-block;
position: absolute;
padding: 0;
outline: 0;
}
.ui-popup {
position: relative;
}
.ui-popup.ui-content,
.ui-popup .ui-content {
overflow: visible;
}
.ui-popup > p,
.ui-popup > h1,
.ui-popup > h2,
.ui-popup > h3,
.ui-popup > h4,
.ui-popup > h5,
.ui-popup > h6 {
margin: .5em 7px;
}
.ui-popup > span {
display: block;
margin: .5em 7px;
}
.ui-popup .ui-title {
font-size: 16px;
font-weight: bold;
margin-top: .5em;
margin-bottom: .5em;
}
.ui-popup-container .ui-content > p,
.ui-popup-container .ui-content > h1,
.ui-popup-container .ui-content > h2,
.ui-popup-container .ui-content > h3,
.ui-popup-container .ui-content > h4,
.ui-popup-container .ui-content > h5,
.ui-popup-container .ui-content > h6 {
margin: .5em 0;
}
.ui-popup-container .ui-content > span {
margin: 0;
}
.ui-popup-container .ui-content > p:first-child,
.ui-popup-container .ui-content > h1:first-child,
.ui-popup-container .ui-content > h2:first-child,
.ui-popup-container .ui-content > h3:first-child,
.ui-popup-container .ui-content > h4:first-child,
.ui-popup-container .ui-content > h5:first-child,
.ui-popup-container .ui-content > h6:first-child {
margin-top: 0;
}
.ui-popup-container .ui-content > p:last-child,
.ui-popup-container .ui-content > h1:last-child,
.ui-popup-container .ui-content > h2:last-child,
.ui-popup-container .ui-content > h3:last-child,
.ui-popup-container .ui-content > h4:last-child,
.ui-popup-container .ui-content > h5:last-child,
.ui-popup-container .ui-content > h6:last-child {
margin-bottom: 0;
}
.ui-popup > img {
width: auto;
height: auto;
max-width: 100%;
max-height: 100%;
vertical-align: middle;
}
.ui-popup:not(.ui-content) > img:only-child,
.ui-popup:not(.ui-content) > .ui-btn-left:first-child + img:last-child,
.ui-popup:not(.ui-content) > .ui-btn-right:first-child + img:last-child {
-webkit-border-radius: inherit;
border-radius: inherit;
}
.ui-popup iframe {
vertical-align: middle;
}
@media all and (min-width: 28em){
.ui-popup .ui-field-contain label.ui-submit,
.ui-popup .ui-field-contain .ui-controlgroup-label,
.ui-popup .ui-field-contain label.ui-select,
.ui-popup .ui-field-contain label.ui-input-text {
font-size: 16px; line-height: 1.4; display: block; font-weight: normal; margin: 0 0 .3em;
}
.ui-popup .ui-field-contain .ui-btn.ui-submit,
.ui-popup .ui-field-contain .ui-controlgroup-controls,
.ui-popup .ui-field-contain .ui-select,
.ui-popup .ui-field-contain input.ui-input-text,
.ui-popup .ui-field-contain textarea.ui-input-text,
.ui-popup .ui-field-contain .ui-input-search {
width: 100%; display: block;
}
}
.ui-popup > .ui-btn-left,
.ui-popup > .ui-btn-right {
position: absolute;
top: -9px;
margin: 0;
z-index: 1101;
}
.ui-popup > .ui-btn-left { left: -9px; }
.ui-popup > .ui-btn-right { right: -9px; }
.ui-popup-hidden { top: -99999px; left: -9999px; visibility: hidden; }
@-webkit-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
@-moz-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
@-webkit-keyframes fadeout {
from { opacity: 1; }
to { opacity: 0; }
}
@-moz-keyframes fadeout {
from { opacity: 1; }
to { opacity: 0; }
}
@keyframes fadeout {
from { opacity: 1; }
to { opacity: 0; }
}
.fade.out {
opacity: 0;
-webkit-animation-duration: 125ms;
-webkit-animation-name: fadeout;
-moz-animation-duration: 125ms;
-moz-animation-name: fadeout;
animation-duration: 125ms;
animation-name: fadeout;
}
.fade.in {
opacity: 1;
-webkit-animation-duration: 225ms;
-webkit-animation-name: fadein;
-moz-animation-duration: 225ms;
-moz-animation-name: fadein;
animation-duration: 225ms;
animation-name: fadein;
}
.ui-table {
border: 0;
border-collapse: collapse;
padding: 0;
width: 100%;
}
.ui-table th,
.ui-table td {
line-height: 1.5em;
text-align: left;
padding: .4em .5em;
vertical-align:top;
}
.ui-table th .ui-btn,
.ui-table td .ui-btn {
line-height: normal;
}
.ui-table th {
font-weight: bold;
}
.ui-table caption {
text-align:left;
margin-bottom:1.4em;
opacity: .5;
}
/* Add strokes between each row */
.table-stroke thead th {
border-bottom: 1px solid #d6d6d6; /* non-RGBA fallback */
border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.table-stroke tbody th,
.table-stroke tbody td {
border-bottom: 1px solid #e6e6e6; /* non-RGBA fallback */
border-bottom: 1px solid rgba(0, 0, 0, .05);
}
/* Add alternating row stripes */
.table-stripe tbody tr:nth-child(odd) td,
.table-stripe tbody tr:nth-child(odd) th {
background-color: #eeeeee; /* non-RGBA fallback */
background-color: rgba(0,0,0,0.04);
}
/* Add stroke to the header and last item */
.table-stripe thead th,
.table-stripe tbody tr:last-child {
border-bottom: 1px solid #d6d6d6; /* non-RGBA fallback */
border-bottom: 1px solid rgba(0, 0, 0, .1);
}
/*
Styles for the table columntoggle mode
*/
.ui-table-columntoggle-btn {
float: right;
margin-bottom:.8em;
}
/* Remove top/bottom margins around the fieldcontain on check list */
.ui-table-columntoggle-popup fieldset {
margin:0;
}
/* Hide all prioritized columns by default */
@media only all {
th.ui-table-priority-6,
td.ui-table-priority-6,
th.ui-table-priority-5,
td.ui-table-priority-5,
th.ui-table-priority-4,
td.ui-table-priority-4,
th.ui-table-priority-3,
td.ui-table-priority-3,
th.ui-table-priority-2,
td.ui-table-priority-2,
th.ui-table-priority-1,
td.ui-table-priority-1 {
display: none;
}
}
/* Preset breakpoints if ".ui-responsive" class added to table */
/* Show priority 1 at 320px (20em x 16px) */
@media screen and (min-width: 20em) {
.ui-table-columntoggle.ui-responsive th.ui-table-priority-1,
.ui-table-columntoggle.ui-responsive td.ui-table-priority-1 {
display: table-cell;
}
}
/* Show priority 2 at 480px (30em x 16px) */
@media screen and (min-width: 30em) {
.ui-table-columntoggle.ui-responsive th.ui-table-priority-2,
.ui-table-columntoggle.ui-responsive td.ui-table-priority-2 {
display: table-cell;
}
}
/* Show priority 3 at 640px (40em x 16px) */
@media screen and (min-width: 40em) {
.ui-table-columntoggle.ui-responsive th.ui-table-priority-3,
.ui-table-columntoggle.ui-responsive td.ui-table-priority-3 {
display: table-cell;
}
}
/* Show priority 4 at 800px (50em x 16px) */
@media screen and (min-width: 50em) {
.ui-table-columntoggle.ui-responsive th.ui-table-priority-4,
.ui-table-columntoggle.ui-responsive td.ui-table-priority-4 {
display: table-cell;
}
}
/* Show priority 5 at 960px (60em x 16px) */
@media screen and (min-width: 60em) {
.ui-table-columntoggle.ui-responsive th.ui-table-priority-5,
.ui-table-columntoggle.ui-responsive td.ui-table-priority-5 {
display: table-cell;
}
}
/* Show priority 6 at 1,120px (70em x 16px) */
@media screen and (min-width: 70em) {
.ui-table-columntoggle.ui-responsive th.ui-table-priority-6,
.ui-table-columntoggle.ui-responsive td.ui-table-priority-6 {
display: table-cell;
}
}
/* Unchecked manually: Always hide */
.ui-table-columntoggle th.ui-table-cell-hidden,
.ui-table-columntoggle td.ui-table-cell-hidden,
.ui-table-columntoggle.ui-responsive th.ui-table-cell-hidden,
.ui-table-columntoggle.ui-responsive td.ui-table-cell-hidden {
display: none;
}
/* Checked manually: Always show */
.ui-table-columntoggle th.ui-table-cell-visible,
.ui-table-columntoggle td.ui-table-cell-visible,
.ui-table-columntoggle.ui-responsive th.ui-table-cell-visible,
.ui-table-columntoggle.ui-responsive td.ui-table-cell-visible {
display: table-cell;
}
/*
Styles for the table columntoggle mode
*/
.ui-table-reflow td .ui-table-cell-label,
.ui-table-reflow th .ui-table-cell-label {
display: none;
}
/* Mobile first styles: Begin with the stacked presentation at narrow widths */
@media only all {
/* Hide the table headers */
.ui-table-reflow thead td,
.ui-table-reflow thead th {
display: none;
}
/* Show the table cells as a block level element */
.ui-table-reflow td,
.ui-table-reflow th {
text-align: left;
display: block;
}
/* Add a fair amount of top margin to visually separate each row when stacked */
.ui-table-reflow tbody th {
margin-top: 3em;
}
/* Make the label elements a percentage width */
.ui-table-reflow td .ui-table-cell-label,
.ui-table-reflow th .ui-table-cell-label {
padding: .4em;
min-width: 30%;
display: inline-block;
margin: -.4em 1em -.4em -.4em;
}
/* For grouped headers, have a different style to visually separate the levels by classing the first label in each col group */
.ui-table-reflow th .ui-table-cell-label-top,
.ui-table-reflow td .ui-table-cell-label-top {
display: block;
padding: .4em 0;
margin: .4em 0;
text-transform: uppercase;
font-size: .9em;
font-weight: normal;
}
}
/* Breakpoint to show as a standard table at 560px (35em x 16px) or wider */
@media ( min-width: 35em ) {
/* Fixes table rendering when switching between breakpoints in Safari <= 5. See https://github.com/jquery/jquery-mobile/issues/5380 */
.ui-table-reflow.ui-responsive {
display: table-row-group;
}
/* Show the table header rows */
.ui-table-reflow.ui-responsive td,
.ui-table-reflow.ui-responsive th,
.ui-table-reflow.ui-responsive tbody th,
.ui-table-reflow.ui-responsive tbody td,
.ui-table-reflow.ui-responsive thead td,
.ui-table-reflow.ui-responsive thead th {
display: table-cell;
margin: 0;
}
/* Hide the labels in each cell */
.ui-table-reflow.ui-responsive td .ui-table-cell-label,
.ui-table-reflow.ui-responsive th .ui-table-cell-label {
display: none;
}
}
/* Hack to make IE9 and WP7.5 treat cells like block level elements, scoped to ui-responsive class */
/* Applied in a max-width media query up to the table layout breakpoint so we don't need to negate this*/
@media ( max-width: 35em ) {
.ui-table-reflow.ui-responsive td,
.ui-table-reflow.ui-responsive th {
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
float: left;
clear: left;
}
} |
components/camel-jms/src/main/java/org/apache/camel/component/jms/package.html | everttigchelaar/camel-svn | <!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<html>
<head>
</head>
<body>
Defines the <a href="http://activemq.apache.org/camel/jms.html">JMS Component</a>
</body>
</html>
|
docs/solr-solrj/org/apache/solr/common/cloud/class-use/HashBasedRouter.html | iluminati182006/ReutersSolr | <!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_45) on Mon Apr 29 15:10:45 CEST 2013 -->
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<TITLE>
Uses of Class org.apache.solr.common.cloud.HashBasedRouter (Solr 4.3.0 API)
</TITLE>
<META NAME="date" CONTENT="2013-04-29">
<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.solr.common.cloud.HashBasedRouter (Solr 4.3.0 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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/solr/common/cloud/HashBasedRouter.html" title="class in org.apache.solr.common.cloud"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/solr/common/cloud//class-useHashBasedRouter.html" target="_top"><B>FRAMES</B></A>
<A HREF="HashBasedRouter.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.apache.solr.common.cloud.HashBasedRouter</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/solr/common/cloud/HashBasedRouter.html" title="class in org.apache.solr.common.cloud">HashBasedRouter</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.apache.solr.common.cloud"><B>org.apache.solr.common.cloud</B></A></TD>
<TD>Common Solr Cloud and ZooKeeper related classes reused on both clients & server. </TD>
</TR>
</TABLE>
<P>
<A NAME="org.apache.solr.common.cloud"><!-- --></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/solr/common/cloud/HashBasedRouter.html" title="class in org.apache.solr.common.cloud">HashBasedRouter</A> in <A HREF="../../../../../../org/apache/solr/common/cloud/package-summary.html">org.apache.solr.common.cloud</A></FONT></TH>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Subclasses of <A HREF="../../../../../../org/apache/solr/common/cloud/HashBasedRouter.html" title="class in org.apache.solr.common.cloud">HashBasedRouter</A> in <A HREF="../../../../../../org/apache/solr/common/cloud/package-summary.html">org.apache.solr.common.cloud</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> class</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/solr/common/cloud/CompositeIdRouter.html" title="class in org.apache.solr.common.cloud">CompositeIdRouter</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> class</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/solr/common/cloud/PlainIdRouter.html" title="class in org.apache.solr.common.cloud">PlainIdRouter</A></B></CODE>
<BR>
</TD>
</TR>
</TABLE>
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/solr/common/cloud/HashBasedRouter.html" title="class in org.apache.solr.common.cloud"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/solr/common/cloud//class-useHashBasedRouter.html" target="_top"><B>FRAMES</B></A>
<A HREF="HashBasedRouter.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<i>Copyright © 2000-2013 Apache Software Foundation. All Rights Reserved.</i>
<script src='../../../../../../prettify.js' type='text/javascript'></script>
<script type='text/javascript'>
(function(){
var oldonload = window.onload;
if (typeof oldonload != 'function') {
window.onload = prettyPrint;
} else {
window.onload = function() {
oldonload();
prettyPrint();
}
}
})();
</script>
</BODY>
</HTML>
|
thirdparty/source/asio-1.11.0/doc/asio/reference/ip__address/is_v4.html | letitvi/VideoGridPlayer | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>ip::address::is_v4</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="../ip__address.html" title="ip::address">
<link rel="prev" href="is_unspecified.html" title="ip::address::is_unspecified">
<link rel="next" href="is_v6.html" title="ip::address::is_v6">
</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="is_unspecified.html"><img src="../../../prev.png" alt="Prev"></a><a accesskey="u" href="../ip__address.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="is_v6.html"><img src="../../../next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h4 class="title">
<a name="asio.reference.ip__address.is_v4"></a><a class="link" href="is_v4.html" title="ip::address::is_v4">ip::address::is_v4</a>
</h4></div></div></div>
<p>
<a class="indexterm" name="idp167653152"></a>
Get whether the address is an IP version 4 address.
</p>
<pre class="programlisting"><span class="keyword">bool</span> <span class="identifier">is_v4</span><span class="special">()</span> <span class="keyword">const</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 © 2003-2015 Christopher M.
Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="is_unspecified.html"><img src="../../../prev.png" alt="Prev"></a><a accesskey="u" href="../ip__address.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="is_v6.html"><img src="../../../next.png" alt="Next"></a>
</div>
</body>
</html>
|
carrot2-webapp-3.8.1/herballsilvertrigram/1616331.txt.html | idigbio-citsci-hackathon/carrotFacetNgram | <html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<span class='rank0 0.0'>?7</span>
<span class='rank0 0.0'>8</span>
<span class='rank0 0.0'>9</span>
<span class='rank6 5.886281793427337'>10</span>
<span class='rank0 0.0'>^E</span>
<span class='rank6 5.910214491268059'>New</span>
<span class='rank5 5.027215308896533'>York</span>
</br>
<span class='rank11 11.008556604120486'>Copyright</span>
<span class='rank2 1.7822710117187128'>reserved</span>
<span class='rank3 2.5421264334187086'>Botanical</span>
<span class='rank3 3.451197890939337'>Garden</span>
</br>
<span class='rank0 0.0'>*</span>
</br>
<span class='rank0 0.0'>?</span>
<span class='rank7 7.382391020554434'>fi</span>
<span class='rank0 0.0'>S?</span>
</br>
<span class='rank1 1.055041287159323'>JARDIN</span>
<span class='rank3 3.085336387252454'>BOTANICO</span>
<span class='rank-2 -2.2415367901937344'>NACIONAL</span>
<span class='rank7 6.789427621777964'>"DR.</span>
<span class='rank4 3.683022141224747'>RAFAEL</span>
<span class='rank7 7.280608326244492'>M.</span>
<span class='rank2 2.29111033224477'>MOSCOSO'</span>
</br>
<span class='rank2 1.7238343101552651'>SANTO</span>
<span class='rank5 5.172537273383227'>DOMINGO,</span>
<span class='rank1 1.3396444983428353'>REPUBLICA</span>
<span class='rank-2 -2.073030622625737'>DOMINICANA</span>
</br>
<span class='rank14 13.71315941150165'>17592</span>
<span class='rank43 43.39992694192112'>Leguminosae-Papil</span>
</br>
<span class='rank0 -0.12023132197721509'>Canavalia</span>
<span class='rank-3 -3.2174560001435886'>rosea</span>
<span class='rank6 5.941247286298221'>(Sw.)</span>
<span class='rank8 7.820248442454934'>DC.</span>
</br>
<span class='rank2 2.184769194623062'>det.</span>
</br>
<span class='rank7 7.131076592273528'>R.</span>
<span class='rank0 -0.24453675666217123'>Proctor</span>
<span class='rank23 22.70268092892293'>XII-1982</span>
</br>
<span class='rank-3 -3.0055427055205683'>Corola</span>
<span class='rank-3 -3.04307849610791'>rosada</span>
<span class='rank34 33.91106783848901'>oscuro;</span>
<span class='rank-4 -4.417447181411969'>tallos</span>
<span class='rank-11 -10.56363023375583'>prostrados</span>
<span class='rank5 5.086974417039001'>en</span>
<span class='rank1 1.1207297493770518'>arena.</span>
</br>
<span class='rank8 8.44040665562678'>Repblica</span>
<span class='rank-4 -3.6943814529627304'>Dominicana:</span>
<span class='rank-5 -4.897088474648207'>Distrito</span>
<span class='rank-5 -4.773039492354336'>Nacional:</span>
</br>
<span class='rank5 4.619099223976441'>Isla</span>
<span class='rank7 7.280608326244492'>La</span>
<span class='rank-2 -1.7822443366547702'>Piedra</span>
<span class='rank4 4.0813264758551'>(=Los</span>
<span class='rank10 10.175617475755843'>Pinos)</span>
<span class='rank5 5.086974417039001'>en</span>
<span class='rank6 5.717383256965523'>el</span>
<span class='rank1 0.547932610981583'>Puerto</span>
<span class='rank5 5.150075123406944'>de</span>
<span class='rank3 3.3165742512093743'>Andrs</span>
<span class='rank28 28.218735487928257'>pueblo</span>
<span class='rank5 5.150075123406944'>de</span>
<span class='rank3 3.3165742512093743'>Andrs</span>
<span class='rank-1 -0.9903909815033245'>-Boca</span>
<span class='rank8 8.020721145987267'>Chica:</span>
<span class='rank5 4.619099223976441'>Isla</span>
<span class='rank-6 -6.360481978819571'>Artificial</span>
<span class='rank5 5.150075123406944'>de</span>
<span class='rank-4 -3.625927887266993'>coral,</span>
<span class='rank-7 -6.954808451737328'>arena</span>
<span class='rank0 0.0'>y</span>
<span class='rank1 0.6519237650831826'>piedras.</span>
<span class='rank33 32.579718725869824'>18¡26'N,</span>
<span class='rank17 16.509752345738185'>69¡38'Oeste,</span>
<span class='rank1 1.3190280166201873'>alt.</span>
<span class='rank5 5.150075123406944'>de</span>
<span class='rank0 0.0'>0</span>
<span class='rank8 8.436968256600228'>hasta</span>
<span class='rank6 5.886281793427337'>10</span>
<span class='rank7 6.953395415036075'>m.</span>
<span class='rank8 8.316700257931268'>29</span>
<span class='rank5 5.150075123406944'>de</span>
<span class='rank22 21.765776458481223'>Octubre,</span>
<span class='rank4 4.469142951684518'>1981</span>
<span class='rank7 7.00102346402533'>T.</span>
<span class='rank-1 -1.4606471742821654'>Zanoni,</span>
<span class='rank7 7.280608326244492'>M.</span>
<span class='rank27 26.67241756521841'>Meja,</span>
<span class='rank7 6.5714608043381055'>J.</span>
<span class='rank-6 -6.31011640329897'>Pimentel</span>
</br>
<span class='rank5 5.238131978798127'>ÁEW</span>
<span class='rank20 19.637431592231223'>voy^</span>
<span class='rank4 4.3452095742978045'>BOTANICAL</span>
<span class='rank5 4.836831636559467'>GARDE**,</span>
</br>
<span class='rank6 5.910214491268059'>New</span>
<span class='rank5 5.027215308896533'>York</span>
<span class='rank3 2.5421264334187086'>Botanical</span>
<span class='rank3 3.451197890939337'>Garden</span>
</br>
<span class='rank36 36.28749916057897'>lklk331</span>
</br>
<span class='rank29 29.317808813903873'>1616331</span>
</br>
</br></br>
<strong>Legend - </strong>
Level of confidence that token is an accurately-transcribed word</br>
<span class='rank-13'> </span> extremely low
<span class='rank-7'> </span> very low
<span class='rank-1'> </span> low
<span class='rank0'> </span> undetermined
<span class='rank1'> </span> medium
<span class='rank6'> </span> high
<span class='rank16'> </span> very high</br>
</body>
</html>
|
Application/Admin/View/WechatKeyword/deadlist.html | tealun/Tchat | <extend name="Public/base"/>
<block name="body">
<div class="main-title">
<h2>{$meta_title}</h2>
</div>
<div class="cf">
<div class="fl">
<button class="btn ajax-post confirm" target-form="ids" url="{:U("WechatKeyword/setStatus",array("status"=>-1))}">删 除</button>
</div>
<!-- 高级搜索 -->
<include file="serch" />
<!-- 数据表格 -->
<div class="data-table">
<table class="">
<thead>
<tr>
<th class="row-selected row-selected"><input class="check-all" type="checkbox"/></th>
<th class="">编号</th>
<th class="">标题</th>
<th class="">板块</th>
<th class="">回复类型</th>
<th class="">回复内容</th>
<th class="">关键词</th>
<th class="">最后更新</th>
<th class="">用户</th>
<th class="">状态</th>
<th class="">操作</th>
</tr>
</thead>
<tbody>
<volist name="_list" id="vo">
<tr>
<td><input class="ids" type="checkbox" name="ids[]" value="{$vo.id}" /></td>
<td>{$vo.id} </td>
<td><a href="{:U('Article/index?cate_id='.$vo['category_id'].'&pid='.$vo['id'])}">{$vo.name}</a></td>
<td><span>{$vo.segment_text}</span></td>
<td><span>{$vo.reply_type_text}</span></td>
<td><span>{$vo.reply_id}</span></td>
<td>{$vo.keywords}</td>
<td><span>{$vo.update_time|time_format}</span></td>
<td>{$vo.uid}</td>
<td>{$vo.status_text}</td>
<td><a href="{:U('WechatKeyword/edit?id='.$vo['id'])}">编辑</a>
<a href="{:U('WechatKeyword/setStatus?ids='.$vo['id'].'&status='.abs(1-$vo['status']))}" class="ajax-get">{$vo.status|show_status_op}</a>
<a href="{:U('WechatKeyword/setStatus?status=-1&ids='.$vo['id'])}" class="confirm ajax-get">删除</a>
</td>
</tr>
</volist>
</tbody>
</table>
</div>
<!-- 分页 -->
<div class="page">
{$_page}
</div>
</block>
<!-- 加载底部JS -->
<block name="script">
<include file="Public/footjs" />
</block>
|
docs/apiref/classes/_src_lib_staticcommandset_.staticcommandset.html | tianyangj/gdax-tt | <!doctype html>
<html class="default no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>StaticCommandSet | GDAX Trading Toolkit API Reference</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../assets/css/main.css">
</head>
<body>
<header>
<div class="tsd-page-toolbar">
<div class="container">
<div class="table-wrap">
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
<div class="field">
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
<input id="tsd-search-field" type="text" />
</div>
<ul class="results">
<li class="state loading">Preparing search index...</li>
<li class="state failure">The search index is not available</li>
</ul>
<a href="../index.html" class="title">GDAX Trading Toolkit API Reference</a>
</div>
<div class="table-cell" id="tsd-widgets">
<div id="tsd-filter">
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
<div class="tsd-filter-group">
<div class="tsd-select" id="tsd-filter-visibility">
<span class="tsd-select-label">All</span>
<ul class="tsd-select-list">
<li data-value="public">Public</li>
<li data-value="protected">Public/Protected</li>
<li data-value="private" class="selected">All</li>
</ul>
</div>
<input type="checkbox" id="tsd-filter-inherited" checked />
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
<input type="checkbox" id="tsd-filter-externals" checked />
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
<input type="checkbox" id="tsd-filter-only-exported" />
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
</div>
</div>
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
</div>
</div>
</div>
</div>
<div class="tsd-page-title">
<div class="container">
<ul class="tsd-breadcrumb">
<li>
<a href="../globals.html">Globals</a>
</li>
<li>
<a href="../modules/_src_lib_staticcommandset_.html">"src/lib/StaticCommandSet"</a>
</li>
<li>
<a href="_src_lib_staticcommandset_.staticcommandset.html">StaticCommandSet</a>
</li>
</ul>
<h1>Class StaticCommandSet</h1>
</div>
</div>
</header>
<div class="container container-main">
<div class="row">
<div class="col-8 col-content">
<section class="tsd-panel tsd-comment">
<div class="tsd-comment tsd-typography">
<div class="lead">
<p>Simple stream that pipes through a supplied set of stream messages when the <code>send</code> method is called.</p>
</div>
</div>
</section>
<section class="tsd-panel tsd-hierarchy">
<h3>Hierarchy</h3>
<ul class="tsd-hierarchy">
<li>
<span class="tsd-signature-type">Readable</span>
<ul class="tsd-hierarchy">
<li>
<span class="target">StaticCommandSet</span>
</li>
</ul>
</li>
</ul>
</section>
<section class="tsd-panel">
<h3>Implements</h3>
<ul class="tsd-hierarchy">
<li><span class="tsd-signature-type">ReadableStream</span></li>
</ul>
</section>
<section class="tsd-panel-group tsd-index-group">
<h2>Index</h2>
<section class="tsd-panel tsd-index-panel">
<div class="tsd-index-content">
<section class="tsd-index-section ">
<h3>Constructors</h3>
<ul class="tsd-index-list">
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite"><a href="_src_lib_staticcommandset_.staticcommandset.html#constructor" class="tsd-kind-icon">constructor</a></li>
</ul>
</section>
<section class="tsd-index-section ">
<h3>Properties</h3>
<ul class="tsd-index-list">
<li class="tsd-kind-property tsd-parent-kind-class"><a href="_src_lib_staticcommandset_.staticcommandset.html#messages" class="tsd-kind-icon">messages</a></li>
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><a href="_src_lib_staticcommandset_.staticcommandset.html#readable" class="tsd-kind-icon">readable</a></li>
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static"><a href="_src_lib_staticcommandset_.staticcommandset.html#eventemitter" class="tsd-kind-icon">Event<wbr>Emitter</a></li>
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static"><a href="_src_lib_staticcommandset_.staticcommandset.html#defaultmaxlisteners" class="tsd-kind-icon">default<wbr>Max<wbr>Listeners</a></li>
</ul>
</section>
<section class="tsd-index-section ">
<h3>Methods</h3>
<ul class="tsd-index-list">
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-protected"><a href="_src_lib_staticcommandset_.staticcommandset.html#_read" class="tsd-kind-icon">_read</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited"><a href="_src_lib_staticcommandset_.staticcommandset.html#addlistener" class="tsd-kind-icon">add<wbr>Listener</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited"><a href="_src_lib_staticcommandset_.staticcommandset.html#emit" class="tsd-kind-icon">emit</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited"><a href="_src_lib_staticcommandset_.staticcommandset.html#eventnames" class="tsd-kind-icon">event<wbr>Names</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited"><a href="_src_lib_staticcommandset_.staticcommandset.html#getmaxlisteners" class="tsd-kind-icon">get<wbr>Max<wbr>Listeners</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited"><a href="_src_lib_staticcommandset_.staticcommandset.html#listenercount" class="tsd-kind-icon">listener<wbr>Count</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited"><a href="_src_lib_staticcommandset_.staticcommandset.html#listeners" class="tsd-kind-icon">listeners</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited"><a href="_src_lib_staticcommandset_.staticcommandset.html#on" class="tsd-kind-icon">on</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited"><a href="_src_lib_staticcommandset_.staticcommandset.html#once" class="tsd-kind-icon">once</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><a href="_src_lib_staticcommandset_.staticcommandset.html#pause" class="tsd-kind-icon">pause</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited"><a href="_src_lib_staticcommandset_.staticcommandset.html#pipe" class="tsd-kind-icon">pipe</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited"><a href="_src_lib_staticcommandset_.staticcommandset.html#prependlistener" class="tsd-kind-icon">prepend<wbr>Listener</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited"><a href="_src_lib_staticcommandset_.staticcommandset.html#prependoncelistener" class="tsd-kind-icon">prepend<wbr>Once<wbr>Listener</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><a href="_src_lib_staticcommandset_.staticcommandset.html#push" class="tsd-kind-icon">push</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><a href="_src_lib_staticcommandset_.staticcommandset.html#read" class="tsd-kind-icon">read</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited"><a href="_src_lib_staticcommandset_.staticcommandset.html#removealllisteners" class="tsd-kind-icon">remove<wbr>All<wbr>Listeners</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited"><a href="_src_lib_staticcommandset_.staticcommandset.html#removelistener" class="tsd-kind-icon">remove<wbr>Listener</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><a href="_src_lib_staticcommandset_.staticcommandset.html#resume" class="tsd-kind-icon">resume</a></li>
<li class="tsd-kind-method tsd-parent-kind-class"><a href="_src_lib_staticcommandset_.staticcommandset.html#send" class="tsd-kind-icon">send</a></li>
<li class="tsd-kind-method tsd-parent-kind-class"><a href="_src_lib_staticcommandset_.staticcommandset.html#sendone" class="tsd-kind-icon">send<wbr>One</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><a href="_src_lib_staticcommandset_.staticcommandset.html#setencoding" class="tsd-kind-icon">set<wbr>Encoding</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited"><a href="_src_lib_staticcommandset_.staticcommandset.html#setmaxlisteners" class="tsd-kind-icon">set<wbr>Max<wbr>Listeners</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited"><a href="_src_lib_staticcommandset_.staticcommandset.html#unpipe" class="tsd-kind-icon">unpipe</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><a href="_src_lib_staticcommandset_.staticcommandset.html#unshift" class="tsd-kind-icon">unshift</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><a href="_src_lib_staticcommandset_.staticcommandset.html#wrap" class="tsd-kind-icon">wrap</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static"><a href="_src_lib_staticcommandset_.staticcommandset.html#listenercount-1" class="tsd-kind-icon">listener<wbr>Count</a></li>
</ul>
</section>
</div>
</section>
</section>
<section class="tsd-panel-group tsd-member-group ">
<h2>Constructors</h2>
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite">
<a name="constructor" class="tsd-anchor"></a>
<h3>constructor</h3>
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite">
<li class="tsd-signature tsd-kind-icon">new <wbr>Static<wbr>Command<wbr>Set<span class="tsd-signature-symbol">(</span>messages<span class="tsd-signature-symbol">: </span><a href="../interfaces/_src_core_messages_.streammessage.html" class="tsd-signature-type">StreamMessage</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="_src_lib_staticcommandset_.staticcommandset.html" class="tsd-signature-type">StaticCommandSet</a></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Overrides Readable.__constructor</p>
<ul>
<li>Defined in <a href="https://github.com/coinbase/gdax-tt/blob/a3d18bb/src/lib/StaticCommandSet.ts#L22">src/lib/StaticCommandSet.ts:22</a></li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>messages: <a href="../interfaces/_src_core_messages_.streammessage.html" class="tsd-signature-type">StreamMessage</a><span class="tsd-signature-symbol">[]</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <a href="_src_lib_staticcommandset_.staticcommandset.html" class="tsd-signature-type">StaticCommandSet</a></h4>
</li>
</ul>
</section>
</section>
<section class="tsd-panel-group tsd-member-group ">
<h2>Properties</h2>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class">
<a name="messages" class="tsd-anchor"></a>
<h3>messages</h3>
<div class="tsd-signature tsd-kind-icon">messages<span class="tsd-signature-symbol">:</span> <a href="../interfaces/_src_core_messages_.streammessage.html" class="tsd-signature-type">StreamMessage</a><span class="tsd-signature-symbol">[]</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/coinbase/gdax-tt/blob/a3d18bb/src/lib/StaticCommandSet.ts#L22">src/lib/StaticCommandSet.ts:22</a></li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited">
<a name="readable" class="tsd-anchor"></a>
<h3>readable</h3>
<div class="tsd-signature tsd-kind-icon">readable<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
<aside class="tsd-sources">
<p>Inherited from Readable.readable</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3332</li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static">
<a name="eventemitter" class="tsd-anchor"></a>
<h3><span class="tsd-flag ts-flagStatic">Static</span> Event<wbr>Emitter</h3>
<div class="tsd-signature tsd-kind-icon">Event<wbr>Emitter<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">EventEmitter</span></div>
<aside class="tsd-sources">
<p>Inherited from EventEmitter.EventEmitter</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:573</li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static">
<a name="defaultmaxlisteners" class="tsd-anchor"></a>
<h3><span class="tsd-flag ts-flagStatic">Static</span> default<wbr>Max<wbr>Listeners</h3>
<div class="tsd-signature tsd-kind-icon">default<wbr>Max<wbr>Listeners<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
<aside class="tsd-sources">
<p>Inherited from EventEmitter.defaultMaxListeners</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:575</li>
</ul>
</aside>
</section>
</section>
<section class="tsd-panel-group tsd-member-group ">
<h2>Methods</h2>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-protected">
<a name="_read" class="tsd-anchor"></a>
<h3><span class="tsd-flag ts-flagProtected">Protected</span> _read</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-protected">
<li class="tsd-signature tsd-kind-icon">_read<span class="tsd-signature-symbol">(</span>size<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Overrides Readable._read</p>
<ul>
<li>Defined in <a href="https://github.com/coinbase/gdax-tt/blob/a3d18bb/src/lib/StaticCommandSet.ts#L47">src/lib/StaticCommandSet.ts:47</a></li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>size: <span class="tsd-signature-type">number</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<a name="addlistener" class="tsd-anchor"></a>
<h3>add<wbr>Listener</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<li class="tsd-signature tsd-kind-icon">add<wbr>Listener<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">add<wbr>Listener<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">add<wbr>Listener<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"close"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">add<wbr>Listener<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"data"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">add<wbr>Listener<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"end"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">add<wbr>Listener<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"readable"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">add<wbr>Listener<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"error"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.addListener</p>
<p>Overrides EventEmitter.addListener</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3354</li>
</ul>
</aside>
<div class="tsd-comment tsd-typography">
<div class="lead">
<p>Event emitter
The defined events on documents including:</p>
<ol>
<li>close</li>
<li>data</li>
<li>end</li>
<li>readable</li>
<li>error</li>
</ol>
</div>
</div>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">string</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">Function</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.addListener</p>
<p>Overrides EventEmitter.addListener</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3355</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">string</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">Function</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.addListener</p>
<p>Overrides EventEmitter.addListener</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3356</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"close"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.addListener</p>
<p>Overrides EventEmitter.addListener</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3357</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"data"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>chunk<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>chunk: <span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.addListener</p>
<p>Overrides EventEmitter.addListener</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3358</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"end"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.addListener</p>
<p>Overrides EventEmitter.addListener</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3359</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"readable"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.addListener</p>
<p>Overrides EventEmitter.addListener</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3360</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"error"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>err<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Error</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>err: <span class="tsd-signature-type">Error</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<a name="emit" class="tsd-anchor"></a>
<h3>emit</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<li class="tsd-signature tsd-kind-icon">emit<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, <span class="tsd-signature-symbol">...</span>args<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
<li class="tsd-signature tsd-kind-icon">emit<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"close"</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
<li class="tsd-signature tsd-kind-icon">emit<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"data"</span>, chunk<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
<li class="tsd-signature tsd-kind-icon">emit<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"end"</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
<li class="tsd-signature tsd-kind-icon">emit<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"readable"</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
<li class="tsd-signature tsd-kind-icon">emit<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"error"</span>, err<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Error</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.emit</p>
<p>Overrides EventEmitter.emit</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3362</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">string</span></h5>
</li>
<li>
<h5><span class="tsd-flag ts-flagRest">Rest</span> <span class="tsd-signature-symbol">...</span>args: <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">[]</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.emit</p>
<p>Overrides EventEmitter.emit</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3363</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"close"</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.emit</p>
<p>Overrides EventEmitter.emit</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3364</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"data"</span></h5>
</li>
<li>
<h5>chunk: <span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.emit</p>
<p>Overrides EventEmitter.emit</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3365</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"end"</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.emit</p>
<p>Overrides EventEmitter.emit</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3366</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"readable"</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.emit</p>
<p>Overrides EventEmitter.emit</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3367</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"error"</span></h5>
</li>
<li>
<h5>err: <span class="tsd-signature-type">Error</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<a name="eventnames" class="tsd-anchor"></a>
<h3>event<wbr>Names</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<li class="tsd-signature tsd-kind-icon">event<wbr>Names<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">symbol</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from EventEmitter.eventNames</p>
<p>Overrides EventEmitter.eventNames</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:588</li>
</ul>
</aside>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">symbol</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<a name="getmaxlisteners" class="tsd-anchor"></a>
<h3>get<wbr>Max<wbr>Listeners</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<li class="tsd-signature tsd-kind-icon">get<wbr>Max<wbr>Listeners<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from EventEmitter.getMaxListeners</p>
<p>Overrides EventEmitter.getMaxListeners</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:585</li>
</ul>
</aside>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<a name="listenercount" class="tsd-anchor"></a>
<h3>listener<wbr>Count</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<li class="tsd-signature tsd-kind-icon">listener<wbr>Count<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">symbol</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from EventEmitter.listenerCount</p>
<p>Overrides EventEmitter.listenerCount</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:589</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>type: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">symbol</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<a name="listeners" class="tsd-anchor"></a>
<h3>listeners</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<li class="tsd-signature tsd-kind-icon">listeners<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">symbol</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Function</span><span class="tsd-signature-symbol">[]</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from EventEmitter.listeners</p>
<p>Overrides EventEmitter.listeners</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:586</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">symbol</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Function</span><span class="tsd-signature-symbol">[]</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<a name="on" class="tsd-anchor"></a>
<h3>on</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<li class="tsd-signature tsd-kind-icon">on<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">on<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"close"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">on<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"data"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">on<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"end"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">on<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"readable"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">on<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"error"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.on</p>
<p>Overrides EventEmitter.on</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3369</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">string</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">Function</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.on</p>
<p>Overrides EventEmitter.on</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3370</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"close"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.on</p>
<p>Overrides EventEmitter.on</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3371</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"data"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>chunk<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>chunk: <span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.on</p>
<p>Overrides EventEmitter.on</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3372</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"end"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.on</p>
<p>Overrides EventEmitter.on</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3373</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"readable"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.on</p>
<p>Overrides EventEmitter.on</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3374</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"error"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>err<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Error</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>err: <span class="tsd-signature-type">Error</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<a name="once" class="tsd-anchor"></a>
<h3>once</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<li class="tsd-signature tsd-kind-icon">once<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">once<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"close"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">once<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"data"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">once<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"end"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">once<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"readable"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">once<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"error"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.once</p>
<p>Overrides EventEmitter.once</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3376</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">string</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">Function</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.once</p>
<p>Overrides EventEmitter.once</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3377</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"close"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.once</p>
<p>Overrides EventEmitter.once</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3378</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"data"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>chunk<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>chunk: <span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.once</p>
<p>Overrides EventEmitter.once</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3379</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"end"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.once</p>
<p>Overrides EventEmitter.once</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3380</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"readable"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.once</p>
<p>Overrides EventEmitter.once</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3381</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"error"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>err<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Error</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>err: <span class="tsd-signature-type">Error</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
<a name="pause" class="tsd-anchor"></a>
<h3>pause</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
<li class="tsd-signature tsd-kind-icon">pause<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readable</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.pause</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3337</li>
</ul>
</aside>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Readable</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited">
<a name="pipe" class="tsd-anchor"></a>
<h3>pipe</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited">
<li class="tsd-signature tsd-kind-icon">pipe<T><span class="tsd-signature-symbol">(</span>destination<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">T</span>, options<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">T</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.pipe</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3339</li>
</ul>
</aside>
<h4 class="tsd-type-parameters-title">Type parameters</h4>
<ul class="tsd-type-parameters">
<li>
<h4>T<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">WritableStream</span></h4>
</li>
</ul>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>destination: <span class="tsd-signature-type">T</span></h5>
</li>
<li>
<h5><span class="tsd-flag ts-flagOptional">Optional</span> options: <span class="tsd-signature-type">object</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter">
<h5><span class="tsd-flag ts-flagOptional">Optional</span> end<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span></h5>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">T</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<a name="prependlistener" class="tsd-anchor"></a>
<h3>prepend<wbr>Listener</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<li class="tsd-signature tsd-kind-icon">prepend<wbr>Listener<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">prepend<wbr>Listener<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"close"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">prepend<wbr>Listener<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"data"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">prepend<wbr>Listener<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"end"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">prepend<wbr>Listener<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"readable"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">prepend<wbr>Listener<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"error"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.prependListener</p>
<p>Overrides EventEmitter.prependListener</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3383</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">string</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">Function</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.prependListener</p>
<p>Overrides EventEmitter.prependListener</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3384</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"close"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.prependListener</p>
<p>Overrides EventEmitter.prependListener</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3385</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"data"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>chunk<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>chunk: <span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.prependListener</p>
<p>Overrides EventEmitter.prependListener</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3386</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"end"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.prependListener</p>
<p>Overrides EventEmitter.prependListener</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3387</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"readable"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.prependListener</p>
<p>Overrides EventEmitter.prependListener</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3388</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"error"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>err<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Error</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>err: <span class="tsd-signature-type">Error</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<a name="prependoncelistener" class="tsd-anchor"></a>
<h3>prepend<wbr>Once<wbr>Listener</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<li class="tsd-signature tsd-kind-icon">prepend<wbr>Once<wbr>Listener<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">prepend<wbr>Once<wbr>Listener<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"close"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">prepend<wbr>Once<wbr>Listener<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"data"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">prepend<wbr>Once<wbr>Listener<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"end"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">prepend<wbr>Once<wbr>Listener<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"readable"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">prepend<wbr>Once<wbr>Listener<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"error"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.prependOnceListener</p>
<p>Overrides EventEmitter.prependOnceListener</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3390</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">string</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">Function</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.prependOnceListener</p>
<p>Overrides EventEmitter.prependOnceListener</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3391</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"close"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.prependOnceListener</p>
<p>Overrides EventEmitter.prependOnceListener</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3392</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"data"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>chunk<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>chunk: <span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.prependOnceListener</p>
<p>Overrides EventEmitter.prependOnceListener</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3393</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"end"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.prependOnceListener</p>
<p>Overrides EventEmitter.prependOnceListener</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3394</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"readable"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.prependOnceListener</p>
<p>Overrides EventEmitter.prependOnceListener</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3395</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"error"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>err<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Error</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>err: <span class="tsd-signature-type">Error</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
<a name="push" class="tsd-anchor"></a>
<h3>push</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
<li class="tsd-signature tsd-kind-icon">push<span class="tsd-signature-symbol">(</span>chunk<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, encoding<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.push</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3343</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>chunk: <span class="tsd-signature-type">any</span></h5>
</li>
<li>
<h5><span class="tsd-flag ts-flagOptional">Optional</span> encoding: <span class="tsd-signature-type">string</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
<a name="read" class="tsd-anchor"></a>
<h3>read</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
<li class="tsd-signature tsd-kind-icon">read<span class="tsd-signature-symbol">(</span>size<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.read</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3335</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5><span class="tsd-flag ts-flagOptional">Optional</span> size: <span class="tsd-signature-type">number</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<a name="removealllisteners" class="tsd-anchor"></a>
<h3>remove<wbr>All<wbr>Listeners</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<li class="tsd-signature tsd-kind-icon">remove<wbr>All<wbr>Listeners<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">symbol</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from EventEmitter.removeAllListeners</p>
<p>Overrides EventEmitter.removeAllListeners</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:583</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5><span class="tsd-flag ts-flagOptional">Optional</span> event: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">symbol</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<a name="removelistener" class="tsd-anchor"></a>
<h3>remove<wbr>Listener</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<li class="tsd-signature tsd-kind-icon">remove<wbr>Listener<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">remove<wbr>Listener<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"close"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">remove<wbr>Listener<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"data"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">remove<wbr>Listener<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"end"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">remove<wbr>Listener<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"readable"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
<li class="tsd-signature tsd-kind-icon">remove<wbr>Listener<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">"error"</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.removeListener</p>
<p>Overrides EventEmitter.removeListener</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3397</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">string</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">Function</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.removeListener</p>
<p>Overrides EventEmitter.removeListener</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3398</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"close"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.removeListener</p>
<p>Overrides EventEmitter.removeListener</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3399</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"data"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>chunk<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>chunk: <span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.removeListener</p>
<p>Overrides EventEmitter.removeListener</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3400</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"end"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.removeListener</p>
<p>Overrides EventEmitter.removeListener</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3401</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"readable"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.removeListener</p>
<p>Overrides EventEmitter.removeListener</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3402</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>event: <span class="tsd-signature-type">"error"</span></h5>
</li>
<li>
<h5>listener: <span class="tsd-signature-type">function</span></h5>
<ul class="tsd-parameters">
<li class="tsd-parameter-siganture">
<ul class="tsd-signatures tsd-kind-type-literal tsd-is-not-exported">
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>err<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Error</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>err: <span class="tsd-signature-type">Error</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
<a name="resume" class="tsd-anchor"></a>
<h3>resume</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
<li class="tsd-signature tsd-kind-icon">resume<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readable</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.resume</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3338</li>
</ul>
</aside>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Readable</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
<a name="send" class="tsd-anchor"></a>
<h3>send</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
<li class="tsd-signature tsd-kind-icon">send<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/coinbase/gdax-tt/blob/a3d18bb/src/lib/StaticCommandSet.ts#L29">src/lib/StaticCommandSet.ts:29</a></li>
</ul>
</aside>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
<a name="sendone" class="tsd-anchor"></a>
<h3>send<wbr>One</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
<li class="tsd-signature tsd-kind-icon">send<wbr>One<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/coinbase/gdax-tt/blob/a3d18bb/src/lib/StaticCommandSet.ts#L37">src/lib/StaticCommandSet.ts:37</a></li>
</ul>
</aside>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
<a name="setencoding" class="tsd-anchor"></a>
<h3>set<wbr>Encoding</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
<li class="tsd-signature tsd-kind-icon">set<wbr>Encoding<span class="tsd-signature-symbol">(</span>encoding<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.setEncoding</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3336</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>encoding: <span class="tsd-signature-type">string</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<a name="setmaxlisteners" class="tsd-anchor"></a>
<h3>set<wbr>Max<wbr>Listeners</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<li class="tsd-signature tsd-kind-icon">set<wbr>Max<wbr>Listeners<span class="tsd-signature-symbol">(</span>n<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">this</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from EventEmitter.setMaxListeners</p>
<p>Overrides EventEmitter.setMaxListeners</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:584</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>n: <span class="tsd-signature-type">number</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">this</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited">
<a name="unpipe" class="tsd-anchor"></a>
<h3>unpipe</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited">
<li class="tsd-signature tsd-kind-icon">unpipe<T><span class="tsd-signature-symbol">(</span>destination<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.unpipe</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3340</li>
</ul>
</aside>
<h4 class="tsd-type-parameters-title">Type parameters</h4>
<ul class="tsd-type-parameters">
<li>
<h4>T<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">WritableStream</span></h4>
</li>
</ul>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5><span class="tsd-flag ts-flagOptional">Optional</span> destination: <span class="tsd-signature-type">T</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
<a name="unshift" class="tsd-anchor"></a>
<h3>unshift</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
<li class="tsd-signature tsd-kind-icon">unshift<span class="tsd-signature-symbol">(</span>chunk<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.unshift</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3341</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>chunk: <span class="tsd-signature-type">any</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
<a name="wrap" class="tsd-anchor"></a>
<h3>wrap</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
<li class="tsd-signature tsd-kind-icon">wrap<span class="tsd-signature-symbol">(</span>oldStream<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">ReadableStream</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">ReadableStream</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from Readable.wrap</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:3342</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>oldStream: <span class="tsd-signature-type">ReadableStream</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">ReadableStream</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static">
<a name="listenercount-1" class="tsd-anchor"></a>
<h3><span class="tsd-flag ts-flagStatic">Static</span> listener<wbr>Count</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static">
<li class="tsd-signature tsd-kind-icon">listener<wbr>Count<span class="tsd-signature-symbol">(</span>emitter<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">EventEmitter</span>, event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">symbol</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<p>Inherited from EventEmitter.listenerCount</p>
<ul>
<li>Defined in node_modules/@types/node/index.d.ts:574</li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>emitter: <span class="tsd-signature-type">EventEmitter</span></h5>
</li>
<li>
<h5>event: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">symbol</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4>
</li>
</ul>
</section>
</section>
</div>
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
<nav class="tsd-navigation primary">
<ul>
<li class="globals ">
<a href="../globals.html"><em>Globals</em></a>
</li>
<li class="current tsd-kind-external-module">
<a href="../modules/_src_lib_staticcommandset_.html">"src/lib/<wbr>Static<wbr>Command<wbr>Set"</a>
</li>
</ul>
</nav>
<nav class="tsd-navigation secondary menu-sticky">
<ul class="before-current">
</ul>
<ul class="current">
<li class="current tsd-kind-class tsd-parent-kind-external-module">
<a href="_src_lib_staticcommandset_.staticcommandset.html" class="tsd-kind-icon">Static<wbr>Command<wbr>Set</a>
<ul>
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite">
<a href="_src_lib_staticcommandset_.staticcommandset.html#constructor" class="tsd-kind-icon">constructor</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-class">
<a href="_src_lib_staticcommandset_.staticcommandset.html#messages" class="tsd-kind-icon">messages</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited">
<a href="_src_lib_staticcommandset_.staticcommandset.html#readable" class="tsd-kind-icon">readable</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static">
<a href="_src_lib_staticcommandset_.staticcommandset.html#eventemitter" class="tsd-kind-icon">Event<wbr>Emitter</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static">
<a href="_src_lib_staticcommandset_.staticcommandset.html#defaultmaxlisteners" class="tsd-kind-icon">default<wbr>Max<wbr>Listeners</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-protected">
<a href="_src_lib_staticcommandset_.staticcommandset.html#_read" class="tsd-kind-icon">_read</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<a href="_src_lib_staticcommandset_.staticcommandset.html#addlistener" class="tsd-kind-icon">add<wbr>Listener</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<a href="_src_lib_staticcommandset_.staticcommandset.html#emit" class="tsd-kind-icon">emit</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<a href="_src_lib_staticcommandset_.staticcommandset.html#eventnames" class="tsd-kind-icon">event<wbr>Names</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<a href="_src_lib_staticcommandset_.staticcommandset.html#getmaxlisteners" class="tsd-kind-icon">get<wbr>Max<wbr>Listeners</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<a href="_src_lib_staticcommandset_.staticcommandset.html#listenercount" class="tsd-kind-icon">listener<wbr>Count</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<a href="_src_lib_staticcommandset_.staticcommandset.html#listeners" class="tsd-kind-icon">listeners</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<a href="_src_lib_staticcommandset_.staticcommandset.html#on" class="tsd-kind-icon">on</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<a href="_src_lib_staticcommandset_.staticcommandset.html#once" class="tsd-kind-icon">once</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
<a href="_src_lib_staticcommandset_.staticcommandset.html#pause" class="tsd-kind-icon">pause</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited">
<a href="_src_lib_staticcommandset_.staticcommandset.html#pipe" class="tsd-kind-icon">pipe</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<a href="_src_lib_staticcommandset_.staticcommandset.html#prependlistener" class="tsd-kind-icon">prepend<wbr>Listener</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<a href="_src_lib_staticcommandset_.staticcommandset.html#prependoncelistener" class="tsd-kind-icon">prepend<wbr>Once<wbr>Listener</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
<a href="_src_lib_staticcommandset_.staticcommandset.html#push" class="tsd-kind-icon">push</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
<a href="_src_lib_staticcommandset_.staticcommandset.html#read" class="tsd-kind-icon">read</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<a href="_src_lib_staticcommandset_.staticcommandset.html#removealllisteners" class="tsd-kind-icon">remove<wbr>All<wbr>Listeners</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<a href="_src_lib_staticcommandset_.staticcommandset.html#removelistener" class="tsd-kind-icon">remove<wbr>Listener</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
<a href="_src_lib_staticcommandset_.staticcommandset.html#resume" class="tsd-kind-icon">resume</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class">
<a href="_src_lib_staticcommandset_.staticcommandset.html#send" class="tsd-kind-icon">send</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class">
<a href="_src_lib_staticcommandset_.staticcommandset.html#sendone" class="tsd-kind-icon">send<wbr>One</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
<a href="_src_lib_staticcommandset_.staticcommandset.html#setencoding" class="tsd-kind-icon">set<wbr>Encoding</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited">
<a href="_src_lib_staticcommandset_.staticcommandset.html#setmaxlisteners" class="tsd-kind-icon">set<wbr>Max<wbr>Listeners</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited">
<a href="_src_lib_staticcommandset_.staticcommandset.html#unpipe" class="tsd-kind-icon">unpipe</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
<a href="_src_lib_staticcommandset_.staticcommandset.html#unshift" class="tsd-kind-icon">unshift</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
<a href="_src_lib_staticcommandset_.staticcommandset.html#wrap" class="tsd-kind-icon">wrap</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static">
<a href="_src_lib_staticcommandset_.staticcommandset.html#listenercount-1" class="tsd-kind-icon">listener<wbr>Count</a>
</li>
</ul>
</li>
</ul>
<ul class="after-current">
</ul>
</nav>
</div>
</div>
</div>
<footer class="with-border-bottom">
<div class="container">
<h2>Legend</h2>
<div class="tsd-legend-group">
<ul class="tsd-legend">
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
</ul>
</div>
</div>
</footer>
<div class="container tsd-generator">
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
</div>
<div class="overlay"></div>
<script src="../assets/js/main.js"></script>
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
</body>
</html> |
2.7.1.Final-SNAPSHOT/apidocs/org/wildfly/swarm/config/ejb3/StrictMaxBeanInstancePoolSupplier.html | wildfly-swarm/wildfly-swarm-javadocs | <!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_151) on Mon Jun 22 05:15:21 MST 2020 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>StrictMaxBeanInstancePoolSupplier (BOM: * : All 2.7.1.Final-SNAPSHOT API)</title>
<meta name="date" content="2020-06-22">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="StrictMaxBeanInstancePoolSupplier (BOM: * : All 2.7.1.Final-SNAPSHOT API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":6};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/StrictMaxBeanInstancePoolSupplier.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-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">Thorntail API, 2.7.1.Final-SNAPSHOT</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../org/wildfly/swarm/config/ejb3/StrictMaxBeanInstancePoolConsumer.html" title="interface in org.wildfly.swarm.config.ejb3"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../../org/wildfly/swarm/config/ejb3/ThreadPool.html" title="class in org.wildfly.swarm.config.ejb3"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/wildfly/swarm/config/ejb3/StrictMaxBeanInstancePoolSupplier.html" target="_top">Frames</a></li>
<li><a href="StrictMaxBeanInstancePoolSupplier.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </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.wildfly.swarm.config.ejb3</div>
<h2 title="Interface StrictMaxBeanInstancePoolSupplier" class="title">Interface StrictMaxBeanInstancePoolSupplier<T extends <a href="../../../../../org/wildfly/swarm/config/ejb3/StrictMaxBeanInstancePool.html" title="class in org.wildfly.swarm.config.ejb3">StrictMaxBeanInstancePool</a>></h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>Functional Interface:</dt>
<dd>This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.</dd>
</dl>
<hr>
<br>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/FunctionalInterface.html?is-external=true" title="class or interface in java.lang">@FunctionalInterface</a>
public interface <span class="typeNameLabel">StrictMaxBeanInstancePoolSupplier<T extends <a href="../../../../../org/wildfly/swarm/config/ejb3/StrictMaxBeanInstancePool.html" title="class in org.wildfly.swarm.config.ejb3">StrictMaxBeanInstancePool</a>></span></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code><a href="../../../../../org/wildfly/swarm/config/ejb3/StrictMaxBeanInstancePool.html" title="class in org.wildfly.swarm.config.ejb3">StrictMaxBeanInstancePool</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/wildfly/swarm/config/ejb3/StrictMaxBeanInstancePoolSupplier.html#get--">get</a></span>()</code>
<div class="block">Constructed instance of StrictMaxBeanInstancePool resource</div>
</td>
</tr>
</table>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="get--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>get</h4>
<pre><a href="../../../../../org/wildfly/swarm/config/ejb3/StrictMaxBeanInstancePool.html" title="class in org.wildfly.swarm.config.ejb3">StrictMaxBeanInstancePool</a> get()</pre>
<div class="block">Constructed instance of StrictMaxBeanInstancePool resource</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The instance</dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/StrictMaxBeanInstancePoolSupplier.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-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">Thorntail API, 2.7.1.Final-SNAPSHOT</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../org/wildfly/swarm/config/ejb3/StrictMaxBeanInstancePoolConsumer.html" title="interface in org.wildfly.swarm.config.ejb3"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../../org/wildfly/swarm/config/ejb3/ThreadPool.html" title="class in org.wildfly.swarm.config.ejb3"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/wildfly/swarm/config/ejb3/StrictMaxBeanInstancePoolSupplier.html" target="_top">Frames</a></li>
<li><a href="StrictMaxBeanInstancePoolSupplier.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2020 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
|
docs/2020.2.0-RELEASE-KOTLIN/zircon.core/zircon.core/org.hexworks.zircon.api.builder.component/-group-builder/with-is-hidden.html | Hexworks/zircon | <html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>withIsHidden</title>
<link href="../../../images/logo-icon.svg" rel="icon" type="image/svg">
<script>var pathToRoot = "../../../";</script>
<script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async="async"></script>
<link href="../../../styles/style.css" rel="Stylesheet">
<link href="../../../styles/logo-styles.css" rel="Stylesheet">
<link href="../../../styles/jetbrains-mono.css" rel="Stylesheet">
<link href="../../../styles/main.css" rel="Stylesheet">
<script type="text/javascript" src="../../../scripts/clipboard.js" async="async"></script>
<script type="text/javascript" src="../../../scripts/navigation-loader.js" async="async"></script>
<script type="text/javascript" src="../../../scripts/platform-content-handler.js" async="async"></script>
<script type="text/javascript" src="../../../scripts/main.js" async="async"></script>
</head>
<body>
<div id="container">
<div id="leftColumn">
<div id="logo"></div>
<div id="paneSearch"></div>
<div id="sideMenu"></div>
</div>
<div id="main">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<script type="text/javascript" src="../../../scripts/pages.js"></script>
<script type="text/javascript" src="../../../scripts/main.js"></script>
<div class="main-content" id="content" pageIds="org.hexworks.zircon.api.builder.component/GroupBuilder/withIsHidden/#kotlin.Boolean/PointingToDeclaration//-828656838">
<div class="navigation-wrapper" id="navigation-wrapper">
<div class="breadcrumbs"><a href="../../index.html">zircon.core</a>/<a href="../index.html">org.hexworks.zircon.api.builder.component</a>/<a href="index.html">GroupBuilder</a>/<a href="with-is-hidden.html">withIsHidden</a></div>
<div class="pull-right d-flex">
<div class="filter-section" id="filter-section"><button class="platform-tag platform-selector common-like" data-active="" data-filter=":zircon.core:dokkaHtml/commonMain">common</button></div>
<div id="searchBar"></div>
</div>
</div>
<div class="cover ">
<h1 class="cover"><span>with</span><wbr></wbr><span>Is</span><wbr></wbr><span>Hidden</span></h1>
</div>
<div class="divergent-group" data-filterable-current=":zircon.core:dokkaHtml/commonMain" data-filterable-set=":zircon.core:dokkaHtml/commonMain"><div class="with-platform-tags"><span class="pull-right"></span></div>
<div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":zircon.core:dokkaHtml/commonMain"><div class="symbol monospace">fun <a href="with-is-hidden.html">withIsHidden</a>(isHidden: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a>): <a href="index.html">GroupBuilder</a><<a href="index.html">T</a>><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
<h2 class="">Sources</h2>
<div class="table" data-togglable="Sources"><a data-name="%5Borg.hexworks.zircon.api.builder.component%2FGroupBuilder%2FwithIsHidden%2F%23kotlin.Boolean%2FPointingToDeclaration%2F%5D%2FSource%2F-828656838" anchor-label="https://github.com/Hexworks/zircon/tree/master/zircon.core/src/commonMain/kotlin/org/hexworks/zircon/api/builder/component/GroupBuilder.kt#L23" id="%5Borg.hexworks.zircon.api.builder.component%2FGroupBuilder%2FwithIsHidden%2F%23kotlin.Boolean%2FPointingToDeclaration%2F%5D%2FSource%2F-828656838" data-filterable-set=":zircon.core:dokkaHtml/commonMain"></a>
<div class="table-row" data-filterable-current=":zircon.core:dokkaHtml/commonMain" data-filterable-set=":zircon.core:dokkaHtml/commonMain">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex"><a href="https://github.com/Hexworks/zircon/tree/master/zircon.core/src/commonMain/kotlin/org/hexworks/zircon/api/builder/component/GroupBuilder.kt#L23">(source)</a><span class="anchor-wrapper"><span class="anchor-icon" pointing-to="%5Borg.hexworks.zircon.api.builder.component%2FGroupBuilder%2FwithIsHidden%2F%23kotlin.Boolean%2FPointingToDeclaration%2F%5D%2FSource%2F-828656838"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div></div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content"></a></span><span>© 2020 Copyright</span><span class="pull-right"><span>Sponsored and developed by dokka</span><a href="https://github.com/Kotlin/dokka"><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body>
</html>
|
explore/templates/recent.html | CollabQ/CollabQ | {% extends 'common/templates/base_sidebar.html' %}
{% load format %}
{% block title %}Latest Public {{POST_NAME|plural}}{% endblock %}
{% block content %}
{% if request.user %}
{% include 'common/templates/message_form.html' %}
{% include 'common/templates/subnav_tabs.html' %}
{% endif %}
<div id='stream'>
<h2>Latest {{POST_NAME|plural}} from every one!</h2>
{% include 'common/templates/stream.html' %}
{% include 'common/templates/paging.html' %}
{% include 'common/templates/feeds.html' %}
</div>
{% endblock %}
{% block sidebar %}
{% if request.user %}
{% include 'common/templates/user_sidebar.html' %}
{% endif %}
{% endblock %}
|
android_iphone/pop_nav.html | cloudswave/ICTGU | <!DOCTYPE html>
<html class="um landscape min-width-240px min-width-320px min-width-480px min-width-768px min-width-1024px">
<head>
<title>
</title>
<meta charset="utf-8">
<meta name="viewport" content="target-densitydpi=device-dpi, width=device-width, initial-scale=1, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" href="css/ui-img.css">
<link rel="stylesheet" href="css/ui-res.css">
<link rel="stylesheet" href="css/ui-list.css">
<link rel="stylesheet" href="css/ui-base.css">
<link rel="stylesheet" href="css/ui-box.css">
<link rel="stylesheet" href="css/ui-color.css">
<link rel="stylesheet" href="css/ui-tab.css">
<link rel="stylesheet" href="css/style.css">
<script src="js/zy_control.js"></script>
<script src="js/zy_click.js"></script>
<script src="js/zy_anim.js"></script>
<script src="js/dis_control.js"></script>
<script>
</script>
</head>
<body class="um-vp" style="padding:0 .1em">
<div class="ub c-bla tab2 uba us b-gra uc-a" style="opacity:.8;">
<div ontouchstart="zy_touch('tp-click')" onclick="reply()" class="ub-f1 ub ub-ver">
<div class="ub-f1 ub-img5 tp-reply"></div>
</div>
<div ontouchstart="zy_touch('tp-click')" onclick="favorite()" class="ub-f1 ub ub-ver" id="fava">
<div class="ub-f1 ub-img5 tp-collect" id="imgfav"></div>
</div>
<div ontouchstart="zy_touch('tp-click')" onclick="share();" class="ub-f1 ub ub-ver">
<div class="ub-f1 ub-img5 tp-share"></div>
</div>
<div ontouchstart="zy_touch('tp-click')" onclick="deletet();" class="ub-f1 ub ub-ver" id="del">
<div class="ub-f1 ub-img5 tp-del"></div>
</div>
</div>
</body>
<script>
zy_init();
var params = getStorJson('popnav');
var uid = getstorage('UID');
var isAd = getstorage('isAd');
var view = params.view;
var tid = params.tid;
var aid = params.aid;
var bid = params.blogid;
var picid = params.picid;
var wname = {};
wname['forum']='forum_detail';
wname['portal']='portal_detail';
wname['blog']='blog_detail';
wname['album']='album_detail';
var my5 = wname[view];
window.uexOnload=function(type)
{
//logs('pop_nav()-->params='+getstorage('popnav'));
//if(!isSML) moveOutsc();
}
function reply(){
if(!checkLogin()) return;
var str = '';
if(view=='forum') str = '{"type":"reply", "wname":"forum_detail", "tid":"'+tid+'", "pid":""}';
else if(view=='portal') str = '{"type":"portal", "wname":"portal_detail", "aid":"'+aid+'"}';
else if(view=='blog') str = '{"type":"breply", "wname":"blog_detail", "blogid":"'+bid+'"}';
else str = '{"type":"album", "wname":"album_detail", "picid":"'+picid+'"}';
setstorage('params',str);
openwin('editor', 'editor.html', '12');
}
function favorite(){
if(!checkLogin()) return;
ueppscript(my5, 'content', 'favorite()');
}
function share(){
if(!checkLogin()) return;
ueppscript(my5, 'content', 'weiboShare()');
}
function deletet(){
if(!checkLogin()) return;
ueppscript(my5, 'content', 'deletet()');
}
function favoriteUI(flag){
var id = 'imgfav';
var css1 = 'tp-favorited';
var css2 = 'tp-collect';
var txt = '';
if(!flag){
var c = css1;
css1 = css2;
css2 = c;
}
zy_anim_push(id,css1);
zy_anim_pop(id,css2);
}
function moveOutsc(){
var dy = '-500';
var fsc = getstorage('fscreen');
if(fsc) dy = '500';
logs('pop_nav-->moveOutsc()-->dy='+dy);
/*浮动菜单动画效果*/
disShowAnim('0', dy);
}
var fav = params.fav;
if(fav) favoriteUI(1);
if(view=='portal') removeNode('del');
else if(view=='blog'){
if(params.uid!=uid) removeNode('del');
}
else if(view=='forum'){
var del = params.del;
if(del!='1') removeNode('del');
}
else{
removeNode('fava');
if(params.uid!=uid) removeNode('del');
}
</script>
</html>
|
2018.3.3/apidocs/org/wildfly/swarm/datasources/DatasourceArchive.html | wildfly-swarm/wildfly-swarm-javadocs | <!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_151) on Thu Mar 08 14:17:35 MST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>DatasourceArchive (BOM: * : All 2018.3.3 API)</title>
<meta name="date" content="2018-03-08">
<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="DatasourceArchive (BOM: * : All 2018.3.3 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":6,"i1":6};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/DatasourceArchive.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-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">WildFly Swarm API, 2018.3.3</div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev Class</li>
<li><a href="../../../../org/wildfly/swarm/datasources/DatasourcesFraction.html" title="class in org.wildfly.swarm.datasources"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/wildfly/swarm/datasources/DatasourceArchive.html" target="_top">Frames</a></li>
<li><a href="DatasourceArchive.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </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.wildfly.swarm.datasources</div>
<h2 title="Interface DatasourceArchive" class="title">Interface DatasourceArchive</h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public interface <span class="typeNameLabel">DatasourceArchive</span></pre>
<div class="block">A simplistic archive to allow deployment-based creation of datasources.
<p>While not the recommended method for deploying datasources, this archive
type helps with the creation of WildFly-specific <code>-ds.xml</code> files
within an archive. It can be driver by exactly the same API for creating
datasources through <a href="../../../../org/wildfly/swarm/datasources/DatasourcesFraction.html" title="class in org.wildfly.swarm.datasources"><code>DatasourcesFraction</code></a> configuration</p></div>
<dl>
<dt><span class="simpleTagLabel">Author:</span></dt>
<dd>Bob McWhirter</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../org/wildfly/swarm/datasources/DatasourcesFraction.html" title="class in org.wildfly.swarm.datasources"><code>DatasourcesFraction</code></a></dd>
</dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code><a href="../../../../org/wildfly/swarm/datasources/DatasourceArchive.html" title="interface in org.wildfly.swarm.datasources">DatasourceArchive</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/wildfly/swarm/datasources/DatasourceArchive.html#dataSource-org.wildfly.swarm.config.datasources.DataSource-">dataSource</a></span>(<a href="../../../../org/wildfly/swarm/config/datasources/DataSource.html" title="class in org.wildfly.swarm.config.datasources">DataSource</a> ds)</code>
<div class="block">Create a configured datasource</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code><a href="../../../../org/wildfly/swarm/datasources/DatasourceArchive.html" title="interface in org.wildfly.swarm.datasources">DatasourceArchive</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/wildfly/swarm/datasources/DatasourceArchive.html#dataSource-java.lang.String-org.wildfly.swarm.config.datasources.DataSourceConsumer-">dataSource</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> key,
<a href="../../../../org/wildfly/swarm/config/datasources/DataSourceConsumer.html" title="interface in org.wildfly.swarm.config.datasources">DataSourceConsumer</a> consumer)</code>
<div class="block">Create an configure a datasource.</div>
</td>
</tr>
</table>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="dataSource-java.lang.String-org.wildfly.swarm.config.datasources.DataSourceConsumer-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>dataSource</h4>
<pre><a href="../../../../org/wildfly/swarm/datasources/DatasourceArchive.html" title="interface in org.wildfly.swarm.datasources">DatasourceArchive</a> dataSource(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> key,
<a href="../../../../org/wildfly/swarm/config/datasources/DataSourceConsumer.html" title="interface in org.wildfly.swarm.config.datasources">DataSourceConsumer</a> consumer)</pre>
<div class="block">Create an configure a datasource.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>key</code> - The key of the datasource.</dd>
<dd><code>consumer</code> - The configuring consumer.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This archive.</dd>
</dl>
</li>
</ul>
<a name="dataSource-org.wildfly.swarm.config.datasources.DataSource-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>dataSource</h4>
<pre><a href="../../../../org/wildfly/swarm/datasources/DatasourceArchive.html" title="interface in org.wildfly.swarm.datasources">DatasourceArchive</a> dataSource(<a href="../../../../org/wildfly/swarm/config/datasources/DataSource.html" title="class in org.wildfly.swarm.config.datasources">DataSource</a> ds)</pre>
<div class="block">Create a configured datasource</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>ds</code> - The completely configured datasource.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This archive.</dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/DatasourceArchive.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-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">WildFly Swarm API, 2018.3.3</div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev Class</li>
<li><a href="../../../../org/wildfly/swarm/datasources/DatasourcesFraction.html" title="class in org.wildfly.swarm.datasources"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/wildfly/swarm/datasources/DatasourceArchive.html" target="_top">Frames</a></li>
<li><a href="DatasourceArchive.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2018 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
|
Server/thirdparty/hazelcast/hazelcast-3.3.3/docs/javadoc/com/hazelcast/map/client/class-use/MapPutTransientRequest.html | SoCe/SoCe | <!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_65) on Wed Nov 12 13:03:03 UTC 2014 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Class com.hazelcast.map.client.MapPutTransientRequest (Hazelcast Root 3.3.3 API)</title>
<meta name="date" content="2014-11-12">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.hazelcast.map.client.MapPutTransientRequest (Hazelcast Root 3.3.3 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="../../../../../com/hazelcast/map/client/MapPutTransientRequest.html" title="class in com.hazelcast.map.client">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?com/hazelcast/map/client/class-use/MapPutTransientRequest.html" target="_top">Frames</a></li>
<li><a href="MapPutTransientRequest.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class com.hazelcast.map.client.MapPutTransientRequest" class="title">Uses of Class<br>com.hazelcast.map.client.MapPutTransientRequest</h2>
</div>
<div class="classUseContainer">No usage of com.hazelcast.map.client.MapPutTransientRequest</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="../../../../../com/hazelcast/map/client/MapPutTransientRequest.html" title="class in com.hazelcast.map.client">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?com/hazelcast/map/client/class-use/MapPutTransientRequest.html" target="_top">Frames</a></li>
<li><a href="MapPutTransientRequest.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 © 2014 <a href="http://www.hazelcast.com/">Hazelcast, Inc.</a>. All Rights Reserved.</small></p>
</body>
</html>
|
src/components/CountryCodeSelector/CountryCodeSelector.css | dialogs/dialog-web-components | /*
* Copyright 2019 dialog LLC <info@dlg.im>
*/
@import '../../styles/variables.css';
:root {
--country-code-selector-font-family: var(--default-font-family);
--country-code-selector-border-radius: var(--default-border-radius);
--country-code-selector-border-color: #d1d3d8;
--country-code-selector-label-color: #808080;
--country-code-selector-label-font-family: var(--default-font-family);
--country-code-selector-label-font-size: var(--default-font-size-small);
--country-code-selector-height: 46px;
--country-code-selector-color: #414752;
--country-code-selector-menu-outer-z-index: var(--z-index-dropdown);
--country-code-selector-hover-border-color: color-mod(
var(--country-code-selector-border-color) shade(15%)
);
--country-code-selector-focus-border-color: var(--color-primary);
--country-code-selector-focus-outline-color: color-mod(
var(--country-code-selector-focus-border-color) alpha(20%)
);
--country-code-selector-transition-duration: calc(
var(--default-transition-duration) / 1.5
);
}
/* Styles */
.container {
all: initial;
font-family: var(--country-code-selector-font-family);
color: var(--country-code-selector-color);
& :global(.Select) {
transition: box-shadow var(--country-code-selector-transition-duration)
ease-in;
border-radius: var(--country-code-selector-border-radius);
& :global(.Select-control) {
border: 0;
border-radius: var(--country-code-selector-border-radius);
box-shadow: inset 0 0 0 1px var(--country-code-selector-border-color);
height: var(--country-code-selector-height);
position: relative;
z-index: calc(var(--z-index-input) + 10);
transition: box-shadow var(--country-code-selector-transition-duration)
ease-in;
&:hover {
box-shadow: inset 0 0 0 1px
var(--country-code-selector-hover-border-color);
}
}
& :global(.Select-input) {
height: var(--country-code-selector-height);
padding: 0 var(--default-padding);
& > input {
line-height: 26px;
height: 26px;
padding: var(--default-padding-small) 0;
}
}
& :global(.Select-noresults) {
text-align: center;
padding: 8px 16px;
line-height: 24px;
}
& :global(.Select-menu-outer) {
border: 1px solid var(--country-code-selector-border-color);
box-shadow: 0 2px 3px 0 color-mod(#000 alpha(20%));
overflow: hidden;
z-index: var(--country-code-selector-menu-outer-z-index);
}
& :global(.Select-placeholder) {
line-height: var(--country-code-selector-height);
padding: 0 var(--default-padding);
user-select: none;
}
& :global(.Select-arrow-zone) {
width: 32px;
padding-right: 10px;
}
& :global(.Select-value) {
padding: 0 var(--default-padding) !important;
& .option {
padding-left: 0;
padding-right: 24px;
}
}
& :global(.Select-value-label) {
padding: var(--default-padding-small) 0;
display: block;
}
& :global(.Select-option) {
padding: 6px var(--default-padding);
color: var(--country-code-selector-color);
}
&:global(.is-focused) {
box-shadow: 0 0 0 3px var(--country-code-selector-focus-outline-color);
& :global(.Select-control) {
box-shadow: inset 0 0 0 1px
var(--country-code-selector-focus-border-color) !important;
& .optionLabel {
opacity: 0.5;
}
}
&:global(.is-open) {
box-shadow: 0 0 0 3px var(--country-code-selector-focus-outline-color);
border-radius: var(--country-code-selector-border-radius)
var(--country-code-selector-border-radius) 0 0;
& :global(.Select-control) {
box-shadow: inset 0 0 0 1px
var(--country-code-selector-focus-border-color);
border-radius: var(--country-code-selector-border-radius)
var(--country-code-selector-border-radius) 0 0;
}
}
}
&:global(.is-pseudo-focused) {
& :global(.Select-control) {
& .optionLabel {
opacity: 1;
}
}
}
&:global(.is-disabled) {
& :global(.Select-control) {
background-color: #fff;
cursor: not-allowed;
opacity: 0.6;
box-shadow: inset 0 0 0 1px var(--country-code-selector-border-color) !important;
}
}
&:global(.has-value) {
& :global(.Select-input) {
padding-left: 52px;
}
}
}
}
.disabled {
& .label {
cursor: not-allowed;
}
}
.label {
all: initial;
@mixin no-select;
color: var(--country-code-selector-label-color);
font-family: var(--country-code-selector-label-font-family);
font-size: var(--country-code-selector-label-font-size);
line-height: 1.4;
display: inline-block;
margin-bottom: calc(var(--default-padding-small) / 2);
cursor: pointer;
}
.option {
cursor: pointer;
display: flex;
align-content: center;
justify-content: center;
align-items: center;
line-height: 24px;
padding-left: 16px;
padding-right: 40px;
}
.optionFocused {
background-color: #f0f1f4;
color: var(--country-code-selector-color);
}
.optionSelected {
background-color: var(--color-primary);
color: white;
}
.optionFlag {
flex: 0 0 auto;
height: 24px;
line-height: 1em !important;
margin: 0 !important;
display: inline-block;
}
.optionLabel {
flex: 1 1 auto;
padding: 0 8px 0 10px;
overflow: hidden;
@mixin flex-fix;
@mixin text-overflow-ellipsis;
}
.optionCountry {
font-size: var(--default-font-size);
@mixin text-overflow-ellipsis;
}
.optionCode {
font-size: var(--default-font-size);
flex: 0 0 auto;
font-weight: 500;
}
|
docs/xref-test/org/apache/mina/filter/codec/textline/TextLineDecoderTest.html | sardine/mina-ja | <!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>TextLineDecoderTest xref</title>
<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
</head>
<body>
<pre>
<a name="1" href="#1">1</a> <em class="jxr_comment">/*</em>
<a name="2" href="#2">2</a> <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
<a name="3" href="#3">3</a> <em class="jxr_comment"> * or more contributor license agreements. See the NOTICE file</em>
<a name="4" href="#4">4</a> <em class="jxr_comment"> * distributed with this work for additional information</em>
<a name="5" href="#5">5</a> <em class="jxr_comment"> * regarding copyright ownership. The ASF licenses this file</em>
<a name="6" href="#6">6</a> <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
<a name="7" href="#7">7</a> <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
<a name="8" href="#8">8</a> <em class="jxr_comment"> * with the License. You may obtain a copy of the License at</em>
<a name="9" href="#9">9</a> <em class="jxr_comment"> *</em>
<a 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 name="11" href="#11">11</a> <em class="jxr_comment"> *</em>
<a name="12" href="#12">12</a> <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
<a name="13" href="#13">13</a> <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
<a name="14" href="#14">14</a> <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
<a name="15" href="#15">15</a> <em class="jxr_comment"> * KIND, either express or implied. See the License for the</em>
<a name="16" href="#16">16</a> <em class="jxr_comment"> * specific language governing permissions and limitations</em>
<a name="17" href="#17">17</a> <em class="jxr_comment"> * under the License.</em>
<a name="18" href="#18">18</a> <em class="jxr_comment"> *</em>
<a name="19" href="#19">19</a> <em class="jxr_comment"> */</em>
<a name="20" href="#20">20</a> <strong class="jxr_keyword">package</strong> org.apache.mina.filter.codec.textline;
<a name="21" href="#21">21</a>
<a name="22" href="#22">22</a> <strong class="jxr_keyword">import</strong> java.nio.charset.Charset;
<a name="23" href="#23">23</a> <strong class="jxr_keyword">import</strong> java.nio.charset.CharsetEncoder;
<a name="24" href="#24">24</a>
<a name="25" href="#25">25</a> <strong class="jxr_keyword">import</strong> junit.framework.Assert;
<a name="26" href="#26">26</a> <strong class="jxr_keyword">import</strong> junit.framework.TestCase;
<a name="27" href="#27">27</a>
<a name="28" href="#28">28</a> <strong class="jxr_keyword">import</strong> org.apache.mina.core.buffer.IoBuffer;
<a name="29" href="#29">29</a> <strong class="jxr_keyword">import</strong> org.apache.mina.filter.codec.ProtocolCodecSession;
<a name="30" href="#30">30</a> <strong class="jxr_keyword">import</strong> org.apache.mina.filter.codec.ProtocolDecoderOutput;
<a name="31" href="#31">31</a> <strong class="jxr_keyword">import</strong> org.apache.mina.filter.codec.RecoverableProtocolDecoderException;
<a name="32" href="#32">32</a>
<a name="33" href="#33">33</a> <em class="jxr_javadoccomment">/**</em>
<a name="34" href="#34">34</a> <em class="jxr_javadoccomment"> * Tests {@link TextLineDecoder}.</em>
<a name="35" href="#35">35</a> <em class="jxr_javadoccomment"> *</em>
<a name="36" href="#36">36</a> <em class="jxr_javadoccomment"> * @author <a href="<a href="http://mina.apache.org" target="alexandria_uri">http://mina.apache.org</a>">Apache MINA Project</a></em>
<a name="37" href="#37">37</a> <em class="jxr_javadoccomment"> */</em>
<a name="38" href="#38">38</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/mina/filter/codec/textline/TextLineDecoderTest.html">TextLineDecoderTest</a> <strong class="jxr_keyword">extends</strong> TestCase {
<a name="39" href="#39">39</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">void</strong> main(String[] args) {
<a name="40" href="#40">40</a> junit.textui.TestRunner.run(TextLineDecoderTest.<strong class="jxr_keyword">class</strong>);
<a name="41" href="#41">41</a> }
<a name="42" href="#42">42</a>
<a name="43" href="#43">43</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testNormalDecode() <strong class="jxr_keyword">throws</strong> Exception {
<a name="44" href="#44">44</a> TextLineDecoder decoder = <strong class="jxr_keyword">new</strong> TextLineDecoder(Charset.forName(<span class="jxr_string">"UTF-8"</span>),
<a name="45" href="#45">45</a> LineDelimiter.WINDOWS);
<a name="46" href="#46">46</a>
<a name="47" href="#47">47</a> CharsetEncoder encoder = Charset.forName(<span class="jxr_string">"UTF-8"</span>).newEncoder();
<a name="48" href="#48">48</a> ProtocolCodecSession session = <strong class="jxr_keyword">new</strong> ProtocolCodecSession();
<a name="49" href="#49">49</a> ProtocolDecoderOutput out = session.getDecoderOutput();
<a name="50" href="#50">50</a> IoBuffer in = IoBuffer.allocate(16);
<a name="51" href="#51">51</a>
<a name="52" href="#52">52</a> <em class="jxr_comment">// Test one decode and one output</em>
<a name="53" href="#53">53</a> in.putString(<span class="jxr_string">"ABC\r\n"</span>, encoder);
<a name="54" href="#54">54</a> in.flip();
<a name="55" href="#55">55</a> decoder.decode(session, in, out);
<a name="56" href="#56">56</a> Assert.assertEquals(1, session.getDecoderOutputQueue().size());
<a name="57" href="#57">57</a> Assert.assertEquals(<span class="jxr_string">"ABC"</span>, session.getDecoderOutputQueue().poll());
<a name="58" href="#58">58</a>
<a name="59" href="#59">59</a> <em class="jxr_comment">// Test two decode and one output</em>
<a name="60" href="#60">60</a> in.clear();
<a name="61" href="#61">61</a> in.putString(<span class="jxr_string">"DEF"</span>, encoder);
<a name="62" href="#62">62</a> in.flip();
<a name="63" href="#63">63</a> decoder.decode(session, in, out);
<a name="64" href="#64">64</a> Assert.assertEquals(0, session.getDecoderOutputQueue().size());
<a name="65" href="#65">65</a> in.clear();
<a name="66" href="#66">66</a> in.putString(<span class="jxr_string">"GHI\r\n"</span>, encoder);
<a name="67" href="#67">67</a> in.flip();
<a name="68" href="#68">68</a> decoder.decode(session, in, out);
<a name="69" href="#69">69</a> Assert.assertEquals(1, session.getDecoderOutputQueue().size());
<a name="70" href="#70">70</a> Assert.assertEquals(<span class="jxr_string">"DEFGHI"</span>, session.getDecoderOutputQueue().poll());
<a name="71" href="#71">71</a>
<a name="72" href="#72">72</a> <em class="jxr_comment">// Test one decode and two output</em>
<a name="73" href="#73">73</a> in.clear();
<a name="74" href="#74">74</a> in.putString(<span class="jxr_string">"JKL\r\nMNO\r\n"</span>, encoder);
<a name="75" href="#75">75</a> in.flip();
<a name="76" href="#76">76</a> decoder.decode(session, in, out);
<a name="77" href="#77">77</a> Assert.assertEquals(2, session.getDecoderOutputQueue().size());
<a name="78" href="#78">78</a> Assert.assertEquals(<span class="jxr_string">"JKL"</span>, session.getDecoderOutputQueue().poll());
<a name="79" href="#79">79</a> Assert.assertEquals(<span class="jxr_string">"MNO"</span>, session.getDecoderOutputQueue().poll());
<a name="80" href="#80">80</a>
<a name="81" href="#81">81</a> <em class="jxr_comment">// Test aborted delimiter (DIRMINA-506)</em>
<a name="82" href="#82">82</a> in.clear();
<a name="83" href="#83">83</a> in.putString(<span class="jxr_string">"ABC\r\r\n"</span>, encoder);
<a name="84" href="#84">84</a> in.flip();
<a name="85" href="#85">85</a> decoder.decode(session, in, out);
<a name="86" href="#86">86</a> Assert.assertEquals(1, session.getDecoderOutputQueue().size());
<a name="87" href="#87">87</a> Assert.assertEquals(<span class="jxr_string">"ABC\r"</span>, session.getDecoderOutputQueue().poll());
<a name="88" href="#88">88</a>
<a name="89" href="#89">89</a> <em class="jxr_comment">// Test splitted long delimiter</em>
<a name="90" href="#90">90</a> decoder = <strong class="jxr_keyword">new</strong> TextLineDecoder(Charset.forName(<span class="jxr_string">"UTF-8"</span>),
<a name="91" href="#91">91</a> <strong class="jxr_keyword">new</strong> LineDelimiter(<span class="jxr_string">"\n\n\n"</span>));
<a name="92" href="#92">92</a> in.clear();
<a name="93" href="#93">93</a> in.putString(<span class="jxr_string">"PQR\n"</span>, encoder);
<a name="94" href="#94">94</a> in.flip();
<a name="95" href="#95">95</a> decoder.decode(session, in, out);
<a name="96" href="#96">96</a> Assert.assertEquals(0, session.getDecoderOutputQueue().size());
<a name="97" href="#97">97</a> in.clear();
<a name="98" href="#98">98</a> in.putString(<span class="jxr_string">"\n"</span>, encoder);
<a name="99" href="#99">99</a> in.flip();
<a name="100" href="#100">100</a> decoder.decode(session, in, out);
<a name="101" href="#101">101</a> Assert.assertEquals(0, session.getDecoderOutputQueue().size());
<a name="102" href="#102">102</a> in.clear();
<a name="103" href="#103">103</a> in.putString(<span class="jxr_string">"\n"</span>, encoder);
<a name="104" href="#104">104</a> in.flip();
<a name="105" href="#105">105</a> decoder.decode(session, in, out);
<a name="106" href="#106">106</a> Assert.assertEquals(1, session.getDecoderOutputQueue().size());
<a name="107" href="#107">107</a> Assert.assertEquals(<span class="jxr_string">"PQR"</span>, session.getDecoderOutputQueue().poll());
<a name="108" href="#108">108</a>
<a name="109" href="#109">109</a> <em class="jxr_comment">// Test splitted long delimiter which produces two output</em>
<a name="110" href="#110">110</a> decoder = <strong class="jxr_keyword">new</strong> TextLineDecoder(Charset.forName(<span class="jxr_string">"UTF-8"</span>),
<a name="111" href="#111">111</a> <strong class="jxr_keyword">new</strong> LineDelimiter(<span class="jxr_string">"\n\n\n"</span>));
<a name="112" href="#112">112</a> in.clear();
<a name="113" href="#113">113</a> in.putString(<span class="jxr_string">"PQR\n"</span>, encoder);
<a name="114" href="#114">114</a> in.flip();
<a name="115" href="#115">115</a> decoder.decode(session, in, out);
<a name="116" href="#116">116</a> Assert.assertEquals(0, session.getDecoderOutputQueue().size());
<a name="117" href="#117">117</a> in.clear();
<a name="118" href="#118">118</a> in.putString(<span class="jxr_string">"\n"</span>, encoder);
<a name="119" href="#119">119</a> in.flip();
<a name="120" href="#120">120</a> decoder.decode(session, in, out);
<a name="121" href="#121">121</a> Assert.assertEquals(0, session.getDecoderOutputQueue().size());
<a name="122" href="#122">122</a> in.clear();
<a name="123" href="#123">123</a> in.putString(<span class="jxr_string">"\nSTU\n\n\n"</span>, encoder);
<a name="124" href="#124">124</a> in.flip();
<a name="125" href="#125">125</a> decoder.decode(session, in, out);
<a name="126" href="#126">126</a> Assert.assertEquals(2,session.getDecoderOutputQueue().size());
<a name="127" href="#127">127</a> Assert.assertEquals(<span class="jxr_string">"PQR"</span>, session.getDecoderOutputQueue().poll());
<a name="128" href="#128">128</a> Assert.assertEquals(<span class="jxr_string">"STU"</span>, session.getDecoderOutputQueue().poll());
<a name="129" href="#129">129</a>
<a name="130" href="#130">130</a> <em class="jxr_comment">// Test splitted long delimiter mixed with partial non-delimiter.</em>
<a name="131" href="#131">131</a> decoder = <strong class="jxr_keyword">new</strong> TextLineDecoder(Charset.forName(<span class="jxr_string">"UTF-8"</span>),
<a name="132" href="#132">132</a> <strong class="jxr_keyword">new</strong> LineDelimiter(<span class="jxr_string">"\n\n\n"</span>));
<a name="133" href="#133">133</a> in.clear();
<a name="134" href="#134">134</a> in.putString(<span class="jxr_string">"PQR\n"</span>, encoder);
<a name="135" href="#135">135</a> in.flip();
<a name="136" href="#136">136</a> decoder.decode(session, in, out);
<a name="137" href="#137">137</a> Assert.assertEquals(0, session.getDecoderOutputQueue().size());
<a name="138" href="#138">138</a> in.clear();
<a name="139" href="#139">139</a> in.putString(<span class="jxr_string">"X\n"</span>, encoder);
<a name="140" href="#140">140</a> in.flip();
<a name="141" href="#141">141</a> decoder.decode(session, in, out);
<a name="142" href="#142">142</a> Assert.assertEquals(0, session.getDecoderOutputQueue().size());
<a name="143" href="#143">143</a> in.clear();
<a name="144" href="#144">144</a> in.putString(<span class="jxr_string">"\n\nSTU\n\n\n"</span>, encoder);
<a name="145" href="#145">145</a> in.flip();
<a name="146" href="#146">146</a> decoder.decode(session, in, out);
<a name="147" href="#147">147</a> Assert.assertEquals(2, session.getDecoderOutputQueue().size());
<a name="148" href="#148">148</a> Assert.assertEquals(<span class="jxr_string">"PQR\nX"</span>, session.getDecoderOutputQueue().poll());
<a name="149" href="#149">149</a> Assert.assertEquals(<span class="jxr_string">"STU"</span>, session.getDecoderOutputQueue().poll());
<a name="150" href="#150">150</a> }
<a name="151" href="#151">151</a>
<a name="152" href="#152">152</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testAutoDecode() <strong class="jxr_keyword">throws</strong> Exception {
<a name="153" href="#153">153</a> TextLineDecoder decoder = <strong class="jxr_keyword">new</strong> TextLineDecoder(Charset.forName(<span class="jxr_string">"UTF-8"</span>),
<a name="154" href="#154">154</a> LineDelimiter.AUTO);
<a name="155" href="#155">155</a>
<a name="156" href="#156">156</a> CharsetEncoder encoder = Charset.forName(<span class="jxr_string">"UTF-8"</span>).newEncoder();
<a name="157" href="#157">157</a> ProtocolCodecSession session = <strong class="jxr_keyword">new</strong> ProtocolCodecSession();
<a name="158" href="#158">158</a> ProtocolDecoderOutput out = session.getDecoderOutput();
<a name="159" href="#159">159</a> IoBuffer in = IoBuffer.allocate(16);
<a name="160" href="#160">160</a>
<a name="161" href="#161">161</a> <em class="jxr_comment">// Test one decode and one output</em>
<a name="162" href="#162">162</a> in.putString(<span class="jxr_string">"ABC\r\n"</span>, encoder);
<a name="163" href="#163">163</a> in.flip();
<a name="164" href="#164">164</a> decoder.decode(session, in, out);
<a name="165" href="#165">165</a> Assert.assertEquals(1, session.getDecoderOutputQueue().size());
<a name="166" href="#166">166</a> Assert.assertEquals(<span class="jxr_string">"ABC"</span>, session.getDecoderOutputQueue().poll());
<a name="167" href="#167">167</a>
<a name="168" href="#168">168</a> <em class="jxr_comment">// Test two decode and one output</em>
<a name="169" href="#169">169</a> in.clear();
<a name="170" href="#170">170</a> in.putString(<span class="jxr_string">"DEF"</span>, encoder);
<a name="171" href="#171">171</a> in.flip();
<a name="172" href="#172">172</a> decoder.decode(session, in, out);
<a name="173" href="#173">173</a> Assert.assertEquals(0, session.getDecoderOutputQueue().size());
<a name="174" href="#174">174</a> in.clear();
<a name="175" href="#175">175</a> in.putString(<span class="jxr_string">"GHI\r\n"</span>, encoder);
<a name="176" href="#176">176</a> in.flip();
<a name="177" href="#177">177</a> decoder.decode(session, in, out);
<a name="178" href="#178">178</a> Assert.assertEquals(1, session.getDecoderOutputQueue().size());
<a name="179" href="#179">179</a> Assert.assertEquals(<span class="jxr_string">"DEFGHI"</span>, session.getDecoderOutputQueue().poll());
<a name="180" href="#180">180</a>
<a name="181" href="#181">181</a> <em class="jxr_comment">// Test one decode and two output</em>
<a name="182" href="#182">182</a> in.clear();
<a name="183" href="#183">183</a> in.putString(<span class="jxr_string">"JKL\r\nMNO\r\n"</span>, encoder);
<a name="184" href="#184">184</a> in.flip();
<a name="185" href="#185">185</a> decoder.decode(session, in, out);
<a name="186" href="#186">186</a> Assert.assertEquals(2, session.getDecoderOutputQueue().size());
<a name="187" href="#187">187</a> Assert.assertEquals(<span class="jxr_string">"JKL"</span>, session.getDecoderOutputQueue().poll());
<a name="188" href="#188">188</a> Assert.assertEquals(<span class="jxr_string">"MNO"</span>, session.getDecoderOutputQueue().poll());
<a name="189" href="#189">189</a>
<a name="190" href="#190">190</a> <em class="jxr_comment">// Test multiple '\n's</em>
<a name="191" href="#191">191</a> in.clear();
<a name="192" href="#192">192</a> in.putString(<span class="jxr_string">"\n\n\n"</span>, encoder);
<a name="193" href="#193">193</a> in.flip();
<a name="194" href="#194">194</a> decoder.decode(session, in, out);
<a name="195" href="#195">195</a> Assert.assertEquals(3, session.getDecoderOutputQueue().size());
<a name="196" href="#196">196</a> Assert.assertEquals(<span class="jxr_string">""</span>, session.getDecoderOutputQueue().poll());
<a name="197" href="#197">197</a> Assert.assertEquals(<span class="jxr_string">""</span>, session.getDecoderOutputQueue().poll());
<a name="198" href="#198">198</a> Assert.assertEquals(<span class="jxr_string">""</span>, session.getDecoderOutputQueue().poll());
<a name="199" href="#199">199</a>
<a name="200" href="#200">200</a> <em class="jxr_comment">// Test splitted long delimiter (\r\r\n)</em>
<a name="201" href="#201">201</a> in.clear();
<a name="202" href="#202">202</a> in.putString(<span class="jxr_string">"PQR\r"</span>, encoder);
<a name="203" href="#203">203</a> in.flip();
<a name="204" href="#204">204</a> decoder.decode(session, in, out);
<a name="205" href="#205">205</a> Assert.assertEquals(0, session.getDecoderOutputQueue().size());
<a name="206" href="#206">206</a> in.clear();
<a name="207" href="#207">207</a> in.putString(<span class="jxr_string">"\r"</span>, encoder);
<a name="208" href="#208">208</a> in.flip();
<a name="209" href="#209">209</a> decoder.decode(session, in, out);
<a name="210" href="#210">210</a> Assert.assertEquals(0, session.getDecoderOutputQueue().size());
<a name="211" href="#211">211</a> in.clear();
<a name="212" href="#212">212</a> in.putString(<span class="jxr_string">"\n"</span>, encoder);
<a name="213" href="#213">213</a> in.flip();
<a name="214" href="#214">214</a> decoder.decode(session, in, out);
<a name="215" href="#215">215</a> Assert.assertEquals(1, session.getDecoderOutputQueue().size());
<a name="216" href="#216">216</a> Assert.assertEquals(<span class="jxr_string">"PQR"</span>, session.getDecoderOutputQueue().poll());
<a name="217" href="#217">217</a>
<a name="218" href="#218">218</a> <em class="jxr_comment">// Test splitted long delimiter (\r\r\n) which produces two output</em>
<a name="219" href="#219">219</a> in.clear();
<a name="220" href="#220">220</a> in.putString(<span class="jxr_string">"PQR\r"</span>, encoder);
<a name="221" href="#221">221</a> in.flip();
<a name="222" href="#222">222</a> decoder.decode(session, in, out);
<a name="223" href="#223">223</a> Assert.assertEquals(0, session.getDecoderOutputQueue().size());
<a name="224" href="#224">224</a> in.clear();
<a name="225" href="#225">225</a> in.putString(<span class="jxr_string">"\r"</span>, encoder);
<a name="226" href="#226">226</a> in.flip();
<a name="227" href="#227">227</a> decoder.decode(session, in, out);
<a name="228" href="#228">228</a> Assert.assertEquals(0, session.getDecoderOutputQueue().size());
<a name="229" href="#229">229</a> in.clear();
<a name="230" href="#230">230</a> in.putString(<span class="jxr_string">"\nSTU\r\r\n"</span>, encoder);
<a name="231" href="#231">231</a> in.flip();
<a name="232" href="#232">232</a> decoder.decode(session, in, out);
<a name="233" href="#233">233</a> Assert.assertEquals(2, session.getDecoderOutputQueue().size());
<a name="234" href="#234">234</a> Assert.assertEquals(<span class="jxr_string">"PQR"</span>, session.getDecoderOutputQueue().poll());
<a name="235" href="#235">235</a> Assert.assertEquals(<span class="jxr_string">"STU"</span>, session.getDecoderOutputQueue().poll());
<a name="236" href="#236">236</a>
<a name="237" href="#237">237</a> <em class="jxr_comment">// Test splitted long delimiter mixed with partial non-delimiter.</em>
<a name="238" href="#238">238</a> in.clear();
<a name="239" href="#239">239</a> in.putString(<span class="jxr_string">"PQR\r"</span>, encoder);
<a name="240" href="#240">240</a> in.flip();
<a name="241" href="#241">241</a> decoder.decode(session, in, out);
<a name="242" href="#242">242</a> Assert.assertEquals(0, session.getDecoderOutputQueue().size());
<a name="243" href="#243">243</a> in.clear();
<a name="244" href="#244">244</a> in.putString(<span class="jxr_string">"X\r"</span>, encoder);
<a name="245" href="#245">245</a> in.flip();
<a name="246" href="#246">246</a> decoder.decode(session, in, out);
<a name="247" href="#247">247</a> Assert.assertEquals(0, session.getDecoderOutputQueue().size());
<a name="248" href="#248">248</a> in.clear();
<a name="249" href="#249">249</a> in.putString(<span class="jxr_string">"\r\nSTU\r\r\n"</span>, encoder);
<a name="250" href="#250">250</a> in.flip();
<a name="251" href="#251">251</a> decoder.decode(session, in, out);
<a name="252" href="#252">252</a> Assert.assertEquals(2, session.getDecoderOutputQueue().size());
<a name="253" href="#253">253</a> Assert.assertEquals(<span class="jxr_string">"PQR\rX"</span>, session.getDecoderOutputQueue().poll());
<a name="254" href="#254">254</a> Assert.assertEquals(<span class="jxr_string">"STU"</span>, session.getDecoderOutputQueue().poll());
<a name="255" href="#255">255</a> }
<a name="256" href="#256">256</a>
<a name="257" href="#257">257</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testOverflow() <strong class="jxr_keyword">throws</strong> Exception {
<a name="258" href="#258">258</a> TextLineDecoder decoder = <strong class="jxr_keyword">new</strong> TextLineDecoder(Charset.forName(<span class="jxr_string">"UTF-8"</span>),
<a name="259" href="#259">259</a> LineDelimiter.AUTO);
<a name="260" href="#260">260</a> decoder.setMaxLineLength(3);
<a name="261" href="#261">261</a>
<a name="262" href="#262">262</a> CharsetEncoder encoder = Charset.forName(<span class="jxr_string">"UTF-8"</span>).newEncoder();
<a name="263" href="#263">263</a> ProtocolCodecSession session = <strong class="jxr_keyword">new</strong> ProtocolCodecSession();
<a name="264" href="#264">264</a> ProtocolDecoderOutput out = session.getDecoderOutput();
<a name="265" href="#265">265</a> IoBuffer in = IoBuffer.allocate(16);
<a name="266" href="#266">266</a>
<a name="267" href="#267">267</a> <em class="jxr_comment">// Make sure the overflow exception is not thrown until</em>
<a name="268" href="#268">268</a> <em class="jxr_comment">// the delimiter is encountered.</em>
<a name="269" href="#269">269</a> in.putString(<span class="jxr_string">"A"</span>, encoder).flip().mark();
<a name="270" href="#270">270</a> decoder.decode(session, in.reset().mark(), out);
<a name="271" href="#271">271</a> Assert.assertEquals(0, session.getDecoderOutputQueue().size());
<a name="272" href="#272">272</a> decoder.decode(session, in.reset().mark(), out);
<a name="273" href="#273">273</a> Assert.assertEquals(0, session.getDecoderOutputQueue().size());
<a name="274" href="#274">274</a> decoder.decode(session, in.reset().mark(), out);
<a name="275" href="#275">275</a> Assert.assertEquals(0, session.getDecoderOutputQueue().size());
<a name="276" href="#276">276</a> decoder.decode(session, in.reset().mark(), out);
<a name="277" href="#277">277</a> Assert.assertEquals(0, session.getDecoderOutputQueue().size());
<a name="278" href="#278">278</a>
<a name="279" href="#279">279</a> in.clear().putString(<span class="jxr_string">"A\r\nB\r\n"</span>, encoder).flip();
<a name="280" href="#280">280</a> <strong class="jxr_keyword">try</strong> {
<a name="281" href="#281">281</a> decoder.decode(session, in, out);
<a name="282" href="#282">282</a> Assert.fail();
<a name="283" href="#283">283</a> } <strong class="jxr_keyword">catch</strong> (RecoverableProtocolDecoderException e) {
<a name="284" href="#284">284</a> <em class="jxr_comment">// signifies a successful test execution</em>
<a name="285" href="#285">285</a> Assert.assertTrue(<strong class="jxr_keyword">true</strong>);
<a name="286" href="#286">286</a> }
<a name="287" href="#287">287</a>
<a name="288" href="#288">288</a> decoder.decode(session, in, out);
<a name="289" href="#289">289</a> Assert.assertEquals(1, session.getDecoderOutputQueue().size());
<a name="290" href="#290">290</a> Assert.assertEquals(<span class="jxr_string">"B"</span>, session.getDecoderOutputQueue().poll());
<a name="291" href="#291">291</a>
<a name="292" href="#292">292</a> <em class="jxr_comment">// Make sure OOM is not thrown.</em>
<a name="293" href="#293">293</a> System.gc();
<a name="294" href="#294">294</a> <strong class="jxr_keyword">long</strong> oldFreeMemory = Runtime.getRuntime().freeMemory();
<a name="295" href="#295">295</a> in = IoBuffer.allocate(1048576 * 16).sweep((byte) ' ').mark();
<a name="296" href="#296">296</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = 0; i < 10; i ++) {
<a name="297" href="#297">297</a> decoder.decode(session, in.reset().mark(), out);
<a name="298" href="#298">298</a> Assert.assertEquals(0, session.getDecoderOutputQueue().size());
<a name="299" href="#299">299</a>
<a name="300" href="#300">300</a> <em class="jxr_comment">// Memory consumption should be minimal.</em>
<a name="301" href="#301">301</a> Assert.assertTrue(Runtime.getRuntime().freeMemory() - oldFreeMemory < 1048576);
<a name="302" href="#302">302</a> }
<a name="303" href="#303">303</a>
<a name="304" href="#304">304</a> in.clear().putString(<span class="jxr_string">"C\r\nD\r\n"</span>, encoder).flip();
<a name="305" href="#305">305</a> <strong class="jxr_keyword">try</strong> {
<a name="306" href="#306">306</a> decoder.decode(session, in, out);
<a name="307" href="#307">307</a> Assert.fail();
<a name="308" href="#308">308</a> } <strong class="jxr_keyword">catch</strong> (RecoverableProtocolDecoderException e) {
<a name="309" href="#309">309</a> <em class="jxr_comment">// signifies a successful test execution</em>
<a name="310" href="#310">310</a> Assert.assertTrue(<strong class="jxr_keyword">true</strong>);
<a name="311" href="#311">311</a> }
<a name="312" href="#312">312</a>
<a name="313" href="#313">313</a> decoder.decode(session, in, out);
<a name="314" href="#314">314</a> Assert.assertEquals(1, session.getDecoderOutputQueue().size());
<a name="315" href="#315">315</a> Assert.assertEquals(<span class="jxr_string">"D"</span>, session.getDecoderOutputQueue().poll());
<a name="316" href="#316">316</a>
<a name="317" href="#317">317</a> <em class="jxr_comment">// Memory consumption should be minimal.</em>
<a name="318" href="#318">318</a> Assert.assertTrue(Runtime.getRuntime().freeMemory() - oldFreeMemory < 1048576);
<a name="319" href="#319">319</a> }
<a name="320" href="#320">320</a>
<a name="321" href="#321">321</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testSMTPDataBounds() <strong class="jxr_keyword">throws</strong> Exception {
<a name="322" href="#322">322</a> TextLineDecoder decoder = <strong class="jxr_keyword">new</strong> TextLineDecoder(Charset.forName(<span class="jxr_string">"ISO-8859-1"</span>),
<a name="323" href="#323">323</a> <strong class="jxr_keyword">new</strong> LineDelimiter(<span class="jxr_string">"\r\n.\r\n"</span>));
<a name="324" href="#324">324</a>
<a name="325" href="#325">325</a> CharsetEncoder encoder = Charset.forName(<span class="jxr_string">"ISO-8859-1"</span>).newEncoder();
<a name="326" href="#326">326</a> ProtocolCodecSession session = <strong class="jxr_keyword">new</strong> ProtocolCodecSession();
<a name="327" href="#327">327</a> IoBuffer in = IoBuffer.allocate(16).setAutoExpand(<strong class="jxr_keyword">true</strong>);
<a name="328" href="#328">328</a>
<a name="329" href="#329">329</a> in.putString(<span class="jxr_string">"\r\n"</span>, encoder).flip().mark();
<a name="330" href="#330">330</a> decoder.decode(session, in.reset().mark(), session.getDecoderOutput());
<a name="331" href="#331">331</a> Assert.assertEquals(0, session.getDecoderOutputQueue().size());
<a name="332" href="#332">332</a> in.putString(<span class="jxr_string">"Body\r\n.\r\n"</span>, encoder).flip().mark();
<a name="333" href="#333">333</a> decoder.decode(session, in.reset().mark(), session.getDecoderOutput());
<a name="334" href="#334">334</a> Assert.assertEquals(1, session.getDecoderOutputQueue().size());
<a name="335" href="#335">335</a> Assert.assertEquals(<span class="jxr_string">"\r\n\r\nBody"</span>, session.getDecoderOutputQueue().poll());
<a name="336" href="#336">336</a> }
<a name="337" href="#337">337</a> }
</pre>
<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
</html>
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.