path stringlengths 5 312 | repo_name stringlengths 5 116 | content stringlengths 2 1.04M |
|---|---|---|
docs/xref/org/apache/hadoop/hbase/mapreduce/MultiTableOutputFormat.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>MultiTableOutputFormat xref</title>
<link type="text/css" rel="stylesheet" href="../../../../../stylesheet.css" />
</head>
<body>
<div id="overview"><a href="../../../../../../apidocs/org/apache/hadoop/hbase/mapreduce/MultiTableOutputFormat.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.mapreduce;
<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.io.IOException;
<a class="jxr_linenumber" name="22" href="#22">22</a> <strong class="jxr_keyword">import</strong> java.util.HashMap;
<a class="jxr_linenumber" name="23" href="#23">23</a> <strong class="jxr_keyword">import</strong> java.util.Map;
<a class="jxr_linenumber" name="24" href="#24">24</a>
<a class="jxr_linenumber" name="25" href="#25">25</a> <strong class="jxr_keyword">import</strong> org.apache.commons.logging.Log;
<a class="jxr_linenumber" name="26" href="#26">26</a> <strong class="jxr_keyword">import</strong> org.apache.commons.logging.LogFactory;
<a class="jxr_linenumber" name="27" href="#27">27</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.classification.InterfaceAudience;
<a class="jxr_linenumber" name="28" href="#28">28</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.classification.InterfaceStability;
<a class="jxr_linenumber" name="29" href="#29">29</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.conf.Configuration;
<a class="jxr_linenumber" name="30" href="#30">30</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.HBaseConfiguration;
<a class="jxr_linenumber" name="31" href="#31">31</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.client.Delete;
<a class="jxr_linenumber" name="32" href="#32">32</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.client.HTable;
<a class="jxr_linenumber" name="33" href="#33">33</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.client.Mutation;
<a class="jxr_linenumber" name="34" href="#34">34</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.client.Put;
<a class="jxr_linenumber" name="35" href="#35">35</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.client.Durability;
<a class="jxr_linenumber" name="36" href="#36">36</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.io.ImmutableBytesWritable;
<a class="jxr_linenumber" name="37" href="#37">37</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.util.Bytes;
<a class="jxr_linenumber" name="38" href="#38">38</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.mapreduce.JobContext;
<a class="jxr_linenumber" name="39" href="#39">39</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.mapreduce.OutputCommitter;
<a class="jxr_linenumber" name="40" href="#40">40</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.mapreduce.OutputFormat;
<a class="jxr_linenumber" name="41" href="#41">41</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.mapreduce.RecordWriter;
<a class="jxr_linenumber" name="42" href="#42">42</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.mapreduce.TaskAttemptContext;
<a class="jxr_linenumber" name="43" href="#43">43</a>
<a class="jxr_linenumber" name="44" href="#44">44</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="45" href="#45">45</a> <em class="jxr_javadoccomment"> * <p></em>
<a class="jxr_linenumber" name="46" href="#46">46</a> <em class="jxr_javadoccomment"> * Hadoop output format that writes to one or more HBase tables. The key is</em>
<a class="jxr_linenumber" name="47" href="#47">47</a> <em class="jxr_javadoccomment"> * taken to be the table name while the output value <em>must</em> be either a</em>
<a class="jxr_linenumber" name="48" href="#48">48</a> <em class="jxr_javadoccomment"> * {@link Put} or a {@link Delete} instance. All tables must already exist, and</em>
<a class="jxr_linenumber" name="49" href="#49">49</a> <em class="jxr_javadoccomment"> * all Puts and Deletes must reference only valid column families.</em>
<a class="jxr_linenumber" name="50" href="#50">50</a> <em class="jxr_javadoccomment"> * </p></em>
<a class="jxr_linenumber" name="51" href="#51">51</a> <em class="jxr_javadoccomment"> *</em>
<a class="jxr_linenumber" name="52" href="#52">52</a> <em class="jxr_javadoccomment"> * <p></em>
<a class="jxr_linenumber" name="53" href="#53">53</a> <em class="jxr_javadoccomment"> * Write-ahead logging (HLog) for Puts can be disabled by setting</em>
<a class="jxr_linenumber" name="54" href="#54">54</a> <em class="jxr_javadoccomment"> * {@link #WAL_PROPERTY} to {@link #WAL_OFF}. Default value is {@link #WAL_ON}.</em>
<a class="jxr_linenumber" name="55" href="#55">55</a> <em class="jxr_javadoccomment"> * Note that disabling write-ahead logging is only appropriate for jobs where</em>
<a class="jxr_linenumber" name="56" href="#56">56</a> <em class="jxr_javadoccomment"> * loss of data due to region server failure can be tolerated (for example,</em>
<a class="jxr_linenumber" name="57" href="#57">57</a> <em class="jxr_javadoccomment"> * because it is easy to rerun a bulk import).</em>
<a class="jxr_linenumber" name="58" href="#58">58</a> <em class="jxr_javadoccomment"> * </p></em>
<a class="jxr_linenumber" name="59" href="#59">59</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="60" href="#60">60</a> @InterfaceAudience.Public
<a class="jxr_linenumber" name="61" href="#61">61</a> @InterfaceStability.Stable
<a class="jxr_linenumber" name="62" href="#62">62</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../org/apache/hadoop/hbase/mapreduce/MultiTableOutputFormat.html">MultiTableOutputFormat</a> <strong class="jxr_keyword">extends</strong> OutputFormat<ImmutableBytesWritable, Mutation> {
<a class="jxr_linenumber" name="63" href="#63">63</a> <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment"> Set this to {@link #WAL_OFF} to turn off write-ahead logging (HLog) */</em>
<a class="jxr_linenumber" name="64" href="#64">64</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> String WAL_PROPERTY = <span class="jxr_string">"hbase.mapreduce.multitableoutputformat.wal"</span>;
<a class="jxr_linenumber" name="65" href="#65">65</a> <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment"> Property value to use write-ahead logging */</em>
<a class="jxr_linenumber" name="66" href="#66">66</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">boolean</strong> WAL_ON = <strong class="jxr_keyword">true</strong>;
<a class="jxr_linenumber" name="67" href="#67">67</a> <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment"> Property value to disable write-ahead logging */</em>
<a class="jxr_linenumber" name="68" href="#68">68</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">boolean</strong> WAL_OFF = false;
<a class="jxr_linenumber" name="69" href="#69">69</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="70" href="#70">70</a> <em class="jxr_javadoccomment"> * Record writer for outputting to multiple HTables.</em>
<a class="jxr_linenumber" name="71" href="#71">71</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="72" href="#72">72</a> <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../org/apache/hadoop/hbase/mapreduce/MultiTableOutputFormat.html">MultiTableRecordWriter</a> <strong class="jxr_keyword">extends</strong>
<a class="jxr_linenumber" name="73" href="#73">73</a> RecordWriter<ImmutableBytesWritable, Mutation> {
<a class="jxr_linenumber" name="74" href="#74">74</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> Log LOG = LogFactory.getLog(MultiTableRecordWriter.<strong class="jxr_keyword">class</strong>);
<a class="jxr_linenumber" name="75" href="#75">75</a> Map<ImmutableBytesWritable, HTable> tables;
<a class="jxr_linenumber" name="76" href="#76">76</a> Configuration conf;
<a class="jxr_linenumber" name="77" href="#77">77</a> <strong class="jxr_keyword">boolean</strong> useWriteAheadLogging;
<a class="jxr_linenumber" name="78" href="#78">78</a>
<a class="jxr_linenumber" name="79" href="#79">79</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="80" href="#80">80</a> <em class="jxr_javadoccomment"> * @param conf</em>
<a class="jxr_linenumber" name="81" href="#81">81</a> <em class="jxr_javadoccomment"> * HBaseConfiguration to used</em>
<a class="jxr_linenumber" name="82" href="#82">82</a> <em class="jxr_javadoccomment"> * @param useWriteAheadLogging</em>
<a class="jxr_linenumber" name="83" href="#83">83</a> <em class="jxr_javadoccomment"> * whether to use write ahead logging. This can be turned off (</em>
<a class="jxr_linenumber" name="84" href="#84">84</a> <em class="jxr_javadoccomment"> * <tt>false</tt>) to improve performance when bulk loading data.</em>
<a class="jxr_linenumber" name="85" href="#85">85</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="86" href="#86">86</a> <strong class="jxr_keyword">public</strong> <a href="../../../../../org/apache/hadoop/hbase/mapreduce/MultiTableOutputFormat.html">MultiTableRecordWriter</a>(Configuration conf,
<a class="jxr_linenumber" name="87" href="#87">87</a> <strong class="jxr_keyword">boolean</strong> useWriteAheadLogging) {
<a class="jxr_linenumber" name="88" href="#88">88</a> LOG.debug(<span class="jxr_string">"Created new MultiTableRecordReader with WAL "</span>
<a class="jxr_linenumber" name="89" href="#89">89</a> + (useWriteAheadLogging ? <span class="jxr_string">"on"</span> : <span class="jxr_string">"off"</span>));
<a class="jxr_linenumber" name="90" href="#90">90</a> <strong class="jxr_keyword">this</strong>.tables = <strong class="jxr_keyword">new</strong> HashMap<ImmutableBytesWritable, HTable>();
<a class="jxr_linenumber" name="91" href="#91">91</a> <strong class="jxr_keyword">this</strong>.conf = conf;
<a class="jxr_linenumber" name="92" href="#92">92</a> <strong class="jxr_keyword">this</strong>.useWriteAheadLogging = useWriteAheadLogging;
<a class="jxr_linenumber" name="93" href="#93">93</a> }
<a class="jxr_linenumber" name="94" href="#94">94</a>
<a class="jxr_linenumber" name="95" href="#95">95</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="96" href="#96">96</a> <em class="jxr_javadoccomment"> * @param tableName</em>
<a class="jxr_linenumber" name="97" href="#97">97</a> <em class="jxr_javadoccomment"> * the name of the table, as a string</em>
<a class="jxr_linenumber" name="98" href="#98">98</a> <em class="jxr_javadoccomment"> * @return the named table</em>
<a class="jxr_linenumber" name="99" href="#99">99</a> <em class="jxr_javadoccomment"> * @throws IOException</em>
<a class="jxr_linenumber" name="100" href="#100">100</a> <em class="jxr_javadoccomment"> * if there is a problem opening a table</em>
<a class="jxr_linenumber" name="101" href="#101">101</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="102" href="#102">102</a> <a href="../../../../../org/apache/hadoop/hbase/client/HTable.html">HTable</a> getTable(<a href="../../../../../org/apache/hadoop/hbase/io/ImmutableBytesWritable.html">ImmutableBytesWritable</a> tableName) <strong class="jxr_keyword">throws</strong> IOException {
<a class="jxr_linenumber" name="103" href="#103">103</a> <strong class="jxr_keyword">if</strong> (!tables.containsKey(tableName)) {
<a class="jxr_linenumber" name="104" href="#104">104</a> LOG.debug(<span class="jxr_string">"Opening HTable \""</span> + Bytes.toString(tableName.get())+ <span class="jxr_string">"\" for writing"</span>);
<a class="jxr_linenumber" name="105" href="#105">105</a> <a href="../../../../../org/apache/hadoop/hbase/client/HTable.html">HTable</a> table = <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/hadoop/hbase/client/HTable.html">HTable</a>(conf, tableName.get());
<a class="jxr_linenumber" name="106" href="#106">106</a> table.setAutoFlush(false, <strong class="jxr_keyword">true</strong>);
<a class="jxr_linenumber" name="107" href="#107">107</a> tables.put(tableName, table);
<a class="jxr_linenumber" name="108" href="#108">108</a> }
<a class="jxr_linenumber" name="109" href="#109">109</a> <strong class="jxr_keyword">return</strong> tables.get(tableName);
<a class="jxr_linenumber" name="110" href="#110">110</a> }
<a class="jxr_linenumber" name="111" href="#111">111</a>
<a class="jxr_linenumber" name="112" href="#112">112</a> @Override
<a class="jxr_linenumber" name="113" href="#113">113</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> close(TaskAttemptContext context) <strong class="jxr_keyword">throws</strong> IOException {
<a class="jxr_linenumber" name="114" href="#114">114</a> <strong class="jxr_keyword">for</strong> (HTable table : tables.values()) {
<a class="jxr_linenumber" name="115" href="#115">115</a> table.flushCommits();
<a class="jxr_linenumber" name="116" href="#116">116</a> }
<a class="jxr_linenumber" name="117" href="#117">117</a> }
<a class="jxr_linenumber" name="118" href="#118">118</a>
<a class="jxr_linenumber" name="119" href="#119">119</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="120" href="#120">120</a> <em class="jxr_javadoccomment"> * Writes an action (Put or Delete) to the specified table.</em>
<a class="jxr_linenumber" name="121" href="#121">121</a> <em class="jxr_javadoccomment"> *</em>
<a class="jxr_linenumber" name="122" href="#122">122</a> <em class="jxr_javadoccomment"> * @param tableName</em>
<a class="jxr_linenumber" name="123" href="#123">123</a> <em class="jxr_javadoccomment"> * the table being updated.</em>
<a class="jxr_linenumber" name="124" href="#124">124</a> <em class="jxr_javadoccomment"> * @param action</em>
<a class="jxr_linenumber" name="125" href="#125">125</a> <em class="jxr_javadoccomment"> * the update, either a put or a delete.</em>
<a class="jxr_linenumber" name="126" href="#126">126</a> <em class="jxr_javadoccomment"> * @throws IllegalArgumentException</em>
<a class="jxr_linenumber" name="127" href="#127">127</a> <em class="jxr_javadoccomment"> * if the action is not a put or a delete.</em>
<a class="jxr_linenumber" name="128" href="#128">128</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="129" href="#129">129</a> @Override
<a class="jxr_linenumber" name="130" href="#130">130</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> write(<a href="../../../../../org/apache/hadoop/hbase/io/ImmutableBytesWritable.html">ImmutableBytesWritable</a> tableName, <a href="../../../../../org/apache/hadoop/hbase/client/Mutation.html">Mutation</a> action) <strong class="jxr_keyword">throws</strong> IOException {
<a class="jxr_linenumber" name="131" href="#131">131</a> <a href="../../../../../org/apache/hadoop/hbase/client/HTable.html">HTable</a> table = getTable(tableName);
<a class="jxr_linenumber" name="132" href="#132">132</a> <em class="jxr_comment">// The actions are not immutable, so we defensively copy them</em>
<a class="jxr_linenumber" name="133" href="#133">133</a> <strong class="jxr_keyword">if</strong> (action instanceof Put) {
<a class="jxr_linenumber" name="134" href="#134">134</a> <a href="../../../../../org/apache/hadoop/hbase/client/Put.html">Put</a> put = <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/hadoop/hbase/client/Put.html">Put</a>((Put) action);
<a class="jxr_linenumber" name="135" href="#135">135</a> put.setDurability(useWriteAheadLogging ? Durability.SYNC_WAL
<a class="jxr_linenumber" name="136" href="#136">136</a> : Durability.SKIP_WAL);
<a class="jxr_linenumber" name="137" href="#137">137</a> table.put(put);
<a class="jxr_linenumber" name="138" href="#138">138</a> } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (action instanceof Delete) {
<a class="jxr_linenumber" name="139" href="#139">139</a> <a href="../../../../../org/apache/hadoop/hbase/client/Delete.html">Delete</a> delete = <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/hadoop/hbase/client/Delete.html">Delete</a>((Delete) action);
<a class="jxr_linenumber" name="140" href="#140">140</a> table.delete(delete);
<a class="jxr_linenumber" name="141" href="#141">141</a> } <strong class="jxr_keyword">else</strong>
<a class="jxr_linenumber" name="142" href="#142">142</a> <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> IllegalArgumentException(
<a class="jxr_linenumber" name="143" href="#143">143</a> <span class="jxr_string">"action must be either Delete or Put"</span>);
<a class="jxr_linenumber" name="144" href="#144">144</a> }
<a class="jxr_linenumber" name="145" href="#145">145</a> }
<a class="jxr_linenumber" name="146" href="#146">146</a>
<a class="jxr_linenumber" name="147" href="#147">147</a> @Override
<a class="jxr_linenumber" name="148" href="#148">148</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> checkOutputSpecs(JobContext context) <strong class="jxr_keyword">throws</strong> IOException,
<a class="jxr_linenumber" name="149" href="#149">149</a> InterruptedException {
<a class="jxr_linenumber" name="150" href="#150">150</a> <em class="jxr_comment">// we can't know ahead of time if it's going to blow up when the user</em>
<a class="jxr_linenumber" name="151" href="#151">151</a> <em class="jxr_comment">// passes a table name that doesn't exist, so nothing useful here.</em>
<a class="jxr_linenumber" name="152" href="#152">152</a> }
<a class="jxr_linenumber" name="153" href="#153">153</a>
<a class="jxr_linenumber" name="154" href="#154">154</a> @Override
<a class="jxr_linenumber" name="155" href="#155">155</a> <strong class="jxr_keyword">public</strong> OutputCommitter getOutputCommitter(TaskAttemptContext context)
<a class="jxr_linenumber" name="156" href="#156">156</a> <strong class="jxr_keyword">throws</strong> IOException, InterruptedException {
<a class="jxr_linenumber" name="157" href="#157">157</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/hadoop/hbase/mapreduce/TableOutputCommitter.html">TableOutputCommitter</a>();
<a class="jxr_linenumber" name="158" href="#158">158</a> }
<a class="jxr_linenumber" name="159" href="#159">159</a>
<a class="jxr_linenumber" name="160" href="#160">160</a> @Override
<a class="jxr_linenumber" name="161" href="#161">161</a> <strong class="jxr_keyword">public</strong> RecordWriter<ImmutableBytesWritable, Mutation> getRecordWriter(TaskAttemptContext context)
<a class="jxr_linenumber" name="162" href="#162">162</a> <strong class="jxr_keyword">throws</strong> IOException, InterruptedException {
<a class="jxr_linenumber" name="163" href="#163">163</a> Configuration conf = context.getConfiguration();
<a class="jxr_linenumber" name="164" href="#164">164</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/hadoop/hbase/mapreduce/MultiTableOutputFormat.html">MultiTableRecordWriter</a>(HBaseConfiguration.create(conf),
<a class="jxr_linenumber" name="165" href="#165">165</a> conf.getBoolean(WAL_PROPERTY, WAL_ON));
<a class="jxr_linenumber" name="166" href="#166">166</a> }
<a class="jxr_linenumber" name="167" href="#167">167</a>
<a class="jxr_linenumber" name="168" href="#168">168</a> }
</pre>
<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
</html>
|
src/main/webapp/resources/css/plugins/codemirror/codemirror.css | cnlyml/summer | /*
* Copyright 2016 Cnlyml
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/* BASICS */
.CodeMirror {
/* Set height, width, borders, and global font properties here */
font-family: monospace;
height: 300px;
}
.CodeMirror-scroll {
/* Set scrolling behaviour here */
overflow: auto;
}
/* PADDING */
.CodeMirror-lines {
padding: 4px 0; /* Vertical padding around content */
}
.CodeMirror pre {
padding: 0 4px; /* Horizontal padding of content */
}
.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
background-color: white; /* The little square between H and V scrollbars */
}
/* GUTTER */
.CodeMirror-gutters {
border-right: 1px solid #ddd;
background-color: #f7f7f7;
white-space: nowrap;
}
.CodeMirror-linenumbers {}
.CodeMirror-linenumber {
padding: 0 3px 0 5px;
min-width: 20px;
text-align: right;
color: #999;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
.CodeMirror-guttermarker { color: black; }
.CodeMirror-guttermarker-subtle { color: #999; }
/* CURSOR */
.CodeMirror div.CodeMirror-cursor {
border-left: 1px solid black;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
border-left: 1px solid silver;
}
.CodeMirror.cm-keymap-fat-cursor div.CodeMirror-cursor {
width: auto;
border: 0;
background: #7e7;
}
.CodeMirror.cm-keymap-fat-cursor div.CodeMirror-cursors {
z-index: 1;
}
.cm-animate-fat-cursor {
width: auto;
border: 0;
-webkit-animation: blink 1.06s steps(1) infinite;
-moz-animation: blink 1.06s steps(1) infinite;
animation: blink 1.06s steps(1) infinite;
}
@-moz-keyframes blink {
0% { background: #7e7; }
50% { background: none; }
100% { background: #7e7; }
}
@-webkit-keyframes blink {
0% { background: #7e7; }
50% { background: none; }
100% { background: #7e7; }
}
@keyframes blink {
0% { background: #7e7; }
50% { background: none; }
100% { background: #7e7; }
}
/* Can style cursor different in overwrite (non-insert) mode */
div.CodeMirror-overwrite div.CodeMirror-cursor {}
.cm-tab { display: inline-block; text-decoration: inherit; }
.CodeMirror-ruler {
border-left: 1px solid #ccc;
position: absolute;
}
/* DEFAULT THEME */
.cm-s-default .cm-keyword {color: #708;}
.cm-s-default .cm-atom {color: #219;}
.cm-s-default .cm-number {color: #164;}
.cm-s-default .cm-def {color: #00f;}
.cm-s-default .cm-variable,
.cm-s-default .cm-punctuation,
.cm-s-default .cm-property,
.cm-s-default .cm-operator {}
.cm-s-default .cm-variable-2 {color: #05a;}
.cm-s-default .cm-variable-3 {color: #085;}
.cm-s-default .cm-comment {color: #a50;}
.cm-s-default .cm-string {color: #a11;}
.cm-s-default .cm-string-2 {color: #f50;}
.cm-s-default .cm-meta {color: #555;}
.cm-s-default .cm-qualifier {color: #555;}
.cm-s-default .cm-builtin {color: #30a;}
.cm-s-default .cm-bracket {color: #997;}
.cm-s-default .cm-tag {color: #170;}
.cm-s-default .cm-attribute {color: #00c;}
.cm-s-default .cm-header {color: blue;}
.cm-s-default .cm-quote {color: #090;}
.cm-s-default .cm-hr {color: #999;}
.cm-s-default .cm-link {color: #00c;}
.cm-negative {color: #d44;}
.cm-positive {color: #292;}
.cm-header, .cm-strong {font-weight: bold;}
.cm-em {font-style: italic;}
.cm-link {text-decoration: underline;}
.cm-s-default .cm-error {color: #f00;}
.cm-invalidchar {color: #f00;}
/* Default styles for common addons */
div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
.CodeMirror-activeline-background {background: #e8f2ff;}
/* STOP */
/* The rest of this file contains styles related to the mechanics of
the editor. You probably shouldn't touch them. */
.CodeMirror {
line-height: 1;
position: relative;
overflow: hidden;
background: white;
color: black;
}
.CodeMirror-scroll {
/* 30px is the magic margin used to hide the element's real scrollbars */
/* See overflow: hidden in .CodeMirror */
margin-bottom: -30px; margin-right: -30px;
padding-bottom: 30px;
height: 100%;
outline: none; /* Prevent dragging from highlighting the element */
position: relative;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
.CodeMirror-sizer {
position: relative;
border-right: 30px solid transparent;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
/* The fake, visible scrollbars. Used to force redraw during scrolling
before actuall scrolling happens, thus preventing shaking and
flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
position: absolute;
z-index: 6;
display: none;
}
.CodeMirror-vscrollbar {
right: 0; top: 0;
overflow-x: hidden;
overflow-y: scroll;
}
.CodeMirror-hscrollbar {
bottom: 0; left: 0;
overflow-y: hidden;
overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
right: 0; bottom: 0;
}
.CodeMirror-gutter-filler {
left: 0; bottom: 0;
}
.CodeMirror-gutters {
position: absolute; left: 0; top: 0;
padding-bottom: 30px;
z-index: 3;
}
.CodeMirror-gutter {
white-space: normal;
height: 100%;
-moz-box-sizing: content-box;
box-sizing: content-box;
padding-bottom: 30px;
margin-bottom: -32px;
display: inline-block;
/* Hack to make IE7 behave */
*zoom:1;
*display:inline;
}
.CodeMirror-gutter-elt {
position: absolute;
cursor: default;
z-index: 4;
}
.CodeMirror-lines {
cursor: text;
min-height: 1px; /* prevents collapsing before first draw */
}
.CodeMirror pre {
/* Reset some styles that the rest of the page might have set */
-moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
border-width: 0;
background: transparent;
font-family: inherit;
font-size: inherit;
margin: 0;
white-space: pre;
word-wrap: normal;
line-height: inherit;
color: inherit;
z-index: 2;
position: relative;
overflow: visible;
}
.CodeMirror-wrap pre {
word-wrap: break-word;
white-space: pre-wrap;
word-break: normal;
}
.CodeMirror-linebackground {
position: absolute;
left: 0; right: 0; top: 0; bottom: 0;
z-index: 0;
}
.CodeMirror-linewidget {
position: relative;
z-index: 2;
overflow: auto;
}
.CodeMirror-widget {}
.CodeMirror-wrap .CodeMirror-scroll {
overflow-x: hidden;
}
.CodeMirror-measure {
position: absolute;
width: 100%;
height: 0;
overflow: hidden;
visibility: hidden;
}
.CodeMirror-measure pre { position: static; }
.CodeMirror div.CodeMirror-cursor {
position: absolute;
border-right: none;
width: 0;
}
div.CodeMirror-cursors {
visibility: hidden;
position: relative;
z-index: 3;
}
.CodeMirror-focused div.CodeMirror-cursors {
visibility: visible;
}
.CodeMirror-selected { background: #d9d9d9; }
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
.CodeMirror-crosshair { cursor: crosshair; }
.cm-searching {
background: #ffa;
background: rgba(255, 255, 0, .4);
}
/* IE7 hack to prevent it from returning funny offsetTops on the spans */
.CodeMirror span { *vertical-align: text-bottom; }
/* Used to force a border model for a node */
.cm-force-border { padding-right: .1px; }
@media print {
/* Hide the cursor when printing */
.CodeMirror div.CodeMirror-cursors {
visibility: hidden;
}
}
/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext { background: none; }
|
app/views/archives/examinations.html | luisomoreau/lsi-dashboard | <div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">Epreuves</h1>
</div>
<!-- /.col-lg-12 -->
</div>
<!-- /.row -->
</div> |
docs/javadoc/opensaml2/1.0.4/se/litsec/eidas/opensaml2/ext/attributes/class-use/AttributeConstants.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_102) on Wed Nov 08 22:52:42 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class se.litsec.eidas.opensaml2.ext.attributes.AttributeConstants (eIDAS extension for OpenSAML 2.x - 1.0.4)</title>
<meta name="date" content="2017-11-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="Uses of Class se.litsec.eidas.opensaml2.ext.attributes.AttributeConstants (eIDAS extension for OpenSAML 2.x - 1.0.4)";
}
}
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/opensaml2/ext/attributes/AttributeConstants.html" title="class in se.litsec.eidas.opensaml2.ext.attributes">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/opensaml2/ext/attributes/class-use/AttributeConstants.html" target="_top">Frames</a></li>
<li><a href="AttributeConstants.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.opensaml2.ext.attributes.AttributeConstants" class="title">Uses of Class<br>se.litsec.eidas.opensaml2.ext.attributes.AttributeConstants</h2>
</div>
<div class="classUseContainer">No usage of se.litsec.eidas.opensaml2.ext.attributes.AttributeConstants</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/opensaml2/ext/attributes/AttributeConstants.html" title="class in se.litsec.eidas.opensaml2.ext.attributes">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/opensaml2/ext/attributes/class-use/AttributeConstants.html" target="_top">Frames</a></li>
<li><a href="AttributeConstants.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. All rights reserved.</small></p>
</body>
</html>
|
doc/io/github/kkysen/quicktrip/apis/google/geocoding/exists/package-use.html | kkysen/QuickTrip | <!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_92) on Sat Jan 14 01:14:48 EST 2017 -->
<title>Uses of Package io.github.kkysen.quicktrip.apis.google.geocoding.exists</title>
<meta name="date" content="2017-01-14">
<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 Package io.github.kkysen.quicktrip.apis.google.geocoding.exists";
}
}
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 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?io/github/kkysen/quicktrip/apis/google/geocoding/exists/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 io.github.kkysen.quicktrip.apis.google.geocoding.exists" class="title">Uses of Package<br>io.github.kkysen.quicktrip.apis.google.geocoding.exists</h1>
</div>
<div class="contentContainer">No usage of io.github.kkysen.quicktrip.apis.google.geocoding.exists</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 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?io/github/kkysen/quicktrip/apis/google/geocoding/exists/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>
|
source_dir/documentation/nodeanimation/setnodeanimationlength.html | PureBasicCN/PureBasicPreference | <html><head><title>SetNodeAnimationLength</title></head>
<body bgcolor="#EFF1F0" link="#3A3966" vlink="#000000" alink="#000000">
<font face="Verdana, sans-serif" size="2"><p align="center"><b><font size="4">SetNodeAnimationLength()</font></b></p>
<p><b>Syntax</b></p><blockquote>
<font color="#3A3966"><b>SetNodeAnimationLength</b></font>(#NodeAnimation, Length)</blockquote>
</blockquote>
<b>Description</b><br><blockquote>
Change the #NodeAnimation length.
</blockquote><p><b>Parameters</b></p><blockquote>
<style type="text/css">
table.parameters { border-spacing: 0px; border-style: none; border-collapse: collapse; }
table.parameters td { border-width: 1px; padding: 6px; border-style: solid; border-color: gray; vertical-align: top; font-family:Arial; font-size:10pt; }
</style>
<table width="90%" class="parameters">
<tr><td width="10%"><i>#NodeAnimation</i></td>
<td width="90%">
The node animation to use.
</td></tr>
<tr><td><i>Length</i></td>
<td>
The new node animation length (in milliseconds).
</td></tr>
</table>
</blockquote><p><b>See Also</b></p><blockquote>
<a href="startnodeanimation.html">StartNodeAnimation()</a>, <a href="getnodeanimationlength.html">GetNodeAnimationLength()</a>
</Blockquote><p><b>Supported OS </b><Blockquote>All</Blockquote></p><center><- <a href=setnodeanimationkeyframescale.html>SetNodeAnimationKeyFrameScale()</a> - <a href="index.html">NodeAnimation Index</a> - <a href="setnodeanimationtime.html">SetNodeAnimationTime()</a> -><br><br>
</body></html> |
060.html | ezeswci/fibrilizacion | <h1 class="titulo">
<div class="row">
<div class="col-lg-11">
¿CON QUÉ FÁRMACOS GENERAN INTERACCIÓN MEDICAMENTOSA LOS NUEVOS ANTICOAGULANTES ORALES?
</div>
<div class="col-lg-1">
<span class="cuadro">60</span>
</div>
</div>
</h1>
<p class="text-justify">
Estos fármacos son susceptibles de interacciones farmacocinéticas pero, a diferencia de los antagonistas
de la vitamina K, no hay demasiada información sobre este campo y, a su vez, no se
recomienda utilizar un parámetro de laboratorio para guiar su posología en caso de administrarlos
con fármacos de conocida interacción.</p>
<p class="text-justify">
El dabigatrán, el rivaroxabán y el apixabán son sustratos de la glucoproteína P que dificulta la absorción
de determinadas sustancias. Los inhibidores de la glucoproteína P (amiodarona, ketoconazol,
quinidina, verapamilo, ciclosporina y tacrolimús) aumentan la absorción de los nuevos anticoagulantes
orales (NACO) y su concentración plasmática, y los inductores (rifampicina) la disminuyen.</p>
<p class="text-justify">
Existe una diversidad de recomendaciones de las agencias reguladoras sobre las interacciones; por
ejemplo, la FDA no recomienda un ajuste de dosis del dabigatrán al combinarse con el ketoconazol,
pero en Canadá y la Agencia Europea de Medicamentos se contraindica dicha combinación.</p>
<p class="text-justify">
El dabigatrán no se metaboliza por el sistema del citocromo P-450, a diferencia del rivaroxabán y
el apixabán (CYP 3A4). Por lo tanto, la concentración plasmática de esos fármacos puede verse
afectada al combinarse con medicamentos que inhiben o estimulen dicho metabolismo.</p>
<p class="text-justify">
A continuación se describen los fármacos que presentan evidencia de interacción con los NACO.
Se ha establecido una clasificación en tres niveles según el grado de interacción que puede presentarse
con otros fármacos y factores clínicos que pueden afectar su concentración en la sangre
(Tablas 1, 2 y 3).</p>
<blockquote class="vinieta">
<p class="vinieta text-justify">
1. Rojo (gris oscuro): interacciones que contraindican o desalientan su uso en combinación con
los NACO.</p>
<p class="vinieta text-justify">
2. Naranja (gris medio): la interacción requiere que se ajuste la dosis de los NACO, ya que estos
fármacos alteran su concentración en la sangre.</p>
<p class="vinieta text-justify">
3. Amarillo (gris claro): se recomienda mantener la dosis habitual, salvo que se utilicen dos o
más fármacos con dicha interacción y se debe decidir si se contraindica su prescripción.</p>
<p class="vinieta text-justify">
4. En caso de que no haya información al respecto sobre esa interacción ("sin información"), la
recomendación (color que aparece en las tablas) está basada en consideraciones farmacocinéticas.</p>
</blockquote>
<h2 class="titulo-figura">
<b>Tabla 1.</b>
<p class="text-justify">
Efectos en las concentraciones plasmáticas de los NACO (área bajo la curva) por interacciones
droga-droga, y recomendaciones con respecto a la dosis que se debe administrar.</p>
</h2>
<img src="img/060_01.jpg" alt="" width="100%" class="img-responsive center-block">
<h2 class="letra_pie">
GP-P: Glucoproteína P; EHRA Guía práctica en el uso de nuevos anticoagulantes orales en pacientes con
fibrilación atrial no valvular: resumen ejecutivo. European Heart Journal doi: 10.1093/eurheratj/eht.134.
</h2>
<h2 class="titulo-figura">
<b>Tabla 2.</b>
<p class="text-justify">
Efectos en las concentraciones plasmáticas de los NACO (área bajo la curva) por interacciones
droga-droga, y recomendaciones con respecto a la dosis que se debe administrar.</p>
</h2>
<img src="img/060_02.jpg" alt="" width="100%" class="img-responsive center-block">
<h2 class="letra_pie">
<p class="text-justify">
GP-P: Glucoproteína P; BCRP: Proteína de resistencia al cáncer de mama; IBP: Inhibidores de la bomba
de protones.</p>
<p class="text-justify">
EHRA Guía práctica en el uso de nuevos anticoagulantes orales en pacientes con fibrilación atrial no
valvular: resumen ejecutivo. European Heart Journal doi: 10.1093/eurheratj/eht.134.</h2>
</p>
<h2 class="titulo-figura">
<b>Tabla 3.</b>
<p class="text-justify">
Efectos en las concentraciones plasmáticas de los NACO según edad, peso y situaciones clínicas
concomitantes.</p>
</h2>
<img src="img/060_3.jpg" alt="" width="835" height="284"> width="100%" class="img-responsive center-block">
<h2 class="letra_pie">
EHRA Guía práctica en el uso de nuevos anticoagulantes orales en pacientes con fibrilación atrial no
valvular: resumen ejecutivo. European Heart Journal doi: 10.1093/eurheratj/eht.134.
</h2>
<p class="text-justify">
<h2 class="subtitulo">
<font color="#0090BB"><b>CONCLUSIONES</b></font>
</h2>
Los NACO se caracterizan por provocar menos interacciones farmacológicas que los anticoagulantes
clásicos, aunque no se encuentran exentos de ellas; por lo tanto, es importante conocerlas
para su correcta utilización, ya que no se cuenta con una determinación específica para controlar
su concentración plasmática.</p>
<h2 class="recomendada">
LECTURAS RECOMENDADAS
</h2>
<li class="recomendada text-justify">Ageno W, Gallus AS, et al. Oral anticoagulant therapy: antithrombotic therapy and prevention of thrombosis.
9.ª ed. American College of Chest Physicians Evidence-Based Clinical Practice Guidelines. Chest 2012;141;
e44S-e88S.
</li>
<li class="recomendada text-justify">Alexander JH, Lopes RD, James S, et al. Apixaban with antiplatelet therapy after acute coronary syndrome. N Engl
J Med 2011;365:699-708.
</li>
<li class="recomendada text-justify">Bainesa J, Grana E. Farmacocinética y farmacodinamia de los nuevos anticoagulantes orales. Farm Hosp
2009;33(3):125-33.
</li>
<li class="recomendada text-justify">Camm AJ, Kirchhof P, Lip GY, et al. Guidelines for the management of atrial fibrillation: the Task Force for the
Management of Atrial Fibrillation of the European Society of Cardiology (ESC). Europace 2010;12:1360-420.
</li>
<li class="recomendada text-justify">Camm AJ, Lip GY, De Caterina R, et al. 2012 focused update of the ESC Guidelines for the management of
atrial fibrillation. An update of the 2010 ESC Guidelines for the management of atrial fibrillation. Eur Heart J
2012;33:2719-47.
</li>
<li class="recomendada text-justify">Connolly SJ, Eikelboom J, Joyner C, at al. Apixaban in patients with atrial fibrillation. N Engl J Med 2011;364:
806-17.
</li>
<li class="recomendada text-justify">Dans AL, Connolly SJ, Wallentin L, et al. Concomitant use of antiplatelet therapy with dabigatran or warfarin in
the Randomized Evaluation of Long-term Anticoagulation Therapy (RE-LY) trial. Circulation 2013;127:634-40.
</li>
<li class="recomendada text-justify">Heidbuchel H, Verhamme P, Alings M, et al. European Heart Rhythm Association Practical Guide on the use of new
oral anticoagulants in patients with non-valvular atrial fibrillation. Europace 2013;15,625-51..
</li>
<li class="recomendada text-justify">Lahaye SA, Gibbens SL, Ball DG, et al. A clinical decision aid for the selection of antithrombotic therapy for the
prevention of stroke due to atrial fibrillation. Eur Heart J 2012;33:2163-71.
</li>
<li class="recomendada text-justify">Mateo J. Nuevos anticoagulantes orales y su papel en la práctica clínica. Rev Esp Cardiol Supl 2013;13(C):33-41.
</li>
<li class="recomendada text-justify">Mega JL, Braunwald E, Wiviott SD, et al. Rivaroxaban in patients with a recent acute coronary syndrome. N Engl
J Med 2012;366:9-19.
</li>
<li class="recomendada text-justify">Spinler SA, Shafir V. New oral anticoagulants for atrial fibrillation. Circulation. 2012;126:133-7.
</li>
<li class="recomendada text-justify">Zapata Wainberg G, Ximénez-Carrillo Rico A y cols. Manejo clínico de los nuevos anticoagulantes. Neurología
2012;27(Supl 1):33-8.</li>
|
javadoc/hibernate_Doc/org/hibernate/type/class-use/DiscriminatorType.html | serious6/HibernateSimpleProject | <!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_45) on Mon Mar 03 10:44:38 EST 2014 -->
<title>Uses of Interface org.hibernate.type.DiscriminatorType (Hibernate JavaDocs)</title>
<meta name="date" content="2014-03-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.hibernate.type.DiscriminatorType (Hibernate JavaDocs)";
}
//-->
</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/hibernate/type/DiscriminatorType.html" title="interface in org.hibernate.type">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>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/hibernate/type/class-use/DiscriminatorType.html" target="_top">Frames</a></li>
<li><a href="DiscriminatorType.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.hibernate.type.DiscriminatorType" class="title">Uses of Interface<br>org.hibernate.type.DiscriminatorType</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/hibernate/type/DiscriminatorType.html" title="interface in org.hibernate.type">DiscriminatorType</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.hibernate.type">org.hibernate.type</a></td>
<td class="colLast">
<div class="block"><div class="paragraph"></div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.hibernate.type">
<!-- -->
</a>
<h3>Uses of <a href="../../../../org/hibernate/type/DiscriminatorType.html" title="interface in org.hibernate.type">DiscriminatorType</a> in <a href="../../../../org/hibernate/type/package-summary.html">org.hibernate.type</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../org/hibernate/type/package-summary.html">org.hibernate.type</a> that implement <a href="../../../../org/hibernate/type/DiscriminatorType.html" title="interface in org.hibernate.type">DiscriminatorType</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/hibernate/type/BigIntegerType.html" title="class in org.hibernate.type">BigIntegerType</a></strong></code>
<div class="block"><div class="paragraph"></div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../org/hibernate/type/BooleanType.html" title="class in org.hibernate.type">BooleanType</a></strong></code>
<div class="block"><div class="paragraph"></div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../org/hibernate/type/ByteType.html" title="class in org.hibernate.type">ByteType</a></strong></code>
<div class="block"><div class="paragraph"></div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../org/hibernate/type/CharacterNCharType.html" title="class in org.hibernate.type">CharacterNCharType</a></strong></code>
<div class="block"><div class="paragraph"></div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../org/hibernate/type/CharacterType.html" title="class in org.hibernate.type">CharacterType</a></strong></code>
<div class="block"><div class="paragraph"></div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../org/hibernate/type/CharBooleanType.html" title="class in org.hibernate.type">CharBooleanType</a></strong></code>
<div class="block"><strong>Deprecated.</strong>
<div class="block"><i>Use the <a href="../../../../org/hibernate/type/AbstractStandardBasicType.html" title="class in org.hibernate.type"><code>AbstractStandardBasicType</code></a> approach instead</i></div>
</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../org/hibernate/type/CustomType.html" title="class in org.hibernate.type">CustomType</a></strong></code>
<div class="block"><div class="paragraph"></div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../org/hibernate/type/IntegerType.html" title="class in org.hibernate.type">IntegerType</a></strong></code>
<div class="block"><div class="paragraph"></div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../org/hibernate/type/LongType.html" title="class in org.hibernate.type">LongType</a></strong></code>
<div class="block"><div class="paragraph"></div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../org/hibernate/type/NumericBooleanType.html" title="class in org.hibernate.type">NumericBooleanType</a></strong></code>
<div class="block"><div class="paragraph"></div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../org/hibernate/type/ShortType.html" title="class in org.hibernate.type">ShortType</a></strong></code>
<div class="block"><div class="paragraph"></div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../org/hibernate/type/StringNVarcharType.html" title="class in org.hibernate.type">StringNVarcharType</a></strong></code>
<div class="block"><div class="paragraph"></div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../org/hibernate/type/StringType.html" title="class in org.hibernate.type">StringType</a></strong></code>
<div class="block"><div class="paragraph"></div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../org/hibernate/type/TrueFalseType.html" title="class in org.hibernate.type">TrueFalseType</a></strong></code>
<div class="block"><div class="paragraph"></div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../org/hibernate/type/UrlType.html" title="class in org.hibernate.type">UrlType</a></strong></code>
<div class="block"><div class="paragraph"></div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../org/hibernate/type/YesNoType.html" title="class in org.hibernate.type">YesNoType</a></strong></code>
<div class="block"><div class="paragraph"></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/hibernate/type/DiscriminatorType.html" title="interface in org.hibernate.type">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>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/hibernate/type/class-use/DiscriminatorType.html" target="_top">Frames</a></li>
<li><a href="DiscriminatorType.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 © 2001-2014 <a href="http://redhat.com">Red Hat, Inc.</a> All Rights Reserved.</small></p>
</body>
</html>
|
_layouts/project_gallery.html | TasiYokan/Blog | ---
layout: project_page
tab: gallery
---
<!--{% include assign_project.html %}-->
{% for data_project in site.data.projects %}
{% if data_project.slug == page.project %}
{% assign project = data_project %}
{% endif %}
{% endfor %}
{% if project.gallery %}
<div id="gallery" class="row" data-toggle="gallery">
{% for image in project.gallery %}
{% capture image_url %}/res/{{ project.slug }}/{{ image }}{% endcapture %}
<a href="{{ image_url }}" class="col-xs-6 col-sm-4 col-md-3" data-thumbnail>
<img src="{{ image_url }}" class="img-responsive img-thumbnail">
</a>
{% endfor %}
</div>
{% else %}
<p>There is no gallery for this project.</p>
{% endif %}
|
docs/api/org/apache/hadoop/metrics/ganglia/class-use/GangliaContext31.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:09 UTC 2011 -->
<TITLE>
Uses of Class org.apache.hadoop.metrics.ganglia.GangliaContext31 (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.metrics.ganglia.GangliaContext31 (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/metrics/ganglia/GangliaContext31.html" title="class in org.apache.hadoop.metrics.ganglia"><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/metrics/ganglia//class-useGangliaContext31.html" target="_top"><B>FRAMES</B></A>
<A HREF="GangliaContext31.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.metrics.ganglia.GangliaContext31</B></H2>
</CENTER>
No usage of org.apache.hadoop.metrics.ganglia.GangliaContext31
<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/metrics/ganglia/GangliaContext31.html" title="class in org.apache.hadoop.metrics.ganglia"><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/metrics/ganglia//class-useGangliaContext31.html" target="_top"><B>FRAMES</B></A>
<A HREF="GangliaContext31.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>
|
Application/Home/View/Popup/selectsingleuser.html | work4team/jxmb | <extend name="Layout/page_popup" />
<block name="content">
<div class="panel panel-default ">
<div class="panel-heading clearfix">
<div class="pull-left">
<label>
<input class="ace" type="radio" id="rb_company" name="type" value="company" >
<span class="lbl">公司</span> </label>
<label>
<input class="ace" type="radio" id="rb_rank" name="type" value="rank">
<span class="lbl">职级</span> </label>
<label>
<input class="ace" type="radio" id="rb_position" name="type" value="position">
<span class="lbl">职位</span> </label>
</div>
<div class="pull-right">
<a onclick="save();" class="btn btn-sm btn-primary">确定</a>
<a onclick="myclose();" class="btn btn-sm btn-primary">关闭</a>
</div>
</div>
<div class="panel-body">
<div class="col-28 pull-left">
<div class="">
<b>地址簿</b>
</div>
<div class="popup_tree_menu" >
<div id="company" class="display-none" style="height:200px;">
{$list_company}
</div>
<div id="rank" class="display-none" style="height:200px;">
{$list_rank}
</div>
<div id="position" class="display-none" style="height:200px;">
{$list_position}
</div>
<div id="personal" class="display-none" style="height:200px;">
<ul class="tree_menu">
<volist name="list_personal" id="vo">
<li>
<a class="" node="{$key}"><i class="icon level1"></i><span>{$vo}</span></a>
</li>
</volist>
</ul>
</div>
</div>
<div>
<div id="addr_list" style="width:100%;height:210px;"></div>
</div>
</div>
<div class="col-34 pull-right">
<div>
<b style="padding-left: 60px;">参与人员</b><span id="rc_count"></span>
</div>
<div class="clearfix" style="margin-bottom: 15px;">
<label class="col-4 pull-left text-right" ><a onclick="add_address('rc');" class="btn btn-sm btn-primary"> <i class="fa fa-angle-double-right"></i> </a> </label>
<div class="col-28 pull-right">
<div id="rc" style="width:100%;height:424px;overflow:hidden">
<select size="6" style="height:100%;width:100%;"></select>
</div>
</div>
</div>
</div>
</div>
</div>
</block>
<block name="js">
<script type="text/javascript">
function save() {
$("#rc select option").each(function(i) {
emp_no = $(this).val();
name = jQuery.trim($(this).text());
name = name.replace(/<.*>/, '');
html_string = conv_inputbox_item(name,emp_no);
$("#single_user .address_list", parent.document).append(html_string);
});
myclose();
}
function showdata(result) {
$("#addr_list").html("");
if ( type = $("input[name='type']:checked").val() == "company") {
var dept_id = "dept_" + $("#company a.active").attr("node");
var dept_name = $("#company a.active span").text();
var email = "dept@group";
var name = dept_name + "<" + email + ">";
var html_string = conv_address_item(name,dept_id);
$("#addr_list").html(html_string);
}
for (s in result.data) {
var user_id = result.data[s].id;
var position_name = result.data[s].position_name;
var name = result.data[s].name;
var name = name + "/" + position_name;
var html_string = conv_address_item(name,user_id);
$("#addr_list").append(html_string);
}
}
$(document).ready(function() {
$("#rb_{$type}").prop('checked', true);
// 选择用户默认选择的类型
$("#{$type}").removeClass("display-none");
$("input[name='type']").on('click', function() {
$("input[name='type']").each(function() {
$("#" + $(this).val()).addClass("display-none");
});
$("#" + $(this).val()).removeClass("display-none");
});
$(".tree_menu a").click(function() {
$(".tree_menu a").attr("class", "");
var type = $("input[name='type']:checked").val();
$(this).attr("class", "active");
sendAjax("{:U('read')}", "type=" + type + "&id=" + $(this).attr("node"), function(data) {
showdata(data);
});
return false;
//禁止连接生效
});
$(document).on("dblclick", "#addr_list label", function() {
$text = $(this).text();
$val = $(this).find("input").val();
if ($("#rc select option[value='" + $val + "']").val() == undefined) {
$("<option></option>").val($val).text($text).appendTo("#rc select");
$("#rc_count").text("(" + $("#rc select option").length + ")");
};
});
$("#rc select").on("dblclick", function() {
$(this).find("option:selected").remove();
$("#rc_count").text("(" + $("#rc select option").length + ")");
});
});
//最终确认
function add_address(name) {
$("input:checked[name='addr_id']").each(function() {
$(this).prop('checked',false);
$text = $(this).parents("label").find("span").text();
$val = $(this).val();
if ($("#" + name + " select option[value='" + $val + "']").val() == undefined) {
$("<option></option>").val($val).text($text).appendTo("#" + name + " select");
$("#" + name + "_count").text("(" + $("#" + name + " select option").length + ")");
};
});
}
//-->
</script>
</block>
|
docs/solr-core/org/apache/solr/highlight/SolrFragListBuilder.html | kyosuke1008/summary-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.6.0_27) on Thu Oct 17 21:44:56 EDT 2013 -->
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<title>SolrFragListBuilder (Solr 4.5.1 API)</title>
<meta name="date" content="2013-10-17">
<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="SolrFragListBuilder (Solr 4.5.1 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/SolrFragListBuilder.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../org/apache/solr/highlight/SolrFormatter.html" title="interface in org.apache.solr.highlight"><span class="strong">PREV CLASS</span></a></li>
<li><a href="../../../../org/apache/solr/highlight/SolrFragmenter.html" title="interface in org.apache.solr.highlight"><span class="strong">NEXT CLASS</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/apache/solr/highlight/SolrFragListBuilder.html" target="_top">FRAMES</a></li>
<li><a href="SolrFragListBuilder.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">
<p class="subTitle">org.apache.solr.highlight</p>
<h2 title="Interface SolrFragListBuilder" class="title">Interface SolrFragListBuilder</h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Superinterfaces:</dt>
<dd><a href="../../../../org/apache/solr/util/plugin/NamedListInitializedPlugin.html" title="interface in org.apache.solr.util.plugin">NamedListInitializedPlugin</a>, <a href="../../../../org/apache/solr/core/SolrInfoMBean.html" title="interface in org.apache.solr.core">SolrInfoMBean</a></dd>
</dl>
<dl>
<dt>All Known Implementing Classes:</dt>
<dd><a href="../../../../org/apache/solr/highlight/SimpleFragListBuilder.html" title="class in org.apache.solr.highlight">SimpleFragListBuilder</a>, <a href="../../../../org/apache/solr/highlight/SingleFragListBuilder.html" title="class in org.apache.solr.highlight">SingleFragListBuilder</a>, <a href="../../../../org/apache/solr/highlight/WeightedFragListBuilder.html" title="class in org.apache.solr.highlight">WeightedFragListBuilder</a></dd>
</dl>
<hr>
<br>
<pre>public interface <strong>SolrFragListBuilder</strong>
extends <a href="../../../../org/apache/solr/core/SolrInfoMBean.html" title="interface in org.apache.solr.core">SolrInfoMBean</a>, <a href="../../../../org/apache/solr/util/plugin/NamedListInitializedPlugin.html" title="interface in org.apache.solr.util.plugin">NamedListInitializedPlugin</a></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested_class_summary">
<!-- -->
</a>
<h3>Nested Class Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="nested_classes_inherited_from_class_org.apache.solr.core.SolrInfoMBean">
<!-- -->
</a>
<h3>Nested classes/interfaces inherited from interface org.apache.solr.core.<a href="../../../../org/apache/solr/core/SolrInfoMBean.html" title="interface in org.apache.solr.core">SolrInfoMBean</a></h3>
<code><a href="../../../../org/apache/solr/core/SolrInfoMBean.Category.html" title="enum in org.apache.solr.core">SolrInfoMBean.Category</a></code></li>
</ul>
</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><a href="http://lucene.apache.org/core/4_5_1/highlighter/org/apache/lucene/search/vectorhighlight/FragListBuilder.html?is-external=true" title="class or interface in org.apache.lucene.search.vectorhighlight">FragListBuilder</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/solr/highlight/SolrFragListBuilder.html#getFragListBuilder(org.apache.solr.common.params.SolrParams)">getFragListBuilder</a></strong>(<a href="../../../../../solr-solrj/org/apache/solr/common/params/SolrParams.html?is-external=true" title="class or interface in org.apache.solr.common.params">SolrParams</a> params)</code>
<div class="block">Return a FragListBuilder.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/solr/highlight/SolrFragListBuilder.html#init(org.apache.solr.common.util.NamedList)">init</a></strong>(<a href="../../../../../solr-solrj/org/apache/solr/common/util/NamedList.html?is-external=true" title="class or interface in org.apache.solr.common.util">NamedList</a> args)</code>
<div class="block"><code>init</code> will be called just once, immediately after creation.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.apache.solr.core.SolrInfoMBean">
<!-- -->
</a>
<h3>Methods inherited from interface org.apache.solr.core.<a href="../../../../org/apache/solr/core/SolrInfoMBean.html" title="interface in org.apache.solr.core">SolrInfoMBean</a></h3>
<code><a href="../../../../org/apache/solr/core/SolrInfoMBean.html#getCategory()">getCategory</a>, <a href="../../../../org/apache/solr/core/SolrInfoMBean.html#getDescription()">getDescription</a>, <a href="../../../../org/apache/solr/core/SolrInfoMBean.html#getDocs()">getDocs</a>, <a href="../../../../org/apache/solr/core/SolrInfoMBean.html#getName()">getName</a>, <a href="../../../../org/apache/solr/core/SolrInfoMBean.html#getSource()">getSource</a>, <a href="../../../../org/apache/solr/core/SolrInfoMBean.html#getStatistics()">getStatistics</a>, <a href="../../../../org/apache/solr/core/SolrInfoMBean.html#getVersion()">getVersion</a></code></li>
</ul>
</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="init(org.apache.solr.common.util.NamedList)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>init</h4>
<pre>void init(<a href="../../../../../solr-solrj/org/apache/solr/common/util/NamedList.html?is-external=true" title="class or interface in org.apache.solr.common.util">NamedList</a> args)</pre>
<div class="block"><code>init</code> will be called just once, immediately after creation.
<p>The args are user-level initialization parameters that
may be specified when declaring a request handler in
solrconfig.xml</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../org/apache/solr/util/plugin/NamedListInitializedPlugin.html#init(org.apache.solr.common.util.NamedList)">init</a></code> in interface <code><a href="../../../../org/apache/solr/util/plugin/NamedListInitializedPlugin.html" title="interface in org.apache.solr.util.plugin">NamedListInitializedPlugin</a></code></dd>
</dl>
</li>
</ul>
<a name="getFragListBuilder(org.apache.solr.common.params.SolrParams)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getFragListBuilder</h4>
<pre><a href="http://lucene.apache.org/core/4_5_1/highlighter/org/apache/lucene/search/vectorhighlight/FragListBuilder.html?is-external=true" title="class or interface in org.apache.lucene.search.vectorhighlight">FragListBuilder</a> getFragListBuilder(<a href="../../../../../solr-solrj/org/apache/solr/common/params/SolrParams.html?is-external=true" title="class or interface in org.apache.solr.common.params">SolrParams</a> params)</pre>
<div class="block">Return a FragListBuilder.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>params</code> - The params controlling Highlighting</dd>
<dt><span class="strong">Returns:</span></dt><dd>An appropriate FragListBuilder.</dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/SolrFragListBuilder.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../org/apache/solr/highlight/SolrFormatter.html" title="interface in org.apache.solr.highlight"><span class="strong">PREV CLASS</span></a></li>
<li><a href="../../../../org/apache/solr/highlight/SolrFragmenter.html" title="interface in org.apache.solr.highlight"><span class="strong">NEXT CLASS</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/apache/solr/highlight/SolrFragListBuilder.html" target="_top">FRAMES</a></li>
<li><a href="SolrFragListBuilder.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>
<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>
</small></p>
</body>
</html>
|
bonfire/_functions/click.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: click()</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('click');
// -->
</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#click">click()</a></h2>
<b>Defined at:</b><ul>
<li><a href="../tests/simpletest/web_tester.php.html#click">/tests/simpletest/web_tester.php</a> -> <a onClick="logFunction('click', '/tests/simpletest/web_tester.php.source.html#l868')" href="../tests/simpletest/web_tester.php.source.html#l868"> line 868</a></li>
<li><a href="../bonfire/codeigniter/libraries/Javascript.php.html#click">/bonfire/codeigniter/libraries/Javascript.php</a> -> <a onClick="logFunction('click', '/bonfire/codeigniter/libraries/Javascript.php.source.html#l93')" href="../bonfire/codeigniter/libraries/Javascript.php.source.html#l93"> line 93</a></li>
<li><a href="../tests/simpletest/browser.php.html#click">/tests/simpletest/browser.php</a> -> <a onClick="logFunction('click', '/tests/simpletest/browser.php.source.html#l1116')" href="../tests/simpletest/browser.php.source.html#l1116"> line 1116</a></li>
</ul>
<b>Referenced 74 times:</b><ul>
<li><a href="../bonfire/docs/keyboard_shortcuts.md.html">/bonfire/docs/keyboard_shortcuts.md</a> -> <a href="../bonfire/docs/keyboard_shortcuts.md.source.html#l57"> line 57</a></li>
<li><a href="../bonfire/docs/keyboard_shortcuts.md.html">/bonfire/docs/keyboard_shortcuts.md</a> -> <a href="../bonfire/docs/keyboard_shortcuts.md.source.html#l65"> line 65</a></li>
<li><a href="../bonfire/docs/keyboard_shortcuts.md.html">/bonfire/docs/keyboard_shortcuts.md</a> -> <a href="../bonfire/docs/keyboard_shortcuts.md.source.html#l69"> line 69</a></li>
<li><a href="../public/assets/js/bootstrap.js.html">/public/assets/js/bootstrap.js</a> -> <a href="../public/assets/js/bootstrap.js.source.html#l723"> line 723</a></li>
<li><a href="../public/assets/js/bootstrap.js.html">/public/assets/js/bootstrap.js</a> -> <a href="../public/assets/js/bootstrap.js.source.html#l967"> line 967</a></li>
<li><a href="../application/config/application.php.html">/application/config/application.php</a> -> <a href="../application/config/application.php.source.html#l264"> line 264</a></li>
<li><a href="../application/config/application.php.html">/application/config/application.php</a> -> <a href="../application/config/application.php.source.html#l266"> line 266</a></li>
<li><a href="../application/config/application.php.html">/application/config/application.php</a> -> <a href="../application/config/application.php.source.html#l267"> line 267</a></li>
<li><a href="../bonfire/modules/roles/assets/js/settings.js.html">/bonfire/modules/roles/assets/js/settings.js</a> -> <a href="../bonfire/modules/roles/assets/js/settings.js.source.html#l71"> line 71</a></li>
<li><a href="../bonfire/modules/roles/assets/js/settings.js.html">/bonfire/modules/roles/assets/js/settings.js</a> -> <a href="../bonfire/modules/roles/assets/js/settings.js.source.html#l101"> line 101</a></li>
<li><a href="../tests/simpletest/docs/fr/browser_documentation.html.html">/tests/simpletest/docs/fr/browser_documentation.html</a> -> <a href="../tests/simpletest/docs/fr/browser_documentation.html.source.html#l118"> line 118</a></li>
<li><a href="../tests/simpletest/docs/en/browser_documentation.html.html">/tests/simpletest/docs/en/browser_documentation.html</a> -> <a href="../tests/simpletest/docs/en/browser_documentation.html.source.html#l68"> line 68</a></li>
<li><a href="../tests/simpletest/docs/en/browser_documentation.html.html">/tests/simpletest/docs/en/browser_documentation.html</a> -> <a href="../tests/simpletest/docs/en/browser_documentation.html.source.html#l69"> line 69</a></li>
<li><a href="../tests/simpletest/docs/en/browser_documentation.html.html">/tests/simpletest/docs/en/browser_documentation.html</a> -> <a href="../tests/simpletest/docs/en/browser_documentation.html.source.html#l70"> line 70</a></li>
<li><a href="../tests/simpletest/docs/en/browser_documentation.html.html">/tests/simpletest/docs/en/browser_documentation.html</a> -> <a href="../tests/simpletest/docs/en/browser_documentation.html.source.html#l117"> line 117</a></li>
<li><a href="../tests/simpletest/docs/en/browser_documentation.html.html">/tests/simpletest/docs/en/browser_documentation.html</a> -> <a href="../tests/simpletest/docs/en/browser_documentation.html.source.html#l412"> line 412</a></li>
<li><a href="../tests/simpletest/docs/en/browser_documentation.html.html">/tests/simpletest/docs/en/browser_documentation.html</a> -> <a href="../tests/simpletest/docs/en/browser_documentation.html.source.html#l441"> line 441</a></li>
<li><a href="../tests/simpletest/docs/en/browser_documentation.html.html">/tests/simpletest/docs/en/browser_documentation.html</a> -> <a href="../tests/simpletest/docs/en/browser_documentation.html.source.html#l448"> line 448</a></li>
<li><a href="../tests/simpletest/docs/en/web_tester_documentation.html.html">/tests/simpletest/docs/en/web_tester_documentation.html</a> -> <a href="../tests/simpletest/docs/en/web_tester_documentation.html.source.html#l346"> line 346</a></li>
<li><a href="../tests/simpletest/docs/en/web_tester_documentation.html.html">/tests/simpletest/docs/en/web_tester_documentation.html</a> -> <a href="../tests/simpletest/docs/en/web_tester_documentation.html.source.html#l348"> line 348</a></li>
<li><a href="../public/themes/admin/js/jquery-1.7.2.js.html">/public/themes/admin/js/jquery-1.7.2.js</a> -> <a href="../public/themes/admin/js/jquery-1.7.2.js.source.html#l3901"> line 3901</a></li>
<li><a href="../bonfire/modules/emailer/assets/js/settings.js.html">/bonfire/modules/emailer/assets/js/settings.js</a> -> <a href="../bonfire/modules/emailer/assets/js/settings.js.source.html#l25"> line 25</a></li>
<li><a href="../bonfire/modules/builder/assets/js/modulebuilder.js.html">/bonfire/modules/builder/assets/js/modulebuilder.js</a> -> <a href="../bonfire/modules/builder/assets/js/modulebuilder.js.source.html#l225"> line 225</a></li>
<li><a href="../bonfire/modules/builder/assets/js/modulebuilder.js.html">/bonfire/modules/builder/assets/js/modulebuilder.js</a> -> <a href="../bonfire/modules/builder/assets/js/modulebuilder.js.source.html#l244"> line 244</a></li>
<li><a href="../bonfire/modules/builder/assets/js/modulebuilder.js.html">/bonfire/modules/builder/assets/js/modulebuilder.js</a> -> <a href="../bonfire/modules/builder/assets/js/modulebuilder.js.source.html#l251"> line 251</a></li>
<li><a href="../bonfire/modules/builder/assets/js/modulebuilder.js.html">/bonfire/modules/builder/assets/js/modulebuilder.js</a> -> <a href="../bonfire/modules/builder/assets/js/modulebuilder.js.source.html#l269"> line 269</a></li>
<li><a href="../bonfire/modules/builder/assets/js/modulebuilder.js.html">/bonfire/modules/builder/assets/js/modulebuilder.js</a> -> <a href="../bonfire/modules/builder/assets/js/modulebuilder.js.source.html#l285"> line 285</a></li>
<li><a href="../bonfire/modules/activities/views/reports/activities_js.php.html">/bonfire/modules/activities/views/reports/activities_js.php</a> -> <a href="../bonfire/modules/activities/views/reports/activities_js.php.source.html#l11"> line 11</a></li>
<li><a href="../bonfire/modules/activities/views/reports/activities_js.php.html">/bonfire/modules/activities/views/reports/activities_js.php</a> -> <a href="../bonfire/modules/activities/views/reports/activities_js.php.source.html#l31"> line 31</a></li>
<li><a href="../tests/simpletest/web_tester.php.html">/tests/simpletest/web_tester.php</a> -> <a href="../tests/simpletest/web_tester.php.source.html#l876"> line 876</a></li>
<li><a href="../public/themes/default/js/bootstrap.min.js.html">/public/themes/default/js/bootstrap.min.js</a> -> <a href="../public/themes/default/js/bootstrap.min.js.source.html#l6"> line 6</a></li>
<li><a href="../public/themes/default/js/bootstrap.min.js.html">/public/themes/default/js/bootstrap.min.js</a> -> <a href="../public/themes/default/js/bootstrap.min.js.source.html#l6"> line 6</a></li>
<li><a href="../public/assets/js/bootstrap.min.js.html">/public/assets/js/bootstrap.min.js</a> -> <a href="../public/assets/js/bootstrap.min.js.source.html#l6"> line 6</a></li>
<li><a href="../public/assets/js/bootstrap.min.js.html">/public/assets/js/bootstrap.min.js</a> -> <a href="../public/assets/js/bootstrap.min.js.source.html#l6"> line 6</a></li>
<li><a href="../public/themes/admin/js/jquery-ui-timepicker-addon.js.html">/public/themes/admin/js/jquery-ui-timepicker-addon.js</a> -> <a href="../public/themes/admin/js/jquery-ui-timepicker-addon.js.source.html#l427"> line 427</a></li>
<li><a href="../public/themes/admin/js/jquery-ui-timepicker-addon.js.html">/public/themes/admin/js/jquery-ui-timepicker-addon.js</a> -> <a href="../public/themes/admin/js/jquery-ui-timepicker-addon.js.source.html#l457"> line 457</a></li>
<li><a href="../public/themes/admin/js/jquery-ui-timepicker-addon.js.html">/public/themes/admin/js/jquery-ui-timepicker-addon.js</a> -> <a href="../public/themes/admin/js/jquery-ui-timepicker-addon.js.source.html#l476"> line 476</a></li>
<li><a href="../public/themes/admin/js/jquery-1.7.2.min.js.html">/public/themes/admin/js/jquery-1.7.2.min.js</a> -> <a href="../public/themes/admin/js/jquery-1.7.2.min.js.source.html#l3"> line 3</a></li>
<li><a href="../public/assets/js/jquery-1.7.2.js.html">/public/assets/js/jquery-1.7.2.js</a> -> <a href="../public/assets/js/jquery-1.7.2.js.source.html#l3901"> line 3901</a></li>
<li><a href="../tests/simpletest/test/acceptance_test.php.html">/tests/simpletest/test/acceptance_test.php</a> -> <a href="../tests/simpletest/test/acceptance_test.php.source.html#l68"> line 68</a></li>
<li><a href="../tests/simpletest/test/acceptance_test.php.html">/tests/simpletest/test/acceptance_test.php</a> -> <a href="../tests/simpletest/test/acceptance_test.php.source.html#l102"> line 102</a></li>
<li><a href="../tests/simpletest/test/acceptance_test.php.html">/tests/simpletest/test/acceptance_test.php</a> -> <a href="../tests/simpletest/test/acceptance_test.php.source.html#l329"> line 329</a></li>
<li><a href="../tests/simpletest/test/acceptance_test.php.html">/tests/simpletest/test/acceptance_test.php</a> -> <a href="../tests/simpletest/test/acceptance_test.php.source.html#l889"> line 889</a></li>
<li><a href="../tests/simpletest/test/acceptance_test.php.html">/tests/simpletest/test/acceptance_test.php</a> -> <a href="../tests/simpletest/test/acceptance_test.php.source.html#l904"> line 904</a></li>
<li><a href="../tests/simpletest/test/acceptance_test.php.html">/tests/simpletest/test/acceptance_test.php</a> -> <a href="../tests/simpletest/test/acceptance_test.php.source.html#l1012"> line 1012</a></li>
<li><a href="../tests/simpletest/test/acceptance_test.php.html">/tests/simpletest/test/acceptance_test.php</a> -> <a href="../tests/simpletest/test/acceptance_test.php.source.html#l1022"> line 1022</a></li>
<li><a href="../tests/simpletest/test/acceptance_test.php.html">/tests/simpletest/test/acceptance_test.php</a> -> <a href="../tests/simpletest/test/acceptance_test.php.source.html#l1029"> line 1029</a></li>
<li><a href="../tests/simpletest/test/acceptance_test.php.html">/tests/simpletest/test/acceptance_test.php</a> -> <a href="../tests/simpletest/test/acceptance_test.php.source.html#l1043"> line 1043</a></li>
<li><a href="../tests/simpletest/test/acceptance_test.php.html">/tests/simpletest/test/acceptance_test.php</a> -> <a href="../tests/simpletest/test/acceptance_test.php.source.html#l1057"> line 1057</a></li>
<li><a href="../tests/simpletest/test/acceptance_test.php.html">/tests/simpletest/test/acceptance_test.php</a> -> <a href="../tests/simpletest/test/acceptance_test.php.source.html#l1074"> line 1074</a></li>
<li><a href="../tests/simpletest/test/acceptance_test.php.html">/tests/simpletest/test/acceptance_test.php</a> -> <a href="../tests/simpletest/test/acceptance_test.php.source.html#l1191"> line 1191</a></li>
<li><a href="../tests/simpletest/test/acceptance_test.php.html">/tests/simpletest/test/acceptance_test.php</a> -> <a href="../tests/simpletest/test/acceptance_test.php.source.html#l1203"> line 1203</a></li>
<li><a href="../tests/simpletest/test/acceptance_test.php.html">/tests/simpletest/test/acceptance_test.php</a> -> <a href="../tests/simpletest/test/acceptance_test.php.source.html#l1212"> line 1212</a></li>
<li><a href="../tests/simpletest/test/acceptance_test.php.html">/tests/simpletest/test/acceptance_test.php</a> -> <a href="../tests/simpletest/test/acceptance_test.php.source.html#l1593"> line 1593</a></li>
<li><a href="../tests/simpletest/test/acceptance_test.php.html">/tests/simpletest/test/acceptance_test.php</a> -> <a href="../tests/simpletest/test/acceptance_test.php.source.html#l1601"> line 1601</a></li>
<li><a href="../public/themes/admin/js/mobile.js.html">/public/themes/admin/js/mobile.js</a> -> <a href="../public/themes/admin/js/mobile.js.source.html#l4"> line 4</a></li>
<li><a href="../tests/simpletest/docs/en/authentication_documentation.html.html">/tests/simpletest/docs/en/authentication_documentation.html</a> -> <a href="../tests/simpletest/docs/en/authentication_documentation.html.source.html#l250"> line 250</a></li>
<li><a href="../tests/simpletest/docs/en/authentication_documentation.html.html">/tests/simpletest/docs/en/authentication_documentation.html</a> -> <a href="../tests/simpletest/docs/en/authentication_documentation.html.source.html#l289"> line 289</a></li>
<li><a href="../tests/simpletest/docs/en/authentication_documentation.html.html">/tests/simpletest/docs/en/authentication_documentation.html</a> -> <a href="../tests/simpletest/docs/en/authentication_documentation.html.source.html#l320"> line 320</a></li>
<li><a href="../tests/simpletest/docs/fr/index.html.html">/tests/simpletest/docs/fr/index.html</a> -> <a href="../tests/simpletest/docs/fr/index.html.source.html#l495"> line 495</a></li>
<li><a href="../tests/simpletest/docs/fr/index.html.html">/tests/simpletest/docs/fr/index.html</a> -> <a href="../tests/simpletest/docs/fr/index.html.source.html#l518"> line 518</a></li>
<li><a href="../public/assets/js/jquery-1.7.2.min.js.html">/public/assets/js/jquery-1.7.2.min.js</a> -> <a href="../public/assets/js/jquery-1.7.2.min.js.source.html#l3"> line 3</a></li>
<li><a href="../bonfire/docs/working_with_assets.md.html">/bonfire/docs/working_with_assets.md</a> -> <a href="../bonfire/docs/working_with_assets.md.source.html#l166"> line 166</a></li>
<li><a href="../public/themes/admin/js/bootstrap.min.js.html">/public/themes/admin/js/bootstrap.min.js</a> -> <a href="../public/themes/admin/js/bootstrap.min.js.source.html#l6"> line 6</a></li>
<li><a href="../public/themes/admin/js/bootstrap.min.js.html">/public/themes/admin/js/bootstrap.min.js</a> -> <a href="../public/themes/admin/js/bootstrap.min.js.source.html#l6"> line 6</a></li>
<li><a href="../public/themes/admin/js/bootstrap.js.html">/public/themes/admin/js/bootstrap.js</a> -> <a href="../public/themes/admin/js/bootstrap.js.source.html#l723"> line 723</a></li>
<li><a href="../public/themes/admin/js/bootstrap.js.html">/public/themes/admin/js/bootstrap.js</a> -> <a href="../public/themes/admin/js/bootstrap.js.source.html#l967"> line 967</a></li>
<li><a href="../public/themes/admin/js/global.js.html">/public/themes/admin/js/global.js</a> -> <a href="../public/themes/admin/js/global.js.source.html#l2"> line 2</a></li>
<li><a href="../public/themes/admin/js/global.js.html">/public/themes/admin/js/global.js</a> -> <a href="../public/themes/admin/js/global.js.source.html#l11"> line 11</a></li>
<li><a href="../tests/simpletest/HELP_MY_TESTS_DONT_WORK_ANYMORE.html">/tests/simpletest/HELP_MY_TESTS_DONT_WORK_ANYMORE</a> -> <a href="../tests/simpletest/HELP_MY_TESTS_DONT_WORK_ANYMORE.source.html#l103"> line 103</a></li>
<li><a href="../tests/simpletest/docs/en/form_testing_documentation.html.html">/tests/simpletest/docs/en/form_testing_documentation.html</a> -> <a href="../tests/simpletest/docs/en/form_testing_documentation.html.source.html#l112"> line 112</a></li>
<li><a href="../tests/simpletest/docs/en/form_testing_documentation.html.html">/tests/simpletest/docs/en/form_testing_documentation.html</a> -> <a href="../tests/simpletest/docs/en/form_testing_documentation.html.source.html#l240"> line 240</a></li>
<li><a href="../tests/simpletest/docs/en/index.html.html">/tests/simpletest/docs/en/index.html</a> -> <a href="../tests/simpletest/docs/en/index.html.source.html#l461"> line 461</a></li>
<li><a href="../tests/simpletest/docs/en/index.html.html">/tests/simpletest/docs/en/index.html</a> -> <a href="../tests/simpletest/docs/en/index.html.source.html#l483"> line 483</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>
|
_posts/2010-01-17-toothache.html | dbaeyes/dbaeyes.github.io | ---
layout: post
title: 牙疼
date: 2010-01-17 15:33:09.000000000 +10:30
type: post
published: true
status: publish
categories:
- My Life
tags: [life,health]
meta:
posturl_add_url: 'yes'
_edit_last: '1'
views: '567'
---
<p>牙齿从小就不太好,前几天突然发作,牙疼的厉害,坚持了两天。 到星期五的晚上基本上非常难受了,晚上几次被牙疼给闹醒,星期六早上6点20就只能起床去医院。 因为市一医院去过几次,有点熟悉,就去那边看了,结果证明这是个错误。 因为疼的牙齿比较特殊,是小时候就蛀牙了,后来装个了牙套,不过牙根是未处理的。一般牙科的修复科才能拆装牙套,所以医生的处理方式是 开髓引流(好像是这么说的),把牙内的压力减小,减轻疼痛,周一医院把牙套拆了再做处理。也只能这样了</p>
<div>结果了疼过的开髓处理后,郁闷的是在回家的车上,牙齿又开始疼了,难道今天晚上就要无眠了。 牙疼不是病,疼起来真的。。。。<br />
要处理这个坏牙只能开把那个牙套给拆了,直接去周末有开牙科修复科的医院就好了,市牙科医院不错,去过一次,不过好像医保不能用,省牙科医院应该是可以用的,而且听这个名头就比较大。 事实证明这个做法是绝对正确的,虽然排队等待的时间比较长,说明来这里就医的人多,虽然处理牙齿的过程比较长,说明这里的医生负责,办事认真。 我这颗破牙还真是够厉害的,牙医在处理牙根的时候,打洞整整弄了1个小时(牙好像蛀的太厉害了),医生说 弄的腰酸背痛,医生你辛苦了! 而且根据医生的说法,上午我被处理的牙齿说开髓了,不过事实上上午的医生并没有把洞达到牙髓,难怪上午处理了之后,牙还这么疼,钱还照付了,郁闷。 而且感觉上午看呀还比这边要贵。。。</p>
<p>没有牙疼,晚上睡的就比较香。。 不过看牙齿一般要去好几趟医院,我的假期 -_-<br />
得到一个结论,看病尽量去专业医院,综合性大医院虽然啥都有,但是往往也是在某几些专业比较强大,很多专业也只是满足普通需求的。 不过去专业性医院的话,也要做好准备,排队时间比较长</p></div>
|
content-sharing/sharing/receive.html | xiaoyanit/android-training-course-in-chinese | <!DOCTYPE HTML>
<html lang="en-US" manifest="../../manifest.appcache">
<head>
<meta charset="UTF-8">
<title>接收从其他App返回的数据 | Android Training Course in Chinese</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta name="description" content="">
<meta name="generator" content="GitBook 0.5.2">
<meta name="HandheldFriendly" content="true"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="shortcut icon" href="../../gitbook/images/favicon.ico" type="image/x-icon">
<meta name="author" content="kesenhoo">
<link rel="next" href="../../content-sharing/sharing/shareaction.html" />
<link rel="prev" href="../../content-sharing/sharing/send.html" />
</head>
<body>
<link rel="stylesheet" href="../../gitbook/style.css">
<div class="book" data-github="kesenhoo/android-training-course-in-chinese" data-level="3.1.2" data-basepath="../.." data-revision="1404994677846">
<div class="book-header">
<!-- Actions Left -->
<a href="#" class="btn pull-left toggle-summary" aria-label="Toggle summary"><i class="fa fa-align-justify"></i></a>
<a href="https://github.com/kesenhoo/android-training-course-in-chinese" target="_blank" class="btn pull-left home-bookmark" aria-label="GitHub home"><i class="fa fa-bookmark-o"></i></a>
<a href="#" class="btn pull-left toggle-search" aria-label="Toggle search"><i class="fa fa-search"></i></a>
<span id="font-settings-wrapper">
<a href="#" class="btn pull-left toggle-font-settings" aria-label="Toggle font settings"><i class="fa fa-font"></i>
</a>
<div class="dropdown-menu font-settings">
<div class="dropdown-caret">
<span class="caret-outer"></span>
<span class="caret-inner"></span>
</div>
<div class="btn-group btn-block">
<button id="reduce-font-size" class="btn btn-default">A</button>
<button id="enlarge-font-size" class="btn btn-default">A</button>
</div>
<ul class="list-group font-family-list">
<li class="list-group-item" data-font="0">Serif</li>
<li class="list-group-item" data-font="1">Sans</li>
</ul>
<div class="btn-group btn-group-xs btn-block color-theme-list">
<button type="button" class="btn btn-default" id="color-theme-preview-0" data-theme="0">White</button>
<button type="button" class="btn btn-default" id="color-theme-preview-1" data-theme="1">Sepia</button>
<button type="button" class="btn btn-default" id="color-theme-preview-2" data-theme="2">Night</button>
</div>
</div>
</span>
<!-- Actions Right -->
<a href="#" target="_blank" class="btn pull-right google-plus-sharing-link sharing-link" data-sharing="google-plus" aria-label="Share on Google Plus"><i class="fa fa-google-plus"></i></a>
<a href="#" target="_blank" class="btn pull-right facebook-sharing-link sharing-link" data-sharing="facebook" aria-label="Share on Facebook"><i class="fa fa-facebook"></i></a>
<a href="#" target="_blank" class="btn pull-right twitter-sharing-link sharing-link" data-sharing="twitter" aria-label="Share on Twitter"><i class="fa fa-twitter"></i></a>
<a href="https://github.com/kesenhoo/android-training-course-in-chinese/stargazers" target="_blank" class="btn pull-right count-star hidden-xs"><i class="fa fa-star-o"></i> Star (<span>-</span>)</a>
<a href="https://github.com/kesenhoo/android-training-course-in-chinese/watchers" target="_blank" class="btn pull-right count-watch hidden-xs"><i class="fa fa-eye"></i> Watch (<span>-</span>)</a>
<!-- Title -->
<h1>
<i class="fa fa-spinner fa-spin"></i>
<a href="../../" >Android Training Course in Chinese</a>
</h1>
</div>
<div class="book-summary">
<div class="book-search">
<input type="text" placeholder="Search" class="form-control" />
</div>
<ul class="summary">
<li>
<a href="https://github.com/kesenhoo" target="blank" class="author-link">About the author</a>
</li>
<li>
<a href="https://github.com/kesenhoo/android-training-course-in-chinese/issues" target="blank"class="issues-link">Questions and Issues</a>
</li>
<li>
<a href="https://github.com/kesenhoo/android-training-course-in-chinese/edit/master/content-sharing/sharing/receive.md" target="blank" class="contribute-link">Edit and Contribute</a>
</li>
<li class="divider"></li>
<li data-level="0" data-path="index.html">
<a href="../../"><i class="fa fa-check"></i> Introduction</a>
</li>
<li class="chapter " data-level="1" data-path="index.html">
<a href="../../index.html">
<i class="fa fa-check"></i> <b>1.</b> 序言
</a>
</li>
<li class="chapter " data-level="2" data-path="basics/index.html">
<a href="../../basics/index.html">
<i class="fa fa-check"></i> <b>2.</b> 从这里开始
</a>
<ul class="articles">
<li class="chapter " data-level="2.1" data-path="basics/firstapp/index.html">
<a href="../../basics/firstapp/index.html">
<i class="fa fa-check"></i> <b>2.1.</b> 建立你的第一个App
</a>
<ul class="articles">
<li class="chapter " data-level="2.1.1" data-path="basics/firstapp/creating-project.html">
<a href="../../basics/firstapp/creating-project.html">
<i class="fa fa-check"></i> <b>2.1.1.</b> 创建一个Android项目
</a>
</li>
<li class="chapter " data-level="2.1.2" data-path="basics/firstapp/running-app.html">
<a href="../../basics/firstapp/running-app.html">
<i class="fa fa-check"></i> <b>2.1.2.</b> 执行你的程序
</a>
</li>
<li class="chapter " data-level="2.1.3" data-path="basics/firstapp/building-ui.html">
<a href="../../basics/firstapp/building-ui.html">
<i class="fa fa-check"></i> <b>2.1.3.</b> 建立一个简单的用户界面
</a>
</li>
<li class="chapter " data-level="2.1.4" data-path="basics/firstapp/starting-activity.html">
<a href="../../basics/firstapp/starting-activity.html">
<i class="fa fa-check"></i> <b>2.1.4.</b> 启动另外的Activity
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="2.2" data-path="basics/actionbar/index.html">
<a href="../../basics/actionbar/index.html">
<i class="fa fa-check"></i> <b>2.2.</b> 添加ActionBar
</a>
<ul class="articles">
<li class="chapter " data-level="2.2.1" data-path="basics/actionbar/setting-up.html">
<a href="../../basics/actionbar/setting-up.html">
<i class="fa fa-check"></i> <b>2.2.1.</b> 建立ActionBar
</a>
</li>
<li class="chapter " data-level="2.2.2" data-path="basics/actionbar/adding-buttons.html">
<a href="../../basics/actionbar/adding-buttons.html">
<i class="fa fa-check"></i> <b>2.2.2.</b> 添加Action按钮
</a>
</li>
<li class="chapter " data-level="2.2.3" data-path="basics/actionbar/styling.html">
<a href="../../basics/actionbar/styling.html">
<i class="fa fa-check"></i> <b>2.2.3.</b> ActionBar的风格化
</a>
</li>
<li class="chapter " data-level="2.2.4" data-path="basics/actionbar/overlaying.html">
<a href="../../basics/actionbar/overlaying.html">
<i class="fa fa-check"></i> <b>2.2.4.</b> ActionBar的覆盖层叠
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="2.3" data-path="basics/supporting-devices/index.html">
<a href="../../basics/supporting-devices/index.html">
<i class="fa fa-check"></i> <b>2.3.</b> 兼容不同的设备
</a>
<ul class="articles">
<li class="chapter " data-level="2.3.1" data-path="basics/supporting-devices/languages.html">
<a href="../../basics/supporting-devices/languages.html">
<i class="fa fa-check"></i> <b>2.3.1.</b> 适配不同的语言
</a>
</li>
<li class="chapter " data-level="2.3.2" data-path="basics/supporting-devices/screens.html">
<a href="../../basics/supporting-devices/screens.html">
<i class="fa fa-check"></i> <b>2.3.2.</b> 适配不同的屏幕
</a>
</li>
<li class="chapter " data-level="2.3.3" data-path="basics/supporting-devices/platforms.html">
<a href="../../basics/supporting-devices/platforms.html">
<i class="fa fa-check"></i> <b>2.3.3.</b> 适配不同的系统版本
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="2.4" data-path="basics/activity-lifecycle/index.html">
<a href="../../basics/activity-lifecycle/index.html">
<i class="fa fa-check"></i> <b>2.4.</b> 管理Activity的生命周期
</a>
<ul class="articles">
<li class="chapter " data-level="2.4.1" data-path="basics/activity-lifecycle/starting.html">
<a href="../../basics/activity-lifecycle/starting.html">
<i class="fa fa-check"></i> <b>2.4.1.</b> 启动与销毁Activity
</a>
</li>
<li class="chapter " data-level="2.4.2" data-path="basics/activity-lifecycle/pausing.html">
<a href="../../basics/activity-lifecycle/pausing.html">
<i class="fa fa-check"></i> <b>2.4.2.</b> 暂停与恢复Activity
</a>
</li>
<li class="chapter " data-level="2.4.3" data-path="basics/activity-lifecycle/stopping.html">
<a href="../../basics/activity-lifecycle/stopping.html">
<i class="fa fa-check"></i> <b>2.4.3.</b> 停止与重启Activity
</a>
</li>
<li class="chapter " data-level="2.4.4" data-path="basics/activity-lifecycle/recreating.html">
<a href="../../basics/activity-lifecycle/recreating.html">
<i class="fa fa-check"></i> <b>2.4.4.</b> 重新创建Activity
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="2.5" data-path="basics/fragments/index.html">
<a href="../../basics/fragments/index.html">
<i class="fa fa-check"></i> <b>2.5.</b> 使用Fragment建立动态的UI
</a>
<ul class="articles">
<li class="chapter " data-level="2.5.1" data-path="basics/fragments/creating.html">
<a href="../../basics/fragments/creating.html">
<i class="fa fa-check"></i> <b>2.5.1.</b> 创建一个Fragment
</a>
</li>
<li class="chapter " data-level="2.5.2" data-path="basics/fragments/fragment-ui.html">
<a href="../../basics/fragments/fragment-ui.html">
<i class="fa fa-check"></i> <b>2.5.2.</b> 建立灵活动态的UI
</a>
</li>
<li class="chapter " data-level="2.5.3" data-path="basics/fragments/communicating.html">
<a href="../../basics/fragments/communicating.html">
<i class="fa fa-check"></i> <b>2.5.3.</b> Fragments之间的交互
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="2.6" data-path="basics/data-storage/index.html">
<a href="../../basics/data-storage/index.html">
<i class="fa fa-check"></i> <b>2.6.</b> 数据保存
</a>
<ul class="articles">
<li class="chapter " data-level="2.6.1" data-path="basics/data-storage/shared-preference.html">
<a href="../../basics/data-storage/shared-preference.html">
<i class="fa fa-check"></i> <b>2.6.1.</b> 保存到Preference
</a>
</li>
<li class="chapter " data-level="2.6.2" data-path="basics/data-storage/files.html">
<a href="../../basics/data-storage/files.html">
<i class="fa fa-check"></i> <b>2.6.2.</b> 保存到文件
</a>
</li>
<li class="chapter " data-level="2.6.3" data-path="basics/data-storage/database.html">
<a href="../../basics/data-storage/database.html">
<i class="fa fa-check"></i> <b>2.6.3.</b> 保存到数据库
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="2.7" data-path="basics/intents/index.html">
<a href="../../basics/intents/index.html">
<i class="fa fa-check"></i> <b>2.7.</b> 与其他应用的交互
</a>
<ul class="articles">
<li class="chapter " data-level="2.7.1" data-path="basics/intents/sending.html">
<a href="../../basics/intents/sending.html">
<i class="fa fa-check"></i> <b>2.7.1.</b> Intent的发送
</a>
</li>
<li class="chapter " data-level="2.7.2" data-path="basics/intents/result.html">
<a href="../../basics/intents/result.html">
<i class="fa fa-check"></i> <b>2.7.2.</b> 接收Activity返回的结果
</a>
</li>
<li class="chapter " data-level="2.7.3" data-path="basics/intents/filters.html">
<a href="../../basics/intents/filters.html">
<i class="fa fa-check"></i> <b>2.7.3.</b> Intent过滤
</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="chapter " data-level="3" data-path="content-sharing/index.html">
<a href="../../content-sharing/index.html">
<i class="fa fa-check"></i> <b>3.</b> 分享
</a>
<ul class="articles">
<li class="chapter " data-level="3.1" data-path="content-sharing/sharing/index.html">
<a href="../../content-sharing/sharing/index.html">
<i class="fa fa-check"></i> <b>3.1.</b> 分享简单的数据
</a>
<ul class="articles">
<li class="chapter " data-level="3.1.1" data-path="content-sharing/sharing/send.html">
<a href="../../content-sharing/sharing/send.html">
<i class="fa fa-check"></i> <b>3.1.1.</b> 给其他App发送简单的数据
</a>
</li>
<li class="chapter " data-level="3.1.2" data-path="content-sharing/sharing/receive.html">
<a href="../../content-sharing/sharing/receive.html">
<i class="fa fa-check"></i> <b>3.1.2.</b> 接收从其他App返回的数据
</a>
</li>
<li class="chapter " data-level="3.1.3" data-path="content-sharing/sharing/shareaction.html">
<a href="../../content-sharing/sharing/shareaction.html">
<i class="fa fa-check"></i> <b>3.1.3.</b> 添加一个简便的分享动作
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="3.2" data-path="content-sharing/secure-file-sharing/index.html">
<a href="../../content-sharing/secure-file-sharing/index.html">
<i class="fa fa-check"></i> <b>3.2.</b> 分享文件
</a>
<ul class="articles">
<li class="chapter " data-level="3.2.1" data-path="content-sharing/secure-file-sharing/setup-sharing.html">
<a href="../../content-sharing/secure-file-sharing/setup-sharing.html">
<i class="fa fa-check"></i> <b>3.2.1.</b> 建立文件分享
</a>
</li>
<li class="chapter " data-level="3.2.2" data-path="content-sharing/secure-file-sharing/sharing-file.html">
<a href="../../content-sharing/secure-file-sharing/sharing-file.html">
<i class="fa fa-check"></i> <b>3.2.2.</b> 分享文件
</a>
</li>
<li class="chapter " data-level="3.2.3" data-path="content-sharing/secure-file-sharing/request-file.html">
<a href="../../content-sharing/secure-file-sharing/request-file.html">
<i class="fa fa-check"></i> <b>3.2.3.</b> 请求分享一个文件
</a>
</li>
<li class="chapter " data-level="3.2.4" data-path="content-sharing/secure-file-sharing/retrieve-info.html">
<a href="../../content-sharing/secure-file-sharing/retrieve-info.html">
<i class="fa fa-check"></i> <b>3.2.4.</b> 获取文件信息
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="3.3" data-path="content-sharing/beam-files/index.html">
<a href="../../content-sharing/beam-files/index.html">
<i class="fa fa-check"></i> <b>3.3.</b> 使用NFC分享文件
</a>
<ul class="articles">
<li class="chapter " data-level="3.3.1" data-path="content-sharing/beam-files/sending-files.html">
<a href="../../content-sharing/beam-files/sending-files.html">
<i class="fa fa-check"></i> <b>3.3.1.</b> 发送文件给其他设备
</a>
</li>
<li class="chapter " data-level="3.3.2" data-path="content-sharing/beam-files/receive-files.html">
<a href="../../content-sharing/beam-files/receive-files.html">
<i class="fa fa-check"></i> <b>3.3.2.</b> 接收其他设备的文件
</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="chapter " data-level="4" data-path="multimedia/index.html">
<a href="../../multimedia/index.html">
<i class="fa fa-check"></i> <b>4.</b> 多媒体
</a>
<ul class="articles">
<li class="chapter " data-level="4.1" data-path="multimedia/audio/index.html">
<a href="../../multimedia/audio/index.html">
<i class="fa fa-check"></i> <b>4.1.</b> 管理音频播放
</a>
<ul class="articles">
<li class="chapter " data-level="4.1.1" data-path="multimedia/audio/volume-playback.html">
<a href="../../multimedia/audio/volume-playback.html">
<i class="fa fa-check"></i> <b>4.1.1.</b> 控制你得应用的音量与播放
</a>
</li>
<li class="chapter " data-level="4.1.2" data-path="multimedia/audio/audio-focus.html">
<a href="../../multimedia/audio/audio-focus.html">
<i class="fa fa-check"></i> <b>4.1.2.</b> 管理音频焦点
</a>
</li>
<li class="chapter " data-level="4.1.3" data-path="multimedia/audio/audio-output.html">
<a href="../../multimedia/audio/audio-output.html">
<i class="fa fa-check"></i> <b>4.1.3.</b> 兼容音频输出设备
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="4.2" data-path="multimedia/camera/index.html">
<a href="../../multimedia/camera/index.html">
<i class="fa fa-check"></i> <b>4.2.</b> 拍照
</a>
<ul class="articles">
<li class="chapter " data-level="4.2.1" data-path="multimedia/camera/photobasic.html">
<a href="../../multimedia/camera/photobasic.html">
<i class="fa fa-check"></i> <b>4.2.1.</b> 简单的拍照
</a>
</li>
<li class="chapter " data-level="4.2.2" data-path="multimedia/camera/videobasic.html">
<a href="../../multimedia/camera/videobasic.html">
<i class="fa fa-check"></i> <b>4.2.2.</b> 简单的录像
</a>
</li>
<li class="chapter " data-level="4.2.3" data-path="multimedia/camera/cameradirect.html">
<a href="../../multimedia/camera/cameradirect.html">
<i class="fa fa-check"></i> <b>4.2.3.</b> 控制相机硬件
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="4.3" data-path="multimedia/printing/index.html">
<a href="../../multimedia/printing/index.html">
<i class="fa fa-check"></i> <b>4.3.</b> 打印
</a>
<ul class="articles">
<li class="chapter " data-level="4.3.1" data-path="multimedia/printing/photos.html">
<a href="../../multimedia/printing/photos.html">
<i class="fa fa-check"></i> <b>4.3.1.</b> 打印照片
</a>
</li>
<li class="chapter " data-level="4.3.2" data-path="multimedia/printing/html-docs.html">
<a href="../../multimedia/printing/html-docs.html">
<i class="fa fa-check"></i> <b>4.3.2.</b> 打印HTML文档
</a>
</li>
<li class="chapter " data-level="4.3.3" data-path="multimedia/printing/custom-docs.html">
<a href="../../multimedia/printing/custom-docs.html">
<i class="fa fa-check"></i> <b>4.3.3.</b> 打印自定义文档
</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="chapter " data-level="5" data-path="graphics/index.html">
<a href="../../graphics/index.html">
<i class="fa fa-check"></i> <b>5.</b> 图像
</a>
<ul class="articles">
<li class="chapter " data-level="5.1" data-path="graphics/displaying-bitmaps/index.html">
<a href="../../graphics/displaying-bitmaps/index.html">
<i class="fa fa-check"></i> <b>5.1.</b> 高效显示Bitmap
</a>
<ul class="articles">
<li class="chapter " data-level="5.1.1" data-path="graphics/displaying-bitmaps/load-bitmap.html">
<a href="../../graphics/displaying-bitmaps/load-bitmap.html">
<i class="fa fa-check"></i> <b>5.1.1.</b> 高效加载大图
</a>
</li>
<li class="chapter " data-level="5.1.2" data-path="graphics/displaying-bitmaps/process-bitmap.html">
<a href="../../graphics/displaying-bitmaps/process-bitmap.html">
<i class="fa fa-check"></i> <b>5.1.2.</b> 非UI线程处理Bitmap
</a>
</li>
<li class="chapter " data-level="5.1.3" data-path="graphics/displaying-bitmaps/cache-bitmap.html">
<a href="../../graphics/displaying-bitmaps/cache-bitmap.html">
<i class="fa fa-check"></i> <b>5.1.3.</b> 缓存Bitmap
</a>
</li>
<li class="chapter " data-level="5.1.4" data-path="graphics/displaying-bitmaps/manage-bitmap-memory.html">
<a href="../../graphics/displaying-bitmaps/manage-bitmap-memory.html">
<i class="fa fa-check"></i> <b>5.1.4.</b> 管理Bitmap的内存占用
</a>
</li>
<li class="chapter " data-level="5.1.5" data-path="graphics/displaying-bitmaps/display-bitmap.html">
<a href="../../graphics/displaying-bitmaps/display-bitmap.html">
<i class="fa fa-check"></i> <b>5.1.5.</b> 在UI上显示Bitmap
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="5.2" data-path="graphics/opengl/index.html">
<a href="../../graphics/opengl/index.html">
<i class="fa fa-check"></i> <b>5.2.</b> 使用OpenGL ES显示图像
</a>
<ul class="articles">
<li class="chapter " data-level="5.2.1" data-path="graphics/opengl/environment.html">
<a href="../../graphics/opengl/environment.html">
<i class="fa fa-check"></i> <b>5.2.1.</b> 建立OpenGL ES的环境
</a>
</li>
<li class="chapter " data-level="5.2.2" data-path="graphics/opengl/shapes.html">
<a href="../../graphics/opengl/shapes.html">
<i class="fa fa-check"></i> <b>5.2.2.</b> 定义Shapes
</a>
</li>
<li class="chapter " data-level="5.2.3" data-path="graphics/opengl/draw.html">
<a href="../../graphics/opengl/draw.html">
<i class="fa fa-check"></i> <b>5.2.3.</b> 绘制Shapes
</a>
</li>
<li class="chapter " data-level="5.2.4" data-path="graphics/opengl/projection.html">
<a href="../../graphics/opengl/projection.html">
<i class="fa fa-check"></i> <b>5.2.4.</b> 运用投影与相机视图
</a>
</li>
<li class="chapter " data-level="5.2.5" data-path="graphics/opengl/motion.html">
<a href="../../graphics/opengl/motion.html">
<i class="fa fa-check"></i> <b>5.2.5.</b> 添加移动
</a>
</li>
<li class="chapter " data-level="5.2.6" data-path="graphics/opengl/touch.html">
<a href="../../graphics/opengl/touch.html">
<i class="fa fa-check"></i> <b>5.2.6.</b> 响应触摸事件
</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="chapter " data-level="6" data-path="animations/index.html">
<a href="../../animations/index.html">
<i class="fa fa-check"></i> <b>6.</b> 动画
</a>
<ul class="articles">
<li class="chapter " data-level="6.1" data-path="animations/crossfade.html">
<a href="../../animations/crossfade.html">
<i class="fa fa-check"></i> <b>6.1.</b> 淡入淡出两个View
</a>
</li>
<li class="chapter " data-level="6.2" data-path="animations/screen-slide.html">
<a href="../../animations/screen-slide.html">
<i class="fa fa-check"></i> <b>6.2.</b> 使用ViewPager实现屏幕滑动
</a>
</li>
<li class="chapter " data-level="6.3" data-path="animations/cardflip.html">
<a href="../../animations/cardflip.html">
<i class="fa fa-check"></i> <b>6.3.</b> 卡片翻转的动画
</a>
</li>
<li class="chapter " data-level="6.4" data-path="animations/zoom.html">
<a href="../../animations/zoom.html">
<i class="fa fa-check"></i> <b>6.4.</b> 缩放动画
</a>
</li>
<li class="chapter " data-level="6.5" data-path="animations/layout.html">
<a href="../../animations/layout.html">
<i class="fa fa-check"></i> <b>6.5.</b> 控件切换动画
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="7" data-path="connectivity/index.html">
<a href="../../connectivity/index.html">
<i class="fa fa-check"></i> <b>7.</b> 连接
</a>
<ul class="articles">
<li class="chapter " data-level="7.1" data-path="connectivity/connect-devices-wireless/index.html">
<a href="../../connectivity/connect-devices-wireless/index.html">
<i class="fa fa-check"></i> <b>7.1.</b> 无线连接设备
</a>
<ul class="articles">
<li class="chapter " data-level="7.1.1" data-path="connectivity/connect-devices-wireless/nsd.html">
<a href="../../connectivity/connect-devices-wireless/nsd.html">
<i class="fa fa-check"></i> <b>7.1.1.</b> 使得网络服务可发现
</a>
</li>
<li class="chapter " data-level="7.1.2" data-path="connectivity/connect-devices-wireless/wifi-direct.html">
<a href="../../connectivity/connect-devices-wireless/wifi-direct.html">
<i class="fa fa-check"></i> <b>7.1.2.</b> 使用WiFi建立P2P连接
</a>
</li>
<li class="chapter " data-level="7.1.3" data-path="connectivity/connect-devices-wireless/nsd-wifi-index.html">
<a href="../../connectivity/connect-devices-wireless/nsd-wifi-index.html">
<i class="fa fa-check"></i> <b>7.1.3.</b> 使用WiFi P2P服务
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="7.2" data-path="connectivity/network-ops/index.html">
<a href="../../connectivity/network-ops/index.html">
<i class="fa fa-check"></i> <b>7.2.</b> 网络连接操作
</a>
<ul class="articles">
<li class="chapter " data-level="7.2.1" data-path="connectivity/network-ops/connecting.html">
<a href="../../connectivity/network-ops/connecting.html">
<i class="fa fa-check"></i> <b>7.2.1.</b> 连接到网络
</a>
</li>
<li class="chapter " data-level="7.2.2" data-path="connectivity/network-ops/managing.html">
<a href="../../connectivity/network-ops/managing.html">
<i class="fa fa-check"></i> <b>7.2.2.</b> 管理使用的网络
</a>
</li>
<li class="chapter " data-level="7.2.3" data-path="connectivity/network-ops/xml.html">
<a href="../../connectivity/network-ops/xml.html">
<i class="fa fa-check"></i> <b>7.2.3.</b> 解析XML数据
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="7.3" data-path="connectivity/efficient-downloads/index.html">
<a href="../../connectivity/efficient-downloads/index.html">
<i class="fa fa-check"></i> <b>7.3.</b> 高效下载
</a>
<ul class="articles">
<li class="chapter " data-level="7.3.1" data-path="connectivity/efficient-downloads/efficient-network-access.html">
<a href="../../connectivity/efficient-downloads/efficient-network-access.html">
<i class="fa fa-check"></i> <b>7.3.1.</b> 为网络访问更加高效而优化下载
</a>
</li>
<li class="chapter " data-level="7.3.2" data-path="connectivity/efficient-downloads/regular-update.html">
<a href="../../connectivity/efficient-downloads/regular-update.html">
<i class="fa fa-check"></i> <b>7.3.2.</b> 最小化更新操作的影响
</a>
</li>
<li class="chapter " data-level="7.3.3" data-path="connectivity/efficient-downloads/redundant-redundant.html">
<a href="../../connectivity/efficient-downloads/redundant-redundant.html">
<i class="fa fa-check"></i> <b>7.3.3.</b> 避免下载多余的数据
</a>
</li>
<li class="chapter " data-level="7.3.4" data-path="connectivity/efficient-downloads/connectivity-patterns.html">
<a href="../../connectivity/efficient-downloads/connectivity-patterns.html">
<i class="fa fa-check"></i> <b>7.3.4.</b> 根据网络类型改变下载模式
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="7.4" data-path="connectivity/sync-adapters/index.html">
<a href="../../connectivity/sync-adapters/index.html">
<i class="fa fa-check"></i> <b>7.4.</b> 使用Sync Adapter传输数据
</a>
<ul class="articles">
<li class="chapter " data-level="7.4.1" data-path="connectivity/sync-adapters/create-authenticator.html">
<a href="../../connectivity/sync-adapters/create-authenticator.html">
<i class="fa fa-check"></i> <b>7.4.1.</b> 创建Stub授权器
</a>
</li>
<li class="chapter " data-level="7.4.2" data-path="connectivity/sync-adapters/create-stub-provider.html">
<a href="../../connectivity/sync-adapters/create-stub-provider.html">
<i class="fa fa-check"></i> <b>7.4.2.</b> 创建Stub Content Provider
</a>
</li>
<li class="chapter " data-level="7.4.3" data-path="connectivity/sync-adapters/create-sync-adapter.html">
<a href="../../connectivity/sync-adapters/create-sync-adapter.html">
<i class="fa fa-check"></i> <b>7.4.3.</b> 创建Sync Adpater
</a>
</li>
<li class="chapter " data-level="7.4.4" data-path="connectivity/sync-adapters/running-sync-adapter.html">
<a href="../../connectivity/sync-adapters/running-sync-adapter.html">
<i class="fa fa-check"></i> <b>7.4.4.</b> 执行Sync Adpater
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="7.5" data-path="connectivity/volley/index.html">
<a href="../../connectivity/volley/index.html">
<i class="fa fa-check"></i> <b>7.5.</b> 使用Volley执行网络数据传输
</a>
<ul class="articles">
<li class="chapter " data-level="7.5.1" data-path="connectivity/volley/simple.html">
<a href="../../connectivity/volley/simple.html">
<i class="fa fa-check"></i> <b>7.5.1.</b> 发送简单的网络请求
</a>
</li>
<li class="chapter " data-level="7.5.2" data-path="connectivity/volley/request-queue.html">
<a href="../../connectivity/volley/request-queue.html">
<i class="fa fa-check"></i> <b>7.5.2.</b> 建立请求队列
</a>
</li>
<li class="chapter " data-level="7.5.3" data-path="connectivity/volley/request.html">
<a href="../../connectivity/volley/request.html">
<i class="fa fa-check"></i> <b>7.5.3.</b> 创建标准的网络请求
</a>
</li>
<li class="chapter " data-level="7.5.4" data-path="connectivity/volley/request-custom.html">
<a href="../../connectivity/volley/request-custom.html">
<i class="fa fa-check"></i> <b>7.5.4.</b> 实现自定义的网络请求
</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="chapter " data-level="8" data-path="cloud/index.html">
<a href="../../cloud/index.html">
<i class="fa fa-check"></i> <b>8.</b> 云服务
</a>
<ul class="articles">
<li class="chapter " data-level="8.1" data-path="cloud/cloudsync/index.html">
<a href="../../cloud/cloudsync/index.html">
<i class="fa fa-check"></i> <b>8.1.</b> 云同步
</a>
<ul class="articles">
<li class="chapter " data-level="8.1.1" data-path="cloud/cloudsync/backupapi.html">
<a href="../../cloud/cloudsync/backupapi.html">
<i class="fa fa-check"></i> <b>8.1.1.</b> 使用备份API
</a>
</li>
<li class="chapter " data-level="8.1.2" data-path="cloud/cloudsync/gcm.html">
<a href="../../cloud/cloudsync/gcm.html">
<i class="fa fa-check"></i> <b>8.1.2.</b> 使用Google Cloud Messaging
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="8.2" data-path="cloud/cloudsave/index.html">
<a href="../../cloud/cloudsave/index.html">
<i class="fa fa-check"></i> <b>8.2.</b> 解决云同步的保存冲突
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="9" data-path="contacts-provider/index.html">
<a href="../../contacts-provider/index.html">
<i class="fa fa-check"></i> <b>9.</b> 用户信息
</a>
<ul class="articles">
<li class="chapter " data-level="9.1" data-path="contacts-provider/retrieve-names.html">
<a href="../../contacts-provider/retrieve-names.html">
<i class="fa fa-check"></i> <b>9.1.</b> 获取联系人列表
</a>
</li>
<li class="chapter " data-level="9.2" data-path="contacts-provider/retrieve-detail.html">
<a href="../../contacts-provider/retrieve-detail.html">
<i class="fa fa-check"></i> <b>9.2.</b> 获取联系人详情
</a>
</li>
<li class="chapter " data-level="9.3" data-path="contacts-provider/modify-data.html">
<a href="../../contacts-provider/modify-data.html">
<i class="fa fa-check"></i> <b>9.3.</b> 修改联系人信息
</a>
</li>
<li class="chapter " data-level="9.4" data-path="contacts-provider/display-badge.html">
<a href="../../contacts-provider/display-badge.html">
<i class="fa fa-check"></i> <b>9.4.</b> 显示联系人头像
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="10" data-path="location/index.html">
<a href="../../location/index.html">
<i class="fa fa-check"></i> <b>10.</b> 位置信息
</a>
<ul class="articles">
<li class="chapter " data-level="10.1" data-path="location/retrieve-current.html">
<a href="../../location/retrieve-current.html">
<i class="fa fa-check"></i> <b>10.1.</b> 获取当前位置
</a>
</li>
<li class="chapter " data-level="10.2" data-path="location/retrieve-location-updates.html">
<a href="../../location/retrieve-location-updates.html">
<i class="fa fa-check"></i> <b>10.2.</b> 获取位置更新
</a>
</li>
<li class="chapter " data-level="10.3" data-path="location/display-address.html">
<a href="../../location/display-address.html">
<i class="fa fa-check"></i> <b>10.3.</b> 显示位置地址
</a>
</li>
<li class="chapter " data-level="10.4" data-path="location/geofencing.html">
<a href="../../location/geofencing.html">
<i class="fa fa-check"></i> <b>10.4.</b> 创建并监视异常区域
</a>
</li>
<li class="chapter " data-level="10.5" data-path="location/activity-recognition.html">
<a href="../../location/activity-recognition.html">
<i class="fa fa-check"></i> <b>10.5.</b> 识别用户的当下活动
</a>
</li>
<li class="chapter " data-level="10.6" data-path="location/location-testing.html">
<a href="../../location/location-testing.html">
<i class="fa fa-check"></i> <b>10.6.</b> 使用模拟位置进行测试
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="11" data-path="wearables/index.html">
<a href="../../wearables/index.html">
<i class="fa fa-check"></i> <b>11.</b> 可穿戴
</a>
<ul class="articles">
<li class="chapter " data-level="11.1" data-path="wearables/notifications/index.html">
<a href="../../wearables/notifications/index.html">
<i class="fa fa-check"></i> <b>11.1.</b> 赋予Notification可穿戴的特性
</a>
<ul class="articles">
<li class="chapter " data-level="11.1.1" data-path="wearables/notifications/creating.html">
<a href="../../wearables/notifications/creating.html">
<i class="fa fa-check"></i> <b>11.1.1.</b> 创建一个Notification
</a>
</li>
<li class="chapter " data-level="11.1.2" data-path="wearables/notifications/voice-input.html">
<a href="../../wearables/notifications/voice-input.html">
<i class="fa fa-check"></i> <b>11.1.2.</b> 在Notifcation中接收语言输入
</a>
</li>
<li class="chapter " data-level="11.1.3" data-path="wearables/notifications/pages.html">
<a href="../../wearables/notifications/pages.html">
<i class="fa fa-check"></i> <b>11.1.3.</b> 为Notification添加显示页面
</a>
</li>
<li class="chapter " data-level="11.1.4" data-path="wearables/notifications/stacks.html">
<a href="../../wearables/notifications/stacks.html">
<i class="fa fa-check"></i> <b>11.1.4.</b> 以Stack的方式显示Notifications
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="11.2" data-path="wearables/apps/index.html">
<a href="../../wearables/apps/index.html">
<i class="fa fa-check"></i> <b>11.2.</b> 创建可穿戴的应用
</a>
<ul class="articles">
<li class="chapter " data-level="11.2.1" data-path="wearables/apps/creating.html">
<a href="../../wearables/apps/creating.html">
<i class="fa fa-check"></i> <b>11.2.1.</b> 创建并运行一个可穿戴的应用
</a>
</li>
<li class="chapter " data-level="11.2.2" data-path="wearables/apps/layouts.html">
<a href="../../wearables/apps/layouts.html">
<i class="fa fa-check"></i> <b>11.2.2.</b> 创建自定义的布局
</a>
</li>
<li class="chapter " data-level="11.2.3" data-path="wearables/apps/voice.html">
<a href="../../wearables/apps/voice.html">
<i class="fa fa-check"></i> <b>11.2.3.</b> 添加语音能力
</a>
</li>
<li class="chapter " data-level="11.2.4" data-path="wearables/apps/packaging.html">
<a href="../../wearables/apps/packaging.html">
<i class="fa fa-check"></i> <b>11.2.4.</b> 打包可穿戴应用
</a>
</li>
<li class="chapter " data-level="11.2.5" data-path="wearables/apps/bt-debugging.html">
<a href="../../wearables/apps/bt-debugging.html">
<i class="fa fa-check"></i> <b>11.2.5.</b> 通过蓝牙进行调试
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="11.3" data-path="wearables/data-layer/index.html">
<a href="../../wearables/data-layer/index.html">
<i class="fa fa-check"></i> <b>11.3.</b> 发送并同步数据
</a>
<ul class="articles">
<li class="chapter " data-level="11.3.1" data-path="wearables/data-layer/accessing.html">
<a href="../../wearables/data-layer/accessing.html">
<i class="fa fa-check"></i> <b>11.3.1.</b> 访问可穿戴数据层
</a>
</li>
<li class="chapter " data-level="11.3.2" data-path="wearables/data-layer/data-items.html">
<a href="../../wearables/data-layer/data-items.html">
<i class="fa fa-check"></i> <b>11.3.2.</b> 同步数据单元
</a>
</li>
<li class="chapter " data-level="11.3.3" data-path="wearables/data-layer/assets.html">
<a href="../../wearables/data-layer/assets.html">
<i class="fa fa-check"></i> <b>11.3.3.</b> 传输资源
</a>
</li>
<li class="chapter " data-level="11.3.4" data-path="wearables/data-layer/messages.html">
<a href="../../wearables/data-layer/messages.html">
<i class="fa fa-check"></i> <b>11.3.4.</b> 发送与接收消息
</a>
</li>
<li class="chapter " data-level="11.3.5" data-path="wearables/data-layer/events.html">
<a href="../../wearables/data-layer/events.html">
<i class="fa fa-check"></i> <b>11.3.5.</b> 处理数据层的事件
</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="chapter " data-level="12" data-path="ux/index.html">
<a href="../../ux/index.html">
<i class="fa fa-check"></i> <b>12.</b> 交互
</a>
<ul class="articles">
<li class="chapter " data-level="12.1" data-path="ux/design-nav/index.html">
<a href="../../ux/design-nav/index.html">
<i class="fa fa-check"></i> <b>12.1.</b> 设计高效的导航
</a>
<ul class="articles">
<li class="chapter " data-level="12.1.1" data-path="ux/design-nav/screen-planning.html">
<a href="../../ux/design-nav/screen-planning.html">
<i class="fa fa-check"></i> <b>12.1.1.</b> 规划屏幕界面与他们之间的关系
</a>
</li>
<li class="chapter " data-level="12.1.2" data-path="ux/design-nav/multi-sizes.html">
<a href="../../ux/design-nav/multi-sizes.html">
<i class="fa fa-check"></i> <b>12.1.2.</b> 为多种大小的屏幕进行规划
</a>
</li>
<li class="chapter " data-level="12.1.3" data-path="ux/design-nav/descendant-lateral.html">
<a href="../../ux/design-nav/descendant-lateral.html">
<i class="fa fa-check"></i> <b>12.1.3.</b> 提供向下与侧滑的导航
</a>
</li>
<li class="chapter " data-level="12.1.4" data-path="ux/design-nav/ancestral-temporal.html">
<a href="../../ux/design-nav/ancestral-temporal.html">
<i class="fa fa-check"></i> <b>12.1.4.</b> 提供向上与暂时的导航
</a>
</li>
<li class="chapter " data-level="12.1.5" data-path="ux/design-nav/wireframing.html">
<a href="../../ux/design-nav/wireframing.html">
<i class="fa fa-check"></i> <b>12.1.5.</b> 综合上面所有的导航
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="12.2" data-path="ux/implement-nav/index.html">
<a href="../../ux/implement-nav/index.html">
<i class="fa fa-check"></i> <b>12.2.</b> 实现高效的导航
</a>
<ul class="articles">
<li class="chapter " data-level="12.2.1" data-path="ux/implement-nav/lateral.html">
<a href="../../ux/implement-nav/lateral.html">
<i class="fa fa-check"></i> <b>12.2.1.</b> 使用Tabs创建Swipe视图
</a>
</li>
<li class="chapter " data-level="12.2.2" data-path="ux/implement-nav/nav-drawer.html">
<a href="../../ux/implement-nav/nav-drawer.html">
<i class="fa fa-check"></i> <b>12.2.2.</b> 创建抽屉导航
</a>
</li>
<li class="chapter " data-level="12.2.3" data-path="ux/implement-nav/ancestral.html">
<a href="../../ux/implement-nav/ancestral.html">
<i class="fa fa-check"></i> <b>12.2.3.</b> 提供向上的导航
</a>
</li>
<li class="chapter " data-level="12.2.4" data-path="ux/implement-nav/temporal.html">
<a href="../../ux/implement-nav/temporal.html">
<i class="fa fa-check"></i> <b>12.2.4.</b> 提供向后的导航
</a>
</li>
<li class="chapter " data-level="12.2.5" data-path="ux/implement-nav/descendant.html">
<a href="../../ux/implement-nav/descendant.html">
<i class="fa fa-check"></i> <b>12.2.5.</b> 实现向下的导航
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="12.3" data-path="ux/notify-user/index.html">
<a href="../../ux/notify-user/index.html">
<i class="fa fa-check"></i> <b>12.3.</b> 通知提示用户
</a>
<ul class="articles">
<li class="chapter " data-level="12.3.1" data-path="ux/notify-user/build-notification.html">
<a href="../../ux/notify-user/build-notification.html">
<i class="fa fa-check"></i> <b>12.3.1.</b> 建立Notification
</a>
</li>
<li class="chapter " data-level="12.3.2" data-path="ux/notify-user/nav.html">
<a href="../../ux/notify-user/nav.html">
<i class="fa fa-check"></i> <b>12.3.2.</b> 当启动Activity时保留导航
</a>
</li>
<li class="chapter " data-level="12.3.3" data-path="ux/notify-user/update-notification.html">
<a href="../../ux/notify-user/update-notification.html">
<i class="fa fa-check"></i> <b>12.3.3.</b> 更新Notification
</a>
</li>
<li class="chapter " data-level="12.3.4" data-path="ux/notify-user/expand-notification.html">
<a href="../../ux/notify-user/expand-notification.html">
<i class="fa fa-check"></i> <b>12.3.4.</b> 使用BigView风格
</a>
</li>
<li class="chapter " data-level="12.3.5" data-path="ux/notify-user/progess-notification.html">
<a href="../../ux/notify-user/progess-notification.html">
<i class="fa fa-check"></i> <b>12.3.5.</b> 显示Notification进度
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="12.4" data-path="ux/search/index.html">
<a href="../../ux/search/index.html">
<i class="fa fa-check"></i> <b>12.4.</b> 增加搜索功能
</a>
<ul class="articles">
<li class="chapter " data-level="12.4.1" data-path="ux/search/setup.html">
<a href="../../ux/search/setup.html">
<i class="fa fa-check"></i> <b>12.4.1.</b> 建立搜索界面
</a>
</li>
<li class="chapter " data-level="12.4.2" data-path="ux/search/search.html">
<a href="../../ux/search/search.html">
<i class="fa fa-check"></i> <b>12.4.2.</b> 保存并搜索数据
</a>
</li>
<li class="chapter " data-level="12.4.3" data-path="ux/search/back-compat.html">
<a href="../../ux/search/back-compat.html">
<i class="fa fa-check"></i> <b>12.4.3.</b> 保持向下兼容
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="12.5" data-path="ux/app-indexing/index.html">
<a href="../../ux/app-indexing/index.html">
<i class="fa fa-check"></i> <b>12.5.</b> 使得你的App内容可被Google搜索
</a>
<ul class="articles">
<li class="chapter " data-level="12.5.1" data-path="ux/app-indexing/deep-linking.html">
<a href="../../ux/app-indexing/deep-linking.html">
<i class="fa fa-check"></i> <b>12.5.1.</b> 为App内容开启深度链接
</a>
</li>
<li class="chapter " data-level="12.5.2" data-path="ux/app-indexing/enable-app-indexing.html">
<a href="../../ux/app-indexing/enable-app-indexing.html">
<i class="fa fa-check"></i> <b>12.5.2.</b> 为索引指定App内容
</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="chapter " data-level="13" data-path="ui/index.html">
<a href="../../ui/index.html">
<i class="fa fa-check"></i> <b>13.</b> UI
</a>
<ul class="articles">
<li class="chapter " data-level="13.1" data-path="ui/multiscreen/index.html">
<a href="../../ui/multiscreen/index.html">
<i class="fa fa-check"></i> <b>13.1.</b> 为多屏幕设计
</a>
<ul class="articles">
<li class="chapter " data-level="13.1.1" data-path="ui/multiscreen/screen-sizes.html">
<a href="../../ui/multiscreen/screen-sizes.html">
<i class="fa fa-check"></i> <b>13.1.1.</b> 兼容不同的屏幕大小
</a>
</li>
<li class="chapter " data-level="13.1.2" data-path="ui/multiscreen/screen-desities.html">
<a href="../../ui/multiscreen/screen-desities.html">
<i class="fa fa-check"></i> <b>13.1.2.</b> 兼容不同的屏幕密度
</a>
</li>
<li class="chapter " data-level="13.1.3" data-path="ui/multiscreen/adapt-ui.html">
<a href="../../ui/multiscreen/adapt-ui.html">
<i class="fa fa-check"></i> <b>13.1.3.</b> 实现可适应的UI
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="13.2" data-path="ui/tv/index.html">
<a href="../../ui/tv/index.html">
<i class="fa fa-check"></i> <b>13.2.</b> 为TV进行设计
</a>
<ul class="articles">
<li class="chapter " data-level="13.2.1" data-path="ui/tv/optimize-layouts-tv.html">
<a href="../../ui/tv/optimize-layouts-tv.html">
<i class="fa fa-check"></i> <b>13.2.1.</b> 为TV优化Layout
</a>
</li>
<li class="chapter " data-level="13.2.2" data-path="ui/tv/optimize-nav-tv.html">
<a href="../../ui/tv/optimize-nav-tv.html">
<i class="fa fa-check"></i> <b>13.2.2.</b> 为TV优化导航
</a>
</li>
<li class="chapter " data-level="13.2.3" data-path="ui/tv/unsupport-features-tv.html">
<a href="../../ui/tv/unsupport-features-tv.html">
<i class="fa fa-check"></i> <b>13.2.3.</b> 处理不支持TV的功能
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="13.3" data-path="ui/custom-view/index.html">
<a href="../../ui/custom-view/index.html">
<i class="fa fa-check"></i> <b>13.3.</b> 创建自定义View
</a>
<ul class="articles">
<li class="chapter " data-level="13.3.1" data-path="ui/custom-view/create-view.html">
<a href="../../ui/custom-view/create-view.html">
<i class="fa fa-check"></i> <b>13.3.1.</b> 创建自定义的View类
</a>
</li>
<li class="chapter " data-level="13.3.2" data-path="ui/custom-view/custom-draw.html">
<a href="../../ui/custom-view/custom-draw.html">
<i class="fa fa-check"></i> <b>13.3.2.</b> 实现自定义View的绘制
</a>
</li>
<li class="chapter " data-level="13.3.3" data-path="ui/custom-view/make-interactive.html">
<a href="../../ui/custom-view/make-interactive.html">
<i class="fa fa-check"></i> <b>13.3.3.</b> 使得View可交互
</a>
</li>
<li class="chapter " data-level="13.3.4" data-path="ui/custom-view/optimize-view.html">
<a href="../../ui/custom-view/optimize-view.html">
<i class="fa fa-check"></i> <b>13.3.4.</b> 优化自定义View
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="13.4" data-path="ui/backward-compatible-ui/index.html">
<a href="../../ui/backward-compatible-ui/index.html">
<i class="fa fa-check"></i> <b>13.4.</b> 创建向后兼容的UI
</a>
<ul class="articles">
<li class="chapter " data-level="13.4.1" data-path="ui/backward-compatible-ui/abstract.html">
<a href="../../ui/backward-compatible-ui/abstract.html">
<i class="fa fa-check"></i> <b>13.4.1.</b> 抽象新的APIs
</a>
</li>
<li class="chapter " data-level="13.4.2" data-path="ui/backward-compatible-ui/new-impl.html">
<a href="../../ui/backward-compatible-ui/new-impl.html">
<i class="fa fa-check"></i> <b>13.4.2.</b> 代理至新的APIs
</a>
</li>
<li class="chapter " data-level="13.4.3" data-path="ui/backward-compatible-ui/older-impl.html">
<a href="../../ui/backward-compatible-ui/older-impl.html">
<i class="fa fa-check"></i> <b>13.4.3.</b> 使用旧的APIs实现新API的效果
</a>
</li>
<li class="chapter " data-level="13.4.4" data-path="ui/backward-compatible-ui/using-component.html">
<a href="../../ui/backward-compatible-ui/using-component.html">
<i class="fa fa-check"></i> <b>13.4.4.</b> 使用版本敏感的组件
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="13.5" data-path="ui/accessibility/index.html">
<a href="../../ui/accessibility/index.html">
<i class="fa fa-check"></i> <b>13.5.</b> 实现辅助功能
</a>
<ul class="articles">
<li class="chapter " data-level="13.5.1" data-path="ui/accessibility/accessible-app.html">
<a href="../../ui/accessibility/accessible-app.html">
<i class="fa fa-check"></i> <b>13.5.1.</b> 开发辅助程序
</a>
</li>
<li class="chapter " data-level="13.5.2" data-path="ui/accessibility/accessible-service.html">
<a href="../../ui/accessibility/accessible-service.html">
<i class="fa fa-check"></i> <b>13.5.2.</b> 开发辅助服务
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="13.6" data-path="ui/system-ui/index.html">
<a href="../../ui/system-ui/index.html">
<i class="fa fa-check"></i> <b>13.6.</b> 管理系统UI
</a>
<ul class="articles">
<li class="chapter " data-level="13.6.1" data-path="ui/system-ui/dim.html">
<a href="../../ui/system-ui/dim.html">
<i class="fa fa-check"></i> <b>13.6.1.</b> 淡化系统Bar
</a>
</li>
<li class="chapter " data-level="13.6.2" data-path="ui/system-ui/hide-ui.html">
<a href="../../ui/system-ui/hide-ui.html">
<i class="fa fa-check"></i> <b>13.6.2.</b> 隐藏系统Bar
</a>
</li>
<li class="chapter " data-level="13.6.3" data-path="ui/system-ui/hide-nav.html">
<a href="../../ui/system-ui/hide-nav.html">
<i class="fa fa-check"></i> <b>13.6.3.</b> 隐藏导航Bar
</a>
</li>
<li class="chapter " data-level="13.6.4" data-path="ui/system-ui/immersive.html">
<a href="../../ui/system-ui/immersive.html">
<i class="fa fa-check"></i> <b>13.6.4.</b> 全屏沉浸式应用
</a>
</li>
<li class="chapter " data-level="13.6.5" data-path="ui/system-ui/visibility.html">
<a href="../../ui/system-ui/visibility.html">
<i class="fa fa-check"></i> <b>13.6.5.</b> 响应UI可见性的变化
</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="chapter " data-level="14" data-path="input/index.html">
<a href="../../input/index.html">
<i class="fa fa-check"></i> <b>14.</b> 用户输入
</a>
<ul class="articles">
<li class="chapter " data-level="14.1" data-path="input/gestures/index.html">
<a href="../../input/gestures/index.html">
<i class="fa fa-check"></i> <b>14.1.</b> 使用触摸手势
</a>
<ul class="articles">
<li class="chapter " data-level="14.1.1" data-path="input/gestures/detector.html">
<a href="../../input/gestures/detector.html">
<i class="fa fa-check"></i> <b>14.1.1.</b> 检测常用的手势
</a>
</li>
<li class="chapter " data-level="14.1.2" data-path="input/gestures/movement.html">
<a href="../../input/gestures/movement.html">
<i class="fa fa-check"></i> <b>14.1.2.</b> 跟踪手势移动
</a>
</li>
<li class="chapter " data-level="14.1.3" data-path="input/gestures/scroll.html">
<a href="../../input/gestures/scroll.html">
<i class="fa fa-check"></i> <b>14.1.3.</b> Scroll手势动画
</a>
</li>
<li class="chapter " data-level="14.1.4" data-path="input/gestures/multi.html">
<a href="../../input/gestures/multi.html">
<i class="fa fa-check"></i> <b>14.1.4.</b> 处理多触摸手势
</a>
</li>
<li class="chapter " data-level="14.1.5" data-path="input/gestures/scale.html">
<a href="../../input/gestures/scale.html">
<i class="fa fa-check"></i> <b>14.1.5.</b> 拖拽与缩放
</a>
</li>
<li class="chapter " data-level="14.1.6" data-path="input/gestures/viewgroup.html">
<a href="../../input/gestures/viewgroup.html">
<i class="fa fa-check"></i> <b>14.1.6.</b> 管理ViewGroup中的触摸事件
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="14.2" data-path="input/keyboard-input/index.html">
<a href="../../input/keyboard-input/index.html">
<i class="fa fa-check"></i> <b>14.2.</b> 处理键盘输入
</a>
<ul class="articles">
<li class="chapter " data-level="14.2.1" data-path="input/keyboard-input/type.html">
<a href="../../input/keyboard-input/type.html">
<i class="fa fa-check"></i> <b>14.2.1.</b> 指定输入法类型
</a>
</li>
<li class="chapter " data-level="14.2.2" data-path="input/keyboard-input/visibility.html">
<a href="../../input/keyboard-input/visibility.html">
<i class="fa fa-check"></i> <b>14.2.2.</b> 处理输入法可见性
</a>
</li>
<li class="chapter " data-level="14.2.3" data-path="input/keyboard-input/navigation.html">
<a href="../../input/keyboard-input/navigation.html">
<i class="fa fa-check"></i> <b>14.2.3.</b> 兼容硬件导航
</a>
</li>
<li class="chapter " data-level="14.2.4" data-path="input/keyboard-input/commands.html">
<a href="../../input/keyboard-input/commands.html">
<i class="fa fa-check"></i> <b>14.2.4.</b> 处理输入命令
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="14.3" data-path="input/game-controller/index.html">
<a href="../../input/game-controller/index.html">
<i class="fa fa-check"></i> <b>14.3.</b> 兼容游戏控制器
</a>
<ul class="articles">
<li class="chapter " data-level="14.3.1" data-path="input/game-controller/controller-inputs.html">
<a href="../../input/game-controller/controller-inputs.html">
<i class="fa fa-check"></i> <b>14.3.1.</b> 处理控制器输入动作
</a>
</li>
<li class="chapter " data-level="14.3.2" data-path="input/game-controller/compatibility.html">
<a href="../../input/game-controller/compatibility.html">
<i class="fa fa-check"></i> <b>14.3.2.</b> 支持不同的Android系统版本
</a>
</li>
<li class="chapter " data-level="14.3.3" data-path="input/game-controller/multi-controller.html">
<a href="../../input/game-controller/multi-controller.html">
<i class="fa fa-check"></i> <b>14.3.3.</b> 支持多个控制器
</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="chapter " data-level="15" data-path="background-jobs/index.html">
<a href="../../background-jobs/index.html">
<i class="fa fa-check"></i> <b>15.</b> 后台任务
</a>
<ul class="articles">
<li class="chapter " data-level="15.1" data-path="background-jobs/run-background-service/index.html">
<a href="../../background-jobs/run-background-service/index.html">
<i class="fa fa-check"></i> <b>15.1.</b> 在IntentService中执行后台任务
</a>
<ul class="articles">
<li class="chapter " data-level="15.1.1" data-path="background-jobs/run-background-service/create-service.html">
<a href="../../background-jobs/run-background-service/create-service.html">
<i class="fa fa-check"></i> <b>15.1.1.</b> 创建IntentService
</a>
</li>
<li class="chapter " data-level="15.1.2" data-path="background-jobs/run-background-service/send-request.html">
<a href="../../background-jobs/run-background-service/send-request.html">
<i class="fa fa-check"></i> <b>15.1.2.</b> 发送工作任务到IntentService
</a>
</li>
<li class="chapter " data-level="15.1.3" data-path="background-jobs/run-background-service/report-status.html">
<a href="../../background-jobs/run-background-service/report-status.html">
<i class="fa fa-check"></i> <b>15.1.3.</b> 报告后台任务执行状态
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="15.2" data-path="background-jobs/load-data-background/index.html">
<a href="../../background-jobs/load-data-background/index.html">
<i class="fa fa-check"></i> <b>15.2.</b> 使用CursorLoader在后台加载数据
</a>
<ul class="articles">
<li class="chapter " data-level="15.2.1" data-path="background-jobs/load-data-background/setup-loader.html">
<a href="../../background-jobs/load-data-background/setup-loader.html">
<i class="fa fa-check"></i> <b>15.2.1.</b> 使用CursorLoader执行查询任务
</a>
</li>
<li class="chapter " data-level="15.2.2" data-path="background-jobs/load-data-background/handle-result.html">
<a href="../../background-jobs/load-data-background/handle-result.html">
<i class="fa fa-check"></i> <b>15.2.2.</b> 处理查询的结果
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="15.3" data-path="background-jobs/scheduling/index.html">
<a href="../../background-jobs/scheduling/index.html">
<i class="fa fa-check"></i> <b>15.3.</b> 管理设备的唤醒状态
</a>
<ul class="articles">
<li class="chapter " data-level="15.3.1" data-path="background-jobs/scheduling/wake-lock.html">
<a href="../../background-jobs/scheduling/wake-lock.html">
<i class="fa fa-check"></i> <b>15.3.1.</b> 保持设备的唤醒
</a>
</li>
<li class="chapter " data-level="15.3.2" data-path="background-jobs/scheduling/alarms.html">
<a href="../../background-jobs/scheduling/alarms.html">
<i class="fa fa-check"></i> <b>15.3.2.</b> 制定重复定时的任务
</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="chapter " data-level="16" data-path="performance/index.html">
<a href="../../performance/index.html">
<i class="fa fa-check"></i> <b>16.</b> 性能优化
</a>
<ul class="articles">
<li class="chapter " data-level="16.1" data-path="performance/memory.html">
<a href="../../performance/memory.html">
<i class="fa fa-check"></i> <b>16.1.</b> 管理应用的内存
</a>
</li>
<li class="chapter " data-level="16.2" data-path="performance/performance-tips.html">
<a href="../../performance/performance-tips.html">
<i class="fa fa-check"></i> <b>16.2.</b> 性能优化Tips
</a>
</li>
<li class="chapter " data-level="16.3" data-path="performance/improving-layouts/index.html">
<a href="../../performance/improving-layouts/index.html">
<i class="fa fa-check"></i> <b>16.3.</b> 提升Layout的性能
</a>
<ul class="articles">
<li class="chapter " data-level="16.3.1" data-path="performance/improving-layouts/optimizing-layout.html">
<a href="../../performance/improving-layouts/optimizing-layout.html">
<i class="fa fa-check"></i> <b>16.3.1.</b> 优化layout的层级
</a>
</li>
<li class="chapter " data-level="16.3.2" data-path="performance/improving-layouts/reuse-layouts.html">
<a href="../../performance/improving-layouts/reuse-layouts.html">
<i class="fa fa-check"></i> <b>16.3.2.</b> 使用include标签重用layouts
</a>
</li>
<li class="chapter " data-level="16.3.3" data-path="performance/improving-layouts/loading-ondemand.html">
<a href="../../performance/improving-layouts/loading-ondemand.html">
<i class="fa fa-check"></i> <b>16.3.3.</b> 按需加载视图
</a>
</li>
<li class="chapter " data-level="16.3.4" data-path="performance/improving-layouts/smooth-scrolling.html">
<a href="../../performance/improving-layouts/smooth-scrolling.html">
<i class="fa fa-check"></i> <b>16.3.4.</b> 使得ListView滑动顺畅
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="16.4" data-path="performance/monitor-device-state/index.html">
<a href="../../performance/monitor-device-state/index.html">
<i class="fa fa-check"></i> <b>16.4.</b> 优化电池寿命
</a>
<ul class="articles">
<li class="chapter " data-level="16.4.1" data-path="performance/monitor-device-state/battery-monitor.html">
<a href="../../performance/monitor-device-state/battery-monitor.html">
<i class="fa fa-check"></i> <b>16.4.1.</b> 监测电量与充电状态
</a>
</li>
<li class="chapter " data-level="16.4.2" data-path="performance/monitor-device-state/docking-monitor.html">
<a href="../../performance/monitor-device-state/docking-monitor.html">
<i class="fa fa-check"></i> <b>16.4.2.</b> 判断与监测Docking状态
</a>
</li>
<li class="chapter " data-level="16.4.3" data-path="performance/monitor-device-state/connectivity-monitor.html">
<a href="../../performance/monitor-device-state/connectivity-monitor.html">
<i class="fa fa-check"></i> <b>16.4.3.</b> 判断与监测网络连接状态
</a>
</li>
<li class="chapter " data-level="16.4.4" data-path="performance/monitor-device-state/manifest-receivers.html">
<a href="../../performance/monitor-device-state/manifest-receivers.html">
<i class="fa fa-check"></i> <b>16.4.4.</b> 根据需要操作Broadcast接受者
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="16.5" data-path="performance/multi-threads/index.html">
<a href="../../performance/multi-threads/index.html">
<i class="fa fa-check"></i> <b>16.5.</b> 多线程操作
</a>
<ul class="articles">
<li class="chapter " data-level="16.5.1" data-path="performance/multi-threads/define-runnable.html">
<a href="../../performance/multi-threads/define-runnable.html">
<i class="fa fa-check"></i> <b>16.5.1.</b> 指定一段代码执行在一个线程
</a>
</li>
<li class="chapter " data-level="16.5.2" data-path="performance/multi-threads/create-threadpool.html">
<a href="../../performance/multi-threads/create-threadpool.html">
<i class="fa fa-check"></i> <b>16.5.2.</b> 为多线程创建线程池
</a>
</li>
<li class="chapter " data-level="16.5.3" data-path="performance/multi-threads/run-code.html">
<a href="../../performance/multi-threads/run-code.html">
<i class="fa fa-check"></i> <b>16.5.3.</b> 执行代码运行在线程池中
</a>
</li>
<li class="chapter " data-level="16.5.4" data-path="performance/multi-threads/communicate-ui.html">
<a href="../../performance/multi-threads/communicate-ui.html">
<i class="fa fa-check"></i> <b>16.5.4.</b> 与UI线程进行交互
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="16.6" data-path="performance/perf-anr/index.html">
<a href="../../performance/perf-anr/index.html">
<i class="fa fa-check"></i> <b>16.6.</b> 避免出现程序无响应ANR
</a>
</li>
<li class="chapter " data-level="16.7" data-path="performance/perf-jni/index.html">
<a href="../../performance/perf-jni/index.html">
<i class="fa fa-check"></i> <b>16.7.</b> JNI Tips
</a>
</li>
<li class="chapter " data-level="16.8" data-path="performance/smp/index.html">
<a href="../../performance/smp/index.html">
<i class="fa fa-check"></i> <b>16.8.</b> SMP for Android
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="17" data-path="security/index.html">
<a href="../../security/index.html">
<i class="fa fa-check"></i> <b>17.</b> 安全与隐私
</a>
<ul class="articles">
<li class="chapter " data-level="17.1" data-path="security/security-tips.html">
<a href="../../security/security-tips.html">
<i class="fa fa-check"></i> <b>17.1.</b> Security Tips
</a>
</li>
<li class="chapter " data-level="17.2" data-path="security/security-ssl.html">
<a href="../../security/security-ssl.html">
<i class="fa fa-check"></i> <b>17.2.</b> 使用HTTPS与SSL
</a>
</li>
<li class="chapter " data-level="17.3" data-path="security/enterprise.html">
<a href="../../security/enterprise.html">
<i class="fa fa-check"></i> <b>17.3.</b> 企业版App
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="18" data-path="testing/index.html">
<a href="../../testing/index.html">
<i class="fa fa-check"></i> <b>18.</b> 测试程序
</a>
<ul class="articles">
<li class="chapter " data-level="18.1" data-path="testing/activity-testing/index.html">
<a href="../../testing/activity-testing/index.html">
<i class="fa fa-check"></i> <b>18.1.</b> 测试你的Activity
</a>
<ul class="articles">
<li class="chapter " data-level="18.1.1" data-path="testing/activity-testing/prepare-activity-testing.html">
<a href="../../testing/activity-testing/prepare-activity-testing.html">
<i class="fa fa-check"></i> <b>18.1.1.</b> 建立测试环境
</a>
</li>
<li class="chapter " data-level="18.1.2" data-path="testing/activity-testing/activity-basic-testing.html">
<a href="../../testing/activity-testing/activity-basic-testing.html">
<i class="fa fa-check"></i> <b>18.1.2.</b> 创建与执行测试用例
</a>
</li>
<li class="chapter " data-level="18.1.3" data-path="testing/activity-testing/activity-ui-testing.html">
<a href="../../testing/activity-testing/activity-ui-testing.html">
<i class="fa fa-check"></i> <b>18.1.3.</b> 测试UI组件
</a>
</li>
<li class="chapter " data-level="18.1.4" data-path="testing/activity-testing/activity-unit-testing.html">
<a href="../../testing/activity-testing/activity-unit-testing.html">
<i class="fa fa-check"></i> <b>18.1.4.</b> 创建单元测试
</a>
</li>
<li class="chapter " data-level="18.1.5" data-path="testing/activity-testing/activity-function-testing.html">
<a href="../../testing/activity-testing/activity-function-testing.html">
<i class="fa fa-check"></i> <b>18.1.5.</b> 创建功能测试
</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="chapter " data-level="19" data-path="distribute/index.html">
<a href="../../distribute/index.html">
<i class="fa fa-check"></i> <b>19.</b> 分发与盈利
</a>
<ul class="articles">
<li class="chapter " data-level="19.1" data-path="distribute/in-app-billing/index.html">
<a href="../../distribute/in-app-billing/index.html">
<i class="fa fa-check"></i> <b>19.1.</b> 售卖App内置产品
</a>
<ul class="articles">
<li class="chapter " data-level="19.1.1" data-path="distribute/in-app-billing/prepare-iab-app.html">
<a href="../../distribute/in-app-billing/prepare-iab-app.html">
<i class="fa fa-check"></i> <b>19.1.1.</b> 准备你的App
</a>
</li>
<li class="chapter " data-level="19.1.2" data-path="distribute/in-app-billing/list-iab-products.html">
<a href="../../distribute/in-app-billing/list-iab-products.html">
<i class="fa fa-check"></i> <b>19.1.2.</b> 建立售卖的产品
</a>
</li>
<li class="chapter " data-level="19.1.3" data-path="distribute/in-app-billing/purchase-iab-products.html">
<a href="../../distribute/in-app-billing/purchase-iab-products.html">
<i class="fa fa-check"></i> <b>19.1.3.</b> 购买产品
</a>
</li>
<li class="chapter " data-level="19.1.4" data-path="distribute/in-app-billing/test-iab-app.html">
<a href="../../distribute/in-app-billing/test-iab-app.html">
<i class="fa fa-check"></i> <b>19.1.4.</b> 测试你的App
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="19.2" data-path="distribute/multi-apks/index.html">
<a href="../../distribute/multi-apks/index.html">
<i class="fa fa-check"></i> <b>19.2.</b> 维护多个APK
</a>
<ul class="articles">
<li class="chapter " data-level="19.2.1" data-path="distribute/multi-apks/api.html">
<a href="../../distribute/multi-apks/api.html">
<i class="fa fa-check"></i> <b>19.2.1.</b> 为不同API Level创建多个APK
</a>
</li>
<li class="chapter " data-level="19.2.2" data-path="distribute/multi-apks/screen-size.html">
<a href="../../distribute/multi-apks/screen-size.html">
<i class="fa fa-check"></i> <b>19.2.2.</b> 为不同屏幕大小创建多个APK
</a>
</li>
<li class="chapter " data-level="19.2.3" data-path="distribute/multi-apks/texture.html">
<a href="../../distribute/multi-apks/texture.html">
<i class="fa fa-check"></i> <b>19.2.3.</b> 为不同的GL Texture创建多个APK
</a>
</li>
<li class="chapter " data-level="19.2.4" data-path="distribute/multi-apks/multiple.html">
<a href="../../distribute/multi-apks/multiple.html">
<i class="fa fa-check"></i> <b>19.2.4.</b> 为2种以上的维度创建多个APK
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="19.3" data-path="distribute/monetization/index.html">
<a href="../../distribute/monetization/index.html">
<i class="fa fa-check"></i> <b>19.3.</b> App盈利
</a>
<ul class="articles">
<li class="chapter " data-level="19.3.1" data-path="distribute/monetization/ads-and-ux.html">
<a href="../../distribute/monetization/ads-and-ux.html">
<i class="fa fa-check"></i> <b>19.3.1.</b> 在不影响用户体验的前提下添加广告
</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="divider"></li>
<li>
<a href="http://www.gitbook.io/" target="blank" class="gitbook-link">Generated using GitBook</a>
</li>
</ul>
</div>
<div class="book-body">
<div class="body-inner">
<div class="page-wrapper" tabindex="-1">
<div class="book-progress">
<div class="bar">
<div class="inner" style="width: 13.636363636363637%;min-width: 13.257575757575758%;"></div>
</div>
<div class="chapters">
<a href="../../index.html" title="序言" class="chapter done new-chapter" data-progress="1" style="left: 0%;"></a>
<a href="../../basics/index.html" title="从这里开始" class="chapter done new-chapter" data-progress="2" style="left: 0.3787878787878788%;"></a>
<a href="../../basics/firstapp/index.html" title="建立你的第一个App" class="chapter done " data-progress="2.1" style="left: 0.7575757575757576%;"></a>
<a href="../../basics/firstapp/creating-project.html" title="创建一个Android项目" class="chapter done " data-progress="2.1.1" style="left: 1.1363636363636365%;"></a>
<a href="../../basics/firstapp/running-app.html" title="执行你的程序" class="chapter done " data-progress="2.1.2" style="left: 1.5151515151515151%;"></a>
<a href="../../basics/firstapp/building-ui.html" title="建立一个简单的用户界面" class="chapter done " data-progress="2.1.3" style="left: 1.893939393939394%;"></a>
<a href="../../basics/firstapp/starting-activity.html" title="启动另外的Activity" class="chapter done " data-progress="2.1.4" style="left: 2.272727272727273%;"></a>
<a href="../../basics/actionbar/index.html" title="添加ActionBar" class="chapter done " data-progress="2.2" style="left: 2.6515151515151514%;"></a>
<a href="../../basics/actionbar/setting-up.html" title="建立ActionBar" class="chapter done " data-progress="2.2.1" style="left: 3.0303030303030303%;"></a>
<a href="../../basics/actionbar/adding-buttons.html" title="添加Action按钮" class="chapter done " data-progress="2.2.2" style="left: 3.409090909090909%;"></a>
<a href="../../basics/actionbar/styling.html" title="ActionBar的风格化" class="chapter done " data-progress="2.2.3" style="left: 3.787878787878788%;"></a>
<a href="../../basics/actionbar/overlaying.html" title="ActionBar的覆盖层叠" class="chapter done " data-progress="2.2.4" style="left: 4.166666666666667%;"></a>
<a href="../../basics/supporting-devices/index.html" title="兼容不同的设备" class="chapter done " data-progress="2.3" style="left: 4.545454545454546%;"></a>
<a href="../../basics/supporting-devices/languages.html" title="适配不同的语言" class="chapter done " data-progress="2.3.1" style="left: 4.924242424242424%;"></a>
<a href="../../basics/supporting-devices/screens.html" title="适配不同的屏幕" class="chapter done " data-progress="2.3.2" style="left: 5.303030303030303%;"></a>
<a href="../../basics/supporting-devices/platforms.html" title="适配不同的系统版本" class="chapter done " data-progress="2.3.3" style="left: 5.681818181818182%;"></a>
<a href="../../basics/activity-lifecycle/index.html" title="管理Activity的生命周期" class="chapter done " data-progress="2.4" style="left: 6.0606060606060606%;"></a>
<a href="../../basics/activity-lifecycle/starting.html" title="启动与销毁Activity" class="chapter done " data-progress="2.4.1" style="left: 6.4393939393939394%;"></a>
<a href="../../basics/activity-lifecycle/pausing.html" title="暂停与恢复Activity" class="chapter done " data-progress="2.4.2" style="left: 6.818181818181818%;"></a>
<a href="../../basics/activity-lifecycle/stopping.html" title="停止与重启Activity" class="chapter done " data-progress="2.4.3" style="left: 7.196969696969697%;"></a>
<a href="../../basics/activity-lifecycle/recreating.html" title="重新创建Activity" class="chapter done " data-progress="2.4.4" style="left: 7.575757575757576%;"></a>
<a href="../../basics/fragments/index.html" title="使用Fragment建立动态的UI" class="chapter done " data-progress="2.5" style="left: 7.954545454545454%;"></a>
<a href="../../basics/fragments/creating.html" title="创建一个Fragment" class="chapter done " data-progress="2.5.1" style="left: 8.333333333333334%;"></a>
<a href="../../basics/fragments/fragment-ui.html" title="建立灵活动态的UI" class="chapter done " data-progress="2.5.2" style="left: 8.712121212121213%;"></a>
<a href="../../basics/fragments/communicating.html" title="Fragments之间的交互" class="chapter done " data-progress="2.5.3" style="left: 9.090909090909092%;"></a>
<a href="../../basics/data-storage/index.html" title="数据保存" class="chapter done " data-progress="2.6" style="left: 9.469696969696969%;"></a>
<a href="../../basics/data-storage/shared-preference.html" title="保存到Preference" class="chapter done " data-progress="2.6.1" style="left: 9.848484848484848%;"></a>
<a href="../../basics/data-storage/files.html" title="保存到文件" class="chapter done " data-progress="2.6.2" style="left: 10.227272727272727%;"></a>
<a href="../../basics/data-storage/database.html" title="保存到数据库" class="chapter done " data-progress="2.6.3" style="left: 10.606060606060606%;"></a>
<a href="../../basics/intents/index.html" title="与其他应用的交互" class="chapter done " data-progress="2.7" style="left: 10.984848484848484%;"></a>
<a href="../../basics/intents/sending.html" title="Intent的发送" class="chapter done " data-progress="2.7.1" style="left: 11.363636363636363%;"></a>
<a href="../../basics/intents/result.html" title="接收Activity返回的结果" class="chapter done " data-progress="2.7.2" style="left: 11.742424242424242%;"></a>
<a href="../../basics/intents/filters.html" title="Intent过滤" class="chapter done " data-progress="2.7.3" style="left: 12.121212121212121%;"></a>
<a href="../../content-sharing/index.html" title="分享" class="chapter done new-chapter" data-progress="3" style="left: 12.5%;"></a>
<a href="../../content-sharing/sharing/index.html" title="分享简单的数据" class="chapter done " data-progress="3.1" style="left: 12.878787878787879%;"></a>
<a href="../../content-sharing/sharing/send.html" title="给其他App发送简单的数据" class="chapter done " data-progress="3.1.1" style="left: 13.257575757575758%;"></a>
<a href="../../content-sharing/sharing/receive.html" title="接收从其他App返回的数据" class="chapter done " data-progress="3.1.2" style="left: 13.636363636363637%;"></a>
<a href="../../content-sharing/sharing/shareaction.html" title="添加一个简便的分享动作" class="chapter " data-progress="3.1.3" style="left: 14.015151515151516%;"></a>
<a href="../../content-sharing/secure-file-sharing/index.html" title="分享文件" class="chapter " data-progress="3.2" style="left: 14.393939393939394%;"></a>
<a href="../../content-sharing/secure-file-sharing/setup-sharing.html" title="建立文件分享" class="chapter " data-progress="3.2.1" style="left: 14.772727272727273%;"></a>
<a href="../../content-sharing/secure-file-sharing/sharing-file.html" title="分享文件" class="chapter " data-progress="3.2.2" style="left: 15.151515151515152%;"></a>
<a href="../../content-sharing/secure-file-sharing/request-file.html" title="请求分享一个文件" class="chapter " data-progress="3.2.3" style="left: 15.530303030303031%;"></a>
<a href="../../content-sharing/secure-file-sharing/retrieve-info.html" title="获取文件信息" class="chapter " data-progress="3.2.4" style="left: 15.909090909090908%;"></a>
<a href="../../content-sharing/beam-files/index.html" title="使用NFC分享文件" class="chapter " data-progress="3.3" style="left: 16.28787878787879%;"></a>
<a href="../../content-sharing/beam-files/sending-files.html" title="发送文件给其他设备" class="chapter " data-progress="3.3.1" style="left: 16.666666666666668%;"></a>
<a href="../../content-sharing/beam-files/receive-files.html" title="接收其他设备的文件" class="chapter " data-progress="3.3.2" style="left: 17.045454545454547%;"></a>
<a href="../../multimedia/index.html" title="多媒体" class="chapter new-chapter" data-progress="4" style="left: 17.424242424242426%;"></a>
<a href="../../multimedia/audio/index.html" title="管理音频播放" class="chapter " data-progress="4.1" style="left: 17.803030303030305%;"></a>
<a href="../../multimedia/audio/volume-playback.html" title="控制你得应用的音量与播放" class="chapter " data-progress="4.1.1" style="left: 18.181818181818183%;"></a>
<a href="../../multimedia/audio/audio-focus.html" title="管理音频焦点" class="chapter " data-progress="4.1.2" style="left: 18.560606060606062%;"></a>
<a href="../../multimedia/audio/audio-output.html" title="兼容音频输出设备" class="chapter " data-progress="4.1.3" style="left: 18.939393939393938%;"></a>
<a href="../../multimedia/camera/index.html" title="拍照" class="chapter " data-progress="4.2" style="left: 19.318181818181817%;"></a>
<a href="../../multimedia/camera/photobasic.html" title="简单的拍照" class="chapter " data-progress="4.2.1" style="left: 19.696969696969695%;"></a>
<a href="../../multimedia/camera/videobasic.html" title="简单的录像" class="chapter " data-progress="4.2.2" style="left: 20.075757575757574%;"></a>
<a href="../../multimedia/camera/cameradirect.html" title="控制相机硬件" class="chapter " data-progress="4.2.3" style="left: 20.454545454545453%;"></a>
<a href="../../multimedia/printing/index.html" title="打印" class="chapter " data-progress="4.3" style="left: 20.833333333333332%;"></a>
<a href="../../multimedia/printing/photos.html" title="打印照片" class="chapter " data-progress="4.3.1" style="left: 21.21212121212121%;"></a>
<a href="../../multimedia/printing/html-docs.html" title="打印HTML文档" class="chapter " data-progress="4.3.2" style="left: 21.59090909090909%;"></a>
<a href="../../multimedia/printing/custom-docs.html" title="打印自定义文档" class="chapter " data-progress="4.3.3" style="left: 21.96969696969697%;"></a>
<a href="../../graphics/index.html" title="图像" class="chapter new-chapter" data-progress="5" style="left: 22.348484848484848%;"></a>
<a href="../../graphics/displaying-bitmaps/index.html" title="高效显示Bitmap" class="chapter " data-progress="5.1" style="left: 22.727272727272727%;"></a>
<a href="../../graphics/displaying-bitmaps/load-bitmap.html" title="高效加载大图" class="chapter " data-progress="5.1.1" style="left: 23.106060606060606%;"></a>
<a href="../../graphics/displaying-bitmaps/process-bitmap.html" title="非UI线程处理Bitmap" class="chapter " data-progress="5.1.2" style="left: 23.484848484848484%;"></a>
<a href="../../graphics/displaying-bitmaps/cache-bitmap.html" title="缓存Bitmap" class="chapter " data-progress="5.1.3" style="left: 23.863636363636363%;"></a>
<a href="../../graphics/displaying-bitmaps/manage-bitmap-memory.html" title="管理Bitmap的内存占用" class="chapter " data-progress="5.1.4" style="left: 24.242424242424242%;"></a>
<a href="../../graphics/displaying-bitmaps/display-bitmap.html" title="在UI上显示Bitmap" class="chapter " data-progress="5.1.5" style="left: 24.62121212121212%;"></a>
<a href="../../graphics/opengl/index.html" title="使用OpenGL ES显示图像" class="chapter " data-progress="5.2" style="left: 25%;"></a>
<a href="../../graphics/opengl/environment.html" title="建立OpenGL ES的环境" class="chapter " data-progress="5.2.1" style="left: 25.37878787878788%;"></a>
<a href="../../graphics/opengl/shapes.html" title="定义Shapes" class="chapter " data-progress="5.2.2" style="left: 25.757575757575758%;"></a>
<a href="../../graphics/opengl/draw.html" title="绘制Shapes" class="chapter " data-progress="5.2.3" style="left: 26.136363636363637%;"></a>
<a href="../../graphics/opengl/projection.html" title="运用投影与相机视图" class="chapter " data-progress="5.2.4" style="left: 26.515151515151516%;"></a>
<a href="../../graphics/opengl/motion.html" title="添加移动" class="chapter " data-progress="5.2.5" style="left: 26.893939393939394%;"></a>
<a href="../../graphics/opengl/touch.html" title="响应触摸事件" class="chapter " data-progress="5.2.6" style="left: 27.272727272727273%;"></a>
<a href="../../animations/index.html" title="动画" class="chapter new-chapter" data-progress="6" style="left: 27.651515151515152%;"></a>
<a href="../../animations/crossfade.html" title="淡入淡出两个View" class="chapter " data-progress="6.1" style="left: 28.03030303030303%;"></a>
<a href="../../animations/screen-slide.html" title="使用ViewPager实现屏幕滑动" class="chapter " data-progress="6.2" style="left: 28.40909090909091%;"></a>
<a href="../../animations/cardflip.html" title="卡片翻转的动画" class="chapter " data-progress="6.3" style="left: 28.78787878787879%;"></a>
<a href="../../animations/zoom.html" title="缩放动画" class="chapter " data-progress="6.4" style="left: 29.166666666666668%;"></a>
<a href="../../animations/layout.html" title="控件切换动画" class="chapter " data-progress="6.5" style="left: 29.545454545454547%;"></a>
<a href="../../connectivity/index.html" title="连接" class="chapter new-chapter" data-progress="7" style="left: 29.924242424242426%;"></a>
<a href="../../connectivity/connect-devices-wireless/index.html" title="无线连接设备" class="chapter " data-progress="7.1" style="left: 30.303030303030305%;"></a>
<a href="../../connectivity/connect-devices-wireless/nsd.html" title="使得网络服务可发现" class="chapter " data-progress="7.1.1" style="left: 30.681818181818183%;"></a>
<a href="../../connectivity/connect-devices-wireless/wifi-direct.html" title="使用WiFi建立P2P连接" class="chapter " data-progress="7.1.2" style="left: 31.060606060606062%;"></a>
<a href="../../connectivity/connect-devices-wireless/nsd-wifi-index.html" title="使用WiFi P2P服务" class="chapter " data-progress="7.1.3" style="left: 31.439393939393938%;"></a>
<a href="../../connectivity/network-ops/index.html" title="网络连接操作" class="chapter " data-progress="7.2" style="left: 31.818181818181817%;"></a>
<a href="../../connectivity/network-ops/connecting.html" title="连接到网络" class="chapter " data-progress="7.2.1" style="left: 32.196969696969695%;"></a>
<a href="../../connectivity/network-ops/managing.html" title="管理使用的网络" class="chapter " data-progress="7.2.2" style="left: 32.57575757575758%;"></a>
<a href="../../connectivity/network-ops/xml.html" title="解析XML数据" class="chapter " data-progress="7.2.3" style="left: 32.95454545454545%;"></a>
<a href="../../connectivity/efficient-downloads/index.html" title="高效下载" class="chapter " data-progress="7.3" style="left: 33.333333333333336%;"></a>
<a href="../../connectivity/efficient-downloads/efficient-network-access.html" title="为网络访问更加高效而优化下载" class="chapter " data-progress="7.3.1" style="left: 33.71212121212121%;"></a>
<a href="../../connectivity/efficient-downloads/regular-update.html" title="最小化更新操作的影响" class="chapter " data-progress="7.3.2" style="left: 34.09090909090909%;"></a>
<a href="../../connectivity/efficient-downloads/redundant-redundant.html" title="避免下载多余的数据" class="chapter " data-progress="7.3.3" style="left: 34.46969696969697%;"></a>
<a href="../../connectivity/efficient-downloads/connectivity-patterns.html" title="根据网络类型改变下载模式" class="chapter " data-progress="7.3.4" style="left: 34.84848484848485%;"></a>
<a href="../../connectivity/sync-adapters/index.html" title="使用Sync Adapter传输数据" class="chapter " data-progress="7.4" style="left: 35.22727272727273%;"></a>
<a href="../../connectivity/sync-adapters/create-authenticator.html" title="创建Stub授权器" class="chapter " data-progress="7.4.1" style="left: 35.60606060606061%;"></a>
<a href="../../connectivity/sync-adapters/create-stub-provider.html" title="创建Stub Content Provider" class="chapter " data-progress="7.4.2" style="left: 35.984848484848484%;"></a>
<a href="../../connectivity/sync-adapters/create-sync-adapter.html" title="创建Sync Adpater" class="chapter " data-progress="7.4.3" style="left: 36.36363636363637%;"></a>
<a href="../../connectivity/sync-adapters/running-sync-adapter.html" title="执行Sync Adpater" class="chapter " data-progress="7.4.4" style="left: 36.74242424242424%;"></a>
<a href="../../connectivity/volley/index.html" title="使用Volley执行网络数据传输" class="chapter " data-progress="7.5" style="left: 37.121212121212125%;"></a>
<a href="../../connectivity/volley/simple.html" title="发送简单的网络请求" class="chapter " data-progress="7.5.1" style="left: 37.5%;"></a>
<a href="../../connectivity/volley/request-queue.html" title="建立请求队列" class="chapter " data-progress="7.5.2" style="left: 37.878787878787875%;"></a>
<a href="../../connectivity/volley/request.html" title="创建标准的网络请求" class="chapter " data-progress="7.5.3" style="left: 38.25757575757576%;"></a>
<a href="../../connectivity/volley/request-custom.html" title="实现自定义的网络请求" class="chapter " data-progress="7.5.4" style="left: 38.63636363636363%;"></a>
<a href="../../cloud/index.html" title="云服务" class="chapter new-chapter" data-progress="8" style="left: 39.015151515151516%;"></a>
<a href="../../cloud/cloudsync/index.html" title="云同步" class="chapter " data-progress="8.1" style="left: 39.39393939393939%;"></a>
<a href="../../cloud/cloudsync/backupapi.html" title="使用备份API" class="chapter " data-progress="8.1.1" style="left: 39.77272727272727%;"></a>
<a href="../../cloud/cloudsync/gcm.html" title="使用Google Cloud Messaging" class="chapter " data-progress="8.1.2" style="left: 40.15151515151515%;"></a>
<a href="../../cloud/cloudsave/index.html" title="解决云同步的保存冲突" class="chapter " data-progress="8.2" style="left: 40.53030303030303%;"></a>
<a href="../../contacts-provider/index.html" title="用户信息" class="chapter new-chapter" data-progress="9" style="left: 40.90909090909091%;"></a>
<a href="../../contacts-provider/retrieve-names.html" title="获取联系人列表" class="chapter " data-progress="9.1" style="left: 41.28787878787879%;"></a>
<a href="../../contacts-provider/retrieve-detail.html" title="获取联系人详情" class="chapter " data-progress="9.2" style="left: 41.666666666666664%;"></a>
<a href="../../contacts-provider/modify-data.html" title="修改联系人信息" class="chapter " data-progress="9.3" style="left: 42.04545454545455%;"></a>
<a href="../../contacts-provider/display-badge.html" title="显示联系人头像" class="chapter " data-progress="9.4" style="left: 42.42424242424242%;"></a>
<a href="../../location/index.html" title="位置信息" class="chapter " data-progress="10" style="left: 42.803030303030305%;"></a>
<a href="../../location/retrieve-current.html" title="获取当前位置" class="chapter " data-progress="10.1" style="left: 43.18181818181818%;"></a>
<a href="../../location/retrieve-location-updates.html" title="获取位置更新" class="chapter " data-progress="10.2" style="left: 43.56060606060606%;"></a>
<a href="../../location/display-address.html" title="显示位置地址" class="chapter " data-progress="10.3" style="left: 43.93939393939394%;"></a>
<a href="../../location/geofencing.html" title="创建并监视异常区域" class="chapter " data-progress="10.4" style="left: 44.31818181818182%;"></a>
<a href="../../location/activity-recognition.html" title="识别用户的当下活动" class="chapter " data-progress="10.5" style="left: 44.696969696969695%;"></a>
<a href="../../location/location-testing.html" title="使用模拟位置进行测试" class="chapter " data-progress="10.6" style="left: 45.07575757575758%;"></a>
<a href="../../wearables/index.html" title="可穿戴" class="chapter " data-progress="11" style="left: 45.45454545454545%;"></a>
<a href="../../wearables/notifications/index.html" title="赋予Notification可穿戴的特性" class="chapter " data-progress="11.1" style="left: 45.833333333333336%;"></a>
<a href="../../wearables/notifications/creating.html" title="创建一个Notification" class="chapter " data-progress="11.1.1" style="left: 46.21212121212121%;"></a>
<a href="../../wearables/notifications/voice-input.html" title="在Notifcation中接收语言输入" class="chapter " data-progress="11.1.2" style="left: 46.59090909090909%;"></a>
<a href="../../wearables/notifications/pages.html" title="为Notification添加显示页面" class="chapter " data-progress="11.1.3" style="left: 46.96969696969697%;"></a>
<a href="../../wearables/notifications/stacks.html" title="以Stack的方式显示Notifications" class="chapter " data-progress="11.1.4" style="left: 47.34848484848485%;"></a>
<a href="../../wearables/apps/index.html" title="创建可穿戴的应用" class="chapter " data-progress="11.2" style="left: 47.72727272727273%;"></a>
<a href="../../wearables/apps/creating.html" title="创建并运行一个可穿戴的应用" class="chapter " data-progress="11.2.1" style="left: 48.10606060606061%;"></a>
<a href="../../wearables/apps/layouts.html" title="创建自定义的布局" class="chapter " data-progress="11.2.2" style="left: 48.484848484848484%;"></a>
<a href="../../wearables/apps/voice.html" title="添加语音能力" class="chapter " data-progress="11.2.3" style="left: 48.86363636363637%;"></a>
<a href="../../wearables/apps/packaging.html" title="打包可穿戴应用" class="chapter " data-progress="11.2.4" style="left: 49.24242424242424%;"></a>
<a href="../../wearables/apps/bt-debugging.html" title="通过蓝牙进行调试" class="chapter " data-progress="11.2.5" style="left: 49.621212121212125%;"></a>
<a href="../../wearables/data-layer/index.html" title="发送并同步数据" class="chapter " data-progress="11.3" style="left: 50%;"></a>
<a href="../../wearables/data-layer/accessing.html" title="访问可穿戴数据层" class="chapter " data-progress="11.3.1" style="left: 50.378787878787875%;"></a>
<a href="../../wearables/data-layer/data-items.html" title="同步数据单元" class="chapter " data-progress="11.3.2" style="left: 50.75757575757576%;"></a>
<a href="../../wearables/data-layer/assets.html" title="传输资源" class="chapter " data-progress="11.3.3" style="left: 51.13636363636363%;"></a>
<a href="../../wearables/data-layer/messages.html" title="发送与接收消息" class="chapter " data-progress="11.3.4" style="left: 51.515151515151516%;"></a>
<a href="../../wearables/data-layer/events.html" title="处理数据层的事件" class="chapter " data-progress="11.3.5" style="left: 51.89393939393939%;"></a>
<a href="../../ux/index.html" title="交互" class="chapter " data-progress="12" style="left: 52.27272727272727%;"></a>
<a href="../../ux/design-nav/index.html" title="设计高效的导航" class="chapter " data-progress="12.1" style="left: 52.65151515151515%;"></a>
<a href="../../ux/design-nav/screen-planning.html" title="规划屏幕界面与他们之间的关系" class="chapter " data-progress="12.1.1" style="left: 53.03030303030303%;"></a>
<a href="../../ux/design-nav/multi-sizes.html" title="为多种大小的屏幕进行规划" class="chapter " data-progress="12.1.2" style="left: 53.40909090909091%;"></a>
<a href="../../ux/design-nav/descendant-lateral.html" title="提供向下与侧滑的导航" class="chapter " data-progress="12.1.3" style="left: 53.78787878787879%;"></a>
<a href="../../ux/design-nav/ancestral-temporal.html" title="提供向上与暂时的导航" class="chapter " data-progress="12.1.4" style="left: 54.166666666666664%;"></a>
<a href="../../ux/design-nav/wireframing.html" title="综合上面所有的导航" class="chapter " data-progress="12.1.5" style="left: 54.54545454545455%;"></a>
<a href="../../ux/implement-nav/index.html" title="实现高效的导航" class="chapter " data-progress="12.2" style="left: 54.92424242424242%;"></a>
<a href="../../ux/implement-nav/lateral.html" title="使用Tabs创建Swipe视图" class="chapter " data-progress="12.2.1" style="left: 55.303030303030305%;"></a>
<a href="../../ux/implement-nav/nav-drawer.html" title="创建抽屉导航" class="chapter " data-progress="12.2.2" style="left: 55.68181818181818%;"></a>
<a href="../../ux/implement-nav/ancestral.html" title="提供向上的导航" class="chapter " data-progress="12.2.3" style="left: 56.06060606060606%;"></a>
<a href="../../ux/implement-nav/temporal.html" title="提供向后的导航" class="chapter " data-progress="12.2.4" style="left: 56.43939393939394%;"></a>
<a href="../../ux/implement-nav/descendant.html" title="实现向下的导航" class="chapter " data-progress="12.2.5" style="left: 56.81818181818182%;"></a>
<a href="../../ux/notify-user/index.html" title="通知提示用户" class="chapter " data-progress="12.3" style="left: 57.196969696969695%;"></a>
<a href="../../ux/notify-user/build-notification.html" title="建立Notification" class="chapter " data-progress="12.3.1" style="left: 57.57575757575758%;"></a>
<a href="../../ux/notify-user/nav.html" title="当启动Activity时保留导航" class="chapter " data-progress="12.3.2" style="left: 57.95454545454545%;"></a>
<a href="../../ux/notify-user/update-notification.html" title="更新Notification" class="chapter " data-progress="12.3.3" style="left: 58.333333333333336%;"></a>
<a href="../../ux/notify-user/expand-notification.html" title="使用BigView风格" class="chapter " data-progress="12.3.4" style="left: 58.71212121212121%;"></a>
<a href="../../ux/notify-user/progess-notification.html" title="显示Notification进度" class="chapter " data-progress="12.3.5" style="left: 59.09090909090909%;"></a>
<a href="../../ux/search/index.html" title="增加搜索功能" class="chapter " data-progress="12.4" style="left: 59.46969696969697%;"></a>
<a href="../../ux/search/setup.html" title="建立搜索界面" class="chapter " data-progress="12.4.1" style="left: 59.84848484848485%;"></a>
<a href="../../ux/search/search.html" title="保存并搜索数据" class="chapter " data-progress="12.4.2" style="left: 60.22727272727273%;"></a>
<a href="../../ux/search/back-compat.html" title="保持向下兼容" class="chapter " data-progress="12.4.3" style="left: 60.60606060606061%;"></a>
<a href="../../ux/app-indexing/index.html" title="使得你的App内容可被Google搜索" class="chapter " data-progress="12.5" style="left: 60.984848484848484%;"></a>
<a href="../../ux/app-indexing/deep-linking.html" title="为App内容开启深度链接" class="chapter " data-progress="12.5.1" style="left: 61.36363636363637%;"></a>
<a href="../../ux/app-indexing/enable-app-indexing.html" title="为索引指定App内容" class="chapter " data-progress="12.5.2" style="left: 61.74242424242424%;"></a>
<a href="../../ui/index.html" title="UI" class="chapter " data-progress="13" style="left: 62.121212121212125%;"></a>
<a href="../../ui/multiscreen/index.html" title="为多屏幕设计" class="chapter " data-progress="13.1" style="left: 62.5%;"></a>
<a href="../../ui/multiscreen/screen-sizes.html" title="兼容不同的屏幕大小" class="chapter " data-progress="13.1.1" style="left: 62.878787878787875%;"></a>
<a href="../../ui/multiscreen/screen-desities.html" title="兼容不同的屏幕密度" class="chapter " data-progress="13.1.2" style="left: 63.25757575757576%;"></a>
<a href="../../ui/multiscreen/adapt-ui.html" title="实现可适应的UI" class="chapter " data-progress="13.1.3" style="left: 63.63636363636363%;"></a>
<a href="../../ui/tv/index.html" title="为TV进行设计" class="chapter " data-progress="13.2" style="left: 64.01515151515152%;"></a>
<a href="../../ui/tv/optimize-layouts-tv.html" title="为TV优化Layout" class="chapter " data-progress="13.2.1" style="left: 64.39393939393939%;"></a>
<a href="../../ui/tv/optimize-nav-tv.html" title="为TV优化导航" class="chapter " data-progress="13.2.2" style="left: 64.77272727272727%;"></a>
<a href="../../ui/tv/unsupport-features-tv.html" title="处理不支持TV的功能" class="chapter " data-progress="13.2.3" style="left: 65.15151515151516%;"></a>
<a href="../../ui/custom-view/index.html" title="创建自定义View" class="chapter " data-progress="13.3" style="left: 65.53030303030303%;"></a>
<a href="../../ui/custom-view/create-view.html" title="创建自定义的View类" class="chapter " data-progress="13.3.1" style="left: 65.9090909090909%;"></a>
<a href="../../ui/custom-view/custom-draw.html" title="实现自定义View的绘制" class="chapter " data-progress="13.3.2" style="left: 66.28787878787878%;"></a>
<a href="../../ui/custom-view/make-interactive.html" title="使得View可交互" class="chapter " data-progress="13.3.3" style="left: 66.66666666666667%;"></a>
<a href="../../ui/custom-view/optimize-view.html" title="优化自定义View" class="chapter " data-progress="13.3.4" style="left: 67.04545454545455%;"></a>
<a href="../../ui/backward-compatible-ui/index.html" title="创建向后兼容的UI" class="chapter " data-progress="13.4" style="left: 67.42424242424242%;"></a>
<a href="../../ui/backward-compatible-ui/abstract.html" title="抽象新的APIs" class="chapter " data-progress="13.4.1" style="left: 67.8030303030303%;"></a>
<a href="../../ui/backward-compatible-ui/new-impl.html" title="代理至新的APIs" class="chapter " data-progress="13.4.2" style="left: 68.18181818181819%;"></a>
<a href="../../ui/backward-compatible-ui/older-impl.html" title="使用旧的APIs实现新API的效果" class="chapter " data-progress="13.4.3" style="left: 68.56060606060606%;"></a>
<a href="../../ui/backward-compatible-ui/using-component.html" title="使用版本敏感的组件" class="chapter " data-progress="13.4.4" style="left: 68.93939393939394%;"></a>
<a href="../../ui/accessibility/index.html" title="实现辅助功能" class="chapter " data-progress="13.5" style="left: 69.31818181818181%;"></a>
<a href="../../ui/accessibility/accessible-app.html" title="开发辅助程序" class="chapter " data-progress="13.5.1" style="left: 69.6969696969697%;"></a>
<a href="../../ui/accessibility/accessible-service.html" title="开发辅助服务" class="chapter " data-progress="13.5.2" style="left: 70.07575757575758%;"></a>
<a href="../../ui/system-ui/index.html" title="管理系统UI" class="chapter " data-progress="13.6" style="left: 70.45454545454545%;"></a>
<a href="../../ui/system-ui/dim.html" title="淡化系统Bar" class="chapter " data-progress="13.6.1" style="left: 70.83333333333333%;"></a>
<a href="../../ui/system-ui/hide-ui.html" title="隐藏系统Bar" class="chapter " data-progress="13.6.2" style="left: 71.21212121212122%;"></a>
<a href="../../ui/system-ui/hide-nav.html" title="隐藏导航Bar" class="chapter " data-progress="13.6.3" style="left: 71.5909090909091%;"></a>
<a href="../../ui/system-ui/immersive.html" title="全屏沉浸式应用" class="chapter " data-progress="13.6.4" style="left: 71.96969696969697%;"></a>
<a href="../../ui/system-ui/visibility.html" title="响应UI可见性的变化" class="chapter " data-progress="13.6.5" style="left: 72.34848484848484%;"></a>
<a href="../../input/index.html" title="用户输入" class="chapter " data-progress="14" style="left: 72.72727272727273%;"></a>
<a href="../../input/gestures/index.html" title="使用触摸手势" class="chapter " data-progress="14.1" style="left: 73.10606060606061%;"></a>
<a href="../../input/gestures/detector.html" title="检测常用的手势" class="chapter " data-progress="14.1.1" style="left: 73.48484848484848%;"></a>
<a href="../../input/gestures/movement.html" title="跟踪手势移动" class="chapter " data-progress="14.1.2" style="left: 73.86363636363636%;"></a>
<a href="../../input/gestures/scroll.html" title="Scroll手势动画" class="chapter " data-progress="14.1.3" style="left: 74.24242424242425%;"></a>
<a href="../../input/gestures/multi.html" title="处理多触摸手势" class="chapter " data-progress="14.1.4" style="left: 74.62121212121212%;"></a>
<a href="../../input/gestures/scale.html" title="拖拽与缩放" class="chapter " data-progress="14.1.5" style="left: 75%;"></a>
<a href="../../input/gestures/viewgroup.html" title="管理ViewGroup中的触摸事件" class="chapter " data-progress="14.1.6" style="left: 75.37878787878788%;"></a>
<a href="../../input/keyboard-input/index.html" title="处理键盘输入" class="chapter " data-progress="14.2" style="left: 75.75757575757575%;"></a>
<a href="../../input/keyboard-input/type.html" title="指定输入法类型" class="chapter " data-progress="14.2.1" style="left: 76.13636363636364%;"></a>
<a href="../../input/keyboard-input/visibility.html" title="处理输入法可见性" class="chapter " data-progress="14.2.2" style="left: 76.51515151515152%;"></a>
<a href="../../input/keyboard-input/navigation.html" title="兼容硬件导航" class="chapter " data-progress="14.2.3" style="left: 76.89393939393939%;"></a>
<a href="../../input/keyboard-input/commands.html" title="处理输入命令" class="chapter " data-progress="14.2.4" style="left: 77.27272727272727%;"></a>
<a href="../../input/game-controller/index.html" title="兼容游戏控制器" class="chapter " data-progress="14.3" style="left: 77.65151515151516%;"></a>
<a href="../../input/game-controller/controller-inputs.html" title="处理控制器输入动作" class="chapter " data-progress="14.3.1" style="left: 78.03030303030303%;"></a>
<a href="../../input/game-controller/compatibility.html" title="支持不同的Android系统版本" class="chapter " data-progress="14.3.2" style="left: 78.4090909090909%;"></a>
<a href="../../input/game-controller/multi-controller.html" title="支持多个控制器" class="chapter " data-progress="14.3.3" style="left: 78.78787878787878%;"></a>
<a href="../../background-jobs/index.html" title="后台任务" class="chapter " data-progress="15" style="left: 79.16666666666667%;"></a>
<a href="../../background-jobs/run-background-service/index.html" title="在IntentService中执行后台任务" class="chapter " data-progress="15.1" style="left: 79.54545454545455%;"></a>
<a href="../../background-jobs/run-background-service/create-service.html" title="创建IntentService" class="chapter " data-progress="15.1.1" style="left: 79.92424242424242%;"></a>
<a href="../../background-jobs/run-background-service/send-request.html" title="发送工作任务到IntentService" class="chapter " data-progress="15.1.2" style="left: 80.3030303030303%;"></a>
<a href="../../background-jobs/run-background-service/report-status.html" title="报告后台任务执行状态" class="chapter " data-progress="15.1.3" style="left: 80.68181818181819%;"></a>
<a href="../../background-jobs/load-data-background/index.html" title="使用CursorLoader在后台加载数据" class="chapter " data-progress="15.2" style="left: 81.06060606060606%;"></a>
<a href="../../background-jobs/load-data-background/setup-loader.html" title="使用CursorLoader执行查询任务" class="chapter " data-progress="15.2.1" style="left: 81.43939393939394%;"></a>
<a href="../../background-jobs/load-data-background/handle-result.html" title="处理查询的结果" class="chapter " data-progress="15.2.2" style="left: 81.81818181818181%;"></a>
<a href="../../background-jobs/scheduling/index.html" title="管理设备的唤醒状态" class="chapter " data-progress="15.3" style="left: 82.1969696969697%;"></a>
<a href="../../background-jobs/scheduling/wake-lock.html" title="保持设备的唤醒" class="chapter " data-progress="15.3.1" style="left: 82.57575757575758%;"></a>
<a href="../../background-jobs/scheduling/alarms.html" title="制定重复定时的任务" class="chapter " data-progress="15.3.2" style="left: 82.95454545454545%;"></a>
<a href="../../performance/index.html" title="性能优化" class="chapter " data-progress="16" style="left: 83.33333333333333%;"></a>
<a href="../../performance/memory.html" title="管理应用的内存" class="chapter " data-progress="16.1" style="left: 83.71212121212122%;"></a>
<a href="../../performance/performance-tips.html" title="性能优化Tips" class="chapter " data-progress="16.2" style="left: 84.0909090909091%;"></a>
<a href="../../performance/improving-layouts/index.html" title="提升Layout的性能" class="chapter " data-progress="16.3" style="left: 84.46969696969697%;"></a>
<a href="../../performance/improving-layouts/optimizing-layout.html" title="优化layout的层级" class="chapter " data-progress="16.3.1" style="left: 84.84848484848484%;"></a>
<a href="../../performance/improving-layouts/reuse-layouts.html" title="使用include标签重用layouts" class="chapter " data-progress="16.3.2" style="left: 85.22727272727273%;"></a>
<a href="../../performance/improving-layouts/loading-ondemand.html" title="按需加载视图" class="chapter " data-progress="16.3.3" style="left: 85.60606060606061%;"></a>
<a href="../../performance/improving-layouts/smooth-scrolling.html" title="使得ListView滑动顺畅" class="chapter " data-progress="16.3.4" style="left: 85.98484848484848%;"></a>
<a href="../../performance/monitor-device-state/index.html" title="优化电池寿命" class="chapter " data-progress="16.4" style="left: 86.36363636363636%;"></a>
<a href="../../performance/monitor-device-state/battery-monitor.html" title="监测电量与充电状态" class="chapter " data-progress="16.4.1" style="left: 86.74242424242425%;"></a>
<a href="../../performance/monitor-device-state/docking-monitor.html" title="判断与监测Docking状态" class="chapter " data-progress="16.4.2" style="left: 87.12121212121212%;"></a>
<a href="../../performance/monitor-device-state/connectivity-monitor.html" title="判断与监测网络连接状态" class="chapter " data-progress="16.4.3" style="left: 87.5%;"></a>
<a href="../../performance/monitor-device-state/manifest-receivers.html" title="根据需要操作Broadcast接受者" class="chapter " data-progress="16.4.4" style="left: 87.87878787878788%;"></a>
<a href="../../performance/multi-threads/index.html" title="多线程操作" class="chapter " data-progress="16.5" style="left: 88.25757575757575%;"></a>
<a href="../../performance/multi-threads/define-runnable.html" title="指定一段代码执行在一个线程" class="chapter " data-progress="16.5.1" style="left: 88.63636363636364%;"></a>
<a href="../../performance/multi-threads/create-threadpool.html" title="为多线程创建线程池" class="chapter " data-progress="16.5.2" style="left: 89.01515151515152%;"></a>
<a href="../../performance/multi-threads/run-code.html" title="执行代码运行在线程池中" class="chapter " data-progress="16.5.3" style="left: 89.39393939393939%;"></a>
<a href="../../performance/multi-threads/communicate-ui.html" title="与UI线程进行交互" class="chapter " data-progress="16.5.4" style="left: 89.77272727272727%;"></a>
<a href="../../performance/perf-anr/index.html" title="避免出现程序无响应ANR" class="chapter " data-progress="16.6" style="left: 90.15151515151516%;"></a>
<a href="../../performance/perf-jni/index.html" title="JNI Tips" class="chapter " data-progress="16.7" style="left: 90.53030303030303%;"></a>
<a href="../../performance/smp/index.html" title="SMP for Android" class="chapter " data-progress="16.8" style="left: 90.9090909090909%;"></a>
<a href="../../security/index.html" title="安全与隐私" class="chapter " data-progress="17" style="left: 91.28787878787878%;"></a>
<a href="../../security/security-tips.html" title="Security Tips" class="chapter " data-progress="17.1" style="left: 91.66666666666667%;"></a>
<a href="../../security/security-ssl.html" title="使用HTTPS与SSL" class="chapter " data-progress="17.2" style="left: 92.04545454545455%;"></a>
<a href="../../security/enterprise.html" title="企业版App" class="chapter " data-progress="17.3" style="left: 92.42424242424242%;"></a>
<a href="../../testing/index.html" title="测试程序" class="chapter " data-progress="18" style="left: 92.8030303030303%;"></a>
<a href="../../testing/activity-testing/index.html" title="测试你的Activity" class="chapter " data-progress="18.1" style="left: 93.18181818181819%;"></a>
<a href="../../testing/activity-testing/prepare-activity-testing.html" title="建立测试环境" class="chapter " data-progress="18.1.1" style="left: 93.56060606060606%;"></a>
<a href="../../testing/activity-testing/activity-basic-testing.html" title="创建与执行测试用例" class="chapter " data-progress="18.1.2" style="left: 93.93939393939394%;"></a>
<a href="../../testing/activity-testing/activity-ui-testing.html" title="测试UI组件" class="chapter " data-progress="18.1.3" style="left: 94.31818181818181%;"></a>
<a href="../../testing/activity-testing/activity-unit-testing.html" title="创建单元测试" class="chapter " data-progress="18.1.4" style="left: 94.6969696969697%;"></a>
<a href="../../testing/activity-testing/activity-function-testing.html" title="创建功能测试" class="chapter " data-progress="18.1.5" style="left: 95.07575757575758%;"></a>
<a href="../../distribute/index.html" title="分发与盈利" class="chapter " data-progress="19" style="left: 95.45454545454545%;"></a>
<a href="../../distribute/in-app-billing/index.html" title="售卖App内置产品" class="chapter " data-progress="19.1" style="left: 95.83333333333333%;"></a>
<a href="../../distribute/in-app-billing/prepare-iab-app.html" title="准备你的App" class="chapter " data-progress="19.1.1" style="left: 96.21212121212122%;"></a>
<a href="../../distribute/in-app-billing/list-iab-products.html" title="建立售卖的产品" class="chapter " data-progress="19.1.2" style="left: 96.5909090909091%;"></a>
<a href="../../distribute/in-app-billing/purchase-iab-products.html" title="购买产品" class="chapter " data-progress="19.1.3" style="left: 96.96969696969697%;"></a>
<a href="../../distribute/in-app-billing/test-iab-app.html" title="测试你的App" class="chapter " data-progress="19.1.4" style="left: 97.34848484848484%;"></a>
<a href="../../distribute/multi-apks/index.html" title="维护多个APK" class="chapter " data-progress="19.2" style="left: 97.72727272727273%;"></a>
<a href="../../distribute/multi-apks/api.html" title="为不同API Level创建多个APK" class="chapter " data-progress="19.2.1" style="left: 98.10606060606061%;"></a>
<a href="../../distribute/multi-apks/screen-size.html" title="为不同屏幕大小创建多个APK" class="chapter " data-progress="19.2.2" style="left: 98.48484848484848%;"></a>
<a href="../../distribute/multi-apks/texture.html" title="为不同的GL Texture创建多个APK" class="chapter " data-progress="19.2.3" style="left: 98.86363636363636%;"></a>
<a href="../../distribute/multi-apks/multiple.html" title="为2种以上的维度创建多个APK" class="chapter " data-progress="19.2.4" style="left: 99.24242424242425%;"></a>
<a href="../../distribute/monetization/index.html" title="App盈利" class="chapter " data-progress="19.3" style="left: 99.62121212121212%;"></a>
<a href="../../distribute/monetization/ads-and-ux.html" title="在不影响用户体验的前提下添加广告" class="chapter " data-progress="19.3.1" style="left: 100%;"></a>
</div>
</div>
<div class="page-inner">
<section class="normal" id="section-gitbook_120">
<blockquote>
<p>编写:<a href="https://github.com/kesenhoo" target="_blank">kesenhoo</a></p>
<p>校对:</p>
</blockquote>
<h1 id="-app-">接收从其他App返回的数据</h1>
<p>就像你的程序能够发送数据到其他程序一样,其他程序也能够方便的接收发送过来的数据。需要考虑的是用户与你的程序如何进行交互,你想要从其他程序接收哪些数据类型。例如,一个社交网络程序会希望能够从其他程序接受文本数据,像一个有趣的网址链接。Google+的Android客户端会接受文本数据与单张或者多张图片。用这个app,用户可以简单的从Gallery程序选择一张图片来启动Google+进行发布。</p>
<p><!-- more --></p>
<h2 id="update-your-manifest-manifest-">Update Your Manifest[更新你的manifest文件]</h2>
<p>Intent filters通知了Android系统说,一个程序会接受哪些数据。像上一课一样,你可以创建intent filters来表明程序能够接收哪些action。下面是个例子,对三个activit分别指定接受单张图片,文本与多张图片。(这里有不清楚Intent filter的,请参考<a href="http://developer.android.com/guide/topics/intents/intents-filters.html#ifs" target="_blank">Intents and Intent Filters</a>)</p>
<pre><code class="lang-xml"><span class="hljs-tag"><<span class="hljs-title">activity</span> <span class="hljs-attribute">android:name</span>=<span class="hljs-value">".ui.MyActivity"</span> ></span>
<span class="hljs-tag"><<span class="hljs-title">intent-filter</span>></span>
<span class="hljs-tag"><<span class="hljs-title">action</span> <span class="hljs-attribute">android:name</span>=<span class="hljs-value">"android.intent.action.SEND"</span> /></span>
<span class="hljs-tag"><<span class="hljs-title">category</span> <span class="hljs-attribute">android:name</span>=<span class="hljs-value">"android.intent.category.DEFAULT"</span> /></span>
<span class="hljs-tag"><<span class="hljs-title">data</span> <span class="hljs-attribute">android:mimeType</span>=<span class="hljs-value">"image/*"</span> /></span>
<span class="hljs-tag"></<span class="hljs-title">intent-filter</span>></span>
<span class="hljs-tag"><<span class="hljs-title">intent-filter</span>></span>
<span class="hljs-tag"><<span class="hljs-title">action</span> <span class="hljs-attribute">android:name</span>=<span class="hljs-value">"android.intent.action.SEND"</span> /></span>
<span class="hljs-tag"><<span class="hljs-title">category</span> <span class="hljs-attribute">android:name</span>=<span class="hljs-value">"android.intent.category.DEFAULT"</span> /></span>
<span class="hljs-tag"><<span class="hljs-title">data</span> <span class="hljs-attribute">android:mimeType</span>=<span class="hljs-value">"text/plain"</span> /></span>
<span class="hljs-tag"></<span class="hljs-title">intent-filter</span>></span>
<span class="hljs-tag"><<span class="hljs-title">intent-filter</span>></span>
<span class="hljs-tag"><<span class="hljs-title">action</span> <span class="hljs-attribute">android:name</span>=<span class="hljs-value">"android.intent.action.SEND_MULTIPLE"</span> /></span>
<span class="hljs-tag"><<span class="hljs-title">category</span> <span class="hljs-attribute">android:name</span>=<span class="hljs-value">"android.intent.category.DEFAULT"</span> /></span>
<span class="hljs-tag"><<span class="hljs-title">data</span> <span class="hljs-attribute">android:mimeType</span>=<span class="hljs-value">"image/*"</span> /></span>
<span class="hljs-tag"></<span class="hljs-title">intent-filter</span>></span>
<span class="hljs-tag"></<span class="hljs-title">activity</span>></span>
</code></pre>
<p>当另外一个程序尝试分享一些东西的时候,你的程序会被呈现在一个列表里面让用户进行选择。如果用户选择了你的程序,相应的activity就应该被调用开启,这个时候就是你如何处理获取到的数据的问题了。</p>
<h2 id="handle-the-incoming-content-">Handle the Incoming Content[处理接受到的数据]</h2>
<p>为了处理从Intent带过来的数据,可以通过调用getIntent()方法来获取到Intent对象。一旦你拿到这个对象,你可以对里面的数据进行判断,从而决定下一步应该做什么。请记住,如果一个activity可以被其他的程序启动,你需要在检查intent的时候考虑这种情况(是被其他程序而调用启动的)。</p>
<pre><code class="lang-java"><span class="hljs-keyword">void</span> onCreate (Bundle savedInstanceState) {
...
<span class="hljs-comment">// Get intent, action and MIME type</span>
Intent intent = getIntent();
String action = intent.getAction();
String type = intent.getType();
<span class="hljs-keyword">if</span> (Intent.ACTION_SEND.equals(action) && type != <span class="hljs-keyword">null</span>) {
<span class="hljs-keyword">if</span> (<span class="hljs-string">"text/plain"</span>.equals(type)) {
handleSendText(intent); <span class="hljs-comment">// Handle text being sent</span>
} <span class="hljs-keyword">else</span> <span class="hljs-keyword">if</span> (type.startsWith(<span class="hljs-string">"image/"</span>)) {
handleSendImage(intent); <span class="hljs-comment">// Handle single image being sent</span>
}
} <span class="hljs-keyword">else</span> <span class="hljs-keyword">if</span> (Intent.ACTION_SEND_MULTIPLE.equals(action) && type != <span class="hljs-keyword">null</span>) {
<span class="hljs-keyword">if</span> (type.startsWith(<span class="hljs-string">"image/"</span>)) {
handleSendMultipleImages(intent); <span class="hljs-comment">// Handle multiple images being sent</span>
}
} <span class="hljs-keyword">else</span> {
<span class="hljs-comment">// Handle other intents, such as being started from the home screen</span>
}
...
}
<span class="hljs-keyword">void</span> handleSendText(Intent intent) {
String sharedText = intent.getStringExtra(Intent.EXTRA_TEXT);
<span class="hljs-keyword">if</span> (sharedText != <span class="hljs-keyword">null</span>) {
<span class="hljs-comment">// Update UI to reflect text being shared</span>
}
}
<span class="hljs-keyword">void</span> handleSendImage(Intent intent) {
Uri imageUri = (Uri) intent.getParcelableExtra(Intent.EXTRA_STREAM);
<span class="hljs-keyword">if</span> (imageUri != <span class="hljs-keyword">null</span>) {
<span class="hljs-comment">// Update UI to reflect image being shared</span>
}
}
<span class="hljs-keyword">void</span> handleSendMultipleImages(Intent intent) {
ArrayList<Uri> imageUris = intent.getParcelableArrayListExtra(Intent.EXTRA_STREAM);
<span class="hljs-keyword">if</span> (imageUris != <span class="hljs-keyword">null</span>) {
<span class="hljs-comment">// Update UI to reflect multiple images being shared</span>
}
}
</code></pre>
<p>请注意,因为你无法知道其他程序发送过来的数据内容是文本还是其他的数据,因此你需要避免在UI线程里面去处理那些获取到的数据。
更新UI可以像更新EditText一样简单,也可以是更加复杂一点的操作,例如过滤出感兴趣的图片。It's really specific to your application what happens next.</p>
</section>
</div>
</div>
</div>
<a href="../../content-sharing/sharing/send.html" class="navigation navigation-prev " aria-label="Previous page: 给其他App发送简单的数据"><i class="fa fa-angle-left"></i></a>
<a href="../../content-sharing/sharing/shareaction.html" class="navigation navigation-next " aria-label="Next page: 添加一个简便的分享动作"><i class="fa fa-angle-right"></i></a>
</div>
</div>
<script src="../../gitbook/jsrepl/jsrepl.js" id="jsrepl-script"></script>
<script src="../../gitbook/app.js"></script>
<script src="http://cdn.mathjax.org/mathjax/2.0-latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script src="../../gitbook/plugins/gitbook-plugin-mathjax/plugin.js"></script>
<script>
require(["gitbook"], function(gitbook) {
var config = {};
gitbook.start(config);
});
</script>
</body>
</html>
|
PrototypeDesign/adminmeeting/meetingroomalter.html | MaisonWan/OA | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"/>
<link type="text/css" rel="stylesheet" rev="stylesheet" href="../css/general_style.css"/>
<script type="text/javascript" src="../js/adminmenu.js"></script>
<script>
function msg(msg)
{
alert(msg);
}
function goto(url)
{
window.location.replace(url);
}
</script>
<title>OA°ì¹«ÏµÍ³°ì¹«ÊÒÐÞ¸Ä</title></head>
<body>
<div id="head"></div>
<div id="nav">
<script type="text/javascript" language="javascript"> mwritetodocument();</script>
</div>
<div id="content">
<div id="content" style="font-size:13px;">
<div style="color: #FFFFFF; padding-top: 4px;">µ±Ç°Î»ÖÃ->»áÒéÊÒÐÞ¸Ä</div>
<hr class="line"><div style="margin:'margin-center'">
<table width="650" align="center" cellpadding="0" cellspacing="0" id="myMessageTable">
<tr>
<td colspan="2" height="28" bgcolor="#faf67c"><strong>»áÒéÊÒÐÞ¸Ä</strong></td>
</tr>
<tr>
<td width="100" height="30" align="right" bgcolor="#EBEBEB">񅧏:</td>
<td width="548" bgcolor="#EBEBEB">001<font color="#FF0000">*</font></td>
</tr>
<tr>
<td height="30" align="right" bgcolor="#EBEBEB">Ãû³Æ:</td>
<td bgcolor="#EBEBEB"><input type="text" id="clerkName" name="clerkName" value="A201" />
<font color="#FF0000"> *</font></td>
</tr>
<tr>
<td height="30" align="right" bgcolor="#EBEBEB">¿ÉÈÝÄÉÈËÊý:</td>
<td bgcolor="#EBEBEB"><input name="messageTitle" type="text" id="messageTitle" value="50" />ÈË</td>
</tr>
<tr>
<td height="200" align="right" bgcolor="#EBEBEB">±¸×¢:</td>
<td bgcolor="#EBEBEB"><textarea name="messageContent" cols="70" rows="10" id="messageContent" >É豸Á¼ºÃ£¬¿Õµ÷ÓйÊÕÏ</textarea></td>
</tr>
<tr>
<td height="28" bgcolor="#EBEBEB"> </td>
<td bgcolor="#EBEBEB">
<input name="submit1" type="button" class="longButton" value="ÐÞ¸Ä" onclick="msg('Ð޸ijɹ¦£¡');goto('managerroom.html')" />
</td>
</tr>
</table>
</div>
<div id="bottom"></div>
</body>
</html>
|
html/team4eval/point 10 c d3/archpedi.jamanetwork.com.html | USCDataScience/polar.usc.edu |
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<style>
body {
font: 10px sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.bar {
fill: steelblue;
}
.x.axis path {
display: none;
}
.tooltip{
text-anchor: middle;
font-family: sans-serif;
font-size: 12px;
font-weight: bold;
fill:green;
}
.node.active {
fill: blue;
}
</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<center><h1>Domain : archpedi.jamanetwork.com<h1></center>
<script>
var legend_width = 220;
var margin = {top: 20, right: 20, bottom: 30, left: 60},
width = 860 - margin.left - margin.right+legend_width,
height = 500 - margin.top - margin.bottom;
var x = d3.scale.ordinal()
.rangeRoundBands([0, width], .1);
var yAbsolute = d3.scale.linear() // for absolute scale
.rangeRound([height, 0]);
var yRelative = d3.scale.linear() // for absolute scale
.rangeRound([height, 0]);
var color = d3.scale.ordinal()
.range(["#ff8c00","#d0743c","#a05d56" ]);
var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom");
var yAxisRelative = d3.svg.axis()
.scale(yRelative)
.orient("left")
.tickFormat(d3.format(".1%"));
var yAxisAbsolute = d3.svg.axis()
.scale(yAbsolute)
.orient("left")
.tickFormat(d3.format(".2s"));
var svg = d3.select("body").append("svg")
.attr("width", width + margin.left + margin.right+legend_width)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
d3.csv("archpedi.jamanetwork.com.csv", function(error, data) {
color.domain(d3.keys(data[0]).filter(function(key) { return key !== "State"; }));
data.forEach(function(d) {
var mystate = d.State;
var y0 = 0;
d.ages = color.domain().map(function(name) { return {mystate:mystate, name: name, y0: y0, y1: y0 += +d[name]}; });
d.total = d.ages[d.ages.length - 1].y1;// the last row
d.pct = [];
for (var i=0;i <d.ages.length;i ++ ){
var y_coordinate = +d.ages[i].y1/d.total;
var y_height1 = (d.ages[i].y1)/d.total;
var y_height0 = (d.ages[i].y0)/d.total;
var y_pct = y_height1 - y_height0;
d.pct.push({
y_coordinate: y_coordinate,
y_height1: y_height1,
y_height0: y_height0,
name: d.ages[i].name,
mystate: d.State,
y_pct: y_pct
});
}
});
data.sort(function(a, b) { return b.total - a.total; });
x.domain(data.map(function(d) { return d.State; }));
yAbsolute.domain([0, d3.max(data, function(d) { return d.total; })]);//Absolute View scale
yRelative.domain([0,1])// Relative View domain
var absoluteView = false // define a boolean variable, true is absolute view, false is relative view
// Initial view is absolute
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis);
//Define the rect of Relative
var stateRelative = svg.selectAll(".relative")
.data(data)
.enter().append("g")
.attr("class", "relative")
.attr("transform", function(d) {
return "translate(" + "0 "+ ",0)";
});
stateRelative.selectAll("rect")
.data(function(d) {
return d.pct;
})
.enter().append("rect")
.attr("width", x.rangeBand())
.attr("y", function(d) {
return yRelative(d.y_coordinate);
})
.attr("x",function(d) {return x(d.mystate)})
.attr("height", function(d) {
return yRelative(d.y_height0) - yRelative(d.y_height1); //distance
})
.attr("fill", function(d){return color(d.name)})
.attr("stroke","pink")
.attr("stroke-width",0.2)
.attr("id",function(d) {return d.mystate})
.attr("class","relative")
.attr("id",function(d) {return d.mystate})
.style("pointer-events","all");
stateRelative.selectAll("rect")
.on("mouseover", function(d){
if(!absoluteView){
var xPos = parseFloat(d3.select(this).attr("x"));
var yPos = parseFloat(d3.select(this).attr("y"));
var height = parseFloat(d3.select(this).attr("height"))
d3.select(this).attr("stroke","blue").attr("stroke-width",0.8);
svg.append("text")
.attr("x",xPos)
.attr("y",yPos +height/2)
.attr("class","tooltip")
.text(Math.floor(d.y_pct.toFixed(2)*100) + "% of " + d.mystate );
}
})
.on("mouseout",function(){
svg.select(".tooltip").remove();
d3.select(this).attr("stroke","pink").attr("stroke-width",0.2);
})
// End of define rect of relative
// define rect for absolute
var stateAbsolute= svg.selectAll(".absolute")
.data(data)
.enter().append("g")
.attr("class", "absolute")
.attr("transform", function(d) { return "translate(" + "0" + ",0)"; });
stateAbsolute.selectAll("rect")
.data(function(d) { return d.ages})
.enter().append("rect")
.attr("width", x.rangeBand())
.attr("y", function(d) {
return yAbsolute(d.y1);
})
.attr("x",function(d) {
return x(d.mystate)
})
.attr("height", function(d) {
return yAbsolute(d.y0) - yAbsolute(d.y1);
})
.attr("fill", function(d){
return color(d.name)
})
.attr("id",function(d) {
return d.mystate
})
.attr("class","absolute")
.style("pointer-events","all")
.attr("opacity",0); // initially it is invisible, i.e. start with Absolute View
//define two different scales, but one of them will always be hidden.
svg.append("g")
.attr("class", "y axis absolute")
.call(yAxisAbsolute)
.append("text")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("dy", ".71em")
.style("text-anchor", "end")
//.text("Population");
svg.append("g")
.attr("class", "y axis relative")
.call(yAxisRelative)
.append("text")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("dy", ".71em")
.style("text-anchor", "end")
//.text("Population");
svg.select(".y.axis.absolute").style("opacity",0);
// end of define absolute
// adding legend
var legend = svg.selectAll(".legend")
.data(color.domain().slice().reverse())
.enter().append("g")
.attr("class", "legend")
.attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; });
legend.append("rect")
.attr("x", width - 18+legend_width)
.attr("width", 18)
.attr("height", 18)
.attr("fill", color);
legend.append("text")
.attr("x", width - 24+legend_width)
.attr("y", 9)
.attr("dy", ".35em")
.style("text-anchor", "end")
.text(function(d) { return d; });
var clickButton = svg.selectAll(".clickButton")
.data([30,30])
.enter().append("g")
.attr("class","clickButton")
.attr("transform","translate(0," + 180 +")");
clickButton.append("text")
.attr("x", width +legend_width)
.attr("y", 9)
.attr("dy", ".35em")
.style("text-anchor", "end")
.text("Switch View")
.style("text-decoration", "underline")
.style("font-size", "16px")
.attr("fill","blue")
.attr("id","clickChangeView") ;
// start with relative view
Transition2Relative();
// Switch view on click the clickButton
d3.selectAll("#"+ "clickChangeView")
.on("click",function(){
if(absoluteView){ // absolute, otherwise relative
Transition2Relative();
} else {
Transition2Absolute();
}
absoluteView = !absoluteView // change the current view status
});
function Transition2Absolute(){
//Currently it is Relative
stateRelative.selectAll("rect").transition().duration(2000).style("opacity",0);
stateAbsolute.selectAll("rect").transition().duration(2000).style("opacity",1);//show absolute view rectangles
svg.select(".y.axis.relative").transition().duration(2000).style("opacity",0);
svg.select(".y.axis.absolute").transition().duration(2000).style("opacity",1);// show absolute view axis
}
function Transition2Relative(){
//Currently it is absolute
stateAbsolute.selectAll("rect").transition().duration(2000).attr("fill",function(d) {return color(d.name)})
stateAbsolute.selectAll("rect").transition().duration(2000).style("opacity",0);//show absolute view rectangles
stateRelative.selectAll("rect").transition().duration(2000).style("opacity",1);
svg.select(".y.axis.relative").transition().duration(2000).style("opacity",1);
svg.select(".y.axis.absolute").transition().duration(2000).style("opacity",0);// show absolute view axis
}
});
</script>
</html>
|
Dependencies/opengl/docs/javadoc/org/lwjgl/opengl/WGLNVVertexArrayRange.html | VirtualGamer/SnowEngine | <!DOCTYPE HTML>
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (9-ea) on Sun Oct 30 18:56:47 UTC 2016 -->
<title>WGLNVVertexArrayRange (LWJGL 3.1.0 - OpenGL)</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="WGLNVVertexArrayRange (LWJGL 3.1.0 - OpenGL)";
}
}
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/opengl/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/opengl/WGLNVSwapGroup.html" title="class in org.lwjgl.opengl"><span class="typeNameLink">Prev Class</span></a></li>
<li>Next Class</li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?org/lwjgl/opengl/WGLNVVertexArrayRange.html" target="_top">Frames</a></li>
<li><a href="WGLNVVertexArrayRange.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/opengl/package-summary.html" target="classFrame">org.lwjgl.opengl</a></div>
<h2 title="Class WGLNVVertexArrayRange" class="title">Class WGLNVVertexArrayRange</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>org.lwjgl.opengl.WGLNVVertexArrayRange</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="typeNameLabel">WGLNVVertexArrayRange</span>
extends java.lang.Object</pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ========== 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 java.nio.ByteBuffer</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../org/lwjgl/opengl/WGLNVVertexArrayRange.html#wglAllocateMemoryNV-int-float-float-float-">wglAllocateMemoryNV</a></span>(int size,
float readfreq,
float writefreq,
float priority)</code> </td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../org/lwjgl/opengl/WGLNVVertexArrayRange.html#wglFreeMemoryNV-java.nio.ByteBuffer-">wglFreeMemoryNV</a></span>(java.nio.ByteBuffer pointer)</code> </td>
</tr>
</table>
<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>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</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="wglAllocateMemoryNV-int-float-float-float-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>wglAllocateMemoryNV</h4>
<pre>public static java.nio.ByteBuffer wglAllocateMemoryNV(int size,
float readfreq,
float writefreq,
float priority)</pre>
</li>
</ul>
<a id="wglFreeMemoryNV-java.nio.ByteBuffer-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>wglFreeMemoryNV</h4>
<pre>public static void wglFreeMemoryNV(java.nio.ByteBuffer pointer)</pre>
</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/opengl/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/opengl/WGLNVSwapGroup.html" title="class in org.lwjgl.opengl"><span class="typeNameLink">Prev Class</span></a></li>
<li>Next Class</li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?org/lwjgl/opengl/WGLNVVertexArrayRange.html" target="_top">Frames</a></li>
<li><a href="WGLNVVertexArrayRange.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>
|
docs/api/rb/Selenium/WebDriver/Proxy.html | akiellor/selenium | <!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>
Class: Selenium::WebDriver::Proxy
— Documentation by YARD 0.7.1
</title>
<link rel="stylesheet" href="../../css/style.css" type="text/css" media="screen" charset="utf-8" />
<link rel="stylesheet" href="../../css/common.css" type="text/css" media="screen" charset="utf-8" />
<script type="text/javascript" charset="utf-8">
relpath = '../..';
if (relpath != '') relpath += '/';
</script>
<script type="text/javascript" charset="utf-8" src="../../js/jquery.js"></script>
<script type="text/javascript" charset="utf-8" src="../../js/app.js"></script>
</head>
<body>
<script type="text/javascript" charset="utf-8">
if (window.top.frames.main) document.body.className = 'frames';
</script>
<div id="header">
<div id="menu">
<a href="../../_index.html">Index (P)</a> »
<span class='title'><span class='object_link'><a href="../../Selenium.html" title="Selenium (module)">Selenium</a></span></span> » <span class='title'><span class='object_link'><a href="../WebDriver.html" title="Selenium::WebDriver (module)">WebDriver</a></span></span>
»
<span class="title">Proxy</span>
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
</div>
<div id="search">
<a id="class_list_link" href="#">Class List</a>
<a id="method_list_link" href="#">Method List</a>
<a id="file_list_link" href="#">File List</a>
</div>
<div class="clear"></div>
</div>
<iframe id="search_frame"></iframe>
<div id="content"><h1>Class: Selenium::WebDriver::Proxy
</h1>
<dl class="box">
<dt class="r1">Inherits:</dt>
<dd class="r1">
<span class="inheritName">Object</span>
<ul class="fullTree">
<li>Object</li>
<li class="next">Selenium::WebDriver::Proxy</li>
</ul>
<a href="#" class="inheritanceTree">show all</a>
</dd>
<dt class="r2 last">Defined in:</dt>
<dd class="r2 last">rb/lib/selenium/webdriver/common/proxy.rb</dd>
</dl>
<div class="clear"></div>
<h2>Constant Summary</h2>
<dl class="constants">
<dt id="TYPES-constant" class="">TYPES =
</dt>
<dd><pre class="code"><span class='lbrace token'>{</span>
<span class='symbol val'>:direct</span> <span class='assign token'>=</span><span class='gt op'>></span> <span class='string val'>"DIRECT"</span><span class='comma token'>,</span> <span class='comment val'># Direct connection, no proxy (default on Windows).</span>
<span class='symbol val'>:manual</span> <span class='assign token'>=</span><span class='gt op'>></span> <span class='string val'>"MANUAL"</span><span class='comma token'>,</span> <span class='comment val'># Manual proxy settings (e.g., for httpProxy).</span>
<span class='symbol val'>:pac</span> <span class='assign token'>=</span><span class='gt op'>></span> <span class='string val'>"PAC"</span><span class='comma token'>,</span> <span class='comment val'># Proxy autoconfiguration from URL.</span>
<span class='symbol val'>:auto_detect</span> <span class='assign token'>=</span><span class='gt op'>></span> <span class='string val'>"AUTODETECT"</span><span class='comma token'>,</span> <span class='comment val'># Proxy autodetection (presumably with WPAD).</span>
<span class='symbol val'>:system</span> <span class='assign token'>=</span><span class='gt op'>></span> <span class='string val'>"SYSTEM"</span> <span class='comment val'># Use system settings (default on Linux).</span>
<span class='rbrace token'>}</span>
</pre></dd>
</dl>
<h2>Instance Attribute Summary <small>(<a href="#" class="summary_toggle">collapse</a>)</small></h2>
<ul class="summary">
<li class="public ">
<span class="summary_signature">
<a href="#auto_detect-instance_method" title="#auto_detect (instance method)">- (Object) <strong>auto_detect</strong> </a>
</span>
<span class="summary_desc"><div class='inline'><p>
Returns the value of attribute auto_detect.
</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#ftp-instance_method" title="#ftp (instance method)">- (Object) <strong>ftp</strong> </a>
</span>
<span class="note title readonly">readonly</span>
<span class="summary_desc"><div class='inline'><p>
Returns the value of attribute ftp.
</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#http-instance_method" title="#http (instance method)">- (Object) <strong>http</strong> </a>
</span>
<span class="summary_desc"><div class='inline'><p>
Returns the value of attribute http.
</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#no_proxy-instance_method" title="#no_proxy (instance method)">- (Object) <strong>no_proxy</strong> </a>
</span>
<span class="summary_desc"><div class='inline'><p>
Returns the value of attribute no_proxy.
</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#pac-instance_method" title="#pac (instance method)">- (Object) <strong>pac</strong> </a>
</span>
<span class="summary_desc"><div class='inline'><p>
Returns the value of attribute pac.
</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#ssl-instance_method" title="#ssl (instance method)">- (Object) <strong>ssl</strong> </a>
</span>
<span class="summary_desc"><div class='inline'><p>
Returns the value of attribute ssl.
</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#type-instance_method" title="#type (instance method)">- (Object) <strong>type</strong> </a>
</span>
<span class="summary_desc"><div class='inline'><p>
Returns the value of attribute type.
</p>
</div></span>
</li>
</ul>
<h2>
Class Method Summary
<small>(<a href="#" class="summary_toggle">collapse</a>)</small>
</h2>
<ul class="summary">
<li class="public ">
<span class="summary_signature">
<a href="#json_create-class_method" title="json_create (class method)">+ (Object) <strong>json_create</strong>(data) </a>
</span>
<span class="summary_desc"><div class='inline'></div></span>
</li>
</ul>
<h2>
Instance Method Summary
<small>(<a href="#" class="summary_toggle">collapse</a>)</small>
</h2>
<ul class="summary">
<li class="public ">
<span class="summary_signature">
<a href="#%3D%3D-instance_method" title="#== (instance method)">- (Object) <strong>==</strong>(other) </a>
(also: #eql?)
</span>
<span class="summary_desc"><div class='inline'></div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#as_json-instance_method" title="#as_json (instance method)">- (Object) <strong>as_json</strong>(opts = nil) </a>
</span>
<span class="summary_desc"><div class='inline'></div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#initialize-instance_method" title="#initialize (instance method)">- (Proxy) <strong>initialize</strong>(opts = {}) </a>
</span>
<span class="note title constructor">constructor</span>
<span class="summary_desc"><div class='inline'><p>
A new instance of Proxy.
</p>
</div></span>
</li>
</ul>
<div id="constructor_details" class="method_details_list">
<h2>Constructor Details</h2>
<div class="method_details first">
<p class="signature first" id="initialize-instance_method">
- (<tt><span class='object_link'><a href="" title="Selenium::WebDriver::Proxy (class)">Proxy</a></span></tt>) <strong>initialize</strong>(opts = {})
</p><div class="docstring">
<div class="discussion">
<p>
A new instance of Proxy
</p>
</div>
</div>
<div class="tags">
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'rb/lib/selenium/webdriver/common/proxy.rb', line 20</span>
<span class='def def kw'>def</span> <span class='initialize identifier id'>initialize</span><span class='lparen token'>(</span><span class='opts identifier id'>opts</span> <span class='assign token'>=</span> <span class='lbrace token'>{</span><span class='rbrace token'>}</span><span class='rparen token'>)</span>
<span class='opts identifier id'>opts</span> <span class='assign token'>=</span> <span class='opts identifier id'>opts</span><span class='dot token'>.</span><span class='dup identifier id'>dup</span>
<span class='self self kw'>self</span><span class='dot token'>.</span><span class='type identifier id'>type</span> <span class='assign token'>=</span> <span class='opts identifier id'>opts</span><span class='dot token'>.</span><span class='delete identifier id'>delete</span><span class='lparen token'>(</span><span class='symbol val'>:type</span><span class='rparen token'>)</span> <span class='if if_mod kw'>if</span> <span class='opts identifier id'>opts</span><span class='dot token'>.</span><span class='has_key? fid id'>has_key?</span> <span class='symbol val'>:type</span>
<span class='self self kw'>self</span><span class='dot token'>.</span><span class='ftp identifier id'>ftp</span> <span class='assign token'>=</span> <span class='opts identifier id'>opts</span><span class='dot token'>.</span><span class='delete identifier id'>delete</span><span class='lparen token'>(</span><span class='symbol val'>:ftp</span><span class='rparen token'>)</span> <span class='if if_mod kw'>if</span> <span class='opts identifier id'>opts</span><span class='dot token'>.</span><span class='has_key? fid id'>has_key?</span> <span class='symbol val'>:ftp</span>
<span class='self self kw'>self</span><span class='dot token'>.</span><span class='http identifier id'>http</span> <span class='assign token'>=</span> <span class='opts identifier id'>opts</span><span class='dot token'>.</span><span class='delete identifier id'>delete</span><span class='lparen token'>(</span><span class='symbol val'>:http</span><span class='rparen token'>)</span> <span class='if if_mod kw'>if</span> <span class='opts identifier id'>opts</span><span class='dot token'>.</span><span class='has_key? fid id'>has_key?</span> <span class='symbol val'>:http</span>
<span class='self self kw'>self</span><span class='dot token'>.</span><span class='no_proxy identifier id'>no_proxy</span> <span class='assign token'>=</span> <span class='opts identifier id'>opts</span><span class='dot token'>.</span><span class='delete identifier id'>delete</span><span class='lparen token'>(</span><span class='symbol val'>:no_proxy</span><span class='rparen token'>)</span> <span class='if if_mod kw'>if</span> <span class='opts identifier id'>opts</span><span class='dot token'>.</span><span class='has_key? fid id'>has_key?</span> <span class='symbol val'>:no_proxy</span>
<span class='self self kw'>self</span><span class='dot token'>.</span><span class='ssl identifier id'>ssl</span> <span class='assign token'>=</span> <span class='opts identifier id'>opts</span><span class='dot token'>.</span><span class='delete identifier id'>delete</span><span class='lparen token'>(</span><span class='symbol val'>:ssl</span><span class='rparen token'>)</span> <span class='if if_mod kw'>if</span> <span class='opts identifier id'>opts</span><span class='dot token'>.</span><span class='has_key? fid id'>has_key?</span> <span class='symbol val'>:ssl</span>
<span class='self self kw'>self</span><span class='dot token'>.</span><span class='pac identifier id'>pac</span> <span class='assign token'>=</span> <span class='opts identifier id'>opts</span><span class='dot token'>.</span><span class='delete identifier id'>delete</span><span class='lparen token'>(</span><span class='symbol val'>:pac</span><span class='rparen token'>)</span> <span class='if if_mod kw'>if</span> <span class='opts identifier id'>opts</span><span class='dot token'>.</span><span class='has_key? fid id'>has_key?</span> <span class='symbol val'>:pac</span>
<span class='self self kw'>self</span><span class='dot token'>.</span><span class='auto_detect identifier id'>auto_detect</span> <span class='assign token'>=</span> <span class='opts identifier id'>opts</span><span class='dot token'>.</span><span class='delete identifier id'>delete</span><span class='lparen token'>(</span><span class='symbol val'>:auto_detect</span><span class='rparen token'>)</span> <span class='if if_mod kw'>if</span> <span class='opts identifier id'>opts</span><span class='dot token'>.</span><span class='has_key? fid id'>has_key?</span> <span class='symbol val'>:auto_detect</span>
<span class='unless unless kw'>unless</span> <span class='opts identifier id'>opts</span><span class='dot token'>.</span><span class='empty? fid id'>empty?</span>
<span class='raise identifier id'>raise</span> <span class='ArgumentError constant id'>ArgumentError</span><span class='comma token'>,</span> <span class='dstring node'>"unknown option#{'s' if opts.size != 1}: #{opts.inspect}"</span>
<span class='end end kw'>end</span>
<span class='end end kw'>end</span>
</pre>
</td>
</tr>
</table>
</div>
</div>
<div id="instance_attr_details" class="attr_details">
<h2>Instance Attribute Details</h2>
<span id="auto_detect=-instance_method"></span>
<span id="auto_detect-instance_method"></span>
<div class="method_details first">
<p class="signature first" id="auto_detect-instance_method">
- (<tt>Object</tt>) <strong>auto_detect</strong>
</p><div class="docstring">
<div class="discussion">
<p>
Returns the value of attribute auto_detect
</p>
</div>
</div>
<div class="tags">
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
12
13
14</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'rb/lib/selenium/webdriver/common/proxy.rb', line 12</span>
<span class='def def kw'>def</span> <span class='auto_detect identifier id'>auto_detect</span>
<span class='@auto_detect ivar id'>@auto_detect</span>
<span class='end end kw'>end</span>
</pre>
</td>
</tr>
</table>
</div>
<span id=""></span>
<span id="ftp-instance_method"></span>
<div class="method_details ">
<p class="signature " id="ftp-instance_method">
- (<tt>Object</tt>) <strong>ftp</strong> <span class="extras">(readonly)</span>
</p><div class="docstring">
<div class="discussion">
<p>
Returns the value of attribute ftp
</p>
</div>
</div>
<div class="tags">
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
12
13
14</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'rb/lib/selenium/webdriver/common/proxy.rb', line 12</span>
<span class='def def kw'>def</span> <span class='ftp identifier id'>ftp</span>
<span class='@ftp ivar id'>@ftp</span>
<span class='end end kw'>end</span>
</pre>
</td>
</tr>
</table>
</div>
<span id="http=-instance_method"></span>
<span id="http-instance_method"></span>
<div class="method_details ">
<p class="signature " id="http-instance_method">
- (<tt>Object</tt>) <strong>http</strong>
</p><div class="docstring">
<div class="discussion">
<p>
Returns the value of attribute http
</p>
</div>
</div>
<div class="tags">
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
12
13
14</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'rb/lib/selenium/webdriver/common/proxy.rb', line 12</span>
<span class='def def kw'>def</span> <span class='http identifier id'>http</span>
<span class='@http ivar id'>@http</span>
<span class='end end kw'>end</span>
</pre>
</td>
</tr>
</table>
</div>
<span id="no_proxy=-instance_method"></span>
<span id="no_proxy-instance_method"></span>
<div class="method_details ">
<p class="signature " id="no_proxy-instance_method">
- (<tt>Object</tt>) <strong>no_proxy</strong>
</p><div class="docstring">
<div class="discussion">
<p>
Returns the value of attribute no_proxy
</p>
</div>
</div>
<div class="tags">
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
12
13
14</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'rb/lib/selenium/webdriver/common/proxy.rb', line 12</span>
<span class='def def kw'>def</span> <span class='no_proxy identifier id'>no_proxy</span>
<span class='@no_proxy ivar id'>@no_proxy</span>
<span class='end end kw'>end</span>
</pre>
</td>
</tr>
</table>
</div>
<span id="pac=-instance_method"></span>
<span id="pac-instance_method"></span>
<div class="method_details ">
<p class="signature " id="pac-instance_method">
- (<tt>Object</tt>) <strong>pac</strong>
</p><div class="docstring">
<div class="discussion">
<p>
Returns the value of attribute pac
</p>
</div>
</div>
<div class="tags">
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
12
13
14</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'rb/lib/selenium/webdriver/common/proxy.rb', line 12</span>
<span class='def def kw'>def</span> <span class='pac identifier id'>pac</span>
<span class='@pac ivar id'>@pac</span>
<span class='end end kw'>end</span>
</pre>
</td>
</tr>
</table>
</div>
<span id="ssl=-instance_method"></span>
<span id="ssl-instance_method"></span>
<div class="method_details ">
<p class="signature " id="ssl-instance_method">
- (<tt>Object</tt>) <strong>ssl</strong>
</p><div class="docstring">
<div class="discussion">
<p>
Returns the value of attribute ssl
</p>
</div>
</div>
<div class="tags">
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
12
13
14</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'rb/lib/selenium/webdriver/common/proxy.rb', line 12</span>
<span class='def def kw'>def</span> <span class='ssl identifier id'>ssl</span>
<span class='@ssl ivar id'>@ssl</span>
<span class='end end kw'>end</span>
</pre>
</td>
</tr>
</table>
</div>
<span id="type=-instance_method"></span>
<span id="type-instance_method"></span>
<div class="method_details ">
<p class="signature " id="type-instance_method">
- (<tt>Object</tt>) <strong>type</strong>
</p><div class="docstring">
<div class="discussion">
<p>
Returns the value of attribute type
</p>
</div>
</div>
<div class="tags">
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
12
13
14</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'rb/lib/selenium/webdriver/common/proxy.rb', line 12</span>
<span class='def def kw'>def</span> <span class='type identifier id'>type</span>
<span class='@type ivar id'>@type</span>
<span class='end end kw'>end</span>
</pre>
</td>
</tr>
</table>
</div>
</div>
<div id="class_method_details" class="method_details_list">
<h2>Class Method Details</h2>
<div class="method_details first">
<p class="signature first" id="json_create-class_method">
+ (<tt>Object</tt>) <strong>json_create</strong>(data)
</p><table class="source_code">
<tr>
<td>
<pre class="lines">
99
100
101
102
103
104
105
106
107
108
109
110
111</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'rb/lib/selenium/webdriver/common/proxy.rb', line 99</span>
<span class='def def kw'>def</span> <span class='json_create identifier id'>json_create</span><span class='lparen token'>(</span><span class='data identifier id'>data</span><span class='rparen token'>)</span>
<span class='proxy identifier id'>proxy</span> <span class='assign token'>=</span> <span class='new identifier id'>new</span>
<span class='proxy identifier id'>proxy</span><span class='dot token'>.</span><span class='type identifier id'>type</span> <span class='assign token'>=</span> <span class='data identifier id'>data</span><span class='lbrack token'>[</span><span class='string val'>'proxyType'</span><span class='rbrack token'>]</span><span class='dot token'>.</span><span class='downcase identifier id'>downcase</span><span class='dot token'>.</span><span class='to_sym identifier id'>to_sym</span> <span class='if if_mod kw'>if</span> <span class='data identifier id'>data</span><span class='dot token'>.</span><span class='has_key? fid id'>has_key?</span> <span class='string val'>'proxyType'</span>
<span class='proxy identifier id'>proxy</span><span class='dot token'>.</span><span class='ftp identifier id'>ftp</span> <span class='assign token'>=</span> <span class='data identifier id'>data</span><span class='lbrack token'>[</span><span class='string val'>'ftpProxy'</span><span class='rbrack token'>]</span> <span class='if if_mod kw'>if</span> <span class='data identifier id'>data</span><span class='dot token'>.</span><span class='has_key? fid id'>has_key?</span> <span class='string val'>'ftpProxy'</span>
<span class='proxy identifier id'>proxy</span><span class='dot token'>.</span><span class='http identifier id'>http</span> <span class='assign token'>=</span> <span class='data identifier id'>data</span><span class='lbrack token'>[</span><span class='string val'>'httpProxy'</span><span class='rbrack token'>]</span> <span class='if if_mod kw'>if</span> <span class='data identifier id'>data</span><span class='dot token'>.</span><span class='has_key? fid id'>has_key?</span> <span class='string val'>'httpProxy'</span>
<span class='proxy identifier id'>proxy</span><span class='dot token'>.</span><span class='no_proxy identifier id'>no_proxy</span> <span class='assign token'>=</span> <span class='data identifier id'>data</span><span class='lbrack token'>[</span><span class='string val'>'noProxy'</span><span class='rbrack token'>]</span> <span class='if if_mod kw'>if</span> <span class='data identifier id'>data</span><span class='dot token'>.</span><span class='has_key? fid id'>has_key?</span> <span class='string val'>'noProxy'</span>
<span class='proxy identifier id'>proxy</span><span class='dot token'>.</span><span class='pac identifier id'>pac</span> <span class='assign token'>=</span> <span class='data identifier id'>data</span><span class='lbrack token'>[</span><span class='string val'>'proxyAutoconfigUrl'</span><span class='rbrack token'>]</span> <span class='if if_mod kw'>if</span> <span class='data identifier id'>data</span><span class='dot token'>.</span><span class='has_key? fid id'>has_key?</span> <span class='string val'>'proxyAutoconfigUrl'</span>
<span class='proxy identifier id'>proxy</span><span class='dot token'>.</span><span class='ssl identifier id'>ssl</span> <span class='assign token'>=</span> <span class='data identifier id'>data</span><span class='lbrack token'>[</span><span class='string val'>'sslProxy'</span><span class='rbrack token'>]</span> <span class='if if_mod kw'>if</span> <span class='data identifier id'>data</span><span class='dot token'>.</span><span class='has_key? fid id'>has_key?</span> <span class='string val'>'sslProxy'</span>
<span class='proxy identifier id'>proxy</span><span class='dot token'>.</span><span class='auto_detect identifier id'>auto_detect</span> <span class='assign token'>=</span> <span class='data identifier id'>data</span><span class='lbrack token'>[</span><span class='string val'>'autodetect'</span><span class='rbrack token'>]</span> <span class='if if_mod kw'>if</span> <span class='data identifier id'>data</span><span class='dot token'>.</span><span class='has_key? fid id'>has_key?</span> <span class='string val'>'autodetect'</span>
<span class='proxy identifier id'>proxy</span>
<span class='end end kw'>end</span>
</pre>
</td>
</tr>
</table>
</div>
</div>
<div id="instance_method_details" class="method_details_list">
<h2>Instance Method Details</h2>
<div class="method_details first">
<p class="signature first" id="==-instance_method">
- (<tt>Object</tt>) <strong>==</strong>(other)
<span class="aliases">Also known as:
<span class="names"><span id='eql?-instance_method'>eql?</span></span>
</span>
</p><table class="source_code">
<tr>
<td>
<pre class="lines">
36
37
38</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'rb/lib/selenium/webdriver/common/proxy.rb', line 36</span>
<span class='def def kw'>def</span> <span class='eq op'>==</span><span class='lparen token'>(</span><span class='other identifier id'>other</span><span class='rparen token'>)</span>
<span class='other identifier id'>other</span><span class='dot token'>.</span><span class='kind_of? fid id'>kind_of?</span><span class='lparen token'>(</span><span class='self self kw'>self</span><span class='dot token'>.</span><span class='class identifier id'>class</span><span class='rparen token'>)</span> <span class='andop op'>&&</span> <span class='as_json identifier id'>as_json</span> <span class='eq op'>==</span> <span class='other identifier id'>other</span><span class='dot token'>.</span><span class='as_json identifier id'>as_json</span>
<span class='end end kw'>end</span>
</pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<p class="signature " id="as_json-instance_method">
- (<tt>Object</tt>) <strong>as_json</strong>(opts = nil)
</p><table class="source_code">
<tr>
<td>
<pre class="lines">
83
84
85
86
87
88
89
90
91
92
93
94
95
96</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'rb/lib/selenium/webdriver/common/proxy.rb', line 83</span>
<span class='def def kw'>def</span> <span class='as_json identifier id'>as_json</span><span class='lparen token'>(</span><span class='opts identifier id'>opts</span> <span class='assign token'>=</span> <span class='nil nil kw'>nil</span><span class='rparen token'>)</span>
<span class='json_result identifier id'>json_result</span> <span class='assign token'>=</span> <span class='lbrace token'>{</span>
<span class='string val'>"proxyType"</span> <span class='assign token'>=</span><span class='gt op'>></span> <span class='TYPES constant id'>TYPES</span><span class='lbrack token'>[</span><span class='type identifier id'>type</span><span class='rbrack token'>]</span>
<span class='rbrace token'>}</span>
<span class='json_result identifier id'>json_result</span><span class='lbrack token'>[</span><span class='string val'>"ftpProxy"</span><span class='rbrack token'>]</span> <span class='assign token'>=</span> <span class='ftp identifier id'>ftp</span> <span class='if if_mod kw'>if</span> <span class='ftp identifier id'>ftp</span>
<span class='json_result identifier id'>json_result</span><span class='lbrack token'>[</span><span class='string val'>"httpProxy"</span><span class='rbrack token'>]</span> <span class='assign token'>=</span> <span class='http identifier id'>http</span> <span class='if if_mod kw'>if</span> <span class='http identifier id'>http</span>
<span class='json_result identifier id'>json_result</span><span class='lbrack token'>[</span><span class='string val'>"noProxy"</span><span class='rbrack token'>]</span> <span class='assign token'>=</span> <span class='no_proxy identifier id'>no_proxy</span> <span class='if if_mod kw'>if</span> <span class='no_proxy identifier id'>no_proxy</span>
<span class='json_result identifier id'>json_result</span><span class='lbrack token'>[</span><span class='string val'>"proxyAutoconfigUrl"</span><span class='rbrack token'>]</span> <span class='assign token'>=</span> <span class='pac identifier id'>pac</span> <span class='if if_mod kw'>if</span> <span class='pac identifier id'>pac</span>
<span class='json_result identifier id'>json_result</span><span class='lbrack token'>[</span><span class='string val'>"sslProxy"</span><span class='rbrack token'>]</span> <span class='assign token'>=</span> <span class='ssl identifier id'>ssl</span> <span class='if if_mod kw'>if</span> <span class='ssl identifier id'>ssl</span>
<span class='json_result identifier id'>json_result</span><span class='lbrack token'>[</span><span class='string val'>"autodetect"</span><span class='rbrack token'>]</span> <span class='assign token'>=</span> <span class='auto_detect identifier id'>auto_detect</span> <span class='if if_mod kw'>if</span> <span class='auto_detect identifier id'>auto_detect</span>
<span class='json_result identifier id'>json_result</span> <span class='if if_mod kw'>if</span> <span class='json_result identifier id'>json_result</span><span class='dot token'>.</span><span class='length identifier id'>length</span> <span class='gt op'>></span> <span class='integer val'>1</span>
<span class='end end kw'>end</span>
</pre>
</td>
</tr>
</table>
</div>
</div>
</div>
<div id="footer">
Generated on Wed Jun 22 17:45:13 2011 by
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
0.7.1 (ruby-1.8.7).
</div>
</body>
</html> |
docs/org/cidrz/project/zeprs/valueobject/partograph/PartographMapping.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:17:31 CAT 2006 -->
<TITLE>
PartographMapping
</TITLE>
<META NAME="keywords" CONTENT="org.cidrz.project.zeprs.valueobject.partograph.PartographMapping class">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="PartographMapping";
}
</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/PartographMapping.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/cidrz/project/zeprs/valueobject/partograph/Oxytocin.html" title="class in org.cidrz.project.zeprs.valueobject.partograph"><B>PREV CLASS</B></A>
<A HREF="../../../../../../org/cidrz/project/zeprs/valueobject/partograph/Pulse.html" title="class in org.cidrz.project.zeprs.valueobject.partograph"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/cidrz/project/zeprs/valueobject/partograph/PartographMapping.html" target="_top"><B>FRAMES</B></A>
<A HREF="PartographMapping.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.cidrz.project.zeprs.valueobject.partograph</FONT>
<BR>
Class PartographMapping</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><B>org.cidrz.project.zeprs.valueobject.partograph.PartographMapping</B>
</PRE>
<HR>
<DL>
<DT><PRE>public class <B>PartographMapping</B><DT>extends java.lang.Object</DL>
</PRE>
<P>
<DL>
<DT><B>Author:</B></DT>
<DD><a href="mailto:ckelley@rti.org">Chris Kelley</a>
Date: Jul 7, 2005
Time: 3:24:23 PM</DD>
</DL>
<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/cidrz/project/zeprs/valueobject/partograph/PartographMapping.html#PartographMapping()">PartographMapping</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>static java.util.HashMap</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/cidrz/project/zeprs/valueobject/partograph/PartographMapping.html#getPartoFields()">getPartoFields</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static java.util.HashMap</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/cidrz/project/zeprs/valueobject/partograph/PartographMapping.html#getPartoTables()">getPartoTables</A></B>()</CODE>
<BR>
</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="PartographMapping()"><!-- --></A><H3>
PartographMapping</H3>
<PRE>
public <B>PartographMapping</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="getPartoTables()"><!-- --></A><H3>
getPartoTables</H3>
<PRE>
public static java.util.HashMap <B>getPartoTables</B>()
throws org.dom4j.DocumentException,
java.io.IOException</PRE>
<DL>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>org.dom4j.DocumentException</CODE>
<DD><CODE>java.io.IOException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="getPartoFields()"><!-- --></A><H3>
getPartoFields</H3>
<PRE>
public static java.util.HashMap <B>getPartoFields</B>()
throws org.dom4j.DocumentException,
java.io.IOException</PRE>
<DL>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>org.dom4j.DocumentException</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/PartographMapping.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/cidrz/project/zeprs/valueobject/partograph/Oxytocin.html" title="class in org.cidrz.project.zeprs.valueobject.partograph"><B>PREV CLASS</B></A>
<A HREF="../../../../../../org/cidrz/project/zeprs/valueobject/partograph/Pulse.html" title="class in org.cidrz.project.zeprs.valueobject.partograph"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/cidrz/project/zeprs/valueobject/partograph/PartographMapping.html" target="_top"><B>FRAMES</B></A>
<A HREF="PartographMapping.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>
|
all/2731.html | ilearninging/xxhis | </div><form action="search.asp" name="form1" id="form1">
<table border="1" id="table1" style="border-collapse: collapse">
<tr>
<td height="25" align="center"><span style="font-size: 16px">清</span></td>
<td height="25" align="center"><span style="font-size: 16px">公元1804年</span></td>
<td height="25" align="center"><span style="font-size: 16px">甲子</span></td>
<td height="25px" align="center"><span style="font-size: 16px">嘉庆九年</span></td>
</tr>
<tr>
<td colspan="4">
<table border="0" width="100%">
<tr>
<td valign="top">
<b>历史纪事</b> </td>
<td>
<div>白莲教起义失败
嘉庆九年(1804)九月初五日,清军统帅德楞泰进《余氛扫荡三省全功告葳》折,标志着白莲教起义基本失败。嘉庆元年白莲教起义后,纵横川、楚、陕、豫、甘五省,至嘉庆七年十二月,清军将领勒登保等以平定白莲教起义上奏嘉庆帝,各地白莲教主力基本上相继失败。不过,在深山老林中,白莲教余众仍坚持斗争。于是,额勒登保等又先后分路围击,白莲教军后期首领宋应伏、刘渣胡子、温亚利、宋国品、张世虎、赵聪观、熊老八等相继遇难。清军随之各路班师,令乡勇还乡,不料乡勇还乡后,又多有同白莲教军汇合一起,继续起事,清政府不得不再派额勒登保、德楞泰等将再次领兵围击,穷搜崇山密林。直到白莲教军最后的首领苟文华、罗思兰、苟文润等被俘,历时九年,遍及五省的白莲教起义才基本失败。
英国来书称有护货兵船到广东,愿协助镇压海盗。俄国商船两艘违反《恰克图条约》,到广州贸易。禁各堂西洋人刻书传教。在京刻书传教之西洋人德天赐,解往热河圈禁,有关之中国人发伊犁为奴,旗人并销余丁众多,生活困难,增养兵额。蔡牵称镇海王,驶入台湾凤山,又驶入鹿耳门。湖南永绥苗石宗四等起事,傅鼐出兵镇压。</div></td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="4">
<table border="0" width="100%">
<tr>
<td valign="top">
<b>文化纪事</b> </td>
<td>
<div>钱大昕病逝
嘉庆九年(1804),著名学者钱大昕因病去世,终年七十七岁。钱大昕,字晓徵,又字及之,号辛楣,又号竹汀,江苏嘉定人。乾隆年间进士,历任翰林院侍讲学士、少詹事、广东学政等。乾隆四十年(1775),因父丧返归故里,定居苏州,先后在钟山、娄东、紫阳等书院讲学。钱大昕学问渊博,在文字、音韵、训诂、天文、历算、地理、金石等方面都有成就,尤其精通史学。他所著《廿二史考异》一百卷,是其考证历史的代表作。在考证方法方面,既比较异同,也进行专题研究。在考证内容方面,主要是官制、地理、氏族、年代,间或加以评述。在考证历史中他注意实事求是,即考究史实,不发空论。钱大昕还著有《十驾斋养新录》、《元史氏族表》、《元史艺文志》、《四史朔闰考》、《声类》、《潜研堂金石文跋尾》、《潜研堂文集》、《潜研堂诗集》等。他还参与修订《热河志》、《续文献通考》、《续通志》、《一统志》等。
刘墉逝世
刘墉(1719-1804或1805),清代著名政治家。著名书法家。山东诸城人,文正公刘统勋(大学士)之子。其家学渊源,乾隆辛末(1751年)进士,官运亨通,历编修,工部尚书,直隶总督至体仁阁大学士,并在乾隆嘉庆两朝任相国凡十一年,甚受帝皇宠幸。谥文清。书法魏晋,笔意古厚。其书初从赵孟頫入手,又师法董其昌,中年后乃自成一家。书法貌丰骨劲,味厚神藏,不受古人牢笼,超然独出,与公方纲、王文治、梁同书齐名为“清四大书家”。
学者纪昀逝世
纪昀(1724—1804)。昀字晓岚、春帆,直隶献县(今属湖北)人。官至协和大学士。主持纂修《四库全书》,著有《纪文达公遗集》、《阅微草堂笔记》等。</div></td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="4">
<table border="0" width="100%">
<tr>
<td valign="top">
<b>杂谭逸事</b> </td>
<td>
<div>蒲台县发生重大命案
嘉庆九年(1804)四月二十七日,山东蒲台县发生重大人命案。原来,该县百姓张林德与盖彭年不事农桑,专以贩卖人口为业。几十里外有一老农郑可能,无妻无子,与侄子郑恺同居。郑恺已经成年,尚未婚娶,郑可能切望他早日成家,生儿育女,便克勤克俭,积攒一笔财礼。可是,多次央人说媒都不成功。无奈,委托张林德给物色一个合适的姑娘。张林德与盖彰年商议,出外寻觅,用十千文买得李家一个女儿,乳名小二姐。张把小二姐领回家中,梳洗打扮,又伙同盖彭年伪造了一张三十千文的卖身契,通知郑可能前来领人。郑可能到了张家,嫌身价太贵,犹豫不决。张、盖二人花言巧语,说道:“一分钱,一分货,十分钱,买不错。孩子的终身大事,宁肯多花几个钱,图个人才标致,和睦孝敬,莫要吝惜计较,遗恨常年。”又威胁说:“这小二姐是专门为你侄儿寻的,如若毁约,就告官理处。”郑可能看小二姐相貌还算端正,身材也很苗条,与侄儿正相般配,便咬了咬牙,当场交付了三十千文,领着“侄儿媳”回家。二人走至中途,一阵风把李小二姐的头巾吹落,郑可能抬眼一看,这姑娘竟是个秃子。出高价买了一个光头媳妇,郑可能知道上当了,领着小二姐转回张家,决意退人。张、盖二人费尽唇舌,死说活劝,郑可能坚不答应。当日晚,郑即在张家歇宿。这天夜里,在郑可能进房就寝后,张林德与盖彰年密谋对策,盖提出:将李小二姐送入郑的住室,让他们男女同宿,这样就可以此挟制,逼郑可能将人领回,不敢退悔。张林德连连称妙,便逼小二姐前去叫门。郑可能在房内厉声申斥,小二姐也哭哭啼啼不肯相从,跑回自己房中睡觉。张林德见阴谋不能得逞,即亲自撞入郑的住房,破口大骂。郑可能本来就怒火满腔,自然反口回击。一来二去,两人挥动老拳,大打出手,互相揪扭,不可开交。张林德心起杀机,拔出尖刀直刺郑可能腹部。郑受伤倒地,当场死亡。为杀人灭口,张、盖二人又杀死李小二姐,伪造了一个郑可能杀人后自杀的现场,以此逃脱罪责,欺骗官府。不久,这起重大命案被查明,张、盖二犯被处斩决。
蔡牵焚死总兵胡振声
嘉庆九年(1804)六月,蔡牵在浙江温州浮鹰岛海面,焚死清军总兵胡振声。蔡牵,福建同安县西浦乡人,生于乾隆二十六年(1761),父母早亡,自幼孤苦伶仃,长大以后,以弹棉花为业。乾隆五十九年(1794),他率领失业无业渔民、船工在漳泉一带海面起事。他为人多谋善断,崇信重义,体贴下属,深得群众拥护。嘉庆七年五月初一日,蔡牵开始向清军主动出击。他率船队乘夜攻下厦门海口的大小担山炮台,将炮位摧毁。嘉庆九年夏,蔡牵率领大船八十余艘,突然从台湾海面进入闽海,清朝福建水师不敢出战。恰好当时温州总兵胡振声率浙船二十四艘至闽运木材,总督玉德即令胡振声迎敌,而闽水师却不予支援。蔡牵船队发炮轰击,将胡振声坐船焚毁,胡振声当即身死。结果,蔡牵大获全胜。嘉庆帝闻讯又急又气,逮金门镇总兵吴奇贵、副将张世熊等,治以不援之罪,又命浙江提督李长庚为总统,督率闽浙水师,专门对付蔡牵军。</div></td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="4">
<table border="0" width="100%">
<tr>
<td valign="top">
<b>注释</b></td>
<td>
<div></div></td>
</tr>
</table>
</td>
</tr>
<tr>
</tr></table>
|
lib/poi-3.16-beta1/docs/apidocs/org/apache/poi/hwmf/record/HwmfDraw.WmfSelectObject.html | Aarhus-BSS/Aarhus-Research-Rebuilt | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<title>HwmfDraw.WmfSelectObject (POI API Documentation)</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="HwmfDraw.WmfSelectObject (POI API Documentation)";
}
//-->
</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/HwmfDraw.WmfSelectObject.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/poi/hwmf/record/HwmfDraw.WmfRoundRect.html" title="class in org.apache.poi.hwmf.record"><span class="strong">PREV CLASS</span></a></li>
<li><a href="../../../../../org/apache/poi/hwmf/record/HwmfDraw.WmfSetPixel.html" title="class in org.apache.poi.hwmf.record"><span class="strong">NEXT CLASS</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/poi/hwmf/record/HwmfDraw.WmfSelectObject.html" target="_top">FRAMES</a></li>
<li><a href="HwmfDraw.WmfSelectObject.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">
<p class="subTitle">org.apache.poi.hwmf.record</p>
<h2 title="Class HwmfDraw.WmfSelectObject" class="title">Class HwmfDraw.WmfSelectObject</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>org.apache.poi.hwmf.record.HwmfDraw.WmfSelectObject</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><a href="../../../../../org/apache/poi/hwmf/record/HwmfRecord.html" title="interface in org.apache.poi.hwmf.record">HwmfRecord</a></dd>
</dl>
<dl>
<dt>Enclosing class:</dt>
<dd><a href="../../../../../org/apache/poi/hwmf/record/HwmfDraw.html" title="class in org.apache.poi.hwmf.record">HwmfDraw</a></dd>
</dl>
<hr>
<br>
<pre>public static class <strong>HwmfDraw.WmfSelectObject</strong>
extends java.lang.Object
implements <a href="../../../../../org/apache/poi/hwmf/record/HwmfRecord.html" title="interface in org.apache.poi.hwmf.record">HwmfRecord</a></pre>
<div class="block">The META_SELECTOBJECT record specifies a graphics object for the playback device context. The
new object replaces the previous object of the same type, unless if the previous object is a palette
object. If the previous object is a palette object, then the META_SELECTPALETTE record must be
used instead of the META_SELECTOBJECT record, as the META_SELECTOBJECT record does not
support replacing the palette object type.</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="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/poi/hwmf/record/HwmfDraw.WmfSelectObject.html#HwmfDraw.WmfSelectObject()">HwmfDraw.WmfSelectObject</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>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hwmf/record/HwmfDraw.WmfSelectObject.html#draw(org.apache.poi.hwmf.draw.HwmfGraphics)">draw</a></strong>(<a href="../../../../../org/apache/poi/hwmf/draw/HwmfGraphics.html" title="class in org.apache.poi.hwmf.draw">HwmfGraphics</a> ctx)</code>
<div class="block">Apply the record settings to the graphics context</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/poi/hwmf/record/HwmfRecordType.html" title="enum in org.apache.poi.hwmf.record">HwmfRecordType</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hwmf/record/HwmfDraw.WmfSelectObject.html#getRecordType()">getRecordType</a></strong>()</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hwmf/record/HwmfDraw.WmfSelectObject.html#init(org.apache.poi.util.LittleEndianInputStream, long, int)">init</a></strong>(<a href="../../../../../org/apache/poi/util/LittleEndianInputStream.html" title="class in org.apache.poi.util">LittleEndianInputStream</a> leis,
long recordSize,
int recordFunction)</code>
<div class="block">Init record from stream</div>
</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="HwmfDraw.WmfSelectObject()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>HwmfDraw.WmfSelectObject</h4>
<pre>public HwmfDraw.WmfSelectObject()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getRecordType()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRecordType</h4>
<pre>public <a href="../../../../../org/apache/poi/hwmf/record/HwmfRecordType.html" title="enum in org.apache.poi.hwmf.record">HwmfRecordType</a> getRecordType()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../../org/apache/poi/hwmf/record/HwmfRecord.html#getRecordType()">getRecordType</a></code> in interface <code><a href="../../../../../org/apache/poi/hwmf/record/HwmfRecord.html" title="interface in org.apache.poi.hwmf.record">HwmfRecord</a></code></dd>
</dl>
</li>
</ul>
<a name="init(org.apache.poi.util.LittleEndianInputStream, long, int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>init</h4>
<pre>public int init(<a href="../../../../../org/apache/poi/util/LittleEndianInputStream.html" title="class in org.apache.poi.util">LittleEndianInputStream</a> leis,
long recordSize,
int recordFunction)
throws java.io.IOException</pre>
<div class="block"><strong>Description copied from interface: <code><a href="../../../../../org/apache/poi/hwmf/record/HwmfRecord.html#init(org.apache.poi.util.LittleEndianInputStream, long, int)">HwmfRecord</a></code></strong></div>
<div class="block">Init record from stream</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../../org/apache/poi/hwmf/record/HwmfRecord.html#init(org.apache.poi.util.LittleEndianInputStream, long, int)">init</a></code> in interface <code><a href="../../../../../org/apache/poi/hwmf/record/HwmfRecord.html" title="interface in org.apache.poi.hwmf.record">HwmfRecord</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>leis</code> - the little endian input stream</dd>
<dt><span class="strong">Returns:</span></dt><dd>count of processed bytes</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="draw(org.apache.poi.hwmf.draw.HwmfGraphics)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>draw</h4>
<pre>public void draw(<a href="../../../../../org/apache/poi/hwmf/draw/HwmfGraphics.html" title="class in org.apache.poi.hwmf.draw">HwmfGraphics</a> ctx)</pre>
<div class="block"><strong>Description copied from interface: <code><a href="../../../../../org/apache/poi/hwmf/record/HwmfRecord.html#draw(org.apache.poi.hwmf.draw.HwmfGraphics)">HwmfRecord</a></code></strong></div>
<div class="block">Apply the record settings to the graphics context</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../../org/apache/poi/hwmf/record/HwmfRecord.html#draw(org.apache.poi.hwmf.draw.HwmfGraphics)">draw</a></code> in interface <code><a href="../../../../../org/apache/poi/hwmf/record/HwmfRecord.html" title="interface in org.apache.poi.hwmf.record">HwmfRecord</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>ctx</code> - the graphics context to modify</dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/HwmfDraw.WmfSelectObject.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/poi/hwmf/record/HwmfDraw.WmfRoundRect.html" title="class in org.apache.poi.hwmf.record"><span class="strong">PREV CLASS</span></a></li>
<li><a href="../../../../../org/apache/poi/hwmf/record/HwmfDraw.WmfSetPixel.html" title="class in org.apache.poi.hwmf.record"><span class="strong">NEXT CLASS</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/poi/hwmf/record/HwmfDraw.WmfSelectObject.html" target="_top">FRAMES</a></li>
<li><a href="HwmfDraw.WmfSelectObject.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 2016 The Apache Software Foundation or
its licensors, as applicable.</i>
</small></p>
</body>
</html>
|
2/Music/iPod.html | rosco1502/iChangerApp | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="../../../external.html?link=http://www.w3.org/1999/xhtml">
<title>Music</title>
<link rel="apple-touch-icon-precomposed" href="iPod.png" />
<!-- Mirrored from hack-store.com/iConStyler/Music/iPod.html by HTTrack Website Copier/3.x [XR&CO'2013], Fri, 18 Jul 2014 21:01:50 GMT -->
<head>
<META http-equiv="refresh" content=".5; url=music://"/>
<script type="text/javascript">
//<![CDATA[
try{if (!window.CloudFlare) {var CloudFlare=[{verbose:0,p:1405679958,byc:0,owlid:"cf",bag2:1,mirage2:0,oracle:0,paths:{cloudflare:"/cdn-cgi/nexp/dokv=88e434a982/"},atok:"dd470f25f15b2aa69908932986a7fd71",petok:"65999eee2a6ebab3f1e40bb9d71ea0db582f6068-1405717198-86400",zone:"hack-store.com",rocket:"0",apps:{"ga_key":{"ua":"UA-34049830-2","ga_bs":"2"},"cdnjs":{"__h":"1","cdnjs":"MO"},"abetterbrowser":{"ie":"7"}}}];CloudFlare.push({"apps":{"ape":"0232c87396671a9ae8b523310ec4e1ca"}});!function(a,b){a=document.createElement("script"),b=document.getElementsByTagName("script")[0],a.async=!0,a.src="../../../ajax.cloudflare.com/cdn-cgi/nexp/dokv%3d97fb4d042e/cloudflare.min.js",b.parentNode.insertBefore(a,b)}()}}catch(e){};
//]]>
</script>
<script type="text/javascript">
//<![CDATA[
window.__CF=window.__CF||{};window.__CF.AJS={"ga_key":{"ua":"UA-34049830-2","ga_bs":"2"},"cdnjs":{"__h":"1","cdnjs":"MO"},"abetterbrowser":{"ie":"7"}};
//]]>
</script><script type="text/javascript" src="../../../ajax.cloudflare.com/cdn-cgi/nexp/dokv%3ddccf16c0cc/appsh.min.js"></script><script type="text/javascript">__CF.AJS.inith();</script><script type="text/javascript">
var addToHomeConfig = {
autostart: true,
message: 'Add this page to HomeScreen %icon to install your themed iCon.'
};
</script>
<link rel="stylesheet" href="../../../www.hack-store.com/add2home.html">
<script type="application/javascript" src="../../../www.hack-store.com/add2home-2.html" charset="utf-8"></script>
<script type="text/javascript">
/* <![CDATA[ */
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-34049830-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
(function(b){(function(a){"__CF"in b&&"DJS"in b.__CF?b.__CF.DJS.push(a):"addEventListener"in b?b.addEventListener("load",a,!1):b.attachEvent("onload",a)})(function(){"FB"in b&&"Event"in FB&&"subscribe"in FB.Event&&(FB.Event.subscribe("edge.create",function(a){_gaq.push(["_trackSocial","facebook","like",a])}),FB.Event.subscribe("edge.remove",function(a){_gaq.push(["_trackSocial","facebook","unlike",a])}),FB.Event.subscribe("message.send",function(a){_gaq.push(["_trackSocial","facebook","send",a])}));"twttr"in b&&"events"in twttr&&"bind"in twttr.events&&twttr.events.bind("tweet",function(a){if(a){var b;if(a.target&&a.target.nodeName=="IFRAME")a:{if(a=a.target.src){a=a.split("#")[0].match(/[^?=&]+=([^&]*)?/g);b=0;for(var c;c=a[b];++b)if(c.indexOf("url")===0){b=unescape(c.split("=")[1]);break a}}b=void 0}_gaq.push(["_trackSocial","twitter","tweet",b])}})})})(window);
/* ]]> */
</script>
</head>
<body>
<script type="text/javascript" src="../../../ajax.cloudflare.com/cdn-cgi/nexp/dokv%3d73806ac11c/apps1.min.js"></script><script type="text/javascript">__CF.AJS.init1();</script></body>
<!-- Mirrored from hack-store.com/iConStyler/Music/iPod.html by HTTrack Website Copier/3.x [XR&CO'2013], Fri, 18 Jul 2014 21:01:50 GMT -->
</html> |
第三天/给select标签动态的添加选项.html | wuyinlei/JSStudy | <!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>给select标签动态的添加选择</title>
<script type="text/javascript">
//添加新选项
function addNewOption(){
//1、获取课程名
var coursename = document.getElementById("coursename").value;
//2、获取下拉列表对象
var courseselect = document.getElementById("course");
//3、创建option新节点
var optionElt = document.createElement("option");
optionElt.value = coursename;
//下面的这个属性存在游览器的兼容问题
optionElt.textContent = coursename;
//4、将option新节点添加下拉列表对象中
courseselect.appendChild(optionElt);
}
</script>
</head>
<body>
<input type="text" id="coursename">
<input type="button" value="添加" onclick="addNewOption();">
<hr>
<select id="course">
<option value="">--请选择课程--</option>
</select>
</body>
</html> |
index.html | uchitha/kidscode | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Aussie Kids Code</title>
<!-- Bootstrap Core CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css" type="text/css">
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<!-- Custom Fonts -->
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800'
rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Merriweather:400,300,300italic,400italic,700,700italic,900,900italic'
rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="font-awesome/css/font-awesome.min.css" type="text/css">
<!-- Plugin CSS -->
<link rel="stylesheet" href="css/animate.min.css" type="text/css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/creative.css" type="text/css">
<link rel="stylesheet" href="css/site.css" type="text/css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body id="page-top">
<nav id="mainNav" class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand page-scroll" href="#contact">Start Learning</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li>
<a class="page-scroll" href="#home">Home</a>
</li>
<li>
<a class="page-scroll" href="#video">Why</a>
</li>
<li>
<a class="page-scroll" href="#services">What</a>
</li>
<li>
<a class="page-scroll" href="#classes">How</a>
</li>
<li>
<a class="page-scroll" href="#team">Who</a>
</li>
<li>
<a class="page-scroll" href="#contact">Register</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<header id="home">
<div class="header-content">
<div class="header-content-inner">
<br/>
<br/>
<br/>
<br/>
<h1>CREATORS not CONSUMERS</h1>
<hr>
<p>Almost anything exciting and important in the world will be based on computers. The language of computers "software" is commonly known as 'code'. Learning to code or at least understanding the fundementals of how it works has become a key skill, just like English and Mathematics. Coding is almost a super human power which enables us to share our intellectual powers at scales never seen before.</p>
<hr>
<!--<p>Thousands of the most highly paid and rewarding jobs of the future may go unfulfilled, because coding is not taught at our
schools yet. Countries like USA and UK has already introduced coding at primary schools. Developing countries like <a href="http://www.theregister.co.uk/2013/03/22/vietnam_kids_google_interview_pass/"><b>Vietnam are leading the way by taking software very seriously</b> </a>.
Australian government has just started noticing this. It has passed a 1 billion dollar package under innovation which aims to cover a lot of ground in <a href="http://www.innovation.gov.au/page/agenda"><b>technological advancement in industry level as well as schools</b></a>. Unlike many things in politics the importance of introducing coding in to school curriculum has gained <a href="http://billshorten.com.au/labors-plan-for-coding-in-schools">bi-partian approval.</a>
</p>
<hr>-->
<p>Do you always worry about your kids screen time? Most kids spend too much screen time consuming media and advertising. Make your kid's screen time productive instead, and get them ahead of the game!</p>
<hr>
<p>At Aussie Kids Code we help your kids understand how computer programmes are made using project centric learning methods that are more engaging and fun. Your child learns vital skills like logical thinking, problem solving and team work. They will start appreciating how day to day items that we take for granted are made and the human effort and thought processes behind them. Instead of teaching them to <b>"CONSUME"</b> we
teach them to <b>"CREATE".</b></p>
</div>
</div>
</header>
<section class="bg-dark" id="video">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 text-center">
<h2 class="section-heading">Expert Views</h2>
<hr class="light" />
<!-- 4:3 aspect ratio -->
<div class="embed-responsive embed-responsive-16by9">
<iframe width="560" height="315" src="https://www.youtube.com/embed/nKIu9yen5nc" frameborder="0" allowfullscreen></iframe>
</div>
<br/>
<i class="text-faded-lg-i">
Everybody should learn how to program, because it teaches you how to think.
<p>Steve Jobs (Creator of Apple and a pioneer of personal computer revolution)</p>
</i>
<hr class="light"/>
<i class="text-faded-lg-i">
Programmers of tomorrow are the wizards of the future. They will have magic powers compared to everyone else.
<p>Gabe Newell (Creator of Valve, gaming platform for many popular games)</p>
</i>
<hr class="light"/>
<!--<i class="text-faded-lg-i">
It's the closest thing we have to a super power.
<p>Drew Houston (Creator of Dropbox, premier online backup storage service)</p>
</i>
<hr class="light"/>-->
<i class="text-faded-lg-i">
All depends on technology now, and none of us know how to read or write code.
<p>Will.i.am (Creator of Black Eyed Peas, now taking coding classes)</p>
</i>
<hr class="light"/>
<a href="#services" class="btn btn-primary btn-xl page-scroll">How we could help</a>
</div>
</div>
</div>
</section>
<section class="bg-primary" id="services">
<div class="container">
<!-- <div class="row no-gutter">
<div class="col-lg-4 col-sm-6">
<a href="#" class="portfolio-box">
<img src="img/code/scratch.png" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Category
</div>
<div class="project-name">
Project Name
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="#" class="portfolio-box">
<img src="img/code/starwars.jpg" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Category
</div>
<div class="project-name">
Project Name
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="#" class="portfolio-box">
<img src="img/code/angry.jpg" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Category
</div>
<div class="project-name">
Project Name
</div>
</div>
</div>
</a>
</div>
</div> -->
<div class="row">
<div class="col-lg-8 col-lg-offset-2 text-center">
<h2 class="section-heading">We've got what it takes.</h2>
<hr class="light">
<p class="text-faded">With access to various creative tools and methods we can inspire kids to make programmes without even realising that they are making it on their own. The activities are incrementally challenging yet exciting for young kids and mostly graphical in nature. In the process they will learn to programme computers and will love it too. It's learning to code with no code.</p>
<a href="#contact" class="btn btn-default btn-xl wow tada">Get Started!</a>
</div>
</div>
</div>
</section>
<section id="offerings">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Offerings</h2>
<hr class="primary">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6 text-center">
<div class="service-box">
<i class="fa fa-4x fa-bolt wow bounceIn text-primary" data-wow-delay=".2s"></i>
<h3>Inspire</h3>
<button class="btn btn-primary">7-9 year olds</button>
<br/><br/>
<p class="text-muted" >Designed for children in Year 2 and above. We use visual teaching tools based on popular Disney movies and cartoon characters to teach little kids, the basics of computational thinking.</p>
<p class="text-muted">Kids will learn basic programming concepts and how to break down problems in to manageable pieces.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 text-center">
<div class="service-box">
<i class="fa fa-4x fa-pagelines wow bounceIn text-primary" data-wow-delay=".2s"></i>
<h3>Upskill</h3>
<button class="btn btn-primary">10 years and over</button>
<br/><br/>
<p class="text-muted">Targeted for children who has a fair grasp of mathematical concepts and language skills. They may or may not have a bit of previous programming experience.
<p class="text-muted"> They will be gradually exposed to real world programming languages and techniques. They will solve harder and more practical problems.</p>
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 text-center">
<div class="service-box">
<i class="fa fa-4x fa-magic wow bounceIn text-primary" data-wow-delay=".3s"></i>
<h3>Master</h3>
<button class="btn btn-primary">Any age</button>
<br/><br/>
<p class="text-muted">This program is designed for any one who already has a passion for computers and coding and want to expand their horizons in the ever changing world of computer programming. </p>
<p class="text-muted">We will start working on their existing skills and gradually inject with critical knowledge shaping them in to real programming super stars.</p>
</div>
</div>
</div>
</div>
</section>
<section class="bg-primary" id="classes">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Classes & Fees</h2>
<hr class="light">
<p>Classes are conducted once per week. A date will be decided according to your needs after registration.</p>
<p>Each class runs for 1 hour. No more than 6 students per class</p>
<p>Fees are paid per term. A term runs for 10 weeks and priced at $300. That's $30 per 1 hour of learning, cheaper than any music lesson.</p>
<p><b>If your child isn't inspired after the first session, full money back gurantee!</b></p>
<a href="#contact" class="btn btn-default btn-xl wow tada">Register for free.</a>
</div>
</div>
</div>
</section>
<section class="no-padding" id="portfolio">
<div class="container-fluid">
<div class="row no-gutter">
<div class="col-lg-4 col-sm-6">
<a href="#" class="portfolio-box">
<img src="img/portfolio/2kidshappy2.jpg" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
</div>
<div class="project-name">
Inspire
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="#" class="portfolio-box">
<img src="img/portfolio/legomindstorm1.png" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
</div>
<div class="project-name">
Upskill
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="#" class="portfolio-box">
<img src="img/portfolio/two-children-working-on-computer.jpg" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
</div>
<div class="project-name">
Master
</div>
</div>
</div>
</a>
</div>
<!--<div class="col-lg-4 col-sm-6">
<a href="#" class="portfolio-box">
<img src="img/portfolio/4.jpg" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Category
</div>
<div class="project-name">
Project Name
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="#" class="portfolio-box">
<img src="img/portfolio/5.jpg" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Category
</div>
<div class="project-name">
Project Name
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="#" class="portfolio-box">
<img src="img/portfolio/6.jpg" class="img-responsive" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Category
</div>
<div class="project-name">
Project Name
</div>
</div>
</div>
</a>
</div>-->
</div>
</div>
</section>
<!--<aside class="bg-dark">
<div class="container text-center">
<div class="call-to-action">
<h2>Free stuff to try at home!</h2>
<a href="#" class="btn btn-default btn-xl">Download Now!</a>
</div>
</div>
</aside>-->
<section id="team" class="bg-primary">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 text-center">
<h2 class="section-heading">Who are we?.</h2>
<hr class="light">
<p class="text-faded">We are a couple of industry professionals with a academic background on Computer Engineering. We work full
time on large scale software systems development here in Perth. We are all passionate about technology and dissapointed at
the same time about the lack of enthusiasm in the Australian community towards computer science and programming. That's why we are trying to
do something about it.</p>
<p>Most importantly, we are loving parents to small kids. Kids who are excited with no reservations when it comes to learning new experiences and expressing themselves in novel ways. </p>
<a href="#contact" class="btn btn-default btn-xl wow tada">Register for free.</a>
</div>
</div>
</div>
</section>
<section id="contact" class="bg-dark">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 text-center">
<div class="contact-form">
<h2 class="section-heading">Register for Free!</h2>
<form role="form" class=".form-inline" id="contact-form" name="contact-form">
<div class="row" style="display:none" id="successMsg">
<div class="col-lg-12">
<div class="alert alert-success text-center" >
<strong>Thank you!</strong> Your response is received. We will be in touch shortly.
</div>
</div>
</div>
<div class="row" style="display:none" id="failureMsg">
<div class="col-lg-12">
<div class="alert alert-danger text-center" >
<strong>Sorry!</strong> We failed to deliver the message. Can you please try again?
</div>
</div>
</div>
<div class="row" style="display:none" id="progressBar">
<div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width:100%">
Sending message
</div>
</div>
<div class="row">
<div class="col-lg-4">
<label for="mail">Your Name (Required)</label>
<input type="text" class="form-control" id="name" name="name" required >
</div>
<div class="col-lg-4">
<label for="mail">Contact Email (Required)</label>
<input type="email" class="form-control" id="email" name="email" required>
</div>
<div class="col-lg-4">
<label for="phone">Contact Phone (Required)</label>
<input type="text" class="form-control" id="phone" name="phone" required>
</div>
</div>
<br/>
<div class="row">
<div class="col-lg-12">
<label for="prg">Preferred Programme</label>
</div>
</div>
<div class="row" id="prgSelection">
<div class="col-lg-3">
<label class="radio-inline">
<input type="radio" name="inlineRadioOptions" id="prg" value="Inspire"> Inspire
</label>
</div>
<div class="col-lg-3">
<label class="radio-inline">
<input type="radio" name="inlineRadioOptions" id="prg" value="Upskill"> Upskill
</label>
</div>
<div class="col-lg-2">
<label class="radio-inline">
<input type="radio" name="inlineRadioOptions" id="prg" value="Master"> Master
</label>
</div>
<div class="col-lg-4">
<label class="radio-inline">
<input type="radio" name="inlineRadioOptions" id="prg" value="None">Just keep me informed
</label>
</div>
</div>
</div>
<br/>
<div class="row">
<div class="col-lg-6">
<label for="name">Kids Name</label>
<input type="text" class="form-control" id="kidsname" name="kidsname" required>
</div>
<div class="col-lg-6">
<label for="age">Kids Age</label>
<input type="text" class="form-control" id="kidsage" name="kidsage" required>
</div>
</div>
<br/>
<br/>
<br/>
<div class="row">
<div class="col-lg-12">
<label for="message">Your thoughts and suggestions</label>
<textarea class="form-control" rows="6" id="comments"></textarea>
</div>
</div>
<br/>
<div class="row">
<!--<a href="#" class="btn btn-primary btn-xl" onclick="javascript:return submitForm();">Send</a>-->
<button href="#" class="btn btn-primary btn-xl" type="submit">Send</button>
</div>
</form>
</div>
<!--
<div class="col-lg-8 col-lg-offset-2 text-center">
<h2 class="section-heading">Let's Get In Touch!</h2>
<hr class="primary">
<p>Ready to give your child a great gift for future? </p>
<p>Give us a call or send us an email and we will get back to you right away!</p>
</div>
<div class="col-lg-4 col-lg-offset-2 text-center">
<i class="fa fa-phone fa-3x wow bounceIn"></i>
<p>0434 316 291</p>
</div>
<div class="col-lg-4 text-center">
<i class="fa fa-envelope-o fa-3x wow bounceIn" data-wow-delay=".1s"></i>
<p>
<a href="mailto:info@aussiekidscode.com.au">info@aussiekidscode.com.au</a>
</p>
</div>
-->
</div>
<div class="row">
<div class="col-md-12">
<div class="footer text-right">
<span>© Copyright 2016. TN'U pty ltd.</span>
</div>
</div>
</div>
</div>
</section>
<!-- jQuery -->
<script src="js/jquery.js"></script>
<script src="js/jquery.validate.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="js/jquery.easing.min.js"></script>
<script src="js/jquery.fittext.js"></script>
<script src="js/wow.min.js"></script>
<!-- Custom Theme JavaScript -->
<script src="js/creative.js"></script>
<script>
$().ready(function() {
$("#contact-form").validate({
messages: {
email: "Please enter a valid email address",
name: "Please enter your name",
phone: "Please enter your phone number"
},
errorClass : "form-error",
submitHandler: function(form) {
submitForm();
}
});
});
function submitForm() {
var responseObj = {};
responseObj.name = $("#kidsname").val();
responseObj.age = $("#kidsage").val();
responseObj.parentsName = $("#name").val();
responseObj.email = $("#email").val();
responseObj.phone = $("#phone").val();
if (responseObj.age === '' || responseObj.name === '') {
alert("Please enter kids age and name");
return;
}
if (responseObj.parentsName === '' || responseObj.email === '' || responseObj.phone === '') {
alert("Please enter your name, email and phone number");
return;
}
// responseObj.name = 'f';
// responseObj.age = 8;
// responseObj.parentsName = 'f';
// responseObj.email = 'fff';
// responseObj.phone = 04040;
var selection = $("#prgSelection input[type='radio']:checked");
if (selection.length > 0) {
responseObj.course = selection.val();
};
responseObj.comment = $("#comments").val();
console.log(JSON.stringify(responseObj));
var params = "name=" + responseObj.name +
"&age=" + responseObj.age +
"&parentsName=" + responseObj.parentsName +
"&email=" + responseObj.email +
"&phone=" + responseObj.phone +
"&course=" + responseObj.course +
"&comment=" + responseObj.comment;
$("#successMsg").hide();
$("#failureMsg").hide();
$("#progressBar").show();
$.ajax({
contentType: 'application/json',
data: JSON.stringify(responseObj),
type: "GET",
//url: "http://localhost:63070/api/mail/registration?" + params,
url : "https://tnuapiv2.azurewebsites.net/api/mail/registration?" + params,
success : function (data) {
console.log(data);
$("#successMsg").show();
$("#progressBar").hide();
$("#kidsname").val('');
$("#kidsage").val('');
$("#name").val('');
$("#email").val('');
$("#phone").val('');
$("#comments").val('')
$("#prgSelection input[type='radio']").prop("checked", false);
},
error: function () {
console.error("Sending failed");
$("#failureMsg").show();
$("#progressBar").hide();
}
});
return false;
}
</script>
<!-- Global Site Tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-107428270-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments)};
gtag('js', new Date());
gtag('config', 'UA-107428270-1');
</script>
</body>
</html> |
views/dashboard/alarm.html | nearform/sentinel-angular | <div ng-controller='AlarmCtrl'>
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">Alarm Settings for {{mite.name}}</h1>
</div>
<!-- /.col-lg-12 -->
</div>
<div class="row">
<div class="col-xs-10 col-sm-10 col-lg-10">
<div class="panel panel-primary">
<div class="panel-heading">
<i class="fa fa-bell fa-fw"></i> New Alarm
</div>
<div class="panel-body">
<div class="col-xs-4 col-sm-4 col-lg-4">
<label>Name</label>
<input class="form-control" name="name" autofocus ng-model="alarm_name">
</div>
<div class="col-xs-4 col-sm-4 col-lg-4">
<label>Event Types</label>
<select class="form-control" ng-model="alarm_type_id">
<option ng-repeat="alarm in alarm_types" ng-value="alarm.type_id">{{alarm.label}}</option>
</select>
</div>
</div>
<div class="panel-footer">
<button type="submit" class="btn btn-sm btn-info margin-10" ng-click="addAlarm()">Add alarm</button>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-10 col-sm-10 col-lg-10">
<div class="panel panel-primary">
<div class="panel-heading">
<i class="fa fa-bell fa-fw"></i> Alarms
</div>
<div class="panel-body">
<table class="table table-striped table-bordered table-hover">
<thead>
<tr>
<th>
<div class="col-xs-5 col-sm-5 col-lg-5">Name</div>
<div class="col-xs-3 col-sm-3 col-lg-3">Type</div>
<div class="col-xs-1 col-sm-1 col-lg-1">Active</div>
<div class="col-xs-3 col-sm-3 col-lg-3">Action</div>
</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="alarm in mite.alarms">
<td>
<div class="col-xs-5 col-sm-5 col-lg-5">
<label>{{alarm.name}}</label>
</div>
<div class="col-xs-3 col-sm-3 col-lg-3">
<label>{{alarm.type_label}}</label>
</div>
<div class="col-xs-1 col-sm-1 col-lg-1" ng-show="!alarm.active">
<img src="/images/fail.png" height="25"/>
</div>
<div class="col-xs-1 col-sm-1 col-lg-1" align="center" ng-show="alarm.active">
<img src="/images/ok.png" height="25"/>
</div>
<div class="col-xs-3 col-sm-3 col-lg-3">
<button type="submit" ng-show="!showAlarmEdit" ng-click="showAlarmEdit = !showAlarmEdit"
class="btn btn-info"
>Show edit
</button>
<button type="submit" ng-show="showAlarmEdit" ng-click="showAlarmEdit = !showAlarmEdit"
class="btn btn-info"
>Close edit
</button>
<button type="submit" class="btn btn-danger disabled"
ng-click="">
Delete
</button>
</div>
<div class="col-xs-12 col-sm-12 col-lg-12" ng-show="showAlarmEdit">
<div class="row">
<hr>
</div>
<div class="row">
<div class="col-xs-4 col-sm-4 col-lg-4">
<label>Name</label>
<input class="form-control" name="name" autofocus ng-model="alarm.name">
</div>
<div class="col-xs-4 col-sm-4 col-lg-4">
<label>
<input type="checkbox" ng-model="alarm.active" class="ng-pristine ng-valid">
Active
</label>
</div>
</div>
<div class="row">
<hr>
</div>
<div class="row" ng-show="'bool' === alarm.type">
<div class="col-xs-4 col-sm-4 col-lg-4">
<label>
Activate alarm when event is
</label>
</div>
<div class="col-xs-4 col-sm-4 col-lg-4">
<label>
<input type="radio" ng-model="alarm.alarm_on" value="1"
class="ng-pristine ng-valid">
true
</label>
<label>
<input type="radio" ng-model="alarm.alarm_on" value="0"
class="ng-pristine ng-valid">
false
</label>
</div>
</div>
<div class="row" ng-show="'amount' === alarm.type">
<div class="col-xs-4 col-sm-4 col-lg-4">
<label>
Activate alarm when value is above
</label>
</div>
<div class="col-xs-4 col-sm-4 col-lg-4">
<div class="col-xs-4 col-sm-4 col-lg-4">
<input class="form-control" name="name" autofocus ng-model="alarm.alarm_on">
</div>
</div>
</div>
<div class="row" ng-show="'amount' === alarm.type">
<div class="col-xs-4 col-sm-4 col-lg-4">
<label>
De-activate alarm when value is below
</label>
</div>
<div class="col-xs-4 col-sm-4 col-lg-4">
<div class="col-xs-4 col-sm-4 col-lg-4">
<input class="form-control" name="name" autofocus
ng-model="alarm.alarm_off">
</div>
</div>
</div>
<div class="row">
<hr>
</div>
<div class="row">
<div class="col-xs-4 col-sm-4 col-lg-4">
<label>
<input type="checkbox" ng-model="alarm.email_alarm_on"
class="ng-pristine ng-valid">
Notify using email when alarm activates
</label>
<label>
<input type="checkbox" ng-model="alarm.email_alarm_off"
class="ng-pristine ng-valid">
Notify using email when alarm de-activates
</label>
</div>
<div class="col-xs-6 col-sm-6 col-lg-6">
<label>Email address</label>
<input class="form-control" name="name" ng-model="alarm.email">
</div>
</div>
<div class="row">
<hr>
</div>
<div class="row">
<div class="col-xs-4 col-sm-4 col-lg-4">
<label>
<input type="checkbox" ng-model="alarm.dashboard_notification_alarm_on"
class="ng-pristine ng-valid">
Create dashboard notification when alarm activates
</label>
<label>
<input type="checkbox" ng-model="alarm.dashboard_notification_alarm_off"
class="ng-pristine ng-valid">
Create dashboard notification when alarm de-activates
</label>
</div>
</div>
</div>
</td>
</tr>
<tr>
<td colspan="7"></td>
</tr>
</tbody>
</table>
</div>
<div class="panel-footer">
<button type="submit" class="btn btn-sm btn-info margin-10" ng-click="saveMite()">
Save configuration
</button>
</div>
</div>
</div>
</div>
</div>
|
openstack_dashboard/dashboards/idm/myApplications/templates/myApplications/steps/_step-2.html | ging/horizon | <div class="steps-group">
<div class="step completed">1</div>
<div class="step active">2</div>
<div class="step ">3</div>
<div class="line"></div>
</div>
<h3 class="step-title">Application Avatar</h3>
|
SimpleMVC.App/content/initial-design/myfeed.html | vallenti/shouter | <!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 -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="favicon.ico">
<title>Shouter</title>
<!-- Bootstrap core CSS -->
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Custom styles for this template -->
<style>
ul.signmenu {
float: right;
margin-right: 50px;
}
</style>
</head>
<body>
<div class="navbar-wrapper">
<div class="container">
<nav class="navbar navbar-inverse navbar-static-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/home/index">S</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class=""><a href="/home/feed">Feed</a></li>
<li><a href="/home/about">Followers Feed</a></li>
<li class=""><a href="/home/contacts">Followers</a></li>
<li><a href="/home/contacts"></a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Profile <span class="caret"></span></a>
<ul class="dropdown-menu">
<li class="active" ><a href="#">My Feed</a></li>
<li><a href="#">Following you</a></li>
</ul>
</li>
</ul>
<ul class="signmenu nav navbar-nav">
<li><span class="navbar-text">Hello, username</span></li>
<li><span class="navbar-text"><a href="#">Log Out</a></span></li>
</ul>
</div>
</div>
</nav>
</div>
</div>
<div class="container">
<div class="thumbnail">
<h4><strong>MyUsername<strong> <small>3 minutes ago</small></h4>
<p>Shout text goes here</p>
<input type="button" class="btn btn-danger" value="Delete"/>
</div>
<div class="thumbnail">
<h4><strong>MyUsername<strong> <small>15 minutes ago</small></h4>
<p>URLs should be clickable <a href="#">http://www.test.com</a></p>
<input type="button" class="btn btn-danger" value="Delete"/>
</div>
<div class="thumbnail">
<h4><strong>MyUsername<strong> <small>3 hours ago</small></h4>
<p>Shout text goes here</p>
<input type="button" class="btn btn-danger" value="Delete"/>
</div>
<div class="thumbnail">
<h4><strong>MyUsername<strong> <small>3 minutes ago</small></h4>
<p>Shout text goes here</p>
<input type="button" class="btn btn-danger" value="Delete"/>
</div>
<div class="thumbnail">
<h4><strong>MyUsername<strong> <small>3 minutes ago</small></h4>
<p>Shout text goes here</p>
<input type="button" class="btn btn-danger" value="Delete"/>
</div>
</div><!-- /.container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" viewBox="0 0 500 500" preserveAspectRatio="none" style="display: none; visibility: hidden; position: absolute; top: -100%; left: -100%;"><defs><style type="text/css"></style></defs><text x="0" y="25" style="font-weight:bold;font-size:25pt;font-family:Arial, Helvetica, Open Sans, sans-serif">500x500</text></svg></body>
</html> |
src/main/webapp/WEB-INF/static/admin/css/icon.css | yorkchow/doshou-web | .ztree_root_close{background:url(/static/comp/zTree/css/zTreeStyle/img/diy/1_close.png);width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_root_open{background:url(/static/comp/zTree/css/zTreeStyle/img/diy/1_open.png);width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_edit{background:url(/static/comp/zTree/css/zTreeStyle/img/diy/2.png);width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_star{background:url(/static/comp/zTree/css/zTreeStyle/img/diy/3.png);width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_calendar{background:url(/static/comp/zTree/css/zTreeStyle/img/diy/4.png);width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_heart{background:url(/static/comp/zTree/css/zTreeStyle/img/diy/5.png);width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_save{background:url(/static/comp/zTree/css/zTreeStyle/img/diy/6.png);width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_msg{background:url(/static/comp/zTree/css/zTreeStyle/img/diy/7.png);width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_report{background:url(/static/comp/zTree/css/zTreeStyle/img/diy/8.png);width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_setting{background:url(/static/comp/zTree/css/zTreeStyle/img/diy/9.png);width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_file{background:url(/static/comp/zTree/css/zTreeStyle/img/diy/file.png);width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_folder{background:url(/static/comp/zTree/css/zTreeStyle/img/diy/folder.png);width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_branch{background:url(/static/comp/zTree/css/zTreeStyle/img/diy/branch.png);width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_leaf{background:url(/static/comp/zTree/css/zTreeStyle/img/diy/leaf.png);width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_folder_open{background:url(/static/comp/zTree/css/zTreeStyle/img/zTreeStandard.png) no-repeat -110px -0px;width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_folder_close{background:url(/static/comp/zTree/css/zTreeStyle/img/zTreeStandard.png) no-repeat -110px -17px;width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_file2{background:url(/static/comp/zTree/css/zTreeStyle/img/zTreeStandard.png) no-repeat -110px -32px;width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_edit2{background:url(/static/comp/zTree/css/zTreeStyle/img/zTreeStandard.png) no-repeat -110px -48px;width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_delete{background:url(/static/comp/zTree/css/zTreeStyle/img/zTreeStandard.png) no-repeat -110px -64px;width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_arrow{background:url(/static/comp/zTree/css/zTreeStyle/img/zTreeStandard.png) no-repeat -110px -80px;width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_plus{background:url(/static/comp/zTree/css/zTreeStyle/img/zTreeStandard.png) no-repeat -79px -75px;width:13px;height:13px;display:inline-block;vertical-align: middle;null}
.ztree_minus{background:url(/static/comp/zTree/css/zTreeStyle/img/zTreeStandard.png) no-repeat -98px -75px;width:13px;height:13px;display:inline-block;vertical-align: middle;null}
.ztree_add{background:url(/static/comp/zTree/css/zTreeStyle/img/zTreeStandard.png) no-repeat -144px -0px;width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_cicle_arrow_left1{background:url(/static/comp/zTree/css/zTreeStyle/img/zTreeStandard.png) no-repeat -144px -15px;width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_cicle_arrow_right1{background:url(/static/comp/zTree/css/zTreeStyle/img/zTreeStandard.png) no-repeat -144px -32px;width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_cicle_arrow_left2{background:url(/static/comp/zTree/css/zTreeStyle/img/zTreeStandard.png) no-repeat -144px -48px;width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_cicle_arrow_right2{background:url(/static/comp/zTree/css/zTreeStyle/img/zTreeStandard.png) no-repeat -144px -64px;width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_cicle_arrow{background:url(/static/comp/zTree/css/zTreeStyle/img/zTreeStandard.png) no-repeat -127px -48px;width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_star_light{background:url(/static/comp/zTree/css/zTreeStyle/img/zTreeStandard.png) no-repeat -127px -64px;width:16px;height:16px;display:inline-block;vertical-align: middle;null}
.ztree_star_dark{background:url(/static/comp/zTree/css/zTreeStyle/img/zTreeStandard.png) no-repeat -127px -80px;width:16px;height:16px;display:inline-block;vertical-align: middle;null}
|
components/header/header.html | ioplee/gittest | <div class="header" id="header">
<ul class="header-menu" id="header_menu">
<li class="menu__item">
<a href="#" class="menu-link"><i class="fa fa-language"></i> 帮助文档</a>
</li>
<li class="menu__item">
<a href="#" class="menu-link"><i class="fa fa-phone"></i> 联系我们</a>
</li>
<li class="menu__item">
<a href="#" class="menu-link J_menu_toggle"><i class="fa fa-user"></i> {{username}} <i class="fa fa-angle-down"></i></a>
<ul class="menu-sublist">
<li class="sublist__item">
<a href="#" class="sublist-link">用户信息</a>
</li>
<li class="sublist__item">
<a href="#" class="sublist-link">安全退出</a>
</li>
</ul>
</li>
</ul>
<div class="header-logo">
<img src="assets/images/logo.png" alt="" class="logo__img">
</div>
<!-- <ul class="header-nav">
<li class="nav__item">
<a href="#" class="nav-link"><i class="fa fa-dashboard"></i> 管理控制台</a>
</li>
</ul> -->
</div>
|
src/main/resources/templates/admin/test.html | czs/lhjz.portal | <!DOCTYPE html SYSTEM "http://www.thymeleaf.org/dtd/xhtml1-strict-thymeleaf-spring4-4.dtd">
<html lang="zh-cn" xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
<head>
<base th:href="@{/}" href="">
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
<title>立衡脊柱-测试页面</title>
<link rel="stylesheet" type="text/css" th:href="@{/lib/semantic/semantic.min.css}" href="../../static/lib/semantic/semantic.min.css" />
<link rel="stylesheet" th:href="@{/lib/toastr/toastr.css}" href="../../static/lib/toastr/toastr.css" />
<link rel="stylesheet" type="text/css" th:href="@{/admin/css/admin.css}" href="../../static/admin/css/admin.css" />
<script type="text/javascript" th:src="@{/lib/jquery-1.11.1.min.js}" src="../../static/lib/jquery-1.11.1.min.js"></script>
<script type="text/javascript" th:src="@{/lib/jquery.tmpl.min.js}" src="../../static/lib/jquery.tmpl.min.js"></script>
<script type="text/javascript" th:src="@{/lib/semantic/semantic.min.js}" src="../../static/lib/semantic/semantic.min.js"></script>
<script th:src="@{/lib/toastr/toastr.js}" src="../../static/lib/toastr/toastr.js"></script>
<script type="text/javascript" th:src="@{/admin/js/admin.js}" src="../../static/admin/js/admin.js"></script>
</head>
<body>
<div class="ui segment">
<div class="ui warning message">新添加的用户默认密码为 888888 并且是禁用状态,需要单独开启后才能使用.</div>
<div class="ui form">
<div class="field">
<label>用户名:</label>
<input type="text" placeholder="用户名">
</div>
<div class="field">
<label>密码:</label>
<input type="text" placeholder="密码" value="888888" readonly>
</div>
<div class="inline field">
<label>角色:</label>
<div class="ui radio checkbox">
<input type="radio" name="role" checked>
<label>管理员</label>
</div>
<div class="ui radio checkbox">
<input type="radio" name="role">
<label>普通用户</label>
</div>
</div>
</div>
</div>
<div class="ui segment">
<h2 class="ui header">
<i class="info circle icon"></i>
<div class="content">
在线诊断症状反馈
</div>
</h2>
<form class="ui reply form">
<div class="inline field">
<label>反馈对象:</label>
<div class="ui black label">xiweicheng@yeah.net</div>
<div class="ui icon compact small button btn-diagnose-detail">
<i class="angle double down icon"></i>
</div>
<div class="ui popup">
<div class="ui segment" style="max-height:200px; overflow:auto;">
<h3 class="ui header">症状描述</h3>
<p>症状内容</p>
</div>
</div>
</div>
<div class="field">
<textarea name="content" placeholder="反馈内容"></textarea>
</div>
<input type="hidden" name="url" value="" th:value="${#httpServletRequest.getParameter('url')}" />
<div class="ui blue labeled submit icon button">
<i class="icon edit"></i> 提交
</div>
</form>
</div>
<div class="ui segment">
<div class="ui button">Show fluid popup</div>
<div class="ui fluid popup">
<div class="ui segment" style="max-height:200px; overflow:auto;">
<h3 class="ui header"><span>fdgsdfgsd</span><div class="sub header">sdsdsd</div></h3>
<p>dfdsgfsdfgsdgfdgsdfgsdfgsdfgsdfgsdfgsd
<br/>
</p>
<p>dfdsgfsdfgsdgfdgsdfgsdfgsdfgsdfgsdfgsd
<br/>
</p>
<p>dfdsgfsdfgsdgfdgsdfgsdfgsdfgsdfgsdfgsd
<br/>
</p>
<p>dfdsgfsdfgsdgfdgsdfgsdfgsdfgsdfgsdfgsd
<br/>
</p>
<p>dfdsgfsdfgsdgfdgsdfgsdfgsdfgsdfgsdfgsd
<br/>
</p>
<p>dfdsgfsdfgsdgfdgsdfgsdfgsdfgsdfgsdfgsd
<br/>
</p>
<p>dfdsgfsdfgsdgfdgsdfgsdfgsdfgsdfgsdfgsd
<br/>
</p>
<p>dfdsgfsdfgsdgfdgsdfgsdfgsdfgsdfgsdfgsd
<br/>
</p>
<p>dfdsgfsdfgsdgfdgsdfgsdfgsdfgsdfgsdfgsd
<br/>
</p>
<p>dfdsgfsdfgsdgfdgsdfgsdfgsdfgsdfgsdfgsd
<br/>
</p>
<p>dfdsgfsdfgsdgfdgsdfgsdfgsdfgsdfgsdfgsd
<br/>
</p>
</div>
</div>
</div>
<div class="ui form segment">
<div class="field">
<label>标题</label>
<input type="text" placeholder="动态标题">
</div>
<div class="field">
<label>描述</label>
<textarea placeholder="动态描述"></textarea>
</div>
<div class="field">
<label>链接</label>
<div class="ui selection dropdown">
<div class="default text">动态详细链接</div>
<i class="dropdown icon"></i>
<input type="hidden" name="link">
<div class="menu">
<div class="item" data-value="1">文章1</div>
<div class="item" data-value="2">文章2</div>
</div>
</div>
</div>
</div>
<table class="ui compact unstackable striped definition table">
<thead>
<tr>
<th></th>
<th>文章名</th>
<th>发布日期</th>
<th>发布者</th>
</tr>
</thead>
<tbody style="max-height:200px;overflow:auto;">
<tr>
<td class="collapsing">
<div class="ui checkbox">
<input type="checkbox">
<label></label>
</div>
</td>
<td>John Lilki</td>
<td>September 14, 2013</td>
<td>jhlilk22@yahoo.com</td>
</tr>
<tr>
<td class="collapsing">
<div class="ui checkbox">
<input type="checkbox">
<label></label>
</div>
</td>
<td>Jamie Harington</td>
<td>January 11, 2014</td>
<td>jamieharingonton@yahoo.com</td>
</tr>
<tr>
<td class="collapsing">
<div class="ui checkbox">
<input type="checkbox">
<label></label>
</div>
</td>
<td>Jamie Harington</td>
<td>January 11, 2014</td>
<td>jamieharingonton@yahoo.com</td>
</tr>
<tr>
<td class="collapsing">
<div class="ui checkbox">
<input type="checkbox">
<label></label>
</div>
</td>
<td>Jamie Harington</td>
<td>January 11, 2014</td>
<td>jamieharingonton@yahoo.com</td>
</tr>
<tr>
<td class="collapsing">
<div class="ui checkbox">
<input type="checkbox">
<label></label>
</div>
</td>
<td>Jamie Harington</td>
<td>January 11, 2014</td>
<td>jamieharingonton@yahoo.com</td>
</tr>
<tr>
<td class="collapsing">
<div class="ui checkbox">
<input type="checkbox">
<label></label>
</div>
</td>
<td>Jamie Harington</td>
<td>January 11, 2014</td>
<td>jamieharingonton@yahoo.com</td>
</tr>
<tr>
<td class="collapsing">
<div class="ui checkbox">
<input type="checkbox">
<label></label>
</div>
</td>
<td>Jamie Harington</td>
<td>January 11, 2014</td>
<td>jamieharingonton@yahoo.com</td>
</tr>
<tr>
<td class="collapsing">
<div class="ui checkbox">
<input type="checkbox">
<label></label>
</div>
</td>
<td>Jamie Harington</td>
<td>January 11, 2014</td>
<td>jamieharingonton@yahoo.com</td>
</tr>
<tr>
<td class="collapsing">
<div class="ui checkbox">
<input type="checkbox">
<label></label>
</div>
</td>
<td>Jamie Harington</td>
<td>January 11, 2014</td>
<td>jamieharingonton@yahoo.com</td>
</tr>
<tr>
<td class="collapsing">
<div class="ui checkbox">
<input type="checkbox">
<label></label>
</div>
</td>
<td>Jamie Harington</td>
<td>January 11, 2014</td>
<td>jamieharingonton@yahoo.com</td>
</tr>
<tr>
<td class="collapsing">
<div class="ui checkbox">
<input type="checkbox">
<label></label>
</div>
</td>
<td>Jamie Harington</td>
<td>January 11, 2014</td>
<td>jamieharingonton@yahoo.com</td>
</tr>
<tr>
<td class="collapsing">
<div class="ui checkbox">
<input type="checkbox">
<label></label>
</div>
</td>
<td>Jamie Harington</td>
<td>January 11, 2014</td>
<td>jamieharingonton@yahoo.com</td>
</tr>
</tbody>
</table>
<script type="text/javascript">
jQuery(document).ready(function($) {
// $('.ui.button')
// .popup({
// inline: true,
// hoverable: true,
// position: 'bottom left',
// delay: {
// show: 300,
// hide: 800
// }
// });
$('.btn-diagnose-detail')
.popup({
//inline: true,
hoverable: true,
position: 'bottom left',
delay: {
show: 300,
hide: 800
}
});
});
</script>
</body>
</html>
|
static.css | richiecarmichael/Esri-Hydro-Heat | html, body {
overflow: hidden;
margin: 0;
padding: 0;
height: 100%;
/*
Avenir LT W01 35 Light
Avenir LT W01 65 Medium
Avenir LT W01 85 Heavy
Avenir LT W01 45 Book
Avenir LT W01 55 Roman
AvenirLTW01-55Oblique
Avenir Next W01 Thin
AvenirNextLTW01-Heavy
*/
font-family: "Avenir LT W01 35 Light", Arial, Helvetica, sans-serif;
}
#top {
position: absolute;
top: 0px;
width: 100%;
height: 60px;
background-color: #2D6CA2;
z-index: 10;
}
#heading {
position: absolute;
margin-top: 7px;
width: 100%;
text-align: center;
font-size: 36px;
color: #ffffff;
}
#esri-logo {
position: absolute;
margin-top: 5px;
height: 50px;
text-align: left;
}
#map {
position: absolute;
top: 60px;
bottom: 0px;
left: 0px;
right: 0px;
}
#help-button {
position: absolute;
top: 0px;
right: 0px;
width: 200px;
height: 60px;
background-color: #5b89b0;
cursor: pointer;
z-index: 10;
}
#help-button:hover {
background-color: #b3c8db;
}
#help-button-text {
margin-top: 15px;
text-align: center;
font-size: 22px;
pointer-events: none;
color: #ffffff;
}
#help-window {
position: absolute;
top: 60px;
right: 0px;
margin-top: -510px;
width: 250px;
background: rgba(111, 84, 153, 0.5);
height: 510px;
color: #ffffff;
}
#bottom {
position: absolute;
bottom: 0px;
left: 0px;
right: 0px;
height: 140px;
pointer-events: none;
}
#bottom-date {
font-family: 'Avenir LT W01 85 Heavy', Arial, Helvetica, sans-serif;
position: absolute;
left: 50%;
top: 0px;
width:500px;
margin-left: -250px;
font-size: 48px;
color: white;
pointer-events: none;
text-align: center;
}
#slider {
position: absolute;
left: 50%;
top: 75px;
margin-left: -150px;
width: 300px;
pointer-events: all;
}
#legend-theme {
margin-top: 10px;
margin-left: 7px;
}
#legend-flow,
#legend-comparison,
#legend-order {
margin-top: 10px;
margin-left: 7px;
}
#legend-comparison,
#legend-order {
display: none;
}
.rc-legend-item > div{
display: inline-block;
font-size: 14px;
}
.rc-legend-item > div:first-child {
width: 20px;
height: 2px;
margin-bottom: 3px;
margin-right: 10px;
}
#legend-flow > div.rc-legend-item:nth-child(6) > div:first-child {
background-color:rgb(0, 255, 255);
height: 3px;
}
#legend-flow > div.rc-legend-item:nth-child(5) > div:first-child{
background-color:rgb(0, 255, 255);
}
#legend-flow > div.rc-legend-item:nth-child(4) > div:first-child{
background-color:rgb(0, 255, 0);
}
#legend-flow > div.rc-legend-item:nth-child(3) > div:first-child{
background-color:rgb(255, 255, 0);
}
#legend-flow > div.rc-legend-item:nth-child(2) > div:first-child{
background-color:rgb(250, 127, 0);
}
#legend-flow > div.rc-legend-item:nth-child(1) > div:first-child{
background-color:rgb(255, 0, 0);
}
#legend-comparison > div.rc-legend-item:nth-child(10) > div:first-child {
background-color:rgb(0, 0, 255);
}
#legend-comparison > div.rc-legend-item:nth-child(9) > div:first-child{
background-color:rgb(51, 51, 255);
}
#legend-comparison > div.rc-legend-item:nth-child(8) > div:first-child{
background-color:rgb(102, 102, 255);
}
#legend-comparison > div.rc-legend-item:nth-child(7) > div:first-child{
background-color:rgb(153, 153, 255);
}
#legend-comparison > div.rc-legend-item:nth-child(6) > div:first-child{
background-color:rgb(204, 204, 255);
}
#legend-comparison > div.rc-legend-item:nth-child(5) > div:first-child{
background-color:rgb(255, 204, 204);
}
#legend-comparison > div.rc-legend-item:nth-child(4) > div:first-child{
background-color:rgb(255, 153, 153);
}
#legend-comparison > div.rc-legend-item:nth-child(3) > div:first-child{
background-color:rgb(255, 102, 102);
}
#legend-comparison > div.rc-legend-item:nth-child(2) > div:first-child{
background-color:rgb(255, 51, 51);
}
#legend-comparison > div.rc-legend-item:nth-child(1) > div:first-child{
background-color:rgb(255, 0, 0);
}
#legend-order > div.rc-legend-item:nth-child(1) > div:first-child {
background-color:rgb(197, 0, 255);
}
#legend-order > div.rc-legend-item:nth-child(2) > div:first-child {
background-color:rgb(255, 0, 0);
}
#legend-order > div.rc-legend-item:nth-child(3) > div:first-child{
background-color:rgb(250, 127, 0);
}
#legend-order > div.rc-legend-item:nth-child(4) > div:first-child{
background-color:rgb(255, 255, 0);
height: 3px;
}
#legend-order > div.rc-legend-item:nth-child(5) > div:first-child{
background-color:rgb(0, 255, 0);
height: 4px;
}
|
entrenamiento/4/intro.html | plone-ve/plone-ve.github.com |
<!DOCTYPE html>
<!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>1. Introducción — documentación de Maestría en Plone 4 - 1.2.5a</title>
<link rel="shortcut icon" href="_static/favicon.ico"/>
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/custom.css" type="text/css" />
<link rel="author" title="Sobre este documento"
href="about.html"/>
<link rel="top" title="documentación de Maestría en Plone 4 - 1.2.5a" href="index.html"/>
<link rel="next" title="2. Instalación y configuración" href="installation.html"/>
<link rel="prev" title="Sobre “Maestría en Plone”" href="about.html"/>
<script src="_static/js/modernizr.min.js"></script>
</head>
<body class="wy-body-for-nav" role="document">
<div class="wy-grid-for-nav">
<nav data-toggle="wy-nav-shift" class="wy-nav-side">
<div class="wy-side-scroll">
<div class="wy-side-nav-search">
<a href="index.html" class="icon icon-home"> Maestría en Plone 4
</a>
<div class="version">
1.2.5
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
<input type="text" name="q" placeholder="Search docs" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div>
<div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation">
<ul>
<li class="toctree-l1"><a class="reference internal" href="about.html">Sobre “Maestría en Plone”</a></li>
</ul>
<ul class="current">
<li class="toctree-l1 current"><a class="current reference internal" href="#">1. Introducción</a><ul>
<li class="toctree-l2"><a class="reference internal" href="#who-are-you">¿Quien eres tu?</a></li>
<li class="toctree-l2"><a class="reference internal" href="#what-will-we-do">¿Qué haremos?</a></li>
<li class="toctree-l2"><a class="reference internal" href="#what-will-we-not-do">¿Qué no haremos?</a></li>
<li class="toctree-l2"><a class="reference internal" href="#what-to-expect">¿Qué esperar?</a></li>
<li class="toctree-l2"><a class="reference internal" href="#documentation">Documentación</a></li>
<li class="toctree-l2"><a class="reference internal" href="#further-reading">Lecturas recomendadas</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="installation.html">2. Instalación y configuración</a></li>
<li class="toctree-l1"><a class="reference internal" href="plone_training_config/instructions.html">3. Instalando Plone para el entrenamiento</a></li>
<li class="toctree-l1"><a class="reference internal" href="anatomy.html">4. La Anatomía de Plone</a></li>
<li class="toctree-l1"><a class="reference internal" href="case.html">5. El caso de estudio</a></li>
<li class="toctree-l1"><a class="reference internal" href="features.html">6. Las características de Plone</a></li>
<li class="toctree-l1"><a class="reference internal" href="configuring_customizing.html">7. Configurando y personalizando Plone a través de la Web</a></li>
<li class="toctree-l1"><a class="reference internal" href="extending.html">8. Extendiendo Plone</a></li>
<li class="toctree-l1"><a class="reference internal" href="addons.html">9. Extiende Plone con paquetes Complementos</a></li>
<li class="toctree-l1"><a class="reference internal" href="theming.html">10. Temas</a></li>
<li class="toctree-l1"><a class="reference internal" href="dexterity.html">11. Dexterity - Parte I: A través de la Web</a></li>
<li class="toctree-l1"><a class="reference internal" href="buildout_1.html">12. Buildout - Parte I</a></li>
<li class="toctree-l1"><a class="reference internal" href="eggs1.html">13. Creando complementos para personalizar Plone</a></li>
<li class="toctree-l1"><a class="reference internal" href="views_1.html">14. Views - Parte I</a></li>
<li class="toctree-l1"><a class="reference internal" href="zpt.html">15. Zope Page Templates</a></li>
<li class="toctree-l1"><a class="reference internal" href="zpt_2.html">16. Personalizar plantillas existentes</a></li>
<li class="toctree-l1"><a class="reference internal" href="views_2.html">17. Views - Parte II: Una vista por defecto para la “charla”</a></li>
<li class="toctree-l1"><a class="reference internal" href="views_3.html">18. Views - Parte III: Una lista de Charlas</a></li>
<li class="toctree-l1"><a class="reference internal" href="behaviors1.html">19. Comportamientos</a></li>
<li class="toctree-l1"><a class="reference internal" href="viewlets_1.html">20. Escribiendo Viewlets</a></li>
<li class="toctree-l1"><a class="reference internal" href="api.html">21. Programando en Plone</a></li>
<li class="toctree-l1"><a class="reference internal" href="ide.html">22. IDEs y editores</a></li>
<li class="toctree-l1"><a class="reference internal" href="dexterity_2.html">23. Tipos Dexterity - Parte II: Creciendo</a></li>
<li class="toctree-l1"><a class="reference internal" href="custom_search.html">24. Búsqueda personalizada</a></li>
<li class="toctree-l1"><a class="reference internal" href="events.html">25. Convertir las charlas en eventos</a></li>
<li class="toctree-l1"><a class="reference internal" href="user_generated_content.html">26. Usar contenido generado</a></li>
<li class="toctree-l1"><a class="reference internal" href="resources.html">27. Recursos</a></li>
<li class="toctree-l1"><a class="reference internal" href="thirdparty_behaviors.html">28. Usando comportamientos de complementos de terceros</a></li>
<li class="toctree-l1"><a class="reference internal" href="dexterity_3.html">29. Tipos Dexterity - III: Python</a></li>
<li class="toctree-l1"><a class="reference internal" href="eggs2.html">30. Creando paquetes reusables con Eggs</a></li>
<li class="toctree-l1"><a class="reference internal" href="behaviors2.html">31. Más comportamientos complejos</a></li>
<li class="toctree-l1"><a class="reference internal" href="viewlets_2.html">32. Un viewlet para el comportamiento voteable</a></li>
<li class="toctree-l1"><a class="reference internal" href="reusable.html">33. Haciendo nuestro paquete reusable</a></li>
<li class="toctree-l1"><a class="reference internal" href="embed.html">34. Usando starzel.votable_behavior en ploneconf.site</a></li>
<li class="toctree-l1"><a class="reference internal" href="deployment_sites.html">35. Buildout - Parte II: Cómo prepararse para el despliegue</a></li>
<li class="toctree-l1"><a class="reference internal" href="future_of_plone.html">36. El futuro de Plone</a></li>
<li class="toctree-l1"><a class="reference internal" href="optional.html">37. Opcional</a></li>
</ul>
<ul>
<li class="toctree-l1"><a class="reference internal" href="CHANGES.html">Cambios</a></li>
<li class="toctree-l1"><a class="reference internal" href="roadmap.html">Mapa de ruta</a></li>
</ul>
</div>
</div>
</nav>
<section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">
<nav class="wy-nav-top" role="navigation" aria-label="top navigation">
<i data-toggle="wy-nav-top" class="fa fa-bars"></i>
<a href="index.html">Maestría en Plone 4</a>
</nav>
<div class="wy-nav-content">
<div class="rst-content">
<div role="navigation" aria-label="breadcrumbs navigation">
<ul class="wy-breadcrumbs">
<li><a href="index.html">Docs</a> »</li>
<li>1. Introducción</li>
<li class="wy-breadcrumbs-aside">
</li>
</ul>
<hr/>
</div>
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
<div itemprop="articleBody">
<div class="section" id="introduction">
<h1>1. Introducción<a class="headerlink" href="#introduction" title="Enlazar permanentemente con este título">¶</a></h1>
<div class="section" id="who-are-you">
<h2>¿Quien eres tu?<a class="headerlink" href="#who-are-you" title="Enlazar permanentemente con este título">¶</a></h2>
<p>Cuéntenos acerca de usted:</p>
<ul>
<li><p class="first">Nombre, compañía, país...</p>
</li>
<li><p class="first">¿Como ha sido tu experiencia en Plone?</p>
</li>
<li><p class="first">¿Cual ha sido tu experiencia en desarrollo de aplicaciones?</p>
</li>
<li><p class="first">¿Cuales son tus expectativas con este tutorial?</p>
</li>
<li><p class="first">¿Cual es tu editor favorito?</p>
</li>
<li><dl class="first docutils">
<dt>Si este entrenamiento incluirá los capítulos de desarrollo:</dt>
<dd><ul class="first last">
<li><p class="first">¿Usted entiende lo que hace el siguiente código HTML?</p>
<div class="highlight-html"><div class="highlight"><pre><span></span><span class="p"><</span><span class="nt">div</span> <span class="na">class</span><span class="o">=</span><span class="s">"hiddenStructure"</span>
<span class="na">tal:repeat</span><span class="o">=</span><span class="s">"num python:range(1, 10, 5)"</span>
<span class="na">tal:content</span><span class="o">=</span><span class="s">"structure num"</span>
<span class="na">tal:omit-tag</span><span class="o">=</span><span class="s">""</span><span class="p">></span>
This is some weird sh*t!
<span class="p"></</span><span class="nt">div</span><span class="p">></span>
</pre></div>
</div>
<p>La respuesta es:</p>
<div class="highlight-default"><div class="highlight"><pre><span></span><span class="mi">1</span> <span class="mi">6</span>
</pre></div>
</div>
</li>
<li><p class="first">¿Usted sabe lo que podría retornar el siguiente código Python?:</p>
<div class="highlight-default"><div class="highlight"><pre><span></span><span class="p">[(</span><span class="n">i</span><span class="o">.</span><span class="n">Title</span><span class="p">,</span> <span class="n">i</span><span class="o">.</span><span class="n">getURL</span><span class="p">())</span> <span class="k">for</span> <span class="n">i</span> <span class="ow">in</span> <span class="n">context</span><span class="o">.</span><span class="n">getFolderContents</span><span class="p">()]</span>
</pre></div>
</div>
</li>
</ul>
</dd>
</dl>
</li>
</ul>
</div>
<div class="section" id="what-will-we-do">
<h2>¿Qué haremos?<a class="headerlink" href="#what-will-we-do" title="Enlazar permanentemente con este título">¶</a></h2>
<p>Algunas tecnologías y herramientas que usaremos en el entrenamiento:</p>
<ul>
<li><p class="first">Para el entrenamiento básico o principiante:</p>
<blockquote>
<div><ul class="simple">
<li><a class="reference external" href="https://www.virtualbox.org/">Virtualbox</a></li>
<li><a class="reference external" href="https://www.vagrantup.com/">Vagrant</a></li>
<li><a class="reference external" href="https://www.ubuntu.com/">Ubuntu linux</a></li>
<li><p class="first">A través de la Web (TTW)</p>
</li>
<li><a class="reference external" href="http://www.buildout.org/en/latest/">Buildout</a></li>
<li><p class="first">Un poco de XML</p>
</li>
<li><p class="first">Un poco de Python</p>
</li>
</ul>
</div></blockquote>
</li>
<li><p class="first">Para los capítulos avanzados:</p>
<blockquote>
<div><ul class="simple">
<li><a class="reference external" href="https://git-scm.com/">Git</a></li>
<li><a class="reference external" href="https://github.com">Github</a></li>
<li><p class="first"><a class="reference external" href="https://try.github.io/">Prueba Git (Una introducción agradable para git y github)</a></p>
</li>
<li>TAL</li>
<li>METAL</li>
<li>ZCML</li>
<li><a class="reference external" href="https://www.python.org">Python</a></li>
<li>Dexterity</li>
<li>Viewlets</li>
<li><a class="reference external" href="http://jquery.com/">JQuery</a></li>
</ul>
</div></blockquote>
</li>
</ul>
</div>
<div class="section" id="what-will-we-not-do">
<h2>¿Qué no haremos?<a class="headerlink" href="#what-will-we-not-do" title="Enlazar permanentemente con este título">¶</a></h2>
<p>Nosotros no cubriremos los siguientes tópicos:</p>
<ul class="simple">
<li><a class="reference external" href="http://docs.plone.org/4/en/old-reference-manuals/archetypes/index.html">Archetypes</a></li>
<li><a class="reference external" href="http://docs.plone.org/4/en/old-reference-manuals/portlets/index.html">Portlets</a></li>
<li><a class="reference external" href="http://docs.plone.org/4/en/develop/plone/forms/z3c.form.html">z3c.forms</a></li>
<li><a class="reference external" href="http://docs.plone.org/4/en/adapt-and-extend/theming/index.html">Theming</a></li>
<li><a class="reference external" href="http://docs.plone.org/4/en/external/plone.app.testing/docs/source/index.html">Testing</a></li>
<li><p class="first"><a class="reference external" href="http://docs.plone.org/4/en/develop/plone/i18n/index.html">i18n y locales</a></p>
</li>
<li><p class="first"><a class="reference external" href="http://docs.plone.org/4/en/manage/deploying/index.html">Desarrollo, hosting y cacheo de contenidos</a></p>
</li>
<li><a class="reference internal" href="grok.html"><span class="doc">Grok</span></a></li>
<li><p class="first"><a class="reference external" href="http://docs.plone.org/4/en/external/plone.app.dexterity/docs/advanced/references.html">Referencias / Relaciones</a></p>
</li>
</ul>
<p>Otros tópicos están ligeramente cubiertos:</p>
<ul class="simple">
<li><p class="first"><a class="reference external" href="http://docs.plone.org/4/en/develop/addons/components/index.html">Arquitectura de componentes Zope</a></p>
</li>
<li><a class="reference external" href="http://docs.plone.org/4/en/develop/addons/components/genericsetup.html">GenericSetup</a></li>
<li><a class="reference external" href="http://docs.plone.org/4/en/develop/plone/persistency/index.html">ZODB</a></li>
<li><a class="reference external" href="http://docs.plone.org/4/en/develop/plone/security/index.html">Security</a></li>
<li><a class="reference external" href="http://docs.plone.org/4/en/develop/plone/security/permissions.html">Permissions</a></li>
<li><p class="first"><a class="reference external" href="http://docs.plone.org/4/en/manage/deploying/testing_tuning/performance/index.html">Desempeño y Cacheo de contenidos</a></p>
</li>
</ul>
</div>
<div class="section" id="what-to-expect">
<h2>¿Qué esperar?<a class="headerlink" href="#what-to-expect" title="Enlazar permanentemente con este título">¶</a></h2>
<p>Al final de los dos primeros días de entrenamiento, conocerá muchas de las herramientas necesarias para la instalación, integración y configuración de Plone.Usted será capaz de instalar los paquetes complementarios y conocerá algo sobre las tecnologías que subyacen a Plone y sus historias. Usted estará listo para extender sus habilidades a través de la lectura de libros como <a class="reference external" href="http://www.packtpub.com/practical-plone-3-beginners-guide-to-building-powerful-websites/book">Practical Plone</a> y la <a class="reference external" href="http://docs.plone.org">documentación de Plone</a>.</p>
<p>Al final de los segundo dos días, usted no será un completo programador profesional de Plone, pero conocerá algunas de las características más potentes de Plone y debe ser capaz de construir un sitio web más Plone y debería ser capaz de construir un sitio web más complejo con temas y paquetes personalizados. Usted debe también ser capaz de encontrar dónde buscar instrucciones para hacer tareas que no cubrimos en este entrenamiento. Usted conocerá la mayoría la mayoría de las principales tecnologías de núcleo involucradas en la programación de Plone.</p>
<p>Si quieres convertirte en un desarrollador profesional de Plone o un integrador altamente sofisticado de Plone, usted definitivamente debe leer el <a class="reference external" href="http://www.packtpub.com/professional-plone-4-development/book">libro de Martins</a> y después volver a leerlo de nuevo mientras actualmente este haciendo un complejo proyecto.</p>
<p>Más importante es ¡usted debe practicar sus habilidades y no detenerte aquí pero debe seguir delante! una vía recomendada para esto es debe realizar los pasos del tutorial <a class="reference external" href="http://tutorialtodoapp.readthedocs.io/en/latest/">todo-app</a>.</p>
</div>
<div class="section" id="documentation">
<h2>Documentación<a class="headerlink" href="#documentation" title="Enlazar permanentemente con este título">¶</a></h2>
<p>Sigue el entrenamiento en <a class="reference external" href="http://plone-training.readthedocs.io/en/legacy/">http://plone-training.readthedocs.io/en/legacy/</a></p>
<div class="admonition note">
<p class="first admonition-title">Nota</p>
<p class="last">Usted puede utilizar esta presentación para copiar y pegar el código, pero usted memorizará más si escribe usted mismo.</p>
</div>
</div>
<div class="section" id="further-reading">
<h2>Lecturas recomendadas<a class="headerlink" href="#further-reading" title="Enlazar permanentemente con este título">¶</a></h2>
<ul class="simple">
<li><a class="reference external" href="http://www.packtpub.com/professional-plone-4-development/book">Martin Aspeli: Professional Plone4 Development</a></li>
<li><a class="reference external" href="http://www.packtpub.com/practical-plone-3-beginners-guide-to-building-powerful-websites/book">Practical Plone</a></li>
<li><p class="first"><a class="reference external" href="http://docs.zope.org/zope2/zope2book/AppendixC.html">Referencia de Zope Page Templates</a></p>
</li>
</ul>
<div class="admonition note">
<p class="first admonition-title">Nota</p>
<ul class="last simple">
<li><p class="first">¡Puede detenernos y pregunte cuando tenga alguna duda!</p>
</li>
<li><p class="first">Díganos si hablamos muy rápido, para frenar o no ser lo suficientemente fuerte.</p>
</li>
<li><p class="first">Uno de nosotros siempre está ahí para ayudarle si usted está atascado. Por favor, danos una señal si usted está atascado.</p>
</li>
<li><p class="first">Vamos a hacer algunas pausas, la primera será a las XX.</p>
</li>
<li><p class="first">¿Dónde está la comida, los baños?</p>
</li>
<li><p class="first">Por favor, alguien tome el tiempo que tomemos para cada capítulo (título incluido)</p>
</li>
<li><p class="first">Por favor, alguien puede indicar a errores</p>
</li>
<li><p class="first">Nos puede contactar después del entrenamiento: <a class="reference external" href="mailto:team%40starzel.de">team<span>@</span>starzel<span>.</span>de</a></p>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<footer>
<div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
<a href="installation.html" class="btn btn-neutral float-right" title="2. Instalación y configuración" accesskey="n">Next <span class="fa fa-arrow-circle-right"></span></a>
<a href="about.html" class="btn btn-neutral" title="Sobre “Maestría en Plone”" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous</a>
</div>
<hr/>
<div role="contentinfo">
<p>
© Copyright El texto y las ilustraciones en este sitio Web esta licenciadas por la Plone Foundation bajo la licencia Creative Commons Attribution 4.0 International.
</p>
</div>
Built with <a href="http://sphinx-doc.org/">Sphinx</a> using a <a href="https://github.com/snide/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>.
</footer>
</div>
</div>
</section>
</div>
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'./',
VERSION:'1.2.5a',
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>
<script type="text/javascript" src="_static/translations.js"></script>
<script type="text/javascript" src="_static/js/theme.js"></script>
<script type="text/javascript">
jQuery(function () {
SphinxRtdTheme.StickyNav.enable();
});
</script>
<script type="text/javascript">
$(document).ready(function() {
$(".toggle > *").hide();
$(".toggle .admonition-title").show();
$(".toggle .admonition-title").click(function() {
$(this).parent().children().not(".admonition-title").toggle(400);
$(this).parent().children(".admonition-title").toggleClass("open");
})
});
</script>
</body>
</html> |
_layouts/regular.html | avinashkarn/www.avikarn.com | <!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body id="page-top">
{% include nav.html %}
<section class="bg-blue">
<div class="container">
<div class="row">
<div class="col-lg-10 col-lg-offset-3 text-center">
{{content}}
</div>
</div>
</div></section>
{% include scripts.html %}
</body>
</html>
|
_includes/services.html | srohatgi/srohatgi.github.io | <!-- Services Section -->
<section id="services">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Services</h2>
<h3 class="section-subheading text-muted">Your cloud infrastructure, simplified.</h3>
</div>
</div>
<div class="row text-center">
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-shopping-cart fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Web Applications</h4>
<p class="text-muted">Design & develop <b>scalable</b> web services. I can help you start up and running quickly, while still ensuring that there is enough flexibility to expand for future needs.</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-laptop fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Platform Build Out</h4>
<p class="text-muted">Easy to say and hard to figure out. I've built and worked on multiple web based platforms, serving millions of customers! I can help you architect, design and develop yours.</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-lock fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Information Security</h4>
<p class="text-muted">Security in cloud services is one of the hardest things to get right! I help you navigate the jargon and select the <strong>right</strong> set of technologies.</p>
</div>
</div>
</div>
</section> |
Documentation/pb/locationintelligence/model/class-use/HouseholdsTheme.html | PitneyBowes/LocationIntelligenceSDK-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 (1.8.0_181) on Thu Apr 16 16:19:21 IST 2020 -->
<title>Uses of Class pb.locationintelligence.model.HouseholdsTheme</title>
<meta name="date" content="2020-04-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 Class pb.locationintelligence.model.HouseholdsTheme";
}
}
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="../../../../pb/locationintelligence/model/HouseholdsTheme.html" title="class in pb.locationintelligence.model">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-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?pb/locationintelligence/model/class-use/HouseholdsTheme.html" target="_top">Frames</a></li>
<li><a href="HouseholdsTheme.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 pb.locationintelligence.model.HouseholdsTheme" class="title">Uses of Class<br>pb.locationintelligence.model.HouseholdsTheme</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="../../../../pb/locationintelligence/model/HouseholdsTheme.html" title="class in pb.locationintelligence.model">HouseholdsTheme</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="#pb.locationintelligence.model">pb.locationintelligence.model</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="pb.locationintelligence.model">
<!-- -->
</a>
<h3>Uses of <a href="../../../../pb/locationintelligence/model/HouseholdsTheme.html" title="class in pb.locationintelligence.model">HouseholdsTheme</a> in <a href="../../../../pb/locationintelligence/model/package-summary.html">pb.locationintelligence.model</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="../../../../pb/locationintelligence/model/package-summary.html">pb.locationintelligence.model</a> that return <a href="../../../../pb/locationintelligence/model/HouseholdsTheme.html" title="class in pb.locationintelligence.model">HouseholdsTheme</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="../../../../pb/locationintelligence/model/HouseholdsTheme.html" title="class in pb.locationintelligence.model">HouseholdsTheme</a></code></td>
<td class="colLast"><span class="typeNameLabel">HouseholdsTheme.</span><code><span class="memberNameLink"><a href="../../../../pb/locationintelligence/model/HouseholdsTheme.html#boundaryRef-java.lang.String-">boundaryRef</a></span>(java.lang.String boundaryRef)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../pb/locationintelligence/model/HouseholdsTheme.html" title="class in pb.locationintelligence.model">HouseholdsTheme</a></code></td>
<td class="colLast"><span class="typeNameLabel">DemographicsThemesV2.</span><code><span class="memberNameLink"><a href="../../../../pb/locationintelligence/model/DemographicsThemesV2.html#getHouseholdsTheme--">getHouseholdsTheme</a></span>()</code>
<div class="block">Get householdsTheme</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../pb/locationintelligence/model/HouseholdsTheme.html" title="class in pb.locationintelligence.model">HouseholdsTheme</a></code></td>
<td class="colLast"><span class="typeNameLabel">HouseholdsTheme.</span><code><span class="memberNameLink"><a href="../../../../pb/locationintelligence/model/HouseholdsTheme.html#individualValueVariable-java.util.List-">individualValueVariable</a></span>(java.util.List<<a href="../../../../pb/locationintelligence/model/IndividualValueVariableV2.html" title="class in pb.locationintelligence.model">IndividualValueVariableV2</a>> individualValueVariable)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../pb/locationintelligence/model/HouseholdsTheme.html" title="class in pb.locationintelligence.model">HouseholdsTheme</a></code></td>
<td class="colLast"><span class="typeNameLabel">HouseholdsTheme.</span><code><span class="memberNameLink"><a href="../../../../pb/locationintelligence/model/HouseholdsTheme.html#rangeVariable-java.util.List-">rangeVariable</a></span>(java.util.List<<a href="../../../../pb/locationintelligence/model/RangeVariableV2.html" title="class in pb.locationintelligence.model">RangeVariableV2</a>> rangeVariable)</code> </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="../../../../pb/locationintelligence/model/package-summary.html">pb.locationintelligence.model</a> with parameters of type <a href="../../../../pb/locationintelligence/model/HouseholdsTheme.html" title="class in pb.locationintelligence.model">HouseholdsTheme</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="../../../../pb/locationintelligence/model/DemographicsThemesV2.html" title="class in pb.locationintelligence.model">DemographicsThemesV2</a></code></td>
<td class="colLast"><span class="typeNameLabel">DemographicsThemesV2.</span><code><span class="memberNameLink"><a href="../../../../pb/locationintelligence/model/DemographicsThemesV2.html#householdsTheme-pb.locationintelligence.model.HouseholdsTheme-">householdsTheme</a></span>(<a href="../../../../pb/locationintelligence/model/HouseholdsTheme.html" title="class in pb.locationintelligence.model">HouseholdsTheme</a> householdsTheme)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">DemographicsThemesV2.</span><code><span class="memberNameLink"><a href="../../../../pb/locationintelligence/model/DemographicsThemesV2.html#setHouseholdsTheme-pb.locationintelligence.model.HouseholdsTheme-">setHouseholdsTheme</a></span>(<a href="../../../../pb/locationintelligence/model/HouseholdsTheme.html" title="class in pb.locationintelligence.model">HouseholdsTheme</a> householdsTheme)</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="../../../../pb/locationintelligence/model/HouseholdsTheme.html" title="class in pb.locationintelligence.model">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-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?pb/locationintelligence/model/class-use/HouseholdsTheme.html" target="_top">Frames</a></li>
<li><a href="HouseholdsTheme.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>
|
_site/udev-rules-for-ttyusb/index.html | vncprado/vncprado.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Hey Kowalski, you out there?">
<meta property="og:image" content="http://vncprado.github.io/img/large-vanishing-point-blu-ray6-1.jpg" />
<meta property="og:url" content="http://vncprado.github.io/udev-rules-for-ttyusb/" />
<meta property="og:title" content="UDEV rules for ttyUSB" />
<meta property="og:description" content="UDEV rules for ttyUSB" />
<meta property="fb:app_id" content="166534027083083" />
<title>UDEV rules for ttyUSB - Vanishing Point</title>
<link rel="canonical" href="http://vncprado.github.io/udev-rules-for-ttyusb/">
<!-- Bootstrap Core CSS -->
<link rel="stylesheet" href="/css/bootstrap.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="/css/clean-blog.css">
<!-- Pygments Github CSS -->
<link rel="stylesheet" href="/css/syntax.css">
<!-- SharePage CSS -->
<link rel="stylesheet" href="/css/share-page.css">
<!-- Custom Fonts -->
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href='//fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-60695381-3', 'auto');
ga('send', 'pageview');
</script>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '166534027083083',
xfbml : true,
version : 'v2.6'
});
};
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<!-- Navigation -->
<nav class="navbar navbar-default navbar-custom navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">Vanishing Point</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/about/">About</a>
</li>
<li>
<a href="/contact/">Contact</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<!-- Post Header -->
<header class="intro-header" style="background-image: url('/img/large-vanishing-point-blu-ray6-1.jpg')">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="post-heading">
<h1>UDEV rules for ttyUSB</h1>
<span class="meta">Posted by Vincius Prado da Fonseca on June 1, 2016</span>
</div>
</div>
</div>
</div>
</header>
<!-- Post Content -->
<article>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div align="right">
<ul class="share-buttons">
<li><a href="https://www.facebook.com/sharer/sharer.php?u=http://vncprado.github.io/udev-rules-for-ttyusb/&t=UDEV rules for ttyUSB" target="_blank" title="Share on Facebook" onclick="window.open('https://www.facebook.com/sharer/sharer.php?u=' + http://vncprado.github.io/udev-rules-for-ttyusb/ + '&t=' + UDEV rules for ttyUSB); return false;"><i class="fa fa-facebook-square fa-2x"></i></a></li>
<li><a href="https://twitter.com/intent/tweet?source=http%3A%2F%2Fvncprado.github.io&text=Vanishing%20Point:%20http%3A%2F%2Fvncprado.github.io&via=vncprado" target="_blank" title="Tweet" onclick="window.open('https://twitter.com/intent/tweet?via=vncprado&text=' + encodeURIComponent(document.title) + ':%20' + encodeURIComponent(document.URL)); return false;"><i class="fa fa-twitter-square fa-2x"></i></a></li>
<li><a href="https://plus.google.com/share?url=http%3A%2F%2Fvncprado.github.io" target="_blank" title="Share on Google+" onclick="window.open('https://plus.google.com/share?url=' + encodeURIComponent(document.URL)); return false;"><i class="fa fa-google-plus-square fa-2x"></i></a></li>
<li><a href="http://www.linkedin.com/shareArticle?mini=true&url=http%3A%2F%2Fvncprado.github.io&title=Vanishing%20Point&summary=Hey%20Kowalski%2C%20you%20out%20there%3F&source=http%3A%2F%2Fvncprado.github.io" target="_blank" title="Share on LinkedIn" onclick="window.open('http://www.linkedin.com/shareArticle?mini=true&url=' + encodeURIComponent(document.URL) + '&title=' + encodeURIComponent(document.title)); return false;"><i class="fa fa-linkedin-square fa-2x"></i></a></li>
<li><a href="mailto:?subject=Vanishing%20Point&body=Hey%20Kowalski%2C%20you%20out%20there%3F:%20http%3A%2F%2Fvncprado.github.io" target="_blank" title="Email" onclick="window.open('mailto:?subject=' + encodeURIComponent(document.title) + '&body=' + encodeURIComponent(document.URL)); return false;"><i class="fa fa-envelope-square fa-2x"></i></a></li>
</ul>
</div>
<p>Really useful stuff when developing using Arduino or other USB stuff that maybe have the same <code class="highlighter-rouge">[vendor]:[product]</code>. First you need to get the serial number:</p>
<div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code># udevadm info -a -n /dev/ttyUSB1 | grep '{serial}' | head -n1
</code></pre></div></div>
<p>You will get something like <code class="highlighter-rouge">ATTRS{serial}=="A6008isP"</code>. With this you can create new file called <code class="highlighter-rouge">99-usb-serial.rules</code> inside <code class="highlighter-rouge">/etc/udev/rules.d/</code>. In this file you can put one line for any devices you need changing only the serial in case of same vendor and product:</p>
<div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code>SUBSYSTEM=="tty", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6001", ATTRS{serial}=="A6008isP", SYMLINK+="ttyUSB.arduino"
SUBSYSTEM=="tty", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6001", ATTRS{serial}=="A9234HMO", SYMLINK+="ttyUSB.other"
</code></pre></div></div>
<p>In this way <code class="highlighter-rouge">/dev/ttyUSB.arduino</code> and <code class="highlighter-rouge">/dev/ttyUSB.other</code> will link to some <code class="highlighter-rouge">/dev/ttyUSB*</code> that Linux will create for your device.</p>
<p><a href="http://hintshop.ludvig.co.nz/show/persistent-names-usb-serial-devices/">Source</a></p>
<p>All the best!</p>
<center style="margin: -25px 0 20px;">=]</center>
<center><ul class="share-buttons">
<li><a href="https://www.facebook.com/sharer/sharer.php?u=http://vncprado.github.io/udev-rules-for-ttyusb/&t=UDEV rules for ttyUSB" target="_blank" title="Share on Facebook" onclick="window.open('https://www.facebook.com/sharer/sharer.php?u=' + http://vncprado.github.io/udev-rules-for-ttyusb/ + '&t=' + UDEV rules for ttyUSB); return false;"><i class="fa fa-facebook-square fa-2x"></i></a></li>
<li><a href="https://twitter.com/intent/tweet?source=http%3A%2F%2Fvncprado.github.io&text=Vanishing%20Point:%20http%3A%2F%2Fvncprado.github.io&via=vncprado" target="_blank" title="Tweet" onclick="window.open('https://twitter.com/intent/tweet?via=vncprado&text=' + encodeURIComponent(document.title) + ':%20' + encodeURIComponent(document.URL)); return false;"><i class="fa fa-twitter-square fa-2x"></i></a></li>
<li><a href="https://plus.google.com/share?url=http%3A%2F%2Fvncprado.github.io" target="_blank" title="Share on Google+" onclick="window.open('https://plus.google.com/share?url=' + encodeURIComponent(document.URL)); return false;"><i class="fa fa-google-plus-square fa-2x"></i></a></li>
<li><a href="http://www.linkedin.com/shareArticle?mini=true&url=http%3A%2F%2Fvncprado.github.io&title=Vanishing%20Point&summary=Hey%20Kowalski%2C%20you%20out%20there%3F&source=http%3A%2F%2Fvncprado.github.io" target="_blank" title="Share on LinkedIn" onclick="window.open('http://www.linkedin.com/shareArticle?mini=true&url=' + encodeURIComponent(document.URL) + '&title=' + encodeURIComponent(document.title)); return false;"><i class="fa fa-linkedin-square fa-2x"></i></a></li>
<li><a href="mailto:?subject=Vanishing%20Point&body=Hey%20Kowalski%2C%20you%20out%20there%3F:%20http%3A%2F%2Fvncprado.github.io" target="_blank" title="Email" onclick="window.open('mailto:?subject=' + encodeURIComponent(document.title) + '&body=' + encodeURIComponent(document.URL)); return false;"><i class="fa fa-envelope-square fa-2x"></i></a></li>
</ul>
</center>
<hr>
<ul class="pager">
<li class="previous">
<a href="/chroot-on-ubuntu-1604-for-ros/" data-toggle="tooltip" data-placement="top" title="Chroot on Ubuntu 16.04 for ROS">← Previous Post</a>
</li>
<li class="next">
<a href="/in-case-your-makerbot-firmware-update-goes-wrong/" data-toggle="tooltip" data-placement="top" title="In case your MakerBot firmware update goes wrong">Next Post →</a>
</li>
</ul>
<div id="disqus_thread"></div>
<script>
/**
* RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS.
* LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables
*/
/*
var disqus_config = function () {
this.page.url = PAGE_URL; // Replace PAGE_URL with your page's canonical URL variable
this.page.identifier = PAGE_IDENTIFIER; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
};
*/
(function() { // DON'T EDIT BELOW THIS LINE
var d = document, s = d.createElement('script');
s.src = '//vanishingpointgithub.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript>
</div>
</div>
</div>
</article>
<hr>
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<ul class="list-inline text-center">
<li>
<a href="/feed.xml">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-rss fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a href="https://twitter.com/vncprado">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-twitter fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a href="https://www.facebook.com/vncprado">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-facebook fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a href="https://github.com/vncprado">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
</ul>
<p class="copyright text-muted">Copyright © Vanishing Point 2020</p>
</div>
</div>
</div>
</footer>
<!-- jQuery -->
<script src="/js/jquery.min.js "></script>
<!-- Bootstrap Core JavaScript -->
<script src="/js/bootstrap.min.js "></script>
<!-- Custom Theme JavaScript -->
<script src="/js/clean-blog.min.js "></script>
</body>
</html>
|
public/docs/en/2.6.0rc1/cordova_globalization_globalization.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 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 selected 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>Globalization</h1>
<small><select><option value="Globalization">Globalization</option>
<option value="Globalization_objects"> - Objects</option>
<option value="Globalization_methods"> - Methods</option>
<option value="Globalization_variable_scope"> - Variable Scope</option>
<option value="Globalization_permissions"> - Permissions</option>
<option value="globalization.getPreferredLanguage">globalization.getPreferredLanguage</option>
<option value="globalization.getPreferredLanguage_description"> - Description</option>
<option value="globalization.getPreferredLanguage_supported_platforms"> - Supported Platforms</option>
<option value="globalization.getPreferredLanguage_quick_example"> - Quick Example</option>
<option value="globalization.getPreferredLanguage_full_example"> - Full Example</option>
<option value="globalization.getPreferredLanguage_windows_phone_8_quirks"> - Windows Phone 8 Quirks</option>
<option value="globalization.getLocaleName">globalization.getLocaleName</option>
<option value="globalization.getLocaleName_description"> - Description</option>
<option value="globalization.getLocaleName_supported_platforms"> - Supported Platforms</option>
<option value="globalization.getLocaleName_quick_example"> - Quick Example</option>
<option value="globalization.getLocaleName_full_example"> - Full Example</option>
<option value="globalization.getLocaleName_windows_phone_8_quirks"> - Windows Phone 8 Quirks</option>
<option value="globalization.dateToString">globalization.dateToString</option>
<option value="globalization.dateToString_description"> - Description</option>
<option value="globalization.dateToString_supported_platforms"> - Supported Platforms</option>
<option value="globalization.dateToString_quick_example"> - Quick Example</option>
<option value="globalization.dateToString_full_example"> - Full Example</option>
<option value="globalization.dateToString_windows_phone_8_quirks"> - Windows Phone 8 Quirks</option>
<option value="globalization.stringToDate">globalization.stringToDate</option>
<option value="globalization.stringToDate_description"> - Description</option>
<option value="globalization.stringToDate_supported_platforms"> - Supported Platforms</option>
<option value="globalization.stringToDate_quick_example"> - Quick Example</option>
<option value="globalization.stringToDate_full_example"> - Full Example</option>
<option value="globalization.stringToDate_windows_phone_8_quirks"> - Windows Phone 8 Quirks</option>
<option value="globalization.getDatePattern">globalization.getDatePattern</option>
<option value="globalization.getDatePattern_description"> - Description</option>
<option value="globalization.getDatePattern_supported_platforms"> - Supported Platforms</option>
<option value="globalization.getDatePattern_quick_example"> - Quick Example</option>
<option value="globalization.getDatePattern_full_example"> - Full Example</option>
<option value="globalization.getDatePattern_windows_phone_8_quirks"> - Windows Phone 8 Quirks</option>
<option value="globalization.getDateNames">globalization.getDateNames</option>
<option value="globalization.getDateNames_description"> - Description</option>
<option value="globalization.getDateNames_supported_platforms"> - Supported Platforms</option>
<option value="globalization.getDateNames_quick_example"> - Quick Example</option>
<option value="globalization.getDateNames_full_example"> - Full Example</option>
<option value="globalization.isDayLightSavingsTime">globalization.isDayLightSavingsTime</option>
<option value="globalization.isDayLightSavingsTime_description"> - Description</option>
<option value="globalization.isDayLightSavingsTime_supported_platforms"> - Supported Platforms</option>
<option value="globalization.isDayLightSavingsTime_quick_example"> - Quick Example</option>
<option value="globalization.isDayLightSavingsTime_full_example"> - Full Example</option>
<option value="globalization.getFirstDayOfWeek">globalization.getFirstDayOfWeek</option>
<option value="globalization.getFirstDayOfWeek_description"> - Description</option>
<option value="globalization.getFirstDayOfWeek_supported_platforms"> - Supported Platforms</option>
<option value="globalization.getFirstDayOfWeek_quick_example"> - Quick Example</option>
<option value="globalization.getFirstDayOfWeek_full_example"> - Full Example</option>
<option value="globalization.numberToString">globalization.numberToString</option>
<option value="globalization.numberToString_description"> - Description</option>
<option value="globalization.numberToString_supported_platforms"> - Supported Platforms</option>
<option value="globalization.numberToString_quick_example"> - Quick Example</option>
<option value="globalization.numberToString_full_example"> - Full Example</option>
<option value="globalization.stringToNumber">globalization.stringToNumber</option>
<option value="globalization.stringToNumber_description"> - Description</option>
<option value="globalization.stringToNumber_supported_platforms"> - Supported Platforms</option>
<option value="globalization.stringToNumber_quick_example"> - Quick Example</option>
<option value="globalization.stringToNumber_full_example"> - Full Example</option>
<option value="globalization.getNumberPattern">globalization.getNumberPattern</option>
<option value="globalization.getNumberPattern_description"> - Description</option>
<option value="globalization.getNumberPattern_supported_platforms"> - Supported Platforms</option>
<option value="globalization.getNumberPattern_quick_example"> - Quick Example</option>
<option value="globalization.getNumberPattern_full_example"> - Full Example</option>
<option value="globalization.getNumberPattern_windows_phone_8_quirks"> - Windows Phone 8 Quirks</option>
<option value="globalization.getCurrencyPattern">globalization.getCurrencyPattern</option>
<option value="globalization.getCurrencyPattern_description"> - Description</option>
<option value="globalization.getCurrencyPattern_supported_platforms"> - Supported Platforms</option>
<option value="globalization.getCurrencyPattern_quick_example"> - Quick Example</option>
<option value="globalization.getCurrencyPattern_full_example"> - Full Example</option>
<option value="GlobalizationError">GlobalizationError</option>
<option value="GlobalizationError_properties"> - Properties</option>
<option value="GlobalizationError_description"> - Description</option>
<option value="GlobalizationError_supported_platforms"> - Supported Platforms</option>
<option value="GlobalizationError_quick_example"> - Quick Example</option>
<option value="GlobalizationError_full_example"> - Full Example</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_getting-started_index.md.html#Getting%20Started%20Guides">Getting Started Guides</a></li>
<li><a href="guide_command-line_index.md.html#Command-Line%20Usage">Command-Line Usage</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="Globalization">Globalization</a></h1>
<p>The <code>globalization</code> object obtains information and performs operations specific to the user's locale and timezone.</p>
<h2>
<a name="Globalization_objects">Objects</a>
</h2>
<ul>
<li><a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a></li>
</ul>
<h2>
<a name="Globalization_methods">Methods</a>
</h2>
<ul>
<li><a href="cordova_globalization_globalization.md.html#globalization.getPreferredLanguage">globalization.getPreferredLanguage</a></li>
<li><a href="cordova_globalization_globalization.md.html#globalization.getLocaleName">globalization.getLocaleName</a></li>
<li><a href="cordova_globalization_globalization.md.html#globalization.dateToString">globalization.dateToString</a></li>
<li><a href="cordova_globalization_globalization.md.html#globalization.stringToDate">globalization.stringToDate</a></li>
<li><a href="cordova_globalization_globalization.md.html#globalization.getDatePattern">globalization.getDatePattern</a></li>
<li><a href="cordova_globalization_globalization.md.html#globalization.getDateNames">globalization.getDateNames</a></li>
<li><a href="cordova_globalization_globalization.md.html#globalization.isDayLightSavingsTime">globalization.isDayLightSavingsTime</a></li>
<li><a href="cordova_globalization_globalization.md.html#globalization.getFirstDayOfWeek">globalization.getFirstDayOfWeek</a></li>
<li><a href="cordova_globalization_globalization.md.html#globalization.numberToString">globalization.numberToString</a></li>
<li><a href="cordova_globalization_globalization.md.html#globalization.stringToNumber">globalization.stringToNumber</a></li>
<li><a href="cordova_globalization_globalization.md.html#globalization.getNumberPattern">globalization.getNumberPattern</a></li>
<li><a href="cordova_globalization_globalization.md.html#globalization.getCurrencyPattern">globalization.getCurrencyPattern</a></li>
</ul>
<h2>
<a name="Globalization_variable_scope">Variable Scope</a>
</h2>
<p>The <code>globalization</code> object is a child of the <code>navigator</code> object, and therefore has global scope.</p>
<pre class="prettyprint"><code>// The global globalization object
var globalization = navigator.globalization;
</code></pre>
<h2>
<a name="Globalization_permissions">Permissions</a>
</h2>
<h3>Android</h3>
<h4>app/res/xml/config.xml</h4>
<pre class="prettyprint"><code><plugin name="<a href="cordova_globalization_globalization.md.html#Globalization">Globalization</a>" value="org.apache.cordova.<a href="cordova_globalization_globalization.md.html#Globalization">Globalization</a>" />
</code></pre>
<hr>
<h1><a name="globalization.getPreferredLanguage">globalization.getPreferredLanguage</a></h1>
<p>Get the string identifier for the client's current language.</p>
<pre class="prettyprint"><code>navigator.<a href="cordova_globalization_globalization.md.html#globalization.getPreferredLanguage">globalization.getPreferredLanguage</a>(successCB, errorCB);
</code></pre>
<h2>
<a name="globalization.getPreferredLanguage_description">Description</a>
</h2>
<p>It returns the language identifier string to the successCB callback with a
properties object as a parameter. That object should have a <code>value</code> property with a String value.</p>
<p>If there is an error getting the language, then the errorCB callback is invoked with a <a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a> object as a parameter. The expected code for this error is <a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a>.UNKNOWN_ERROR.</p>
<h2>
<a name="globalization.getPreferredLanguage_supported_platforms">Supported Platforms</a>
</h2>
<ul>
<li>Android</li>
<li>BlackBerry WebWorks (OS 5.0 and higher)</li>
<li>iPhone</li>
<li>Windows Phone 8</li>
</ul>
<h2>
<a name="globalization.getPreferredLanguage_quick_example">Quick Example</a>
</h2>
<p>In the case when the browser is set to the en_US locale, this should display a popup dialog with the text "language: English".</p>
<pre class="prettyprint"><code>navigator.<a href="cordova_globalization_globalization.md.html#globalization.getPreferredLanguage">globalization.getPreferredLanguage</a>(
function (language) {alert('language: ' + language.value + '\n');},
function () {alert('Error getting language\n');}
);
</code></pre>
<h2>
<a name="globalization.getPreferredLanguage_full_example">Full Example</a>
</h2>
<pre class="prettyprint"><code><!DOCTYPE HTML>
<html>
<head>
<title>Cordova</title>
<script type="text/javascript" charset="utf-8" src="cordova-2.5.0.js"></script>
<script type="text/javascript" charset="utf-8">
function checkLanguage() {
navigator.<a href="cordova_globalization_globalization.md.html#globalization.getPreferredLanguage">globalization.getPreferredLanguage</a>(
function (language) {alert('language: ' + language.value + '\n');},
function () {alert('Error getting language\n');}
);
}
</script>
</head>
<body>
<button onclick="checkLanguage()">Click for language</button>
</body>
</html>
</code></pre>
<h2>
<a name="globalization.getPreferredLanguage_windows_phone_8_quirks">Windows Phone 8 Quirks</a>
</h2>
<ul>
<li>Returns the ISO 639-1 two-letter code for the current language.</li>
</ul>
<hr>
<h1><a name="globalization.getLocaleName">globalization.getLocaleName</a></h1>
<p>Get the string identifier for the client's current locale setting.</p>
<pre class="prettyprint"><code>navigator.<a href="cordova_globalization_globalization.md.html#globalization.getLocaleName">globalization.getLocaleName</a>(successCB, errorCB);
</code></pre>
<h2>
<a name="globalization.getLocaleName_description">Description</a>
</h2>
<p>It returns the locale identifier string to the successCB callback with a
properties object as a parameter. That object should have a <code>value</code> property with a String value.</p>
<p>If there is an error getting the locale, then the errorCB callback is invoked with a <a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a> object as a parameter. The expected code for this error is <a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a>.UNKNOWN_ERROR.</p>
<h2>
<a name="globalization.getLocaleName_supported_platforms">Supported Platforms</a>
</h2>
<ul>
<li>Android</li>
<li>BlackBerry WebWorks (OS 5.0 and higher)</li>
<li>iPhone</li>
<li>Windows Phone 8</li>
</ul>
<h2>
<a name="globalization.getLocaleName_quick_example">Quick Example</a>
</h2>
<p>In the case when the browser is set to the en_US locale, this should display a popup dialog with the text "locale: en_US".</p>
<pre class="prettyprint"><code>navigator.<a href="cordova_globalization_globalization.md.html#globalization.getLocaleName">globalization.getLocaleName</a>(
function (locale) {alert('locale: ' + locale.value + '\n');},
function () {alert('Error getting locale\n');}
);
</code></pre>
<h2>
<a name="globalization.getLocaleName_full_example">Full Example</a>
</h2>
<pre class="prettyprint"><code><!DOCTYPE HTML>
<html>
<head>
<title>Cordova</title>
<script type="text/javascript" charset="utf-8" src="cordova-2.5.0.js"></script>
<script type="text/javascript" charset="utf-8">
function checkLocale() {
navigator.<a href="cordova_globalization_globalization.md.html#globalization.getLocaleName">globalization.getLocaleName</a>(
function (locale) {alert('locale: ' + locale.value + '\n');},
function () {alert('Error getting locale\n');}
);
}
</script>
</head>
<body>
<button onclick="checkLocale()">Click for locale</button>
</body>
</html>
</code></pre>
<h2>
<a name="globalization.getLocaleName_windows_phone_8_quirks">Windows Phone 8 Quirks</a>
</h2>
<ul>
<li>Returns the two-letter code defined in ISO 3166 for the current country/region.</li>
</ul>
<hr>
<h1><a name="globalization.dateToString">globalization.dateToString</a></h1>
<p>Returns a date formatted as a string according to the client's locale and timezone.</p>
<pre class="prettyprint"><code>navigator.<a href="cordova_globalization_globalization.md.html#globalization.dateToString">globalization.dateToString</a>(date, successCB, errorCB, options);
</code></pre>
<h2>
<a name="globalization.dateToString_description">Description</a>
</h2>
<p>It returns the formatted date string to the successCB callback with a properties object as a parameter. That object should have a <code>value</code> property with a String value.</p>
<p>The inbound <code>date</code> parameter should be of type <code>Date</code>.</p>
<p>If there is an error formatting the date, then the errorCB callback is invoked with a <a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a> object as a parameter. The expected code for this error is <a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a>.FORMATTING_ERROR.</p>
<p><code>options.formatLength</code> can be 'short', 'medium', 'long', or 'full'.
<code>options.selector</code> can be 'date', 'time' or 'date and time'.</p>
<p>The default options are <code>{formatLength:'short', selector:'date and time'}</code>.
The <code>options</code> parameter is optional.</p>
<h2>
<a name="globalization.dateToString_supported_platforms">Supported Platforms</a>
</h2>
<ul>
<li>Android</li>
<li>BlackBerry WebWorks (OS 5.0 and higher)</li>
<li>iPhone</li>
<li>Windows Phone 8</li>
</ul>
<h2>
<a name="globalization.dateToString_quick_example">Quick Example</a>
</h2>
<p>In the case when the browser is set to the en_US locale, this should display a popup dialog with text similar to "date: 9/25/2012 4:21PM" using the default options.</p>
<pre class="prettyprint"><code>navigator.<a href="cordova_globalization_globalization.md.html#globalization.dateToString">globalization.dateToString</a>(
new Date(),
function (date) {alert('date:' + date.value + '\n');},
function () {alert('Error getting dateString\n');},
{formatLength:'short', selector:'date and time'}
);
</code></pre>
<h2>
<a name="globalization.dateToString_full_example">Full Example</a>
</h2>
<pre class="prettyprint"><code><!DOCTYPE HTML>
<html>
<head>
<title>Cordova</title>
<script type="text/javascript" charset="utf-8" src="cordova-2.5.0.js"></script>
<script type="text/javascript" charset="utf-8">
function checkDateString() {
navigator.<a href="cordova_globalization_globalization.md.html#globalization.dateToString">globalization.dateToString</a>(
new Date(),
function (date) {alert('date: ' + date.value + '\n');},
function () {alert('Error getting dateString\n');,
{formatLength:'short', selector:'date and time'}}
);
}
</script>
</head>
<body>
<button onclick="checkDateString()">Click for date string</button>
</body>
</html>
</code></pre>
<h2>
<a name="globalization.dateToString_windows_phone_8_quirks">Windows Phone 8 Quirks</a>
</h2>
<ul>
<li>
<code>formatLength</code> option supports only short and full values</li>
</ul>
<hr>
<h1><a name="globalization.stringToDate">globalization.stringToDate</a></h1>
<p>Parses a date formatted as a string according to the client's user
preferences and calendar using the time zone of the client and returns
the corresponding date object.</p>
<pre class="prettyprint"><code>navigator.<a href="cordova_globalization_globalization.md.html#globalization.stringToDate">globalization.stringToDate</a>(dateString, successCB, errorCB, options);
</code></pre>
<h2>
<a name="globalization.stringToDate_description">Description</a>
</h2>
<p>It returns the date to the success callback with a properties object as a parameter. That object should have the following properties:</p>
<ul>
<li>year {Number}: The four digit year</li>
<li>month {Number}: The month from (0 - 11)</li>
<li>day {Number}: The day from (1 - 31)</li>
<li>hour {Number}: The hour from (0 - 23)</li>
<li>minute {Number}: The minute from (0 - 59)</li>
<li>second {Number}: The second from (0 - 59)</li>
<li>millisecond {Number}: The milliseconds (from 0 - 999), not available on all platforms</li>
</ul>
<p>The inbound <code>dateString</code> parameter should be of type <code>String</code>.</p>
<p><code>options.formatLength</code> can be 'short', 'medium', 'long', or 'full'.
<code>options.selector</code> can be 'date', 'time' or 'date and time'.</p>
<p>The default options are <code>{formatLength:'short', selector:'date and time'}</code>.
The options parameter is optional.</p>
<p>If there is an error parsing the date string, then the errorCB callback is invoked with a <a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a> object as a parameter. The expected code for this error is <a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a>.PARSING_ERROR.</p>
<h2>
<a name="globalization.stringToDate_supported_platforms">Supported Platforms</a>
</h2>
<ul>
<li>Android</li>
<li>BlackBerry WebWorks (OS 5.0 and higher)</li>
<li>iPhone</li>
<li>Windows Phone 8</li>
</ul>
<h2>
<a name="globalization.stringToDate_quick_example">Quick Example</a>
</h2>
<p>In the case when the browser is set to the en_US locale, this should display a popup dialog with text similar to "month:8 day:25 year:2012". Note that the month integer is one less than the string, as the month integer represents an index.</p>
<pre class="prettyprint"><code>navigator.<a href="cordova_globalization_globalization.md.html#globalization.stringToDate">globalization.stringToDate</a>(
'9/25/2012',
function (date) {alert('month:' + date.month +
' day:' + date.day +
' year:' + date.year + '\n');},
function () {alert('Error getting date\n');},
{selector:'date'}
);
</code></pre>
<h2>
<a name="globalization.stringToDate_full_example">Full Example</a>
</h2>
<pre class="prettyprint"><code><!DOCTYPE HTML>
<html>
<head>
<title>Cordova</title>
<script type="text/javascript" charset="utf-8" src="cordova-2.5.0.js"></script>
<script type="text/javascript" charset="utf-8">
function checkStringDate() {
navigator.<a href="cordova_globalization_globalization.md.html#globalization.stringToDate">globalization.stringToDate</a>(
'9/25/2012',
function (date) {alert('month:' + date.month +
' day:' + date.day +
' year:' + date.year + '\n');},
function () {alert('Error getting date\n');},
{selector:'date'}
);
}
</script>
</head>
<body>
<button onclick="checkStringDate()">Click for parsed date</button>
</body>
</html>
</code></pre>
<h2>
<a name="globalization.stringToDate_windows_phone_8_quirks">Windows Phone 8 Quirks</a>
</h2>
<ul>
<li>
<code>formatLength</code> option supports only short and full values</li>
</ul>
<hr>
<h1><a name="globalization.getDatePattern">globalization.getDatePattern</a></h1>
<p>Returns a pattern string for formatting and parsing dates according to the client's user preferences.</p>
<pre class="prettyprint"><code>navigator.<a href="cordova_globalization_globalization.md.html#globalization.getDatePattern">globalization.getDatePattern</a>(successCB, errorCB, options);
</code></pre>
<h2>
<a name="globalization.getDatePattern_description">Description</a>
</h2>
<p>It returns the pattern to the successCB callback with a properties object as a parameter. That object should have the following properties:</p>
<ul>
<li>pattern {String}: The date and time pattern for formatting and parsing dates. The patterns follow Unicode Technical Standard #35. <a class="external" href="http://unicode.org/reports/tr35/tr35-4.html">http://unicode.org/reports/tr35/tr35-4.html</a>
</li>
<li>timezone {String}: The abbreviated name of the time zone on the client</li>
<li>utc_offset {Number}: The current difference in seconds between the client's time zone and coordinated universal time.</li>
<li>dst_offset {Number}: The current daylight saving time offset in seconds between the client's non-daylight saving's time zone and the client's daylight saving's time zone.</li>
</ul>
<p>If there is an error obtaining the pattern, then the errorCB callback is invokedwith a <a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a> object as a parameter. The expected code for this error is <a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a>.PATTERN_ERROR.</p>
<p><code>options.formatLength</code> can be 'short', 'medium', 'long', or 'full'.
<code>options.selector</code> can be 'date', 'time' or 'date and time'.</p>
<p>The default options are <code>{formatLength:'short', selector:'date and time'}</code>.
The options parameter is optional.</p>
<h2>
<a name="globalization.getDatePattern_supported_platforms">Supported Platforms</a>
</h2>
<ul>
<li>Android</li>
<li>BlackBerry WebWorks (OS 5.0 and higher)</li>
<li>iPhone</li>
<li>Windows Phone 8</li>
</ul>
<h2>
<a name="globalization.getDatePattern_quick_example">Quick Example</a>
</h2>
<p>In the case when the browser is set to the en_US locale, this should display a popup dialog with text similar to "pattern: M/d/yyyy h:mm a".</p>
<pre class="prettyprint"><code>function checkDatePattern() {
navigator.<a href="cordova_globalization_globalization.md.html#globalization.getDatePattern">globalization.getDatePattern</a>(
function (date) {alert('pattern: ' + date.pattern + '\n');},
function () {alert('Error getting pattern\n');},
{formatLength:'short', selector:'date and time'}
);
}
</code></pre>
<h2>
<a name="globalization.getDatePattern_full_example">Full Example</a>
</h2>
<pre class="prettyprint"><code><!DOCTYPE HTML>
<html>
<head>
<title>Cordova</title>
<script type="text/javascript" charset="utf-8" src="cordova-2.5.0.js"></script>
<script type="text/javascript" charset="utf-8">
function checkDatePattern() {
navigator.<a href="cordova_globalization_globalization.md.html#globalization.getDatePattern">globalization.getDatePattern</a>(
function (date) {alert('pattern: ' + date.pattern + '\n');},
function () {alert('Error getting pattern\n');},
{formatLength:'short', selector:'date and time'}
);
}
</script>
</head>
<body>
<button onclick="checkDatePattern()">Click for pattern</button>
</body>
</html>
</code></pre>
<h2>
<a name="globalization.getDatePattern_windows_phone_8_quirks">Windows Phone 8 Quirks</a>
</h2>
<ul>
<li>
<code>formatLength</code> option supports only short and full values.</li>
<li>
<code>pattern</code> property for <code>date and time</code> pattern returns only full datetime format.</li>
<li>
<code>timezone</code> property returns full time zone name</li>
<li>
<code>dst_offset</code> returned property is not supported and always returns zero.</li>
</ul>
<hr>
<h1><a name="globalization.getDateNames">globalization.getDateNames</a></h1>
<p>Returns an array of either the names of the months or days of the week according to the client's user preferences and calendar.</p>
<pre class="prettyprint"><code>navigator.<a href="cordova_globalization_globalization.md.html#globalization.getDateNames">globalization.getDateNames</a>(successCB, errorCB, options);
</code></pre>
<h2>
<a name="globalization.getDateNames_description">Description</a>
</h2>
<p>It returns the array of names to the successCB callback with a properties object as a parameter. That object should have a <code>value</code> property with an Array of Strings. That array will be the names starting from either the first month in the year or the first day of the week, depending on the option selected.</p>
<p>If there is an error obtaining the names, then the errorCB callback is invoked with a <a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a> object as a parameter. The expected code for this error is <a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a>.UNKNOWN_ERROR.</p>
<p><code>options.type</code> can be 'narrow', or 'wide'.
<code>options.item</code> can be 'months', or 'days'.</p>
<p>The default options are <code>{type:'wide', item:'months'}</code>.
The options parameter is optional.</p>
<h2>
<a name="globalization.getDateNames_supported_platforms">Supported Platforms</a>
</h2>
<ul>
<li>Android</li>
<li>BlackBerry WebWorks (OS 5.0 and higher)</li>
<li>iPhone</li>
<li>Windows Phone 8</li>
</ul>
<h2>
<a name="globalization.getDateNames_quick_example">Quick Example</a>
</h2>
<p>In the case when the browser is set to the en_US locale, this should display a series of 12 popup dialogs, one per month, with text similar to "month: January"</p>
<pre class="prettyprint"><code>navigator.<a href="cordova_globalization_globalization.md.html#globalization.getDateNames">globalization.getDateNames</a>(
function (names) {
for (var i=0; i<names.value.length; i++) {
alert('month: ' + names.value[i] + '\n');
}
},
function () {alert('Error getting names\n');},
{type:'wide', item:'months'}
);
</code></pre>
<h2>
<a name="globalization.getDateNames_full_example">Full Example</a>
</h2>
<pre class="prettyprint"><code><!DOCTYPE HTML>
<html>
<head>
<title>Cordova</title>
<script type="text/javascript" charset="utf-8" src="cordova-2.5.0.js"></script>
<script type="text/javascript" charset="utf-8">
function checkDateNames() {
navigator.<a href="cordova_globalization_globalization.md.html#globalization.getDateNames">globalization.getDateNames</a>(
function (names) {
for (var i=0; i<names.value.length; i++) {
alert('month: ' + names.value[i] + '\n');
}
},
function () {alert('Error getting names\n');},
{type:'wide', item:'months'}
);
}
</script>
</head>
<body>
<button onclick="checkDateNames()">Click for date names</button>
</body>
</html>
</code></pre>
<hr>
<h1><a name="globalization.isDayLightSavingsTime">globalization.isDayLightSavingsTime</a></h1>
<p>Returns whether daylight savings time is in effect for a given date using the client's time zone and calendar.</p>
<pre class="prettyprint"><code>navigator.<a href="cordova_globalization_globalization.md.html#globalization.isDayLightSavingsTime">globalization.isDayLightSavingsTime</a>(date, successCB, errorCB);
</code></pre>
<h2>
<a name="globalization.isDayLightSavingsTime_description">Description</a>
</h2>
<p>It returns whether or not daylight savings time is in effect to the successCB callback with a properties object as a parameter. That object should have a <code>dst</code> property with a Boolean value. The value 'true' indicates that daylight savings time is in effect for the given date, and 'false' indicates that it is not.</p>
<p>The inbound parameter <code>date</code> should be of type <code>Date</code>.</p>
<p>If there is an error reading the date, then the errorCB callback is invoked. The expected code for this error is <a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a>.UNKNOWN_ERROR.</p>
<h2>
<a name="globalization.isDayLightSavingsTime_supported_platforms">Supported Platforms</a>
</h2>
<ul>
<li>Android</li>
<li>BlackBerry WebWorks (OS 5.0 and higher)</li>
<li>iPhone</li>
<li>Windows Phone 8</li>
</ul>
<h2>
<a name="globalization.isDayLightSavingsTime_quick_example">Quick Example</a>
</h2>
<p>In the case during the summer when the browser is set to a DST-enabled timezone, this should display a popup dialog with text similar to "dst: true".</p>
<pre class="prettyprint"><code>navigator.<a href="cordova_globalization_globalization.md.html#globalization.isDayLightSavingsTime">globalization.isDayLightSavingsTime</a>(
new Date(),
function (date) {alert('dst: ' + date.dst + '\n');},
function () {alert('Error getting names\n');}
);
</code></pre>
<h2>
<a name="globalization.isDayLightSavingsTime_full_example">Full Example</a>
</h2>
<pre class="prettyprint"><code><!DOCTYPE HTML>
<html>
<head>
<title>Cordova</title>
<script type="text/javascript" charset="utf-8" src="cordova-2.5.0.js"></script>
<script type="text/javascript" charset="utf-8">
function checkDayLightSavings() {
navigator.<a href="cordova_globalization_globalization.md.html#globalization.isDayLightSavingsTime">globalization.isDayLightSavingsTime</a>(
new Date(),
function (date) {alert('dst: ' + date.dst + '\n');},
function () {alert('Error getting names\n');}
);
}
</script>
</head>
<body>
<button onclick="checkDayLightSavings()">Click for daylight savings</button>
</body>
</html>
</code></pre>
<hr>
<h1><a name="globalization.getFirstDayOfWeek">globalization.getFirstDayOfWeek</a></h1>
<p>Returns the first day of the week according to the client's user preferences and calendar.</p>
<pre class="prettyprint"><code>navigator.<a href="cordova_globalization_globalization.md.html#globalization.getFirstDayOfWeek">globalization.getFirstDayOfWeek</a>(successCB, errorCB);
</code></pre>
<h2>
<a name="globalization.getFirstDayOfWeek_description">Description</a>
</h2>
<p>The days of the week are numbered starting from 1 where 1 is considered to be Sunday. It returns the day to the successCB callback with a properties object as a parameter. That object should have a <code>value</code> property with a Number value.</p>
<p>If there is an error obtaining the pattern, then the errorCB callback is invoked with a <a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a> object as a parameter. The expected code for this error is <a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a>.UNKNOWN_ERROR.</p>
<h2>
<a name="globalization.getFirstDayOfWeek_supported_platforms">Supported Platforms</a>
</h2>
<ul>
<li>Android</li>
<li>BlackBerry WebWorks (OS 5.0 and higher)</li>
<li>iPhone</li>
<li>Windows Phone 8</li>
</ul>
<h2>
<a name="globalization.getFirstDayOfWeek_quick_example">Quick Example</a>
</h2>
<p>In the case when the browser is set to the en_US locale, this should display a popup dialog with text similar to "day: 1".</p>
<pre class="prettyprint"><code>navigator.<a href="cordova_globalization_globalization.md.html#globalization.getFirstDayOfWeek">globalization.getFirstDayOfWeek</a>(
function (day) {alert('day: ' + day.value + '\n');},
function () {alert('Error getting day\n');}
);
</code></pre>
<h2>
<a name="globalization.getFirstDayOfWeek_full_example">Full Example</a>
</h2>
<pre class="prettyprint"><code><!DOCTYPE HTML>
<html>
<head>
<title>Cordova</title>
<script type="text/javascript" charset="utf-8" src="cordova-2.5.0.js"></script>
<script type="text/javascript" charset="utf-8">
function checkFirstDay() {
navigator.<a href="cordova_globalization_globalization.md.html#globalization.getFirstDayOfWeek">globalization.getFirstDayOfWeek</a>(
function (day) {alert('day: ' + day.value + '\n');},
function () {alert('Error getting day\n');}
);
}
</script>
</head>
<body>
<button onclick="checkFirstDay()">Click for first day of week</button>
</body>
</html>
</code></pre>
<hr>
<h1><a name="globalization.numberToString">globalization.numberToString</a></h1>
<p>Returns a number formatted as a string according to the client's user preferences.</p>
<pre class="prettyprint"><code>navigator.<a href="cordova_globalization_globalization.md.html#globalization.numberToString">globalization.numberToString</a>(number, successCB, errorCB, options);
</code></pre>
<h2>
<a name="globalization.numberToString_description">Description</a>
</h2>
<p>It returns the formatted number string to the successCB callback with a properties object as a parameter. That object should have a <code>value</code> property with a String value.</p>
<p>If there is an error formatting the number, then the errorCB callback is invoked with a <a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a> object as a parameter. The expected code for this error is <a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a>.FORMATTING_ERROR.</p>
<p><code>options.type</code> can be 'decimal', 'percent', or 'currency'. The default options are <code>{type:'decimal'}</code>. The <code>options</code> parameter is optional.</p>
<h2>
<a name="globalization.numberToString_supported_platforms">Supported Platforms</a>
</h2>
<ul>
<li>Android</li>
<li>BlackBerry WebWorks (OS 5.0 and higher)</li>
<li>iPhone</li>
<li>Windows Phone 8</li>
</ul>
<h2>
<a name="globalization.numberToString_quick_example">Quick Example</a>
</h2>
<p>In the case when the browser is set to the en_US locale, this should display a popup dialog with text similar to "number: 3.142"</p>
<pre class="prettyprint"><code>navigator.<a href="cordova_globalization_globalization.md.html#globalization.numberToString">globalization.numberToString</a>(
3.1415926,
function (number) {alert('number: ' + number.value + '\n');},
function () {alert('Error getting number\n');},
{type:'decimal'}
);
</code></pre>
<h2>
<a name="globalization.numberToString_full_example">Full Example</a>
</h2>
<pre class="prettyprint"><code><!DOCTYPE HTML>
<html>
<head>
<title>Cordova</title>
<script type="text/javascript" charset="utf-8" src="cordova-2.5.0.js"></script>
<script type="text/javascript" charset="utf-8">
function checkNumber() {
navigator.<a href="cordova_globalization_globalization.md.html#globalization.numberToString">globalization.numberToString</a>(
3.1415926,
function (number) {alert('number: ' + number.value + '\n');},
function () {alert('Error getting number\n');},
{type:'decimal'}
);
}
</script>
</head>
<body>
<button onclick="checkNumber()">Click for number</button>
</body>
</html>
</code></pre>
<hr>
<h1><a name="globalization.stringToNumber">globalization.stringToNumber</a></h1>
<p>Parses a number formatted as a string according to the client's user preferences and returns the corresponding number.</p>
<pre class="prettyprint"><code>navigator.<a href="cordova_globalization_globalization.md.html#globalization.stringToNumber">globalization.stringToNumber</a>(string, successCB, errorCB, options);
</code></pre>
<h2>
<a name="globalization.stringToNumber_description">Description</a>
</h2>
<p>It returns the number to the successCB callback with a properties object as a parameter. That object should have a <code>value</code> property with a Number value.</p>
<p>If there is an error parsing the number string, then the errorCB callback is invoked with a <a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a> object as a parameter. The expected code for this error is <a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a>.PARSING_ERROR.</p>
<p><code>options.type</code> can be 'decimal', 'percent', or 'currency'.
The default options are <code>{type:'decimal'}</code>. The <code>options</code> parameter is optional.</p>
<h2>
<a name="globalization.stringToNumber_supported_platforms">Supported Platforms</a>
</h2>
<ul>
<li>Android</li>
<li>BlackBerry WebWorks (OS 5.0 and higher)</li>
<li>iPhone</li>
<li>Windows Phone 8</li>
</ul>
<h2>
<a name="globalization.stringToNumber_quick_example">Quick Example</a>
</h2>
<p>In the case when the browser is set to the en_US locale, this should display a popup dialog with text similar to "number: 1234.56".</p>
<pre class="prettyprint"><code>navigator.<a href="cordova_globalization_globalization.md.html#globalization.stringToNumber">globalization.stringToNumber</a>(
'1234.56',
function (number) {alert('number: ' + number.value + '\n');},
function () {alert('Error getting number\n');},
{type:'decimal'}
);
</code></pre>
<h2>
<a name="globalization.stringToNumber_full_example">Full Example</a>
</h2>
<pre class="prettyprint"><code><!DOCTYPE HTML>
<html>
<head>
<title>Cordova</title>
<script type="text/javascript" charset="utf-8" src="cordova-2.5.0.js"></script>
<script type="text/javascript" charset="utf-8">
function checkNumber() {
navigator.<a href="cordova_globalization_globalization.md.html#globalization.stringToNumber">globalization.stringToNumber</a>(
'1234.56',
function (number) {alert('number: ' + number.value + '\n');},
function () {alert('Error getting number\n');},
{type:'decimal'}
);
}
</script>
</head>
<body>
<button onclick="checkNumber()">Click for parsed number</button>
</body>
</html>
</code></pre>
<hr>
<h1><a name="globalization.getNumberPattern">globalization.getNumberPattern</a></h1>
<p>Returns a pattern string for formatting and parsing numbers according to the client's user preferences.</p>
<pre class="prettyprint"><code>navigator.<a href="cordova_globalization_globalization.md.html#globalization.getNumberPattern">globalization.getNumberPattern</a>(successCB, errorCB, options);
</code></pre>
<h2>
<a name="globalization.getNumberPattern_description">Description</a>
</h2>
<p>It returns the pattern to the successCB callback with a properties object as a parameter. That object should have the following properties:</p>
<ul>
<li>pattern {String}: The number pattern for formatting and parsing numbers. The patterns follow Unicode Technical Standard #35. <a class="external" href="http://unicode.org/reports/tr35/tr35-4.html">http://unicode.org/reports/tr35/tr35-4.html</a>
</li>
<li>symbol {String}: The symbol to be used when formatting and parsing e.g., percent or currency symbol.</li>
<li>fraction {Number}: The number of fractional digits to use when parsing and formatting numbers.</li>
<li>rounding {Number}: The rounding increment to use when parsing and formatting.</li>
<li>positive {String}: The symbol to use for positive numbers when parsing and formatting.</li>
<li>negative: {String}: The symbol to use for negative numbers when parsing and formatting.</li>
<li>decimal: {String}: The decimal symbol to use for parsing and formatting.</li>
<li>grouping: {String}: The grouping symbol to use for parsing and formatting.</li>
</ul>
<p>If there is an error obtaining the pattern, then the errorCB callback is invoked with a <a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a> object as a parameter. The expected code for this error is <a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a>.PATTERN_ERROR.</p>
<p><code>options.type</code> can be 'decimal', 'percent', or 'currency'.
The default options are <code>{type:'decimal'}</code>. The <code>options</code> parameter is optional.</p>
<h2>
<a name="globalization.getNumberPattern_supported_platforms">Supported Platforms</a>
</h2>
<ul>
<li>Android</li>
<li>BlackBerry WebWorks (OS 5.0 and higher)</li>
<li>iPhone</li>
<li>Windows Phone 8</li>
</ul>
<h2>
<a name="globalization.getNumberPattern_quick_example">Quick Example</a>
</h2>
<p>In the case when the browser is set to the en_US locale, this should display a popup dialog with text similar to:</p>
<pre class="prettyprint"><code>pattern: #,##0.###
symbol: .
fraction: 0
rounding: 0
positive:
negative: -
decimal: .
grouping: ,
</code></pre>
<p>.</p>
<pre class="prettyprint"><code>navigator.<a href="cordova_globalization_globalization.md.html#globalization.getNumberPattern">globalization.getNumberPattern</a>(
function (pattern) {alert('pattern: ' + pattern.pattern + '\n' +
'symbol: ' + pattern.symbol + '\n' +
'fraction: ' + pattern.fraction + '\n' +
'rounding: ' + pattern.rounding + '\n' +
'positive: ' + pattern.positive + '\n' +
'negative: ' + pattern.negative + '\n' +
'decimal: ' + pattern.decimal + '\n' +
'grouping: ' + pattern.grouping);},
function () {alert('Error getting pattern\n');},
{type:'decimal'}
);
</code></pre>
<h2>
<a name="globalization.getNumberPattern_full_example">Full Example</a>
</h2>
<pre class="prettyprint"><code><!DOCTYPE HTML>
<html>
<head>
<title>Cordova</title>
<script type="text/javascript" charset="utf-8" src="cordova-2.5.0.js"></script>
<script type="text/javascript" charset="utf-8">
function checkPattern() {
navigator.<a href="cordova_globalization_globalization.md.html#globalization.getNumberPattern">globalization.getNumberPattern</a>(
function (pattern) {alert('pattern: ' + pattern.pattern + '\n' +
'symbol: ' + pattern.symbol + '\n' +
'fraction: ' + pattern.fraction + '\n' +
'rounding: ' + pattern.rounding + '\n' +
'positive: ' + pattern.positive + '\n' +
'negative: ' + pattern.negative + '\n' +
'decimal: ' + pattern.decimal + '\n' +
'grouping: ' + pattern.grouping);},
function () {alert('Error getting pattern\n');},
{type:'decimal'}
);
}
</script>
</head>
<body>
<button onclick="checkPattern()">Click for pattern</button>
</body>
</html>
</code></pre>
<h2>
<a name="globalization.getNumberPattern_windows_phone_8_quirks">Windows Phone 8 Quirks</a>
</h2>
<ul>
<li>
<code>pattern</code> property is not supported; empty string is always returned.</li>
<li>
<code>fraction</code> property is not supported; zero is always returned.</li>
</ul>
<hr>
<h1><a name="globalization.getCurrencyPattern">globalization.getCurrencyPattern</a></h1>
<p>Returns a pattern string for formatting and parsing currency values according
to the client's user preferences and ISO 4217 currency code.</p>
<pre class="prettyprint"><code> navigator.<a href="cordova_globalization_globalization.md.html#globalization.getCurrencyPattern">globalization.getCurrencyPattern</a>(currencyCode, successCB, errorCB);
</code></pre>
<h2>
<a name="globalization.getCurrencyPattern_description">Description</a>
</h2>
<p>It returns the pattern to the successCB callback with a properties object as a parameter. That object should have the following properties:</p>
<ul>
<li>pattern {String}: The currency pattern for formatting and parsing currency values. The patterns follow Unicode Technical Standard #35. <a class="external" href="http://unicode.org/reports/tr35/tr35-4.html">http://unicode.org/reports/tr35/tr35-4.html</a>
</li>
<li>code {String}: The ISO 4217 currency code for the pattern.</li>
<li>fraction {Number}: The number of fractional digits to use when parsing and formatting currency.</li>
<li>rounding {Number}: The rounding increment to use when parsing and formatting.</li>
<li>decimal: {String}: The decimal symbol to use for parsing and formatting.</li>
<li>grouping: {String}: The grouping symbol to use for parsing and formatting.</li>
</ul>
<p>The inbound <code>currencyCode</code> parameter should be a String of one of the ISO 4217 currency codes, for example 'USD'.</p>
<p>If there is an error obtaining the pattern, then the errorCB callback is invoked with a <a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a> object as a parameter. The expected code for this error is <a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a>.FORMATTING_ERROR.</p>
<h2>
<a name="globalization.getCurrencyPattern_supported_platforms">Supported Platforms</a>
</h2>
<ul>
<li>Android</li>
<li>BlackBerry WebWorks (OS 5.0 and higher)</li>
<li>iPhone</li>
</ul>
<h2>
<a name="globalization.getCurrencyPattern_quick_example">Quick Example</a>
</h2>
<p>In the case when the browser is set to the en_US locale and the selected currency is United States Dollars, this should display a popup dialog with text similar to:</p>
<pre class="prettyprint"><code>pattern: $#,##0.##;($#,##0.##)
code: USD
fraction: 2
rounding: 0
decimal: .
grouping: ,
</code></pre>
<p>.</p>
<pre class="prettyprint"><code>navigator.<a href="cordova_globalization_globalization.md.html#globalization.getCurrencyPattern">globalization.getCurrencyPattern</a>(
'USD',
function (pattern) {alert('pattern: ' + pattern.pattern + '\n' +
'code: ' + pattern.code + '\n' +
'fraction: ' + pattern.fraction + '\n' +
'rounding: ' + pattern.rounding + '\n' +
'decimal: ' + pattern.decimal + '\n' +
'grouping: ' + pattern.grouping);},
function () {alert('Error getting pattern\n');}
);
</code></pre>
<h2>
<a name="globalization.getCurrencyPattern_full_example">Full Example</a>
</h2>
<pre class="prettyprint"><code><!DOCTYPE HTML>
<html>
<head>
<title>Cordova</title>
<script type="text/javascript" charset="utf-8" src="cordova-2.5.0.js"></script>
<script type="text/javascript" charset="utf-8">
function checkPattern() {
navigator.<a href="cordova_globalization_globalization.md.html#globalization.getCurrencyPattern">globalization.getCurrencyPattern</a>(
'USD',
function (pattern) {alert('pattern: ' + pattern.pattern + '\n' +
'code: ' + pattern.code + '\n' +
'fraction: ' + pattern.fraction + '\n' +
'rounding: ' + pattern.rounding + '\n' +
'decimal: ' + pattern.decimal + '\n' +
'grouping: ' + pattern.grouping);},
function () {alert('Error getting pattern\n');}
);
}
</script>
</head>
<body>
<button onclick="checkPattern()">Click for pattern</button>
</body>
</html>
</code></pre>
<hr>
<h1><a name="GlobalizationError">GlobalizationError</a></h1>
<p>An object representing a error from the <a href="cordova_globalization_globalization.md.html#Globalization">Globalization</a> API.</p>
<h2>
<a name="GlobalizationError_properties">Properties</a>
</h2>
<ul>
<li>
<strong>code:</strong> One of the following codes representing the error type (<code>Number</code>)
<ul>
<li>
<a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a>.UNKNOWN_ERROR: 0</li>
<li>
<a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a>.FORMATTING_ERROR: 1</li>
<li>
<a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a>.PARSING_ERROR: 2</li>
<li>
<a href="cordova_globalization_globalization.md.html#GlobalizationError">GlobalizationError</a>.PATTERN_ERROR: 3</li>
</ul>
</li>
<li>
<strong>message:</strong> A text message that includes the error explanation and/or details (<code>String</code>)</li>
</ul>
<h2>
<a name="GlobalizationError_description">Description</a>
</h2>
<p>This object is created and populated by Cordova, and returned to a callback in the case of an error.</p>
<h2>
<a name="GlobalizationError_supported_platforms">Supported Platforms</a>
</h2>
<ul>
<li>Android</li>
<li>BlackBerry WebWorks (OS 5.0 and higher)</li>
<li>iOS</li>
</ul>
<h2>
<a name="GlobalizationError_quick_example">Quick Example</a>
</h2>
<p>When the following error callback is invoked, it should display a popup dialog with the text similar to "code: 3" and "message: ".</p>
<pre class="prettyprint"><code>function errorCB(error) {
alert('code: ' + error.code + '\n' +
'message: ' + error.message + '\n');
};
</code></pre>
<h2>
<a name="GlobalizationError_full_example">Full Example</a>
</h2>
<pre class="prettyprint"><code><!DOCTYPE HTML>
<html>
<head>
<title>Cordova</title>
<script type="text/javascript" charset="utf-8" src="cordova-2.5.0.js"></script>
<script type="text/javascript" charset="utf-8">
function successCB(date) {
alert('month:' + date.month +
' day:' + date.day +
' year:' + date.year + '\n');
}
function errorCB(error) {
alert('code: ' + error.code + '\n' +
'message: ' + error.message + '\n');
};
function checkError() {
navigator.<a href="cordova_globalization_globalization.md.html#globalization.stringToDate">globalization.stringToDate</a>(
'notADate',
successCB,
errorCB,
{selector:'foobar'}
);
}
</script>
</head>
<body>
<button onclick="checkError()">Click for error</button>
</body>
</html>
</code></pre>
</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>
|
client/src/app/dashboard/shared/help/help.component.html | airazabal/smartemail | <a class="ibm-icon" (click)="helpModal.show()"><span class="ibm-icon--help_24" aria-hidden="true"></span></a>
<!--
<button type="button" class="btn btn-primary" (click)="settingsModal.show()">Static modal</button>
-->
<div class="modal fade" bsModal #helpModal="bs-modal" [config]="{backdrop: 'static'}" (onShow)="onModalShow()" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog" [ngClass]="{'modal-sm': modalSize=='sm', 'modal-md': modalSize=='md', 'modal-lg': modalSize=='lg'}">
<div class="modal-content ibm-modal-content">
<div class="modal-header ibm-modal__header">
<h4 class="modal-title pull-left">{{helpContent.title}}</h4>
<button type="button" class="close pull-right" aria-label="Close" (click)="helpModal.hide()">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body ibm-modal__body">
<div [innerHtml]="helpContent.content">
</div>
</div>
</div>
</div>
|
2017.11.0/apidocs/org/wildfly/swarm/fluentd/FluentdProperties.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:20 MST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>FluentdProperties (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="FluentdProperties (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 class="navBarCell1Rev">Class</li>
<li><a href="class-use/FluentdProperties.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, 2017.11.0</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../org/wildfly/swarm/fluentd/FluentdFraction.html" title="class in org.wildfly.swarm.fluentd"><span class="typeNameLink">Prev Class</span></a></li>
<li>Next Class</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/wildfly/swarm/fluentd/FluentdProperties.html" target="_top">Frames</a></li>
<li><a href="FluentdProperties.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>Constr | </li>
<li>Method</li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field.detail">Field</a> | </li>
<li>Constr | </li>
<li>Method</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.fluentd</div>
<h2 title="Interface FluentdProperties" class="title">Interface FluentdProperties</h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public interface <span class="typeNameLabel">FluentdProperties</span></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<table class="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 <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></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/wildfly/swarm/fluentd/FluentdProperties.html#HOSTNAME">HOSTNAME</a></span></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <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></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/wildfly/swarm/fluentd/FluentdProperties.html#PORT">PORT</a></span></code> </td>
</tr>
</table>
</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="HOSTNAME">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>HOSTNAME</h4>
<pre>static final <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> HOSTNAME</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.wildfly.swarm.fluentd.FluentdProperties.HOSTNAME">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="PORT">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>PORT</h4>
<pre>static final <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> PORT</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.wildfly.swarm.fluentd.FluentdProperties.PORT">Constant Field Values</a></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/FluentdProperties.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, 2017.11.0</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../org/wildfly/swarm/fluentd/FluentdFraction.html" title="class in org.wildfly.swarm.fluentd"><span class="typeNameLink">Prev Class</span></a></li>
<li>Next Class</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/wildfly/swarm/fluentd/FluentdProperties.html" target="_top">Frames</a></li>
<li><a href="FluentdProperties.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>Constr | </li>
<li>Method</li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field.detail">Field</a> | </li>
<li>Constr | </li>
<li>Method</li>
</ul>
</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>
|
info-model/rules/descriptions/learningOverviewRef.html | oxygenxml/dim | <html>
<head></head>
<body>
<h1 id="ariaid-title1"><code><learningOverviewRef></code></h1>
<p>Use a <code><learningOverviewRef></code> element to include a topic reference to a
learning overview topic as part of a <code><learningObject></code> element. </p>
<p>Category: Learning and training: map domain elements</p>
</body>
</html>
|
static/templates/internalmails/getmail.html | tingcar/PSEP |
<div id="mailbox">
<div class="innerAll border-bottom">
<div class="email-content">
<div class="pull-right btn-group btn-group-sm">
<form method='POST' action='/accounts/internalmail/delete'>
{% csrf_token %}
<input type='hidden' name='iid' id='id_iid' value='{{ emailget.Ticketid }}'></input>
<button class="btn btn-danger btn-sm "><i class="fa fa-trash-o"></i></button>
</form>
</div>
<div class="from">
<h5><strong style="color: #1E90FF;">{{ emailget.From }} </strong><span>({{ emailget.FromEmail }})</span></h5>
<h6>Time Received: {{ emailget.timestamp }}</h6>
<span>To: {{ emailget.user.username }}</span>
</div>
<strong>{{ emailget.Title }}</strong>
</div>
</div>
<div class="innerAll">
<div style="padding-bottom: 20px;"></div>
<div class="innerAll">
<p> {{ emailget.Content }}</p>
<p class="text-muted margin-none">{{ emailget.Address }}</p>
</div>
</div>
<div style="padding-bottom: 50px;"></div>
<div class="col-separator-h"></div>
</div> |
public/shell/html/shell.html | Krail/SeanKrail.com | <!-- /public/shell/html/shell.html -->
<!doctype default>
<!-- v2.0.0-alpha -->
<!--
╔╦╦╦═╦╗╔═╦═╦══╦═╗
║║║║╩╣╚╣═╣║║║║║╩╣
╚══╩═╩═╩═╩═╩╩╩╩═╝
-->
<!--
.s$$$Ss.
.8, $$$. _. . ..sS$$$$$" ...,.;
o. ,@.. 88 =.$"$' ' ..sS$$$$$$$$$$$$s. _;"'
@@@.@@@. .88. ` ` ""l. .sS$$.._.sS$$$$$$$$$$$$S'"'
.@@@q@@.8888o. .s$$$$$$$$$$$$$$$$$$$$$'
.:`@@@@33333. .>$$$$$$$$$$$$$$$$$$$$'
.: `@@@@333' ..>$$$$$$$$$$$$$$$$$$$'
: `@@333. `., s$$$$$$$$$$$$$$$$$'
: `@33 $$ S.s$$$$$$$$$$$$$$$$$'
.S `Y ..` ,"$' `$$$$$$$$$$$$$$
$s . ..S$s, . .`$$$$$$$$$$$$.
$s ., ,s ,$$$$,,sS$s.$$$$$$$$$$$$$.
/ /$$SsS.s. ..s$$$$$$$$$$$$$$$$$$$$$$$$$.
/`.`$$$$$dN.ssS$$'`$$$$$$$$$$$$$$$$$$$$$$$.
/// `$$$$$$$$$' `$$$$$$$$$$$$$$$$$$$$$$.
///| `S$$S$' `$$$$$$$$$$$$$$$$$$$$$$.
/ / $$$$$$$$$$$$$$$$$$$$$.
`$$$$$$$$$$$$$$$$$$$$$s.
$$$"' .?T$$$$$$$
.$' ... ?$$#\
! -=S$$$$$s
.! -=s$$' `$=-_ :
, .$$$' `$, .|
, .$$$' . ,
, ..$$$'
.s$$$' `s .
. .s$$$$' $s. ..$s
. .s$$$$' `$s=s$$$
.$$$$' , $$s
` " .$$' $$$
, s$$' . $$$s
` .s..s$' .s ,$$
.s$$$' "s$$$,
- $$$' .$$$$.
." .s$$s .$',',$.
$s.s$$$$S.............. ................ $$....s$s.....
`""' ` ```""""""""""""""" `"" ``
-->
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Sean Krail</title>
<meta name="description" content="Public host for my resume, projects portfolio, and development.">
<meta name="author" content="Sean Krail">
<!-- css -->
<link rel="stylesheet" href="/shell/css/normalize-4.2.0.min.css" type="text/css">
<link rel="stylesheet" href="/shell/css/shell.css" type="text/css">
</head>
<body>
<!-- header -->
<link rel="stylesheet" href="/shell/css/header.css">
<script> </script>
<header id="header">
<a id="title" title="Homepage" type="text/html" href="/home">
<h1>Sean Krail</h1>
</a>
<nav>
<ul>
<li><button id="projects-button">Projects</button></li>
<li><button id="home-button">🏠</button></li>
<li><button id="resume-button">Resume</button></li>
</ul>
</nav>
<!-- on-screen error notifications for search field -->
<div class="notifications">
<div id="notification-error-network" role="alert" style="display:none"><p>❗ You are not connected to the internet.</p></div>
<div id="notification-error-character" role="alert" style="display:none"><p>❗ Only letters, spaces, and a few <i>necessary</i> special characters are allowed in the search field.</p></div>
<div id="notification-error-length" role="alert" style="display:none"><p>❗ Shorten your search criteria (60-character maximum).</p></div>
</div>
<!-- search field -->
<!-- TODO: set oninput to nothing and dynamically set it at startup in shell.js -->
<form id="searchForm" autocomplete="off" onsubmit="return false">
<input id="search" name="search" type="search" pattern="^[a-zA-Z0-9 ,."'\-]+$" autocomplete="off" placeholder="Search for a topic here using keywords..." required>
<button id="submitButton" form="searchForm" type="submit" value="Submit">🔍</button>
<input id="reload" name="reload" type="hidden" value="false" required>
</form>
<!-- On-screen notification for loading -->
<div class="notifications">
<div id="notification-loading" role="alert" style="display:none"><p>⌛ Page is loading...</p></div>
</div>
</header>
<!-- main -->
<link rel="stylesheet" href="/shell/css/main.css">
<script> </script>
<main id="main"></main>
<!-- main -->
<link rel="stylesheet" href="/shell/css/footer.css">
<script> </script>
<footer>
<ul>
<li><address><a title="In no rush? Send me an email!" href="mailto:i@seankrail.com">i@seankrail.com 📧</a></address></li>
<li><address><a title="Time is a factor? Leave me a message!" href="tel:+12674218790">📱 267.421.8790</a></address></li>
</ul>
<button id="backtotop">🔝<p id="version">v2.0.0-alpha</p></button>
</footer>
<!--<script src="/shell/js/compatibility.js" defer></script>-->
<script src="/shell/js/testing.js" defer></script>
<script src="/shell/js/polyfill/fetch.js" defer></script>
<script src="/shell/js/shell.js" defer></script>
</body>
</html> |
css/rts.css | arumsey/rtsconsulting | .about-section h4 {
margin: 0;
padding-top: 35px;
}
|
cpanel/css/simple-sidebar.css | Kehrem/TFG-TIENDA | /*!
* Start Bootstrap - Simple Sidebar HTML Template (http://startbootstrap.com)
* Code licensed under the Apache License v2.0.
* For details, see http://www.apache.org/licenses/LICENSE-2.0.
*/
/* Toggle Styles */
#wrapper {
padding-left: 0;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
#wrapper.toggled {
padding-left: 250px;
}
#sidebar-wrapper {
z-index: 1000;
position: fixed;
left: 250px;
width: 0;
height: 100%;
margin-left: -250px;
overflow-y: auto;
background: #000;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
#wrapper.toggled #sidebar-wrapper {
width: 250px;
}
#page-content-wrapper {
width: 100%;
position: absolute;
padding: 15px;
}
#wrapper.toggled #page-content-wrapper {
position: absolute;
margin-right: -250px;
}
/* Sidebar Styles */
.sidebar-nav {
position: absolute;
top: 0;
width: 250px;
margin: 0;
padding: 0;
list-style: none;
}
.sidebar-nav li {
text-indent: 20px;
line-height: 40px;
}
.sidebar-nav ul{
color:#999999;
list-style-type: none;
}
.sidebar-nav li a {
display: block;
text-decoration: none;
color: #999999;
}
.sidebar-nav li a:hover {
text-decoration: none;
color: #fff;
background: rgba(255,255,255,0.2);
}
.sidebar-nav li a:active,
.sidebar-nav li a:focus {
text-decoration: none;
}
.sidebar-nav > .sidebar-brand {
height: 65px;
font-size: 18px;
line-height: 60px;
}
.sidebar-nav > .sidebar-brand a {
color: #999999;
}
.sidebar-nav > .sidebar-brand a:hover {
color: #fff;
background: none;
}
@media(min-width:768px) {
#wrapper {
padding-left: 250px;
}
#wrapper.toggled {
padding-left: 0;
}
#sidebar-wrapper {
width: 250px;
}
#wrapper.toggled #sidebar-wrapper {
width: 0;
}
#page-content-wrapper {
padding: 20px;
position: relative;
}
#wrapper.toggled #page-content-wrapper {
position: relative;
margin-right: 0;
}
}
.estadisticas_grafica img{
width: 100%;
height: 500px;
}
.kpis:first-child{
margin-top:1em;
}
.kpis{
display:block;
width:100%;
padding: 0.75em;
text-align: center;
margin-bottom:0.5em;
background-color: #cccccc;
color:#333;
}
.kpis:hover{
width: 100%;
display:block;
z-index: 1;
cursor: pointer;
}
.graficaActiva{
background-color: #333;
color: white;
}
.kpis_cabezaGrupo{
display:block;
width:100%;
padding: 0.75em;
text-align: center;
margin-bottom:0.5em;
background-color: #cccccc;
color:#333;
}
.kpis_subMenu{
display: block;
position: relative;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
cursor: pointer;
}
.kpis_subMenu>span{
background-color:#8c8c8c;
color:white;
}
.kpis_subMenu>span:hover{
background-color:#333;
color:white;
}
/*.kpis_cabezaGrupo:hover .kpis_subMenu{
width: 100%;
display:block;
z-index: 1;
cursor: pointer;
}*/
.estadisticas_parametrosOpcionales h2{
text-align: center;
}
.operaciones_kpis h2{
text-align: center;
}
.estadisticas_contKpi h2{
text-align: center;
}
.addNuevo{
color:#8c8c8c;
background-color: white;
text-align: center;
}
.addNuevo:hover{
color:#333;
cursor: pointer;
}
.eliminarKpi{
font-size: 1.2em;
}
.eliminarKpi:hover .fa-trash{
font-size: 1.5em;
cursor: pointer;
color: red;
}
.detalleKpi{
}
.nombreParametro{
display: block;
text-align: center;
padding:0.6em;
background-color: #333;
color:white;
}
.valorParametro{
border:1px solid #333;
padding: 0.6em;
text-align: center;
font-weight: bold;
}
.form{
background-color: #f2f2f2;
}
.form>h1,h2,h3,h4{
text-align: center;
--background-color:#333;
color:white;
padding-top:0.5em;
padding-bottom: 0.5em;
}
.form>span{
display:block;
width: 100%;
text-align: center;
margin-top:0.5em;
}
.form .form_label-input-container{
display:block;
width:100%;
text-align: center;
}
.form label{
margin-left:5%;
width:40%;
}
.form input{
width:40%;
}
.form input[type=submit]{
margin-left:30%;
margin-top: 0.5em;
}
#numAvisosSinLeer{
}
.nAviso>span:not(:first-child) {
}
.nAviso{
border:1px solid black;
margin-bottom: 0.1em;
background-color: white;
}
.datosAviso{
font-size: 1.2em;
padding:0.5em;
}
.contAvisos h1{
text-align: center;
}
.rowsAvisos{
text-align: left;
font-size: 110%;
}
.contModulos{
position: relative;
}
.rowContent{
display: block;
width: 100%;
text-align: center;
font-size: 110%;
background-color: #f2f2f2;
border:2px solid #d9d9d9;
margin-top:1em;
position: relative;
font-size: 1.3em;
}
.rowContent:hover{
cursor: pointer;
background-color: #e6e6e6;
}
.rowContent i:hover{
cursor: pointer;
color:red;
}
.subSpan{
background-color:#f2f2f2;
margin-top:0;
font-size: 1em;
border:1px solid #333;
color:#333;
width:100%;
position: relative;
margin:0;
}
.subSpan:hover{
background-color:#d9d9d9;
}
.superSpan{
background-color:#333;
color: white;
padding: 0;
}
.superSpan:hover{
background-color:#333;
color: white;
}
.leido>span:first-child{
color:#a6a6a6;
text-align: center;
}
.noLeido{
background-color: #f2f2f2;
}
.noLeido>span:first-child{
color:#333;
font-size: 1.1em;
text-align: center;
}
.rowsAvisos>div:first-child{
color:white;
background-color: #333;
padding: 0.5em;
text-align: left;
}
.nAviso:hover{
cursor: pointer;
--border:2px solid #d9d9d9;
}
.masInfoAviso{
display: none;
}
.masdatosAviso{
background-color:#f2f2f2;
border-radius: 8px;
border:1px solid #e6e6e6;
}
.masDatos{
--border: 1
}
.nAvisoActivo{
display: block;
}
.masDatosNombre{
padding: 0.2em;
text-align: right;
}
.masDatosValor{
padding: 0.2em;
}
.contGeneral h1{
text-align: center;
margin-bottom:1em;
}
#contTiposElementosPortada {
text-align: center;
}
.rowElemento{
text-align: center;
font-size: 1.5em;
background-color: #e6e6e6;
border:1px solid #cccccc;
}
.rowElemento:hover{
cursor: pointer;
}
.rowElemento i{
}
.rowElemento i:hover{
cursor: pointer;
color:red;
}
.elementoActivo{
background-color: #333;
color: white;
}
.bigOne{
padding: 0.5em;
background-color: #333;
color: white;
}
.textoCentrado{
text-align: center;
}
.editorNoticia{
padding:2em;
}
.contNuevaNoticia{
display: none;
}
.contEditarNoticia{
display: none;
}
.rowsNoticias{
font-size: 1.3em;
}
.rowsNoticias i:first-child{
margin-right:0.5em;
}
.cuerpoNoticia{
display: none;
width: 100%;
margin-top:1em;
background-color:#ffffff;
border-radius: 10px;
font-size: 0.75em;
}
.cuerpoNoticia p{
word-wrap: break-word;
}
.times-cerrar:hover{
font-size: 1.15em;
color: red;
cursor: pointer;
}
.botonNuevoItem{
background-color: #f2f2f2;
padding: 1em;
color:black;
border-radius: 12px;
border:2px solid #e6e6e6;
}
.botonNuevoItem:hover{
cursor: pointer;
background-color: #333;
color:white;
}
.checkboxInput{
max-width: 100%;
width: 100%;
text-align: center;
}
.checkboxInput label{
max-width: auto;
width: auto;
text-align: center;
font-size: 1.2em;
}
.checkboxInput input[type=checkbox]{
max-width: auto;
width: auto;
text-align: center;
font-size: 1.2em;
}
.menuActivo{
text-decoration: none;
color: #fff;
background-color: #333;
}
.ampliarInformacion{
margin-top:0.3em;
color:#999999;
}
.ampliarInformacion:hover{
z-index:99;
color:#333;
} |
Spring/jars/spring-framework-5.1.18.RELEASE/docs/javadoc-api/org/springframework/web/method/annotation/class-use/ErrorsMethodArgumentResolver.html | akhr/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 (1.8.0_232) on Tue Sep 15 08:53:07 UTC 2020 -->
<title>Uses of Class org.springframework.web.method.annotation.ErrorsMethodArgumentResolver (Spring Framework 5.1.18.RELEASE API)</title>
<meta name="date" content="2020-09-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.springframework.web.method.annotation.ErrorsMethodArgumentResolver (Spring Framework 5.1.18.RELEASE 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/springframework/web/method/annotation/ErrorsMethodArgumentResolver.html" title="class in org.springframework.web.method.annotation">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-files/index-1.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">Spring Framework</div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/springframework/web/method/annotation/class-use/ErrorsMethodArgumentResolver.html" target="_top">Frames</a></li>
<li><a href="ErrorsMethodArgumentResolver.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.springframework.web.method.annotation.ErrorsMethodArgumentResolver" class="title">Uses of Class<br>org.springframework.web.method.annotation.ErrorsMethodArgumentResolver</h2>
</div>
<div class="classUseContainer">No usage of org.springframework.web.method.annotation.ErrorsMethodArgumentResolver</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/springframework/web/method/annotation/ErrorsMethodArgumentResolver.html" title="class in org.springframework.web.method.annotation">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-files/index-1.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">Spring Framework</div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/springframework/web/method/annotation/class-use/ErrorsMethodArgumentResolver.html" target="_top">Frames</a></li>
<li><a href="ErrorsMethodArgumentResolver.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>
|
test/test/test-element_test.html | amdharness/link-import | <!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes">
<title>test-element test</title>
<script src="../../webcomponentsjs/webcomponents-lite.js"></script>
<script src="../../web-component-tester/browser.js"></script>
<link rel="import" href="../test-element.html">
</head>
<body>
<test-fixture id="BasicTestFixture">
<template>
<test-element></test-element>
</template>
</test-fixture>
<test-fixture id="ChangedPropertyTestFixture">
<template>
<test-element prop1="new-prop1"></test-element>
</template>
</test-fixture>
<script>
suite('test-element', () => {
test('instantiating the element with default properties works', () => {
const element = fixture('BasicTestFixture');
assert.equal(element.prop1, 'test-element');
const elementShadowRoot = element.shadowRoot;
const elementHeader = elementShadowRoot.querySelector('h2');
assert.equal(elementHeader.innerHTML, 'Hello test-element!');
});
test('setting a property on the element works', () => {
// Create a test fixture
const element = fixture('ChangedPropertyTestFixture');
assert.equal(element.prop1, 'new-prop1');
const elementShadowRoot = element.shadowRoot;
const elementHeader = elementShadowRoot.querySelector('h2');
assert.equal(elementHeader.innerHTML, 'Hello new-prop1!');
});
});
</script>
</body>
</html>
|
Resources/etc/decarta/css/UI/ZoomControl.css | erickbrittes/titanium_appcelerator |
.deCarta-control-zoom {
margin:10px 17px 10px 1px;
}
.deCarta-control-zoomInBtn {
background-image: url("../../img/zoom_in.png");
height: 21px;
width: 20px;
margin-left: 4px;
cursor: pointer;
}
.deCarta-control-zoomOutBtn {
background-image: url("../../img/zoom_out.png");
height: 21px;
width: 20px;
margin-left: 4px;
cursor: pointer;
top:27px;
}
.deCarta-control-zoomPillar {
background-image: url("../../img/zoom_rail.png");
/* PLEASE LOOK AT THE CODE TO UNDERSTAND THE HEIGHT
height: (10 * this.zoomLevels) + px;*/
width: 20px;
left: 4px;
position:relative;
cursor: pointer
}
.deCarta-control-zoomCursor {
background-image: url("../../img/zoom_handle.png");
background-repeat: no-repeat;
height: 20px;
line-height: 20px;
left: -5px;
width: 36px;
position: absolute;
cursor: url("../../img/openhand.cur");
} |
KoDeMat_TouchScreen/lib/hazelcast-3.4.2/hazelcast-3.4.2/docs/javadoc/com/hazelcast/logging/class-use/LoggerFactorySupport.html | akiskip/KoDeMat-Collaboration-Platform-Application | <!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 Thu Mar 26 16:48:36 UTC 2015 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
Uses of Class com.hazelcast.logging.LoggerFactorySupport (Hazelcast Root 3.4.2 API)
</TITLE>
<META NAME="date" CONTENT="2015-03-26">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.hazelcast.logging.LoggerFactorySupport (Hazelcast Root 3.4.2 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="../../../../com/hazelcast/logging/LoggerFactorySupport.html" title="class in com.hazelcast.logging"><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?com/hazelcast/logging//class-useLoggerFactorySupport.html" target="_top"><B>FRAMES</B></A>
<A HREF="LoggerFactorySupport.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>com.hazelcast.logging.LoggerFactorySupport</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="../../../../com/hazelcast/logging/LoggerFactorySupport.html" title="class in com.hazelcast.logging">LoggerFactorySupport</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#com.hazelcast.logging"><B>com.hazelcast.logging</B></A></TD>
<TD>This package contains logging functionality for Hazelcast.<br/>
Since Hazelcast has a zero dependency policy, Hazelcast provides a logging abstraction like commongs logging,
so that different logging frameworks like log4j, can be hooked in. </TD>
</TR>
</TABLE>
<P>
<A NAME="com.hazelcast.logging"><!-- --></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="../../../../com/hazelcast/logging/LoggerFactorySupport.html" title="class in com.hazelcast.logging">LoggerFactorySupport</A> in <A HREF="../../../../com/hazelcast/logging/package-summary.html">com.hazelcast.logging</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="../../../../com/hazelcast/logging/LoggerFactorySupport.html" title="class in com.hazelcast.logging">LoggerFactorySupport</A> in <A HREF="../../../../com/hazelcast/logging/package-summary.html">com.hazelcast.logging</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="../../../../com/hazelcast/logging/Log4j2Factory.html" title="class in com.hazelcast.logging">Log4j2Factory</A></B></CODE>
<BR>
Logging to Log4j 2.x.</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="../../../../com/hazelcast/logging/Log4jFactory.html" title="class in com.hazelcast.logging">Log4jFactory</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="../../../../com/hazelcast/logging/Slf4jFactory.html" title="class in com.hazelcast.logging">Slf4jFactory</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="../../../../com/hazelcast/logging/StandardLoggerFactory.html" title="class in com.hazelcast.logging">StandardLoggerFactory</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="../../../../com/hazelcast/logging/LoggerFactorySupport.html" title="class in com.hazelcast.logging"><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?com/hazelcast/logging//class-useLoggerFactorySupport.html" target="_top"><B>FRAMES</B></A>
<A HREF="LoggerFactorySupport.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 © 2015 <a href="http://www.hazelcast.com/">Hazelcast, Inc.</a>. All Rights Reserved.
</BODY>
</HTML>
|
src/main/webapp/client/tasks.html | dodie/time-admin | <lift:surround with="client" at="content">
<span class="lift:taskItemSnippet.actions"></span>
<span class="lift:jsL10n.addJsLoc">tasks.split_entry</span>
<span class="lift:jsL10n.addJsLoc">tasks.edit_entry</span>
<span class="lift:jsL10n.addJsLoc">tasks.confirm_delete</span>
<span class="lift:jsL10n.addJsLoc">tasks.view.table</span>
<span class="lift:jsL10n.addJsLoc">tasks.view.timeline</span>
<span class="lift:jsL10n.addJsLoc">do_not_change</span>
<div class="tasksPage">
<div class="container">
<div class="date-selectors">
<span class="statusBarItem">
<a class="btn btn-default lift:taskItemSnippet.pagingPrev" paging:url="">◀</a>
</span>
<span class="lift:taskItemSnippet.datePicker"></span>
<span class="statusBarItem">
<a class="btn btn-default lift:taskItemSnippet.pagingNext" paging:url="">▶</a>
</span>
<span class="statusBarItem">
<a paging:url="" class="btn btn-default lift:taskItemSnippet.pagingCurrent">
<span class="glyphicon glyphicon-calendar" aria-hidden="true"></span>
</a>
</span>
</div>
<div id="content" style="display: none;">
<ul id="tabs" class="nav nav-tabs" data-tabs="tabs">
<li class="active"><a href="#timeline" data-toggle="tab"><lift:loc>tasks.view.timeline</lift:loc></a></li>
<li><a href="#table" data-toggle="tab"><lift:loc>tasks.view.table</lift:loc></a></li>
</ul>
<div id="my-tab-content" class="tab-content">
<div class="tab-pane active" id="timeline">
<div>
<div id="timeLine" class="timeLine lift:taskItemSnippet.lineChart">
<div class="frag">
<div class="fragBar" onclick="var form = this.getElementsByTagName('form')[0]; setTaskItemEditorPopup(form.taskitemid.value, form.time.value, form.taskid.value); $('.modal').modal();">
<div class="ProjectName"></div>
<div class="TaskName"></div>
<form>
<input type="hidden" name="taskitemid" value=""/>
<input type="hidden" name="taskid" value=""/>
<input type="hidden" name="time" value=""/>
</form>
</div>
<div class="fragBarHover">
<span class="ProjectName"></span>
<span class="TaskName"></span>
(<span class="Duration"></span>)
</div>
<div class="fragText" onclick="$(this).parent().find('.fragBar')[0].onclick();"></div>
</div>
</div>
</div>
</div>
<div class="tab-pane" id="table">
<div id="taskItemLogMainHolder">
<div>
<table class="lift:taskItemSnippet.dataTable table table-condensed">
<tr>
<th></th>
<th></th>
<th><lift:loc>tasks.table.start</lift:loc></th>
<th colspan="2"><lift:loc>tasks.table.task</lift:loc></th>
</tr>
<tr class="item">
<td class="edit">
<form method="post" style="display:inline;">
<input type="hidden" name="taskitemid" value=""/>
<input type="hidden" name="taskid" value=""/>
<input type="hidden" name="time" value=""/>
<a onclick="var form = $(this).closest('form')[0]; setTaskItemEditorPopup(form.taskitemid.value, form.time.value, form.taskid.value); $('.modal').modal();" class="btn btn-default btn-xs">
<span class="glyphicon glyphicon-pencil" aria-hidden="true"></span>
</a>
</form>
</td>
<td>
<div class="projectColorIndicator">-</div>
</td>
<td class="date"></td>
<td style="width:45px;">
<div class="taskColorIndicator">-></div>
<span aria-hidden="true" class="glyphicon glyphicon-pause"></span>
</td>
<td><b><span class="project">Project name</span></b>-<span class="task">Task name</span></td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
<div class="row tasksrow">
<div class="col-sm-8">
<div id="taskItemAppenderMainHolder">
<div id="holder">
<input
id="taskSearchInput"
type="text"
class="TaskFilter form-control lift:L10n.placeholder"
placeholder="tasks.type_to_filter">
</div>
<div id="taskList">
<form method="post" class="InlineCommandsForm Pause">
<input type="hidden" name="selecttaskid" value="-1"/>
<input type="text" class="OfftimeOffsetInput" name="timeoffset" value="" placeholder="hh:mm" autocomplete="off" />
<a class="btn btn-primary pause-button" onclick="$(this).parent().submit();">
<span aria-hidden="true" class="glyphicon glyphicon-pause"></span>
</a>
</form>
<div class="lift:taskItemSnippet.selectableTasks tasks">
<div class="task">
<div class="taskName">
<form method="post" class="InlineCommandsForm">
<div class="projectColorIndicator">-</div>
<input type="hidden" name="selecttaskid"/>
<input class="newTaskItemInput" type="text" name="timeoffset" value="" autocomplete="off" onfocus="this.value='';" onclick="arguments[0].stopPropagation();" onkeypress="return submitOnEnter(this, event)" placeholder="hh:mm"/>
<div class="taskColorIndicator">-></div>
<div class="taskName_info">
<a class="taskFullName">
<span class="tasksProjectName"></span>
-
<span class="tasksTaskName"></span>
</a>
<span style="display:none;" class="newtaskholder">
-
<input type="text" name="newtaskname" onkeypress="return submitOnEnter(this, event)"/>
</span>
<span class="tasksTaskDescription"></span>
</div>
</form>
<a class="specify-subtask" onclick="toggleSubtaskCreatorForm(this);">
<span data-open>+ <lift:loc>tasks.new</lift:loc></span>
<span data-close style="display:none;">- <lift:loc>tasks.cancel</lift:loc></span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="tasksPage">
<div class="summary">
<div class="lift:dailySummarySnippet.summaryForToday">
<div id="pieholder">
</div>
<table id="piedata">
<tbody class="chartContainer">
<tr class="fragWrapper">
<td>
<div class="projectColorIndicator">-</div>
</td>
<td>
<div class="taskColorIndicator">-></div>
</td>
<td><span class="minutes"></span><span>m</span></td>
<td class="name"></td>
</tr>
</tbody>
</table>
<div class="summaryMetrics">
<table>
<tbody>
<tr>
<td>
<span><lift:loc>dailysummary.fulltime</lift:loc></span>
</td>
<td>
<span class="SumTime"></span>
</td>
</tr>
<tr>
<td>
<span><lift:loc>dailysummary.pause</lift:loc></span>
</td>
<td>
<span class="PauseTime"></span><span><lift:loc>minute.short</lift:loc></span>
</td>
</tr>
<tr>
<td>
<span><lift:loc>dailysummary.number_of_interrupts</lift:loc></span>
</td>
<td>
<span class="FlowBreak"></span>
</td>
</tr>
<tr>
<td>
<span><lift:loc>dailysummary.time_of_arrival</lift:loc></span>
</td>
<td>
<span class="Arrival"></span>
</td>
</tr>
<tr>
<td>
<span><lift:loc>dailysummary.time_of_leave</lift:loc></span>
</td>
<td>
<span class="Leave"></span>
<span class="RealLeave"></span>
</td>
</tr>
</tbody>
</table>
<div class="statusBarCurrentTask">
<span class="lift:taskItemSnippet.actualTask">
<span><lift:loc>tasks.selected_task</lift:loc></span>
<span class="actualTaskName"></span>
<span class="actualDescription"></span>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title"><lift:loc>tasks.changetask.title</lift:loc></h4>
</div>
<form method="post">
<div class="modal-body">
<input type="hidden" id="tiemode" name="mode" value="taskitemedit"/>
<input type="hidden" name="taskitemid" id="tietaskitemid"/>
<input type="hidden" name="sticky" id="tiesticky"/>
<lift:loc>tasks.changetask.start</lift:loc><br/>
<input type="text" value="08:15" name="timeoffset" id="tietimeoffset"/>
<br/><br/>
<lift:loc>tasks.changetask.task</lift:loc><br/>
<select name="selecttaskid" id="tieselecttaskid">
<option value="-1"><lift:loc>tasks.changetask.pause</lift:loc></option>
</select>
</div>
<div class="modal-footer">
<input type="submit" value="button.change" class="btn btn-success lift:L10n.value"/>
<input type="submit" value="button.delete" class="btn btn-danger lift:L10n.value" onclick="return tieDeleteMode();"/>
</div>
</form>
</div>
</div>
</div>
</div>
<script src="/js/client/tasks.js" type="text/javascript"></script>
</lift:surround>
|
2.7.1.Final-SNAPSHOT/apidocs/org/wildfly/swarm/messaging/detect/package-use.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:32 MST 2020 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Package org.wildfly.swarm.messaging.detect (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="Uses of Package org.wildfly.swarm.messaging.detect (BOM: * : All 2.7.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>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-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>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/wildfly/swarm/messaging/detect/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 org.wildfly.swarm.messaging.detect" class="title">Uses of Package<br>org.wildfly.swarm.messaging.detect</h1>
</div>
<div class="contentContainer">No usage of org.wildfly.swarm.messaging.detect</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 class="navBarCell1Rev">Use</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">Thorntail API, 2.7.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/messaging/detect/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 ======= -->
<p class="legalCopy"><small>Copyright © 2020 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
|
poi-3.10-FINAL/docs/apidocs/org/apache/poi/poifs/storage/class-use/DocumentBlock.html | pedro93/ifarmaStudents | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="ru">
<head>
<title>Uses of Class org.apache.poi.poifs.storage.DocumentBlock (POI API Documentation)</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 Class org.apache.poi.poifs.storage.DocumentBlock (POI API Documentation)";
}
//-->
</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/poi/poifs/storage/DocumentBlock.html" title="class in org.apache.poi.poifs.storage">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/poi/poifs/storage/class-use/DocumentBlock.html" target="_top">Frames</a></li>
<li><a href="DocumentBlock.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.poi.poifs.storage.DocumentBlock" class="title">Uses of Class<br>org.apache.poi.poifs.storage.DocumentBlock</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/poi/poifs/storage/DocumentBlock.html" title="class in org.apache.poi.poifs.storage">DocumentBlock</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.poi.poifs.storage">org.apache.poi.poifs.storage</a></td>
<td class="colLast">
<div class="block">storage package contains low level binary structures for POIFS's implementation of the OLE 2
Compound Document Format.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.apache.poi.poifs.storage">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/apache/poi/poifs/storage/DocumentBlock.html" title="class in org.apache.poi.poifs.storage">DocumentBlock</a> in <a href="../../../../../../org/apache/poi/poifs/storage/package-summary.html">org.apache.poi.poifs.storage</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/poi/poifs/storage/package-summary.html">org.apache.poi.poifs.storage</a> that return <a href="../../../../../../org/apache/poi/poifs/storage/DocumentBlock.html" title="class in org.apache.poi.poifs.storage">DocumentBlock</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 <a href="../../../../../../org/apache/poi/poifs/storage/DocumentBlock.html" title="class in org.apache.poi.poifs.storage">DocumentBlock</a>[]</code></td>
<td class="colLast"><span class="strong">DocumentBlock.</span><code><strong><a href="../../../../../../org/apache/poi/poifs/storage/DocumentBlock.html#convert(org.apache.poi.poifs.common.POIFSBigBlockSize, byte[], int)">convert</a></strong>(<a href="../../../../../../org/apache/poi/poifs/common/POIFSBigBlockSize.html" title="class in org.apache.poi.poifs.common">POIFSBigBlockSize</a> bigBlockSize,
byte[] array,
int size)</code>
<div class="block">convert a single long array into an array of DocumentBlock
instances</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/poi/poifs/storage/package-summary.html">org.apache.poi.poifs.storage</a> with parameters of type <a href="../../../../../../org/apache/poi/poifs/storage/DocumentBlock.html" title="class in org.apache.poi.poifs.storage">DocumentBlock</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 <a href="../../../../../../org/apache/poi/poifs/storage/DataInputBlock.html" title="class in org.apache.poi.poifs.storage">DataInputBlock</a></code></td>
<td class="colLast"><span class="strong">DocumentBlock.</span><code><strong><a href="../../../../../../org/apache/poi/poifs/storage/DocumentBlock.html#getDataInputBlock(org.apache.poi.poifs.storage.DocumentBlock[], int)">getDataInputBlock</a></strong>(<a href="../../../../../../org/apache/poi/poifs/storage/DocumentBlock.html" title="class in org.apache.poi.poifs.storage">DocumentBlock</a>[] blocks,
int offset)</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/poi/poifs/storage/DocumentBlock.html" title="class in org.apache.poi.poifs.storage">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/poi/poifs/storage/class-use/DocumentBlock.html" target="_top">Frames</a></li>
<li><a href="DocumentBlock.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 2014 The Apache Software Foundation or
its licensors, as applicable.</i>
</small></p>
</body>
</html>
|
docs/typenum/consts/P184.t.html | nitro-devs/nitro-game-engine | <!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="refresh" content="0;URL=type.P184.html">
</head>
<body>
<p>Redirecting to <a href="type.P184.html">type.P184.html</a>...</p>
<script>location.replace("type.P184.html" + location.search + location.hash);</script>
</body>
</html> |
ensembl/htdocs/ssi/species/Amazona_collaria_assembly.html | Ensembl/public-plugins | <p>The ASM394721v1 assembly was submitted by Weill Cornell Medicine on December 2018. The assembly is on scaffold level, consisting of 22,614 contigs assembled into 10,638 scaffolds. The N50 size is the length such that 50% of the assembled genome lies in blocks of the N50 size or longer. The N50 length for the contigs is 208,912 while the scaffold N50 is 13,267,695.</p> |
target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_06_testAbaNumberCheck_11149_good_99u.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_11149_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=27640#src-27640" >testAbaNumberCheck_11149_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_11149_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=12018#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> |
rebbit/_classes/user_model_test.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 : Class Reference: user_model_test</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 19:15:14 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='_classes';
filename='index.html';
cookiekey='phpxref';
handleNavFrame(relbase, subdir, filename);
logClass('user_model_test');
// -->
</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>Class Cross Reference</h3>
<h2><a href="index.html#user_model_test">user_model_test</a></h2>
<b>Defined at:</b><ul>
<li><a href="../tests/bonfire/modules/users/user_model_test.php.html#user_model_test">/tests/bonfire/modules/users/user_model_test.php</a> -> <a onClick="logClass('user_model_test', '/tests/bonfire/modules/users/user_model_test.php.source.html#l5')" href="../tests/bonfire/modules/users/user_model_test.php.source.html#l5"> line 5</a></li>
</ul>
<br><b>No references found.</b><br><br>
</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 19:15:14 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>
|
docs/apidocs/org/apache/hadoop/hbase/fs/package-frame.html | wanhao/IRIndex | <!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 Fri Jan 10 21:36:55 UTC 2014 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
org.apache.hadoop.hbase.fs (HBase 0.94.16 API)
</TITLE>
<META NAME="date" CONTENT="2014-01-10">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
</HEAD>
<BODY BGCOLOR="white">
<FONT size="+1" CLASS="FrameTitleFont">
<A HREF="../../../../../org/apache/hadoop/hbase/fs/package-summary.html" target="classFrame">org.apache.hadoop.hbase.fs</A></FONT>
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
<TR>
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
Classes</FONT>
<FONT CLASS="FrameItemFont">
<BR>
<A HREF="HFileSystem.html" title="class in org.apache.hadoop.hbase.fs" target="classFrame">HFileSystem</A></FONT></TD>
</TR>
</TABLE>
</BODY>
</HTML>
|
suanshu-javadoc-1.3.1/com/numericalmethod/suanshu/analysis/interpolation/NevilleTable.html | Aliced3645/DataCenterMarketing | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_24) on Tue Apr 26 20:40:00 CST 2011 -->
<TITLE>
NevilleTable (SuanShu 1.3.1 API Documentation)
</TITLE>
<META NAME="date" CONTENT="2011-04-26">
<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="NevilleTable (SuanShu 1.3.1 API Documentation)";
}
}
</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="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</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="../../../../../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>
<a href='http://www.numericalmethod.com' target='_top'>SuanShu, a Java numerical and statistical library</a>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV CLASS
<A HREF="../../../../../com/numericalmethod/suanshu/analysis/interpolation/NevilleTable.DuplicatedAbscissae.html" title="class in com.numericalmethod.suanshu.analysis.interpolation"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?com/numericalmethod/suanshu/analysis/interpolation/NevilleTable.html" target="_top"><B>FRAMES</B></A>
<A HREF="NevilleTable.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: <A HREF="#nested_class_summary">NESTED</A> | 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">
com.numericalmethod.suanshu.analysis.interpolation</FONT>
<BR>
Class NevilleTable</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><A HREF="../../../../../com/numericalmethod/suanshu/analysis/function/rn2r1/UnivariateRealFunction.html" title="class in com.numericalmethod.suanshu.analysis.function.rn2r1">com.numericalmethod.suanshu.analysis.function.rn2r1.UnivariateRealFunction</A>
<IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><B>com.numericalmethod.suanshu.analysis.interpolation.NevilleTable</B>
</PRE>
<DL>
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../../../com/numericalmethod/suanshu/analysis/function/Function.html" title="interface in com.numericalmethod.suanshu.analysis.function">Function</A>, <A HREF="../../../../../com/numericalmethod/suanshu/analysis/function/rn2r1/RealScalarFunction.html" title="interface in com.numericalmethod.suanshu.analysis.function.rn2r1">RealScalarFunction</A>, <A HREF="../../../../../com/numericalmethod/suanshu/analysis/interpolation/UnivariateRealInterpolator.html" title="interface in com.numericalmethod.suanshu.analysis.interpolation">UnivariateRealInterpolator</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public class <B>NevilleTable</B><DT>extends <A HREF="../../../../../com/numericalmethod/suanshu/analysis/function/rn2r1/UnivariateRealFunction.html" title="class in com.numericalmethod.suanshu.analysis.function.rn2r1">UnivariateRealFunction</A><DT>implements <A HREF="../../../../../com/numericalmethod/suanshu/analysis/interpolation/UnivariateRealInterpolator.html" title="interface in com.numericalmethod.suanshu.analysis.interpolation">UnivariateRealInterpolator</A></DL>
</PRE>
<P>
Neville's algorithm is an algorithm for polynomial interpolation.
Given <code>n + 1</code> points, there is a unique polynomial of <code>degree ≤ n</code> which associates with them.
Neville's algorithm evaluates this polynomial for a given input <code>x</code>.
<p>
This implementation is based on filling out the Neville table.
This table can be used in two ways.
<p>
First, it can be used as a function to compute <code>f(x)</code>.
<p>
Second, it can be used in an incremental manner by adding a few, say one, data points at a time.
The user can examine the values in the table.
<P>
<P>
<DL>
<DT><B>See Also:</B><DD><a href="http://en.wikipedia.org/wiki/Neville_algorithm">Wikipedia: Neville's algorithm</a></DL>
<HR>
<P>
<!-- ======== NESTED CLASS SUMMARY ======== -->
<A NAME="nested_class_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>Nested Class Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static class</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/numericalmethod/suanshu/analysis/interpolation/NevilleTable.DuplicatedAbscissae.html" title="class in com.numericalmethod.suanshu.analysis.interpolation">NevilleTable.DuplicatedAbscissae</A></B></CODE>
<BR>
RuntimeException thrown when there are duplicated abscissae.</TD>
</TR>
</TABLE>
<A NAME="nested_classes_inherited_from_class_com.numericalmethod.suanshu.analysis.function.Function"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Nested classes/interfaces inherited from interface com.numericalmethod.suanshu.analysis.function.<A HREF="../../../../../com/numericalmethod/suanshu/analysis/function/Function.html" title="interface in com.numericalmethod.suanshu.analysis.function">Function</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../../../com/numericalmethod/suanshu/analysis/function/Function.EvaluationException.html" title="class in com.numericalmethod.suanshu.analysis.function">Function.EvaluationException</A></CODE></TD>
</TR>
</TABLE>
<!-- ======== 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="../../../../../com/numericalmethod/suanshu/analysis/interpolation/NevilleTable.html#NevilleTable()">NevilleTable</A></B>()</CODE>
<BR>
Construct an empty Neville Table.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../../com/numericalmethod/suanshu/analysis/interpolation/NevilleTable.html#NevilleTable(double[], double[])">NevilleTable</A></B>(double[] x,
double[] y)</CODE>
<BR>
Construct an instance of a Neville Table, initialized with data <code>{(x, y)}</code>.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../../com/numericalmethod/suanshu/analysis/interpolation/NevilleTable.html#NevilleTable(int, double[], double[])">NevilleTable</A></B>(int n,
double[] x,
double[] y)</CODE>
<BR>
Construct an instance of a Neville Table with size <code>n</code>,
initialized with data <code>{(x, y)}</code>.</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="../../../../../com/numericalmethod/suanshu/analysis/interpolation/NevilleTable.html#addData(double[], double[])">addData</A></B>(double[] x,
double[] y)</CODE>
<BR>
Add more data points for interpolation.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/numericalmethod/suanshu/analysis/interpolation/NevilleTable.html#evaluate(double)">evaluate</A></B>(double x)</CODE>
<BR>
Compute <code>f(x)</code>.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/numericalmethod/suanshu/analysis/interpolation/NevilleTable.html#get(int, int)">get</A></B>(int row,
int col)</CODE>
<BR>
Get the value of a table entry.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/numericalmethod/suanshu/analysis/interpolation/NevilleTable.html#N()">N</A></B>()</CODE>
<BR>
Get the number of data points.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double[][]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/numericalmethod/suanshu/analysis/interpolation/NevilleTable.html#table()">table</A></B>()</CODE>
<BR>
Get a copy of the Neville table.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/numericalmethod/suanshu/analysis/interpolation/NevilleTable.html#X()">X</A></B>()</CODE>
<BR>
Get a copy of the x's.</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_com.numericalmethod.suanshu.analysis.function.rn2r1.UnivariateRealFunction"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class com.numericalmethod.suanshu.analysis.function.rn2r1.<A HREF="../../../../../com/numericalmethod/suanshu/analysis/function/rn2r1/UnivariateRealFunction.html" title="class in com.numericalmethod.suanshu.analysis.function.rn2r1">UnivariateRealFunction</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../../../com/numericalmethod/suanshu/analysis/function/rn2r1/UnivariateRealFunction.html#dimension4Domain()">dimension4Domain</A>, <A HREF="../../../../../com/numericalmethod/suanshu/analysis/function/rn2r1/UnivariateRealFunction.html#dimension4Range()">dimension4Range</A>, <A HREF="../../../../../com/numericalmethod/suanshu/analysis/function/rn2r1/UnivariateRealFunction.html#evaluate(double...)">evaluate</A></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="NevilleTable(int, double[], double[])"><!-- --></A><H3>
NevilleTable</H3>
<PRE>
public <B>NevilleTable</B>(int n,
double[] x,
double[] y)</PRE>
<DL>
<DD>Construct an instance of a Neville Table with size <code>n</code>,
initialized with data <code>{(x, y)}</code>.
<p>
The size <code>n</code> is only indicative. If there are more data points than <code>n</code>,
the table size will increase accordingly.
<P>
<DL>
<DT><B>Parameters:</B><DD><CODE>n</CODE> - indicative size; make this big for reservation to add new data points<DD><CODE>x</CODE> - the abscissae<DD><CODE>y</CODE> - the ordinates</DL>
</DL>
<HR>
<A NAME="NevilleTable(double[], double[])"><!-- --></A><H3>
NevilleTable</H3>
<PRE>
public <B>NevilleTable</B>(double[] x,
double[] y)</PRE>
<DL>
<DD>Construct an instance of a Neville Table, initialized with data <code>{(x, y)}</code>.
<P>
<DL>
<DT><B>Parameters:</B><DD><CODE>x</CODE> - the abscissae<DD><CODE>y</CODE> - the ordinates</DL>
</DL>
<HR>
<A NAME="NevilleTable()"><!-- --></A><H3>
NevilleTable</H3>
<PRE>
public <B>NevilleTable</B>()</PRE>
<DL>
<DD>Construct an empty Neville Table.
<P>
</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="addData(double[], double[])"><!-- --></A><H3>
addData</H3>
<PRE>
public void <B>addData</B>(double[] x,
double[] y)</PRE>
<DL>
<DD>Add more data points for interpolation.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../com/numericalmethod/suanshu/analysis/interpolation/UnivariateRealInterpolator.html#addData(double[], double[])">addData</A></CODE> in interface <CODE><A HREF="../../../../../com/numericalmethod/suanshu/analysis/interpolation/UnivariateRealInterpolator.html" title="interface in com.numericalmethod.suanshu.analysis.interpolation">UnivariateRealInterpolator</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>x</CODE> - the abscissae<DD><CODE>y</CODE> - the ordinates</DL>
</DD>
</DL>
<HR>
<A NAME="N()"><!-- --></A><H3>
N</H3>
<PRE>
public int <B>N</B>()</PRE>
<DL>
<DD>Get the number of data points.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the number of data points</DL>
</DD>
</DL>
<HR>
<A NAME="table()"><!-- --></A><H3>
table</H3>
<PRE>
public double[][] <B>table</B>()</PRE>
<DL>
<DD>Get a copy of the Neville table.
<p>
The returned value is independent and can be modified anyhow.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>a copy of the table</DL>
</DD>
</DL>
<HR>
<A NAME="X()"><!-- --></A><H3>
X</H3>
<PRE>
public double[] <B>X</B>()</PRE>
<DL>
<DD>Get a copy of the x's.
<p>
The returned value is independent and can be modified anyhow.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>a copy of x's</DL>
</DD>
</DL>
<HR>
<A NAME="get(int, int)"><!-- --></A><H3>
get</H3>
<PRE>
public double <B>get</B>(int row,
int col)</PRE>
<DL>
<DD>Get the value of a table entry.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>row</CODE> - row index, counting from 0<DD><CODE>col</CODE> - column index, counting from 0
<DT><B>Returns:</B><DD>the value of a table entry</DL>
</DD>
</DL>
<HR>
<A NAME="evaluate(double)"><!-- --></A><H3>
evaluate</H3>
<PRE>
public double <B>evaluate</B>(double x)</PRE>
<DL>
<DD><B>Description copied from class: <CODE><A HREF="../../../../../com/numericalmethod/suanshu/analysis/function/rn2r1/UnivariateRealFunction.html#evaluate(double)">UnivariateRealFunction</A></CODE></B></DD>
<DD>Compute <code>f(x)</code>.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../com/numericalmethod/suanshu/analysis/interpolation/UnivariateRealInterpolator.html#evaluate(double)">evaluate</A></CODE> in interface <CODE><A HREF="../../../../../com/numericalmethod/suanshu/analysis/interpolation/UnivariateRealInterpolator.html" title="interface in com.numericalmethod.suanshu.analysis.interpolation">UnivariateRealInterpolator</A></CODE><DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../com/numericalmethod/suanshu/analysis/function/rn2r1/UnivariateRealFunction.html#evaluate(double)">evaluate</A></CODE> in class <CODE><A HREF="../../../../../com/numericalmethod/suanshu/analysis/function/rn2r1/UnivariateRealFunction.html" title="class in com.numericalmethod.suanshu.analysis.function.rn2r1">UnivariateRealFunction</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>x</CODE> - <code>x</code>
<DT><B>Returns:</B><DD><code>f(x)</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="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</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>
<a href='http://www.numericalmethod.com' target='_top'>SuanShu, a Java numerical and statistical library</a>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV CLASS
<A HREF="../../../../../com/numericalmethod/suanshu/analysis/interpolation/NevilleTable.DuplicatedAbscissae.html" title="class in com.numericalmethod.suanshu.analysis.interpolation"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?com/numericalmethod/suanshu/analysis/interpolation/NevilleTable.html" target="_top"><B>FRAMES</B></A>
<A HREF="NevilleTable.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: <A HREF="#nested_class_summary">NESTED</A> | 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>
<i>Copyright © 2011 Numerical Method Inc. Ltd. All Rights Reserved.</i>
</BODY>
</HTML>
|
surfers/mqs/rpere.html | chicofilho/fst | <!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">
<title>FST - Renan Peres Pulga</title>
<meta name="description" content="Keep track of the statistics from Renan Peres Pulga. Average heat score, heat wins, heat wins percentage, epic heats road to the final">
<meta name="author" content="">
<link rel="apple-touch-icon" sizes="57x57" href="/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<meta property="og:title" content="Fantasy Surfing tips"/>
<meta property="og:image" content="https://fantasysurfingtips.com/img/just_waves.png"/>
<meta property="og:description" content="See how great Renan Peres Pulga is surfing this year"/>
<!-- Bootstrap Core CSS - Uses Bootswatch Flatly Theme: https://bootswatch.com/flatly/ -->
<link href="https://fantasysurfingtips.com/css/bootstrap.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="https://fantasysurfingtips.com/css/freelancer.css" rel="stylesheet">
<link href="https://cdn.datatables.net/plug-ins/1.10.7/integration/bootstrap/3/dataTables.bootstrap.css" rel="stylesheet" />
<!-- Custom Fonts -->
<link href="https://fantasysurfingtips.com/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/morris.js/0.5.1/morris.css">
<script src="https://code.jquery.com/jquery-2.x-git.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-ujs/1.2.1/rails.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/morris.js/0.5.1/morris.min.js"></script>
<script src="https://www.w3schools.com/lib/w3data.js"></script>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-2675412311042802",
enable_page_level_ads: true
});
</script>
</head>
<body>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.6";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<!-- Navigation -->
<div w3-include-html="https://fantasysurfingtips.com/layout/header.html"></div>
<!-- Header -->
<div w3-include-html="https://fantasysurfingtips.com/layout/sponsor.html"></div>
<section >
<div class="container">
<div class="row">
<div class="col-sm-3 ">
<div class="col-sm-2 ">
</div>
<div class="col-sm-8 ">
<!-- <img src="http://fantasysurfingtips.com/img/surfers/rpere.png" class="img-responsive" alt=""> -->
<h3 style="text-align:center;">Renan Peres Pulga</h3>
<a href="https://twitter.com/share" class="" data-via="fansurfingtips"><i class="fa fa-twitter"></i> Share on Twitter</i></a> <br/>
<a class="fb-xfbml-parse-ignore" target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Ffantasysurfingtips.com%2Fsurfers%2Frpere&src=sdkpreparse"><i class="fa fa-facebook"></i> Share on Facebook</a>
</div>
<div class="col-sm-2 ">
</div>
</div>
<div class="col-sm-3 portfolio-item">
</div>
<div class="col-sm-3 portfolio-item">
<h6 style="text-align:center;">Avg Heat Score (FST DATA)</h6>
<h1 style="text-align:center;">11.3</h1>
</div>
</div>
<h4 style="text-align:center;" >Epic Battles</h4>
<div class="row">
<div class="col-sm-6 ">
<p style="text-align:center;">Surfed <b>2</b> heats against <a href="http://fantasysurfingtips.com/surfers/mqs/gpon.html"> Giovani Pontes</a> <br/> <b>won 2</b> and <b>lost 0</b></p>
</div>
<div class="col-sm-6 ">
<p style="text-align:center;">Surfed <b>1</b> heats against <a href="http://fantasysurfingtips.com/surfers/mqs/mpup.html"> Miguel Pupo</a> <br/> <b>won 0</b> and <b>lost 1</b></p>
</div>
</div>
<hr/>
<h4 style="text-align:center;" >Heat Stats (FST data)</h4>
<div class="row">
<div class="col-sm-4 portfolio-item">
<h6 style="text-align:center;">Heats</h6>
<h2 style="text-align:center;">30</h2>
</div>
<div class="col-sm-4 portfolio-item">
<h6 style="text-align:center;">Heat wins</h6>
<h2 style="text-align:center;">21</h2>
</div>
<div class="col-sm-4 portfolio-item">
<h6 style="text-align:center;">HEAT WINS PERCENTAGE</h6>
<h2 style="text-align:center;">70.0%</h2>
</div>
</div>
<hr/>
<h4 style="text-align:center;">Avg Heat Score progression</h4>
<div id="avg_chart" style="height: 250px;"></div>
<hr/>
<h4 style="text-align:center;">Heat stats progression</h4>
<div id="heat_chart" style="height: 250px;"></div>
<hr/>
<style type="text/css">
.heats-all{
z-index: 3;
margin-left: 5px;
cursor: pointer;
}
</style>
<div class="container">
<div id="disqus_thread"></div>
<script>
/**
* RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS.
* LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables*/
var disqus_config = function () {
this.page.url = "http://fantasysurfingtips.com/surfers/rpere"; // Replace PAGE_URL with your page's canonical URL variable
this.page.identifier = '3532'; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
};
(function() { // DON'T EDIT BELOW THIS LINE
var d = document, s = d.createElement('script');
s.src = '//fantasysurfingtips.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
</div>
</section>
<script type="text/javascript">
$('.heats-all').click(function(){
$('.heats-all-stat').css('display', 'none')
$('#'+$(this).attr('id')+'-stat').css('display', 'block')
});
$('.heats-2016').click(function(){
$('.heats-2016-stat').css('display', 'none')
$('#'+$(this).attr('id')+'-stat').css('display', 'block')
});
$('document').ready(function(){
new Morris.Line({
// ID of the element in which to draw the chart.
element: 'avg_chart',
// Chart data records -- each entry in this array corresponds to a point on
// the chart.
data: [],
// The name of the data record attribute that contains x-values.
xkey: 'year',
// A list of names of data record attributes that contain y-values.
ykeys: ['avg', 'avg_all'],
// Labels for the ykeys -- will be displayed when you hover over the
// chart.
labels: ['Avg score in year', 'Avg score FST DATA']
});
new Morris.Bar({
// ID of the element in which to draw the chart.
element: 'heat_chart',
// Chart data records -- each entry in this array corresponds to a point on
// the chart.
data: [],
// The name of the data record attribute that contains x-values.
xkey: 'year',
// A list of names of data record attributes that contain y-values.
ykeys: ['heats', 'wins', 'percs'],
// Labels for the ykeys -- will be displayed when you hover over the
// chart.
labels: ['Heats surfed', 'Heats won', 'Winning percentage']
});
});
</script>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
<!-- Footer -->
<div w3-include-html="https://fantasysurfingtips.com/layout/footer.html"></div>
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-74337819-1', 'auto'); // Replace with your property ID.
ga('send', 'pageview');
</script>
<script>
w3IncludeHTML();
</script>
<!-- jQuery -->
<script src="https://fantasysurfingtips.com/js/jquery.js"></script>
<script src="https://cdn.datatables.net/1.10.7/js/jquery.dataTables.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="https://fantasysurfingtips.com/js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<script src="https://fantasysurfingtips.com/js/classie.js"></script>
<script src="https://fantasysurfingtips.com/js/cbpAnimatedHeader.js"></script>
<!-- Contact Form JavaScript -->
<script src="https://fantasysurfingtips.com/js/jqBootstrapValidation.js"></script>
<script src="https://fantasysurfingtips.com/js/contact_me.js"></script>
<!-- Custom Theme JavaScript -->
<script src="https://fantasysurfingtips.com/js/freelancer.js"></script>
<script type="https://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js"></script>
<script type="https://cdn.datatables.net/1.10.12/js/dataTables.bootstrap.min.js"></script>
</body>
</html>
|
_includes/footer.html | gyfeng/gyfeng.github.io | <!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<ul class="list-inline text-center">
{% if site.RSS %}
<li>
<a href="{{ "/feed.xml" | prepend: site.baseurl }}">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-rss fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
{% endif %}
{% if site.zhihu_username %}
<li>
<a target="_blank" href="https://www.zhihu.com/people/{{ site.zhihu_username }}">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-stack-1x fa-inverse">知</i>
</span>
</a>
</li>
{% endif %}
{% if site.weibo_username %}
<li>
<a target="_blank" href="http://weibo.com/{{ site.weibo_username }}">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-weibo fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
{% endif %}
{% if site.github_username %}
<li>
<a target="_blank" href="https://github.com/{{ site.github_username }}">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
{% endif %}
</ul>
<p class="copyright text-muted">
Copyright © {{ site.title }} {{ site.time | date: '%Y' }}
<br>
Theme by <a href="http://huangxuan.me">Hux</a> |
<iframe
style="margin-left: 2px; margin-bottom:-5px;"
frameborder="0" scrolling="0" width="100px" height="20px"
src="https://ghbtns.com/github-btn.html?user=huxpro&repo=huxpro.github.io&type=star&count=true" >
</iframe>
</p>
</div>
</div>
</div>
</footer>
<!-- jQuery -->
<script src="{{ "/js/jquery.min.js " | prepend: site.baseurl }}"></script>
<!-- Bootstrap Core JavaScript -->
<script src="{{ "/js/bootstrap.min.js " | prepend: site.baseurl }}"></script>
<!-- Custom Theme JavaScript -->
<script src="{{ "/js/hux-blog.min.js " | prepend: site.baseurl }}"></script>
<!-- Service Worker -->
{% if site.service-worker %}
<script type="text/javascript">
if(navigator.serviceWorker){
// For security reasons, a service worker can only control the pages that are in the same directory level or below it. That's why we put sw.js at ROOT level.
navigator.serviceWorker
.register('/sw.js')
.then((registration) => {console.log('Service Worker Registered. ', registration)})
.catch((error) => {console.log('ServiceWorker registration failed: ', error)})
}
</script>
{% endif %}
<!-- async load function -->
<script>
function async(u, c) {
var d = document, t = 'script',
o = d.createElement(t),
s = d.getElementsByTagName(t)[0];
o.src = u;
if (c) { o.addEventListener('load', function (e) { c(null, e); }, false); }
s.parentNode.insertBefore(o, s);
}
</script>
<!--
Because of the native support for backtick-style fenced code blocks
right within the Markdown is landed in Github Pages,
From V1.6, There is no need for Highlight.js,
so Huxblog drops it officially.
- https://github.com/blog/2100-github-pages-now-faster-and-simpler-with-jekyll-3-0
- https://help.github.com/articles/creating-and-highlighting-code-blocks/
- https://github.com/jneen/rouge/wiki/list-of-supported-languages-and-lexers
-->
<!--
<script>
async("http://cdn.bootcss.com/highlight.js/8.6/highlight.min.js", function(){
hljs.initHighlightingOnLoad();
})
</script>
<link href="http://cdn.bootcss.com/highlight.js/8.6/styles/github.min.css" rel="stylesheet">
-->
<!-- jquery.tagcloud.js -->
<script>
// only load tagcloud.js in tag.html
if($('#tag_cloud').length !== 0){
async('{{ "/js/jquery.tagcloud.js" | prepend: site.baseurl }}',function(){
$.fn.tagcloud.defaults = {
//size: {start: 1, end: 1, unit: 'em'},
color: {start: '#bbbbee', end: '#0085a1'},
};
$('#tag_cloud a').tagcloud();
})
}
</script>
<!--fastClick.js -->
<script>
async("//cdnjs.cloudflare.com/ajax/libs/fastclick/1.0.6/fastclick.min.js", function(){
var $nav = document.querySelector("nav");
if($nav) FastClick.attach($nav);
})
</script>
<!-- Google Analytics -->
{% if site.ga_track_id %}
<script>
// dynamic User by Hux
var _gaId = '{{ site.ga_track_id }}';
var _gaDomain = '{{ site.ga_domain }}';
// Originial
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', _gaId, _gaDomain);
ga('send', 'pageview');
</script>
{% endif %}
<!-- Baidu Tongji -->
{% if site.ba_track_id %}
<script>
// dynamic User by Hux
var _baId = '{{ site.ba_track_id }}';
// Originial
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "//hm.baidu.com/hm.js?" + _baId;
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
{% endif %}
<!-- Side Catalog -->
{% if page.catalog %}
<script type="text/javascript">
function generateCatalog (selector) {
var P = $('div.post-container'),a,n,t,l,i,c;
a = P.find('h1,h2,h3,h4,h5,h6');
a.each(function () {
n = $(this).prop('tagName').toLowerCase();
i = "#"+$(this).prop('id');
t = $(this).text();
c = $('<a href="'+i+'" title="'+t+'" rel="nofollow">'+t+'</a>');
l = $('<li class="'+n+'_nav"></li>').append(c);
$(selector).append(l);
});
return true;
}
generateCatalog(".catalog-body");
// toggle side catalog
$(".catalog-toggle").click((function(e){
e.preventDefault();
$('.side-catalog').toggleClass("fold")
}))
/*
* Doc: https://github.com/davist11/jQuery-One-Page-Nav
* Fork by Hux to support padding
*/
async("{{ '/js/jquery.nav.js' | prepend: site.baseurl }}", function () {
$('.catalog-body').onePageNav({
currentClass: "active",
changeHash: !1,
easing: "swing",
filter: "",
scrollSpeed: 700,
scrollOffset: 0,
scrollThreshold: .2,
begin: null,
end: null,
scrollChange: null,
padding: 80
});
});
</script>
{% endif %}
|
base/public/views/index.html | shebpamm/homepage | <html><head><link href="/css/style.css" rel="stylesheet"/><title>Homepage</title></head><body><div class="navbar"></div><div class="content"></div></body></html> |
www/index.html | mwagner81/idsMATool | <!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>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
<link rel="stylesheet" type="text/css" href="css/styles.css" />
<script src="js/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="js/jquery.jsonp.js"></script>
<title>Mungos Actives App - Login</title>
</head>
<body id="bLogin">
<!-- Start of Login page -->
<div id="login" data-title="Login">
<div data-role="content">
<img src="img/mungosButton.png" id="mungosButton" />
<div id="loginError"></div>
<form action="index.html" id="loginForm">
<input type="text" placeholder="Name:" id="loginName" name="username" data-role="none" />
<input type="password" placeholder="Passwort:" id="loginPassword" name="password" data-role="none" />
<input type="submit" value="" id="loginSubmit" data-role="none" />
</form>
</div>
</div>
<!-- /page -->
<script type="text/javascript" src="phonegap.js"></script>
<script type="text/javascript" src="js/diverses.js"></script>
<script type="text/javascript">
function checkLogin(){
// Set key for userData
u_key = 'u_' + localStorage.getItem('fe_user');
// Load userData
var uData = {};
if(uData = JSON.parse(localStorage.getItem(u_key))){
if(uData.logged_in == true){
window.location.replace('content.html');
}
}
}
checkLogin();
</script>
</body>
</html> |
Lab0/WeatherSight/aboutMe.html | Chad-Barlow/cs360 | <!DOCTYPE html>
<html>
<head>
<title>WeatherSight</title>
<link rel="stylesheet" type="text/css" href="weather.css">
</head>
<body>
<h1 id="title">WeatherSight</h1>
<hr>
<div>Here is some fun information about me:</div>
<div class="container">
<div class="text1">
<ul>
Hobbies:
<ul>
<li>Video Games(Halo,Zelda,Minecraft)</li>
<li>Hanging out with my Wife</li>
<li>Legos!! :)</li>
<li>Basketball</li>
</ul>
Family:
<ul>
<li>Married-no kids-yet.....</li>
<li>I have 4 siblings</li>
</ul>
Other:
<ul>
<li>I named myself, literally, I had my name changed.</li>
<li>I grew up in Florida</li>
<li>Because I grew up in Florida I am growing my own Tropical Botanical Garden in my home with tropical plants like Pomegranate, Avocado, Mango, Lemon, etc.</li>
<li>I love cats</li>
</ul>
</ul>
</div>
<div class="imageDetails">
<img src="Luau.bmp" alt="Party!" class="imageDetails">
</div>
</div>
<div>
<p>Triforce!</p>
<pre>
/^\
/ \
/_____\
/ \ / \
/ \/ \
/______v____\
</pre>
<form action="Weather.html">
<input type="submit" value="Home">
</form>
</div>
</body>
</html> |
javadoc/hibernate_Doc/org/hibernate/jpa/criteria/expression/class-use/UnaryOperatorExpression.html | serious6/HibernateSimpleProject | <!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_45) on Mon Mar 03 10:44:39 EST 2014 -->
<title>Uses of Interface org.hibernate.jpa.criteria.expression.UnaryOperatorExpression (Hibernate JavaDocs)</title>
<meta name="date" content="2014-03-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.hibernate.jpa.criteria.expression.UnaryOperatorExpression (Hibernate JavaDocs)";
}
//-->
</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/hibernate/jpa/criteria/expression/UnaryOperatorExpression.html" title="interface in org.hibernate.jpa.criteria.expression">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>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/hibernate/jpa/criteria/expression/class-use/UnaryOperatorExpression.html" target="_top">Frames</a></li>
<li><a href="UnaryOperatorExpression.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.hibernate.jpa.criteria.expression.UnaryOperatorExpression" class="title">Uses of Interface<br>org.hibernate.jpa.criteria.expression.UnaryOperatorExpression</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/hibernate/jpa/criteria/expression/UnaryOperatorExpression.html" title="interface in org.hibernate.jpa.criteria.expression">UnaryOperatorExpression</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.hibernate.jpa.criteria.expression">org.hibernate.jpa.criteria.expression</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#org.hibernate.jpa.criteria.predicate">org.hibernate.jpa.criteria.predicate</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.hibernate.jpa.criteria.expression">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/hibernate/jpa/criteria/expression/UnaryOperatorExpression.html" title="interface in org.hibernate.jpa.criteria.expression">UnaryOperatorExpression</a> in <a href="../../../../../../org/hibernate/jpa/criteria/expression/package-summary.html">org.hibernate.jpa.criteria.expression</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../../../org/hibernate/jpa/criteria/expression/package-summary.html">org.hibernate.jpa.criteria.expression</a> that implement <a href="../../../../../../org/hibernate/jpa/criteria/expression/UnaryOperatorExpression.html" title="interface in org.hibernate.jpa.criteria.expression">UnaryOperatorExpression</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/hibernate/jpa/criteria/expression/UnaryArithmeticOperation.html" title="class in org.hibernate.jpa.criteria.expression">UnaryArithmeticOperation</a><T></strong></code>
<div class="block"><div class="paragraph"></div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.hibernate.jpa.criteria.predicate">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/hibernate/jpa/criteria/expression/UnaryOperatorExpression.html" title="interface in org.hibernate.jpa.criteria.expression">UnaryOperatorExpression</a> in <a href="../../../../../../org/hibernate/jpa/criteria/predicate/package-summary.html">org.hibernate.jpa.criteria.predicate</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../../../org/hibernate/jpa/criteria/predicate/package-summary.html">org.hibernate.jpa.criteria.predicate</a> that implement <a href="../../../../../../org/hibernate/jpa/criteria/expression/UnaryOperatorExpression.html" title="interface in org.hibernate.jpa.criteria.expression">UnaryOperatorExpression</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/hibernate/jpa/criteria/predicate/IsEmptyPredicate.html" title="class in org.hibernate.jpa.criteria.predicate">IsEmptyPredicate</a><C extends <a href="http://download.oracle.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a>></strong></code>
<div class="block"><div class="paragraph"></div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../../../org/hibernate/jpa/criteria/predicate/NullnessPredicate.html" title="class in org.hibernate.jpa.criteria.predicate">NullnessPredicate</a></strong></code>
<div class="block"><div class="paragraph"></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/hibernate/jpa/criteria/expression/UnaryOperatorExpression.html" title="interface in org.hibernate.jpa.criteria.expression">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>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/hibernate/jpa/criteria/expression/class-use/UnaryOperatorExpression.html" target="_top">Frames</a></li>
<li><a href="UnaryOperatorExpression.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 © 2001-2014 <a href="http://redhat.com">Red Hat, Inc.</a> All Rights Reserved.</small></p>
</body>
</html>
|
bounce.html | feklee/140 | <p style="position:absolute">O</p><script>i=0;setInterval('document.body.firstChild.style.bottom=Math.abs(300*Math.cos(i+=.1))',40)</script>
|
modules/Module/SPrint/PrintControlDialog.html | getsmap/smap4 | <div>
<div id="SPrintTabs">
<ul>
<li><a href="#sprint-tabs-1">Utskrift</a></li>
<li><a href="#sprint-tabs-2">Export</a></li>
</ul>
<div id="sprint-tabs-1">
<form>
<table>
<tr>
<td colspan="2">Rubrik:</td>
</tr>
<tr>
<td colspan="2"><input id="sprint_txtHeader"
style="width: 300px; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;"></td>
</tr>
<tr>
<!-- This determines the size of the columns -->
<td colspan="1" width="162px"> </td>
<td colspan="1"> </td>
</tr>
<tr>
<td colspan="2">Beskrivning:</td>
</tr>
<tr>
<td colspan="2"><textarea id="sprint_txtAreaDescription"
rows="3" style="width: 300px; overflow-Y: scroll;" cols=""
rows=""></textarea></td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td>Utskriftsformat:</td>
<td>Upplösning:</td>
</tr>
<tr>
<td><select id="sprint_Print_slctPrintFormat"
class="sprint-paperformat" style="width: 140px; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;">
<!--option value="A0">A0</option-->
<!--option value="A1">A1</option-->
<option value="A2">A2</option>
<option value="A3">A3</option>
<option value="A4" selected="selected">A4</option>
<!--<option value="A5">A5</option>-->
</select></td>
<td><select id="sprint_Print_slctResolution"
style="width: 140px; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;">
<option value="96">96</option>
<option value="300">300</option>
</select></td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td><input id="sprint_Print_chkNorthArrow" type="checkbox"></input><label
style="margin-top: 7px">Norrpil</label><br>
<input id="sprint_Print_chkScaleBar" type="checkbox"></input><label
style="margin-top: 7px">Skalstock</label></td>
<td><input class="sprint-orientation" type="radio" name="sprint_Print_radLandscape" value="Landscape"></input><label>Liggande</label><br />
<input class="sprint-orientation" type="radio" name="sprint_Print_radLandscape" value="Portrait" checked="checked"></input><label>Stående</label></td>
</tr>
<tr>
<td><input id="sprint_Print_chkUseMask" type="checkbox"></input><label id="sprint_Print_chkUseMaskLbl"
style="margin-top: 7px">Definiera utskriftsyta</label></td>
<td colspan="1">
<input type="button" id="sprint_Print_btnDraw"
value="Rita"></input>
<input type="button" id="sprint_Print_btnClear"
value="Rensa"></input>
</td>
</tr>
<tr>
<td>
<label>Välj skala:</label>
</td>
<td><input id="sprint_Print_chkPdfUrl" type="checkbox"></input><label
style="margin-top: 7px">Länk till pdf</label></td>
</tr>
<tr>
<td>
<select class="sprint-selectscale"></select>
</td>
<td><input type="button" id="sprint_Print_btnPrint"
style="margin-top: 7px; width: 140px; height: 25px;"
value="Skriv ut"></input></td>
</tr>
</table>
</form>
</div>
<div id="sprint-tabs-2">
<form>
<table>
<tr>
<td colspan="2" >Exportformat:</td>
<tr>
<td colspan="2"><select id="sprint_Export_slctImageFormat"
style="width: 140px; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;">
<option value="JPEG" selected="selected">jpeg</option>
<option value="PNG">png</option>
<option value="PDF">pdf</option></select>
</tr>
<tr>
<!-- This determines the size of the columns -->
<td colspan="1" width="162px"> </td>
<td colspan="1"> </td>
</tr>
<tr>
<td>Format:</td>
<td>Upplösning:</td>
</tr>
<tr>
<td><select id="sprint_Export_slctPrintFormat"
class="sprint-paperformat" style="width: 140px; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;">
<!--option value="A0">A0</option-->
<!--option value="A1">A1</option-->
<option value="A2">A2</option>
<option value="A3">A3</option>
<option value="A4" selected="selected">A4</option>
<!--<option value="A5">A5</option>-->
</select></td>
<td><select id="sprint_Export_slctResolution"
style="width: 140px; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;">
<option value="96">96</option>
<option value="300" selected="selected">300</option></select>
</td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr><td><input id="sprint_Export_chkNorthArrow" type="checkbox"><label
style="margin-top: 7px">Norrpil</label><br>
<input id="sprint_Export_chkScaleBar" type="checkbox"><label
style="margin-top: 7px">Skalstock</label></td>
<td><input class="sprint-orientation" type="radio" name="sprint_Export_radLandscape" value="Landscape"></input><label>Liggande</label><br />
<input class="sprint-orientation" type="radio" name="sprint_Export_radLandscape" value="Portrait" checked="checked"></input><label>Stående</label></td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td>
<label>Välj skala:</label>
</td>
<td></td>
</tr>
<tr>
<td>
<select class="sprint-selectscale"></select>
</td>
</tr>
<tr>
<td><input type="button" id="sprint_Export_btnPreview"
style="margin-top: 7px; width: 140px; height: 25px;"
value="Förhandsgranska" /></td>
<td><input type="button" id="sprint_Export_btnExport"
style="margin-top: 7px; width: 140px; height: 25px;"
value="Exportera" /></td>
</tr>
</table>
</form>
</div>
</div>
</div> |
coverage/lcov-report/lib/save/index.html | eHealthAfrica/universal-exporter | <!doctype html>
<html lang="en">
<head>
<title>Code coverage report for lib/save/</title>
<meta charset="utf-8">
<link rel="stylesheet" href="../../prettify.css">
<link rel="stylesheet" href="../../base.css">
<style type='text/css'>
div.coverage-summary .sorter {
background-image: url(../../sort-arrow-sprite.png);
}
</style>
</head>
<body>
<div class="header medium">
<h1>Code coverage report for <span class="entity">lib/save/</span></h1>
<h2>
Statements: <span class="metric">76.27% <small>(90 / 118)</small></span>
Branches: <span class="metric">65.31% <small>(32 / 49)</small></span>
Functions: <span class="metric">81.82% <small>(18 / 22)</small></span>
Lines: <span class="metric">77.48% <small>(86 / 111)</small></span>
Ignored: <span class="metric"><span class="ignore-none">none</span></span>
</h2>
<div class="path"><a href="../../index.html">All files</a> » lib/save/</div>
</div>
<div class="body">
<div class="coverage-summary">
<table>
<thead>
<tr>
<th data-col="file" data-fmt="html" data-html="true" class="file">File</th>
<th data-col="pic" data-type="number" data-fmt="html" data-html="true" class="pic"></th>
<th data-col="statements" data-type="number" data-fmt="pct" class="pct">Statements</th>
<th data-col="statements_raw" data-type="number" data-fmt="html" class="abs"></th>
<th data-col="branches" data-type="number" data-fmt="pct" class="pct">Branches</th>
<th data-col="branches_raw" data-type="number" data-fmt="html" class="abs"></th>
<th data-col="functions" data-type="number" data-fmt="pct" class="pct">Functions</th>
<th data-col="functions_raw" data-type="number" data-fmt="html" class="abs"></th>
<th data-col="lines" data-type="number" data-fmt="pct" class="pct">Lines</th>
<th data-col="lines_raw" data-type="number" data-fmt="html" class="abs"></th>
</tr>
</thead>
<tbody><tr>
<td class="file high" data-value="_bufferToStream.js"><a href="_bufferToStream.js.html">_bufferToStream.js</a></td>
<td data-value="95.45" class="pic high"><span class="cover-fill" style="width: 95px;"></span><span class="cover-empty" style="width:5px;"></span></td>
<td data-value="95.45" class="pct high">95.45%</td>
<td data-value="22" class="abs high">(21 / 22)</td>
<td data-value="50" class="pct medium">50%</td>
<td data-value="6" class="abs medium">(3 / 6)</td>
<td data-value="100" class="pct high">100%</td>
<td data-value="3" class="abs high">(3 / 3)</td>
<td data-value="95.45" class="pct high">95.45%</td>
<td data-value="22" class="abs high">(21 / 22)</td>
</tr>
<tr>
<td class="file high" data-value="csv.js"><a href="csv.js.html">csv.js</a></td>
<td data-value="100" class="pic high"><span class="cover-fill cover-full" style="width: 100px;"></span><span class="cover-empty" style="width:0px;"></span></td>
<td data-value="100" class="pct high">100%</td>
<td data-value="7" class="abs high">(7 / 7)</td>
<td data-value="100" class="pct high">100%</td>
<td data-value="2" class="abs high">(2 / 2)</td>
<td data-value="100" class="pct high">100%</td>
<td data-value="3" class="abs high">(3 / 3)</td>
<td data-value="100" class="pct high">100%</td>
<td data-value="7" class="abs high">(7 / 7)</td>
</tr>
<tr>
<td class="file medium" data-value="index.js"><a href="index.js.html">index.js</a></td>
<td data-value="75" class="pic medium"><span class="cover-fill" style="width: 75px;"></span><span class="cover-empty" style="width:25px;"></span></td>
<td data-value="75" class="pct medium">75%</td>
<td data-value="20" class="abs medium">(15 / 20)</td>
<td data-value="66.67" class="pct medium">66.67%</td>
<td data-value="15" class="abs medium">(10 / 15)</td>
<td data-value="75" class="pct medium">75%</td>
<td data-value="8" class="abs medium">(6 / 8)</td>
<td data-value="75" class="pct medium">75%</td>
<td data-value="20" class="abs medium">(15 / 20)</td>
</tr>
<tr>
<td class="file high" data-value="json.js"><a href="json.js.html">json.js</a></td>
<td data-value="100" class="pic high"><span class="cover-fill cover-full" style="width: 100px;"></span><span class="cover-empty" style="width:0px;"></span></td>
<td data-value="100" class="pct high">100%</td>
<td data-value="4" class="abs high">(4 / 4)</td>
<td data-value="100" class="pct high">100%</td>
<td data-value="0" class="abs high">(0 / 0)</td>
<td data-value="100" class="pct high">100%</td>
<td data-value="2" class="abs high">(2 / 2)</td>
<td data-value="100" class="pct high">100%</td>
<td data-value="4" class="abs high">(4 / 4)</td>
</tr>
<tr>
<td class="file medium" data-value="xlsx.js"><a href="xlsx.js.html">xlsx.js</a></td>
<td data-value="66.15" class="pic medium"><span class="cover-fill" style="width: 66px;"></span><span class="cover-empty" style="width:34px;"></span></td>
<td data-value="66.15" class="pct medium">66.15%</td>
<td data-value="65" class="abs medium">(43 / 65)</td>
<td data-value="65.38" class="pct medium">65.38%</td>
<td data-value="26" class="abs medium">(17 / 26)</td>
<td data-value="66.67" class="pct medium">66.67%</td>
<td data-value="6" class="abs medium">(4 / 6)</td>
<td data-value="67.24" class="pct medium">67.24%</td>
<td data-value="58" class="abs medium">(39 / 58)</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="footer">
<div class="meta">Generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Wed Jun 17 2015 16:34:49 GMT+0100 (BST)</div>
</div>
<script src="../../prettify.js"></script>
<script>
window.onload = function () {
if (typeof prettyPrint === 'function') {
prettyPrint();
}
};
</script>
<script src="../../sorter.js"></script>
</body>
</html>
|
app/rogsit/rogsit.html | rogallic/rogsit | <div>
<h1>{{productName}} <small>({{getConfig('Domain')}})</small></h1>
<p>Hello, {{yourName}}</p>
<p>You can set your name:
<input #ttt (keyup)="setYourName(ttt.value)" (keyup.enter)="comfirmYourName()" placeholder="write your name">
</p>
<p>
or
<button (click)="setRandomYourName()">set random name</button>
</p>
<log-in>loading...</log-in>
</div>
|
target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_17a_testAbaNumberCheck_36505_good_7fh.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_17a.html">Class Test_AbaRouteValidator_17a</a></li>
</ol></div>
<h1 class="aui-h2-clover">
Test testAbaNumberCheck_36505_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_17a.html?line=34141#src-34141" >testAbaNumberCheck_36505_good</a>
</td>
<td>
<span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span>
</td>
<td>
7 Aug 12:46:19
</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_36505_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=9629#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> |
medgointranet/templates/admin/doctor_edit.html | ElitosGon/medgoproject | {% extends "general/home_intranet.html" %}
<!-- field atributes modificaciones / atributo concreto form.nombre-->
{% load static %}
{% block local %}
<script type="text/javascript" src="{% static 'global/js/validador.js' %}"></script>
<script>
$(function() {
changeRut();
var $inputClientRut = $('#id_doctor-rut_doctor');
$inputClientRut.change(function(){
changeRut();
});
});
function changeRut(){
var rut = document.getElementById("id_doctor-rut_doctor");
var valor = rut.value;
valor = valor.replace(/ /g, "");
valor = valor.replace(/\./g, "");
valor = valor.replace(/\,/g, "");
valor = valor.replace(/\-/g, "");
valor = valor.replace(/C/g, "");
valor = valor.replace(/L/g, "");
var newValue = GetFormatRut(valor);
rut.value = newValue;
var valueTest = newValue.replace(/\./g, "");
valueTest = valueTest.replace(/\,/g, "");
if (Rut(valueTest) == false){
rut.value = "";
}
};
</script>
<script>
$(document).ready(function(){
$.fn.datepicker.dates['es'] = {
days: ["Domingo", "Lunes", "Martes", "Miercoles", "Jueves", "Viernes", "Sábado"],
daysShort: ["Dom", "Lun", "Mar", "Mie", "Jue", "Vie", "Sab"],
daysMin: ["Do", "Lu", "Ma", "Mi", "Ju", "Vi", "Sa"],
months: ["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Augosto", "Septiembre", "Octubre", "Noviembre", "Deciembre"],
monthsShort: ["Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dic"],
today: "Today",
clear: "Clear",
format: "dd/mm/yyyy",
titleFormat: "MM yyyy", /* Leverages same syntax as 'format' */
weekStart: 0
};
var date_input = $('input[name="doctor-fecha_titulacion"]'); //our date input has the name "date"
var container=$('form').length > 0 ? $('form').parent() : "body";
date_input.datepicker({
format: 'dd/mm/yyyy',
container: container,
todayHighlight: true,
autoclose: true,
language: "es"
})
})
</script>
{{ form.media }}
{% endblock %}
{% block content %}
<ol class="breadcrumb">
<li><a href="{% url 'medgointranet:HomeIntranet' %}">HomeIntranet</a></li>
<li><a href="{% url 'medgointranet:GETDoctores'%}">Profesionales de la salud</a></li>
<li class="active">Editar</li>
</ol>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Editar Profesional de la salud</h3>
</div>
<div class="panel-body">
<div class="alert alert-info">
<ul>
<li>Los campos con (*) son obligatorios</li>
</ul>
</div>
{% if message %}
<div class="alert alert-danger">
{{message}}
</div>
{% endif %}
<div class="table-responsive">
<form method="post" action="" enctype="multipart/form-data" role="form">
{% csrf_token %}
<h3>Información personal</h3>
<table class="table table-hover">
<!--Usuario-->
<tr class="{% if user_form.username.errors %} alert alert-danger {% endif %}">
<td width="30%">NickName (*)</td>
<td class="no-border-right" width="50%">{{user_form.username}}</td>
<td>{{user_form.username.errors}}</td>
</tr>
<tr class="{% if user_form.first_name.errors %} alert alert-danger {% endif %}">
<td width="30%">Nombre (*)</td>
<td class="no-border-right" width="50%">{{user_form.first_name}}</td>
<td>{{user_form.first_name.erros}}</td>
</tr>
<tr class="{% if user_form.last_name.errors %} alert alert-danger {% endif %}">
<td width="30%">Apellido (*)</td>
<td class="no-border-right" width="50%">{{user_form.last_name}}</td>
<td>{{user_form.last_name.errors}}</td>
</tr>
<tr class="{% if user_form.email.errors %} alert alert-danger {% endif %}">
<td width="30%">Correo (*)</td>
<td class="no-border-right" width="50%">{{user_form.email}}</td>
<td>{{user_form.email.errors}}</td>
</tr>
<!--Doctor-->
<!--Rut-->
<tr class="{% if doctor_form.rut_doctor.errors %} alert alert-danger {% endif %}">
<td width="30%">{{doctor_form.rut_doctor.label}} (*)</td>
<td class="no-border-right" width="50%">{{doctor_form.rut_doctor}}</td>
<td>{{doctor_form.rut_doctor.errors}}</td>
</tr>
<!--Telefono-->
<tr class="{% if doctor_form.telefono_movil_doctor.errors %} alert alert-danger {% endif %}">
<td width="30%">{{doctor_form.telefono_movil_doctor.label}} (*)</td>
<td class="no-border-right" width="50%">{{doctor_form.telefono_movil_doctor}}</td>
<td>{{doctor_form.telefono_movil_doctor.errors}}</td>
</tr>
<!--Descripcion-->
<tr class="{% if doctor_form.descripcion_doctor.errors %} alert alert-danger {% endif %}">
<td width="30%">{{doctor_form.descripcion_doctor.label}}</td>
<td class="no-border-right" width="50%">{{doctor_form.descripcion_doctor}}</td>
<td>{{doctor_form.descripcion_doctor.errors}}</td>
</tr>
<!--Fecha titulacion-->
<tr class="{% if doctor_form.fecha_titulacion.errors %} alert alert-danger {% endif %}">
<td width="30%">Fecha titulación</td>
<td class="no-border-right" width="50%">
<div class="bootstrap-iso">
{{ doctor_form.fecha_titulacion }}
</div>
</td>
<td>{{doctor_form.fecha_titulacion.errors}}</td>
</tr>
<!--Certificado de titulo-->
<tr class="{% if doctor_form.certificado_titulo.errors %} alert alert-danger {% endif %}">
<td width="30%">{{doctor_form.certificado_titulo.label}}</td>
<td class="no-border-right" width="50%">{{doctor_form.certificado_titulo}}</td>
<td>{{doctor_form.certificado_titulo.errors}}</td>
</tr>
<!--Certificado superintendencia-->
<tr class="{% if doctor_form.certificado_superintendencia.errors %} alert alert-danger {% endif %}">
<td width="30%">{{doctor_form.certificado_superintendencia.label}}</td>
<td class="no-border-right" width="50%">{{doctor_form.certificado_superintendencia}}</td>
<td>{{doctor_form.certificado_superintendencia.errors}}</td>
</tr>
<!--Curriculum vitae-->
<tr class="{% if doctor_form.curriculum_vitae.errors %} alert alert-danger {% endif %}">
<td width="30%">{{doctor_form.curriculum_vitae.label}}</td>
<td class="no-border-right" width="50%">{{doctor_form.curriculum_vitae}}</td>
<td>{{doctor_form.curriculum_vitae.errors}}</td>
</tr>
<!--Region-->
<tr class="{% if doctor_form.region_atencion.errors %} alert alert-danger {% endif %}">
<td width="30%">{{doctor_form.region_atencion.label}}</td>
<td class="no-border-right" width="50%">{{doctor_form.region_atencion}}</td>
<td>{{doctor_form.region_atencion.errors}}</td>
</tr>
<!--Universidad-->
<tr class="{% if doctor_form.universidades_doctor.errors %} alert alert-danger {% endif %}">
<td width="30%">{{doctor_form.universidades_doctor.label}}</td>
<td class="no-border-right" width="50%">{{doctor_form.universidades_doctor}}</td>
<td>{{doctor_form.universidades_doctor.errors}}</td>
</tr>
<!--Estado doctor -->
<tr class="{% if doctor_form.estado_doctor.errors %} alert alert-danger {% endif %}">
<td width="30%">{{doctor_form.estado_doctor.label}}</td>
<td class="no-border-right" width="50%">{{doctor_form.estado_doctor}}</td>
<td>{{doctor_form.estado_doctor.errors}}</td>
</tr>
</table>
<h3>Información atención</h3>
<table class="table table-hover">
<!--Precio-->
<tr class="{% if doctor_form.precio_semana_a.errors %} alert alert-danger {% endif %}">
<td width="30%">{{doctor_form.precio_semana_a.label}}</td>
<td class="no-border-right" width="50%">{{doctor_form.precio_semana_a}}</td>
<td>{{doctor_form.precio_semana_a.errors}}</td>
</tr>
<tr class="{% if doctor_form.precio_semana_b.errors %} alert alert-danger {% endif %}">
<td width="30%">{{doctor_form.precio_semana_b.label}}</td>
<td class="no-border-right" width="50%">{{doctor_form.precio_semana_b}}</td>
<td>{{doctor_form.precio_semana_b.errors}}</td>
</tr>
<tr class="{% if doctor_form.precio_fin_semana_a.errors %} alert alert-danger {% endif %}">
<td width="30%">{{doctor_form.precio_fin_semana_a.label}}</td>
<td class="no-border-right" width="50%">{{doctor_form.precio_fin_semana_a}}</td>
<td>{{doctor_form.precio_fin_semana_a.errors}}</td>
</tr>
<tr class="{% if doctor_form.precio_fin_semana_b.errors %} alert alert-danger {% endif %}">
<td width="30%">{{doctor_form.precio_fin_semana_b.label}}</td>
<td class="no-border-right" width="50%">{{doctor_form.precio_fin_semana_b}}</td>
<td>{{doctor_form.precio_fin_semana_b.errors}}</td>
</tr>
<!--Tipo de atencion-->
<tr class="{% if doctor_form.especialidades_doctor.errors %} alert alert-danger {% endif %}">
<td width="30%">{{doctor_form.especialidades_doctor.label}}</td>
<td class="no-border-right" width="50%">{{doctor_form.especialidades_doctor}}</td>
<td>{{doctor_form.especialidades_doctor.errors}}</td>
</tr>
<!--Comuna-->
<tr class="{% if doctor_form.comunas_atencion.errors %} alert alert-danger {% endif %}">
<td width="30%">{{doctor_form.comunas_atencion.label}}</td>
<td class="no-border-right" width="50%">{{doctor_form.comunas_atencion}}</td>
<td>{{doctor_form.comunas_atencion.errors}}</td>
</tr>
<!--Prevision-->
<tr class="{% if doctor_form.previsiones_aceptadas.errors %} alert alert-danger {% endif %}">
<td width="30%">{{doctor_form.previsiones_aceptadas.label}}</td>
<td class="no-border-right" width="50%">{{doctor_form.previsiones_aceptadas}}</td>
<td>{{doctor_form.previsiones_aceptadas.errors}}</td>
</tr>
<!--Tipo de Pago-->
<tr class="{% if doctor_form.tipos_pago.errors %} alert alert-danger {% endif %}">
<td width="30%">{{doctor_form.tipos_pago.label}}</td>
<td class="no-border-right" width="50%">{{doctor_form.tipos_pago}}</td>
<td>{{doctor_form.tipos_pago.errors}}</td>
</tr>
</table>
<div class="margin-btn-create">
<input type="submit" class="btn btn-success" value="Guardar"/>
<a class="btn btn-default" href="{% url 'medgointranet:GETDoctores' %}">Cancelar</a>
</div>
</form>
</div>
</div>
</div>
{% endblock %}
|
www/templates/settings.html | galindus/babyfeeding | <ion-view title="{{ 'settings' | translate }}">
<ion-nav-buttons side="left">
<button menu-toggle="left" class="button button-icon icon ion-navicon"></button>
</ion-nav-buttons>
<ion-content class="has-header">
<div class="list">
<label class="item item-input item-select">
<div class="input-label">
{{ 'language' | translate }}
</div>
<select ng-model="language" ng-options="lan.text | translate for lan in languages track by lan.code"></select>
</label>
<label class="item item-input item-toggle">
<div class="input-label">
{{ 'Notifications' | translate }}
</div>
<label class="toggle">
<input ng-model="notificationsEnabled" type="checkbox">
<div class="track">
<div class="handle"></div>
</div>
</label>
</label>
<div class="item item-divider animate-if" ng-if="notificationsEnabled">
{{ 'Notification settings' | translate }}
<label class="item item-input item-input">
<div class="input-label">
{{ 'Interval (hours)' | translate }}
</div>
<input type="number" ng-model="notificationInterval" min="0" step="any"/>
</label>
</div>
<label class="item item-input item-toggle">
<div class="input-label">
{{ 'Sleep notifications' | translate }}
</div>
<label class="toggle">
<input ng-model="sleepEnabled" type="checkbox">
<div class="track">
<div class="handle"></div>
</div>
</label>
</label>
<div class="item item-divider animate-if" ng-if="sleepEnabled">
{{ 'Sleep settings: set period to disable notifications' | translate }}
<label class="item item-input item-input">
<div class="input-label">
{{ 'Start sleep' | translate }}
</div>
<input type="time" ng-model="startSleep"/>
</label>
<label class="item item-input item-input">
<div class="input-label">
{{ 'Stop sleep' | translate }}
</div>
<input type="time" ng-model="stopSleep"/>
</label>
</div>
</div>
</ion-content>
</ion-view> |
lib/poi-3.1-FINAL/docs/apidocs/org/apache/poi/poifs/filesystem/POIFSWriterListener.html | stumoodie/MetabolicNotationSubsystem | <!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_13) on Sun Jun 29 16:46:50 MSD 2008 -->
<TITLE>
POIFSWriterListener (POI API Documentation)
</TITLE>
<META NAME="keywords" CONTENT="org.apache.poi.poifs.filesystem.POIFSWriterListener interface">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="POIFSWriterListener (POI API Documentation)";
}
</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/POIFSWriterListener.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-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">
<A HREF="../../../../../org/apache/poi/poifs/filesystem/POIFSWriterEvent.html" title="class in org.apache.poi.poifs.filesystem"><B>PREV CLASS</B></A>
NEXT CLASS</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/poi/poifs/filesystem/POIFSWriterListener.html" target="_top"><B>FRAMES</B></A>
<A HREF="POIFSWriterListener.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 | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | CONSTR | <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.poi.poifs.filesystem</FONT>
<BR>
Interface POIFSWriterListener</H2>
<HR>
<DL>
<DT><PRE>public interface <B>POIFSWriterListener</B></DL>
</PRE>
<P>
Interface POIFSWriterListener
<P>
<P>
<DL>
<DT><B>Version:</B></DT>
<DD>%I%, %G%</DD>
<DT><B>Author:</B></DT>
<DD>Marc Johnson (mjohnson at apache dot org)</DD>
</DL>
<HR>
<P>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Method Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/poi/poifs/filesystem/POIFSWriterListener.html#processPOIFSWriterEvent(org.apache.poi.poifs.filesystem.POIFSWriterEvent)">processPOIFSWriterEvent</A></B>(<A HREF="../../../../../org/apache/poi/poifs/filesystem/POIFSWriterEvent.html" title="class in org.apache.poi.poifs.filesystem">POIFSWriterEvent</A> event)</CODE>
<BR>
Process a POIFSWriterEvent that this listener had registered
for</TD>
</TR>
</TABLE>
<P>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="processPOIFSWriterEvent(org.apache.poi.poifs.filesystem.POIFSWriterEvent)"><!-- --></A><H3>
processPOIFSWriterEvent</H3>
<PRE>
void <B>processPOIFSWriterEvent</B>(<A HREF="../../../../../org/apache/poi/poifs/filesystem/POIFSWriterEvent.html" title="class in org.apache.poi.poifs.filesystem">POIFSWriterEvent</A> event)</PRE>
<DL>
<DD>Process a POIFSWriterEvent that this listener had registered
for
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>event</CODE> - the POIFSWriterEvent</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/POIFSWriterListener.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-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">
<A HREF="../../../../../org/apache/poi/poifs/filesystem/POIFSWriterEvent.html" title="class in org.apache.poi.poifs.filesystem"><B>PREV CLASS</B></A>
NEXT CLASS</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/poi/poifs/filesystem/POIFSWriterListener.html" target="_top"><B>FRAMES</B></A>
<A HREF="POIFSWriterListener.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 | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<i>Copyright 2008 The Apache Software Foundation or
its licensors, as applicable.</i>
</BODY>
</HTML>
|
src/skins/vector/css/matrix-react-sdk/views/dialogs/MultiInviteDialog.css | KentShikama/vector-web | /*
Copyright 2016 OpenMarket Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
.mx_MultiInviteDialog ul {
height: 300px;
overflow-y: auto;
}
.mx_MultiInviteDialog li {
list-style-type: none;
}
.mx_MultiInviteDialog_statusText {
text-indent: 20px;
}
.mx_MultiInviteDialog p.error {
color: #ff0064;
}
.mx_MultiInviteDialog p.invited {
color: #76cfa6;
}
|
target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_16_testAbaNumberCheck_36122_bad_3mh.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_16.html">Class Test_AbaRouteValidator_16</a></li>
</ol></div>
<h1 class="aui-h2-clover">
Test testAbaNumberCheck_36122_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_16.html?line=26992#src-26992" >testAbaNumberCheck_36122_bad</a>
</td>
<td>
<span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span>
</td>
<td>
7 Aug 12:45:14
</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_36122_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=4697#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=4697#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=4697#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> |
docs/xref/org/apache/hadoop/hbase/coprocessor/example/package-summary.html | lshain/hbase-0.98.6-hadoop2 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
<html xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>HBase 0.98.6-hadoop2 Reference Package org.apache.hadoop.hbase.coprocessor.example</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
</head>
<body>
<div class="overview">
<ul>
<li>
<a href="../../../../../../overview-summary.html">Overview</a>
</li>
<li class="selected">Package</li>
</ul>
</div>
<div class="framenoframe">
<ul>
<li>
<a href="../../../../../../index.html" target="_top">FRAMES</a>
</li>
<li>
<a href="package-summary.html" target="_top">NO FRAMES</a>
</li>
</ul>
</div>
<h2>Package org.apache.hadoop.hbase.coprocessor.example</h2>
<table class="summary">
<thead>
<tr>
<th>Class Summary</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="BulkDeleteEndpoint.html" target="classFrame">BulkDeleteEndpoint</a>
</td>
</tr>
<tr>
<td>
<a href="BulkDeleteEndpoint.html" target="classFrame">Column</a>
</td>
</tr>
<tr>
<td>
<a href="RowCountEndpoint.html" target="classFrame">RowCountEndpoint</a>
</td>
</tr>
<tr>
<td>
<a href="ZooKeeperScanPolicyObserver.html" target="classFrame">ZKWatcher</a>
</td>
</tr>
<tr>
<td>
<a href="ZooKeeperScanPolicyObserver.html" target="classFrame">ZooKeeperScanPolicyObserver</a>
</td>
</tr>
</tbody>
</table>
<div class="overview">
<ul>
<li>
<a href="../../../../../../overview-summary.html">Overview</a>
</li>
<li class="selected">Package</li>
</ul>
</div>
<div class="framenoframe">
<ul>
<li>
<a href="../../../../../../index.html" target="_top">FRAMES</a>
</li>
<li>
<a href="package-summary.html" target="_top">NO FRAMES</a>
</li>
</ul>
</div>
<hr />
Copyright © 2014 The Apache Software Foundation. All Rights Reserved.
</body>
</html> |
docs/solr-core/org/apache/solr/update/class-use/UpdateLog.RecoveryInfo.html | eissac/solr4sentiment | <!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 Sun Oct 26 05:56:35 EDT 2014 -->
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<title>Uses of Class org.apache.solr.update.UpdateLog.RecoveryInfo (Solr 4.10.2 API)</title>
<meta name="date" content="2014-10-26">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.solr.update.UpdateLog.RecoveryInfo (Solr 4.10.2 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/update/UpdateLog.RecoveryInfo.html" title="class in org.apache.solr.update">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/update/class-use/UpdateLog.RecoveryInfo.html" target="_top">Frames</a></li>
<li><a href="UpdateLog.RecoveryInfo.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.update.UpdateLog.RecoveryInfo" class="title">Uses of Class<br>org.apache.solr.update.UpdateLog.RecoveryInfo</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/update/UpdateLog.RecoveryInfo.html" title="class in org.apache.solr.update">UpdateLog.RecoveryInfo</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.update">org.apache.solr.update</a></td>
<td class="colLast">
<div class="block">
APIs and classes for managing index updates</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.apache.solr.update">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../org/apache/solr/update/UpdateLog.RecoveryInfo.html" title="class in org.apache.solr.update">UpdateLog.RecoveryInfo</a> in <a href="../../../../../org/apache/solr/update/package-summary.html">org.apache.solr.update</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/update/package-summary.html">org.apache.solr.update</a> declared as <a href="../../../../../org/apache/solr/update/UpdateLog.RecoveryInfo.html" title="class in org.apache.solr.update">UpdateLog.RecoveryInfo</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="../../../../../org/apache/solr/update/UpdateLog.RecoveryInfo.html" title="class in org.apache.solr.update">UpdateLog.RecoveryInfo</a></code></td>
<td class="colLast"><span class="strong">UpdateLog.</span><code><strong><a href="../../../../../org/apache/solr/update/UpdateLog.html#recoveryInfo">recoveryInfo</a></strong></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/solr/update/package-summary.html">org.apache.solr.update</a> that return types with arguments of type <a href="../../../../../org/apache/solr/update/UpdateLog.RecoveryInfo.html" title="class in org.apache.solr.update">UpdateLog.RecoveryInfo</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="http://download.oracle.com/javase/7/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent">Future</a><<a href="../../../../../org/apache/solr/update/UpdateLog.RecoveryInfo.html" title="class in org.apache.solr.update">UpdateLog.RecoveryInfo</a>></code></td>
<td class="colLast"><span class="strong">UpdateLog.</span><code><strong><a href="../../../../../org/apache/solr/update/UpdateLog.html#applyBufferedUpdates()">applyBufferedUpdates</a></strong>()</code>
<div class="block">Returns the Future to wait on, or null if no replay was needed</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://download.oracle.com/javase/7/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent">Future</a><<a href="../../../../../org/apache/solr/update/UpdateLog.RecoveryInfo.html" title="class in org.apache.solr.update">UpdateLog.RecoveryInfo</a>></code></td>
<td class="colLast"><span class="strong">UpdateLog.</span><code><strong><a href="../../../../../org/apache/solr/update/UpdateLog.html#recoverFromLog()">recoverFromLog</a></strong>()</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/update/UpdateLog.RecoveryInfo.html" title="class in org.apache.solr.update">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/update/class-use/UpdateLog.RecoveryInfo.html" target="_top">Frames</a></li>
<li><a href="UpdateLog.RecoveryInfo.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>
|
treebanks/ru_syntagrus/ru_syntagrus-feat-Voice.html | UniversalDependencies/universaldependencies.github.io | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-GB" xml:lang="en-GB" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Statistics of Voice in UD_Russian-SynTagRus</title>
<link rel="root" href=""/> <!-- for JS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="../../css/jquery-ui-redmond.css"/>
<link rel="stylesheet" type="text/css" href="../../css/style.css"/>
<link rel="stylesheet" type="text/css" href="../../css/style-vis.css"/>
<link rel="stylesheet" type="text/css" href="../../css/hint.css"/>
<script type="text/javascript" src="../../lib/ext/head.load.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/anchor-js/3.2.2/anchor.min.js"></script>
<script>document.addEventListener("DOMContentLoaded", function(event) {anchors.add();});</script>
<!-- Set up this custom Google search at https://cse.google.com/cse/business/settings?cx=001145188882102106025:dl1mehhcgbo -->
<!-- DZ 2021-01-22: I am temporarily hiding the search field to find out whether it slows down loading of the title page.
<script>
(function() {
var cx = '001145188882102106025:dl1mehhcgbo';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = 'https://cse.google.com/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
</script> -->
<!-- <link rel="shortcut icon" href="favicon.ico"/> -->
</head>
<body>
<div id="main" class="center">
<div id="hp-header">
<table width="100%"><tr><td width="50%">
<span class="header-text"><a href="http://universaldependencies.org/#language-">home</a></span>
<span class="header-text"><a href="https://github.com/universaldependencies/docs/edit/pages-source/treebanks/ru_syntagrus/ru_syntagrus-feat-Voice.md" target="#">edit page</a></span>
<span class="header-text"><a href="https://github.com/universaldependencies/docs/issues">issue tracker</a></span>
</td><td>
<gcse:search></gcse:search>
</td></tr></table>
</div>
<hr/>
<div class="v2complete">
This page pertains to UD version 2.
</div>
<div id="content">
<noscript>
<div id="noscript">
It appears that you have Javascript disabled.
Please consider enabling Javascript for this page to see the visualizations.
</div>
</noscript>
<!-- The content may include scripts and styles, hence we must load the shared libraries before the content. -->
<script type="text/javascript">
console.time('loading libraries');
var root = '../../'; // filled in by jekyll
head.js(
// External libraries
// DZ: Copied from embedding.html. I don't know which one is needed for what, so I'm currently keeping them all.
root + 'lib/ext/jquery.min.js',
root + 'lib/ext/jquery.svg.min.js',
root + 'lib/ext/jquery.svgdom.min.js',
root + 'lib/ext/jquery.timeago.js',
root + 'lib/ext/jquery-ui.min.js',
root + 'lib/ext/waypoints.min.js',
root + 'lib/ext/jquery.address.min.js'
);
</script>
<h2 id="treebank-statistics-ud_russian-syntagrus-features-voice">Treebank Statistics: UD_Russian-SynTagRus: Features: <code class="language-plaintext highlighter-rouge">Voice</code></h2>
<p>This feature is universal but the values <code class="language-plaintext highlighter-rouge">Mid</code> are language-specific.
It occurs with 3 different values: <code class="language-plaintext highlighter-rouge">Act</code>, <code class="language-plaintext highlighter-rouge">Mid</code>, <code class="language-plaintext highlighter-rouge">Pass</code>.</p>
<p>184098 tokens (12%) have a non-empty value of <code class="language-plaintext highlighter-rouge">Voice</code>.
42832 types (30%) occur at least once with a non-empty value of <code class="language-plaintext highlighter-rouge">Voice</code>.
9374 lemmas (18%) occur at least once with a non-empty value of <code class="language-plaintext highlighter-rouge">Voice</code>.
The feature is used with 2 part-of-speech tags: <tt><a href="ru_syntagrus-pos-VERB.html">VERB</a></tt> (172459; 11% instances), <tt><a href="ru_syntagrus-pos-AUX.html">AUX</a></tt> (11639; 1% instances).</p>
<h3 id="verb"><code class="language-plaintext highlighter-rouge">VERB</code></h3>
<p>172459 <tt><a href="ru_syntagrus-pos-VERB.html">VERB</a></tt> tokens (100% of all <code class="language-plaintext highlighter-rouge">VERB</code> tokens) have a non-empty value of <code class="language-plaintext highlighter-rouge">Voice</code>.</p>
<p>The most frequent other feature values with which <code class="language-plaintext highlighter-rouge">VERB</code> and <code class="language-plaintext highlighter-rouge">Voice</code> co-occurred: <tt><a href="ru_syntagrus-feat-Person.html">Person</a></tt><tt>=EMPTY</tt> (119050; 69%), <tt><a href="ru_syntagrus-feat-Gender.html">Gender</a></tt><tt>=EMPTY</tt> (116727; 68%), <tt><a href="ru_syntagrus-feat-VerbForm.html">VerbForm</a></tt><tt>=Fin</tt> (111331; 65%), <tt><a href="ru_syntagrus-feat-Mood.html">Mood</a></tt><tt>=Ind</tt> (109738; 64%), <tt><a href="ru_syntagrus-feat-Aspect.html">Aspect</a></tt><tt>=Imp</tt> (96564; 56%), <tt><a href="ru_syntagrus-feat-Number.html">Number</a></tt><tt>=Sing</tt> (90413; 52%).</p>
<p><code class="language-plaintext highlighter-rouge">VERB</code> tokens may have the following values of <code class="language-plaintext highlighter-rouge">Voice</code>:</p>
<ul>
<li><code class="language-plaintext highlighter-rouge">Act</code> (119898; 70% of non-empty <code class="language-plaintext highlighter-rouge">Voice</code>): <em>может, есть, было, сказал, могут, нет, быть, говорит, мог, стоит</em></li>
<li><code class="language-plaintext highlighter-rouge">Mid</code> (33219; 19% of non-empty <code class="language-plaintext highlighter-rouge">Voice</code>): <em>является, стал, стало, кажется, удалось, становится, стать, казалось, оказалось, остается</em></li>
<li><code class="language-plaintext highlighter-rouge">Pass</code> (19342; 11% of non-empty <code class="language-plaintext highlighter-rouge">Voice</code>): <em>считается, говорится, связано, используется, написано, связаны, сделано, сказано, принято, связанных</em></li>
<li><code class="language-plaintext highlighter-rouge">EMPTY</code> (430): <em>нет, не, е., и., нечем, некому, некуда, нету, нечего, см.</em></li>
</ul>
<table>
<tr><th>Paradigm <i>обслуживать</i></th><th><tt>Act</tt></th><th><tt>Pass</tt></th><th><tt>Mid</tt></th></tr>
<tr><td><tt><tt><a href="ru_syntagrus-feat-Case.html">Case</a></tt><tt>=Acc</tt>|<tt><a href="ru_syntagrus-feat-Gender.html">Gender</a></tt><tt>=Neut</tt>|<tt><a href="ru_syntagrus-feat-Number.html">Number</a></tt><tt>=Sing</tt>|<tt><a href="ru_syntagrus-feat-Tense.html">Tense</a></tt><tt>=Pres</tt>|<tt><a href="ru_syntagrus-feat-VerbForm.html">VerbForm</a></tt><tt>=Part</tt></tt></td><td><em>обслуживающее</em></td><td></td><td></td></tr>
<tr><td><tt><tt><a href="ru_syntagrus-feat-Case.html">Case</a></tt><tt>=Gen</tt>|<tt><a href="ru_syntagrus-feat-Gender.html">Gender</a></tt><tt>=Masc</tt>|<tt><a href="ru_syntagrus-feat-Number.html">Number</a></tt><tt>=Sing</tt>|<tt><a href="ru_syntagrus-feat-Tense.html">Tense</a></tt><tt>=Pres</tt>|<tt><a href="ru_syntagrus-feat-VerbForm.html">VerbForm</a></tt><tt>=Part</tt></tt></td><td><em>обслуживающего</em></td><td></td><td></td></tr>
<tr><td><tt><tt><a href="ru_syntagrus-feat-Case.html">Case</a></tt><tt>=Gen</tt>|<tt><a href="ru_syntagrus-feat-Number.html">Number</a></tt><tt>=Plur</tt>|<tt><a href="ru_syntagrus-feat-Tense.html">Tense</a></tt><tt>=Past</tt>|<tt><a href="ru_syntagrus-feat-VerbForm.html">VerbForm</a></tt><tt>=Part</tt></tt></td><td><em>обслуживавших</em></td><td></td><td></td></tr>
<tr><td><tt><tt><a href="ru_syntagrus-feat-Case.html">Case</a></tt><tt>=Gen</tt>|<tt><a href="ru_syntagrus-feat-Number.html">Number</a></tt><tt>=Plur</tt>|<tt><a href="ru_syntagrus-feat-Tense.html">Tense</a></tt><tt>=Pres</tt>|<tt><a href="ru_syntagrus-feat-VerbForm.html">VerbForm</a></tt><tt>=Part</tt></tt></td><td><em>обслуживающих</em></td><td><em>обслуживаемых</em></td><td></td></tr>
<tr><td><tt><tt><a href="ru_syntagrus-feat-Case.html">Case</a></tt><tt>=Nom</tt>|<tt><a href="ru_syntagrus-feat-Gender.html">Gender</a></tt><tt>=Masc</tt>|<tt><a href="ru_syntagrus-feat-Number.html">Number</a></tt><tt>=Sing</tt>|<tt><a href="ru_syntagrus-feat-Tense.html">Tense</a></tt><tt>=Pres</tt>|<tt><a href="ru_syntagrus-feat-VerbForm.html">VerbForm</a></tt><tt>=Part</tt></tt></td><td><em>обслуживающий</em></td><td></td><td></td></tr>
<tr><td><tt><tt><a href="ru_syntagrus-feat-Case.html">Case</a></tt><tt>=Nom</tt>|<tt><a href="ru_syntagrus-feat-Gender.html">Gender</a></tt><tt>=Fem</tt>|<tt><a href="ru_syntagrus-feat-Number.html">Number</a></tt><tt>=Sing</tt>|<tt><a href="ru_syntagrus-feat-Tense.html">Tense</a></tt><tt>=Pres</tt>|<tt><a href="ru_syntagrus-feat-VerbForm.html">VerbForm</a></tt><tt>=Part</tt></tt></td><td></td><td><em>обслуживаемая</em></td><td></td></tr>
<tr><td><tt><tt><a href="ru_syntagrus-feat-Case.html">Case</a></tt><tt>=Nom</tt>|<tt><a href="ru_syntagrus-feat-Number.html">Number</a></tt><tt>=Plur</tt>|<tt><a href="ru_syntagrus-feat-Tense.html">Tense</a></tt><tt>=Pres</tt>|<tt><a href="ru_syntagrus-feat-VerbForm.html">VerbForm</a></tt><tt>=Part</tt></tt></td><td><em>обслуживающие</em></td><td></td><td></td></tr>
<tr><td><tt><tt><a href="ru_syntagrus-feat-Gender.html">Gender</a></tt><tt>=Masc</tt>|<tt><a href="ru_syntagrus-feat-Mood.html">Mood</a></tt><tt>=Ind</tt>|<tt><a href="ru_syntagrus-feat-Number.html">Number</a></tt><tt>=Sing</tt>|<tt><a href="ru_syntagrus-feat-Tense.html">Tense</a></tt><tt>=Past</tt>|<tt><a href="ru_syntagrus-feat-VerbForm.html">VerbForm</a></tt><tt>=Fin</tt></tt></td><td><em>обслуживал</em></td><td></td><td></td></tr>
<tr><td><tt><tt><a href="ru_syntagrus-feat-Mood.html">Mood</a></tt><tt>=Ind</tt>|<tt><a href="ru_syntagrus-feat-Number.html">Number</a></tt><tt>=Sing</tt>|<tt><a href="ru_syntagrus-feat-Person.html">Person</a></tt><tt>=3</tt>|<tt><a href="ru_syntagrus-feat-Tense.html">Tense</a></tt><tt>=Pres</tt>|<tt><a href="ru_syntagrus-feat-VerbForm.html">VerbForm</a></tt><tt>=Fin</tt></tt></td><td><em>обслуживает</em></td><td></td><td></td></tr>
<tr><td><tt><tt><a href="ru_syntagrus-feat-Mood.html">Mood</a></tt><tt>=Ind</tt>|<tt><a href="ru_syntagrus-feat-Number.html">Number</a></tt><tt>=Plur</tt>|<tt><a href="ru_syntagrus-feat-Person.html">Person</a></tt><tt>=1</tt>|<tt><a href="ru_syntagrus-feat-Tense.html">Tense</a></tt><tt>=Pres</tt>|<tt><a href="ru_syntagrus-feat-VerbForm.html">VerbForm</a></tt><tt>=Fin</tt></tt></td><td><em>обслуживаем</em></td><td></td><td></td></tr>
<tr><td><tt><tt><a href="ru_syntagrus-feat-Mood.html">Mood</a></tt><tt>=Ind</tt>|<tt><a href="ru_syntagrus-feat-Number.html">Number</a></tt><tt>=Plur</tt>|<tt><a href="ru_syntagrus-feat-Person.html">Person</a></tt><tt>=2</tt>|<tt><a href="ru_syntagrus-feat-Tense.html">Tense</a></tt><tt>=Pres</tt>|<tt><a href="ru_syntagrus-feat-VerbForm.html">VerbForm</a></tt><tt>=Fin</tt></tt></td><td><em>обслуживаете</em></td><td></td><td></td></tr>
<tr><td><tt><tt><a href="ru_syntagrus-feat-Mood.html">Mood</a></tt><tt>=Ind</tt>|<tt><a href="ru_syntagrus-feat-Number.html">Number</a></tt><tt>=Plur</tt>|<tt><a href="ru_syntagrus-feat-Person.html">Person</a></tt><tt>=3</tt>|<tt><a href="ru_syntagrus-feat-Tense.html">Tense</a></tt><tt>=Pres</tt>|<tt><a href="ru_syntagrus-feat-VerbForm.html">VerbForm</a></tt><tt>=Fin</tt></tt></td><td><em>обслуживают</em></td><td></td><td></td></tr>
<tr><td><tt><tt><a href="ru_syntagrus-feat-Mood.html">Mood</a></tt><tt>=Ind</tt>|<tt><a href="ru_syntagrus-feat-Number.html">Number</a></tt><tt>=Plur</tt>|<tt><a href="ru_syntagrus-feat-Tense.html">Tense</a></tt><tt>=Past</tt>|<tt><a href="ru_syntagrus-feat-VerbForm.html">VerbForm</a></tt><tt>=Fin</tt></tt></td><td><em>обслуживали</em></td><td></td><td></td></tr>
<tr><td><tt><tt><a href="ru_syntagrus-feat-Tense.html">Tense</a></tt><tt>=Pres</tt>|<tt><a href="ru_syntagrus-feat-VerbForm.html">VerbForm</a></tt><tt>=Conv</tt></tt></td><td><em>Обслуживая</em></td><td></td><td></td></tr>
<tr><td><tt><tt><a href="ru_syntagrus-feat-VerbForm.html">VerbForm</a></tt><tt>=Inf</tt></tt></td><td><em>обслуживать</em></td><td><em>обслуживаться</em></td><td><em>Обслуживаться</em></td></tr>
</table>
<h3 id="aux"><code class="language-plaintext highlighter-rouge">AUX</code></h3>
<p>11639 <tt><a href="ru_syntagrus-pos-AUX.html">AUX</a></tt> tokens (85% of all <code class="language-plaintext highlighter-rouge">AUX</code> tokens) have a non-empty value of <code class="language-plaintext highlighter-rouge">Voice</code>.</p>
<p>The most frequent other feature values with which <code class="language-plaintext highlighter-rouge">AUX</code> and <code class="language-plaintext highlighter-rouge">Voice</code> co-occurred: <tt><a href="ru_syntagrus-feat-Aspect.html">Aspect</a></tt><tt>=Imp</tt> (11139; 96%), <tt><a href="ru_syntagrus-feat-VerbForm.html">VerbForm</a></tt><tt>=Fin</tt> (10614; 91%), <tt><a href="ru_syntagrus-feat-Mood.html">Mood</a></tt><tt>=Ind</tt> (10577; 91%), <tt><a href="ru_syntagrus-feat-Person.html">Person</a></tt><tt>=EMPTY</tt> (8826; 76%), <tt><a href="ru_syntagrus-feat-Number.html">Number</a></tt><tt>=Sing</tt> (8039; 69%), <tt><a href="ru_syntagrus-feat-Tense.html">Tense</a></tt><tt>=Past</tt> (7809; 67%).</p>
<p><code class="language-plaintext highlighter-rouge">AUX</code> tokens may have the following values of <code class="language-plaintext highlighter-rouge">Voice</code>:</p>
<ul>
<li><code class="language-plaintext highlighter-rouge">Act</code> (11639; 100% of non-empty <code class="language-plaintext highlighter-rouge">Voice</code>): <em>было, был, были, будет, была, быть, будут, есть, будем, буду</em></li>
<li><code class="language-plaintext highlighter-rouge">EMPTY</code> (2070): <em>бы, б</em></li>
</ul>
<h2 id="relations-with-agreement-in-voice">Relations with Agreement in <code class="language-plaintext highlighter-rouge">Voice</code></h2>
<p>The 10 most frequent relations where parent and child node agree in <code class="language-plaintext highlighter-rouge">Voice</code>:
<tt>VERB –[<tt><a href="ru_syntagrus-dep-conj.html">conj</a></tt>]–> VERB</tt> (14735; 65%),
<tt>VERB –[<tt><a href="ru_syntagrus-dep-xcomp.html">xcomp</a></tt>]–> VERB</tt> (8293; 67%),
<tt>VERB –[<tt><a href="ru_syntagrus-dep-advcl.html">advcl</a></tt>]–> VERB</tt> (6315; 60%),
<tt>VERB –[<tt><a href="ru_syntagrus-dep-parataxis.html">parataxis</a></tt>]–> VERB</tt> (3836; 61%),
<tt>VERB –[<tt><a href="ru_syntagrus-dep-ccomp.html">ccomp</a></tt>]–> VERB</tt> (3304; 60%),
<tt>VERB –[<tt><a href="ru_syntagrus-dep-acl.html">acl</a></tt>]–> VERB</tt> (46; 51%),
<tt>VERB –[<tt><a href="ru_syntagrus-dep-appos.html">appos</a></tt>]–> VERB</tt> (25; 78%),
<tt>VERB –[<tt><a href="ru_syntagrus-dep-fixed.html">fixed</a></tt>]–> VERB</tt> (17; 89%),
<tt>VERB –[<tt><a href="ru_syntagrus-dep-flat.html">flat</a></tt>]–> VERB</tt> (14; 100%),
<tt>VERB –[<tt><a href="ru_syntagrus-dep-iobj.html">iobj</a></tt>]–> VERB</tt> (7; 70%).</p>
</div>
<!-- support for embedded visualizations -->
<script type="text/javascript">
var root = '../../'; // filled in by jekyll
head.js(
// We assume that external libraries such as jquery.min.js have already been loaded outside!
// (See _layouts/base.html.)
// brat helper modules
root + 'lib/brat/configuration.js',
root + 'lib/brat/util.js',
root + 'lib/brat/annotation_log.js',
root + 'lib/ext/webfont.js',
// brat modules
root + 'lib/brat/dispatcher.js',
root + 'lib/brat/url_monitor.js',
root + 'lib/brat/visualizer.js',
// embedding configuration
root + 'lib/local/config.js',
// project-specific collection data
root + 'lib/local/collections.js',
// Annodoc
root + 'lib/annodoc/annodoc.js',
// NOTE: non-local libraries
'https://spyysalo.github.io/conllu.js/conllu.js'
);
var webFontURLs = [
// root + 'static/fonts/Astloch-Bold.ttf',
root + 'static/fonts/PT_Sans-Caption-Web-Regular.ttf',
root + 'static/fonts/Liberation_Sans-Regular.ttf'
];
var setupTimeago = function() {
jQuery("time.timeago").timeago();
};
head.ready(function() {
setupTimeago();
// mark current collection (filled in by Jekyll)
Collections.listing['_current'] = '';
// perform all embedding and support functions
Annodoc.activate(Config.bratCollData, Collections.listing);
});
</script>
<!-- google analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55233688-1', 'auto');
ga('send', 'pageview');
</script>
<div id="footer">
<p class="footer-text">© 2014–2021
<a href="http://universaldependencies.org/introduction.html#contributors" style="color:gray">Universal Dependencies contributors</a>.
Site powered by <a href="http://spyysalo.github.io/annodoc" style="color:gray">Annodoc</a> and <a href="http://brat.nlplab.org/" style="color:gray">brat</a></p>.
</div>
</div>
</body>
</html>
|
lib/apache-jena-2.10.1/javadoc-arq/com/hp/hpl/jena/sparql/algebra/op/class-use/OpPropFunc.html | chinhnc/floodlight | <!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_21) on Sat May 11 22:08:47 BST 2013 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Class com.hp.hpl.jena.sparql.algebra.op.OpPropFunc (Apache Jena ARQ)</title>
<meta name="date" content="2013-05-11">
<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.hp.hpl.jena.sparql.algebra.op.OpPropFunc (Apache Jena ARQ)";
}
//-->
</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/hp/hpl/jena/sparql/algebra/op/OpPropFunc.html" title="class in com.hp.hpl.jena.sparql.algebra.op">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/hp/hpl/jena/sparql/algebra/op/class-use/OpPropFunc.html" target="_top">Frames</a></li>
<li><a href="OpPropFunc.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.hp.hpl.jena.sparql.algebra.op.OpPropFunc" class="title">Uses of Class<br>com.hp.hpl.jena.sparql.algebra.op.OpPropFunc</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="../../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpPropFunc.html" title="class in com.hp.hpl.jena.sparql.algebra.op">OpPropFunc</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.hp.hpl.jena.sparql.algebra">com.hp.hpl.jena.sparql.algebra</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#com.hp.hpl.jena.sparql.engine.ref">com.hp.hpl.jena.sparql.engine.ref</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#com.hp.hpl.jena.sparql.sse.writers">com.hp.hpl.jena.sparql.sse.writers</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="com.hp.hpl.jena.sparql.algebra">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpPropFunc.html" title="class in com.hp.hpl.jena.sparql.algebra.op">OpPropFunc</a> in <a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/package-summary.html">com.hp.hpl.jena.sparql.algebra</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/package-summary.html">com.hp.hpl.jena.sparql.algebra</a> with parameters of type <a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpPropFunc.html" title="class in com.hp.hpl.jena.sparql.algebra.op">OpPropFunc</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/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a></code></td>
<td class="colLast"><span class="strong">TransformBase.</span><code><strong><a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/TransformBase.html#transform(com.hp.hpl.jena.sparql.algebra.op.OpPropFunc, com.hp.hpl.jena.sparql.algebra.Op)">transform</a></strong>(<a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpPropFunc.html" title="class in com.hp.hpl.jena.sparql.algebra.op">OpPropFunc</a> opPropFunc,
<a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> subOp)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a></code></td>
<td class="colLast"><span class="strong">TransformWrapper.</span><code><strong><a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/TransformWrapper.html#transform(com.hp.hpl.jena.sparql.algebra.op.OpPropFunc, com.hp.hpl.jena.sparql.algebra.Op)">transform</a></strong>(<a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpPropFunc.html" title="class in com.hp.hpl.jena.sparql.algebra.op">OpPropFunc</a> opPropFunc,
<a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> subOp)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a></code></td>
<td class="colLast"><span class="strong">TransformCopy.</span><code><strong><a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/TransformCopy.html#transform(com.hp.hpl.jena.sparql.algebra.op.OpPropFunc, com.hp.hpl.jena.sparql.algebra.Op)">transform</a></strong>(<a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpPropFunc.html" title="class in com.hp.hpl.jena.sparql.algebra.op">OpPropFunc</a> opPropFunc,
<a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> subOp)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a></code></td>
<td class="colLast"><span class="strong">Transform.</span><code><strong><a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/Transform.html#transform(com.hp.hpl.jena.sparql.algebra.op.OpPropFunc, com.hp.hpl.jena.sparql.algebra.Op)">transform</a></strong>(<a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpPropFunc.html" title="class in com.hp.hpl.jena.sparql.algebra.op">OpPropFunc</a> opPropFunc,
<a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/Op.html" title="interface in com.hp.hpl.jena.sparql.algebra">Op</a> subOp)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">OpVisitor.</span><code><strong><a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/OpVisitor.html#visit(com.hp.hpl.jena.sparql.algebra.op.OpPropFunc)">visit</a></strong>(<a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpPropFunc.html" title="class in com.hp.hpl.jena.sparql.algebra.op">OpPropFunc</a> opPropFunc)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">OpAsQuery.Converter.</span><code><strong><a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/OpAsQuery.Converter.html#visit(com.hp.hpl.jena.sparql.algebra.op.OpPropFunc)">visit</a></strong>(<a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpPropFunc.html" title="class in com.hp.hpl.jena.sparql.algebra.op">OpPropFunc</a> opPropFunc)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">OpVisitorBase.</span><code><strong><a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/OpVisitorBase.html#visit(com.hp.hpl.jena.sparql.algebra.op.OpPropFunc)">visit</a></strong>(<a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpPropFunc.html" title="class in com.hp.hpl.jena.sparql.algebra.op">OpPropFunc</a> opPropFunc)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">OpVisitorByType.</span><code><strong><a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/OpVisitorByType.html#visit(com.hp.hpl.jena.sparql.algebra.op.OpPropFunc)">visit</a></strong>(<a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpPropFunc.html" title="class in com.hp.hpl.jena.sparql.algebra.op">OpPropFunc</a> opPropFunc)</code> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.hp.hpl.jena.sparql.engine.ref">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpPropFunc.html" title="class in com.hp.hpl.jena.sparql.algebra.op">OpPropFunc</a> in <a href="../../../../../../../../com/hp/hpl/jena/sparql/engine/ref/package-summary.html">com.hp.hpl.jena.sparql.engine.ref</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../../com/hp/hpl/jena/sparql/engine/ref/package-summary.html">com.hp.hpl.jena.sparql.engine.ref</a> with parameters of type <a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpPropFunc.html" title="class in com.hp.hpl.jena.sparql.algebra.op">OpPropFunc</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">EvaluatorDispatch.</span><code><strong><a href="../../../../../../../../com/hp/hpl/jena/sparql/engine/ref/EvaluatorDispatch.html#visit(com.hp.hpl.jena.sparql.algebra.op.OpPropFunc)">visit</a></strong>(<a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpPropFunc.html" title="class in com.hp.hpl.jena.sparql.algebra.op">OpPropFunc</a> opPropFunc)</code> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.hp.hpl.jena.sparql.sse.writers">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpPropFunc.html" title="class in com.hp.hpl.jena.sparql.algebra.op">OpPropFunc</a> in <a href="../../../../../../../../com/hp/hpl/jena/sparql/sse/writers/package-summary.html">com.hp.hpl.jena.sparql.sse.writers</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../../com/hp/hpl/jena/sparql/sse/writers/package-summary.html">com.hp.hpl.jena.sparql.sse.writers</a> with parameters of type <a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpPropFunc.html" title="class in com.hp.hpl.jena.sparql.algebra.op">OpPropFunc</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">WriterOp.OpWriterWorker.</span><code><strong><a href="../../../../../../../../com/hp/hpl/jena/sparql/sse/writers/WriterOp.OpWriterWorker.html#visit(com.hp.hpl.jena.sparql.algebra.op.OpPropFunc)">visit</a></strong>(<a href="../../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpPropFunc.html" title="class in com.hp.hpl.jena.sparql.algebra.op">OpPropFunc</a> opPropFunc)</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="../../../../../../../../com/hp/hpl/jena/sparql/algebra/op/OpPropFunc.html" title="class in com.hp.hpl.jena.sparql.algebra.op">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/hp/hpl/jena/sparql/algebra/op/class-use/OpPropFunc.html" target="_top">Frames</a></li>
<li><a href="OpPropFunc.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>Licenced under the Apache License, Version 2.0</small></p>
</body>
</html>
|
swipeable-cards/cards.css | GoogleChromeLabs/ui-element-samples | /**
*
* Copyright 2016 Google Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
html, body {
margin: 0;
padding: 0;
background: #FAFAFA;
font-family: Arial;
font-size: 30px;
color: #333;
}
body {
overflow-x: hidden;
}
* {
box-sizing: border-box;
}
.card-container {
width: 100%;
max-width: 450px;
padding: 16px;
margin: 0 auto;
}
.card {
background: #FFF;
border-radius: 3px;
box-shadow: 0 3px 4px rgba(0,0,0,0.3);
margin: 20px 0;
height: 120px;
display: flex;
align-items: center;
justify-content: space-around;
cursor: pointer;
}
|
iOSDemoSet/iOSDemoSet/Classes/Demo/UISplitViewController/menuDatas/Html/food/311.html | iOSHJH/iOSDemoSet | <html><head><link type="text/css" rel="stylesheet" charset="UTF-8" href="../css/recipe.css"><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head><body><div class="recinfo"><h1 id="page_cm_id" ctype="caipu" uid="15817" val="10778">油焖茄子</h1><div class="bmayi mbm" >
<a class="cboxElement" rel="recipe_img" href="http://cp1.douguo.net/upload/caiku/4/4/2/yuan_4495277115eb9575f9dc2ba7ebe1cc92.jpg"></a><div class="bipic" style="background-image: url(http://cp1.douguo.net/upload/caiku/4/4/2/600_4495277115eb9575f9dc2ba7ebe1cc92.jpg);" title="油焖茄子的做法"></div></a>
<!-- <a href="#1" class="btnsp gsp">查看视频版</a> -->
</div><div class="retew r3 pb25 mb20">
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="retamr">
<tr class="mtim">
<td class="lirre" width="50%" ><span class="fwb">难度:</span>配菜(中级) </td>
<td>
<span class="fwb">时间:</span>30-45分钟 </td>
</tr>
<tr class="mtim">
<td width="50%"><h2 class="zfliao">主料</h2></td>
<td class="relative"></td>
</tr>
<tr><td class="lirre"> <span><label class="fcbm inblok">茄子</a></label></span><span class='right'>400克</span>
</td><td> <span><label class="fcbm inblok">青椒</a></label></span><span class='right'>2个</span>
</td></tr> <tr class="mtim">
<td width="50%"><h2 class="zfliao">辅料</h2></td>
<td> </td>
</tr>
<tr><td class="lirre"> <span><label class="fcbm inblok">大蒜</a></label></span><span class='right'>4瓣</span>
</td><td> <span><label class="fcbm inblok">葱</a></label></span><span class='right'>10克</span>
</td></tr><tr><td class="lirre"> <span><label class="fcbm inblok">姜</a></label></span><span class='right'>10克</span>
</td><td> <span><label class="fcbm inblok">白糖</label></span><span class='right'>2茶匙(10克)</span>
</td></tr><tr><td class="lirre"> <span><label class="fcbm inblok">生抽</label></span><span class='right'>4茶匙(20ml)</span>
</td><td> <span><label class="fcbm inblok">米醋</label></span><span class='right'>1茶匙(5ml)</span>
</td></tr> </table>
<div class="step clearfix">
<h2>油焖茄子的做法步骤</h2>
<div class="stepcont mll libdm pvl clearfix">
<p class="p1"><span class="fwb">1.</span> 准备材料<br /></p>
</div>
<div class="stepcont mll libdm pvl clearfix">
<p class="p1"><span class="fwb">2.</span> 茄子洗净后切成滚刀状,青椒用手撕成小块<br /></p>
</div>
<div class="stepcont mll libdm pvl clearfix">
<p class="p1"><span class="fwb">3.</span> 锅中倒油,倒入茄子煸软<br /></p>
</div>
<div class="stepcont mll libdm pvl clearfix">
<p class="p1"><span class="fwb">4.</span> 葱切末,姜切片,蒜压碎,锅中倒油,倒入葱姜蒜<br /></p>
</div>
<div class="stepcont mll libdm pvl clearfix">
<p class="p1"><span class="fwb">5.</span> 倒入茄块<br /></p>
</div>
<div class="stepcont mll libdm pvl clearfix">
<p class="p1"><span class="fwb">6.</span> 将调料调成汁<br /></p>
</div>
<div class="stepcont mll libdm pvl clearfix">
<p class="p1"><span class="fwb">7.</span> 倒入锅中<br /></p>
</div>
<div class="stepcont mll libdm pvl clearfix">
<p class="p1"><span class="fwb">8.</span> 加入青椒,翻炒均匀后即可起锅</p>
</div>
</div>
</div></div></body></html> |
docs/bindings/cl_sys/cl_gl_ext_h/constant.CL_CONTEXT_PROPERTY_USE_CGL_SHAREGROUP_APPLE.html | liebharc/clFFT | <!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="refresh" content="0;URL=../../cl_sys/constant.CL_CONTEXT_PROPERTY_USE_CGL_SHAREGROUP_APPLE.html">
</head>
<body>
<p>Redirecting to <a href="../../cl_sys/constant.CL_CONTEXT_PROPERTY_USE_CGL_SHAREGROUP_APPLE.html">../../cl_sys/constant.CL_CONTEXT_PROPERTY_USE_CGL_SHAREGROUP_APPLE.html</a>...</p>
<script>location.replace("../../cl_sys/constant.CL_CONTEXT_PROPERTY_USE_CGL_SHAREGROUP_APPLE.html" + location.search + location.hash);</script>
</body>
</html> |
eng_sept2016_v3/sept2016_tables_html/250-ANTI-LYMPHOCYTE-GLOBULINS.html | glilly/osdi | <p><b>TABLE OF INTERACTIONS WITH</b></p>
<p><b>ANTI-LYMPHOCYTE GLOBULINS</b></p>
<p><b>From the French ANSM drug interactions document of September 2016, p. 104</b></p>
<table cellspacing="0" cellpadding="0" border="1">
<tbody>
<tr>
<td valign="top"><p><b>ANTI-LYMPHOCYTE GLOBULINS</b></p>
<p><b>CLASS CODE: L04AA0-001</b></p></td>
<td valign="top"><p><b>IMMUNOSUPPRESSANTS</b></p>
<p><b>CLASS CODE: </b></p>
<p><b>L04A</b></p></td>
<td valign="top"><p>Excessive immunodepression with risk of lymphoproliferative disorders (LPDs)</p></td>
<td valign="top"><p><b>Take into account</b></p></td>
</tr>
<tr>
<td valign="top"><p><b>ANTI-LYMPHOCYTE GLOBULINS</b></p>
<p><b>CLASS CODE: L04AA0-001</b></p></td>
<td valign="top"><p><b>ATTENUATED LIVE VIRUS VACCINES</b></p>
<p><b>CLASS CODE: </b></p>
<p><b>J07B-001</b></p></td>
<td valign="top"><p>Risk of possibly fatal general illness. This risk is increased in older patients already immunodepressed by the underlying disease.</p></td>
<td valign="top"><p><b>Take into account</b></p>
<p>In particular, use an inactivated vaccine when one exists (poliomyelitis)</p></td>
</tr>
</tbody>
</table>
|
doc/classes/Dia/Uml/Klass.src/M000066.html | noda50/RubyItk | <?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>toRubyDef (Dia::Uml::Klass)</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 Dia/DiaUml.rb, line 463</span>
463: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">toRubyDef</span>(<span class="ruby-identifier">expandp</span> = <span class="ruby-keyword kw">false</span>, <span class="ruby-identifier">indent</span> = <span class="ruby-value str">""</span>)
464: <span class="ruby-identifier">tab</span> = <span class="ruby-value str">" "</span> ;
465: <span class="ruby-identifier">ind0</span> = <span class="ruby-value str">"\n"</span> <span class="ruby-operator">+</span> <span class="ruby-identifier">indent</span> ;
466: <span class="ruby-identifier">ind1</span> = <span class="ruby-identifier">ind0</span> <span class="ruby-operator">+</span> <span class="ruby-identifier">tab</span> ;
467: <span class="ruby-identifier">defstr</span> = <span class="ruby-value str">""</span> ;
468: <span class="ruby-comment cmt">## comment (in RDoc style)</span>
469: <span class="ruby-identifier">defstr</span> <span class="ruby-operator"><<</span> <span class="ruby-identifier">ind0</span> <span class="ruby-operator"><<</span> <span class="ruby-value str">'##'</span> ;
470: <span class="ruby-ivar">@comment</span>.<span class="ruby-identifier">split</span>(<span class="ruby-value str">"\n"</span>).<span class="ruby-identifier">each</span>{<span class="ruby-operator">|</span><span class="ruby-identifier">com</span><span class="ruby-operator">|</span>
471: <span class="ruby-identifier">defstr</span> <span class="ruby-operator"><<</span> <span class="ruby-identifier">ind0</span> <span class="ruby-operator"><<</span> <span class="ruby-value str">'#'</span> <span class="ruby-operator"><<</span> <span class="ruby-identifier">com</span> ;
472: }
473: <span class="ruby-comment cmt">## start class definition</span>
474: <span class="ruby-identifier">defstr</span> <span class="ruby-operator"><<</span> <span class="ruby-identifier">ind0</span> <span class="ruby-operator"><<</span> <span class="ruby-node">"class #{@name}"</span> ;
475: <span class="ruby-comment cmt">## inherited classes</span>
476: <span class="ruby-keyword kw">if</span>(<span class="ruby-operator">!</span><span class="ruby-identifier">expandp</span>) <span class="ruby-keyword kw">then</span>
477: <span class="ruby-ivar">@parentClasses</span>.<span class="ruby-identifier">each</span>{<span class="ruby-operator">|</span><span class="ruby-identifier">pclass</span><span class="ruby-operator">|</span>
478: <span class="ruby-identifier">defstr</span> <span class="ruby-operator"><<</span> <span class="ruby-node">" < #{pclass.name}"</span> ;
479: }
480: <span class="ruby-keyword kw">end</span>
481: <span class="ruby-comment cmt">## parent attributes</span>
482: <span class="ruby-identifier">defstr</span> <span class="ruby-operator"><<</span> <span class="ruby-identifier">toRubyDefAttribute</span>(<span class="ruby-identifier">expandp</span>, <span class="ruby-identifier">ind1</span>) ;
483: <span class="ruby-comment cmt">## ending</span>
484: <span class="ruby-identifier">defstr</span> <span class="ruby-operator"><<</span> <span class="ruby-identifier">ind0</span> <span class="ruby-operator"><<</span> <span class="ruby-value str">"end"</span> ;
485: <span class="ruby-identifier">defstr</span> <span class="ruby-operator"><<</span> <span class="ruby-value str">"\n"</span> ;
486: <span class="ruby-identifier">defstr</span> ;
487: <span class="ruby-keyword kw">end</span></pre>
</body>
</html> |
archive/v1.9/docs/setup/install/standalone-operator/index.html | istio/istio.io | <!doctype html><html lang=en><head><title>Redirecting…</title><link rel=canonical href=/v1.9/docs/setup/install/operator/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=/v1.9/docs/setup/install/operator/"></head><body><h1>Redirecting…</h1><a href=/v1.9/docs/setup/install/operator/>Click here if you are not redirected.</a></body></html> |
Documentation/WPILib-doxygen/html/structQRCodeReport__struct-members.html | rubik951/Neat-Team-1943 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>WPILIB: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css">
<link href="doxygen.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.5.8 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
</div>
<div class="contents">
<h1>QRCodeReport_struct Member List</h1>This is the complete list of members for <a class="el" href="structQRCodeReport__struct.html">QRCodeReport_struct</a>, including all inherited members.<p><table>
<tr class="memlist"><td><a class="el" href="structQRCodeReport__struct.html#771f4331b91e11ec2e8523d869969726">appendStreamIdentifier</a></td><td><a class="el" href="structQRCodeReport__struct.html">QRCodeReport_struct</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="structQRCodeReport__struct.html#4744c1356ae8754a755b42fccbcf7c8e">boundingBox</a></td><td><a class="el" href="structQRCodeReport__struct.html">QRCodeReport_struct</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="structQRCodeReport__struct.html#9b4111d1c50ec4f962dcc6e91f79a44e">cellFilterMode</a></td><td><a class="el" href="structQRCodeReport__struct.html">QRCodeReport_struct</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="structQRCodeReport__struct.html#5d4f1639543c9d2eca5d3c4bfddc1ee6">cellSampleSize</a></td><td><a class="el" href="structQRCodeReport__struct.html">QRCodeReport_struct</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="structQRCodeReport__struct.html#12a32970ffb146f6823a39318cff241e">data</a></td><td><a class="el" href="structQRCodeReport__struct.html">QRCodeReport_struct</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="structQRCodeReport__struct.html#96132bed6a41917df7d32dd03a103886">dataLength</a></td><td><a class="el" href="structQRCodeReport__struct.html">QRCodeReport_struct</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="structQRCodeReport__struct.html#de39813e37228ee419f1a9446e01ff43">demodulationMode</a></td><td><a class="el" href="structQRCodeReport__struct.html">QRCodeReport_struct</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="structQRCodeReport__struct.html#7b81de4febc2a87d4ffa49b582b70e00">dimensions</a></td><td><a class="el" href="structQRCodeReport__struct.html">QRCodeReport_struct</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="structQRCodeReport__struct.html#351e5c6da8981fd95356751229427248">firstEAN128ApplicationID</a></td><td><a class="el" href="structQRCodeReport__struct.html">QRCodeReport_struct</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="structQRCodeReport__struct.html#1a8a8321ab9f0b2e5d8720aa4148991f">firstECIDesignator</a></td><td><a class="el" href="structQRCodeReport__struct.html">QRCodeReport_struct</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="structQRCodeReport__struct.html#b9ace5e492dac9b2bf9e55b048d62379">found</a></td><td><a class="el" href="structQRCodeReport__struct.html">QRCodeReport_struct</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="structQRCodeReport__struct.html#f4af9b28f1e3196b7dc73c3bd4b9c060">matrixPolarity</a></td><td><a class="el" href="structQRCodeReport__struct.html">QRCodeReport_struct</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="structQRCodeReport__struct.html#dddbb26d772d60cd938b5eba1766b919">minimumEdgeStrength</a></td><td><a class="el" href="structQRCodeReport__struct.html">QRCodeReport_struct</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="structQRCodeReport__struct.html#42bc3a1e3159466bf292c0e8453a9a04">mirrored</a></td><td><a class="el" href="structQRCodeReport__struct.html">QRCodeReport_struct</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="structQRCodeReport__struct.html#cd2be5986771a73b17d43e80a27f13e0">modelType</a></td><td><a class="el" href="structQRCodeReport__struct.html">QRCodeReport_struct</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="structQRCodeReport__struct.html#9fba01d0581a20584c914cbd0973e0bd">numErrorsCorrected</a></td><td><a class="el" href="structQRCodeReport__struct.html">QRCodeReport_struct</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="structQRCodeReport__struct.html#792e065d0622c1da70cff1d062d83a92">positionInAppendStream</a></td><td><a class="el" href="structQRCodeReport__struct.html">QRCodeReport_struct</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="structQRCodeReport__struct.html#8d9abbf5bc539fec243a01fbc32b8e61">sizeOfAppendStream</a></td><td><a class="el" href="structQRCodeReport__struct.html">QRCodeReport_struct</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="structQRCodeReport__struct.html#b0cfcb9cbe81d0a0a2a4cc693891d8ef">sizeOfTokenizedData</a></td><td><a class="el" href="structQRCodeReport__struct.html">QRCodeReport_struct</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="structQRCodeReport__struct.html#3fb1ccb7de1dbcbefdb47c3a90e0e63c">streamMode</a></td><td><a class="el" href="structQRCodeReport__struct.html">QRCodeReport_struct</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="structQRCodeReport__struct.html#13ef390c35497f32f62226ebd463ced0">tokenizedData</a></td><td><a class="el" href="structQRCodeReport__struct.html">QRCodeReport_struct</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="structQRCodeReport__struct.html#37ccd4f58ca27fef7f39e9f77153e476">version</a></td><td><a class="el" href="structQRCodeReport__struct.html">QRCodeReport_struct</a></td><td></td></tr>
</table></div>
<hr size="1"><address style="text-align: right;"><small>Generated on Wed Feb 9 11:20:53 2011 for WPILIB by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.8 </small></address>
</body>
</html>
|
reading/jQuery/pages/sample/04-alertifyjs.html | Kevin-Huang-NZ/notes | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>alertifyjs</title>
<script src="../../vendor/jquery/dist/jquery.min.js"></script>
<script src="../../libs/alertifyjs/alertify.js"></script>
<link rel="stylesheet" href="../../libs/alertifyjs/css/alertify.css" />
<link rel="stylesheet" href="../../vendor/bootstrap/dist/css/bootstrap.css" />
<link rel="stylesheet" href="../../libs/alertifyjs/css/themes/bootstrap.css" />
<style>
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
border: 0;
font-family: inherit;
font-size: 100%;
font-style: inherit;
font-weight: inherit;
margin: 0;
outline: 0;
padding: 0;
vertical-align: baseline;
}
.container {
width: 860px;
margin: 0 auto;
}
.container ul {
list-style: none;
position: relative;
margin: 10px;
padding: 10px;
}
.container li {
float: left;
border: 1px solid #e1e1e1;
width: 104px;
text-align: center;
height: 52px;
line-height: 52px;
overflow: hidden;
}
.container li a {
display: inline-block;
text-overflow: ellipsis;
text-decoration: none;
overflow: hidden;
border: 1px solid transparent;
color: #806F66;
width: 100%;
}
</style>
<script>
$(document).ready(function() {
$(".container").on({
'click': function(e) {
switch (e.target.id) {
case 'alert':
alert();
break;
case 'confirm':
confirm();
break;
case 'notify':
notify();
break;
case 'prompt':
prompt();
break;
default:
break;
}
}
});
// 修改alertify默认设置
alertify.defaults.theme.ok = "btn btn-primary";
alertify.defaults.theme.cancel = "btn btn-danger";
alertify.defaults.theme.input = "form-control";
alertify.defaults.glossary.title = "52HTN";
alertify.defaults.glossary.ok = "确认";
alertify.defaults.glossary.cancel = "取消";
alertify.defaults.notifier.delay = "2";
alertify.defaults.notifier.position = "top-right";
var options = {
'closable': false, //是否显示关闭按钮
'maximizable': false, //是否显示最大化按钮
'modal': true, // 弹框以外区域是否显示遮罩
'closableByDimmer': false, //点击弹框以外的区域,是否关闭弹框
'movable': true, //是否可以移动
'moveBounded': true, //是否限制不能移出屏幕
'resizable': false, //是否可以改变大小
'startMaximized': false, // 弹出时是否最大化
transition: 'fade' //弹出方式:slide\zoom\flipx\flipy\fade\pulse
};
alertify.alert().setting(options);
alertify.confirm().setting(options);
alertify.prompt().setting(options);
});
function alert() {
// alertify.alert("Alert Titile", "Alert Message", function() {
// console.log("Has alert!");
// }).set('labels', {
// 'ok': '确定'
// });
alertify.alert("Alert Message", function() {
console.log("Has alert!");
});
}
function confirm() {
// alertify.confirm("Confirm Titile", "Confirm Message", function() {
// console.log("Has confirmed!");
// }, function() {
// console.log("Has cancelled!");
// }).set('labels', {
// 'ok': '确定',
// 'cancel': '取消'
// });
alertify.confirm("Confirm Message", function() {
console.log("Has confirmed!");
}, function() {
console.log("Has cancelled!");
});
}
function prompt() {
// alertify.prompt("Prompt Title", "请输入您的姓名?", "default value", function(event, value) {
// console.log("Has prompted!" + value);
// }, function() {
// console.log("Has cancelled!");
// }).set('labels', {
// 'ok': '确定',
// 'cancel': '取消'
// });
alertify.prompt("请输入您的姓名?", "default value", function(event, value) {
console.log("Has prompted!" + value);
}, function() {
console.log("Has cancelled!");
});
}
function notify() {
alertify.notify("Notifier Titile", 'success', 2, function() {
console.log("Has notified!");
});
}
</script>
</head>
<body>
<div class="container">
<ul>
<li><a id="alert" href="#">警告</a></li>
<li><a id="confirm" href="#">确认</a></li>
<li><a id="prompt" href="#">询问</a></li>
<li><a id="notify" href="#">提示</a></li>
</ul>
</div>
</body>
</html> |
show_me_app/static/css/table_cells.css | oleg-chubin/let_me_play | thead th {
writing-mode: vertical-lr;
}
td.declined{
background-color: lightgrey;
}
td.canceled{
background-color: lightpink;
}
td.missed{
background-color: lightsalmon;
}
td.completed{
background-color: lightgreen;
}
|
Instalacion/javadoc/org/apache/cassandra/tools/NodeTool.RemoveNode.html | Jcamilorada/Cassandra | <!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_25) on Fri Jun 05 10:51:20 EDT 2015 -->
<title>NodeTool.RemoveNode (apache-cassandra API)</title>
<meta name="date" content="2015-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="NodeTool.RemoveNode (apache-cassandra API)";
}
}
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="class-use/NodeTool.RemoveNode.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/tools/NodeTool.ReloadTriggers.html" title="class in org.apache.cassandra.tools"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../org/apache/cassandra/tools/NodeTool.RemoveToken.html" title="class in org.apache.cassandra.tools"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/apache/cassandra/tools/NodeTool.RemoveNode.html" target="_top">Frames</a></li>
<li><a href="NodeTool.RemoveNode.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.tools</div>
<h2 title="Class NodeTool.RemoveNode" class="title">Class NodeTool.RemoveNode</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li><a href="../../../../org/apache/cassandra/tools/NodeTool.NodeToolCmd.html" title="class in org.apache.cassandra.tools">org.apache.cassandra.tools.NodeTool.NodeToolCmd</a></li>
<li>
<ul class="inheritance">
<li>org.apache.cassandra.tools.NodeTool.RemoveNode</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>java.lang.Runnable</dd>
</dl>
<dl>
<dt>Enclosing class:</dt>
<dd><a href="../../../../org/apache/cassandra/tools/NodeTool.html" title="class in org.apache.cassandra.tools">NodeTool</a></dd>
</dl>
<hr>
<br>
<pre>@Command(name="removenode",
description="Show status of current node removal, force completion of pending removal or remove provided ID")
public static class <span class="typeNameLabel">NodeTool.RemoveNode</span>
extends <a href="../../../../org/apache/cassandra/tools/NodeTool.NodeToolCmd.html" title="class in org.apache.cassandra.tools">NodeTool.NodeToolCmd</a></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="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="../../../../org/apache/cassandra/tools/NodeTool.RemoveNode.html#RemoveNode--">RemoveNode</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>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/tools/NodeTool.RemoveNode.html#execute-org.apache.cassandra.tools.NodeProbe-">execute</a></span>(<a href="../../../../org/apache/cassandra/tools/NodeProbe.html" title="class in org.apache.cassandra.tools">NodeProbe</a> probe)</code> </td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.org.apache.cassandra.tools.NodeTool.NodeToolCmd">
<!-- -->
</a>
<h3>Methods inherited from class org.apache.cassandra.tools.<a href="../../../../org/apache/cassandra/tools/NodeTool.NodeToolCmd.html" title="class in org.apache.cassandra.tools">NodeTool.NodeToolCmd</a></h3>
<code><a href="../../../../org/apache/cassandra/tools/NodeTool.NodeToolCmd.html#parseOptionalColumnFamilies-java.util.List-">parseOptionalColumnFamilies</a>, <a href="../../../../org/apache/cassandra/tools/NodeTool.NodeToolCmd.html#parseOptionalKeyspace-java.util.List-org.apache.cassandra.tools.NodeProbe-">parseOptionalKeyspace</a>, <a href="../../../../org/apache/cassandra/tools/NodeTool.NodeToolCmd.html#run--">run</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>
</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="RemoveNode--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>RemoveNode</h4>
<pre>public RemoveNode()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="execute-org.apache.cassandra.tools.NodeProbe-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>execute</h4>
<pre>public void execute(<a href="../../../../org/apache/cassandra/tools/NodeProbe.html" title="class in org.apache.cassandra.tools">NodeProbe</a> probe)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../org/apache/cassandra/tools/NodeTool.NodeToolCmd.html#execute-org.apache.cassandra.tools.NodeProbe-">execute</a></code> in class <code><a href="../../../../org/apache/cassandra/tools/NodeTool.NodeToolCmd.html" title="class in org.apache.cassandra.tools">NodeTool.NodeToolCmd</a></code></dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/NodeTool.RemoveNode.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/tools/NodeTool.ReloadTriggers.html" title="class in org.apache.cassandra.tools"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../org/apache/cassandra/tools/NodeTool.RemoveToken.html" title="class in org.apache.cassandra.tools"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/apache/cassandra/tools/NodeTool.RemoveNode.html" target="_top">Frames</a></li>
<li><a href="NodeTool.RemoveNode.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 © 2015 The Apache Software Foundation</small></p>
</body>
</html>
|
_includes/nav.html | mnsmar/mnsmar.github.io | <!-- Navigation -->
<nav class="navbar navbar-default navbar-custom navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="{{ site.baseurl }}/">{{ site.title }}</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="{{ site.baseurl }}/">Home</a>
</li>
{% assign sorted_pages = site.pages | sort:"order" %}
{% for page in sorted_pages %}
<li>
{% if page.title %}<a href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a>{% endif %}
</li>
{% endfor %}
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
|
www/fonts/franklingothic/stylesheet.css | raph-ael/premium-phonegap-app | /* Generated by Font Squirrel (https://www.fontsquirrel.com) on July 26, 2016 */
@font-face {
font-family: 'franklingothicsb-xconregular';
src: url('franklingothicsb-xcon-webfont.woff2') format('woff2'),
url('franklingothicsb-xcon-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
} |
archives/2016/06/index.html | leiyatao/leiyatao.github.io | <!doctype html>
<html class="theme-next mist use-motion" lang="zh-Hans">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<script>
(function(){
if(''){
if (prompt('请输入文章密码','') !== ''){
alert('密码错误!');
history.back();
}
}
})();
</script>
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link href="/lib/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css" />
<link href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic&subset=latin,latin-ext" rel="stylesheet" type="text/css">
<link href="/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css" />
<link href="/css/main.css?v=5.1.1" rel="stylesheet" type="text/css" />
<meta name="keywords" content="Hexo, NexT" />
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico?v=5.1.1" />
<meta name="description" content="只要出发,就能到达">
<meta property="og:type" content="website">
<meta property="og:title" content="雷子の博客">
<meta property="og:url" content="http://leiyatao.com/archives/2016/06/index.html">
<meta property="og:site_name" content="雷子の博客">
<meta property="og:description" content="只要出发,就能到达">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="雷子の博客">
<meta name="twitter:description" content="只要出发,就能到达">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Mist',
sidebar: {"position":"left","display":"post","offset":12,"offset_float":0,"b2t":false,"scrollpercent":false},
fancybox: true,
motion: true,
duoshuo: {
userId: '0',
author: '博主'
},
algolia: {
applicationID: '',
apiKey: '',
indexName: '',
hits: {"per_page":10},
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
}
};
</script>
<link rel="canonical" href="http://leiyatao.com/archives/2016/06/"/>
<title>归档 | 雷子の博客</title>
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="zh-Hans">
<script type="text/javascript">
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?70678c9263ec234b22442f1ee8fd043e";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<div class="container sidebar-position-left page-archive ">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-wrapper">
<div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">雷子の博客</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<h1 class="site-subtitle" itemprop="description">生活学习记录</h1>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section">
<i class="menu-item-icon fa fa-fw fa-home"></i> <br />
首页
</a>
</li>
<li class="menu-item menu-item-categories">
<a href="/categories" rel="section">
<i class="menu-item-icon fa fa-fw fa-th"></i> <br />
分类
</a>
</li>
<li class="menu-item menu-item-about">
<a href="/about" rel="section">
<i class="menu-item-icon fa fa-fw fa-user"></i> <br />
关于
</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive"></i> <br />
归档
</a>
</li>
<li class="menu-item menu-item-tags">
<a href="/tags" rel="section">
<i class="menu-item-icon fa fa-fw fa-tags"></i> <br />
标签
</a>
</li>
<li class="menu-item menu-item-photo">
<a href="/photo" rel="section">
<i class="menu-item-icon fa fa-fw fa-image"></i> <br />
摄影
</a>
</li>
<li class="menu-item menu-item-link">
<a href="/link" rel="section">
<i class="menu-item-icon fa fa-fw fa-link"></i> <br />
链接
</a>
</li>
<li class="menu-item menu-item-search">
<a href="javascript:;" class="popup-trigger">
<i class="menu-item-icon fa fa-search fa-fw"></i> <br />
搜索
</a>
</li>
</ul>
<div class="site-search">
<div class="popup search-popup local-search-popup">
<div class="local-search-header clearfix">
<span class="search-icon">
<i class="fa fa-search"></i>
</span>
<span class="popup-btn-close">
<i class="fa fa-times-circle"></i>
</span>
<div class="local-search-input-wrapper">
<input autocomplete="off"
placeholder="搜索..." spellcheck="false"
type="text" id="local-search-input">
</div>
</div>
<div id="local-search-result"></div>
</div>
</div>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<section id="posts" class="posts-collapse">
<span class="archive-move-on"></span>
<span class="archive-page-counter">
OK! 目前共计 31 篇日志。 继续努力。
</span>
<div class="collection-title">
<h2 class="archive-year motion-element" id="archive-year-2016">2016</h2>
</div>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h3 class="post-title">
<a class="post-title-link" href="/2016/06/25/魅力甘南/" itemprop="url">
<span itemprop="name">魅力甘南</span>
</a>
</h3>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2016-06-25T15:56:11+08:00"
content="2016-06-25" >
06-25
</time>
</div>
</header>
</article>
</section>
</div>
</div>
<div class="sidebar-toggle">
<div class="sidebar-toggle-line-wrap">
<span class="sidebar-toggle-line sidebar-toggle-line-first"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-middle"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-last"></span>
</div>
</div>
<aside id="sidebar" class="sidebar">
<div class="sidebar-inner">
<section class="site-overview sidebar-panel sidebar-panel-active">
<div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person">
<img class="site-author-image" itemprop="image"
src="https://avatars0.githubusercontent.com/u/11041069?s=400&v=4"
alt="雷子" />
<p class="site-author-name" itemprop="name">雷子</p>
<p class="site-description motion-element" itemprop="description"></p>
</div>
<nav class="site-state motion-element">
<div class="site-state-item site-state-posts">
<a href="/archives">
<span class="site-state-item-count">31</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
<div class="site-state-item site-state-categories">
<a href="/categories/index.html">
<span class="site-state-item-count">19</span>
<span class="site-state-item-name">分类</span>
</a>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags/index.html">
<span class="site-state-item-count">60</span>
<span class="site-state-item-name">标签</span>
</a>
</div>
</nav>
<div class="links-of-author motion-element">
</div>
</section>
</div>
</aside>
</div>
</main>
<footer id="footer" class="footer">
<div class="footer-inner">
<div class="copyright" >
©
<span itemprop="copyrightYear">2020</span>
<span class="with-love">
<i class="fa fa-heart"></i>
</span>
<span class="author" itemprop="copyrightHolder">雷子</span>
</div>
<div class="powered-by">
由 <a class="theme-link" href="https://hexo.io">Hexo</a> 强力驱动
</div>
<div class="theme-info">
主题 -
<a class="theme-link" href="https://github.com/iissnan/hexo-theme-next">
NexT.Mist
</a>
</div>
<div class="busuanzi-count">
<script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
<span class="site-uv">
<i class="fa fa-user">访问用户</i>
<span class="busuanzi-value" id="busuanzi_value_site_uv"></span>
人
</span>
<span class="site-pv">
<i class="fa fa-eye">访问次数</i>
<span class="busuanzi-value" id="busuanzi_value_site_pv"></span>
次
</span>
</div>
</div>
</footer>
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
</div>
</div>
<script type="text/javascript">
if (Object.prototype.toString.call(window.Promise) !== '[object Function]') {
window.Promise = null;
}
</script>
<script type="text/javascript" src="/lib/jquery/index.js?v=2.1.3"></script>
<script type="text/javascript" src="/lib/fastclick/lib/fastclick.min.js?v=1.0.6"></script>
<script type="text/javascript" src="/lib/jquery_lazyload/jquery.lazyload.js?v=1.9.7"></script>
<script type="text/javascript" src="/lib/velocity/velocity.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/lib/velocity/velocity.ui.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/lib/fancybox/source/jquery.fancybox.pack.js?v=2.1.5"></script>
<script type="text/javascript" src="/js/src/utils.js?v=5.1.1"></script>
<script type="text/javascript" src="/js/src/motion.js?v=5.1.1"></script>
<script type="text/javascript" id="motion.page.archive">
$('.archive-year').velocity('transition.slideLeftIn');
</script>
<script type="text/javascript" src="/js/src/bootstrap.js?v=5.1.1"></script>
<script>
var cloudTieConfig = {
url: document.location.href,
sourceId: "",
productKey: "9fdc8dc1df6e466ca037035b0dc127d6",
target: "cloud-tie-wrapper"
};
</script>
<script src="https://img1.ws.126.net/f2e/tie/yun/sdk/loader.js"></script>
<script type="text/javascript">
// Popup Window;
var isfetched = false;
var isXml = true;
// Search DB path;
var search_path = "search.xml";
if (search_path.length === 0) {
search_path = "search.xml";
} else if (search_path.endsWith("json")) {
isXml = false;
}
var path = "/" + search_path;
// monitor main search box;
var onPopupClose = function (e) {
$('.popup').hide();
$('#local-search-input').val('');
$('.search-result-list').remove();
$('#no-result').remove();
$(".local-search-pop-overlay").remove();
$('body').css('overflow', '');
}
function proceedsearch() {
$("body")
.append('<div class="search-popup-overlay local-search-pop-overlay"></div>')
.css('overflow', 'hidden');
$('.search-popup-overlay').click(onPopupClose);
$('.popup').toggle();
var $localSearchInput = $('#local-search-input');
$localSearchInput.attr("autocapitalize", "none");
$localSearchInput.attr("autocorrect", "off");
$localSearchInput.focus();
}
// search function;
var searchFunc = function(path, search_id, content_id) {
'use strict';
// start loading animation
$("body")
.append('<div class="search-popup-overlay local-search-pop-overlay">' +
'<div id="search-loading-icon">' +
'<i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i>' +
'</div>' +
'</div>')
.css('overflow', 'hidden');
$("#search-loading-icon").css('margin', '20% auto 0 auto').css('text-align', 'center');
$.ajax({
url: path,
dataType: isXml ? "xml" : "json",
async: true,
success: function(res) {
// get the contents from search data
isfetched = true;
$('.popup').detach().appendTo('.header-inner');
var datas = isXml ? $("entry", res).map(function() {
return {
title: $("title", this).text(),
content: $("content",this).text(),
url: $("url" , this).text()
};
}).get() : res;
var input = document.getElementById(search_id);
var resultContent = document.getElementById(content_id);
var inputEventFunction = function() {
var searchText = input.value.trim().toLowerCase();
var keywords = searchText.split(/[\s\-]+/);
if (keywords.length > 1) {
keywords.push(searchText);
}
var resultItems = [];
if (searchText.length > 0) {
// perform local searching
datas.forEach(function(data) {
var isMatch = false;
var hitCount = 0;
var searchTextCount = 0;
var title = data.title.trim();
var titleInLowerCase = title.toLowerCase();
var content = data.content.trim().replace(/<[^>]+>/g,"");
var contentInLowerCase = content.toLowerCase();
var articleUrl = decodeURIComponent(data.url);
var indexOfTitle = [];
var indexOfContent = [];
// only match articles with not empty titles
if(title != '') {
keywords.forEach(function(keyword) {
function getIndexByWord(word, text, caseSensitive) {
var wordLen = word.length;
if (wordLen === 0) {
return [];
}
var startPosition = 0, position = [], index = [];
if (!caseSensitive) {
text = text.toLowerCase();
word = word.toLowerCase();
}
while ((position = text.indexOf(word, startPosition)) > -1) {
index.push({position: position, word: word});
startPosition = position + wordLen;
}
return index;
}
indexOfTitle = indexOfTitle.concat(getIndexByWord(keyword, titleInLowerCase, false));
indexOfContent = indexOfContent.concat(getIndexByWord(keyword, contentInLowerCase, false));
});
if (indexOfTitle.length > 0 || indexOfContent.length > 0) {
isMatch = true;
hitCount = indexOfTitle.length + indexOfContent.length;
}
}
// show search results
if (isMatch) {
// sort index by position of keyword
[indexOfTitle, indexOfContent].forEach(function (index) {
index.sort(function (itemLeft, itemRight) {
if (itemRight.position !== itemLeft.position) {
return itemRight.position - itemLeft.position;
} else {
return itemLeft.word.length - itemRight.word.length;
}
});
});
// merge hits into slices
function mergeIntoSlice(text, start, end, index) {
var item = index[index.length - 1];
var position = item.position;
var word = item.word;
var hits = [];
var searchTextCountInSlice = 0;
while (position + word.length <= end && index.length != 0) {
if (word === searchText) {
searchTextCountInSlice++;
}
hits.push({position: position, length: word.length});
var wordEnd = position + word.length;
// move to next position of hit
index.pop();
while (index.length != 0) {
item = index[index.length - 1];
position = item.position;
word = item.word;
if (wordEnd > position) {
index.pop();
} else {
break;
}
}
}
searchTextCount += searchTextCountInSlice;
return {
hits: hits,
start: start,
end: end,
searchTextCount: searchTextCountInSlice
};
}
var slicesOfTitle = [];
if (indexOfTitle.length != 0) {
slicesOfTitle.push(mergeIntoSlice(title, 0, title.length, indexOfTitle));
}
var slicesOfContent = [];
while (indexOfContent.length != 0) {
var item = indexOfContent[indexOfContent.length - 1];
var position = item.position;
var word = item.word;
// cut out 100 characters
var start = position - 20;
var end = position + 80;
if(start < 0){
start = 0;
}
if (end < position + word.length) {
end = position + word.length;
}
if(end > content.length){
end = content.length;
}
slicesOfContent.push(mergeIntoSlice(content, start, end, indexOfContent));
}
// sort slices in content by search text's count and hits' count
slicesOfContent.sort(function (sliceLeft, sliceRight) {
if (sliceLeft.searchTextCount !== sliceRight.searchTextCount) {
return sliceRight.searchTextCount - sliceLeft.searchTextCount;
} else if (sliceLeft.hits.length !== sliceRight.hits.length) {
return sliceRight.hits.length - sliceLeft.hits.length;
} else {
return sliceLeft.start - sliceRight.start;
}
});
// select top N slices in content
var upperBound = parseInt('1');
if (upperBound >= 0) {
slicesOfContent = slicesOfContent.slice(0, upperBound);
}
// highlight title and content
function highlightKeyword(text, slice) {
var result = '';
var prevEnd = slice.start;
slice.hits.forEach(function (hit) {
result += text.substring(prevEnd, hit.position);
var end = hit.position + hit.length;
result += '<b class="search-keyword">' + text.substring(hit.position, end) + '</b>';
prevEnd = end;
});
result += text.substring(prevEnd, slice.end);
return result;
}
var resultItem = '';
if (slicesOfTitle.length != 0) {
resultItem += "<li><a href='" + articleUrl + "' class='search-result-title'>" + highlightKeyword(title, slicesOfTitle[0]) + "</a>";
} else {
resultItem += "<li><a href='" + articleUrl + "' class='search-result-title'>" + title + "</a>";
}
slicesOfContent.forEach(function (slice) {
resultItem += "<a href='" + articleUrl + "'>" +
"<p class=\"search-result\">" + highlightKeyword(content, slice) +
"...</p>" + "</a>";
});
resultItem += "</li>";
resultItems.push({
item: resultItem,
searchTextCount: searchTextCount,
hitCount: hitCount,
id: resultItems.length
});
}
})
};
if (keywords.length === 1 && keywords[0] === "") {
resultContent.innerHTML = '<div id="no-result"><i class="fa fa-search fa-5x" /></div>'
} else if (resultItems.length === 0) {
resultContent.innerHTML = '<div id="no-result"><i class="fa fa-frown-o fa-5x" /></div>'
} else {
resultItems.sort(function (resultLeft, resultRight) {
if (resultLeft.searchTextCount !== resultRight.searchTextCount) {
return resultRight.searchTextCount - resultLeft.searchTextCount;
} else if (resultLeft.hitCount !== resultRight.hitCount) {
return resultRight.hitCount - resultLeft.hitCount;
} else {
return resultRight.id - resultLeft.id;
}
});
var searchResultList = '<ul class=\"search-result-list\">';
resultItems.forEach(function (result) {
searchResultList += result.item;
})
searchResultList += "</ul>";
resultContent.innerHTML = searchResultList;
}
}
if ('auto' === 'auto') {
input.addEventListener('input', inputEventFunction);
} else {
$('.search-icon').click(inputEventFunction);
input.addEventListener('keypress', function (event) {
if (event.keyCode === 13) {
inputEventFunction();
}
});
}
// remove loading animation
$(".local-search-pop-overlay").remove();
$('body').css('overflow', '');
proceedsearch();
}
});
}
// handle and trigger popup window;
$('.popup-trigger').click(function(e) {
e.stopPropagation();
if (isfetched === false) {
searchFunc(path, 'local-search-input', 'local-search-result');
} else {
proceedsearch();
};
});
$('.popup-btn-close').click(onPopupClose);
$('.popup').click(function(e){
e.stopPropagation();
});
$(document).on('keyup', function (event) {
var shouldDismissSearchPopup = event.which === 27 &&
$('.search-popup').is(':visible');
if (shouldDismissSearchPopup) {
onPopupClose();
}
});
</script>
<script src="https://cdn1.lncld.net/static/js/av-core-mini-0.6.1.js"></script>
<script>AV.initialize("AEaxJRT00Uav8G8hVT3pbgu5-gzGzoHsz", "Ao5bP7Xcixyp74cXLjuTjqra");</script>
<script>
function showTime(Counter) {
var query = new AV.Query(Counter);
var entries = [];
var $visitors = $(".leancloud_visitors");
$visitors.each(function () {
entries.push( $(this).attr("id").trim() );
});
query.containedIn('url', entries);
query.find()
.done(function (results) {
var COUNT_CONTAINER_REF = '.leancloud-visitors-count';
if (results.length === 0) {
$visitors.find(COUNT_CONTAINER_REF).text(0);
return;
}
for (var i = 0; i < results.length; i++) {
var item = results[i];
var url = item.get('url');
var time = item.get('time');
var element = document.getElementById(url);
$(element).find(COUNT_CONTAINER_REF).text(time);
}
for(var i = 0; i < entries.length; i++) {
var url = entries[i];
var element = document.getElementById(url);
var countSpan = $(element).find(COUNT_CONTAINER_REF);
if( countSpan.text() == '') {
countSpan.text(0);
}
}
})
.fail(function (object, error) {
console.log("Error: " + error.code + " " + error.message);
});
}
function addCount(Counter) {
var $visitors = $(".leancloud_visitors");
var url = $visitors.attr('id').trim();
var title = $visitors.attr('data-flag-title').trim();
var query = new AV.Query(Counter);
query.equalTo("url", url);
query.find({
success: function(results) {
if (results.length > 0) {
var counter = results[0];
counter.fetchWhenSave(true);
counter.increment("time");
counter.save(null, {
success: function(counter) {
var $element = $(document.getElementById(url));
$element.find('.leancloud-visitors-count').text(counter.get('time'));
},
error: function(counter, error) {
console.log('Failed to save Visitor num, with error message: ' + error.message);
}
});
} else {
var newcounter = new Counter();
/* Set ACL */
var acl = new AV.ACL();
acl.setPublicReadAccess(true);
acl.setPublicWriteAccess(true);
newcounter.setACL(acl);
/* End Set ACL */
newcounter.set("title", title);
newcounter.set("url", url);
newcounter.set("time", 1);
newcounter.save(null, {
success: function(newcounter) {
var $element = $(document.getElementById(url));
$element.find('.leancloud-visitors-count').text(newcounter.get('time'));
},
error: function(newcounter, error) {
console.log('Failed to create');
}
});
}
},
error: function(error) {
console.log('Error:' + error.code + " " + error.message);
}
});
}
$(function() {
var Counter = AV.Object.extend("Counter");
if ($('.leancloud_visitors').length == 1) {
addCount(Counter);
} else if ($('.post-title-link').length > 1) {
showTime(Counter);
}
});
</script>
<script>
(function(){
var bp = document.createElement('script');
var curProtocol = window.location.protocol.split(':')[0];
if (curProtocol === 'https') {
bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
}
else {
bp.src = 'http://push.zhanzhang.baidu.com/push.js';
}
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(bp, s);
})();
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
processEscapes: true,
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code']
}
});
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Queue(function() {
var all = MathJax.Hub.getAllJax(), i;
for (i=0; i < all.length; i += 1) {
all[i].SourceElement().parentNode.className += ' has-jax';
}
});
</script>
<script type="text/javascript" src="//cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
</body>
</html>
|
hadoop-hdfs-project/hadoop-hdfs/target/org/apache/hadoop/hdfs/tools/snapshot/package-use.html | jsrudani/HadoopHDFSProject | <!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 Fri Mar 06 22:13:06 CST 2015 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
Uses of Package org.apache.hadoop.hdfs.tools.snapshot (Apache Hadoop HDFS 2.3.0 API)
</TITLE>
<META NAME="date" CONTENT="2015-03-06">
<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.hdfs.tools.snapshot (Apache Hadoop HDFS 2.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"> <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/hdfs/tools/snapshot/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.hdfs.tools.snapshot</B></H2>
</CENTER>
No usage of org.apache.hadoop.hdfs.tools.snapshot
<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/hdfs/tools/snapshot/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 © 2015 <a href="http://www.apache.org">Apache Software Foundation</a>. All Rights Reserved.
</BODY>
</HTML>
|
docs/theme/extra/templates/navbar_links.html | becm/meson | @require(page)
<li class="dropdown">
<a class="dropdown-toggle" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Modules <span class="caret"></span>
</a>
<ul class="dropdown-menu" id="modules-menu">
@for tup in ( \
("CMake-module.html","CMake"), \
("Cuda-module.html","CUDA"), \
("Dlang-module.html","Dlang"), \
("Fs-module.html","Filesystem"), \
("Gnome-module.html","GNOME"), \
("Hotdoc-module.html","Hotdoc"), \
("i18n-module.html","i18n"), \
("Icestorm-module.html","Icestorm"), \
("Keyval-module.html","Keyval"), \
("Pkgconfig-module.html","Pkgconfig"), \
("Python-module.html","Python"), \
("Python-3-module.html","Python 3"), \
("Qt4-module.html","Qt4"), \
("Qt5-module.html","Qt5"), \
("RPM-module.html","RPM"), \
("SourceSet-module.html","SourceSet"), \
("Windows-module.html","Windows")):
<li>
<a href="@tup[0]">@tup[1]</a>
</li>
@end
</ul>
</li>
\
<li class="dropdown">
<a class="dropdown-toggle" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Quick References <span class="caret"></span>
</a>
<ul class="dropdown-menu" id="quick-refs-menu">
@for tup in (("Reference-manual.html", "Functions"), \
("Build-options.html", "Options"), \
("Configuration.html", "Configuration"), \
("Dependencies.html", "Dependencies"), \
("Unit-tests.html", "Tests"), \
("Syntax.html", "Syntax")):
<li>
<a href="@tup[0]">@tup[1]</a>
</li>
@end
</ul>
</li>
|
App/Tpl/Public/header.html | AppOil/crm | <!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 charset="utf-8">
<title>{:C('defaultinfo.name')} - Powered By {:L('AUTHOR')}</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="description" content=""/>
<meta name="author" content="{:L('AUTHOR')}"/>
<link type="text/css" href="__PUBLIC__/css/bootstrap.min.css?t=20140830" rel="stylesheet" />
<link type="text/css" href="__PUBLIC__/css/bootstrap-responsive.min.css?t=20140830" rel="stylesheet">
<link type="text/css" href="__PUBLIC__/css/jquery-ui-1.10.0.custom.css?t=20140830" rel="stylesheet" />
<link type="text/css" href="__PUBLIC__/css/font-awesome.min.css?t=20140830" rel="stylesheet" />
<link class="docs" href="__PUBLIC__/css/docs.css?t=20140830" rel="stylesheet"/>
<link rel="shortcut icon" href="__PUBLIC__/ico/favicon.png"/>
<script type="text/javascript">
var browserInfo = {browser:"", version: ""};
var ua = navigator.userAgent.toLowerCase();
if (window.ActiveXObject) {
browserInfo.browser = "IE";
browserInfo.version = ua.match(/msie ([\d.]+)/)[1];
if(browserInfo.version <= 7){
if(confirm("您的ie浏览器版本过低,建议使用chorme浏览器")){}
}
}
</script>
<!--[if lt IE 9]>
<script src="__PUBLIC__/js/respond.min.js" type="text/javascript"></script>
<![endif]-->
<script src="__PUBLIC__/js/jquery-1.9.0.min.js?t=20140830" type="text/javascript"></script>
<script src="__PUBLIC__/js/bootstrap.min.js?t=20140830" type="text/javascript"></script>
<script src="__PUBLIC__/js/jquery-ui-1.10.0.custom.min.js?t=20140830" type="text/javascript"></script>
<script src="__PUBLIC__/js/WdatePicker.js?t=20140830" type="text/javascript"></script>
<script src="__PUBLIC__/js/gototop.js?t=20140830" type="text/javascript"></script>
<script src="__PUBLIC__/js/appoil_zh-cn.js?t=20140830" type="text/javascript"></script>
<script src="__PUBLIC__/js/appoil.js?t=20140830" type="text/javascript"></script>
<!--[if lte IE 6]>
<link rel="stylesheet" type="text/css" href="__PUBLIC__/css/bootstrap-ie6.css">
<![endif]-->
<!--[if lte IE 7]>
<link rel="stylesheet" type="text/css" href="__PUBLIC__/css/ie.css">
<![endif]-->
<!--[if IE 7]>
<link rel="stylesheet" type="text/css" href="__PUBLIC__/css/font-awesome-ie7.min.css" />
<![endif]-->
<!--[if lt IE 9]>
<link type="text/css" href="__PUBLIC__/css/jquery.ui.1.10.0.ie.css" rel="stylesheet"/>
<script src="__PUBLIC__/js/ie8-eventlistener.js" type="text/javascript"></script>
<![endif]-->
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
</head>
<body data-spy="scroll" data-target=".bs-docs-sidebar" data-twttr-rendered="true">
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div style="line-height: 40px;padding-right: 5px;padding-top: 6px;" class="pull-left"><img src="__PUBLIC__/img/logomini.png"/></div>
<a class="brand" href="{$Think.__APP__}" alt="{:C('defaultinfo.description')}">{:C('defaultinfo.name')}</a>
{:W("Navigation")}
</div>
</div>
</div> |
rebbit/_variables/current.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 : Variable Reference: $current</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 19:15:14 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='_variables';
filename='index.html';
cookiekey='phpxref';
handleNavFrame(relbase, subdir, filename);
logVariable('current');
// -->
</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>Variable Cross Reference</h3>
<h2><a href="index.html#current">$current</a></h2>
<b>Defined at:</b><ul>
<li><a href="../bonfire/codeigniter/libraries/Upload.php.html">/bonfire/codeigniter/libraries/Upload.php</A> -> <a href="../bonfire/codeigniter/libraries/Upload.php.source.html#l835"> line 835</A></li>
<li><a href="../bonfire/libraries/CSSMin.php.html">/bonfire/libraries/CSSMin.php</A> -> <a href="../bonfire/libraries/CSSMin.php.source.html#l1241"> line 1241</A></li>
<li><a href="../bonfire/libraries/CSSMin.php.html">/bonfire/libraries/CSSMin.php</A> -> <a href="../bonfire/libraries/CSSMin.php.source.html#l1278"> line 1278</A></li>
<li><a href="../bonfire/libraries/CSSMin.php.html">/bonfire/libraries/CSSMin.php</A> -> <a href="../bonfire/libraries/CSSMin.php.source.html#l1318"> line 1318</A></li>
</ul>
<br><b>Referenced 16 times:</b><ul>
<li><a href="../bonfire/codeigniter/libraries/Upload.php.html">/bonfire/codeigniter/libraries/Upload.php</a> -> <a href="../bonfire/codeigniter/libraries/Upload.php.source.html#l835"> line 835</a></li>
<li><a href="../bonfire/codeigniter/libraries/Upload.php.html">/bonfire/codeigniter/libraries/Upload.php</a> -> <a href="../bonfire/codeigniter/libraries/Upload.php.source.html#l841"> line 841</a></li>
<li><a href="../bonfire/modules/ui/views/settings/index.php.html">/bonfire/modules/ui/views/settings/index.php</a> -> <a href="../bonfire/modules/ui/views/settings/index.php.source.html#l27"> line 27</a></li>
<li><a href="../bonfire/modules/ui/views/settings/index.php.html">/bonfire/modules/ui/views/settings/index.php</a> -> <a href="../bonfire/modules/ui/views/settings/index.php.source.html#l44"> line 44</a></li>
<li><a href="../bonfire/libraries/CSSMin.php.html">/bonfire/libraries/CSSMin.php</a> -> <a href="../bonfire/libraries/CSSMin.php.source.html#l1241"> line 1241</a></li>
<li><a href="../bonfire/libraries/CSSMin.php.html">/bonfire/libraries/CSSMin.php</a> -> <a href="../bonfire/libraries/CSSMin.php.source.html#l1243"> line 1243</a></li>
<li><a href="../bonfire/libraries/CSSMin.php.html">/bonfire/libraries/CSSMin.php</a> -> <a href="../bonfire/libraries/CSSMin.php.source.html#l1244"> line 1244</a></li>
<li><a href="../bonfire/libraries/CSSMin.php.html">/bonfire/libraries/CSSMin.php</a> -> <a href="../bonfire/libraries/CSSMin.php.source.html#l1245"> line 1245</a></li>
<li><a href="../bonfire/libraries/CSSMin.php.html">/bonfire/libraries/CSSMin.php</a> -> <a href="../bonfire/libraries/CSSMin.php.source.html#l1278"> line 1278</a></li>
<li><a href="../bonfire/libraries/CSSMin.php.html">/bonfire/libraries/CSSMin.php</a> -> <a href="../bonfire/libraries/CSSMin.php.source.html#l1280"> line 1280</a></li>
<li><a href="../bonfire/libraries/CSSMin.php.html">/bonfire/libraries/CSSMin.php</a> -> <a href="../bonfire/libraries/CSSMin.php.source.html#l1281"> line 1281</a></li>
<li><a href="../bonfire/libraries/CSSMin.php.html">/bonfire/libraries/CSSMin.php</a> -> <a href="../bonfire/libraries/CSSMin.php.source.html#l1318"> line 1318</a></li>
<li><a href="../bonfire/libraries/CSSMin.php.html">/bonfire/libraries/CSSMin.php</a> -> <a href="../bonfire/libraries/CSSMin.php.source.html#l1320"> line 1320</a></li>
<li><a href="../bonfire/libraries/CSSMin.php.html">/bonfire/libraries/CSSMin.php</a> -> <a href="../bonfire/libraries/CSSMin.php.source.html#l1321"> line 1321</a></li>
<li><a href="../bonfire/libraries/CSSMin.php.html">/bonfire/libraries/CSSMin.php</a> -> <a href="../bonfire/libraries/CSSMin.php.source.html#l1322"> line 1322</a></li>
<li><a href="../bonfire/libraries/CSSMin.php.html">/bonfire/libraries/CSSMin.php</a> -> <a href="../bonfire/libraries/CSSMin.php.source.html#l1323"> line 1323</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 19:15:14 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>
|
2.4.0.Final/apidocs/org/wildfly/swarm/config/management/access/constraint/sensitivity_classification/type/ClassificationSupplier.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 Sun Mar 17 11:03:33 MST 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ClassificationSupplier (BOM: * : All 2.4.0.Final API)</title>
<meta name="date" content="2019-03-17">
<link rel="stylesheet" type="text/css" href="../../../../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ClassificationSupplier (BOM: * : All 2.4.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/ClassificationSupplier.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.4.0.Final</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../../../../org/wildfly/swarm/config/management/access/constraint/sensitivity_classification/type/ClassificationConsumer.html" title="interface in org.wildfly.swarm.config.management.access.constraint.sensitivity_classification.type"><span class="typeNameLink">Prev Class</span></a></li>
<li>Next Class</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../../../index.html?org/wildfly/swarm/config/management/access/constraint/sensitivity_classification/type/ClassificationSupplier.html" target="_top">Frames</a></li>
<li><a href="ClassificationSupplier.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.management.access.constraint.sensitivity_classification.type</div>
<h2 title="Interface ClassificationSupplier" class="title">Interface ClassificationSupplier<T extends <a href="../../../../../../../../../org/wildfly/swarm/config/management/access/constraint/sensitivity_classification/type/Classification.html" title="class in org.wildfly.swarm.config.management.access.constraint.sensitivity_classification.type">Classification</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">ClassificationSupplier<T extends <a href="../../../../../../../../../org/wildfly/swarm/config/management/access/constraint/sensitivity_classification/type/Classification.html" title="class in org.wildfly.swarm.config.management.access.constraint.sensitivity_classification.type">Classification</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/management/access/constraint/sensitivity_classification/type/Classification.html" title="class in org.wildfly.swarm.config.management.access.constraint.sensitivity_classification.type">Classification</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../../../org/wildfly/swarm/config/management/access/constraint/sensitivity_classification/type/ClassificationSupplier.html#get--">get</a></span>()</code>
<div class="block">Constructed instance of Classification 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/management/access/constraint/sensitivity_classification/type/Classification.html" title="class in org.wildfly.swarm.config.management.access.constraint.sensitivity_classification.type">Classification</a> get()</pre>
<div class="block">Constructed instance of Classification 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/ClassificationSupplier.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.4.0.Final</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../../../../org/wildfly/swarm/config/management/access/constraint/sensitivity_classification/type/ClassificationConsumer.html" title="interface in org.wildfly.swarm.config.management.access.constraint.sensitivity_classification.type"><span class="typeNameLink">Prev Class</span></a></li>
<li>Next Class</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../../../index.html?org/wildfly/swarm/config/management/access/constraint/sensitivity_classification/type/ClassificationSupplier.html" target="_top">Frames</a></li>
<li><a href="ClassificationSupplier.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 © 2019 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
|
_site/index.html | LukeAlmeida4/almeida-renovations-site | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Almeida Painting & Renovations</title>
<meta name="viewport" content="width=device-width">
<meta name="description" content="">
<meta name="keywords" content="" />
<meta name="author" content="Luke Almeida">
<link rel="canonical" href="http://localhost:4000/">
<link rel="alternate" type="application/rss+xml" title="RSS" href="/feed.xml">
<!-- Custom CSS & Bootstrap Core CSS -->
<link rel="stylesheet" href="/style.css">
<!-- Google verification -->
<!-- Custom Fonts -->
<link rel="stylesheet" href="/css/font-awesome/css/font-awesome.min.css">
<link href="//fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href="//fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body id="page-top" class="index">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-fixed-top navbar-shrink">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="header-icons">
<i class="fa fa-envelope-open" aria-hidden="true"><span class="icon-align">contact@almeidarenovations.ca</span></i><br>
<i class="fa fa-phone" aria-hidden="true"><span class="icon-align">1(519)277-3207</span></i>
</div>
<!-- <a class="navbar-brand" href="#page-top">Almeida Painting & Renovations</a> -->
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="hidden">
<a href="#page-top"></a>
</li>
<li class="page-scroll">
<a href="#about">About</a>
</li>
<li class="page-scroll">
<a href="#portfolio">Services</a>
</li>
<li class="page-scroll">
<a href="#contact">Contact</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Header -->
<header>
<div class="container">
<div class="row">
<div class="col-lg-12">
<img class="img-responsive" src="" alt="">
<div class="intro-text background-opacity">
<br>
<br>
<span class="name">Almeida Painting & Renovations</span>
<br>
<br>
<span class="skills">Painting - Renovations - Transformations <br><br></span>
</div>
</div>
</div>
</div>
</header>
<!-- About Section -->
<section class="success" id="about">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>About</h2>
<hr class="divider">
</div>
</div>
<div class="row">
<div class="col-lg-12 text-center">
<p>Located in Cambridge Ontario, we have been serving the surrounding areas including Cambridge for over 20 years. We specialize in full scale home renovations and best known for our quality, reliablility and affordable work. Before we start any job, we will consult with you to ensure the work meets your needs. Request a free consultation today!</p>
</div>
<div class="col-md-12">
<hr class="divider">
</div>
<div class="col-md-12">
<div class="carousel slide" data-ride="carousel" id="quote-carousel">
<!-- Bottom Carousel Indicators -->
<ol class="carousel-indicators">
<li data-target="#quote-carousel" data-slide-to="0" class="active"></li>
<li data-target="#quote-carousel" data-slide-to="1"></li>
<li data-target="#quote-carousel" data-slide-to="2"></li>
</ol>
<!-- Carousel Slides / Quotes -->
<div class="carousel-inner">
<!-- Quote 1 -->
<div class="item active">
<div class="row">
<div class="col-sm-12">
<p>“The Almeida Painting and Renovations team was very professional, reliable and understanding. They clearly explained the work that needed to be done. Thanks Paul!”</p>
<small><strong>Laura D</strong></small>
</div>
</div>
</div>
<!-- Quote 2 -->
<div class="item">
<div class="row">
<div class="col-sm-12">
<p>“Fast, friendly, while maintaining quality. We have never been so happy with our renovations.”</p>
<small><strong>Mark C</strong></small>
</div>
</div>
</div>
<!-- Quote 3 -->
<div class="item">
<div class="row">
<div class="col-sm-12">
<p>“After having issues with a previous contactor, it was a breathe of fresh air to work with the Almeida Renovations team. They really understood our needs. We have recommended them to other friends and family and they have had only great experiences too!”</p>
<small><strong>Andrew D</strong></small>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Portfolio Grid Section -->
<section id="portfolio">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Services</h2>
<hr class="divider">
</div>
</div>
<div class="row">
<div class="col-xs-6 col-lg-4 portfolio-item">
<a href="#portfolioModal-1" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/paintbrush.png" id="service-icon--style" class="img-responsive" alt="image-alt">
</a>
<h4 class="text-centered">Painting</h4>
</div>
<div class="col-xs-6 col-lg-4 portfolio-item">
<a href="#portfolioModal-2" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/floor.png" id="service-icon--style" class="img-responsive" alt="image-alt">
</a>
<h4 class="text-centered">Flooring</h4>
</div>
<div class="col-xs-6 col-lg-4 portfolio-item">
<a href="#portfolioModal-3" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/bathroom.png" id="service-icon--style" class="img-responsive" alt="image-alt">
</a>
<h4 class="text-centered">Bathrooms & Kitchens</h4>
</div>
<div class="col-xs-6 col-lg-4 portfolio-item">
<a href="#portfolioModal-4" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/fullscale.png" id="service-icon--style" class="img-responsive" alt="image-alt">
</a>
<h4 class="text-centered">Full Home Renovations</h4>
</div>
<div class="col-xs-6 col-lg-4 portfolio-item">
<a href="#portfolioModal-5" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/fence.png" id="service-icon--style" class="img-responsive" alt="image-alt">
</a>
<h4 class="text-centered">Decks Patios & Fences</h4>
</div>
<div class="col-xs-6 col-lg-4 portfolio-item">
<a href="#portfolioModal-6" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/clipboard.png" id="service-icon--style" class="img-responsive" alt="image-alt">
</a>
<h4 class="text-centered">Free Consultation</h4>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="secondary-dark">Request Free Consultation:</h2>
<hr class="divider-secondary">
</div>
</div>
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<form action="//formspree.io/contact@almeidarenovations.ca" method="POST" name="sentMessage" id="contactForm" novalidate>
<div class="row control-group">
<div class="form-group col-xs-12 floating-label-form-group controls">
<label>Full Name:</label>
<input type="text" name="name" class="form-control" placeholder="Full Name" id="name" required data-validation-required-message="Please enter your first and last name.">
<p class="help-block text-danger"></p>
</div>
</div>
<div class="row control-group">
<div class="form-group col-xs-12 floating-label-form-group controls">
<label>Phone Number:</label>
<input type="text" name="name" class="form-control" placeholder="Phone Number" id="phone">
</div>
</div>
<div class="row control-group">
<div class="form-group col-xs-12 floating-label-form-group controls">
<label>Location:</label>
<input type="text" name="name" class="form-control" placeholder="Location" id="location">
</div>
</div>
<div class="row control-group">
<div class="form-group col-xs-12 floating-label-form-group controls">
<label>Email Address:</label>
<input type="email" name="_replyto" class="form-control" placeholder="Email Address" id="email" required data-validation-required-message="Please enter your email address.">
<p class="help-block text-danger"></p>
</div>
</div>
<div>
<input type="hidden" name="_subject" value="New submission!">
<input type="text" name="_gotcha" style="display:none" />
</div>
<div class="row control-group">
<div class="form-group col-xs-12 floating-label-form-group controls">
<label>Description of Work:</label>
<textarea rows="5" name="message" class="form-control" placeholder="Description of Work" id="message" required data-validation-required-message="Please enter a message."></textarea>
<p class="help-block text-danger"></p>
</div>
</div>
<br>
<div id="success"></div>
<div class="row">
<div class="form-group col-xs-12 text-center">
<button type="submit" class="btn btn-success btn-lg">Submit</button>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="text-center">
<div class="footer-above">
<div class="container">
<div class="row">
<div class="footer-col col-lg-6">
<h3>Location</h3>
<p>
Serving Cambridge, Kitchener, Waterloo <br>
and surrounding areas for over 20 years. <br>
</p>
</div>
<div class="footer-col col-lg-6">
<h3>Contact</h3>
<p>
1-(519)-242-6124<br>
contact@almeidarenovations.ca<br>
</p>
</div>
</div>
</div>
</div>
<div class="footer-below">
<div class="container">
<div class="row">
<div class="col-lg-12">
Copyright © Almeida Painting & Renovations 2018
</div>
</div>
</div>
</div>
</footer>
<div class="scroll-top page-scroll visible-xs visible-sm">
<a class="btn btn-primary" href="#page-top">
<i class="fa fa-chevron-up"></i>
</a>
</div>
<!-- Portfolio Modals -->
<div class="portfolio-modal modal fade" id="portfolioModal-1" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>Painting</h2>
<hr class="divider-secondary">
<img src="img/portfolio/paintbrush.png" id="service-icon--style" class="img-responsive img-centered" alt="image-alt" width="256" height="256">
<p>A service that this company was founded on, painting is second nature for the Almeida Renovations team. We are reliable, professional, and when it comes to painting your home, we will take all the correct steps from start to finish to ensure the painting job is done correct.</p>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="portfolioModal-2" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>Flooring</h2>
<hr class="divider-secondary">
<img src="img/portfolio/floor.png" id="service-icon--style" class="img-responsive img-centered" alt="image-alt" width="256" height="256">
<p>Old flooring or carpet needing to be replaced? Not to worry, we are here to help. Hardwood, tile, and laminate are our flooring specialties. We will always properly remove your existing flooring and subflooring and start with perfect flooring underlay. Whether its a bathroom, or a laundry room - new flooring is sure to bring life back into your home.</p>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="portfolioModal-3" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>Bathrooms & Kitchens</h2>
<hr class="divider-secondary">
<img src="img/portfolio/bathroom.png" id="service-icon--style" class="img-responsive img-centered" alt="image-alt" width="256" height="256">
<p>We know how important your bathroom, and kithchen is for your daily life. Creating the perfect kitchen or bathroom starts with Almeida Renovations. Simple remodelling or a full new design, your bathroom is used everyday and deserves to look great. Hand tiled showers, new cabinets, and backsplashes is just some of the extensive renovations we offer for your kitchen and bathroom. Contact us today to see how we can provide you with your dream kitchen or bathroom!</p>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="portfolioModal-4" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>Full Home Renovations</h2>
<hr class="divider-secondary">
<img src="img/portfolio/fullscale.png" id="service-icon--style" class="img-responsive img-centered" alt="image-alt" width="256" height="256">
<p>Full scale home renovations is our speciality. It is not uncommon for our team to bring life back into a big portion of your home. From modern uplifts to unfinished basements, we trust you will enjoy only having to contact one team for your full renovation.</p>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="portfolioModal-5" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>Decks Patios & Fences</h2>
<hr class="divider-secondary">
<img src="img/portfolio/fence.png" id="service-icon--style" class="img-responsive img-centered" alt="image-alt" width="256" height="256">
<p>Enhance your backyard with a new patio, or beautfiul new wood deck. We build decks, patios, and fences that you will enjoy for many years to come. A great way to invigorate your backyard where your friends and family can create memories and celebrate. From the foundation, to laying the support beams, to adding the finishing touches - we ensure all our decks, patios and fences look great on your property.</p>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="portfolioModal-6" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>Free Consultation</h2>
<hr class="divider-secondary">
<img src="img/portfolio/clipboard.png" id="service-icon--style" class="img-responsive img-centered" alt="image-alt" width="256" height="256">
<p>Interested in having the Almeida Renovations team complete work in your home? We offer consultations! Simply fill out our contact form below, or give us a call. We will send out a representative to your location to consult with you on the job, free of charge!</p>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- jQuery Version 1.11.0 -->
<script src="/js/jquery-1.11.0.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="/js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="/js/jquery.easing.min.js"></script>
<script src="/js/classie.js"></script>
<!-- Contact Form JavaScript -->
<script src="/js/jqBootstrapValidation.js"></script>
<script src="/js/contact_me_static.js"></script>
<!-- Custom JavaScript -->
<script src="/js/custom.js"></script>
</body>
</html> |
lib/cassandra/apache-cassandra-3.7/javadoc/org/apache/cassandra/service/paxos/package-summary.html | jasonwee/videoOnCloud | <!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 Mon Jun 06 14:51:19 EDT 2016 -->
<title>org.apache.cassandra.service.paxos (apache-cassandra API)</title>
<meta name="date" content="2016-06-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="org.apache.cassandra.service.paxos (apache-cassandra 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="../../../../../org/apache/cassandra/service/pager/package-summary.html">Prev Package</a></li>
<li><a href="../../../../../org/apache/cassandra/streaming/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/cassandra/service/paxos/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 org.apache.cassandra.service.paxos</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="../../../../../org/apache/cassandra/service/paxos/AbstractPaxosCallback.html" title="class in org.apache.cassandra.service.paxos">AbstractPaxosCallback</a><T></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../../org/apache/cassandra/service/paxos/Commit.html" title="class in org.apache.cassandra.service.paxos">Commit</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../../../org/apache/cassandra/service/paxos/Commit.CommitSerializer.html" title="class in org.apache.cassandra.service.paxos">Commit.CommitSerializer</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../../org/apache/cassandra/service/paxos/CommitVerbHandler.html" title="class in org.apache.cassandra.service.paxos">CommitVerbHandler</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../../../org/apache/cassandra/service/paxos/PaxosState.html" title="class in org.apache.cassandra.service.paxos">PaxosState</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../../org/apache/cassandra/service/paxos/PrepareCallback.html" title="class in org.apache.cassandra.service.paxos">PrepareCallback</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../../../org/apache/cassandra/service/paxos/PrepareResponse.html" title="class in org.apache.cassandra.service.paxos">PrepareResponse</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../../org/apache/cassandra/service/paxos/PrepareResponse.PrepareResponseSerializer.html" title="class in org.apache.cassandra.service.paxos">PrepareResponse.PrepareResponseSerializer</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../../../org/apache/cassandra/service/paxos/PrepareVerbHandler.html" title="class in org.apache.cassandra.service.paxos">PrepareVerbHandler</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../../org/apache/cassandra/service/paxos/ProposeCallback.html" title="class in org.apache.cassandra.service.paxos">ProposeCallback</a></td>
<td class="colLast">
<div class="block">ProposeCallback has two modes of operation, controlled by the failFast parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../../../org/apache/cassandra/service/paxos/ProposeVerbHandler.html" title="class in org.apache.cassandra.service.paxos">ProposeVerbHandler</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="../../../../../org/apache/cassandra/service/pager/package-summary.html">Prev Package</a></li>
<li><a href="../../../../../org/apache/cassandra/streaming/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/cassandra/service/paxos/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 © 2016 The Apache Software Foundation</small></p>
</body>
</html>
|
doc/html/interfacebsort_1_1quick__sort__dec_ab392966ad76e62ac51a29032ce28df0a.html | arinrb/bsort | <!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.4"/>
<title>BSort: bsort::quick_sort_dec::quick_sort_vec_dec_map_int</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
$(window).load(resizeHeight);
</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { searchBox.OnSelectItem(0); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="logo.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">BSort
 <span id="projectnumber">1.0</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.4 -->
<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="modules.html"><span>Modules</span></a></li>
<li><a href="annotated.html"><span>Data Types List</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
</div><!-- 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('interfacebsort_1_1quick__sort__dec.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)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark"> </span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark"> </span>Groups</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="contents">
<a class="anchor" id="ab392966ad76e62ac51a29032ce28df0a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bsort::quick_sort_dec::quick_sort_vec_dec_map_int </td>
<td>(</td>
<td class="paramname">)</td><td></td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
</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="classbsort.html">bsort</a></li><li class="navelem"><a class="el" href="interfacebsort_1_1quick__sort__dec.html">quick_sort_dec</a></li>
<li class="footer">Generated on Wed Jul 9 2014 22:57:37 for BSort by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.4 </li>
</ul>
</div>
</body>
</html>
|
docs/javadoc/opensaml3/1.0.3/se/litsec/eidas/opensaml/ext/attributes/address/impl/class-use/PostCodeBuilder.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_65) on Sun Sep 24 17:24:02 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class se.litsec.eidas.opensaml.ext.attributes.address.impl.PostCodeBuilder (eIDAS :: OpenSAML 3.X 1.0.3 API)</title>
<meta name="date" content="2017-09-24">
<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.ext.attributes.address.impl.PostCodeBuilder (eIDAS :: OpenSAML 3.X 1.0.3 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="../../../../../../../../../se/litsec/eidas/opensaml/ext/attributes/address/impl/PostCodeBuilder.html" title="class in se.litsec.eidas.opensaml.ext.attributes.address.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/ext/attributes/address/impl/class-use/PostCodeBuilder.html" target="_top">Frames</a></li>
<li><a href="PostCodeBuilder.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.ext.attributes.address.impl.PostCodeBuilder" class="title">Uses of Class<br>se.litsec.eidas.opensaml.ext.attributes.address.impl.PostCodeBuilder</h2>
</div>
<div class="classUseContainer">No usage of se.litsec.eidas.opensaml.ext.attributes.address.impl.PostCodeBuilder</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/ext/attributes/address/impl/PostCodeBuilder.html" title="class in se.litsec.eidas.opensaml.ext.attributes.address.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/ext/attributes/address/impl/class-use/PostCodeBuilder.html" target="_top">Frames</a></li>
<li><a href="PostCodeBuilder.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. All Rights Reserved.</small></p>
</body>
</html>
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.