path
stringlengths 5
312
| repo_name
stringlengths 5
116
| content
stringlengths 2
1.04M
|
---|---|---|
docs/xref/org/apache/commons/httpclient/HttpException.html | huainiu/commons-httpclient-3.1 | <!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="null" lang="null">
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /><title>HttpException xref</title>
<link type="text/css" rel="stylesheet" href="../../../../stylesheet.css" />
</head>
<body>
<div id="overview"><a href="../../../../../apidocs/org/apache/commons/httpclient/HttpException.html">View Javadoc</a></div><pre>
<a name="1" href="#1">1</a> <em class="comment">/*</em>
<a name="2" href="#2">2</a> <em class="comment"> * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//httpclient/src/java/org/apache/commons/httpclient/HttpException.java,v 1.19 2004/09/30 18:53:20 olegk Exp $</em>
<a name="3" href="#3">3</a> <em class="comment"> * $Revision: 480424 $</em>
<a name="4" href="#4">4</a> <em class="comment"> * $Date: 2006-11-29 06:56:49 +0100 (Wed, 29 Nov 2006) $</em>
<a name="5" href="#5">5</a> <em class="comment"> *</em>
<a name="6" href="#6">6</a> <em class="comment"> * ====================================================================</em>
<a name="7" href="#7">7</a> <em class="comment"> *</em>
<a name="8" href="#8">8</a> <em class="comment"> * Licensed to the Apache Software Foundation (ASF) under one or more</em>
<a name="9" href="#9">9</a> <em class="comment"> * contributor license agreements. See the NOTICE file distributed with</em>
<a name="10" href="#10">10</a> <em class="comment"> * this work for additional information regarding copyright ownership.</em>
<a name="11" href="#11">11</a> <em class="comment"> * The ASF licenses this file to You under the Apache License, Version 2.0</em>
<a name="12" href="#12">12</a> <em class="comment"> * (the "License"); you may not use this file except in compliance with</em>
<a name="13" href="#13">13</a> <em class="comment"> * the License. You may obtain a copy of the License at</em>
<a name="14" href="#14">14</a> <em class="comment"> *</em>
<a name="15" href="#15">15</a> <em class="comment"> * <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
<a name="16" href="#16">16</a> <em class="comment"> *</em>
<a name="17" href="#17">17</a> <em class="comment"> * Unless required by applicable law or agreed to in writing, software</em>
<a name="18" href="#18">18</a> <em class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</em>
<a name="19" href="#19">19</a> <em class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em>
<a name="20" href="#20">20</a> <em class="comment"> * See the License for the specific language governing permissions and</em>
<a name="21" href="#21">21</a> <em class="comment"> * limitations under the License.</em>
<a name="22" href="#22">22</a> <em class="comment"> * ====================================================================</em>
<a name="23" href="#23">23</a> <em class="comment"> *</em>
<a name="24" href="#24">24</a> <em class="comment"> * This software consists of voluntary contributions made by many</em>
<a name="25" href="#25">25</a> <em class="comment"> * individuals on behalf of the Apache Software Foundation. For more</em>
<a name="26" href="#26">26</a> <em class="comment"> * information on the Apache Software Foundation, please see</em>
<a name="27" href="#27">27</a> <em class="comment"> * <<a href="http://www.apache.org/" target="alexandria_uri">http://www.apache.org/</a>>.</em>
<a name="28" href="#28">28</a> <em class="comment"> *</em>
<a name="29" href="#29">29</a> <em class="comment"> */</em>
<a name="30" href="#30">30</a>
<a name="31" href="#31">31</a> <strong>package</strong> org.apache.commons.httpclient;
<a name="32" href="#32">32</a>
<a name="33" href="#33">33</a> <strong>import</strong> java.io.IOException;
<a name="34" href="#34">34</a> <strong>import</strong> java.io.PrintStream;
<a name="35" href="#35">35</a> <strong>import</strong> java.io.PrintWriter;
<a name="36" href="#36">36</a> <strong>import</strong> java.lang.reflect.Method;
<a name="37" href="#37">37</a>
<a name="38" href="#38">38</a> <em>/**</em>
<a name="39" href="#39">39</a> <em> * Signals that an HTTP or HttpClient exception has occurred.</em>
<a name="40" href="#40">40</a> <em> * </em>
<a name="41" href="#41">41</a> <em> * @author Laura Werner</em>
<a name="42" href="#42">42</a> <em> * </em>
<a name="43" href="#43">43</a> <em> * @version $Revision: 480424 $ $Date: 2006-11-29 06:56:49 +0100 (Wed, 29 Nov 2006) $</em>
<a name="44" href="#44">44</a> <em> */</em>
<a name="45" href="#45">45</a> <strong>public</strong> <strong>class</strong> <a href="../../../../org/apache/commons/httpclient/HttpException.html">HttpException</a> <strong>extends</strong> IOException {
<a name="46" href="#46">46</a>
<a name="47" href="#47">47</a> <em>/**</em>
<a name="48" href="#48">48</a> <em> * Creates a new HttpException with a <tt>null</tt> detail message.</em>
<a name="49" href="#49">49</a> <em> */</em>
<a name="50" href="#50">50</a> <strong>public</strong> <a href="../../../../org/apache/commons/httpclient/HttpException.html">HttpException</a>() {
<a name="51" href="#51">51</a> <strong>super</strong>();
<a name="52" href="#52">52</a> <strong>this</strong>.cause = <strong>null</strong>;
<a name="53" href="#53">53</a> }
<a name="54" href="#54">54</a>
<a name="55" href="#55">55</a> <em>/**</em>
<a name="56" href="#56">56</a> <em> * Creates a new HttpException with the specified detail message.</em>
<a name="57" href="#57">57</a> <em> *</em>
<a name="58" href="#58">58</a> <em> * @param message the exception detail message</em>
<a name="59" href="#59">59</a> <em> */</em>
<a name="60" href="#60">60</a> <strong>public</strong> <a href="../../../../org/apache/commons/httpclient/HttpException.html">HttpException</a>(String message) {
<a name="61" href="#61">61</a> <strong>super</strong>(message);
<a name="62" href="#62">62</a> <strong>this</strong>.cause = <strong>null</strong>;
<a name="63" href="#63">63</a> }
<a name="64" href="#64">64</a>
<a name="65" href="#65">65</a> <em>/**</em>
<a name="66" href="#66">66</a> <em> * Creates a new HttpException with the specified detail message and cause.</em>
<a name="67" href="#67">67</a> <em> * </em>
<a name="68" href="#68">68</a> <em> * @param message the exception detail message</em>
<a name="69" href="#69">69</a> <em> * @param cause the <tt>Throwable</tt> that caused this exception, or <tt>null</tt></em>
<a name="70" href="#70">70</a> <em> * if the cause is unavailable, unknown, or not a <tt>Throwable</tt></em>
<a name="71" href="#71">71</a> <em> * </em>
<a name="72" href="#72">72</a> <em> * @since 3.0</em>
<a name="73" href="#73">73</a> <em> */</em>
<a name="74" href="#74">74</a> <strong>public</strong> <a href="../../../../org/apache/commons/httpclient/HttpException.html">HttpException</a>(String message, Throwable cause) {
<a name="75" href="#75">75</a> <strong>super</strong>(message);
<a name="76" href="#76">76</a> <strong>this</strong>.cause = cause;
<a name="77" href="#77">77</a>
<a name="78" href="#78">78</a> <em class="comment">// If we're running on JDK 1.4 or later, tell Throwable what the cause was</em>
<a name="79" href="#79">79</a> <strong>try</strong> {
<a name="80" href="#80">80</a> Class[] paramsClasses = <strong>new</strong> Class[] { Throwable.<strong>class</strong> };
<a name="81" href="#81">81</a> Method initCause = Throwable.<strong>class</strong>.getMethod(<span class="string">"initCause"</span>, paramsClasses);
<a name="82" href="#82">82</a> initCause.invoke(<strong>this</strong>, <strong>new</strong> Object[] { cause });
<a name="83" href="#83">83</a> } <strong>catch</strong> (Exception e) {
<a name="84" href="#84">84</a> <em class="comment">// The setCause method must not be available</em>
<a name="85" href="#85">85</a> }
<a name="86" href="#86">86</a> }
<a name="87" href="#87">87</a>
<a name="88" href="#88">88</a> <em>/**</em>
<a name="89" href="#89">89</a> <em> * Return the <tt>Throwable</tt> that caused this exception, or <tt>null</tt></em>
<a name="90" href="#90">90</a> <em> * if the cause is unavailable, unknown, or not a <tt>Throwable</tt>.</em>
<a name="91" href="#91">91</a> <em> * </em>
<a name="92" href="#92">92</a> <em> * @return the <tt>Throwable</tt> that caused this exception, or <tt>null</tt></em>
<a name="93" href="#93">93</a> <em> * if the cause is unavailable, unknown, or not a <tt>Throwable</tt></em>
<a name="94" href="#94">94</a> <em> * </em>
<a name="95" href="#95">95</a> <em> * @since 3.0</em>
<a name="96" href="#96">96</a> <em> */</em>
<a name="97" href="#97">97</a> <strong>public</strong> Throwable getCause() {
<a name="98" href="#98">98</a> <strong>return</strong> cause;
<a name="99" href="#99">99</a> }
<a name="100" href="#100">100</a>
<a name="101" href="#101">101</a> <em>/**</em>
<a name="102" href="#102">102</a> <em> * Print this HttpException and its stack trace to the standard error stream.</em>
<a name="103" href="#103">103</a> <em> * </em>
<a name="104" href="#104">104</a> <em> * @since 3.0</em>
<a name="105" href="#105">105</a> <em> */</em>
<a name="106" href="#106">106</a> <strong>public</strong> <strong>void</strong> printStackTrace() {
<a name="107" href="#107">107</a> printStackTrace(System.err);
<a name="108" href="#108">108</a> }
<a name="109" href="#109">109</a>
<a name="110" href="#110">110</a> <em>/**</em>
<a name="111" href="#111">111</a> <em> * Print this HttpException and its stack trace to the specified print stream.</em>
<a name="112" href="#112">112</a> <em> * </em>
<a name="113" href="#113">113</a> <em> * @param s the <tt>PrintStream</tt> to which the exception and its stack trace</em>
<a name="114" href="#114">114</a> <em> * should be written</em>
<a name="115" href="#115">115</a> <em> * </em>
<a name="116" href="#116">116</a> <em> * @since 3.0</em>
<a name="117" href="#117">117</a> <em> */</em>
<a name="118" href="#118">118</a> <strong>public</strong> <strong>void</strong> printStackTrace(PrintStream s) {
<a name="119" href="#119">119</a> <strong>try</strong> {
<a name="120" href="#120">120</a> <em class="comment">// JDK 1.4 has a nice printStackTrace method that prints the cause's stack</em>
<a name="121" href="#121">121</a> <em class="comment">// trace too and prunes out duplicate stack frames. Call it if possible,</em>
<a name="122" href="#122">122</a> <em class="comment">// which is determined by checking whether JDK 1.4's getStackTrace method is present </em>
<a name="123" href="#123">123</a> Class[] paramsClasses = <strong>new</strong> Class[] { };
<a name="124" href="#124">124</a> <strong>this</strong>.getClass().getMethod(<span class="string">"getStackTrace"</span>, paramsClasses);
<a name="125" href="#125">125</a> <strong>super</strong>.printStackTrace(s);
<a name="126" href="#126">126</a> } <strong>catch</strong> (Exception ex) {
<a name="127" href="#127">127</a> <em class="comment">// If that didn't work, print it out ourselves</em>
<a name="128" href="#128">128</a> <em class="comment">// First print this exception's stack trace.</em>
<a name="129" href="#129">129</a> <strong>super</strong>.printStackTrace(s);
<a name="130" href="#130">130</a> <strong>if</strong> (cause != <strong>null</strong>) {
<a name="131" href="#131">131</a> <em class="comment">// Print out the exception that caused this one.</em>
<a name="132" href="#132">132</a> <em class="comment">// This will recurse if the cause is another HttpException.</em>
<a name="133" href="#133">133</a> s.print(<span class="string">"Caused by: "</span>);
<a name="134" href="#134">134</a> cause.printStackTrace(s);
<a name="135" href="#135">135</a> }
<a name="136" href="#136">136</a> }
<a name="137" href="#137">137</a> }
<a name="138" href="#138">138</a>
<a name="139" href="#139">139</a> <em>/**</em>
<a name="140" href="#140">140</a> <em> * Print this HttpException and its stack trace to the specified print writer.</em>
<a name="141" href="#141">141</a> <em> * </em>
<a name="142" href="#142">142</a> <em> * @param s the <tt>PrintWriter</tt> to which the exception and its stack trace</em>
<a name="143" href="#143">143</a> <em> * should be written</em>
<a name="144" href="#144">144</a> <em> * </em>
<a name="145" href="#145">145</a> <em> * @since 3.0</em>
<a name="146" href="#146">146</a> <em> */</em>
<a name="147" href="#147">147</a> <strong>public</strong> <strong>void</strong> printStackTrace(PrintWriter s) {
<a name="148" href="#148">148</a> <strong>try</strong> {
<a name="149" href="#149">149</a> <em class="comment">// JDK 1.4 has a nice printStackTrace method that prints the cause's stack</em>
<a name="150" href="#150">150</a> <em class="comment">// trace too and prunes out duplicate stack frames. Call it if possible,</em>
<a name="151" href="#151">151</a> <em class="comment">// which is determined by checking whether JDK 1.4's getStackTrace method is present </em>
<a name="152" href="#152">152</a> Class[] paramsClasses = <strong>new</strong> Class[] { };
<a name="153" href="#153">153</a> <strong>this</strong>.getClass().getMethod(<span class="string">"getStackTrace"</span>, paramsClasses);
<a name="154" href="#154">154</a> <strong>super</strong>.printStackTrace(s);
<a name="155" href="#155">155</a> } <strong>catch</strong> (Exception ex) {
<a name="156" href="#156">156</a> <em class="comment">// If that didn't work, print it out ourselves</em>
<a name="157" href="#157">157</a> <em class="comment">// First print this exception's stack trace.</em>
<a name="158" href="#158">158</a> <strong>super</strong>.printStackTrace(s);
<a name="159" href="#159">159</a> <strong>if</strong> (cause != <strong>null</strong>) {
<a name="160" href="#160">160</a> <em class="comment">// Print out the exception that caused this one.</em>
<a name="161" href="#161">161</a> <em class="comment">// This will recurse if the cause is another HttpException.</em>
<a name="162" href="#162">162</a> s.print(<span class="string">"Caused by: "</span>);
<a name="163" href="#163">163</a> cause.printStackTrace(s);
<a name="164" href="#164">164</a> }
<a name="165" href="#165">165</a> }
<a name="166" href="#166">166</a> }
<a name="167" href="#167">167</a>
<a name="168" href="#168">168</a> <em>/**</em>
<a name="169" href="#169">169</a> <em> * Sets the text description of the reason for an exception.</em>
<a name="170" href="#170">170</a> <em> *</em>
<a name="171" href="#171">171</a> <em> * @param reason The reason for the exception.</em>
<a name="172" href="#172">172</a> <em> *</em>
<a name="173" href="#173">173</a> <em> * @deprecated HttpClient no longer uses this for itself. It is only</em>
<a name="174" href="#174">174</a> <em> * provided for compatibility with existing clients, and will be removed</em>
<a name="175" href="#175">175</a> <em> * in a future release.</em>
<a name="176" href="#176">176</a> <em> */</em>
<a name="177" href="#177">177</a> <strong>public</strong> <strong>void</strong> setReason(String reason) {
<a name="178" href="#178">178</a> <strong>this</strong>.reason = reason;
<a name="179" href="#179">179</a> }
<a name="180" href="#180">180</a>
<a name="181" href="#181">181</a> <em>/**</em>
<a name="182" href="#182">182</a> <em> * Get the text description of the reason for an exception.</em>
<a name="183" href="#183">183</a> <em> *</em>
<a name="184" href="#184">184</a> <em> * @deprecated HttpClient no longer uses this for itself. It is only</em>
<a name="185" href="#185">185</a> <em> * provided for compatibility with existing clients, and will be removed</em>
<a name="186" href="#186">186</a> <em> * in a future release.</em>
<a name="187" href="#187">187</a> <em> */</em>
<a name="188" href="#188">188</a> <strong>public</strong> String getReason() {
<a name="189" href="#189">189</a> <strong>return</strong> reason;
<a name="190" href="#190">190</a> }
<a name="191" href="#191">191</a>
<a name="192" href="#192">192</a> <em>/**</em>
<a name="193" href="#193">193</a> <em> * Sets the status code description of the reason for an exception.</em>
<a name="194" href="#194">194</a> <em> *</em>
<a name="195" href="#195">195</a> <em> * @param code The reason for the exception. This is intended to be an</em>
<a name="196" href="#196">196</a> <em> * HTTP status code.</em>
<a name="197" href="#197">197</a> <em> *</em>
<a name="198" href="#198">198</a> <em> * @deprecated HttpClient no longer uses this for itself. It is only</em>
<a name="199" href="#199">199</a> <em> * provided for compatibility with existing clients, and will be removed</em>
<a name="200" href="#200">200</a> <em> * in a future release.</em>
<a name="201" href="#201">201</a> <em> */</em>
<a name="202" href="#202">202</a> <strong>public</strong> <strong>void</strong> setReasonCode(<strong>int</strong> code) {
<a name="203" href="#203">203</a> reasonCode = code;
<a name="204" href="#204">204</a> }
<a name="205" href="#205">205</a>
<a name="206" href="#206">206</a> <em>/**</em>
<a name="207" href="#207">207</a> <em> * Get the status code description of the reason for an exception.</em>
<a name="208" href="#208">208</a> <em> *</em>
<a name="209" href="#209">209</a> <em> * @deprecated HttpClient no longer uses this for itself. It is only</em>
<a name="210" href="#210">210</a> <em> * provided for compatibility with existing clients, and will be removed</em>
<a name="211" href="#211">211</a> <em> * in a future release.</em>
<a name="212" href="#212">212</a> <em> */</em>
<a name="213" href="#213">213</a> <strong>public</strong> <strong>int</strong> getReasonCode() {
<a name="214" href="#214">214</a> <strong>return</strong> <strong>this</strong>.reasonCode;
<a name="215" href="#215">215</a> }
<a name="216" href="#216">216</a>
<a name="217" href="#217">217</a> <em>/**</em>
<a name="218" href="#218">218</a> <em> * A "reason" string provided for compatibility with older clients.</em>
<a name="219" href="#219">219</a> <em> *</em>
<a name="220" href="#220">220</a> <em> * @deprecated HttpClient no longer uses this field for itself. It</em>
<a name="221" href="#221">221</a> <em> * is only provided for compatibility with existing clients.</em>
<a name="222" href="#222">222</a> <em> */</em>
<a name="223" href="#223">223</a> <strong>private</strong> String reason;
<a name="224" href="#224">224</a>
<a name="225" href="#225">225</a> <em>/**</em>
<a name="226" href="#226">226</a> <em> * Reason code for compatibility with older clients.</em>
<a name="227" href="#227">227</a> <em> *</em>
<a name="228" href="#228">228</a> <em> * @deprecated HttpClient no longer uses this field for itself.</em>
<a name="229" href="#229">229</a> <em> * It is only provided for compatibility with existing clients.</em>
<a name="230" href="#230">230</a> <em> */</em>
<a name="231" href="#231">231</a> <strong>private</strong> <strong>int</strong> reasonCode = HttpStatus.SC_OK;
<a name="232" href="#232">232</a>
<a name="233" href="#233">233</a> <em>/**</em><em> The original Throwable representing the cause of this error */</em>
<a name="234" href="#234">234</a> <strong>private</strong> <strong>final</strong> Throwable cause;
<a name="235" href="#235">235</a> }
</pre>
<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
</html>
|
theme_rtl/templates/admin4/ui_idle_timeout.html | zzsoszz/metronicv37 | <!DOCTYPE html>
<!--
Template Name: Metronic - Responsive Admin Dashboard Template build with Twitter Bootstrap 3.3.2
Version: 3.7.0
Author: KeenThemes
Website: http://www.keenthemes.com/
Contact: [email protected]
Follow: www.twitter.com/keenthemes
Like: www.facebook.com/keenthemes
Purchase: http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes
License: You must have a valid license purchased only from themeforest(the above link) in order to legally use the theme for your project.
-->
<!--[if IE 8]> <html lang="en" class="ie8 no-js"> <![endif]-->
<!--[if IE 9]> <html lang="en" class="ie9 no-js"> <![endif]-->
<!--[if !IE]><!-->
<html lang="en">
<!--<![endif]-->
<!-- BEGIN HEAD -->
<head>
<meta charset="utf-8"/>
<title>Metronic | UI Features - User Idle Timeout</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<meta content="" name="description"/>
<meta content="" name="author"/>
<!-- BEGIN GLOBAL MANDATORY STYLES -->
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700&subset=all" rel="stylesheet" type="text/css">
<link href="../../assets/global/plugins/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="../../assets/global/plugins/simple-line-icons/simple-line-icons.min.css" rel="stylesheet" type="text/css">
<link href="../../assets/global/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="../../assets/global/plugins/uniform/css/uniform.default.css" rel="stylesheet" type="text/css">
<link href="../../assets/global/plugins/bootstrap-switch/css/bootstrap-switch.min.css" rel="stylesheet" type="text/css"/>
<!-- END GLOBAL MANDATORY STYLES -->
<!-- BEGIN THEME STYLES -->
<link href="../../assets/global/css/components-rounded.css" id="style_components" rel="stylesheet" type="text/css"/>
<link href="../../assets/global/css/plugins.css" rel="stylesheet" type="text/css"/>
<link href="../../assets/admin/layout4/css/layout.css" rel="stylesheet" type="text/css"/>
<link id="style_color" href="../../assets/admin/layout4/css/themes/light.css" rel="stylesheet" type="text/css"/>
<link href="../../assets/admin/layout4/css/custom.css" rel="stylesheet" type="text/css"/>
<!-- END THEME STYLES -->
<link rel="shortcut icon" href="favicon.ico"/>
</head>
<!-- END HEAD -->
<!-- BEGIN BODY -->
<!-- DOC: Apply "page-header-fixed-mobile" and "page-footer-fixed-mobile" class to body element to force fixed header or footer in mobile devices -->
<!-- DOC: Apply "page-sidebar-closed" class to the body and "page-sidebar-menu-closed" class to the sidebar menu element to hide the sidebar by default -->
<!-- DOC: Apply "page-sidebar-hide" class to the body to make the sidebar completely hidden on toggle -->
<!-- DOC: Apply "page-sidebar-closed-hide-logo" class to the body element to make the logo hidden on sidebar toggle -->
<!-- DOC: Apply "page-sidebar-hide" class to body element to completely hide the sidebar on sidebar toggle -->
<!-- DOC: Apply "page-sidebar-fixed" class to have fixed sidebar -->
<!-- DOC: Apply "page-footer-fixed" class to the body element to have fixed footer -->
<!-- DOC: Apply "page-sidebar-reversed" class to put the sidebar on the right side -->
<!-- DOC: Apply "page-full-width" class to the body element to have full width page without the sidebar menu -->
<body class="page-header-fixed page-sidebar-closed-hide-logo ">
<!-- BEGIN HEADER -->
<div class="page-header navbar navbar-fixed-top">
<!-- BEGIN HEADER INNER -->
<div class="page-header-inner">
<!-- BEGIN LOGO -->
<div class="page-logo">
<a href="index.html">
<img src="../../assets/admin/layout4/img/logo-light.png" alt="logo" class="logo-default"/>
</a>
<div class="menu-toggler sidebar-toggler">
<!-- DOC: Remove the above "hide" to enable the sidebar toggler button on header -->
</div>
</div>
<!-- END LOGO -->
<!-- BEGIN RESPONSIVE MENU TOGGLER -->
<a href="javascript:;" class="menu-toggler responsive-toggler" data-toggle="collapse" data-target=".navbar-collapse">
</a>
<!-- END RESPONSIVE MENU TOGGLER -->
<!-- BEGIN PAGE ACTIONS -->
<!-- DOC: Remove "hide" class to enable the page header actions -->
<div class="page-actions">
<div class="btn-group">
<button type="button" class="btn red-haze btn-sm dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true">
<span class="hidden-sm hidden-xs">Actions </span><i class="fa fa-angle-down"></i>
</button>
<ul class="dropdown-menu" role="menu">
<li>
<a href="javascript:;">
<i class="icon-docs"></i> New Post </a>
</li>
<li>
<a href="javascript:;">
<i class="icon-tag"></i> New Comment </a>
</li>
<li>
<a href="javascript:;">
<i class="icon-share"></i> Share </a>
</li>
<li class="divider">
</li>
<li>
<a href="javascript:;">
<i class="icon-flag"></i> Comments <span class="badge badge-success">4</span>
</a>
</li>
<li>
<a href="javascript:;">
<i class="icon-users"></i> Feedbacks <span class="badge badge-danger">2</span>
</a>
</li>
</ul>
</div>
</div>
<!-- END PAGE ACTIONS -->
<!-- BEGIN PAGE TOP -->
<div class="page-top">
<!-- BEGIN HEADER SEARCH BOX -->
<!-- DOC: Apply "search-form-expanded" right after the "search-form" class to have half expanded search box -->
<form class="search-form" action="extra_search.html" method="GET">
<div class="input-group">
<input type="text" class="form-control input-sm" placeholder="Search..." name="query">
<span class="input-group-btn">
<a href="javascript:;" class="btn submit"><i class="icon-magnifier"></i></a>
</span>
</div>
</form>
<!-- END HEADER SEARCH BOX -->
<!-- BEGIN TOP NAVIGATION MENU -->
<div class="top-menu">
<ul class="nav navbar-nav pull-right">
<li class="separator hide">
</li>
<!-- BEGIN NOTIFICATION DROPDOWN -->
<!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte -->
<li class="dropdown dropdown-extended dropdown-notification dropdown-dark" id="header_notification_bar">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true">
<i class="icon-bell"></i>
<span class="badge badge-success">
7 </span>
</a>
<ul class="dropdown-menu">
<li class="external">
<h3><span class="bold">12 pending</span> notifications</h3>
<a href="extra_profile.html">view all</a>
</li>
<li>
<ul class="dropdown-menu-list scroller" style="height: 250px;" data-handle-color="#637283">
<li>
<a href="javascript:;">
<span class="time">just now</span>
<span class="details">
<span class="label label-sm label-icon label-success">
<i class="fa fa-plus"></i>
</span>
New user registered. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">3 mins</span>
<span class="details">
<span class="label label-sm label-icon label-danger">
<i class="fa fa-bolt"></i>
</span>
Server #12 overloaded. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">10 mins</span>
<span class="details">
<span class="label label-sm label-icon label-warning">
<i class="fa fa-bell-o"></i>
</span>
Server #2 not responding. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">14 hrs</span>
<span class="details">
<span class="label label-sm label-icon label-info">
<i class="fa fa-bullhorn"></i>
</span>
Application error. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">2 days</span>
<span class="details">
<span class="label label-sm label-icon label-danger">
<i class="fa fa-bolt"></i>
</span>
Database overloaded 68%. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">3 days</span>
<span class="details">
<span class="label label-sm label-icon label-danger">
<i class="fa fa-bolt"></i>
</span>
A user IP blocked. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">4 days</span>
<span class="details">
<span class="label label-sm label-icon label-warning">
<i class="fa fa-bell-o"></i>
</span>
Storage Server #4 not responding dfdfdfd. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">5 days</span>
<span class="details">
<span class="label label-sm label-icon label-info">
<i class="fa fa-bullhorn"></i>
</span>
System Error. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">9 days</span>
<span class="details">
<span class="label label-sm label-icon label-danger">
<i class="fa fa-bolt"></i>
</span>
Storage server failed. </span>
</a>
</li>
</ul>
</li>
</ul>
</li>
<!-- END NOTIFICATION DROPDOWN -->
<li class="separator hide">
</li>
<!-- BEGIN INBOX DROPDOWN -->
<!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte -->
<li class="dropdown dropdown-extended dropdown-inbox dropdown-dark" id="header_inbox_bar">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true">
<i class="icon-envelope-open"></i>
<span class="badge badge-danger">
4 </span>
</a>
<ul class="dropdown-menu">
<li class="external">
<h3>You have <span class="bold">7 New</span> Messages</h3>
<a href="inbox.html">view all</a>
</li>
<li>
<ul class="dropdown-menu-list scroller" style="height: 275px;" data-handle-color="#637283">
<li>
<a href="inbox.html?a=view">
<span class="photo">
<img src="../../assets/admin/layout3/img/avatar2.jpg" class="img-circle" alt="">
</span>
<span class="subject">
<span class="from">
Lisa Wong </span>
<span class="time">Just Now </span>
</span>
<span class="message">
Vivamus sed auctor nibh congue nibh. auctor nibh auctor nibh... </span>
</a>
</li>
<li>
<a href="inbox.html?a=view">
<span class="photo">
<img src="../../assets/admin/layout3/img/avatar3.jpg" class="img-circle" alt="">
</span>
<span class="subject">
<span class="from">
Richard Doe </span>
<span class="time">16 mins </span>
</span>
<span class="message">
Vivamus sed congue nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span>
</a>
</li>
<li>
<a href="inbox.html?a=view">
<span class="photo">
<img src="../../assets/admin/layout3/img/avatar1.jpg" class="img-circle" alt="">
</span>
<span class="subject">
<span class="from">
Bob Nilson </span>
<span class="time">2 hrs </span>
</span>
<span class="message">
Vivamus sed nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span>
</a>
</li>
<li>
<a href="inbox.html?a=view">
<span class="photo">
<img src="../../assets/admin/layout3/img/avatar2.jpg" class="img-circle" alt="">
</span>
<span class="subject">
<span class="from">
Lisa Wong </span>
<span class="time">40 mins </span>
</span>
<span class="message">
Vivamus sed auctor 40% nibh congue nibh... </span>
</a>
</li>
<li>
<a href="inbox.html?a=view">
<span class="photo">
<img src="../../assets/admin/layout3/img/avatar3.jpg" class="img-circle" alt="">
</span>
<span class="subject">
<span class="from">
Richard Doe </span>
<span class="time">46 mins </span>
</span>
<span class="message">
Vivamus sed congue nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span>
</a>
</li>
</ul>
</li>
</ul>
</li>
<!-- END INBOX DROPDOWN -->
<li class="separator hide">
</li>
<!-- BEGIN TODO DROPDOWN -->
<!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte -->
<li class="dropdown dropdown-extended dropdown-tasks dropdown-dark" id="header_task_bar">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true">
<i class="icon-calendar"></i>
<span class="badge badge-primary">
3 </span>
</a>
<ul class="dropdown-menu extended tasks">
<li class="external">
<h3>You have <span class="bold">12 pending</span> tasks</h3>
<a href="page_todo.html">view all</a>
</li>
<li>
<ul class="dropdown-menu-list scroller" style="height: 275px;" data-handle-color="#637283">
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">New release v1.2 </span>
<span class="percent">30%</span>
</span>
<span class="progress">
<span style="width: 40%;" class="progress-bar progress-bar-success" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100"><span class="sr-only">40% Complete</span></span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">Application deployment</span>
<span class="percent">65%</span>
</span>
<span class="progress">
<span style="width: 65%;" class="progress-bar progress-bar-danger" aria-valuenow="65" aria-valuemin="0" aria-valuemax="100"><span class="sr-only">65% Complete</span></span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">Mobile app release</span>
<span class="percent">98%</span>
</span>
<span class="progress">
<span style="width: 98%;" class="progress-bar progress-bar-success" aria-valuenow="98" aria-valuemin="0" aria-valuemax="100"><span class="sr-only">98% Complete</span></span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">Database migration</span>
<span class="percent">10%</span>
</span>
<span class="progress">
<span style="width: 10%;" class="progress-bar progress-bar-warning" aria-valuenow="10" aria-valuemin="0" aria-valuemax="100"><span class="sr-only">10% Complete</span></span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">Web server upgrade</span>
<span class="percent">58%</span>
</span>
<span class="progress">
<span style="width: 58%;" class="progress-bar progress-bar-info" aria-valuenow="58" aria-valuemin="0" aria-valuemax="100"><span class="sr-only">58% Complete</span></span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">Mobile development</span>
<span class="percent">85%</span>
</span>
<span class="progress">
<span style="width: 85%;" class="progress-bar progress-bar-success" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100"><span class="sr-only">85% Complete</span></span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">New UI release</span>
<span class="percent">38%</span>
</span>
<span class="progress progress-striped">
<span style="width: 38%;" class="progress-bar progress-bar-important" aria-valuenow="18" aria-valuemin="0" aria-valuemax="100"><span class="sr-only">38% Complete</span></span>
</span>
</a>
</li>
</ul>
</li>
</ul>
</li>
<!-- END TODO DROPDOWN -->
<!-- BEGIN USER LOGIN DROPDOWN -->
<!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte -->
<li class="dropdown dropdown-user dropdown-dark">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true">
<span class="username username-hide-on-mobile">
Nick </span>
<!-- DOC: Do not remove below empty space( ) as its purposely used -->
<img alt="" class="img-circle" src="../../assets/admin/layout4/img/avatar9.jpg"/>
</a>
<ul class="dropdown-menu dropdown-menu-default">
<li>
<a href="extra_profile.html">
<i class="icon-user"></i> My Profile </a>
</li>
<li>
<a href="page_calendar.html">
<i class="icon-calendar"></i> My Calendar </a>
</li>
<li>
<a href="inbox.html">
<i class="icon-envelope-open"></i> My Inbox <span class="badge badge-danger">
3 </span>
</a>
</li>
<li>
<a href="page_todo.html">
<i class="icon-rocket"></i> My Tasks <span class="badge badge-success">
7 </span>
</a>
</li>
<li class="divider">
</li>
<li>
<a href="extra_lock.html">
<i class="icon-lock"></i> Lock Screen </a>
</li>
<li>
<a href="login.html">
<i class="icon-key"></i> Log Out </a>
</li>
</ul>
</li>
<!-- END USER LOGIN DROPDOWN -->
</ul>
</div>
<!-- END TOP NAVIGATION MENU -->
</div>
<!-- END PAGE TOP -->
</div>
<!-- END HEADER INNER -->
</div>
<!-- END HEADER -->
<div class="clearfix">
</div>
<!-- BEGIN CONTAINER -->
<div class="page-container">
<!-- BEGIN SIDEBAR -->
<div class="page-sidebar-wrapper">
<!-- DOC: Set data-auto-scroll="false" to disable the sidebar from auto scrolling/focusing -->
<!-- DOC: Change data-auto-speed="200" to adjust the sub menu slide up/down speed -->
<div class="page-sidebar navbar-collapse collapse">
<!-- BEGIN SIDEBAR MENU -->
<!-- DOC: Apply "page-sidebar-menu-light" class right after "page-sidebar-menu" to enable light sidebar menu style(without borders) -->
<!-- DOC: Apply "page-sidebar-menu-hover-submenu" class right after "page-sidebar-menu" to enable hoverable(hover vs accordion) sub menu mode -->
<!-- DOC: Apply "page-sidebar-menu-closed" class right after "page-sidebar-menu" to collapse("page-sidebar-closed" class must be applied to the body element) the sidebar sub menu mode -->
<!-- DOC: Set data-auto-scroll="false" to disable the sidebar from auto scrolling/focusing -->
<!-- DOC: Set data-keep-expand="true" to keep the submenues expanded -->
<!-- DOC: Set data-auto-speed="200" to adjust the sub menu slide up/down speed -->
<ul class="page-sidebar-menu " data-keep-expanded="false" data-auto-scroll="true" data-slide-speed="200">
<li class="start ">
<a href="index.html">
<i class="icon-home"></i>
<span class="title">Dashboard</span>
</a>
</li>
<li>
<a href="javascript:;">
<i class="icon-basket"></i>
<span class="title">eCommerce</span>
<span class="arrow "></span>
</a>
<ul class="sub-menu">
<li>
<a href="ecommerce_index.html">
<i class="icon-home"></i>
Dashboard</a>
</li>
<li>
<a href="ecommerce_orders.html">
<i class="icon-basket"></i>
Orders</a>
</li>
<li>
<a href="ecommerce_orders_view.html">
<i class="icon-tag"></i>
Order View</a>
</li>
<li>
<a href="ecommerce_products.html">
<i class="icon-handbag"></i>
Products</a>
</li>
<li>
<a href="ecommerce_products_edit.html">
<i class="icon-pencil"></i>
Product Edit</a>
</li>
</ul>
</li>
<li>
<a href="javascript:;">
<i class="icon-rocket"></i>
<span class="title">Page Layouts</span>
<span class="arrow "></span>
</a>
<ul class="sub-menu">
<li>
<a href="layout_sidebar_reversed.html">
<span class="badge badge-warning">new</span>Right Sidebar Page</a>
</li>
<li>
<a href="layout_sidebar_fixed.html">
Sidebar Fixed Page</a>
</li>
<li>
<a href="layout_sidebar_closed.html">
Sidebar Closed Page</a>
</li>
<li>
<a href="layout_blank_page.html">
Blank Page</a>
</li>
<li>
<a href="layout_boxed_page.html">
Boxed Page</a>
</li>
<li>
<a href="layout_language_bar.html">
Language Switch Bar</a>
</li>
</ul>
</li>
<li class="active open">
<a href="javascript:;">
<i class="icon-diamond"></i>
<span class="title">UI Features</span>
<span class="arrow open"></span>
</a>
<ul class="sub-menu">
<li>
<a href="ui_general.html">
General Components</a>
</li>
<li>
<a href="ui_buttons.html">
Buttons</a>
</li>
<li>
<a href="ui_icons.html">
<span class="badge badge-danger">new</span>Font Icons</a>
</li>
<li>
<a href="ui_colors.html">
Flat UI Colors</a>
</li>
<li>
<a href="ui_typography.html">
Typography</a>
</li>
<li>
<a href="ui_tabs_accordions_navs.html">
Tabs, Accordions & Navs</a>
</li>
<li>
<a href="ui_tree.html">
<span class="badge badge-danger">new</span>Tree View</a>
</li>
<li>
<a href="ui_page_progress_style_1.html">
<span class="badge badge-warning">new</span>Page Progress Bar - Style 1</a>
</li>
<li>
<a href="ui_blockui.html">
Block UI</a>
</li>
<li>
<a href="ui_bootstrap_growl.html">
<span class="badge badge-roundless badge-warning">new</span>Bootstrap Growl Notifications</a>
</li>
<li>
<a href="ui_notific8.html">
Notific8 Notifications</a>
</li>
<li>
<a href="ui_toastr.html">
Toastr Notifications</a>
</li>
<li>
<a href="ui_alert_dialog_api.html">
<span class="badge badge-danger">new</span>Alerts & Dialogs API</a>
</li>
<li>
<a href="ui_session_timeout.html">
Session Timeout</a>
</li>
<li class="active">
<a href="ui_idle_timeout.html">
User Idle Timeout</a>
</li>
<li>
<a href="ui_modals.html">
Modals</a>
</li>
<li>
<a href="ui_extended_modals.html">
Extended Modals</a>
</li>
<li>
<a href="ui_tiles.html">
Tiles</a>
</li>
<li>
<a href="ui_datepaginator.html">
<span class="badge badge-success">new</span>Date Paginator</a>
</li>
<li>
<a href="ui_nestable.html">
Nestable List</a>
</li>
</ul>
</li>
<li>
<a href="javascript:;">
<i class="icon-puzzle"></i>
<span class="title">UI Components</span>
<span class="arrow "></span>
</a>
<ul class="sub-menu">
<li>
<a href="components_pickers.html">
Date & Time Pickers</a>
</li>
<li>
<a href="components_context_menu.html">
Context Menu</a>
</li>
<li>
<a href="components_dropdowns.html">
Custom Dropdowns</a>
</li>
<li>
<a href="components_form_tools.html">
Form Widgets & Tools</a>
</li>
<li>
<a href="components_form_tools2.html">
Form Widgets & Tools 2</a>
</li>
<li>
<a href="components_editors.html">
Markdown & WYSIWYG Editors</a>
</li>
<li>
<a href="components_ion_sliders.html">
Ion Range Sliders</a>
</li>
<li>
<a href="components_noui_sliders.html">
NoUI Range Sliders</a>
</li>
<li>
<a href="components_jqueryui_sliders.html">
jQuery UI Sliders</a>
</li>
<li>
<a href="components_knob_dials.html">
Knob Circle Dials</a>
</li>
</ul>
</li>
<!-- BEGIN ANGULARJS LINK -->
<li class="tooltips" data-container="body" data-placement="right" data-html="true" data-original-title="AngularJS version demo">
<a href="angularjs" target="_blank">
<i class="icon-paper-plane"></i>
<span class="title">
AngularJS Version </span>
</a>
</li>
<!-- END ANGULARJS LINK -->
<li>
<a href="javascript:;">
<i class="icon-settings"></i>
<span class="title">Form Stuff</span>
<span class="arrow "></span>
</a>
<ul class="sub-menu">
<li>
<a href="form_controls_md.html">
<span class="badge badge-roundless badge-danger">new</span>Material Design<br>
Form Controls</a>
</li>
<li>
<a href="form_controls.html">
Bootstrap<br>
Form Controls</a>
</li>
<li>
<a href="form_layouts.html">
Form Layouts</a>
</li>
<li>
<a href="form_editable.html">
<span class="badge badge-warning">new</span>Form X-editable</a>
</li>
<li>
<a href="form_wizard.html">
Form Wizard</a>
</li>
<li>
<a href="form_validation.html">
Form Validation</a>
</li>
<li>
<a href="form_image_crop.html">
<span class="badge badge-danger">new</span>Image Cropping</a>
</li>
<li>
<a href="form_fileupload.html">
Multiple File Upload</a>
</li>
<li>
<a href="form_dropzone.html">
Dropzone File Upload</a>
</li>
</ul>
</li>
<li>
<a href="javascript:;">
<i class="icon-briefcase"></i>
<span class="title">Data Tables</span>
<span class="arrow "></span>
</a>
<ul class="sub-menu">
<li>
<a href="table_basic.html">
Basic Datatables</a>
</li>
<li>
<a href="table_tree.html">
Tree Datatables</a>
</li>
<li>
<a href="table_responsive.html">
Responsive Datatables</a>
</li>
<li>
<a href="table_managed.html">
Managed Datatables</a>
</li>
<li>
<a href="table_editable.html">
Editable Datatables</a>
</li>
<li>
<a href="table_advanced.html">
Advanced Datatables</a>
</li>
<li>
<a href="table_ajax.html">
Ajax Datatables</a>
</li>
</ul>
</li>
<li>
<a href="javascript:;">
<i class="icon-wallet"></i>
<span class="title">Portlets</span>
<span class="arrow "></span>
</a>
<ul class="sub-menu">
<li>
<a href="portlet_general.html">
General Portlets</a>
</li>
<li>
<a href="portlet_general2.html">
<span class="badge badge-danger">new</span>New Portlets #1</a>
</li>
<li>
<a href="portlet_general3.html">
<span class="badge badge-danger">new</span>New Portlets #2</a>
</li>
<li>
<a href="portlet_ajax.html">
Ajax Portlets</a>
</li>
<li>
<a href="portlet_draggable.html">
Draggable Portlets</a>
</li>
</ul>
</li>
<li>
<a href="javascript:;">
<i class="icon-bar-chart"></i>
<span class="title">Charts</span>
<span class="arrow "></span>
</a>
<ul class="sub-menu">
<li>
<a href="charts_amcharts.html">
Amchart</a>
</li>
<li>
<a href="charts_flotcharts.html">
Flotchart</a>
</li>
</ul>
</li>
<li>
<a href="javascript:;">
<i class="icon-docs"></i>
<span class="title">Pages</span>
<span class="arrow "></span>
</a>
<ul class="sub-menu">
<li>
<a href="page_timeline.html">
<i class="icon-paper-plane"></i>
<span class="badge badge-warning">2</span>New Timeline</a>
</li>
<li>
<a href="extra_profile.html">
<i class="icon-user-following"></i>
<span class="badge badge-success badge-roundless">new</span>New User Profile</a>
</li>
<li>
<a href="page_todo.html">
<i class="icon-hourglass"></i>
<span class="badge badge-danger">4</span>Todo</a>
</li>
<li>
<a href="inbox.html">
<i class="icon-envelope"></i>
<span class="badge badge-danger">4</span>Inbox</a>
</li>
<li>
<a href="extra_faq.html">
<i class="icon-info"></i>
FAQ</a>
</li>
<li>
<a href="page_portfolio.html">
<i class="icon-feed"></i>
Portfolio</a>
</li>
<li>
<a href="page_timeline.html">
<i class="icon-clock"></i>
<span class="badge badge-info">4</span>Timeline</a>
</li>
<li>
<a href="page_coming_soon.html">
<i class="icon-flag"></i>
Coming Soon</a>
</li>
<li>
<a href="page_calendar.html">
<i class="icon-calendar"></i>
<span class="badge badge-danger">14</span>Calendar</a>
</li>
<li>
<a href="extra_invoice.html">
<i class="icon-flag"></i>
Invoice</a>
</li>
<li>
<a href="page_blog.html">
<i class="icon-speech"></i>
Blog</a>
</li>
<li>
<a href="page_blog_item.html">
<i class="icon-link"></i>
Blog Post</a>
</li>
<li>
<a href="page_news.html">
<i class="icon-eye"></i>
<span class="badge badge-success">9</span>News</a>
</li>
<li>
<a href="page_news_item.html">
<i class="icon-bell"></i>
News View</a>
</li>
<li>
<a href="page_timeline_old.html">
<i class="icon-paper-plane"></i>
<span class="badge badge-warning">2</span>Old Timeline</a>
</li>
<li>
<a href="extra_profile_old.html">
<i class="icon-user"></i>
Old User Profile</a>
</li>
</ul>
</li>
<li>
<a href="javascript:;">
<i class="icon-present"></i>
<span class="title">Extra</span>
<span class="arrow "></span>
</a>
<ul class="sub-menu">
<li>
<a href="page_about.html">
About Us</a>
</li>
<li>
<a href="page_contact.html">
Contact Us</a>
</li>
<li>
<a href="extra_search.html">
Search Results</a>
</li>
<li>
<a href="extra_pricing_table.html">
Pricing Tables</a>
</li>
<li>
<a href="extra_404_option1.html">
404 Page Option 1</a>
</li>
<li>
<a href="extra_404_option2.html">
404 Page Option 2</a>
</li>
<li>
<a href="extra_404_option3.html">
404 Page Option 3</a>
</li>
<li>
<a href="extra_500_option1.html">
500 Page Option 1</a>
</li>
<li>
<a href="extra_500_option2.html">
500 Page Option 2</a>
</li>
</ul>
</li>
<li>
<a href="javascript:;">
<i class="icon-folder"></i>
<span class="title">Multi Level Menu</span>
<span class="arrow "></span>
</a>
<ul class="sub-menu">
<li>
<a href="javascript:;">
<i class="icon-settings"></i> Item 1 <span class="arrow"></span>
</a>
<ul class="sub-menu">
<li>
<a href="javascript:;">
<i class="icon-user"></i>
Sample Link 1 <span class="arrow"></span>
</a>
<ul class="sub-menu">
<li>
<a href="#"><i class="icon-power"></i> Sample Link 1</a>
</li>
<li>
<a href="#"><i class="icon-paper-plane"></i> Sample Link 1</a>
</li>
<li>
<a href="#"><i class="icon-star"></i> Sample Link 1</a>
</li>
</ul>
</li>
<li>
<a href="#"><i class="icon-camera"></i> Sample Link 1</a>
</li>
<li>
<a href="#"><i class="icon-link"></i> Sample Link 2</a>
</li>
<li>
<a href="#"><i class="icon-pointer"></i> Sample Link 3</a>
</li>
</ul>
</li>
<li>
<a href="javascript:;">
<i class="icon-globe"></i> Item 2 <span class="arrow"></span>
</a>
<ul class="sub-menu">
<li>
<a href="#"><i class="icon-tag"></i> Sample Link 1</a>
</li>
<li>
<a href="#"><i class="icon-pencil"></i> Sample Link 1</a>
</li>
<li>
<a href="#"><i class="icon-graph"></i> Sample Link 1</a>
</li>
</ul>
</li>
<li>
<a href="#">
<i class="icon-bar-chart"></i>
Item 3 </a>
</li>
</ul>
</li>
<li>
<a href="javascript:;">
<i class="icon-user"></i>
<span class="title">Login Options</span>
<span class="arrow "></span>
</a>
<ul class="sub-menu">
<li>
<a href="login.html">
Login Form 1</a>
</li>
<li>
<a href="login_2.html">
Login Form 2</a>
</li>
<li>
<a href="login_3.html">
Login Form 3</a>
</li>
<li>
<a href="login_soft.html">
Login Form 4</a>
</li>
<li>
<a href="extra_lock.html">
Lock Screen 1</a>
</li>
<li>
<a href="extra_lock2.html">
Lock Screen 2</a>
</li>
</ul>
</li>
<li>
<a href="javascript:;">
<i class="icon-envelope-open"></i>
<span class="title">Email Templates</span>
<span class="arrow "></span>
</a>
<ul class="sub-menu">
<li>
<a href="email_template1.html">
New Email Template 1</a>
</li>
<li>
<a href="email_template2.html">
New Email Template 2</a>
</li>
<li>
<a href="email_template3.html">
New Email Template 3</a>
</li>
<li>
<a href="email_template4.html">
New Email Template 4</a>
</li>
<li>
<a href="email_newsletter.html">
Old Email Template 1</a>
</li>
<li>
<a href="email_system.html">
Old Email Template 2</a>
</li>
</ul>
</li>
<li class="last ">
<a href="javascript:;">
<i class="icon-pointer"></i>
<span class="title">Maps</span>
<span class="arrow "></span>
</a>
<ul class="sub-menu">
<li>
<a href="maps_google.html">
Google Maps</a>
</li>
<li>
<a href="maps_vector.html">
Vector Maps</a>
</li>
</ul>
</li>
</ul>
<!-- END SIDEBAR MENU -->
</div>
</div>
<!-- END SIDEBAR -->
<!-- BEGIN CONTENT -->
<div class="page-content-wrapper">
<div class="page-content">
<!-- BEGIN SAMPLE PORTLET CONFIGURATION MODAL FORM-->
<div class="modal fade" id="portlet-config" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"></button>
<h4 class="modal-title">Modal title</h4>
</div>
<div class="modal-body">
Widget settings form goes here
</div>
<div class="modal-footer">
<button type="button" class="btn blue">Save changes</button>
<button type="button" class="btn default" data-dismiss="modal">Close</button>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->
<!-- END SAMPLE PORTLET CONFIGURATION MODAL FORM-->
<!-- BEGIN PAGE HEADER-->
<!-- BEGIN PAGE HEAD -->
<div class="page-head">
<!-- BEGIN PAGE TITLE -->
<div class="page-title">
<h1>User Idle Timeout <small>user idle timeout control</small></h1>
</div>
<!-- END PAGE TITLE -->
<!-- BEGIN PAGE TOOLBAR -->
<div class="page-toolbar">
<!-- BEGIN THEME PANEL -->
<div class="btn-group btn-theme-panel">
<a href="javascript:;" class="btn dropdown-toggle" data-toggle="dropdown">
<i class="icon-settings"></i>
</a>
<div class="dropdown-menu theme-panel pull-right dropdown-custom hold-on-click">
<div class="row">
<div class="col-md-4 col-sm-4 col-xs-12">
<h3>THEME</h3>
<ul class="theme-colors">
<li class="theme-color theme-color-default active" data-theme="default">
<span class="theme-color-view"></span>
<span class="theme-color-name">Dark Header</span>
</li>
<li class="theme-color theme-color-light" data-theme="light">
<span class="theme-color-view"></span>
<span class="theme-color-name">Light Header</span>
</li>
</ul>
</div>
<div class="col-md-8 col-sm-8 col-xs-12 seperator">
<h3>LAYOUT</h3>
<ul class="theme-settings">
<li>
Theme Style
<select class="layout-style-option form-control input-small input-sm">
<option value="square" selected="selected">Square corners</option>
<option value="rounded">Rounded corners</option>
</select>
</li>
<li>
Layout
<select class="layout-option form-control input-small input-sm">
<option value="fluid" selected="selected">Fluid</option>
<option value="boxed">Boxed</option>
</select>
</li>
<li>
Header
<select class="page-header-option form-control input-small input-sm">
<option value="fixed" selected="selected">Fixed</option>
<option value="default">Default</option>
</select>
</li>
<li>
Top Dropdowns
<select class="page-header-top-dropdown-style-option form-control input-small input-sm">
<option value="light">Light</option>
<option value="dark" selected="selected">Dark</option>
</select>
</li>
<li>
Sidebar Mode
<select class="sidebar-option form-control input-small input-sm">
<option value="fixed">Fixed</option>
<option value="default" selected="selected">Default</option>
</select>
</li>
<li>
Sidebar Menu
<select class="sidebar-menu-option form-control input-small input-sm">
<option value="accordion" selected="selected">Accordion</option>
<option value="hover">Hover</option>
</select>
</li>
<li>
Sidebar Position
<select class="sidebar-pos-option form-control input-small input-sm">
<option value="left" selected="selected">Left</option>
<option value="right">Right</option>
</select>
</li>
<li>
Footer
<select class="page-footer-option form-control input-small input-sm">
<option value="fixed">Fixed</option>
<option value="default" selected="selected">Default</option>
</select>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- END THEME PANEL -->
</div>
<!-- END PAGE TOOLBAR -->
</div>
<!-- END PAGE HEAD -->
<!-- BEGIN PAGE BREADCRUMB -->
<ul class="page-breadcrumb breadcrumb">
<li>
<a href="index.html">Home</a>
<i class="fa fa-circle"></i>
</li>
<li>
<a href="#">UI Features</a>
<i class="fa fa-circle"></i>
</li>
<li>
<a href="#">User Idle Timeout</a>
</li>
</ul>
<!-- END PAGE BREADCRUMB -->
<!-- END PAGE HEADER-->
<!-- BEGIN PAGE CONTENT-->
<div class="row">
<div class="col-md-12">
<div class="note note-danger note-shadow">
<h4 class="block">User Idle Timeout</h4>
<p>
This plugin allows you to detect when a user becomes idle (detection provided by Paul Irish's idletimer plugin) and notify the user his/her session is about to expire. Similar to the technique seen on Mint.com. Polling requests are automatically sent to the server at a configurable interval, maintaining the users session while s/he is using your application for long periods of time.
</p>
<p>
This idle timeout countdown is triggered after 5 seconds. <code>Keep your mouse and keyboard still!</code>
A polling request is sent to the server every two seconds to keep the server side session alive. I've set this parameter to an extremely low number for demo purposes (timeout is only 5 seconds), but in reality, this should be much higher. To learn more please check out <a href="https://github.com/ehynds/jquery-idle-timeout" target="_blank">
the plugin's official homepage </a>
.
</p>
</div>
</div>
</div>
<!-- END PAGE CONTENT-->
</div>
</div>
<!-- END CONTENT -->
</div>
<!-- END CONTAINER -->
<!-- BEGIN FOOTER -->
<div class="page-footer">
<div class="page-footer-inner">
2014 © Metronic by keenthemes.
</div>
<div class="scroll-to-top">
<i class="icon-arrow-up"></i>
</div>
</div>
<!-- END FOOTER -->
</div>
<!-- BEGIN JAVASCRIPTS(Load javascripts at bottom, this will reduce page load time) -->
<!-- BEGIN CORE PLUGINS -->
<!--[if lt IE 9]>
<script src="../../assets/global/plugins/respond.min.js"></script>
<script src="../../assets/global/plugins/excanvas.min.js"></script>
<![endif]-->
<script src="../../assets/global/plugins/jquery.min.js" type="text/javascript"></script>
<script src="../../assets/global/plugins/jquery-migrate.min.js" type="text/javascript"></script>
<!-- IMPORTANT! Load jquery-ui.min.js before bootstrap.min.js to fix bootstrap tooltip conflict with jquery ui tooltip -->
<script src="../../assets/global/plugins/jquery-ui/jquery-ui.min.js" type="text/javascript"></script>
<script src="../../assets/global/plugins/bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
<script src="../../assets/global/plugins/bootstrap-hover-dropdown/bootstrap-hover-dropdown.min.js" type="text/javascript"></script>
<script src="../../assets/global/plugins/jquery-slimscroll/jquery.slimscroll.min.js" type="text/javascript"></script>
<script src="../../assets/global/plugins/jquery.blockui.min.js" type="text/javascript"></script>
<script src="../../assets/global/plugins/jquery.cokie.min.js" type="text/javascript"></script>
<script src="../../assets/global/plugins/uniform/jquery.uniform.min.js" type="text/javascript"></script>
<script src="../../assets/global/plugins/bootstrap-switch/js/bootstrap-switch.min.js" type="text/javascript"></script>
<!-- END CORE PLUGINS -->
<!-- BEGIN PAGE LEVEL SCRIPTS -->
<script src="../../assets/global/plugins/jquery-idle-timeout/jquery.idletimeout.js" type="text/javascript"></script>
<script src="../../assets/global/plugins/jquery-idle-timeout/jquery.idletimer.js" type="text/javascript"></script>
<!-- END PAGE LEVEL SCRIPTS -->
<script src="../../assets/global/scripts/metronic.js" type="text/javascript"></script>
<script src="../../assets/admin/layout4/scripts/layout.js" type="text/javascript"></script>
<script src="../../assets/admin/layout4/scripts/demo.js" type="text/javascript"></script>
<script src="../../assets/admin/pages/scripts/ui-idletimeout.js"></script>
<script>
jQuery(document).ready(function() {
Metronic.init(); // init metronic core components
Layout.init(); // init current layout
Demo.init(); // init demo features
// initialize session timeout settings
UIIdleTimeout.init();
});
</script>
<!-- END JAVASCRIPTS -->
</body>
<!-- END BODY -->
</html> |
src/sap.ui.core/test/sap/ui/core/qunit/bootstrap/BootstrapWithinBody.qunit.html | SQCLabs/openui5 | <!DOCTYPE HTML>
<!--
Tests the bootstrap variant where the bootstrap tag is part of the body.
@author Frank Weigel
-->
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<title>Test Page for Bootstrap within Body</title>
<!-- Initialization -->
<link rel="stylesheet" href="../../../../../../resources/sap/ui/thirdparty/qunit.css" type="text/css" media="screen">
<script src="../../../../../../resources/sap/ui/thirdparty/qunit.js"></script>
<script src="../../../../../../resources/sap/ui/qunit/qunit-junit.js"></script>
<script>
QUnit.test("Check Core Functionality", function(assert) {
/* check that SAPUI5 has been loaded */
assert.ok(jQuery, "jQuery has been loaded");
assert.ok(jQuery.sap, "jQuery.sap namespace exists");
assert.ok(window.sap, "sap namespace exists");
assert.ok(sap.ui, "sap.ui namespace exists");
assert.ok(typeof sap.ui.getCore === "function", "sap.ui.getCore exists");
assert.ok(sap.ui.getCore(), "sap.ui.getCore() returns a value");
var oCfg = new sap.ui.core.Configuration();
assert.deepEqual(oCfg.modules, ["sap.ui.commons.library"], "Libraries");
});
QUnit.test("Check boot() has run", function(assert) {
var id = jQuery("html").attr("data-sap-ui-browser");
if ( sap.ui.Device.browser.name ) {
assert.ok(typeof id === "string" && id, "browser is known: data-sap-ui-browser should have been set and must not be empty");
} else {
assert.ok(!id, "browser is unknown: data-sap-ui-browser should not have been set (or empty)");
}
assert.ok(jQuery.sap.getObject("sap.ui.commons"), "lib namespace exists");
assert.ok(sap.ui.lazyRequire._isStub("sap.ui.commons.Button"), "Control from lib is available at least as lazy stub");
new sap.ui.commons.Button();
assert.ok(typeof sap.ui.commons.Button.prototype.attachPress === "function", "control lazily loaded initialized");
});
</script>
</head>
<body class="sapUiBody" role="application">
<div id="qunit"></div>
<script src="../../shared-config.js"></script>
<script id="sap-ui-bootstrap"
src="../../../../../../resources/sap-ui-core.js"
data-sap-ui-libs="sap.ui.commons"
>
</script>
<script src="../../../../../../resources/sap/ui/qunit/QUnitUtils.js"></script>
</body>
</html> |
java/java-impl/src/inspectionDescriptions/RedundantOperationOnEmptyContainer.html | leafclick/intellij-community | <html>
<body>
Reports redundant operations on empty collections, maps or arrays. Iterating, removing elements, sorting,
and some other operations on empty collections have no effect and could be removed or signal about a possible bug.
<!-- tooltip end -->
<p><small>New in 2019.1</small></p>
</body>
</html> |
waltz-ng/client/examples/demo-endpoint-application.html | khartec/waltz | <!--
~ Waltz - Enterprise Architecture
~ Copyright (C) 2016, 2017, 2018, 2019 Waltz open source project
~ See README.md for more information
~
~ 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
~
-->
<div>
<waltz-page-header name="Application" small="Endpoint & Entity">
</waltz-page-header>
<waltz-section name="Application Entity">
<table class="table table-condensed table-hover">
<thead>
<tr>
<th>Attribute</th>
<th>Description</th>
<th>Type</th>
<th>Default</th>
<th>Restrictions</th>
</tr>
</thead>
<tr>
<td> name </td>
<td> Primary name of the application, will be used when a reference to the application is shown</td>
<td> String </td>
<td> - </td>
<td> Uniqueness </td>
</tr>
<tr>
<td> id </td>
<td> Generated id for the application </td>
<td> Long </td>
<td> <span class="text-muted">auto assigned</span> </td>
<td> PK </td>
</tr>
<tr>
<td> description </td>
<td> Description for the application </td>
<td> String </td>
<td> - </td>
<td> - </td>
</tr>
<tr>
<td> asset_code </td>
<td> An identifier used within your enterprise to identify the application </td>
<td> String </td>
<td> - </td>
<td> - </td>
</tr>
<tr>
<td> aliases </td>
<td> A collection of zero or more aliases for this application, primarily used when searching </td>
<td> String[] </td>
<td> [] </td>
<td> - </td>
</tr>
<tr>
<td> kind </td>
<td> Type of the application </td>
<td> Enumeration (see below) </td>
<td> IN_HOUSE </td>
<td> Required </td>
</tr>
<tr>
<td> lifecycle_phase </td>
<td> Current point in the applications lifecycle. Used for quick filtering. </td>
<td> Enumeration (see below) </td>
<td> PRODUCTION </td>
<td> Required </td>
</tr>
<tr>
<td> organisational_unit_id </td>
<td>
Applications are ultimately owned by a single organisational unit,
this is often used to determine which rule-sets to apply to an application
</td>
<td> Long </td>
<td> - </td>
<td> Required, FK to Organisational Unit </td>
</tr>
<tr>
<td> tags </td>
<td> A collection of zero or more tags for this application, primarily used for classifying applications </td>
<td> String[] </td>
<td> [] </td>
<td> - </td>
</tr>
</table>
</waltz-section>
<waltz-section name="Enumerated Values">
<h4>Application Kind</h4>
<table class="table table-condensed">
<thead>
<tr>
<th>Value</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>IN_HOUSE</td>
<td>Internally developed applications</td>
</tr>
<tr>
<td>INTERNALLY_HOSTED</td>
<td>Third party application hosted within the enterprise (e.g. AutoSys)</td>
</tr>
<tr>
<td>EXTERNALLY_HOSTED</td>
<td>Application hosted outside of the enterpries (e.g. SalesForce)</td>
</tr>
<tr>
<td>EUC</td>
<td>End User Computing (e.g. custom spreadsheets)</td>
</tr>
<tr>
<td>THIRD_PARTY</td>
<td>Third party applications</td>
</tr>
<tr>
<td>CUSTOMISED</td>
<td>Customised applications, typically a 3rd party offering that has been tailored to the organisation</td>
</tr>
</tbody>
</table>
<hr>
<h4>Lifecycle Phase</h4>
<table class="table table-condensed">
<thead>
<tr>
<th>Value</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>PRODUCTION</td>
<td>Application is currently used in production</td>
</tr>
<tr>
<td>DEVELOPMENT</td>
<td>Application is under active development</td>
</tr>
<tr>
<td>CONCEPTUAL</td>
<td>Conceptual applications can be used as placeholders to show future state enterprise configurations</td>
</tr>
<tr>
<td>RETIRED</td>
<td>Application is no longer running in production, nor is actively being developed</td>
</tr>
</tbody>
</table>
</waltz-section>
<waltz-section name="Example JSON Representation">
<pre>
{
"assetCode": "WLTZ-01",
"aliases": [
"Rumba",
"Tango"
],
"organisationalUnitId": 190,
"kind": "INTERNALLY_HOSTED",
"lifecyclePhase": "PRODUCTION",
"id": 1,
"name": "Waltz",
"description": "An architecture tool!",
"tags": [
"classifier01"
],
}
</pre>
</waltz-section>
<waltz-section name="Primary Endpoints">
<table class="table table-condensed">
<thead>
<tr>
<th>URL</th>
<th>Return</th>
<th>Description</th>
</tr>
</thead>
<tr>
<td><code>api/application/id/(id:long)</code></td>
<td>Single application record</td>
<td>Returns the application associated to the given id</td>
</tr>
<tr>
<td><code>api/application/search/(query:string)</code></td>
<td>List of application records</td>
<td>Returns applications which match the given <code>query</code></td>
</tr>
<tr>
<td><code>api/application/org-unit/(org-unit-id:long)</code></td>
<td>List of application records</td>
<td>Returns applications belonging to the given organisational unit</td>
</tr>
<tr>
<td><code>api/application/org-unit-tree/(org-unit-id:long)</code></td>
<td>List of application records</td>
<td>Returns applications belonging to the given organisational unit or any of its sub org-units</td>
</tr>
</table>
</waltz-section>
</div>
|
waltz-ng/client/logical-data-element/components/logical-data-elements-section/logical-data-elements-section.html | khartec/waltz | <!--
~ Waltz - Enterprise Architecture
~ Copyright (C) 2016, 2017, 2018, 2019 Waltz open source project
~ See README.md for more information
~
~ 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
~
-->
<div>
<div class="row" ng-if="$ctrl.dataElements.length > 0">
<div class="col-md-6"
ng-repeat="typeGroup in $ctrl.groupedDataElements">
<div>
<h4 ng-bind="typeGroup.dataType.name"></h4>
<div ng-class="{'waltz-scroll-region-250': typeGroup.dataElementRefs.length > 15 }">
<ul class="small list-unstyled">
<li ng-repeat="dataElementRef in typeGroup.dataElementRefs">
<waltz-entity-link entity-ref="dataElementRef"
icon-placement="none">
</waltz-entity-link>
</li>
</ul>
</div>
</div>
</div>
</div>
<waltz-no-data ng-if="$ctrl.dataElements.length == 0">
<message>
<strong>No logical data elements found</strong>
</message>
</waltz-no-data>
</div> |
docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBIBaseOverlaySettings.html | blinkinput/blinkinput-ios | <!DOCTYPE html>
<html lang="en">
<head>
<title>MBIBaseOverlaySettings Class Reference</title>
<link rel="stylesheet" type="text/css" href="../css/jazzy.css" />
<link rel="stylesheet" type="text/css" href="../css/highlight.css" />
<meta charset="utf-8">
<script src="../js/jquery.min.js" defer></script>
<script src="../js/jazzy.js" defer></script>
<script src="../js/lunr.min.js" defer></script>
<script src="../js/typeahead.jquery.js" defer></script>
<script src="../js/jazzy.search.js" defer></script>
</head>
<body>
<a name="//apple_ref/objc/Class/MBIBaseOverlaySettings" class="dashAnchor"></a>
<a title="MBIBaseOverlaySettings Class Reference"></a>
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
PPBlinkOCR v5.0.0 Docs
</a>
(76% documented)
</p>
<p class="header-col--secondary">
<form role="search" action="../search.json">
<input type="text" placeholder="Search documentation" data-typeahead>
</form>
</p>
<p class="header-col header-col--secondary">
<a class="header-link" href="https://github.com/blinkinput/blinkinput-ios">
<img class="header-icon" src="../img/gh.png"/>
View on GitHub
</a>
</p>
</header>
<p class="breadcrumbs">
<a class="breadcrumb" href="../index.html">PPBlinkOCR Reference</a>
<img class="carat" src="../img/carat.png" />
MBIBaseOverlaySettings Class Reference
</p>
<div class="content-wrapper">
<nav class="navigation">
<ul class="nav-groups">
<li class="nav-group-name">
<a class="nav-group-name-link" href="../Classes.html">Classes</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIAmountParser.html">MBIAmountParser</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIAmountParserResult.html">MBIAmountParserResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIBarcodeOverlaySettings.html">MBIBarcodeOverlaySettings</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIBarcodeOverlayViewController.html">MBIBarcodeOverlayViewController</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIBarcodeRecognizer.html">MBIBarcodeRecognizer</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIBarcodeRecognizerResult.html">MBIBarcodeRecognizerResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIBaseOcrEngineOptions.html">MBIBaseOcrEngineOptions</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIBaseOverlaySettings.html">MBIBaseOverlaySettings</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIBaseOverlayViewController.html">MBIBaseOverlayViewController</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIBlinkInputRecognizer.html">MBIBlinkInputRecognizer</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIBlinkInputRecognizerResult.html">MBIBlinkInputRecognizerResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBICameraSettings.html">MBICameraSettings</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBICharWithVariants.html">MBICharWithVariants</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBICustomOverlayViewController.html">MBICustomOverlayViewController</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIDPIBasedDewarpPolicy.html">MBIDPIBasedDewarpPolicy</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIDateParser.html">MBIDateParser</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIDateParserResult.html">MBIDateParserResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIDateResult.html">MBIDateResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIDeepOcrEngineOptions.html">MBIDeepOcrEngineOptions</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIDetector.html">MBIDetector</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIDetectorRecognizer.html">MBIDetectorRecognizer</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIDetectorRecognizerResult.html">MBIDetectorRecognizerResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIDetectorResult.html">MBIDetectorResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIDewarpPolicy.html">MBIDewarpPolicy</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIDisplayableDetection.html">MBIDisplayableDetection</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIDisplayableObject.html">MBIDisplayableObject</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIDisplayablePointsDetection.html">MBIDisplayablePointsDetection</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIDisplayableQuadDetection.html">MBIDisplayableQuadDetection</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIDocumentCaptureOverlaySettings.html">MBIDocumentCaptureOverlaySettings</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIDocumentCaptureOverlayViewController.html">MBIDocumentCaptureOverlayViewController</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIDocumentCaptureRecognizer.html">MBIDocumentCaptureRecognizer</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIDocumentCaptureRecognizerResult.html">MBIDocumentCaptureRecognizerResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIDocumentCaptureSubview.html">MBIDocumentCaptureSubview</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIDocumentDetector.html">MBIDocumentDetector</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIDocumentDetectorResult.html">MBIDocumentDetectorResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIDocumentSpecification.html">MBIDocumentSpecification</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIDotsResultSubview.html">MBIDotsResultSubview</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIDotsSubview.html">MBIDotsSubview</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIEmailParser.html">MBIEmailParser</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIEmailParserResult.html">MBIEmailParserResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes.html#/c:objc(cs)MBIEntity">MBIEntity</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIFieldByFieldOverlaySettings.html">MBIFieldByFieldOverlaySettings</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIFieldByFieldOverlayViewController.html">MBIFieldByFieldOverlayViewController</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIFixedDewarpPolicy.html">MBIFixedDewarpPolicy</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIFrameGrabberRecognizer.html">MBIFrameGrabberRecognizer</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIGlareStatusSubview.html">MBIGlareStatusSubview</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIIbanParser.html">MBIIbanParser</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIIbanParserResult.html">MBIIbanParserResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIImage.html">MBIImage</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIImageReturnProcessor.html">MBIImageReturnProcessor</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIImageReturnProcessorResult.html">MBIImageReturnProcessorResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBILicensePlatesParser.html">MBILicensePlatesParser</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBILicensePlatesParserResult.html">MBILicensePlatesParserResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBILogger.html">MBILogger</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIMicroblinkApp.html">MBIMicroblinkApp</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIMicroblinkSDK.html">MBIMicroblinkSDK</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIModernViewfinderSubview.html">MBIModernViewfinderSubview</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIMrtdDetector.html">MBIMrtdDetector</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIMrtdDetectorResult.html">MBIMrtdDetectorResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIMrtdSpecification.html">MBIMrtdSpecification</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBINoUpScalingDewarpPolicy.html">MBINoUpScalingDewarpPolicy</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIOcrBlock.html">MBIOcrBlock</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIOcrChar.html">MBIOcrChar</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIOcrCharKey.html">MBIOcrCharKey</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIOcrEngineOptions.html">MBIOcrEngineOptions</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIOcrLayout.html">MBIOcrLayout</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIOcrLine.html">MBIOcrLine</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes.html#/c:objc(cs)MBIOcrResultSubview">MBIOcrResultSubview</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIOverlaySettings.html">MBIOverlaySettings</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIOverlayViewController.html">MBIOverlayViewController</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIParser.html">MBIParser</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIParserGroupProcessor.html">MBIParserGroupProcessor</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIParserGroupProcessorResult.html">MBIParserGroupProcessorResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIParserResult.html">MBIParserResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIPdf417Recognizer.html">MBIPdf417Recognizer</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIPdf417RecognizerResult.html">MBIPdf417RecognizerResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIPosition.html">MBIPosition</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIProcessor.html">MBIProcessor</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIProcessorGroup.html">MBIProcessorGroup</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIProcessorResult.html">MBIProcessorResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIQuadDetector.html">MBIQuadDetector</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIQuadDetectorResult.html">MBIQuadDetectorResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIQuadWithSizeDetector.html">MBIQuadWithSizeDetector</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIQuadWithSizeDetectorResult.html">MBIQuadWithSizeDetectorResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIQuadrangle.html">MBIQuadrangle</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIRawParser.html">MBIRawParser</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIRawParserResult.html">MBIRawParserResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIRecognizer.html">MBIRecognizer</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIRecognizerCollection.html">MBIRecognizerCollection</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIRecognizerResult.html">MBIRecognizerResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIRecognizerRunner.html">MBIRecognizerRunner</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIRecognizerRunnerMetadataDelegates.html">MBIRecognizerRunnerMetadataDelegates</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIRecognizerRunnerViewControllerMetadataDelegates.html">MBIRecognizerRunnerViewControllerMetadataDelegates</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIRegexParser.html">MBIRegexParser</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIRegexParserResult.html">MBIRegexParserResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIScanElement.html">MBIScanElement</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBISimNumberRecognizer.html">MBISimNumberRecognizer</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBISimNumberRecognizerResult.html">MBISimNumberRecognizerResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBISubview.html">MBISubview</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBISuccessFrameGrabberRecognizer.html">MBISuccessFrameGrabberRecognizer</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBISuccessFrameGrabberRecognizerResult.html">MBISuccessFrameGrabberRecognizerResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBITapToFocusSubview.html">MBITapToFocusSubview</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBITemplatingClass.html">MBITemplatingClass</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBITemplatingRecognizer.html">MBITemplatingRecognizer</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBITemplatingRecognizerResult.html">MBITemplatingRecognizerResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBITopUpParser.html">MBITopUpParser</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBITopUpParserResult.html">MBITopUpParserResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIViewControllerFactory.html">MBIViewControllerFactory</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIVinParser.html">MBIVinParser</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIVinParserResult.html">MBIVinParserResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIVinRecognizer.html">MBIVinRecognizer</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Classes/MBIVinRecognizerResult.html">MBIVinRecognizerResult</a>
</li>
</ul>
</li>
<li class="nav-group-name">
<a class="nav-group-name-link" href="../Constants.html">Constants</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Constants.html#/c:@MBIIllegalModificationException">MBIIllegalModificationException</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Constants.html#/c:@MBIInvalidArgumentException">MBIInvalidArgumentException</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Constants.html#/c:@MBIInvalidBundleException">MBIInvalidBundleException</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Constants.html#/c:@MBIInvalidLicenseKeyException">MBIInvalidLicenseKeyException</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Constants.html#/c:@MBIInvalidLicenseResourceException">MBIInvalidLicenseResourceException</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Constants.html#/c:@MBIInvalidLicenseeKeyException">MBIInvalidLicenseeKeyException</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Constants.html#/c:@MBILicenseErrorNotification">MBILicenseErrorNotification</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Constants.html#/c:@MBIMissingSettingsException">MBIMissingSettingsException</a>
</li>
</ul>
</li>
<li class="nav-group-name">
<a class="nav-group-name-link" href="../Enums.html">Enumerations</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Enums/MBIBarcodeType.html">MBIBarcodeType</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Enums/MBICameraAutofocusRestriction.html">MBICameraAutofocusRestriction</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Enums/MBICameraPreset.html">MBICameraPreset</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Enums/MBICameraType.html">MBICameraType</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Enums/MBIDateFormat.html">MBIDateFormat</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Enums/MBIDeepOcrModel.html">MBIDeepOcrModel</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Enums/MBIDetectionCode.html">MBIDetectionCode</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Enums/MBIDetectionStatus.html">MBIDetectionStatus</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Enums/MBIDocumentSpecificationPreset.html">MBIDocumentSpecificationPreset</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Enums/MBIDocumentType.html">MBIDocumentType</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Enums/MBIFrameQualityEstimationMode.html">MBIFrameQualityEstimationMode</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Enums/MBILicenseError.html">MBILicenseError</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Enums/MBILogLevel.html">MBILogLevel</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Enums/MBIMrtdSpecificationPreset.html">MBIMrtdSpecificationPreset</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Enums/MBIOcrFont.html">MBIOcrFont</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Enums/MBIParserResultState.html">MBIParserResultState</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Enums/MBIProcessingOrientation.html">MBIProcessingOrientation</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Enums/MBIProcessorResultState.html">MBIProcessorResultState</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Enums/MBIRecognitionDebugMode.html">MBIRecognitionDebugMode</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Enums/MBIRecognizerResultState.html">MBIRecognizerResultState</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Enums/MBIScanningMode.html">MBIScanningMode</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Enums/MBITopUpPreset.html">MBITopUpPreset</a>
</li>
</ul>
</li>
<li class="nav-group-name">
<a class="nav-group-name-link" href="../Protocols.html">Protocols</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIBarcodeOverlayViewControllerDelegate.html">MBIBarcodeOverlayViewControllerDelegate</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIDebugRecognizerRunnerDelegate.html">MBIDebugRecognizerRunnerDelegate</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIDebugRecognizerRunnerViewControllerDelegate.html">MBIDebugRecognizerRunnerViewControllerDelegate</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIDetectionRecognizerRunnerDelegate.html">MBIDetectionRecognizerRunnerDelegate</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIDetectionRecognizerRunnerViewControllerDelegate.html">MBIDetectionRecognizerRunnerViewControllerDelegate</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIDocumentCaptureOverlayViewControllerDelegate.html">MBIDocumentCaptureOverlayViewControllerDelegate</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIEncodeFullDocumentImage.html">MBIEncodeFullDocumentImage</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIEncodedFullDocumentImageResult.html">MBIEncodedFullDocumentImageResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIFieldByFieldOverlayViewControllerDelegate.html">MBIFieldByFieldOverlayViewControllerDelegate</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIFrameGrabberRecognizerDelegate.html">MBIFrameGrabberRecognizerDelegate</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIFrameRecognitionRecognizerRunnerViewControllerDelegate.html">MBIFrameRecognitionRecognizerRunnerViewControllerDelegate</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIFullDocumentImage.html">MBIFullDocumentImage</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIFullDocumentImageExtensionFactors.html">MBIFullDocumentImageExtensionFactors</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIFullDocumentImageResult.html">MBIFullDocumentImageResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIGlareRecognizerRunnerDelegate.html">MBIGlareRecognizerRunnerDelegate</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIGlareRecognizerRunnerViewControllerDelegate.html">MBIGlareRecognizerRunnerViewControllerDelegate</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIImageProcessingRecognizerRunnerDelegate.html">MBIImageProcessingRecognizerRunnerDelegate</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBILoggerDelegate.html">MBILoggerDelegate</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBINativeResult.html">MBINativeResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIOcrLayoutSubview.html">MBIOcrLayoutSubview</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIOcrRecognizerRunnerDelegate.html">MBIOcrRecognizerRunnerDelegate</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIOcrRecognizerRunnerViewControllerDelegate.html">MBIOcrRecognizerRunnerViewControllerDelegate</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIOverlayContainerViewController.html">MBIOverlayContainerViewController</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIPointDetectorSubview.html">MBIPointDetectorSubview</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIQuadDetectorSubview.html">MBIQuadDetectorSubview</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIRecognizerRunnerViewController.html">MBIRecognizerRunnerViewController</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIRecognizerRunnerViewControllerDelegate.html">MBIRecognizerRunnerViewControllerDelegate</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIResultSubview.html">MBIResultSubview</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIScanningRecognizerRunnerDelegate.html">MBIScanningRecognizerRunnerDelegate</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIScanningRecognizerRunnerViewControllerDelegate.html">MBIScanningRecognizerRunnerViewControllerDelegate</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBIStringProcessingRecognizerRunnerDelegate.html">MBIStringProcessingRecognizerRunnerDelegate</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBISubviewDelegate.html">MBISubviewDelegate</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Protocols/MBITemplatingClassifier.html">MBITemplatingClassifier</a>
</li>
</ul>
</li>
<li class="nav-group-name">
<a class="nav-group-name-link" href="../Type%20Definitions.html">Type Definitions</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Type%20Definitions.html#/c:MBGeometry.h@T@CGDelta">CGDelta</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Type%20Definitions/CGLine.html">CGLine</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Type%20Definitions.html#/c:MBMicroblinkDefines.h@T@MBBlock">MBBlock</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Type%20Definitions.html#/c:MBRecognizerRunnerViewController.h@T@MBICaptureHighResImage">MBICaptureHighResImage</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Type%20Definitions.html#/c:MBDateParser.h@T@MBIDateFormatArray">MBIDateFormatArray</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Type%20Definitions.html#/c:MBDateParser.h@T@MBIDateSeparatorCharsArray">MBIDateSeparatorCharsArray</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Type%20Definitions.html#/c:MBException.h@T@MBIExceptionName">MBIExceptionName</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Type%20Definitions/MBIImageExtensionFactors.html">MBIImageExtensionFactors</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Type%20Definitions.html#/c:MBLicenseError.h@T@MBILicenseErrorBlock">MBILicenseErrorBlock</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Type%20Definitions/MBIRange.html">MBIRange</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Type%20Definitions/MBIScale.html">MBIScale</a>
</li>
</ul>
</li>
<li class="nav-group-name">
<a class="nav-group-name-link" href="../Functions.html">Functions</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGControlPointsForArcBetweenPointsWithRadius">CGControlPointsForArcBetweenPointsWithRadius</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGDeltaMake">CGDeltaMake</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGLineDelta">CGLineDelta</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGLineDirection">CGLineDirection</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGLineEqualToLine">CGLineEqualToLine</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGLineIntersectsRectAtPoint">CGLineIntersectsRectAtPoint</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGLineLength">CGLineLength</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGLineMake">CGLineMake</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGLineMidPoint">CGLineMidPoint</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGLineScale">CGLineScale</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGLineScaleOnMidPoint">CGLineScaleOnMidPoint</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGLineTranslate">CGLineTranslate</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGLinesAngle">CGLinesAngle</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGLinesAreParallel">CGLinesAreParallel</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGLinesIntersectAtPoint">CGLinesIntersectAtPoint</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGPointAlongLine">CGPointAlongLine</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGPointDistance">CGPointDistance</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGPointRotatedAroundPoint">CGPointRotatedAroundPoint</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGPointWithDelta">CGPointWithDelta</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGRectBottomLeftPoint">CGRectBottomLeftPoint</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGRectBottomRightPoint">CGRectBottomRightPoint</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGRectCenterPoint">CGRectCenterPoint</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGRectClosestTwoCornerPoints">CGRectClosestTwoCornerPoints</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGRectInsetEdge">CGRectInsetEdge</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGRectResize">CGRectResize</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGRectStackedWithinRectFromEdge">CGRectStackedWithinRectFromEdge</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGRectTopLeftPoint">CGRectTopLeftPoint</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@CGRectTopRightPoint">CGRectTopRightPoint</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:MBImageExtensionFactors.h@F@MBIMakeImageExtensionFactors">MBIMakeImageExtensionFactors</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:MBDocumentSpecification.h@F@MBIMakeRange">MBIMakeRange</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:MBDocumentSpecification.h@F@MBIMakeScale">MBIMakeScale</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:MBMicroblinkApp.h@F@MBI_LOCALIZED">MBI_LOCALIZED</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:MBMicroblinkApp.h@F@MBI_LOCALIZED_DEFAULT_STRING">MBI_LOCALIZED_DEFAULT_STRING</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:MBMicroblinkApp.h@F@MBI_LOCALIZED_FOR_LANGUAGE">MBI_LOCALIZED_FOR_LANGUAGE</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Functions.html#/c:@F@MBIscanningRegionForFrameInBounds">MBIscanningRegionForFrameInBounds</a>
</li>
</ul>
</li>
<li class="nav-group-name">
<a class="nav-group-name-link" href="../Structs.html">Structures</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Structs/MBIImageExtensionFactors.html">MBIImageExtensionFactors</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Structs/MBIRange.html">MBIRange</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../Structs/MBIScale.html">MBIScale</a>
</li>
</ul>
</li>
</ul>
</nav>
<article class="main-content">
<section class="section">
<div class="section-content top-matter">
<h1>MBIBaseOverlaySettings</h1>
<div class="declaration">
<div class="language">
<pre class="highlight objective_c"><code>
<span class="k">@interface</span> <span class="nc">MBIBaseOverlaySettings</span> <span class="p">:</span> <span class="nc"><a href="../Classes/MBIOverlaySettings.html">MBIOverlaySettings</a></span></code></pre>
</div>
</div>
<p>Settings class containing UI information</p>
</div>
</section>
<section class="section">
<div class="section-content">
<div class="task-group">
<ul class="item-container">
<li class="item">
<div>
<code>
<a name="/c:objc(cs)MBIBaseOverlaySettings(py)autorotateOverlay"></a>
<a name="//apple_ref/objc/Property/autorotateOverlay" class="dashAnchor"></a>
<a class="token" href="#/c:objc(cs)MBIBaseOverlaySettings(py)autorotateOverlay">autorotateOverlay</a>
</code>
</div>
<div class="height-container">
<div class="pointer-container"></div>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>If YES, Overlay View Controller will be autorotated independently of ScanningViewController.</p>
<p>Default: NO.</p>
</div>
<div class="declaration">
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Objective-C</p>
<pre class="highlight objective_c"><code><span class="k">@property</span> <span class="p">(</span><span class="n">nonatomic</span><span class="p">)</span> <span class="n">BOOL</span> <span class="n">autorotateOverlay</span><span class="p">;</span></code></pre>
</div>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="k">var</span> <span class="nv">autorotateOverlay</span><span class="p">:</span> <span class="kt">Bool</span> <span class="p">{</span> <span class="k">get</span> <span class="k">set</span> <span class="p">}</span></code></pre>
</div>
</div>
</section>
</div>
</li>
<li class="item">
<div>
<code>
<a name="/c:objc(cs)MBIBaseOverlaySettings(py)showStatusBar"></a>
<a name="//apple_ref/objc/Property/showStatusBar" class="dashAnchor"></a>
<a class="token" href="#/c:objc(cs)MBIBaseOverlaySettings(py)showStatusBar">showStatusBar</a>
</code>
</div>
<div class="height-container">
<div class="pointer-container"></div>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>If YES, default camera overlay will display Status bar.
Usually, if camera is displayed inside Navigation View Controler, this is reasonable to set to YES.</p>
<p>Default: YES on iPhones with notch, NO otherwise.</p>
</div>
<div class="declaration">
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Objective-C</p>
<pre class="highlight objective_c"><code><span class="k">@property</span> <span class="p">(</span><span class="n">nonatomic</span><span class="p">)</span> <span class="n">BOOL</span> <span class="n">showStatusBar</span><span class="p">;</span></code></pre>
</div>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="k">var</span> <span class="nv">showStatusBar</span><span class="p">:</span> <span class="kt">Bool</span> <span class="p">{</span> <span class="k">get</span> <span class="k">set</span> <span class="p">}</span></code></pre>
</div>
</div>
</section>
</div>
</li>
<li class="item">
<div>
<code>
<a name="/c:objc(cs)MBIBaseOverlaySettings(py)supportedOrientations"></a>
<a name="//apple_ref/objc/Property/supportedOrientations" class="dashAnchor"></a>
<a class="token" href="#/c:objc(cs)MBIBaseOverlaySettings(py)supportedOrientations">supportedOrientations</a>
</code>
</div>
<div class="height-container">
<div class="pointer-container"></div>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Default: UIInterfaceOrientationMaskPortrait</p>
</div>
<div class="declaration">
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Objective-C</p>
<pre class="highlight objective_c"><code><span class="k">@property</span> <span class="p">(</span><span class="n">nonatomic</span><span class="p">)</span> <span class="n">UIInterfaceOrientationMask</span> <span class="n">supportedOrientations</span><span class="p">;</span></code></pre>
</div>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="k">var</span> <span class="nv">supportedOrientations</span><span class="p">:</span> <span class="kt">UIInterfaceOrientationMask</span> <span class="p">{</span> <span class="k">get</span> <span class="k">set</span> <span class="p">}</span></code></pre>
</div>
</div>
</section>
</div>
</li>
<li class="item">
<div>
<code>
<a name="/c:objc(cs)MBIBaseOverlaySettings(py)soundFilePath"></a>
<a name="//apple_ref/objc/Property/soundFilePath" class="dashAnchor"></a>
<a class="token" href="#/c:objc(cs)MBIBaseOverlaySettings(py)soundFilePath">soundFilePath</a>
</code>
</div>
<div class="height-container">
<div class="pointer-container"></div>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Full path to the sound file which is played when the valid result is scanned.</p>
<p>Default: `[bundle pathForResource:@“PPbeep” ofType:@“wav”];</p>
</div>
<div class="declaration">
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Objective-C</p>
<pre class="highlight objective_c"><code><span class="k">@property</span> <span class="p">(</span><span class="n">nonatomic</span><span class="p">,</span> <span class="n">strong</span><span class="p">,</span> <span class="n">nullable</span><span class="p">)</span> <span class="n">NSString</span> <span class="o">*</span><span class="n">soundFilePath</span><span class="p">;</span></code></pre>
</div>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="k">var</span> <span class="nv">soundFilePath</span><span class="p">:</span> <span class="kt">String</span><span class="p">?</span> <span class="p">{</span> <span class="k">get</span> <span class="k">set</span> <span class="p">}</span></code></pre>
</div>
</div>
</section>
</div>
</li>
<li class="item">
<div>
<code>
<a name="/c:objc(cs)MBIBaseOverlaySettings(py)displayCancelButton"></a>
<a name="//apple_ref/objc/Property/displayCancelButton" class="dashAnchor"></a>
<a class="token" href="#/c:objc(cs)MBIBaseOverlaySettings(py)displayCancelButton">displayCancelButton</a>
</code>
</div>
<div class="height-container">
<div class="pointer-container"></div>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Default: YES.</p>
</div>
<div class="declaration">
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Objective-C</p>
<pre class="highlight objective_c"><code><span class="k">@property</span> <span class="p">(</span><span class="n">nonatomic</span><span class="p">)</span> <span class="n">BOOL</span> <span class="n">displayCancelButton</span><span class="p">;</span></code></pre>
</div>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="k">var</span> <span class="nv">displayCancelButton</span><span class="p">:</span> <span class="kt">Bool</span> <span class="p">{</span> <span class="k">get</span> <span class="k">set</span> <span class="p">}</span></code></pre>
</div>
</div>
</section>
</div>
</li>
<li class="item">
<div>
<code>
<a name="/c:objc(cs)MBIBaseOverlaySettings(py)displayTorchButton"></a>
<a name="//apple_ref/objc/Property/displayTorchButton" class="dashAnchor"></a>
<a class="token" href="#/c:objc(cs)MBIBaseOverlaySettings(py)displayTorchButton">displayTorchButton</a>
</code>
</div>
<div class="height-container">
<div class="pointer-container"></div>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Default: YES.</p>
</div>
<div class="declaration">
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Objective-C</p>
<pre class="highlight objective_c"><code><span class="k">@property</span> <span class="p">(</span><span class="n">nonatomic</span><span class="p">)</span> <span class="n">BOOL</span> <span class="n">displayTorchButton</span><span class="p">;</span></code></pre>
</div>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="k">var</span> <span class="nv">displayTorchButton</span><span class="p">:</span> <span class="kt">Bool</span> <span class="p">{</span> <span class="k">get</span> <span class="k">set</span> <span class="p">}</span></code></pre>
</div>
</div>
</section>
</div>
</li>
</ul>
</div>
</div>
</section>
</article>
</div>
<section class="footer">
<p>© 2021 <a class="link" href="http://microblink.com" target="_blank" rel="external">Microblink</a>. All rights reserved. (Last updated: 2021-05-07)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.13.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</body>
</div>
</html>
|
web/res/owl/conf/ontology_inference/owl2rl/ore-small/91/index.html | darth-willy/mobibench | <html><head></head><body><h1>Directory contents</h1><ul><li><a href="full.nt">full.nt</a> (152 Kb)</li></ul></body></html> |
nutrif-web-refactor/lib/angular/docs/examples/example-controller-scope-inheritance/index-production.html | LADOSSIFPB/nutrif | <!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example - example-controller-scope-inheritance-production</title>
<link href="app.css" rel="stylesheet" type="text/css">
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular.min.js"></script>
<script src="app.js"></script>
</head>
<body ng-app="scopeInheritance">
<div class="spicy">
<div ng-controller="MainController">
<p>Good {{timeOfDay}}, {{name}}!</p>
<div ng-controller="ChildController">
<p>Good {{timeOfDay}}, {{name}}!</p>
<div ng-controller="GrandChildController">
<p>Good {{timeOfDay}}, {{name}}!</p>
</div>
</div>
</div>
</div>
</body>
</html> |
core/standards/scripts/jstest-futhark/js-regression/js_document.html | frivoal/presto-testo | <!-- js_document.html -->
<!-- FIXME: must add an applet and update the tests -->
<!-- FIXME: must add an embed and update the tests (this will also add to plugins) -->
<html>
<head>
<title>JavaScript 1.3 Document test</title> <!-- Don't change the title -->
<script>
var html_cvs="$Id: js_document.html 10655 2006-12-18 15:47:57Z hallvord $";
</script>
</head>
<body alink=red vlink=yellow link=black bgcolor=white text=blue
onclick="void(0)" ondblclick="void(1)" onkeydown="void(2)" onkeypress="void(3)"
onkeyup="void(4)" onmousedown="void(5)" onmouseup="void(6)">
<!-- important, do not move anything above this DIV -->
<div>
<a id=a1 name="ThisIsMyAnchor">Anchor 1</a><br>
<a id=a2 name="ThisIsAnotherAnchor">Anchor 2</a> <a id=a3 name="ThisIsYetAnotherAnchor">
</a><br>
</div>
<div>
<img src="graphics/operalogo_100x105.gif" name="img1">
<img src="graphics/operalogo_100x105.gif" name="img2">
<img src="graphics/operalogo_100x105.gif" name="img3">
</div>
<div>
<form name=testform1>
<input type=text name=formless value=Foo></input>
</form>
</div>
<div>
<area id="a1"
alt="This is my area" shape="circle" coords="10,10,10"
href="graphics/operalogo_100x105.gif"></area>
</div>
<div>
<a href="http://www.opera.com">A link!</a>
<a name="link3" href="http://www.microsoft.com">Another!</a>
</div>
<script type="text/javascript" src="../regression-lib/testbase.js"></script>
<script type="text/javascript" src="../testconfig.js"></script>
<script type="text/javascript" src="scripts/js_document.js"></script>
</body>
</html>
|
SVG/Testsuites/W3C-1_1F2/harness/htmlSVGWeb/painting-render-01-b.html | frivoal/presto-testo | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script src="../../../../../tools/svgweb/src/svg.js" data-path="../../../../../tools/svgweb/src"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="keywords" content="W3C SVG 1.1 2nd Edition Test Suite"/>
<meta name="description" content="W3C SVG 1.1 2nd Edition SVGWeb Test Suite"/>
<title>
SVG 1.1 2nd Edition Test (svgweb): painting-render-01-b.svg
</title>
<style type="text/css">
<!--
.bodytext { font-family:verdana, helvetica, sans-serif; font-size: 12pt; line-height: 125%; text-align: Left; margin-top: 0; margin-bottom: 0 }
.pageTitle { line-height: 150%; font-size: 20pt; font-weight : 900; margin-bottom: 20pt }
.pageSubTitle { color : blue; line-height: 100%; font-size: 24pt; font-weight : 900 }
.openChapter { color : blue; line-height: 125%; font-weight : 900 }
.openSection { color : blue; line-height: 125%; font-weight : 900 }
.info { color : black; line-height: 110%; font-size: 10pt; font-weight : 100 }
p { margin-top:0; margin-bottom:0; padding-top:0; padding-bottom:0 }
blockquote { margin-top:0; margin-bottom:0; padding-top:0; padding-bottom:0 }
.opscript { margin-left: 3%; margin-right: 3%; }
.opscript p { margin-top: 0.7em }
.navbar { background: black; color: white; font-weight: bold }
.warning { color: red; text-align: Center;}
a,a:visited { color: blue }
-->
</style>
<link rel="prev" href="painting-marker-properties-01-f.html" />
<link rel="index" href="index.html" />
<link rel="next" href="painting-render-02-b.html" />
<script src="../resources/testharnessreport.js"></script>
</head>
<body class="bodytext">
<div class="linkbar">
<p>Specification link: <a target="spec" href="http://www.w3.org/TR/SVG11/painting.html#RenderingProperties">11.7 Rendering properties</a></p>
<p>
<a href="painting-marker-properties-01-f.html" rel="prev">painting-marker-properties-01-f ←</a>
<a href="index.html" rel="index">index</a>
<a href="painting-render-02-b.html" rel="next">→ painting-render-02-b</a>
</p>
</div>
<div>
<br />
<p class="warning">
Tests that contain the draft-watermark are under development and may be incorrectly testing a feature.
</p>
</div>
<table align="center" border="0" cellspacing="0" cellpadding="10">
<tr>
<td align="center" colspan="3">
<table border="0" cellpadding="8">
<tr>
<td align="center" colspan="2" class="pageTitle">
<h1>painting-render-01-b.svg</h1>
</td>
</tr>
<tr class="navbar">
<td align="center">
SVG Image
</td>
<td align="center">
PNG Image
</td>
</tr>
<tr>
<td align="right">
<!--[if IE]>
<object src="../../svg/painting-render-01-b.svg" width="480" height="360" classid="image/svg+xml"><p style="font-size:300%;color:red">FAIL</p>
<![endif]-->
<!--[if !IE]>-->
<object data="../../svg/painting-render-01-b.svg" width="480" height="360" type="image/svg+xml"><p style="font-size:300%;color:red">FAIL</p>
<!--<![endif]-->
</object>
</td>
<td align="left">
<img alt="raster image of painting-render-01-b.svg" src="../../png/painting-render-01-b.png" width="480" height="360"/>
</td>
</tr>
</table>
</td>
</tr>
</table>
<div class="opscript">
<h2 id="operatorscript">
Operator Script
</h2>
<div>
<p>
Run the test. No interaction required.
</p>
</div>
<h2 id="passcriteria">
Pass Criteria
</h2>
<div>
<p>
The top two gradients must look the same, and the bottom gradient must look
different to the top two. The rendered picture should match the reference image, except for possible
variations in the labelling text (per CSS2 rules).
</p>
</div>
<h2 id="testdescription">
Test Description
</h2>
<div>
<p>
This tests shows the same linear gradient used with different values for the
color-interpolation rendering property. The top bar is painted using the
default color-interpolation value, which should produce the same result as
sRGB. The middle bar is painted using the 'sRGB' color-interpolation and
should be the same as the top bar. Finally, the bottom bar is painted using
the linearRGB interpolation, which produces a result visibly different from
the top two bars: the white to blue ramp is whiter, the blue to red ramp
goes through a pinkish color and the red to yellow ramp turns orange before
the similar sRGB rampl.
</p>
</div>
</div>
<br/>
<div class="linkbar">
<p>
<a href="painting-marker-properties-01-f.html" rel="prev">painting-marker-properties-01-f ←</a>
<a href="index.html" rel="index">index</a>
<a href="painting-render-02-b.html" rel="next">→ painting-render-02-b</a>
</p>
</div>
</body>
</html>
|
core/standards/html401/textarea_name.html | frivoal/presto-testo | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>TEXTAREA :: name</title>
<style type="text/css">
[name] {
background: lime;
}
textarea { resize: none; }
</style>
</head>
<body>
<form action="">
<textarea rows="5" cols="20" name="damer">this field should have green background</textarea>
</form>
</body>
</html> |
ajaxuploader/templates/ajaxuploader/sample.html | derek-adair/django-ajax-uploader | <!doctype html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js" ></script>
<script src="{{STATIC_URL}}ajaxuploader/js/fileuploader.js" ></script>
<link href="{{STATIC_URL}}ajaxuploader/css/fileuploader.css" media="screen" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="file-uploader">
<noscript>
<p>Please enable JavaScript to use file uploader.</p>
</noscript>
</div>
<script>
$(function(){
var uploader = new qq.FileUploader( {
action: "{% url my_ajax_upload %}",
element: $('#file-uploader')[0],
multiple: true,
onComplete: function( id, fileName, responseJSON ) {
if( responseJSON.success )
alert( "success!" ) ;
else
alert( "upload failed!" ) ;
},
onAllComplete: function( uploads ) {
// uploads is an array of maps
// the maps look like this: { file: FileObject, response: JSONServerResponse }
alert( "All complete!" ) ;
},
params: {
'csrf_token': '{{ csrf_token }}',
'csrf_name': 'csrfmiddlewaretoken',
'csrf_xname': 'X-CSRFToken',
},
}) ;
});
</script>
</body>
</html>
|
public/js/bower_components/Metro-UI-CSS/docs/progress-bar.html | skt90u/ezpos | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="product" content="Metro UI CSS Framework">
<meta name="description" content="Simple responsive css framework">
<meta name="author" content="Sergey S. Pimenov, Ukraine, Kiev">
<link href="css/metro-bootstrap.css" rel="stylesheet">
<link href="css/metro-bootstrap-responsive.css" rel="stylesheet">
<link href="css/docs.css" rel="stylesheet">
<link href="js/prettify/prettify.css" rel="stylesheet">
<!-- Load JavaScript Libraries -->
<script src="js/jquery/jquery.min.js"></script>
<script src="js/jquery/jquery.widget.min.js"></script>
<script src="js/jquery/jquery.mousewheel.js"></script>
<script src="js/prettify/prettify.js"></script>
<!-- Metro UI CSS JavaScript plugins -->
<script src="js/load-metro.js"></script>
<!-- Local JavaScript -->
<script src="js/docs.js"></script>
<script src="js/github.info.js"></script>
<title>Metro UI CSS : Metro Bootstrap CSS Library</title>
</head>
<body class="metro">
<header class="bg-dark" data-load="header.html"></header>
<div class="container">
<h1>
<a href="/"><i class="icon-arrow-left-3 fg-darker smaller"></i></a>
Progress Bar<small class="on-right">component</small>
</h1>
<p class="description">
This component require <code>metro-progressbar.js</code>.
</p>
<div class="example">
<div class="progress-bar" data-role="progress-bar" data-value="10"></div>
<div class="progress-bar" data-role="progress-bar" data-value="20" data-color="bg-green"></div>
<div class="progress-bar" data-role="progress-bar" data-value="50" data-color="bg-red"></div>
<div class="progress-bar" data-role="progress-bar" data-value="75" data-color="bg-pink"></div>
<div class="progress-bar" data-role="progress-bar" data-value="100" data-color="#ccc"></div>
</div>
<pre class="prettyprint linenums">
<div class="progress-bar" data-role="progress-bar" data-value="10"></div>
<div class="progress-bar" data-role="progress-bar" data-color="bg-green"></div>
<div class="progress-bar" data-role="progress-bar" data-color="#ccc"></div>
</pre>
<h3>Any size for progress bar</h3>
<div class="example">
<div class="progress-bar small" data-role="progress-bar" data-value="10"></div>
<div class="progress-bar" data-role="progress-bar" data-value="20" data-color="bg-green"></div>
<div class="progress-bar large" data-role="progress-bar" data-value="50"></div>
</div>
<pre class="prettyprint linenums">
<div class="progress-bar small"></div>
<div class="progress-bar"></div>
<div class="progress-bar large"></div>
</pre>
<p class="description">
You can activate widget manually or auto with <code>data-*</code> api.
</p>
<h4>Activate widget with Javascript</h4>
<pre class="linenums prettyprint">
$("#componennt_id").progressbar({
value: int // progress value, default 0
color: string, // existing class (bg-*) or color schema (#NNNNNN)
onchange: function(val){...}
});
</pre>
<h4>Set value with Javascript</h4>
<div class="example">
<div class="progress-bar small" data-role="progress-bar" id="pb1"></div>
<button class="button success" id="pb_start_btn">Start</button>
<button class="button " id="pb_reset_btn">Reset</button>
<script>
$(function(){
var pb = $('#pb1').progressbar();
var progress = 0;
$("#pb_start_btn").on('click', function(){
var interval = setInterval(
function(){
pb.progressbar('value', (++progress));
if (progress == 100) window.clearInterval(interval);
}, 100);
});
$("#pb_reset_btn").on('click', function(){
progress = 0;
pb.progressbar('value', progress);
});
});
</script>
</div>
<pre class="linenums prettyprint">
var pb = $("#componennt_id").progressbar();
pb.progressbar('value', 75);
</pre>
<h4>Set color with Javascript</h4>
<pre class="linenums prettyprint">
var pb = $("#componennt_id").progressbar();
pb.progressbar('color', '#000');
</pre>
<h4>Activate widget with API</h4>
<pre class="prettyprint linenums">
<div class="progress-bar"
data-role="progress-bar"
data-value="75"
data-color="bg-pink"></div>
</pre>
</div>
<script src="js/hitua.js"></script>
</body>
</html> |
doc/core/bind.html | LiXiaoRan/mass-Framework | <!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<title>$.bind</title>
<script>
window.$$path = location.protocol + "//" + location.host;
document.write('<script src="' + $$path + '/mass_merge.js"><\/script>');
document.write('<script src="' + $$path + '/doc/scripts/common.js"><\/script>');
</script>
</head>
<body>
<article>
<h3>$.bind(obj, type, fn, phase? )</h3>
<p>
<span class="stress">描述:</span>
</p>
<p>一个简单的事件绑定函数。</p>
<p>
<span class="stress">参数:</span>
</p>
<dl>
<dt>obj</dt>
<dd>必需。原生的事件发送器,如window,document与元素节点。</dd>
<dt>type</dt>
<dd>必需。String。事件类型,注意不要使用onXXX的格式。</dd>
<dt>fn</dt>
<dd>必需。Function。</dd>
<dt>phase</dt>
<dd>可选。Boolean。是否使用捕获,默认false,与不支持捕获的IE678保持一致。</dd>
</dl>
<p>
<span class="stress">返回值:</span>
</p>
<p>用户传入的fn</p>
<fieldset>
<legend>例子</legend>
<pre class="brush:javascript;gutter:false;toolbar:false">
var fn = $.bind(document, "click", function() {
alert("触发了点击事件并立即卸载它");
$.unbind(document, "click", fn)
});
</pre>
<button class="doc_btn" type="button">点我,执行代码</button>
</fieldset>
</article>
</body>
</html> |
src/deps/boost/doc/html/boost/algorithm/is_not_greater.html | mxrrow/zaicoin | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Struct is_not_greater</title>
<link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
<link rel="home" href="../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
<link rel="up" href="../../string_algo/reference.html#header.boost.algorithm.string.compare_hpp" title="Header <boost/algorithm/string/compare.hpp>">
<link rel="prev" href="is_iless.html" title="Struct is_iless">
<link rel="next" href="is_not_igreater.html" title="Struct is_not_igreater">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../boost.png"></td>
<td align="center"><a href="../../../../index.html">Home</a></td>
<td align="center"><a href="../../../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="is_iless.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../string_algo/reference.html#header.boost.algorithm.string.compare_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="is_not_igreater.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.algorithm.is_not_greater"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Struct is_not_greater</span></h2>
<p>boost::algorithm::is_not_greater — <a class="link" href="is_not_greater.html" title="Struct is_not_greater">is_not_greater</a> functor </p>
</div>
<h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2>
<div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: <<a class="link" href="../../string_algo/reference.html#header.boost.algorithm.string.compare_hpp" title="Header <boost/algorithm/string/compare.hpp>">boost/algorithm/string/compare.hpp</a>>
</span>
<span class="keyword">struct</span> <a class="link" href="is_not_greater.html" title="Struct is_not_greater">is_not_greater</a> <span class="special">{</span>
<span class="comment">// <a class="link" href="is_not_greater.html#idp81504704-bb">public member functions</a></span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T1<span class="special">,</span> <span class="keyword">typename</span> T2<span class="special">></span>
<span class="keyword">bool</span> <a class="link" href="is_not_greater.html#idp81504912-bb"><span class="keyword">operator</span><span class="special">(</span><span class="special">)</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">T1</span> <span class="special">&</span><span class="special">,</span> <span class="keyword">const</span> <span class="identifier">T2</span> <span class="special">&</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="special">}</span><span class="special">;</span></pre></div>
<div class="refsect1">
<a name="idp164233968"></a><h2>Description</h2>
<p>Convenient version of standard std::not_greater_to. Operation is templated, therefore it is not required to specify the exact types upon the construction </p>
<div class="refsect2">
<a name="idp164234464"></a><h3>
<a name="idp81504704-bb"></a><code class="computeroutput">is_not_greater</code> public member functions</h3>
<div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T1<span class="special">,</span> <span class="keyword">typename</span> T2<span class="special">></span>
<span class="keyword">bool</span> <a name="idp81504912-bb"></a><span class="keyword">operator</span><span class="special">(</span><span class="special">)</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">T1</span> <span class="special">&</span> Arg1<span class="special">,</span> <span class="keyword">const</span> <span class="identifier">T2</span> <span class="special">&</span> Arg2<span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>Functor operation. <p>Compare two operands using > operator </p>
</li></ol></div>
</div>
</div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2002-2004 Pavol Droba<p>Use, modification and distribution is subject to the Boost
Software License, Version 1.0. (See accompanying file
<code class="filename">LICENSE_1_0.txt</code> or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="is_iless.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../string_algo/reference.html#header.boost.algorithm.string.compare_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="is_not_igreater.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
weka-3-6-12/doc/weka/classifiers/functions/Winnow.html | yuxiang-zhou/MultiTaskLearning | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_71) on Tue Dec 16 10:59:45 NZDT 2014 -->
<title>Winnow</title>
<meta name="date" content="2014-12-16">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Winnow";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../weka/classifiers/functions/VotedPerceptron.html" title="class in weka.classifiers.functions"><span class="strong">Prev Class</span></a></li>
<li>Next Class</li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?weka/classifiers/functions/Winnow.html" target="_top">Frames</a></li>
<li><a href="Winnow.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">weka.classifiers.functions</div>
<h2 title="Class Winnow" class="title">Class Winnow</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li><a href="../../../weka/classifiers/Classifier.html" title="class in weka.classifiers">weka.classifiers.Classifier</a></li>
<li>
<ul class="inheritance">
<li>weka.classifiers.functions.Winnow</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>java.io.Serializable, java.lang.Cloneable, <a href="../../../weka/classifiers/UpdateableClassifier.html" title="interface in weka.classifiers">UpdateableClassifier</a>, <a href="../../../weka/core/CapabilitiesHandler.html" title="interface in weka.core">CapabilitiesHandler</a>, <a href="../../../weka/core/OptionHandler.html" title="interface in weka.core">OptionHandler</a>, <a href="../../../weka/core/RevisionHandler.html" title="interface in weka.core">RevisionHandler</a>, <a href="../../../weka/core/TechnicalInformationHandler.html" title="interface in weka.core">TechnicalInformationHandler</a></dd>
</dl>
<hr>
<br>
<pre>public class <span class="strong">Winnow</span>
extends <a href="../../../weka/classifiers/Classifier.html" title="class in weka.classifiers">Classifier</a>
implements <a href="../../../weka/classifiers/UpdateableClassifier.html" title="interface in weka.classifiers">UpdateableClassifier</a>, <a href="../../../weka/core/TechnicalInformationHandler.html" title="interface in weka.core">TechnicalInformationHandler</a></pre>
<div class="block"><!-- globalinfo-start -->
Implements Winnow and Balanced Winnow algorithms by Littlestone.<br/>
<br/>
For more information, see<br/>
<br/>
N. Littlestone (1988). Learning quickly when irrelevant attributes are abound: A new linear threshold algorithm. Machine Learning. 2:285-318.<br/>
<br/>
N. Littlestone (1989). Mistake bounds and logarithmic linear-threshold learning algorithms. University of California, Santa Cruz.<br/>
<br/>
Does classification for problems with nominal attributes (which it converts into binary attributes).
<p/>
<!-- globalinfo-end -->
<!-- technical-bibtex-start -->
BibTeX:
<pre>
@article{Littlestone1988,
author = {N. Littlestone},
journal = {Machine Learning},
pages = {285-318},
title = {Learning quickly when irrelevant attributes are abound: A new linear threshold algorithm},
volume = {2},
year = {1988}
}
@techreport{Littlestone1989,
address = {University of California, Santa Cruz},
author = {N. Littlestone},
institution = {University of California},
note = {Technical Report UCSC-CRL-89-11},
title = {Mistake bounds and logarithmic linear-threshold learning algorithms},
year = {1989}
}
</pre>
<p/>
<!-- technical-bibtex-end -->
<!-- options-start -->
Valid options are: <p/>
<pre> -L
Use the baLanced version
(default false)</pre>
<pre> -I <int>
The number of iterations to be performed.
(default 1)</pre>
<pre> -A <double>
Promotion coefficient alpha.
(default 2.0)</pre>
<pre> -B <double>
Demotion coefficient beta.
(default 0.5)</pre>
<pre> -H <double>
Prediction threshold.
(default -1.0 == number of attributes)</pre>
<pre> -W <double>
Starting weights.
(default 2.0)</pre>
<pre> -S <int>
Default random seed.
(default 1)</pre>
<!-- options-end --></div>
<dl><dt><span class="strong">Version:</span></dt>
<dd>$Revision: 5523 $</dd>
<dt><span class="strong">Author:</span></dt>
<dd>J. Lindgren (jtlindgr at cs.helsinki.fi)</dd>
<dt><span class="strong">See Also:</span></dt><dd><a href="../../../serialized-form.html#weka.classifiers.functions.Winnow">Serialized Form</a></dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#Winnow()">Winnow</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>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#alphaTipText()">alphaTipText</a></strong>()</code>
<div class="block">Returns the tip text for this property</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#balancedTipText()">balancedTipText</a></strong>()</code>
<div class="block">Returns the tip text for this property</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#betaTipText()">betaTipText</a></strong>()</code>
<div class="block">Returns the tip text for this property</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#buildClassifier(weka.core.Instances)">buildClassifier</a></strong>(<a href="../../../weka/core/Instances.html" title="class in weka.core">Instances</a> insts)</code>
<div class="block">Builds the classifier</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#classifyInstance(weka.core.Instance)">classifyInstance</a></strong>(<a href="../../../weka/core/Instance.html" title="class in weka.core">Instance</a> inst)</code>
<div class="block">Outputs the prediction for the given instance.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#defaultWeightTipText()">defaultWeightTipText</a></strong>()</code>
<div class="block">Returns the tip text for this property</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#getAlpha()">getAlpha</a></strong>()</code>
<div class="block">Get the value of Alpha.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#getBalanced()">getBalanced</a></strong>()</code>
<div class="block">Get the value of Balanced.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#getBeta()">getBeta</a></strong>()</code>
<div class="block">Get the value of Beta.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../weka/core/Capabilities.html" title="class in weka.core">Capabilities</a></code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#getCapabilities()">getCapabilities</a></strong>()</code>
<div class="block">Returns default capabilities of the classifier.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#getDefaultWeight()">getDefaultWeight</a></strong>()</code>
<div class="block">Get the value of defaultWeight.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#getNumIterations()">getNumIterations</a></strong>()</code>
<div class="block">Get the value of numIterations.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.String[]</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#getOptions()">getOptions</a></strong>()</code>
<div class="block">Gets the current settings of the classifier.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#getRevision()">getRevision</a></strong>()</code>
<div class="block">Returns the revision string.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#getSeed()">getSeed</a></strong>()</code>
<div class="block">Get the value of Seed.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../weka/core/TechnicalInformation.html" title="class in weka.core">TechnicalInformation</a></code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#getTechnicalInformation()">getTechnicalInformation</a></strong>()</code>
<div class="block">Returns an instance of a TechnicalInformation object, containing
detailed information about the technical background of this class,
e.g., paper reference or book this class is based on.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#getThreshold()">getThreshold</a></strong>()</code>
<div class="block">Get the value of Threshold.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#globalInfo()">globalInfo</a></strong>()</code>
<div class="block">Returns a string describing classifier</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.util.Enumeration</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#listOptions()">listOptions</a></strong>()</code>
<div class="block">Returns an enumeration describing the available options</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#main(java.lang.String[])">main</a></strong>(java.lang.String[] argv)</code>
<div class="block">Main method.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#numIterationsTipText()">numIterationsTipText</a></strong>()</code>
<div class="block">Returns the tip text for this property</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#seedTipText()">seedTipText</a></strong>()</code>
<div class="block">Returns the tip text for this property</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#setAlpha(double)">setAlpha</a></strong>(double a)</code>
<div class="block">Set the value of Alpha.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#setBalanced(boolean)">setBalanced</a></strong>(boolean b)</code>
<div class="block">Set the value of Balanced.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#setBeta(double)">setBeta</a></strong>(double b)</code>
<div class="block">Set the value of Beta.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#setDefaultWeight(double)">setDefaultWeight</a></strong>(double w)</code>
<div class="block">Set the value of defaultWeight.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#setNumIterations(int)">setNumIterations</a></strong>(int v)</code>
<div class="block">Set the value of numIterations.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#setOptions(java.lang.String[])">setOptions</a></strong>(java.lang.String[] options)</code>
<div class="block">Parses a given list of options.<p/>
<!-- options-start -->
Valid options are: <p/></div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#setSeed(int)">setSeed</a></strong>(int v)</code>
<div class="block">Set the value of Seed.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#setThreshold(double)">setThreshold</a></strong>(double t)</code>
<div class="block">Set the value of Threshold.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#thresholdTipText()">thresholdTipText</a></strong>()</code>
<div class="block">Returns the tip text for this property</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#toString()">toString</a></strong>()</code>
<div class="block">Returns textual description of the classifier.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../weka/classifiers/functions/Winnow.html#updateClassifier(weka.core.Instance)">updateClassifier</a></strong>(<a href="../../../weka/core/Instance.html" title="class in weka.core">Instance</a> instance)</code>
<div class="block">Updates the classifier with a new learning example</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_weka.classifiers.Classifier">
<!-- -->
</a>
<h3>Methods inherited from class weka.classifiers.<a href="../../../weka/classifiers/Classifier.html" title="class in weka.classifiers">Classifier</a></h3>
<code><a href="../../../weka/classifiers/Classifier.html#debugTipText()">debugTipText</a>, <a href="../../../weka/classifiers/Classifier.html#distributionForInstance(weka.core.Instance)">distributionForInstance</a>, <a href="../../../weka/classifiers/Classifier.html#forName(java.lang.String,%20java.lang.String[])">forName</a>, <a href="../../../weka/classifiers/Classifier.html#getDebug()">getDebug</a>, <a href="../../../weka/classifiers/Classifier.html#makeCopies(weka.classifiers.Classifier,%20int)">makeCopies</a>, <a href="../../../weka/classifiers/Classifier.html#makeCopy(weka.classifiers.Classifier)">makeCopy</a>, <a href="../../../weka/classifiers/Classifier.html#setDebug(boolean)">setDebug</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>equals, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="Winnow()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>Winnow</h4>
<pre>public Winnow()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="globalInfo()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>globalInfo</h4>
<pre>public java.lang.String globalInfo()</pre>
<div class="block">Returns a string describing classifier</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>a description suitable for
displaying in the explorer/experimenter gui</dd></dl>
</li>
</ul>
<a name="getTechnicalInformation()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getTechnicalInformation</h4>
<pre>public <a href="../../../weka/core/TechnicalInformation.html" title="class in weka.core">TechnicalInformation</a> getTechnicalInformation()</pre>
<div class="block">Returns an instance of a TechnicalInformation object, containing
detailed information about the technical background of this class,
e.g., paper reference or book this class is based on.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../weka/core/TechnicalInformationHandler.html#getTechnicalInformation()">getTechnicalInformation</a></code> in interface <code><a href="../../../weka/core/TechnicalInformationHandler.html" title="interface in weka.core">TechnicalInformationHandler</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>the technical information about this class</dd></dl>
</li>
</ul>
<a name="listOptions()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>listOptions</h4>
<pre>public java.util.Enumeration listOptions()</pre>
<div class="block">Returns an enumeration describing the available options</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../weka/core/OptionHandler.html#listOptions()">listOptions</a></code> in interface <code><a href="../../../weka/core/OptionHandler.html" title="interface in weka.core">OptionHandler</a></code></dd>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../weka/classifiers/Classifier.html#listOptions()">listOptions</a></code> in class <code><a href="../../../weka/classifiers/Classifier.html" title="class in weka.classifiers">Classifier</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>an enumeration of all the available options</dd></dl>
</li>
</ul>
<a name="setOptions(java.lang.String[])">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setOptions</h4>
<pre>public void setOptions(java.lang.String[] options)
throws java.lang.Exception</pre>
<div class="block">Parses a given list of options.<p/>
<!-- options-start -->
Valid options are: <p/>
<pre> -L
Use the baLanced version
(default false)</pre>
<pre> -I <int>
The number of iterations to be performed.
(default 1)</pre>
<pre> -A <double>
Promotion coefficient alpha.
(default 2.0)</pre>
<pre> -B <double>
Demotion coefficient beta.
(default 0.5)</pre>
<pre> -H <double>
Prediction threshold.
(default -1.0 == number of attributes)</pre>
<pre> -W <double>
Starting weights.
(default 2.0)</pre>
<pre> -S <int>
Default random seed.
(default 1)</pre>
<!-- options-end --></div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../weka/core/OptionHandler.html#setOptions(java.lang.String[])">setOptions</a></code> in interface <code><a href="../../../weka/core/OptionHandler.html" title="interface in weka.core">OptionHandler</a></code></dd>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../weka/classifiers/Classifier.html#setOptions(java.lang.String[])">setOptions</a></code> in class <code><a href="../../../weka/classifiers/Classifier.html" title="class in weka.classifiers">Classifier</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>options</code> - the list of options as an array of strings</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.Exception</code> - if an option is not supported</dd></dl>
</li>
</ul>
<a name="getOptions()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getOptions</h4>
<pre>public java.lang.String[] getOptions()</pre>
<div class="block">Gets the current settings of the classifier.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../weka/core/OptionHandler.html#getOptions()">getOptions</a></code> in interface <code><a href="../../../weka/core/OptionHandler.html" title="interface in weka.core">OptionHandler</a></code></dd>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../weka/classifiers/Classifier.html#getOptions()">getOptions</a></code> in class <code><a href="../../../weka/classifiers/Classifier.html" title="class in weka.classifiers">Classifier</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>an array of strings suitable for passing to setOptions</dd></dl>
</li>
</ul>
<a name="getCapabilities()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getCapabilities</h4>
<pre>public <a href="../../../weka/core/Capabilities.html" title="class in weka.core">Capabilities</a> getCapabilities()</pre>
<div class="block">Returns default capabilities of the classifier.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../weka/core/CapabilitiesHandler.html#getCapabilities()">getCapabilities</a></code> in interface <code><a href="../../../weka/core/CapabilitiesHandler.html" title="interface in weka.core">CapabilitiesHandler</a></code></dd>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../weka/classifiers/Classifier.html#getCapabilities()">getCapabilities</a></code> in class <code><a href="../../../weka/classifiers/Classifier.html" title="class in weka.classifiers">Classifier</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>the capabilities of this classifier</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../weka/core/Capabilities.html" title="class in weka.core"><code>Capabilities</code></a></dd></dl>
</li>
</ul>
<a name="buildClassifier(weka.core.Instances)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>buildClassifier</h4>
<pre>public void buildClassifier(<a href="../../../weka/core/Instances.html" title="class in weka.core">Instances</a> insts)
throws java.lang.Exception</pre>
<div class="block">Builds the classifier</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../weka/classifiers/Classifier.html#buildClassifier(weka.core.Instances)">buildClassifier</a></code> in class <code><a href="../../../weka/classifiers/Classifier.html" title="class in weka.classifiers">Classifier</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>insts</code> - the data to train the classifier with</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.Exception</code> - if something goes wrong during building</dd></dl>
</li>
</ul>
<a name="updateClassifier(weka.core.Instance)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>updateClassifier</h4>
<pre>public void updateClassifier(<a href="../../../weka/core/Instance.html" title="class in weka.core">Instance</a> instance)
throws java.lang.Exception</pre>
<div class="block">Updates the classifier with a new learning example</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../weka/classifiers/UpdateableClassifier.html#updateClassifier(weka.core.Instance)">updateClassifier</a></code> in interface <code><a href="../../../weka/classifiers/UpdateableClassifier.html" title="interface in weka.classifiers">UpdateableClassifier</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>instance</code> - the instance to update the classifier with</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.Exception</code> - if something goes wrong</dd></dl>
</li>
</ul>
<a name="classifyInstance(weka.core.Instance)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>classifyInstance</h4>
<pre>public double classifyInstance(<a href="../../../weka/core/Instance.html" title="class in weka.core">Instance</a> inst)
throws java.lang.Exception</pre>
<div class="block">Outputs the prediction for the given instance.</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../weka/classifiers/Classifier.html#classifyInstance(weka.core.Instance)">classifyInstance</a></code> in class <code><a href="../../../weka/classifiers/Classifier.html" title="class in weka.classifiers">Classifier</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>inst</code> - the instance for which prediction is to be computed</dd>
<dt><span class="strong">Returns:</span></dt><dd>the prediction</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.Exception</code> - if something goes wrong</dd></dl>
</li>
</ul>
<a name="toString()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>toString</h4>
<pre>public java.lang.String toString()</pre>
<div class="block">Returns textual description of the classifier.</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code>toString</code> in class <code>java.lang.Object</code></dd>
<dt><span class="strong">Returns:</span></dt><dd>textual description of the classifier</dd></dl>
</li>
</ul>
<a name="balancedTipText()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>balancedTipText</h4>
<pre>public java.lang.String balancedTipText()</pre>
<div class="block">Returns the tip text for this property</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>tip text for this property suitable for
displaying in the explorer/experimenter gui</dd></dl>
</li>
</ul>
<a name="getBalanced()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getBalanced</h4>
<pre>public boolean getBalanced()</pre>
<div class="block">Get the value of Balanced.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>Value of Balanced.</dd></dl>
</li>
</ul>
<a name="setBalanced(boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setBalanced</h4>
<pre>public void setBalanced(boolean b)</pre>
<div class="block">Set the value of Balanced.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>b</code> - Value to assign to Balanced.</dd></dl>
</li>
</ul>
<a name="alphaTipText()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>alphaTipText</h4>
<pre>public java.lang.String alphaTipText()</pre>
<div class="block">Returns the tip text for this property</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>tip text for this property suitable for
displaying in the explorer/experimenter gui</dd></dl>
</li>
</ul>
<a name="getAlpha()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getAlpha</h4>
<pre>public double getAlpha()</pre>
<div class="block">Get the value of Alpha.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>Value of Alpha.</dd></dl>
</li>
</ul>
<a name="setAlpha(double)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setAlpha</h4>
<pre>public void setAlpha(double a)</pre>
<div class="block">Set the value of Alpha.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>a</code> - Value to assign to Alpha.</dd></dl>
</li>
</ul>
<a name="betaTipText()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>betaTipText</h4>
<pre>public java.lang.String betaTipText()</pre>
<div class="block">Returns the tip text for this property</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>tip text for this property suitable for
displaying in the explorer/experimenter gui</dd></dl>
</li>
</ul>
<a name="getBeta()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getBeta</h4>
<pre>public double getBeta()</pre>
<div class="block">Get the value of Beta.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>Value of Beta.</dd></dl>
</li>
</ul>
<a name="setBeta(double)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setBeta</h4>
<pre>public void setBeta(double b)</pre>
<div class="block">Set the value of Beta.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>b</code> - Value to assign to Beta.</dd></dl>
</li>
</ul>
<a name="thresholdTipText()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>thresholdTipText</h4>
<pre>public java.lang.String thresholdTipText()</pre>
<div class="block">Returns the tip text for this property</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>tip text for this property suitable for
displaying in the explorer/experimenter gui</dd></dl>
</li>
</ul>
<a name="getThreshold()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getThreshold</h4>
<pre>public double getThreshold()</pre>
<div class="block">Get the value of Threshold.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>Value of Threshold.</dd></dl>
</li>
</ul>
<a name="setThreshold(double)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setThreshold</h4>
<pre>public void setThreshold(double t)</pre>
<div class="block">Set the value of Threshold.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>t</code> - Value to assign to Threshold.</dd></dl>
</li>
</ul>
<a name="defaultWeightTipText()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>defaultWeightTipText</h4>
<pre>public java.lang.String defaultWeightTipText()</pre>
<div class="block">Returns the tip text for this property</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>tip text for this property suitable for
displaying in the explorer/experimenter gui</dd></dl>
</li>
</ul>
<a name="getDefaultWeight()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getDefaultWeight</h4>
<pre>public double getDefaultWeight()</pre>
<div class="block">Get the value of defaultWeight.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>Value of defaultWeight.</dd></dl>
</li>
</ul>
<a name="setDefaultWeight(double)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setDefaultWeight</h4>
<pre>public void setDefaultWeight(double w)</pre>
<div class="block">Set the value of defaultWeight.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>w</code> - Value to assign to defaultWeight.</dd></dl>
</li>
</ul>
<a name="numIterationsTipText()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>numIterationsTipText</h4>
<pre>public java.lang.String numIterationsTipText()</pre>
<div class="block">Returns the tip text for this property</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>tip text for this property suitable for
displaying in the explorer/experimenter gui</dd></dl>
</li>
</ul>
<a name="getNumIterations()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getNumIterations</h4>
<pre>public int getNumIterations()</pre>
<div class="block">Get the value of numIterations.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>Value of numIterations.</dd></dl>
</li>
</ul>
<a name="setNumIterations(int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setNumIterations</h4>
<pre>public void setNumIterations(int v)</pre>
<div class="block">Set the value of numIterations.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>v</code> - Value to assign to numIterations.</dd></dl>
</li>
</ul>
<a name="seedTipText()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>seedTipText</h4>
<pre>public java.lang.String seedTipText()</pre>
<div class="block">Returns the tip text for this property</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>tip text for this property suitable for
displaying in the explorer/experimenter gui</dd></dl>
</li>
</ul>
<a name="getSeed()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getSeed</h4>
<pre>public int getSeed()</pre>
<div class="block">Get the value of Seed.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>Value of Seed.</dd></dl>
</li>
</ul>
<a name="setSeed(int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setSeed</h4>
<pre>public void setSeed(int v)</pre>
<div class="block">Set the value of Seed.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>v</code> - Value to assign to Seed.</dd></dl>
</li>
</ul>
<a name="getRevision()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRevision</h4>
<pre>public java.lang.String getRevision()</pre>
<div class="block">Returns the revision string.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../weka/core/RevisionHandler.html#getRevision()">getRevision</a></code> in interface <code><a href="../../../weka/core/RevisionHandler.html" title="interface in weka.core">RevisionHandler</a></code></dd>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../weka/classifiers/Classifier.html#getRevision()">getRevision</a></code> in class <code><a href="../../../weka/classifiers/Classifier.html" title="class in weka.classifiers">Classifier</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>the revision</dd></dl>
</li>
</ul>
<a name="main(java.lang.String[])">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>main</h4>
<pre>public static void main(java.lang.String[] argv)</pre>
<div class="block">Main method.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>argv</code> - the commandline options</dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../weka/classifiers/functions/VotedPerceptron.html" title="class in weka.classifiers.functions"><span class="strong">Prev Class</span></a></li>
<li>Next Class</li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?weka/classifiers/functions/Winnow.html" target="_top">Frames</a></li>
<li><a href="Winnow.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
themes/slender/layouts/404.html | philcryer/docker-fak3r.com | <h1>404 Not Found</h1>
<p><a href="{{ "/" | absURL }}">return to home</a></p> |
weka-3-7-13/doc/weka/classifiers/meta/package-summary.html | Ishub/hack-the-talk | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_71) on Thu Sep 10 12:30:20 NZST 2015 -->
<title>weka.classifiers.meta</title>
<meta name="date" content="2015-09-10">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="weka.classifiers.meta";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li class="navBarCell1Rev">Package</li>
<li>Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../weka/classifiers/lazy/kstar/package-summary.html">Prev Package</a></li>
<li><a href="../../../weka/classifiers/misc/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?weka/classifiers/meta/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 weka.classifiers.meta</h1>
</div>
<div class="contentContainer">
<ul class="blockList">
<li class="blockList">
<table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation">
<caption><span>Class Summary</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Class</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="../../../weka/classifiers/meta/AdaBoostM1.html" title="class in weka.classifiers.meta">AdaBoostM1</a></td>
<td class="colLast">
<div class="block">Class for boosting a nominal class classifier using
the Adaboost M1 method.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../weka/classifiers/meta/AdditiveRegression.html" title="class in weka.classifiers.meta">AdditiveRegression</a></td>
<td class="colLast">
<div class="block">Meta classifier that enhances the performance of a regression base classifier.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../weka/classifiers/meta/AttributeSelectedClassifier.html" title="class in weka.classifiers.meta">AttributeSelectedClassifier</a></td>
<td class="colLast">
<div class="block">Dimensionality of training and test data is reduced by attribute selection before being passed on to a classifier.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../weka/classifiers/meta/Bagging.html" title="class in weka.classifiers.meta">Bagging</a></td>
<td class="colLast">
<div class="block">Class for bagging a classifier to reduce variance.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../weka/classifiers/meta/ClassificationViaRegression.html" title="class in weka.classifiers.meta">ClassificationViaRegression</a></td>
<td class="colLast">
<div class="block">Class for doing classification using regression methods.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../weka/classifiers/meta/CostSensitiveClassifier.html" title="class in weka.classifiers.meta">CostSensitiveClassifier</a></td>
<td class="colLast">
<div class="block">A metaclassifier that makes its base classifier cost-sensitive.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../weka/classifiers/meta/CVParameterSelection.html" title="class in weka.classifiers.meta">CVParameterSelection</a></td>
<td class="colLast">
<div class="block">Class for performing parameter selection by cross-validation for any classifier.<br/>
<br/>
For more information, see:<br/>
<br/>
R.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../weka/classifiers/meta/FilteredClassifier.html" title="class in weka.classifiers.meta">FilteredClassifier</a></td>
<td class="colLast">
<div class="block">Class for running an arbitrary classifier on data
that has been passed through an arbitrary filter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../weka/classifiers/meta/IterativeClassifierOptimizer.html" title="class in weka.classifiers.meta">IterativeClassifierOptimizer</a></td>
<td class="colLast">
<div class="block">Chooses the best number of iterations for an IterativeClassifier such as
LogitBoost using cross-validation.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../weka/classifiers/meta/LogitBoost.html" title="class in weka.classifiers.meta">LogitBoost</a></td>
<td class="colLast">
<div class="block">Class for performing additive logistic regression.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../weka/classifiers/meta/MultiClassClassifier.html" title="class in weka.classifiers.meta">MultiClassClassifier</a></td>
<td class="colLast">
<div class="block">A metaclassifier for handling multi-class datasets with 2-class classifiers.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../weka/classifiers/meta/MultiClassClassifierUpdateable.html" title="class in weka.classifiers.meta">MultiClassClassifierUpdateable</a></td>
<td class="colLast">
<div class="block">A metaclassifier for handling multi-class datasets with 2-class classifiers.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../weka/classifiers/meta/MultiScheme.html" title="class in weka.classifiers.meta">MultiScheme</a></td>
<td class="colLast">
<div class="block">Class for selecting a classifier from among several using cross validation on the training data or the performance on the training data.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../weka/classifiers/meta/RandomCommittee.html" title="class in weka.classifiers.meta">RandomCommittee</a></td>
<td class="colLast">
<div class="block">Class for building an ensemble of randomizable base classifiers.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../weka/classifiers/meta/RandomizableFilteredClassifier.html" title="class in weka.classifiers.meta">RandomizableFilteredClassifier</a></td>
<td class="colLast">
<div class="block">Class for running an arbitrary classifier on data that has been passed through an arbitrary filter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../weka/classifiers/meta/RandomSubSpace.html" title="class in weka.classifiers.meta">RandomSubSpace</a></td>
<td class="colLast">
<div class="block">This method constructs a decision tree based classifier that maintains highest accuracy on training data and improves on generalization accuracy as it grows in complexity.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../weka/classifiers/meta/RegressionByDiscretization.html" title="class in weka.classifiers.meta">RegressionByDiscretization</a></td>
<td class="colLast">
<div class="block">A regression scheme that employs any classifier on a copy of the data that has the class attribute (equal-width) discretized.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../weka/classifiers/meta/Stacking.html" title="class in weka.classifiers.meta">Stacking</a></td>
<td class="colLast">
<div class="block">Combines several classifiers using the stacking method.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../weka/classifiers/meta/Vote.html" title="class in weka.classifiers.meta">Vote</a></td>
<td class="colLast">
<div class="block">Class for combining classifiers.</div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li class="navBarCell1Rev">Package</li>
<li>Class</li>
<li><a href="package-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="../../../weka/classifiers/lazy/kstar/package-summary.html">Prev Package</a></li>
<li><a href="../../../weka/classifiers/misc/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?weka/classifiers/meta/package-summary.html" target="_top">Frames</a></li>
<li><a href="package-summary.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
deps/boost/libs/pool/doc/html/header/boost/pool/singleton_pool_hpp.html | nawawi/poedit | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Header <boost/pool/singleton_pool.hpp></title>
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" href="../../../index.html" title="Boost.Pool">
<link rel="up" href="../../../boost_pool_c___reference.html" title="Boost.Pool C++ Reference">
<link rel="prev" href="../../../BOOST_POOL_VALIDATE_INTERNALS.html" title="Macro BOOST_POOL_VALIDATE_INTERNALS">
<link rel="next" href="../../../boost/singleton_pool.html" title="Class template singleton_pool">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../boost.png"></td>
<td align="center"><a href="../../../../../../../index.html">Home</a></td>
<td align="center"><a href="../../../../../../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../../../../../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="../../../BOOST_POOL_VALIDATE_INTERNALS.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../boost_pool_c___reference.html"><img src="../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../../../boost/singleton_pool.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="header.boost.pool.singleton_pool_hpp"></a>Header <<a href="../../../../../../../boost/pool/singleton_pool.hpp" target="_top">boost/pool/singleton_pool.hpp</a>></h3></div></div></div>
<p>The <code class="computeroutput">singleton_pool</code> class allows other pool interfaces for types of the same size to share the same underlying pool. </p>
<p>Header singleton_pool.hpp provides a template class <code class="computeroutput">singleton_pool</code>, which provides access to a pool as a singleton object. </p>
<pre class="synopsis"><span class="keyword">namespace</span> <span class="identifier">boost</span> <span class="special">{</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Tag<span class="special">,</span> <span class="keyword">unsigned</span> RequestedSize<span class="special">,</span> <span class="keyword">typename</span> UserAllocator<span class="special">,</span>
<span class="keyword">typename</span> Mutex<span class="special">,</span> <span class="keyword">unsigned</span> NextSize<span class="special">,</span> <span class="keyword">unsigned</span> MaxSize<span class="special">></span>
<span class="keyword">class</span> <a class="link" href="../../../boost/singleton_pool.html" title="Class template singleton_pool">singleton_pool</a><span class="special">;</span>
<span class="special">}</span></pre>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2000-2006 Stephen Cleary<br>Copyright © 2011 Paul A. Bristow<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="../../../BOOST_POOL_VALIDATE_INTERNALS.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../boost_pool_c___reference.html"><img src="../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../../../boost/singleton_pool.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
web/templates/webapplayers.com/inspinia_admin-v2.5/slick_carousel.html | iskun/iskun.net | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>INSPINIA | Slick Carousel</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="font-awesome/css/font-awesome.css" rel="stylesheet">
<link href="css/plugins/slick/slick.css" rel="stylesheet">
<link href="css/plugins/slick/slick-theme.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div id="wrapper">
<nav class="navbar-default navbar-static-side" role="navigation">
<div class="sidebar-collapse">
<ul class="nav metismenu" id="side-menu">
<li class="nav-header">
<div class="dropdown profile-element"> <span>
<img alt="image" class="img-circle" src="img/profile_small.jpg" />
</span>
<a data-toggle="dropdown" class="dropdown-toggle" href="#">
<span class="clear"> <span class="block m-t-xs"> <strong class="font-bold">David Williams</strong>
</span> <span class="text-muted text-xs block">Art Director <b class="caret"></b></span> </span> </a>
<ul class="dropdown-menu animated fadeInRight m-t-xs">
<li><a href="profile.html">Profile</a></li>
<li><a href="contacts.html">Contacts</a></li>
<li><a href="mailbox.html">Mailbox</a></li>
<li class="divider"></li>
<li><a href="login.html">Logout</a></li>
</ul>
</div>
<div class="logo-element">
IN+
</div>
</li>
<li>
<a href="index.html"><i class="fa fa-th-large"></i> <span class="nav-label">Dashboards</span> <span class="fa arrow"></span></a>
<ul class="nav nav-second-level collapse">
<li><a href="index.html">Dashboard v.1</a></li>
<li><a href="dashboard_2.html">Dashboard v.2</a></li>
<li><a href="dashboard_3.html">Dashboard v.3</a></li>
<li><a href="dashboard_4_1.html">Dashboard v.4</a></li>
<li><a href="dashboard_5.html">Dashboard v.5 <span class="label label-primary pull-right">NEW</span></a></li>
</ul>
</li>
<li>
<a href="layouts.html"><i class="fa fa-diamond"></i> <span class="nav-label">Layouts</span></a>
</li>
<li>
<a href="#"><i class="fa fa-bar-chart-o"></i> <span class="nav-label">Graphs</span><span class="fa arrow"></span></a>
<ul class="nav nav-second-level collapse">
<li><a href="graph_flot.html">Flot Charts</a></li>
<li><a href="graph_morris.html">Morris.js Charts</a></li>
<li><a href="graph_rickshaw.html">Rickshaw Charts</a></li>
<li><a href="graph_chartjs.html">Chart.js</a></li>
<li><a href="graph_chartist.html">Chartist</a></li>
<li><a href="c3.html">c3 charts</a></li>
<li><a href="graph_peity.html">Peity Charts</a></li>
<li><a href="graph_sparkline.html">Sparkline Charts</a></li>
</ul>
</li>
<li>
<a href="mailbox.html"><i class="fa fa-envelope"></i> <span class="nav-label">Mailbox </span><span class="label label-warning pull-right">16/24</span></a>
<ul class="nav nav-second-level collapse">
<li><a href="mailbox.html">Inbox</a></li>
<li><a href="mail_detail.html">Email view</a></li>
<li><a href="mail_compose.html">Compose email</a></li>
<li><a href="email_template.html">Email templates</a></li>
</ul>
</li>
<li>
<a href="metrics.html"><i class="fa fa-pie-chart"></i> <span class="nav-label">Metrics</span> </a>
</li>
<li>
<a href="widgets.html"><i class="fa fa-flask"></i> <span class="nav-label">Widgets</span></a>
</li>
<li>
<a href="#"><i class="fa fa-edit"></i> <span class="nav-label">Forms</span><span class="fa arrow"></span></a>
<ul class="nav nav-second-level collapse">
<li><a href="form_basic.html">Basic form</a></li>
<li><a href="form_advanced.html">Advanced Plugins</a></li>
<li><a href="form_wizard.html">Wizard</a></li>
<li><a href="form_file_upload.html">File Upload</a></li>
<li><a href="form_editors.html">Text Editor</a></li>
<li><a href="form_markdown.html">Markdown</a></li>
</ul>
</li>
<li>
<a href="#"><i class="fa fa-desktop"></i> <span class="nav-label">App Views</span> <span class="pull-right label label-primary">SPECIAL</span></a>
<ul class="nav nav-second-level collapse">
<li><a href="contacts.html">Contacts</a></li>
<li><a href="profile.html">Profile</a></li>
<li><a href="profile_2.html">Profile v.2</a></li>
<li><a href="contacts_2.html">Contacts v.2</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="project_detail.html">Project detail</a></li>
<li><a href="teams_board.html">Teams board</a></li>
<li><a href="social_feed.html">Social feed</a></li>
<li><a href="clients.html">Clients</a></li>
<li><a href="full_height.html">Outlook view</a></li>
<li><a href="vote_list.html">Vote list</a></li>
<li><a href="file_manager.html">File manager</a></li>
<li><a href="calendar.html">Calendar</a></li>
<li><a href="issue_tracker.html">Issue tracker</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="article.html">Article</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="timeline.html">Timeline</a></li>
<li><a href="pin_board.html">Pin board</a></li>
</ul>
</li>
<li>
<a href="#"><i class="fa fa-files-o"></i> <span class="nav-label">Other Pages</span><span class="fa arrow"></span></a>
<ul class="nav nav-second-level collapse">
<li><a href="search_results.html">Search results</a></li>
<li><a href="lockscreen.html">Lockscreen</a></li>
<li><a href="invoice.html">Invoice</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="login_two_columns.html">Login v.2</a></li>
<li><a href="forgot_password.html">Forget password</a></li>
<li><a href="register.html">Register</a></li>
<li><a href="404.html">404 Page</a></li>
<li><a href="500.html">500 Page</a></li>
<li><a href="empty_page.html">Empty page</a></li>
</ul>
</li>
<li>
<a href="#"><i class="fa fa-globe"></i> <span class="nav-label">Miscellaneous</span><span class="label label-info pull-right">NEW</span></a>
<ul class="nav nav-second-level collapse">
<li><a href="toastr_notifications.html">Notification</a></li>
<li><a href="nestable_list.html">Nestable list</a></li>
<li><a href="agile_board.html">Agile board</a></li>
<li><a href="timeline_2.html">Timeline v.2</a></li>
<li><a href="diff.html">Diff</a></li>
<li><a href="i18support.html">i18 support</a></li>
<li><a href="sweetalert.html">Sweet alert</a></li>
<li><a href="idle_timer.html">Idle timer</a></li>
<li><a href="truncate.html">Truncate</a></li>
<li><a href="spinners.html">Spinners</a></li>
<li><a href="tinycon.html">Live favicon</a></li>
<li><a href="google_maps.html">Google maps</a></li>
<li><a href="code_editor.html">Code editor</a></li>
<li><a href="modal_window.html">Modal window</a></li>
<li><a href="clipboard.html">Clipboard</a></li>
<li><a href="forum_main.html">Forum view</a></li>
<li><a href="validation.html">Validation</a></li>
<li><a href="tree_view.html">Tree view</a></li>
<li><a href="loading_buttons.html">Loading buttons</a></li>
<li><a href="chat_view.html">Chat view</a></li>
<li><a href="masonry.html">Masonry</a></li>
<li><a href="tour.html">Tour</a></li>
</ul>
</li>
<li>
<a href="#"><i class="fa fa-flask"></i> <span class="nav-label">UI Elements</span><span class="fa arrow"></span></a>
<ul class="nav nav-second-level collapse">
<li><a href="typography.html">Typography</a></li>
<li><a href="icons.html">Icons</a></li>
<li><a href="draggable_panels.html">Draggable Panels</a></li> <li><a href="resizeable_panels.html">Resizeable Panels</a></li>
<li><a href="buttons.html">Buttons</a></li>
<li><a href="video.html">Video</a></li>
<li><a href="tabs_panels.html">Panels</a></li>
<li><a href="tabs.html">Tabs</a></li>
<li><a href="notifications.html">Notifications & Tooltips</a></li>
<li><a href="badges_labels.html">Badges, Labels, Progress</a></li>
</ul>
</li>
<li>
<a href="grid_options.html"><i class="fa fa-laptop"></i> <span class="nav-label">Grid options</span></a>
</li>
<li>
<a href="#"><i class="fa fa-table"></i> <span class="nav-label">Tables</span><span class="fa arrow"></span></a>
<ul class="nav nav-second-level collapse">
<li><a href="table_basic.html">Static Tables</a></li>
<li><a href="table_data_tables.html">Data Tables</a></li>
<li><a href="table_foo_table.html">Foo Tables</a></li>
<li><a href="jq_grid.html">jqGrid</a></li>
</ul>
</li>
<li>
<a href="#"><i class="fa fa-shopping-cart"></i> <span class="nav-label">E-commerce</span><span class="fa arrow"></span></a>
<ul class="nav nav-second-level collapse">
<li><a href="ecommerce_products_grid.html">Products grid</a></li>
<li><a href="ecommerce_product_list.html">Products list</a></li>
<li><a href="ecommerce_product.html">Product edit</a></li>
<li><a href="ecommerce_product_detail.html">Product detail</a></li>
<li><a href="ecommerce-cart.html">Cart</a></li>
<li><a href="ecommerce-orders.html">Orders</a></li>
<li><a href="ecommerce_payments.html">Credit Card form</a></li>
</ul>
</li>
<li class="active">
<a href="#"><i class="fa fa-picture-o"></i> <span class="nav-label">Gallery</span><span class="fa arrow"></span></a>
<ul class="nav nav-second-level">
<li><a href="basic_gallery.html">Lightbox Gallery</a></li>
<li class="active"><a href="slick_carousel.html">Slick Carousel</a></li>
<li><a href="carousel.html">Bootstrap Carousel</a></li>
</ul>
</li>
<li>
<a href="#"><i class="fa fa-sitemap"></i> <span class="nav-label">Menu Levels </span><span class="fa arrow"></span></a>
<ul class="nav nav-second-level collapse">
<li>
<a href="#">Third Level <span class="fa arrow"></span></a>
<ul class="nav nav-third-level">
<li>
<a href="#">Third Level Item</a>
</li>
<li>
<a href="#">Third Level Item</a>
</li>
<li>
<a href="#">Third Level Item</a>
</li>
</ul>
</li>
<li><a href="#">Second Level Item</a></li>
<li>
<a href="#">Second Level Item</a></li>
<li>
<a href="#">Second Level Item</a></li>
</ul>
</li>
<li>
<a href="css_animation.html"><i class="fa fa-magic"></i> <span class="nav-label">CSS Animations </span><span class="label label-info pull-right">62</span></a>
</li>
<li class="landing_link">
<a target="_blank" href="landing.html"><i class="fa fa-star"></i> <span class="nav-label">Landing Page</span> <span class="label label-warning pull-right">NEW</span></a>
</li>
<li class="special_link">
<a href="package.html"><i class="fa fa-database"></i> <span class="nav-label">Package</span></a>
</li>
</ul>
</div>
</nav>
<div id="page-wrapper" class="gray-bg">
<div class="row border-bottom">
<nav class="navbar navbar-static-top" role="navigation" style="margin-bottom: 0">
<div class="navbar-header">
<a class="navbar-minimalize minimalize-styl-2 btn btn-primary " href="#"><i class="fa fa-bars"></i> </a>
<form role="search" class="navbar-form-custom" action="search_results.html">
<div class="form-group">
<input type="text" placeholder="Search for something..." class="form-control" name="top-search" id="top-search">
</div>
</form>
</div>
<ul class="nav navbar-top-links navbar-right">
<li>
<span class="m-r-sm text-muted welcome-message">Welcome to INSPINIA+ Admin Theme.</span>
</li>
<li class="dropdown">
<a class="dropdown-toggle count-info" data-toggle="dropdown" href="#">
<i class="fa fa-envelope"></i> <span class="label label-warning">16</span>
</a>
<ul class="dropdown-menu dropdown-messages">
<li>
<div class="dropdown-messages-box">
<a href="profile.html" class="pull-left">
<img alt="image" class="img-circle" src="img/a7.jpg">
</a>
<div class="media-body">
<small class="pull-right">46h ago</small>
<strong>Mike Loreipsum</strong> started following <strong>Monica Smith</strong>. <br>
<small class="text-muted">3 days ago at 7:58 pm - 10.06.2014</small>
</div>
</div>
</li>
<li class="divider"></li>
<li>
<div class="dropdown-messages-box">
<a href="profile.html" class="pull-left">
<img alt="image" class="img-circle" src="img/a4.jpg">
</a>
<div class="media-body ">
<small class="pull-right text-navy">5h ago</small>
<strong>Chris Johnatan Overtunk</strong> started following <strong>Monica Smith</strong>. <br>
<small class="text-muted">Yesterday 1:21 pm - 11.06.2014</small>
</div>
</div>
</li>
<li class="divider"></li>
<li>
<div class="dropdown-messages-box">
<a href="profile.html" class="pull-left">
<img alt="image" class="img-circle" src="img/profile.jpg">
</a>
<div class="media-body ">
<small class="pull-right">23h ago</small>
<strong>Monica Smith</strong> love <strong>Kim Smith</strong>. <br>
<small class="text-muted">2 days ago at 2:30 am - 11.06.2014</small>
</div>
</div>
</li>
<li class="divider"></li>
<li>
<div class="text-center link-block">
<a href="mailbox.html">
<i class="fa fa-envelope"></i> <strong>Read All Messages</strong>
</a>
</div>
</li>
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle count-info" data-toggle="dropdown" href="#">
<i class="fa fa-bell"></i> <span class="label label-primary">8</span>
</a>
<ul class="dropdown-menu dropdown-alerts">
<li>
<a href="mailbox.html">
<div>
<i class="fa fa-envelope fa-fw"></i> You have 16 messages
<span class="pull-right text-muted small">4 minutes ago</span>
</div>
</a>
</li>
<li class="divider"></li>
<li>
<a href="profile.html">
<div>
<i class="fa fa-twitter fa-fw"></i> 3 New Followers
<span class="pull-right text-muted small">12 minutes ago</span>
</div>
</a>
</li>
<li class="divider"></li>
<li>
<a href="grid_options.html">
<div>
<i class="fa fa-upload fa-fw"></i> Server Rebooted
<span class="pull-right text-muted small">4 minutes ago</span>
</div>
</a>
</li>
<li class="divider"></li>
<li>
<div class="text-center link-block">
<a href="notifications.html">
<strong>See All Alerts</strong>
<i class="fa fa-angle-right"></i>
</a>
</div>
</li>
</ul>
</li>
<li>
<a href="login.html">
<i class="fa fa-sign-out"></i> Log out
</a>
</li>
</ul>
</nav>
</div>
<div class="row wrapper border-bottom white-bg page-heading">
<div class="col-lg-10">
<h2>Slick Carousel</h2>
<ol class="breadcrumb">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a>Gallery</a>
</li>
<li class="active">
<strong>Slick Carousel</strong>
</li>
</ol>
</div>
<div class="col-lg-2">
</div>
</div>
<div class="wrapper wrapper-content">
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<div class="ibox">
<h4 class="text-center m">
Basic example of slick carousel
</h4>
<div class="slick_demo_1">
<div>
<div class="ibox-content">
<h2>Slide 1</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum has been the industry's standard dummy text ever since the 1500s, when an
unknown printer took a galley of type and scrambled it to make a type specimen
book. It has survived not only five centuries, but also the leap.
</p>
</div>
</div>
<div>
<div class="ibox-content">
<h2>Slide 2</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum has been the industry's standard dummy text ever since the 1500s, when an
unknown printer took a galley of type and scrambled it to make a type specimen
book. It has survived not only five centuries, but also the leap.
</p>
</div>
</div>
<div>
<div class="ibox-content">
<h2>Slide 3</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum has been the industry's standard dummy text ever since the 1500s, when an
unknown printer took a galley of type and scrambled it to make a type specimen
book. It has survived not only five centuries, but also the leap.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<h4 class="text-center m">
Multiple example with responsive breakpoints
</h4>
<div class="slick_demo_2">
<div>
<div class="ibox-content">
<h2>Slide 1</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum has been the industry's standard dummy text ever since the 1500s, when an
unknown printer took a galley of type and scrambled it to make a type specimen
book. It has survived not only five centuries, but also the leap.
</p>
</div>
</div>
<div>
<div class="ibox-content">
<h2>Slide 2</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum has been the industry's standard dummy text ever since the 1500s, when an
unknown printer took a galley of type and scrambled it to make a type specimen
book. It has survived not only five centuries, but also the leap.
</p>
</div>
</div>
<div>
<div class="ibox-content">
<h2>Slide 3</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum has been the industry's standard dummy text ever since the 1500s, when an
unknown printer took a galley of type and scrambled it to make a type specimen
book. It has survived not only five centuries, but also the leap.
</p>
</div>
</div>
<div>
<div class="ibox-content">
<h2>Slide 4</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum has been the industry's standard dummy text ever since the 1500s, when an
unknown printer took a galley of type and scrambled it to make a type specimen
book. It has survived not only five centuries, but also the leap.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<div class="ibox">
<h4 class="text-center m">
Animation example with custom speed, ibox title and adoptive height
</h4>
<div class="ibox-title">
Example title
</div>
<div class="slick_demo_3">
<div>
<div class="ibox-content">
<h2>Slide 1</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum has been the industry's standard dummy text ever since the 1500s, when an
book. It has survived not only five centuries, but also the leap.
</p>
</div>
</div>
<div>
<div class="ibox-content">
<h2>Slide 2</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum has been the industry's standard dummy text ever since the 1500s, when an
Ipsum has been the industry's standard dummy text ever since the 1500s, when an
unknown printer took a galley of type and scrambled it to make a type specimen
book. It has survived not only five centuries, but also the leap.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum has been the industry's standard dummy text ever since the 1500s, when an
unknown printer took a galley of type and scrambled it to make a type specimen
book. It has survived not only five centuries, but also the leap.
</p>
</div>
</div>
<div>
<div class="ibox-content">
<h2>Slide 3</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum has been the industry's standard dummy text ever since the 1500s, when an
unknown printer took a galley of type and scrambled it to make a type specimen
book. It has survived not only five centuries, but also the leap.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum has been the industry's standard dummy text ever since the 1500s, when an
book. It has survived not only five centuries, but also the leap.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="pull-right">
10GB of <strong>250GB</strong> Free.
</div>
<div>
<strong>Copyright</strong> Example Company © 2014-2015
</div>
</div>
</div>
</div>
<!-- Mainly scripts -->
<script src="js/jquery-2.1.1.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/plugins/metisMenu/jquery.metisMenu.js"></script>
<script src="js/plugins/slimscroll/jquery.slimscroll.min.js"></script>
<!-- Custom and plugin javascript -->
<script src="js/inspinia.js"></script>
<script src="js/plugins/pace/pace.min.js"></script>
<!-- slick carousel-->
<script src="js/plugins/slick/slick.min.js"></script>
<!-- Additional style only for demo purpose -->
<style>
.slick_demo_2 .ibox-content {
margin: 0 10px;
}
</style>
<script>
$(document).ready(function(){
$('.slick_demo_1').slick({
dots: true
});
$('.slick_demo_2').slick({
infinite: true,
slidesToShow: 3,
slidesToScroll: 1,
centerMode: true,
responsive: [
{
breakpoint: 1024,
settings: {
slidesToShow: 3,
slidesToScroll: 3,
infinite: true,
dots: true
}
},
{
breakpoint: 600,
settings: {
slidesToShow: 2,
slidesToScroll: 2
}
},
{
breakpoint: 480,
settings: {
slidesToShow: 1,
slidesToScroll: 1
}
}
]
});
$('.slick_demo_3').slick({
infinite: true,
speed: 500,
fade: true,
cssEase: 'linear',
adaptiveHeight: true
});
});
</script>
</body>
</html>
|
deps/boost/doc/html/boost/algorithm/regex_formatter.html | nawawi/poedit | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Function template regex_formatter</title>
<link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" href="../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
<link rel="up" href="../../string_algo/reference.html#header.boost.algorithm.string.regex_find_format_hpp" title="Header <boost/algorithm/string/regex_find_format.hpp>">
<link rel="prev" href="regex_finder.html" title="Function template regex_finder">
<link rel="next" href="replace_range_copy.html" title="Function replace_range_copy">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../boost.png"></td>
<td align="center"><a href="../../../../index.html">Home</a></td>
<td align="center"><a href="../../../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="regex_finder.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../string_algo/reference.html#header.boost.algorithm.string.regex_find_format_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="replace_range_copy.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.algorithm.regex_formatter"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Function template regex_formatter</span></h2>
<p>boost::algorithm::regex_formatter — Regex formatter. </p>
</div>
<h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2>
<div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: <<a class="link" href="../../string_algo/reference.html#header.boost.algorithm.string.regex_find_format_hpp" title="Header <boost/algorithm/string/regex_find_format.hpp>">boost/algorithm/string/regex_find_format.hpp</a>>
</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> CharT<span class="special">,</span> <span class="keyword">typename</span> TraitsT<span class="special">,</span> <span class="keyword">typename</span> AllocT<span class="special">></span>
<span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <span class="identifier">regex_formatter</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">basic_string</span><span class="special"><</span> <span class="identifier">CharT</span><span class="special">,</span> <span class="identifier">TraitsT</span><span class="special">,</span> <span class="identifier">AllocT</span> <span class="special">></span> <span class="special">&</span> Format<span class="special">,</span>
<span class="identifier">match_flag_type</span> Flags <span class="special">=</span> <span class="identifier">format_default</span><span class="special">)</span><span class="special">;</span></pre></div>
<div class="refsect1">
<a name="id-1.3.3.9.18.5.4"></a><h2>Description</h2>
<p>Construct the <code class="computeroutput">regex_formatter</code>. Regex formatter uses the regex engine to format a match found by the <code class="computeroutput">regex_finder</code>. This formatted it designed to closely cooperate with <code class="computeroutput">regex_finder</code>.</p>
<p>
</p>
<div class="variablelist"><table border="0" class="variablelist compact">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term">Parameters:</span></p></td>
<td><div class="variablelist"><table border="0" class="variablelist compact">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><code class="computeroutput">Flags</code></span></p></td>
<td><p>Format flags </p></td>
</tr>
<tr>
<td><p><span class="term"><code class="computeroutput">Format</code></span></p></td>
<td><p>Regex format definition </p></td>
</tr>
</tbody>
</table></div></td>
</tr>
<tr>
<td><p><span class="term">Returns:</span></p></td>
<td><p>An instance of the <code class="computeroutput">regex_formatter</code> functor </p></td>
</tr>
</tbody>
</table></div>
</div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2002-2004 Pavol Droba<p>Use, modification and distribution is subject to the Boost
Software License, Version 1.0. (See accompanying file
<code class="filename">LICENSE_1_0.txt</code> or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="regex_finder.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../string_algo/reference.html#header.boost.algorithm.string.regex_find_format_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="replace_range_copy.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
web/css/datepicker.css | bssamkah/agance | /*!
* Datepicker for Bootstrap
*
* Copyright 2012 Stefan Petre
* Licensed under the Apache License v2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
*/
.datepicker {
top: 0;
left: 0;
padding: 10px !important;
margin-top: 1px;
border: 1px solid #dfdfdf;
border-radius: 2px;
-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}
.datepicker:before {
content: '';
display: inline-block;
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-bottom: 7px solid #ccc;
border-bottom-color: rgba(0, 0, 0, 0.2);
position: absolute;
top: -7px;
left: 6px;
}
.datepicker:after {
content: '';
display: inline-block;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 6px solid #ffffff;
position: absolute;
top: -6px;
left: 7px;
}
.datepicker > div {
display: none;
}
.datepicker table {
width: 100%;
margin: 0;
}
.datepicker td,
.datepicker th {
color: #999;
text-align: center;
width: 20px;
height: 20px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.datepicker td.day {
color: #333;
}
.datepicker td.day:hover {
cursor: pointer;
color: #0eaaa6;
}
.datepicker td.day.disabled {
color: #bbbbbb;
}
.datepicker td.old,
.datepicker td.new {
color: #999;
}
.datepicker td.active,
.datepicker td.active:hover {
color: #ffffff;
background-color: #0eaaa6;
}
.datepicker td.active:hover,
.datepicker td.active:hover:hover,
.datepicker td.active:focus,
.datepicker td.active:hover:focus,
.datepicker td.active:active,
.datepicker td.active:hover:active,
.datepicker td.active.active,
.datepicker td.active:hover.active,
.datepicker td.active.disabled,
.datepicker td.active:hover.disabled,
.datepicker td.active[disabled],
.datepicker td.active:hover[disabled] {
color: #ffffff;
background-color: #068b85;
}
.datepicker td.active:active,
.datepicker td.active:hover:active,
.datepicker td.active.active,
.datepicker td.active:hover.active {
background-color: #068b85 \9;
}
.datepicker td span {
display: block;
width: 47px;
height: 54px;
line-height: 54px;
float: left;
margin: 2px;
cursor: pointer;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.datepicker td span:hover {
color: #0eaaa6;
}
.datepicker td span.active {
color: #ffffff;
background-color: #0eaaa6;
}
.datepicker td span.active:hover,
.datepicker td span.active:focus,
.datepicker td span.active:active,
.datepicker td span.active.active,
.datepicker td span.active.disabled,
.datepicker td span.active[disabled] {
color: #ffffff;
background-color: #068b85;
}
.datepicker td span.active:active,
.datepicker td span.active.active {
background-color: #068b85 \9;
}
.datepicker td span.old {
color: #999;
}
.datepicker th.switch {
width: 145px;
}
.datepicker th.next,
.datepicker th.prev {
font-size: 21px;
}
.datepicker thead tr:first-child th {
cursor: pointer;
}
.datepicker thead tr:first-child th:hover {
color: #0eaaa6;
}
.input-append.date .add-on i,
.input-prepend.date .add-on i {
display: block;
cursor: pointer;
width: 16px;
height: 16px;
} |
weka-3-7-13/doc/weka/core/matrix/LUDecomposition.html | rosygupta/hack-the-talk | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_71) on Thu Sep 10 12:29:42 NZST 2015 -->
<title>LUDecomposition</title>
<meta name="date" content="2015-09-10">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="LUDecomposition";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../weka/core/matrix/LinearRegression.html" title="class in weka.core.matrix"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../weka/core/matrix/Maths.html" title="class in weka.core.matrix"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?weka/core/matrix/LUDecomposition.html" target="_top">Frames</a></li>
<li><a href="LUDecomposition.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">weka.core.matrix</div>
<h2 title="Class LUDecomposition" class="title">Class LUDecomposition</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>weka.core.matrix.LUDecomposition</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>java.io.Serializable, <a href="../../../weka/core/RevisionHandler.html" title="interface in weka.core">RevisionHandler</a></dd>
</dl>
<hr>
<br>
<pre>public class <span class="strong">LUDecomposition</span>
extends java.lang.Object
implements java.io.Serializable, <a href="../../../weka/core/RevisionHandler.html" title="interface in weka.core">RevisionHandler</a></pre>
<div class="block">LU Decomposition.
<P>
For an m-by-n matrix A with m >= n, the LU decomposition is an m-by-n
unit lower triangular matrix L, an n-by-n upper triangular matrix U, and a
permutation vector piv of length m so that A(piv,:) = L*U. If m < n,
then L is m-by-m and U is m-by-n.
<P>
The LU decompostion with pivoting always exists, even if the matrix is
singular, so the constructor will never fail. The primary use of the LU
decomposition is in the solution of square systems of simultaneous linear
equations. This will fail if isNonsingular() returns false.
<p/>
Adapted from the <a href="http://math.nist.gov/javanumerics/jama/" target="_blank">JAMA</a> package.</div>
<dl><dt><span class="strong">Version:</span></dt>
<dd>$Revision: 5953 $</dd>
<dt><span class="strong">Author:</span></dt>
<dd>The Mathworks and NIST, Fracpete (fracpete at waikato dot ac dot nz)</dd>
<dt><span class="strong">See Also:</span></dt><dd><a href="../../../serialized-form.html#weka.core.matrix.LUDecomposition">Serialized Form</a></dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../weka/core/matrix/LUDecomposition.html#LUDecomposition(weka.core.matrix.Matrix)">LUDecomposition</a></strong>(<a href="../../../weka/core/matrix/Matrix.html" title="class in weka.core.matrix">Matrix</a> A)</code>
<div class="block">LU Decomposition</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="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>double</code></td>
<td class="colLast"><code><strong><a href="../../../weka/core/matrix/LUDecomposition.html#det()">det</a></strong>()</code>
<div class="block">Determinant</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>double[]</code></td>
<td class="colLast"><code><strong><a href="../../../weka/core/matrix/LUDecomposition.html#getDoublePivot()">getDoublePivot</a></strong>()</code>
<div class="block">Return pivot permutation vector as a one-dimensional double array</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../weka/core/matrix/Matrix.html" title="class in weka.core.matrix">Matrix</a></code></td>
<td class="colLast"><code><strong><a href="../../../weka/core/matrix/LUDecomposition.html#getL()">getL</a></strong>()</code>
<div class="block">Return lower triangular factor</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int[]</code></td>
<td class="colLast"><code><strong><a href="../../../weka/core/matrix/LUDecomposition.html#getPivot()">getPivot</a></strong>()</code>
<div class="block">Return pivot permutation vector</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../weka/core/matrix/LUDecomposition.html#getRevision()">getRevision</a></strong>()</code>
<div class="block">Returns the revision string.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../weka/core/matrix/Matrix.html" title="class in weka.core.matrix">Matrix</a></code></td>
<td class="colLast"><code><strong><a href="../../../weka/core/matrix/LUDecomposition.html#getU()">getU</a></strong>()</code>
<div class="block">Return upper triangular factor</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../weka/core/matrix/LUDecomposition.html#isNonsingular()">isNonsingular</a></strong>()</code>
<div class="block">Is the matrix nonsingular?</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../weka/core/matrix/Matrix.html" title="class in weka.core.matrix">Matrix</a></code></td>
<td class="colLast"><code><strong><a href="../../../weka/core/matrix/LUDecomposition.html#solve(weka.core.matrix.Matrix)">solve</a></strong>(<a href="../../../weka/core/matrix/Matrix.html" title="class in weka.core.matrix">Matrix</a> B)</code>
<div class="block">Solve A*X = B</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>equals, 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="LUDecomposition(weka.core.matrix.Matrix)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>LUDecomposition</h4>
<pre>public LUDecomposition(<a href="../../../weka/core/matrix/Matrix.html" title="class in weka.core.matrix">Matrix</a> A)</pre>
<div class="block">LU Decomposition</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>A</code> - Rectangular matrix</dd></dl>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="isNonsingular()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isNonsingular</h4>
<pre>public boolean isNonsingular()</pre>
<div class="block">Is the matrix nonsingular?</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>true if U, and hence A, is nonsingular.</dd></dl>
</li>
</ul>
<a name="getL()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getL</h4>
<pre>public <a href="../../../weka/core/matrix/Matrix.html" title="class in weka.core.matrix">Matrix</a> getL()</pre>
<div class="block">Return lower triangular factor</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>L</dd></dl>
</li>
</ul>
<a name="getU()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getU</h4>
<pre>public <a href="../../../weka/core/matrix/Matrix.html" title="class in weka.core.matrix">Matrix</a> getU()</pre>
<div class="block">Return upper triangular factor</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>U</dd></dl>
</li>
</ul>
<a name="getPivot()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getPivot</h4>
<pre>public int[] getPivot()</pre>
<div class="block">Return pivot permutation vector</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>piv</dd></dl>
</li>
</ul>
<a name="getDoublePivot()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getDoublePivot</h4>
<pre>public double[] getDoublePivot()</pre>
<div class="block">Return pivot permutation vector as a one-dimensional double array</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>(double) piv</dd></dl>
</li>
</ul>
<a name="det()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>det</h4>
<pre>public double det()</pre>
<div class="block">Determinant</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>det(A)</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - Matrix must be square</dd></dl>
</li>
</ul>
<a name="solve(weka.core.matrix.Matrix)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>solve</h4>
<pre>public <a href="../../../weka/core/matrix/Matrix.html" title="class in weka.core.matrix">Matrix</a> solve(<a href="../../../weka/core/matrix/Matrix.html" title="class in weka.core.matrix">Matrix</a> B)</pre>
<div class="block">Solve A*X = B</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>B</code> - A Matrix with as many rows as A and any number of columns.</dd>
<dt><span class="strong">Returns:</span></dt><dd>X so that L*U*X = B(piv,:)</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - Matrix row dimensions must agree.</dd>
<dd><code>java.lang.RuntimeException</code> - Matrix is singular.</dd></dl>
</li>
</ul>
<a name="getRevision()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getRevision</h4>
<pre>public java.lang.String getRevision()</pre>
<div class="block">Returns the revision string.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../weka/core/RevisionHandler.html#getRevision()">getRevision</a></code> in interface <code><a href="../../../weka/core/RevisionHandler.html" title="interface in weka.core">RevisionHandler</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>the revision</dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../weka/core/matrix/LinearRegression.html" title="class in weka.core.matrix"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../weka/core/matrix/Maths.html" title="class in weka.core.matrix"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?weka/core/matrix/LUDecomposition.html" target="_top">Frames</a></li>
<li><a href="LUDecomposition.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
poi-3.14/docs/apidocs/org/apache/poi/xslf/model/package-summary.html | Sebaxtian/KDD | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<TITLE>
org.apache.poi.xslf.model (POI API Documentation)
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="org.apache.poi.xslf.model (POI 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="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../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/xslf/extractor/package-summary.html"><B>PREV PACKAGE</B></A>
<A HREF="../../../../../org/apache/poi/xslf/usermodel/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/poi/xslf/model/package-summary.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<H2>
Package org.apache.poi.xslf.model
</H2>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../../org/apache/poi/xslf/model/CharacterPropertyFetcher.html" title="class in org.apache.poi.xslf.model">CharacterPropertyFetcher<T></A></B></TD>
<TD> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../../org/apache/poi/xslf/model/ParagraphPropertyFetcher.html" title="class in org.apache.poi.xslf.model">ParagraphPropertyFetcher<T></A></B></TD>
<TD> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../../org/apache/poi/xslf/model/PropertyFetcher.html" title="class in org.apache.poi.xslf.model">PropertyFetcher<T></A></B></TD>
<TD>Used internally to navigate the PresentationML text style hierarchy and fetch properties</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../../org/apache/poi/xslf/model/TextBodyPropertyFetcher.html" title="class in org.apache.poi.xslf.model">TextBodyPropertyFetcher<T></A></B></TD>
<TD>Created by IntelliJ IDEA.</TD>
</TR>
</TABLE>
<P>
<DL>
</DL>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../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/xslf/extractor/package-summary.html"><B>PREV PACKAGE</B></A>
<A HREF="../../../../../org/apache/poi/xslf/usermodel/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/poi/xslf/model/package-summary.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<i>Copyright 2016 The Apache Software Foundation or
its licensors, as applicable.</i>
</BODY>
</HTML>
|
api/2.0.0-RC1/Thelia/Core/Event/Config/ConfigCreateEvent.html | InformatiqueProg/thelia.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="robots" content="index, follow, all" />
<title>Thelia\Core\Event\Config\ConfigCreateEvent | </title>
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
</head>
<body id="class">
<div class="header">
<ul>
<li><a href="../../../../classes.html">Classes</a></li>
<li><a href="../../../../namespaces.html">Namespaces</a></li>
<li><a href="../../../../interfaces.html">Interfaces</a></li>
<li><a href="../../../../traits.html">Traits</a></li>
<li><a href="../../../../doc-index.html">Index</a></li>
</ul>
<div id="title"></div>
<div class="type">Class</div>
<h1><a href="../../../../Thelia/Core/Event/Config.html">Thelia\Core\Event\Config</a>\ConfigCreateEvent</h1>
</div>
<div class="content">
<p> class
<strong>ConfigCreateEvent</strong> extends <a href="../../../../Thelia/Core/Event/Config/ConfigEvent.html"><abbr title="Thelia\Core\Event\Config\ConfigEvent">ConfigEvent</abbr></a></p>
<h2>Methods</h2>
<table>
<tr>
<td class="type">
</td>
<td class="last">
<a href="#method___construct">__construct</a>(<a href="../../../../Thelia/Model/Config.html"><abbr title="Thelia\Model\Config">Config</abbr></a> $config = null)
<p>
</p>
</td>
<td><small>from <a href="../../../../Thelia/Core/Event/Config/ConfigEvent.html#method___construct"><abbr title="Thelia\Core\Event\Config\ConfigEvent">ConfigEvent</abbr></a></small></td>
</tr>
<tr>
<td class="type">
</td>
<td class="last">
<a href="#method_hasConfig">hasConfig</a>()
<p>
</p>
</td>
<td><small>from <a href="../../../../Thelia/Core/Event/Config/ConfigEvent.html#method_hasConfig"><abbr title="Thelia\Core\Event\Config\ConfigEvent">ConfigEvent</abbr></a></small></td>
</tr>
<tr>
<td class="type">
</td>
<td class="last">
<a href="#method_getConfig">getConfig</a>()
<p>
</p>
</td>
<td><small>from <a href="../../../../Thelia/Core/Event/Config/ConfigEvent.html#method_getConfig"><abbr title="Thelia\Core\Event\Config\ConfigEvent">ConfigEvent</abbr></a></small></td>
</tr>
<tr>
<td class="type">
</td>
<td class="last">
<a href="#method_setConfig">setConfig</a>($config)
<p>
</p>
</td>
<td><small>from <a href="../../../../Thelia/Core/Event/Config/ConfigEvent.html#method_setConfig"><abbr title="Thelia\Core\Event\Config\ConfigEvent">ConfigEvent</abbr></a></small></td>
</tr>
<tr>
<td class="type">
</td>
<td class="last">
<a href="#method_getEventName">getEventName</a>()
<p>
</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
</td>
<td class="last">
<a href="#method_setEventName">setEventName</a>($event_name)
<p>
</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
</td>
<td class="last">
<a href="#method_getValue">getValue</a>()
<p>
</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
</td>
<td class="last">
<a href="#method_setValue">setValue</a>($value)
<p>
</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
</td>
<td class="last">
<a href="#method_getLocale">getLocale</a>()
<p>
</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
</td>
<td class="last">
<a href="#method_setLocale">setLocale</a>($locale)
<p>
</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
</td>
<td class="last">
<a href="#method_getTitle">getTitle</a>()
<p>
</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
</td>
<td class="last">
<a href="#method_setTitle">setTitle</a>($title)
<p>
</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
</td>
<td class="last">
<a href="#method_getHidden">getHidden</a>()
<p>
</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
</td>
<td class="last">
<a href="#method_setHidden">setHidden</a>($hidden)
<p>
</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
</td>
<td class="last">
<a href="#method_getSecured">getSecured</a>()
<p>
</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
</td>
<td class="last">
<a href="#method_setSecured">setSecured</a>($secured)
<p>
</p>
</td>
<td></td>
</tr>
</table>
<h2>Details</h2>
<h3 id="method___construct">
<div class="location">in <a href="../../../../Thelia/Core/Event/Config/ConfigEvent.html#method___construct"><abbr title="Thelia\Core\Event\Config\ConfigEvent">ConfigEvent</abbr></a> at line 32</div>
<code> public
<strong>__construct</strong>(<a href="../../../../Thelia/Model/Config.html"><abbr title="Thelia\Model\Config">Config</abbr></a> $config = null)</code>
</h3>
<div class="details">
<p>
</p>
<p>
</p>
<div class="tags">
<h4>Parameters</h4>
<table>
<tr>
<td><a href="../../../../Thelia/Model/Config.html"><abbr title="Thelia\Model\Config">Config</abbr></a></td>
<td>$config</td>
<td>
</td>
</tr>
</table>
</div>
</div>
<h3 id="method_hasConfig">
<div class="location">in <a href="../../../../Thelia/Core/Event/Config/ConfigEvent.html#method_hasConfig"><abbr title="Thelia\Core\Event\Config\ConfigEvent">ConfigEvent</abbr></a> at line 37</div>
<code> public
<strong>hasConfig</strong>()</code>
</h3>
<div class="details">
<p>
</p>
<p>
</p>
<div class="tags">
</div>
</div>
<h3 id="method_getConfig">
<div class="location">in <a href="../../../../Thelia/Core/Event/Config/ConfigEvent.html#method_getConfig"><abbr title="Thelia\Core\Event\Config\ConfigEvent">ConfigEvent</abbr></a> at line 42</div>
<code> public
<strong>getConfig</strong>()</code>
</h3>
<div class="details">
<p>
</p>
<p>
</p>
<div class="tags">
</div>
</div>
<h3 id="method_setConfig">
<div class="location">in <a href="../../../../Thelia/Core/Event/Config/ConfigEvent.html#method_setConfig"><abbr title="Thelia\Core\Event\Config\ConfigEvent">ConfigEvent</abbr></a> at line 47</div>
<code> public
<strong>setConfig</strong>($config)</code>
</h3>
<div class="details">
<p>
</p>
<p>
</p>
<div class="tags">
<h4>Parameters</h4>
<table>
<tr>
<td></td>
<td>$config</td>
<td>
</td>
</tr>
</table>
</div>
</div>
<h3 id="method_getEventName">
<div class="location">at line 36</div>
<code> public
<strong>getEventName</strong>()</code>
</h3>
<div class="details">
<p>
</p>
<p>
</p>
<div class="tags">
</div>
</div>
<h3 id="method_setEventName">
<div class="location">at line 41</div>
<code> public
<strong>setEventName</strong>($event_name)</code>
</h3>
<div class="details">
<p>
</p>
<p>
</p>
<div class="tags">
<h4>Parameters</h4>
<table>
<tr>
<td></td>
<td>$event_name</td>
<td>
</td>
</tr>
</table>
</div>
</div>
<h3 id="method_getValue">
<div class="location">at line 48</div>
<code> public
<strong>getValue</strong>()</code>
</h3>
<div class="details">
<p>
</p>
<p>
</p>
<div class="tags">
</div>
</div>
<h3 id="method_setValue">
<div class="location">at line 53</div>
<code> public
<strong>setValue</strong>($value)</code>
</h3>
<div class="details">
<p>
</p>
<p>
</p>
<div class="tags">
<h4>Parameters</h4>
<table>
<tr>
<td></td>
<td>$value</td>
<td>
</td>
</tr>
</table>
</div>
</div>
<h3 id="method_getLocale">
<div class="location">at line 60</div>
<code> public
<strong>getLocale</strong>()</code>
</h3>
<div class="details">
<p>
</p>
<p>
</p>
<div class="tags">
</div>
</div>
<h3 id="method_setLocale">
<div class="location">at line 65</div>
<code> public
<strong>setLocale</strong>($locale)</code>
</h3>
<div class="details">
<p>
</p>
<p>
</p>
<div class="tags">
<h4>Parameters</h4>
<table>
<tr>
<td></td>
<td>$locale</td>
<td>
</td>
</tr>
</table>
</div>
</div>
<h3 id="method_getTitle">
<div class="location">at line 72</div>
<code> public
<strong>getTitle</strong>()</code>
</h3>
<div class="details">
<p>
</p>
<p>
</p>
<div class="tags">
</div>
</div>
<h3 id="method_setTitle">
<div class="location">at line 77</div>
<code> public
<strong>setTitle</strong>($title)</code>
</h3>
<div class="details">
<p>
</p>
<p>
</p>
<div class="tags">
<h4>Parameters</h4>
<table>
<tr>
<td></td>
<td>$title</td>
<td>
</td>
</tr>
</table>
</div>
</div>
<h3 id="method_getHidden">
<div class="location">at line 84</div>
<code> public
<strong>getHidden</strong>()</code>
</h3>
<div class="details">
<p>
</p>
<p>
</p>
<div class="tags">
</div>
</div>
<h3 id="method_setHidden">
<div class="location">at line 89</div>
<code> public
<strong>setHidden</strong>($hidden)</code>
</h3>
<div class="details">
<p>
</p>
<p>
</p>
<div class="tags">
<h4>Parameters</h4>
<table>
<tr>
<td></td>
<td>$hidden</td>
<td>
</td>
</tr>
</table>
</div>
</div>
<h3 id="method_getSecured">
<div class="location">at line 96</div>
<code> public
<strong>getSecured</strong>()</code>
</h3>
<div class="details">
<p>
</p>
<p>
</p>
<div class="tags">
</div>
</div>
<h3 id="method_setSecured">
<div class="location">at line 101</div>
<code> public
<strong>setSecured</strong>($secured)</code>
</h3>
<div class="details">
<p>
</p>
<p>
</p>
<div class="tags">
<h4>Parameters</h4>
<table>
<tr>
<td></td>
<td>$secured</td>
<td>
</td>
</tr>
</table>
</div>
</div>
</div>
<div id="footer">
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
</div>
</body>
</html>
|
public/frontend/views/about.html | gxbllm/IoTgo | <div class="about-us">
<h1>What’s IoTgo?</h1>
<p>IoTgo is an open source IoT platform, like WordPress, ZenCart and all
other open source software, you can deploy your own IoTgo cloud service.</p>
<p>We at ITEAD Studio are committed to provide a complete set of hardware
for IoTgo with open source hardware designs and open source firmware.</p>
<p>The overall IoTgo system architecture including IoTgo, IoTgo-compatible
apps and IoTgo-compatible devices is illustrated by following graph.</p>
<p><img class="img-responsive img-thumbnail"
src="../images/iotgo-arch.png"></p>
<div class="alert alert-info">The whole IoT system is open sourced,
including hardware designs and firmwares, not just IoTgo and Web App.</div>
<div class="row">
<div class="col-sm-4">
<h2>Device & Gateway</h2>
<p>Several popular open source hardware platform designs including schematics
, firmware code and SDK will be unveiled for your reference.</p>
<p>For more information, please refer to
<a href="/hardware">Hardware Reference</a>.</p>
</div>
<div class="col-sm-4">
<h2>IoTgo & Web app</h2>
<p>To download IoTgo source code, please refer to
<a href="https://github.com/itead/IoTgo">IoTgo Github repo</a>.</p>
<p>To see what it looks like after deployment,
<a href="/">iotgo.iteadstudio.com</a> itself is indeed a living example.</p>
</div>
<div class="col-sm-4">
<h2>Mobile App & Desktop App</h2>
<p>Currently we are focusing on IoTgo and IoTgo Web App, but we do
develop Mobile App and Desktop App from time to time. When they are ready, we
will open source them on Github, so please bear with us.</p>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<h2>IoTgo Arduino Library</h2>
<p>IoTgo Arduino Library is an embedded microcontroller SDK with reference
firmware for Arduino boards. Users can define a device object directly by
using this library and related methods to connect Arduino boards to IoTgo,
which hugely simplify development process and save your time. What’s more,
starters can write the hardware functional code on their own easily.</p>
<p>For more information, please refer to
<a href="https://github.com/itead/ITEADLIB_Arduino_IoTgo">
IoTgo Arduino Library Github repo</a></p>
</div>
<div class="col-sm-4">
<h2>Segnix & IoTgo Segnix Library</h2>
<p>Segnix is an open-source interface library for hardware manipulation
based on Linux platform and compatible with
<a href="http://arduino.cc/en/Reference/HomePage" target="_blank">Arduino API</a>
You can develop on it by using C/C++ and Python. Segnix is dedicated to
provide a fast, efficient and unified software development environment
for the person like you with a strong electronic design idea.
</p>
<p>The latest Segnix contains IoTgo Segnix Library, and you can invoke
various interfaces to manipulate devices. This is suitable for the rapid
development of Raspberry Pi, Banana Pi and other single board computers.</p>
<p>For more information, please refer to
<a href="https://github.com/itead/Segnix">ITEAD Segnix Github repo</a>.</p>
</div>
<div class="col-sm-4">
<h2>About iotgo.iteadstudio.com</h2>
<p>Visit <a href="//iotgo.iteadstudio.com">iotgo.iteadstudio.com</a>, you
can see what a living IoT platform looks
like. This platform can be an example for experience and reference.
Besides, it is our real operating IoT server as well, if you don’t want
to spare the efforts and time to build your own cloud server, you can
register on this site and make your devices connect to this platform.</p>
</div>
</div>
<h1>Why IoTgo</h1>
<p>Intelligent hardware project is comprehensive. To accomplish a project
like that, it requires not only the proficient skills of hardware design
and embedded devices coding, but also the reliable supports from cloud
servers and web UI. No one could be good at all these areas in the same
time. Before we launch IoTgo, it’s hard to find a complete IoT open
source resource including hardware, firmware, server and web UI. Now,
we provide this complete IoT open source solution for you.</p>
<div class="row">
<div class="col-sm-3">
<h3>Complete Open Source Solution</h3>
<p>Complete open source for hardware, software and website with
detailed tutorials.</p>
</div>
<div class="col-sm-3">
<h3>Support Device Accessing</h3>
<p>IoTgo supports the indie devices accessing and managing as well as
the DIY devices, which means users who can buy and use the indie
devices directly after registering.</p>
</div>
<div class="col-sm-3">
<h3>Update Continuously</h3>
<p>According to user feedback, we will consistently update this
platform to make it stronger, more reliable and convenient.</p>
</div>
<div class="col-sm-3">
<h3>Customizable and Technical Support</h3>
<p>If you are unfamiliar with certain part in the process of hardware,
software or server, and need our technical support or
customized development, we are pleased to help you with your project.</p>
</div>
</div>
<h1>No hesitation, come and fork us!</h1>
<div class="row">
<div class="col-sm-3">
<h3>Hardware Designers</h3>
<P>If you are proficient in hardware design, you can layout your own
hardware with small size, low power and far more wireless transferring
distance by referring to our hardware design. For your unfamiliar parts
such as embedded controller codes, cloud server, and website design,
you can use IoTgo directly.</P>
</div>
<div class="col-sm-3">
<h3>Software Developers</h3>
<p>If you are skillful in embedded software development, you can write a
firmware with high efficiency and stable performance by referring to our
codes and libraries. For hardware part, you can just use our open
sourced hardware designs. For cloud part, IoTgo is always here for you.</p>
</div>
<div class="col-sm-3">
<h3>Website Designers</h3>
<p>If you are experienced in server and website development, and despise
our poor UI design, it’s OK! You can build the smart devices supported
website with reasonable, simple and elegant design to meet your demand,
and the hardware embedded coding is no problem. Without any modification,
you can directly use the complete IoTgo hardware designs and firmware
codes we provide.</p>
</div>
<div class="col-sm-3">
<h3>Development Team</h3>
<p>If you have a team that is capable of doing all processes we mention
above, we also hope that you can visit our IoT website and have it for
reference. At least you don’t have to develop your project from nothing.
Any suggestion is welcome.</p>
</div>
</div>
</div> |
views/acquire-in-person.html | RyanGladstone/clean-slate | <div class="row">
<div class="col-lg-12">
<h1>How do I obtain a copy of my COMPLETE DC Criminal Record?</h1>
<p class="text-italic">
If you have already acquired your COMPLETE criminal record in front of you, click
<a ui-sref="legal">here</a>. Your complete criminal record consist of the Form PD 70 provided by
the Police Department and your court record provided by the Superior Court.
</p>
<h4>Step 1</h4>
<p>Obtain a copy of your police record at Metropolitan Police Department (MPD):</p>
<ol class="list-alpha-upper">
<li>Be prepared to bring with you to MPD the following items:
<ol class="list-roman-lower">
<li>a copy of a valid ID (such as a driver's license)</li>
<li>$7.00 cash or money order to pay for the record AND</li>
<li>a copy of your social security number</li>
</ol>
</li>
<li>
Go to: Metropolitan Police Department (MPD) Record Information Desk
300 Indiana Avenue, NW, 1st Floor, Criminal History Section, Room 1075
Monday – Friday, 9:00 a.m. – 5:00 p.m.
</li>
<li>
Stop at the desk and show valid identification to receive a payment slip
</li>
<li>
Take the payment slip to room 1140B on the 1st Floor to pay the $7 charge and
obtain a receipt for proof of payment.
</li>
<li>
Go back to the desk on the 1st Floor and show paid receipt and copy of your
ID to receive a Criminal History Request Form.
</li>
<li>
Complete the Criminal History Request Form in all of the spaces marked with a dot, as instructed.
</li>
<li>
Go to the service window down the hallway. The clerk will check the identification and take the
receipt
and Criminal History Request form.
</li>
<li>
Have a seat until you are called when the police clearance is ready. The clerk
will give you a copy of the Police Record (Form PD 70).<br>
<strong>
HOLD ONTO THIS FORM. You will file a copy of it as Exhibit A when you file your Motion to Seal.
</strong>
</li>
</ol>
<h4>Step 2</h4>
<p>
Obtain a copy of your court record from the Superior Court of the District of Columbia. Go to the:
</p>
<address>
<strong>Criminal Records Division</strong><br>
D.C. Superior Court, Room 4001 (on the 4th floor)<br>
500 Indiana Avenue, N.W. <br>
<abbr title="Telephone">Tel:</abbr> (202) 879-11451<br>
Monday through Friday, 8:30am to 5:30pm
</address>
<p>
To obtain the information needed to complete the Motion to Seal Records, give your name and birth date to
the Clerk and request your entire Superior Court criminal record OR enter your name into the Court View
software on the computers in Room 4001 and search for your records.
</p>
</div>
</div> |
api/2.0.0/Thelia/Condition/Implementation/MatchForXArticles.html | InformatiqueProg/thelia.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="robots" content="index, follow, all" />
<title>Thelia\Condition\Implementation\MatchForXArticles | </title>
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
</head>
<body id="class">
<div class="header">
<ul>
<li><a href="../../../classes.html">Classes</a></li>
<li><a href="../../../namespaces.html">Namespaces</a></li>
<li><a href="../../../interfaces.html">Interfaces</a></li>
<li><a href="../../../traits.html">Traits</a></li>
<li><a href="../../../doc-index.html">Index</a></li>
</ul>
<div id="title"></div>
<div class="type">Class</div>
<h1><a href="../../../Thelia/Condition/Implementation.html">Thelia\Condition\Implementation</a>\MatchForXArticles</h1>
</div>
<div class="content">
<p> class
<strong>MatchForXArticles</strong> extends <a href="../../../Thelia/Condition/Implementation/ConditionAbstract.html"><abbr title="Thelia\Condition\Implementation\ConditionAbstract">ConditionAbstract</abbr></a></p>
<div class="description">
<p>Check a Checkout against its Product number</p>
<p>
</p>
</div>
<h2>Constants</h2>
<table>
<tr>
<td>INPUT1</td>
<td class="last">
<p><em>Condition 1st parameter : quantity</em></p>
<p>
</p>
</td>
</tr>
</table>
<h2>Methods</h2>
<table>
<tr>
<td class="type">
</td>
<td class="last">
<a href="#method___construct">__construct</a>(<a href="../../../Thelia/Coupon/FacadeInterface.html"><abbr title="Thelia\Coupon\FacadeInterface">FacadeInterface</abbr></a> $facade)
<p>Constructor</p>
</td>
<td><small>from <a href="../../../Thelia/Condition/Implementation/ConditionAbstract.html#method___construct"><abbr title="Thelia\Condition\Implementation\ConditionAbstract">ConditionAbstract</abbr></a></small></td>
</tr>
<tr>
<td class="type">
array
</td>
<td class="last">
<a href="#method_getAvailableOperators">getAvailableOperators</a>()
<p>Return all available Operators for this Condition</p>
</td>
<td><small>from <a href="../../../Thelia/Condition/Implementation/ConditionAbstract.html#method_getAvailableOperators"><abbr title="Thelia\Condition\Implementation\ConditionAbstract">ConditionAbstract</abbr></a></small></td>
</tr>
<tr>
<td class="type">
array
</td>
<td class="last">
<a href="#method_getValidators">getValidators</a>()
<p>Return all validators</p>
</td>
<td><small>from <a href="../../../Thelia/Condition/Implementation/ConditionAbstract.html#method_getValidators"><abbr title="Thelia\Condition\Implementation\ConditionAbstract">ConditionAbstract</abbr></a></small></td>
</tr>
<tr>
<td class="type">
string
</td>
<td class="last">
<a href="#method_getServiceId">getServiceId</a>()
<p>Get ConditionManager Service id</p>
</td>
<td><small>from <a href="../../../Thelia/Condition/Implementation/ConditionAbstract.html#method_getServiceId"><abbr title="Thelia\Condition\Implementation\ConditionAbstract">ConditionAbstract</abbr></a></small></td>
</tr>
<tr>
<td class="type">
<a href="../../../Thelia/Condition/SerializableCondition.html"><abbr title="Thelia\Condition\SerializableCondition">SerializableCondition</abbr></a>
</td>
<td class="last">
<a href="#method_getSerializableCondition">getSerializableCondition</a>()
<p>Return a serializable Condition</p>
</td>
<td><small>from <a href="../../../Thelia/Condition/Implementation/ConditionAbstract.html#method_getSerializableCondition"><abbr title="Thelia\Condition\Implementation\ConditionAbstract">ConditionAbstract</abbr></a></small></td>
</tr>
<tr>
<td class="type">
<abbr title="Thelia\Condition\Implementation\$this">$this</abbr>
</td>
<td class="last">
<a href="#method_setValidatorsFromForm">setValidatorsFromForm</a>(array $operators, array $values)
<p>Check validators relevancy and store them</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
bool
</td>
<td class="last">
<a href="#method_isMatching">isMatching</a>()
<p>Test if Customer meets conditions</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
string
</td>
<td class="last">
<a href="#method_getName">getName</a>()
<p>Get I18n name</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
string
</td>
<td class="last">
<a href="#method_getToolTip">getToolTip</a>()
<p>Get I18n tooltip Explain in detail what the Condition checks</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
string
</td>
<td class="last">
<a href="#method_getSummary">getSummary</a>()
<p>Get I18n summary Explain briefly the condition with given values</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
string
</td>
<td class="last">
<a href="#method_drawBackOfficeInputs">drawBackOfficeInputs</a>()
<p>Draw the input displayed in the BackOffice allowing Admin to set its Coupon Conditions</p>
</td>
<td></td>
</tr>
</table>
<h2>Details</h2>
<h3 id="method___construct">
<div class="location">in <a href="../../../Thelia/Condition/Implementation/ConditionAbstract.html#method___construct"><abbr title="Thelia\Condition\Implementation\ConditionAbstract">ConditionAbstract</abbr></a> at line 63</div>
<code> public
<strong>__construct</strong>(<a href="../../../Thelia/Coupon/FacadeInterface.html"><abbr title="Thelia\Coupon\FacadeInterface">FacadeInterface</abbr></a> $facade)</code>
</h3>
<div class="details">
<p>Constructor</p>
<p>
</p>
<div class="tags">
<h4>Parameters</h4>
<table>
<tr>
<td><a href="../../../Thelia/Coupon/FacadeInterface.html"><abbr title="Thelia\Coupon\FacadeInterface">FacadeInterface</abbr></a></td>
<td>$facade</td>
<td>Service Facade</td>
</tr>
</table>
</div>
</div>
<h3 id="method_getAvailableOperators">
<div class="location">in <a href="../../../Thelia/Condition/Implementation/ConditionAbstract.html#method_getAvailableOperators"><abbr title="Thelia\Condition\Implementation\ConditionAbstract">ConditionAbstract</abbr></a> at line 75</div>
<code> public array
<strong>getAvailableOperators</strong>()</code>
</h3>
<div class="details">
<p>Return all available Operators for this Condition</p>
<p>
</p>
<div class="tags">
<h4>Return Value</h4>
<table>
<tr>
<td>array</td>
<td>Operators::CONST</td>
</tr>
</table>
</div>
</div>
<h3 id="method_getValidators">
<div class="location">in <a href="../../../Thelia/Condition/Implementation/ConditionAbstract.html#method_getValidators"><abbr title="Thelia\Condition\Implementation\ConditionAbstract">ConditionAbstract</abbr></a> at line 85</div>
<code> public array
<strong>getValidators</strong>()</code>
</h3>
<div class="details">
<p>Return all validators</p>
<p>
</p>
<div class="tags">
<h4>Return Value</h4>
<table>
<tr>
<td>array</td>
<td>
</td>
</tr>
</table>
</div>
</div>
<h3 id="method_getServiceId">
<div class="location">in <a href="../../../Thelia/Condition/Implementation/ConditionAbstract.html#method_getServiceId"><abbr title="Thelia\Condition\Implementation\ConditionAbstract">ConditionAbstract</abbr></a> at line 128</div>
<code> public string
<strong>getServiceId</strong>()</code>
</h3>
<div class="details">
<p>Get ConditionManager Service id</p>
<p>
</p>
<div class="tags">
<h4>Return Value</h4>
<table>
<tr>
<td>string</td>
<td>
</td>
</tr>
</table>
</div>
</div>
<h3 id="method_getSerializableCondition">
<div class="location">in <a href="../../../Thelia/Condition/Implementation/ConditionAbstract.html#method_getSerializableCondition"><abbr title="Thelia\Condition\Implementation\ConditionAbstract">ConditionAbstract</abbr></a> at line 151</div>
<code> public <a href="../../../Thelia/Condition/SerializableCondition.html"><abbr title="Thelia\Condition\SerializableCondition">SerializableCondition</abbr></a>
<strong>getSerializableCondition</strong>()</code>
</h3>
<div class="details">
<p>Return a serializable Condition</p>
<p>
</p>
<div class="tags">
<h4>Return Value</h4>
<table>
<tr>
<td><a href="../../../Thelia/Condition/SerializableCondition.html"><abbr title="Thelia\Condition\SerializableCondition">SerializableCondition</abbr></a></td>
<td>
</td>
</tr>
</table>
</div>
</div>
<h3 id="method_setValidatorsFromForm">
<div class="location">at line 54</div>
<code> public <abbr title="Thelia\Condition\Implementation\$this">$this</abbr>
<strong>setValidatorsFromForm</strong>(array $operators, array $values)</code>
</h3>
<div class="details">
<p>Check validators relevancy and store them</p>
<p>
</p>
<div class="tags">
<h4>Parameters</h4>
<table>
<tr>
<td>array</td>
<td>$operators</td>
<td>Operators the Admin set in BackOffice</td>
</tr>
<tr>
<td>array</td>
<td>$values</td>
<td>Values the Admin set in BackOffice</td>
</tr>
</table>
<h4>Return Value</h4>
<table>
<tr>
<td><abbr title="Thelia\Condition\Implementation\$this">$this</abbr></td>
<td>
</td>
</tr>
</table>
<h4>Exceptions</h4>
<table>
<tr>
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
<td>
</td>
</tr>
</table>
</div>
</div>
<h3 id="method_isMatching">
<div class="location">at line 107</div>
<code> public bool
<strong>isMatching</strong>()</code>
</h3>
<div class="details">
<p>Test if Customer meets conditions</p>
<p>
</p>
<div class="tags">
<h4>Return Value</h4>
<table>
<tr>
<td>bool</td>
<td>
</td>
</tr>
</table>
</div>
</div>
<h3 id="method_getName">
<div class="location">at line 127</div>
<code> public string
<strong>getName</strong>()</code>
</h3>
<div class="details">
<p>Get I18n name</p>
<p>
</p>
<div class="tags">
<h4>Return Value</h4>
<table>
<tr>
<td>string</td>
<td>
</td>
</tr>
</table>
</div>
</div>
<h3 id="method_getToolTip">
<div class="location">at line 142</div>
<code> public string
<strong>getToolTip</strong>()</code>
</h3>
<div class="details">
<p>Get I18n tooltip Explain in detail what the Condition checks</p>
<p>
</p>
<div class="tags">
<h4>Return Value</h4>
<table>
<tr>
<td>string</td>
<td>
</td>
</tr>
</table>
</div>
</div>
<h3 id="method_getSummary">
<div class="location">at line 159</div>
<code> public string
<strong>getSummary</strong>()</code>
</h3>
<div class="details">
<p>Get I18n summary Explain briefly the condition with given values</p>
<p>
</p>
<div class="tags">
<h4>Return Value</h4>
<table>
<tr>
<td>string</td>
<td>
</td>
</tr>
</table>
</div>
</div>
<h3 id="method_drawBackOfficeInputs">
<div class="location">at line 199</div>
<code> public string
<strong>drawBackOfficeInputs</strong>()</code>
</h3>
<div class="details">
<p>Draw the input displayed in the BackOffice allowing Admin to set its Coupon Conditions</p>
<p>
</p>
<div class="tags">
<h4>Return Value</h4>
<table>
<tr>
<td>string</td>
<td>HTML string</td>
</tr>
</table>
</div>
</div>
</div>
<div id="footer">
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
</div>
</body>
</html>
|
poi-3.14/docs/apidocs/org/apache/poi/hslf/util/class-use/MutableByteArrayOutputStream.html | Sebaxtian/KDD | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<TITLE>
Uses of Class org.apache.poi.hslf.util.MutableByteArrayOutputStream (POI API Documentation)
</TITLE>
<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.poi.hslf.util.MutableByteArrayOutputStream (POI 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="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/poi/hslf/util/MutableByteArrayOutputStream.html" title="class in org.apache.poi.hslf.util"><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/poi/hslf/util/\class-useMutableByteArrayOutputStream.html" target="_top"><B>FRAMES</B></A>
<A HREF="MutableByteArrayOutputStream.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.poi.hslf.util.MutableByteArrayOutputStream</B></H2>
</CENTER>
No usage of org.apache.poi.hslf.util.MutableByteArrayOutputStream
<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/poi/hslf/util/MutableByteArrayOutputStream.html" title="class in org.apache.poi.hslf.util"><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/poi/hslf/util/\class-useMutableByteArrayOutputStream.html" target="_top"><B>FRAMES</B></A>
<A HREF="MutableByteArrayOutputStream.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<i>Copyright 2016 The Apache Software Foundation or
its licensors, as applicable.</i>
</BODY>
</HTML>
|
ajax/libs/highlight.js/10.7.3/styles/pojoaque.min.css | cdnjs/cdnjs | .hljs{display:block;overflow-x:auto;padding:.5em;color:#dccf8f;background:url(./pojoaque.jpg) repeat scroll left top #181914}.hljs-comment,.hljs-quote{color:#586e75;font-style:italic}.hljs-addition,.hljs-keyword,.hljs-literal,.hljs-selector-tag{color:#b64926}.hljs-doctag,.hljs-number,.hljs-regexp,.hljs-string{color:#468966}.hljs-built_in,.hljs-name,.hljs-section,.hljs-title{color:#ffb03b}.hljs-class .hljs-title,.hljs-tag,.hljs-template-variable,.hljs-type,.hljs-variable{color:#b58900}.hljs-attribute{color:#b89859}.hljs-bullet,.hljs-link,.hljs-meta,.hljs-subst,.hljs-symbol{color:#cb4b16}.hljs-deletion{color:#dc322f}.hljs-selector-class,.hljs-selector-id{color:#d3a60c}.hljs-formula{background:#073642}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700} |
src/main/webapp/form/bcHpStyle.css | williamgrosset/OSCAR-ConCert | /*
*
* Copyright (c) 2001-2002. Department of Family Medicine, McMaster University. All Rights Reserved.
* This software is published under the GPL GNU General Public License.
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version. *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * * You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
*
* <OSCAR TEAM>
*
* This software was written for the
* Department of Family Medicine
* McMaster University
* Hamilton
* Ontario, Canada
*/
.Head {
background-color: #BBBBBB;
padding-top: 3px;
padding-bottom: 3px;
width: 100%;
font-size: 12pt;
}
.Head INPUT {
width: 100px;
}
.Head A {
font-size: 12pt;
}
.headline {
font-size: 12pt;
}
BODY {
font-family: Helvetica, Arial, Verdana, Tahoma, sans-serif;
background-color: #BBCCFF;
}
TABLE {
font-family: Helvetica, Arial, Verdana, Tahoma, sans-serif;
font-size: 10pt;
}
.title {
background-color: #486ebd;
color: #FFFFFF;
font-weight: bold;
text-align: centre;
}
.shrinkMe {
font-size: 9pt;
}
.small9 {
font-size: 9pt;
}
.small8 {
font-size: 8pt;
}
.small10 {
font-size: 10pt;
}
.spe {
background-color: #CCCCFF;
}
.comment {
color: #000033;
background-color: silver;
layer-background-color: #cccccc;
position: absolute;
z-index: 99;
visibility: hidden;
font-size: 11px;
border: 1px solid black;
} |
tetrad-gui/src/main/resources/resources/javahelp/manual/genetics/genetics_old.html | amurrayw/tetrad | <html>
<head>
<title>Genetic Simulation</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<table width="100%" border="1" bgcolor="maroon">
<tr>
<td><h2><font color="white"> Genetic Simulation -Version 1.0-</font></h2></td>
<td align=right><font color="white"><B>By: Richard Scheines and Joe Ramsey</B>
</font></td>
</tr>
</table>
<table width="99%" border="1" cellspacing="5" cellpadding="5">
<tr>
<td colspan="3">
<table width="75%" border="1" cellspacing="5" cellpadding="5">
<tr>
<td><b><font color="#996644"><u>Table of Conents</u><b><em><u><a name="top"></a></u></em></b></font></b>
</td>
</tr>
<tr>
<td>
<blockquote>
<p><b><font color="#996644"> <a style="color:#996633; text-decoration:none" href="#link1">1.
The General Model</a></font></b></p>
</blockquote>
</td>
</tr>
<tr>
<td>
<blockquote>
<p><font color="#996644"><b><a style="color:#996633; text-decoration:none" href="#link2">2.
Specifying the Graph</a></b></font></p>
</blockquote>
</td>
</tr>
<tr>
<td>
<blockquote>
<p><font color="#996644"><b> <a style="color:#996633; text-decoration:none" href="#link3">3.
Specifying the Parametric Model</a></b></font></p>
</blockquote>
</td>
</tr>
<tr>
<td>
<blockquote>
<p><b><font color="#996644"><a style="color:#996633; text-decoration:none" href="#link4">4.
Specifying the Instantiated Model</a></font></b></p>
</blockquote>
</td>
</tr>
<tr>
<td>
<blockquote>
<p><b><font color="#996644"><a style="color:#996633; text-decoration:none" href="#link5">5.
Initializing the Cells</a></font></b></p>
</blockquote>
</td>
</tr>
<tr>
<td>
<blockquote>
<p><b><font color="#996644"><a style="color:#996633; text-decoration:none" href="#link6">6.
Running a Simulation</a></font></b></p>
</blockquote>
</td>
</tr>
<tr>
<td>
<blockquote>
<p><font color="#996644"><b><a style="color:#996633; text-decoration:none" href="#link7">7.
Aggregation and Measurement Error</a></b></font></p>
</blockquote>
</td>
</tr>
<tr>
<td>
<blockquote>
<p><font color="#996644"><b><a style="color:#996633; text-decoration:none" href="#link8">8.
References</a></b></font></p>
</blockquote>
</td>
</tr>
<tr>
<td> </td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="3"><b><font color="#996644"><a name="#link1"></a>1. The General
Model</font></b></td>
</tr>
<tr>
<td colspan="3"><font color="#996644"><b>1.1 An Introduction</b></font></td>
</tr>
<tr>
<td colspan="3">Consider a discrete time series involving N individuals, each
with M variables V1 … Vm. For example, Figure 1 represents a time series
for three variables, each measured at 5 times.
</td>
</tr>
<tr>
<td><img src="Images/Gene_Pics/figure_1.jpg"></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><b>Figure 1: Causal Graph for 5 Times</b></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td colspan="3">If we assume that the process modelled is stable over time,
then we can represent the causal structure of the series with a <b>Repeating</b>
<b>Graph</b> that includes the smallest fragment of the series that repeats.
The number of temporal slices in the repeating graph is the longest lag
of direct influence plus one. For example, the repeating graph in Figure
3*, which represents the series in Figure 1, needs three temporal slices
to represent a repeating sequence, because V2 has a direct effect on V3
with a temporal lag of two.
</td>
</tr>
<tr>
<td colspan="3" height="73">
<blockquote>
<p>* We connect all pairs of variables at the beginning of the repeating
sequence with a double-headed arrow to represent an unconstrained causal
connection, so that d-separation applied to this graph does not entail
that these variables are independent, contrary to the fact that later
versions of the same variable are causally connected in the repeating
graph.</p>
</blockquote>
</td>
</tr>
<tr>
<td><img src="Images/Gene_Pics/figure_2.jpg"></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><B>Figure 2: Repeating Graph</B></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td colspan="3">In order to simulate data from this class of models, we need
to express each variable (or its probability distribution) at an arbitrary
"current time" as a function of its direct causes. To represent
the set of direct causes for each variable, we construct an <b>update graph</b>.
For example, the update graph in Figure 5 expresses the causal information
needed to simulate the time series represented in Figure 1 and Figure 3.
The update graph consists of the M variables repeated in temporal slices
from lag = mlag (most remote direct influence) to lag=0 (current time),
but includes only edges that are into variables at lag = 0, that is, it
includes only edges that represent <i>direct influences into the current
time. </i></td>
</tr>
<tr>
<td><img src="Images/Gene_Pics/figure_3.jpg"></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><B>Figure 3: Update Graph </B></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td colspan="3">The time lag i in an update graph is indexed by ":Li".
Thus, variable V1 at the current time (lag of 0) in an update graph is V1:L0,
and the same variable two time slices in the past V1:L2. The constant mlag
is the maximum lag of direct influence.
</td>
</tr>
<tr>
<td colspan="3">To simulate data in Tetrad 4, you must specify an update graph
and then interpret it as a parametric model. There are 4 choices of parametric
models, where in each either i) the value of each variable at the current
time is a function of its causal parents and an error term, or ii) the probability
distribution of the variable is a function of its causal parents. Given
an instantiation of the chosen parametric model, and the assumption that
the causal relations remain constant over time for each individual, values
for N individuals (cells) over T times can be simulated to produce a data
cube that is:
</td>
</tr>
<tr>
<td colspan="3">
<div align="center"><b>N (individuals) x M (variables) x
T (times).</b></div>
</td>
</tr>
<tr>
<td colspan="3">Although the cube has three dimensions, we will store it in
the standard two, by repeating M columns for each time slice, as so:
</td>
</tr>
<tr>
<td><img src="Images/Gene_Pics/figure_4.jpg"></td>
</tr>
<tr>
<td colspan="3"><B>Figure 4: Data Cube </B></td>
</tr>
<tr>
<td colspan="3">The simulation to produce these data is run in two stages:
an "initialization" phase and an "update" phase. The
initialization phase must assign values for each individual for at least
as many times as the maximum lag in the time series model, i.e, from time
t = 1 until time t = mlag. After time � mlag, values can be assigned to
variables for a given individual using the given instantiation of the parametric
model that interprets the update graph.
</td>
</tr>
<tr>
<td colspan="3">Data collection regimes for protein expression involve tissues
that contain thousands of cells, not all of which behave strictly identically
and not all of which can be measured in isolation.
</td>
</tr>
<tr>
<td colspan="3">Since current technology cannot perfectly measure the levels,
even relatively, of gene (or mRNA) expression, or levels of protein synthesis
in cells, we also allow the user to specify a measurement model that aggregates
cells by dish and models measurement error.
</td>
</tr>
<tr>
<td colspan="3">In what follows, we explain how to specify the graph, choose
a parametric model to interpret the graph, instantiate the parameters of
the model, pick an initialization routine, and finally specify the measurement
model.
</td>
</tr>
<tr>
<td colspan="3" height="18"> </td>
</tr>
<tr>
<td colspan="3"><font color="#996644"><b>1.2 Starting the Program</b></font></td>
</tr>
<tr>
<td colspan="3">The overall simulation specification begins by loading Tetrad-4,
which is a Java application that can be downloaded from: http://www.phil.cmu.edu/tetrad/.
The download will write a .jar file to your disk. 1) Make sure version 1.3
or higher of the Java SDK (or JRE) is installed. If it is not - go to
http://java.sun.com/j2se/1.3/jre/index.html
to download it. 2) On a Windows machine, double clicking the jar file should
start the program. If it doesn't, you need to modify the File Type mapping
for the .jar extension so that the "open" action is "javaw
-jar %1". If you don’t know how to do this, either find someone
who does, or take the command line option, which is: 3) In any case, the
jar can be run on all machines (Linux included) by typing "java -jar
<path-to-filename.jar>" at the command line.
</td>
</tr>
<tr>
<td><img src="Images/Gene_Pics/figure_5.jpg" alt="TETRAD 4 on Start-up"></td>
</tr>
<tr>
<td colspan="3"><B>Figure 5: Tetrad 4 on Start-up </B></td>
</tr>
<tr>
<td colspan="3">When the program opens, it will display the empty workbench
we show in Figure 8. In order to generate data, you need to specify a graph,
a parametric model (PM), an instantiation of this model (IM), and connect
them all to a Data modelNode. These objects can be deposited on the workbench
by clicking on their icon in the left and clicking where you want them located
on the workbench, and then by clicking on the "Flow-Charter" icon
on the left and then dragging from one modelNode to another to connect them.
The skeleton for a simulation looks like Figure 9.
</td>
</tr>
<tr>
<td><img src="Images/Gene_Pics/figure_6.jpg" alt="Simulation Session"></td>
</tr>
<tr>
<td colspan="3"><B>Figure 6: Simulation Session </B></td>
</tr>
<tr>
<td colspan="3">To fully specify each piece of the simulation, you need to
double-click on each modelNode, beginning with the graph and moving down to the
PM and then to the IM. We cover each in turn.
</td>
</tr>
<tr>
<td colspan="3">
<div align="center"><font color="#996644"><b><em><u><a href="#top">Return
to Top</a></u></em></b></font></div>
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><font color="#996644"><b>2. Specifying the Graph<a name="#link2"></a></b></font></td>
</tr>
<tr>
<td colspan="3">After double-clicking on the graph modelNode - you will be given
a choice (Figure 11) of whether you want to specify a general graph or an
update graph, with the default an update graph.
</td>
</tr>
<tr>
<td><img src="Images/Gene_Pics/figure_7.jpg" alt="Specifying a Graph"></td>
</tr>
<tr>
<td colspan="3"><B>Figure 7 </B></td>
</tr>
<tr>
<td colspan="3" height="37">The Regular graph allows you to specify a Causal
Graph interpretable as a Bayes Net or Structural Equation Model. An update
graph allows you to specify a specialized structure for genetic simulations.
Choose Update graph.
</td>
</tr>
<tr>
<td colspan="3">You will then be prompted to specify the graph manually or
randomly, with randomly the default.
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><font color="#996644"><b>2.1 Manual Graph Specification</b></font></td>
</tr>
<tr>
<td colspan="3">
<blockquote>
<p>1) User Specifies M, the number of variables <br>
(range: 1 to 500, default = 5)</p>
</blockquote>
</td>
</tr>
<tr>
<td colspan="3">
<blockquote>
<p>2) User Specifies mlag <br>
(range: 1 to 5, default = 1)</p>
</blockquote>
</td>
</tr>
<tr>
<td colspan="3">
<blockquote>
<p>3) Default graph is drawn for user in graph drawing window with arrow
from each Vi:L1 to Vi:L0, for mlag = 2 and M = 5</p>
</blockquote>
</td>
</tr>
<tr>
<td><img src="Images/Gene_Pics/figure_8.jpg"></td>
</tr>
<tr>
<td><b>Figure 8</b></td>
</tr>
<tr>
<td colspan="3">
<blockquote>
<p>4) User completes graph manually, that is, they add edges from variables
at lag > 0 into variables at lag = 0. No other edges are allowed
in this representation of the series.</p>
</blockquote>
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><font color="#996644"><b>2.2 Random Graph Specification</b></font></td>
</tr>
<tr>
<td colspan="3">
<blockquote>
<p>1) User Specifies M, the number of variables in each individual <br>
(range: 1 to 500, default = 5)</p>
</blockquote>
</td>
</tr>
<tr>
<td colspan="3">
<blockquote>
<p>2) User Specifies mlag <br>
(range: 1 to 5, default = 1)</p>
</blockquote>
</td>
</tr>
<tr>
<td colspan="3">
<blockquote>
<p>3) User chooses and sets the value of exactly one of:<br>
a) constant indegree ci (range: 0 to M*mlag,
default = 2)<br>
b) max indegree mxi (range: 0 to M*mlag, default
= 2)<br>
c) mean indegree mni (range: 0 to M, default
= 2)</p>
</blockquote>
</td>
</tr>
<tr>
<td colspan="3">
<blockquote>
<p>a) constant indegree - choose parents(Vi) by putting a uniform distribution
over the possible parents of Vi (that is, all variables earlier in time)
and drawing without replacement until |parents(Vi)| = ci </p>
</blockquote>
</td>
</tr>
<tr>
<td colspan="3">
<blockquote>
<p>b) max indegree - for each variable in the set of possible parents
of Vi ,include it in parents(Vi) if a random draw from a uniform [0,1]
is greater than cutoff = 1/|possible parents of V-i|, until either the
possible parents of Vi are exhaused, or |parents(Vi)| = mxi whichever
is first.</p>
</blockquote>
</td>
</tr>
<tr>
<td colspan="3">
<blockquote>
<p>c) mean indegree - for each variable Vi, decide for each variable in
the set of possible parents of Vi to include it in parents(Vi) if a
random draw from a uniform [0,1] is greater than cutoff = 1/|possible
parents of V-i|, until the possible parents of Vi are exhaused. </p>
</blockquote>
</td>
</tr>
<tr>
<td colspan="3">
<div align="center"><font color="#996644"><b><em><u><a href="#top">Return
to Top</a></u></em></b></font></div>
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><font color="#996644"><b>3. Specifying the Parametric Model<a name="#link3"></a></b></font></td>
</tr>
<tr>
<td colspan="3">You must now interpret the graph as a parametric model. To
begin this, double-click on the PM modelNode in the session editor (Figure 9).
When you are finished, just close the PM editor window.
</td>
</tr>
<tr>
<td colspan="3">If you have specified an update graph, then you will be given
four choices (Figure 14) of parametric model families, each of which we
describe below.
</td>
</tr>
<tr>
<td><img src="Images/Gene_Pics/figure_9.jpg"></td>
</tr>
<tr>
<td><b>Figure 9 </b></td>
</tr>
<tr>
<td colspan="3">These families are not exclusive, but each has advantages.</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><font color="#996644"><b>3.1 Glass Updating</b></font></td>
</tr>
<tr>
<td colspan="3">In both Glass and General Updating parametric models, the
current value of each variable Vi:L0 is set by a function with the following
general form.
</td>
</tr>
<tr>
<td colspan="3">
<div align="center">Update Function: Vi:L0 = Vi:L1 + rate[-Vi:L1
+ Fi(parents(Vi:L0)/Vi:L1 )] + ei
</div>
</td>
</tr>
<tr>
<td colspan="3">where: 0 < rate £ 1, and ei is an "error"
term drawn from a given probability distribution (discussed below), all
variables are continuous, and Fi is a function specified by the user. The
difference between Glass and General updating models involves only the form
of the functions Fi.
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><font color="#996644"><b>3.1.1 Preliminary Binary Projection</b></font></td>
</tr>
<tr>
<td colspan="3">Even though the variables in this parametric model class are
continuous, Glass functions take boolean valued inputs, so some pre-processing
is necessary. The inputs to the function Fi are the members of the set P
= {parents(Vi:L0)/Vi:L1}, that is, the parents of Vi:L0 except for Vi:L1,
which is already in the updating function. The idea behind Glass functions
is to simplify the input to whether a given gene is expressing at “high”
or “low” levels. We map each Vp Œ P to 0 (low, that is, below
its average expression level of 0) or 1 (high, that is, above 0). We do
this with the following binary projection BP:
</td>
</tr>
<tr>
<td colspan="3">
<div align="center">BP: For each Vp Œ P, let Vp* = 1
if Vp > 0, and 0 otherwise.
</div>
</td>
</tr>
<tr>
<td colspan="3">Simulated values in for variables Vi will range mostly over
the interval [-2.0, 2.0] and will oscillate above and below 0.0. Since raw
microarray data is typically given as a ratio of microarray spot brightness
to average spot intensity, where this ratio typically ranges from near 0.0
up to about 10.0, with averages around 1.0, it is useful to think of the
simulated data as loglinear with respect to raw data—viz., log(x) of
each intensity ratio x is recorded in the simulation in place of the intensity
ratio x.
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><font color="#996644"><b>3.1.2 The Function Table for Fi</b></font></td>
</tr>
<tr>
<td colspan="3">Since genetic regulators either inhibit or activate their
targets, Edwards and Glass (2000, p.3) set the range of Fi to {-1,1}. To
specify a particular Fi, construct a truth-table with 1 column for each
Vp Œ P and one for the output of F-i. Thus the truth table will have
2|P| rows. For example, if P = {V3:L1, V5:L2}, then the function table for
Fi is:
</td>
</tr>
<tr>
<td colspan="3">
<table width="40%" border="1" cellspacing="2" cellpadding="2">
<tr>
<td width="35%">
<div align="center">V3:L1*</div>
</td>
<td width="34%">
<div align="center">V5:L2*</div>
</td>
<td width="31%">
<div align="center">F</div>
</td>
</tr>
<tr>
<td width="35%">
<div align="center">0</div>
</td>
<td width="34%">
<div align="center">0</div>
</td>
<td width="31%">
<div align="center"></div>
</td>
</tr>
<tr>
<td width="35%">
<div align="center">0</div>
</td>
<td width="34%">
<div align="center">1</div>
</td>
<td width="31%">
<div align="center"></div>
</td>
</tr>
<tr>
<td width="35%">
<div align="center">1</div>
</td>
<td width="34%">
<div align="center">0</div>
</td>
<td width="31%">
<div align="center"></div>
</td>
</tr>
<tr>
<td width="35%" height="19">
<div align="center">1</div>
</td>
<td width="34%" height="19">
<div align="center">1</div>
</td>
<td width="31%" height="19">
<div align="center"></div>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="3">Filling in the Fi column in this function table specifies
the particular instantiation of Fi used in the update function for variable
Vi, thus this step is left to the Instantiated Model specification below.
</td>
</tr>
<tr>
<td colspan="3">By picking the Glass Updating parametric family, you are committing
yourself to the class of models parametrized by the update function above
and Glass functions for the Fi.
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3" height="16"><font color="#996644"><b>3.2 General Updating</b></font></td>
</tr>
<tr>
<td colspan="3">Again, in both Glass and General Updating parametric models,
the current value of each variable Vi:0 is set by a function with the following
general form.
</td>
</tr>
<tr>
<td colspan="3">
<blockquote>
<p>Update Function: Vi:L0 = Vi:L1 + rate[-Vi:L1 + Fi(parents(Vi:L0)/Vi:L1
)] + ei</p>
</blockquote>
</td>
</tr>
<tr>
<td colspan="3">where: 0 < rate £ 1, and ei is an "error"
term drawn from a given probability distribution (discussed below), all
variables are continuous, and Fi is a function specified by the user. The
difference between Glass and General updating models involves only the form
of the functions Fi. In General Updating parametric models, the user is
free to specify any function for the Fi, not just Glass functions. Here
we will use Tianjiao's GAM specifier to allow the user to specify, for each
i, the function Fi.
</td>
</tr>
<tr>
<td colspan="3" height="17"> </td>
</tr>
<tr>
<td colspan="3"><font color="#FFFFFF"><font color="#996644"><b>3.3 GRN GAM</b></font></font></td>
</tr>
<tr>
<td colspan="3">In this parametric family, the variables are continuous and
the update function is slightly more general than the ones used in 3.1 and
3.2.
</td>
</tr>
<tr>
<td colspan="3">
<div align="center">Update Function: Vi:L0 = Gi[parents(Vi:L0)]
+ ei
</div>
</td>
</tr>
<tr>
<td colspan="3">GAM stands for general additive model, so the only constraint
on this parametric model is that the G-i are additive functions. The particular
instantiaions of Gi for each i are fixed when you specify the instantiated
model (IM). Here we will use Tianjiao's GAM specifier to allow the user
to specify, for each i, the function Gi.
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><font color="#996644"><b>3.4 BN SEM</b></font></td>
</tr>
<tr>
<td colspan="3">In this parametric family, the variables are discrete and
the causal system is just interpreted as a standard discrete Bayes Network,
that is, the update function is just a conditional probability table.
</td>
</tr>
<tr>
<td colspan="3">
<div align="center">Update Function: P(Vi:L0) = Gi[parents(Vi:L0)]</div>
</td>
</tr>
<tr>
<td colspan="3">At the parametric level, you need to specify the number of
categories for each variable, as well as the value of each category. This
is identical to the Bayes Net parametric model in general Tetrad 4 models.
</td>
</tr>
<tr>
<td colspan="3">
<div align="center"><font color="#996644"><b><em><u><a href="#top">Return
to Top</a></u></em></b></font></div>
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3" height="19"><b><font color="#996644">4. Specifying the Instantiated
Model<a name="#link4"></a></font></b></td>
</tr>
<tr>
<td colspan="3" height="44">Once the parametric model has been specified,
you need only specfiy values for the parameters in the corresponding instantiated
model (IM). To do this, double-click on the IM modelNode in the session workbench.
Close the IM editor to finish. Since the parameters depend on the PM chosen,
we cover each of the above classes in turn.
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><font color="#996644"><b>4.1 Glass Updating</b></font></td>
</tr>
<tr>
<td colspan="3">The free parameters of a Glass Updating model are:</td>
</tr>
<tr>
<td colspan="3" height="49">
<ul>
<li>the rate</li>
<li> the distributions over the error terms ei</li>
<li> the Boolean functions Fi</li>
</ul>
</td>
</tr>
<tr>
<td colspan="3">The error distributions are all assumed to be pairwise indedpendent,
and normal with mean 0 and standard deviation SD(ei). The rate and error
distributions default as follows.
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><font color="#996644"><b><font color="#000000">Parameter Defaults</font></b></font></td>
</tr>
<tr>
<td colspan="3">
<blockquote>
<p>Rate = .1<br>
ei ~ N(0,.05) </p>
</blockquote>
</td>
</tr>
<tr>
<td colspan="3">The range of Fi is {-1,1}. The number of possible functions
for each Fi is , where P is the set of parents of Vi. For example, if P
= {V3:L1, V5:L2}, then the uninstantiated function table for Fi is:
</td>
</tr>
<tr>
<td colspan="3">
<table width="40%" border="1" cellspacing="2" cellpadding="2">
<tr>
<td width="35%">
<div align="center">V3:L1*</div>
</td>
<td width="34%">
<div align="center">V5:L2*</div>
</td>
<td width="31%">
<div align="center">F</div>
</td>
</tr>
<tr>
<td width="35%">
<div align="center">0</div>
</td>
<td width="34%">
<div align="center">0</div>
</td>
<td width="31%">
<div align="center"></div>
</td>
</tr>
<tr>
<td width="35%">
<div align="center">0</div>
</td>
<td width="34%">
<div align="center">1</div>
</td>
<td width="31%">
<div align="center"></div>
</td>
</tr>
<tr>
<td width="35%">
<div align="center">1</div>
</td>
<td width="34%">
<div align="center">0</div>
</td>
<td width="31%">
<div align="center"></div>
</td>
</tr>
<tr>
<td width="35%" height="19">
<div align="center">1</div>
</td>
<td width="34%" height="19">
<div align="center">1</div>
</td>
<td width="31%" height="19">
<div align="center"></div>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="3">which can be filled out in 16 different ways. If P contains
5 parents, then there are 32 rows in Fi and there are 232 different ways
you can instantiate Fi. Thus, we give you a choice of filling in all Fi
randomly or manually, with randomly the default.
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><b><font color="#000000">Randomly:</font></b></td>
</tr>
<tr>
<td colspan="3">
<ul>
<li>Draw Fi from: (p(Fi = 1) = .5, and p(Fi = -1) = .5, but</li>
<li>Ensure all inputs to Fi are non-trivial, that is, for each input Pk,
insist that at least one pair of rows in the function table exist that
are i) identical on all inputs besides Pk, ii) different on Pk, and
different on the output Fi.
</li>
</ul>
</td>
</tr>
<tr>
<td colspan="3"><b>Manually: </b>Allow user to assign the value of Fi in each
row manually.
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><font color="#996644"><b>4.2 General Updating Models</b></font></td>
</tr>
<tr>
<td colspan="3">Same as Glass Updating, but use Tianjiao's GAM interface for
specifying the functions Gi.
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><font color="#996644"><b>4.3 GRN GAM</b></font></td>
</tr>
<tr>
<td colspan="3">Here we will use Tianjiao's GAM specifier to allow the user
to specify, for each i, the function Gi, and specify the error distributions
as above.
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><font color="#996644"><b>4.4 BN SEM</b></font></td>
</tr>
<tr>
<td colspan="3">Same as Tetrad 4 Bayes Net instantiated model specifier</td>
</tr>
<tr>
<td colspan="3">
<div align="center"><font color="#996644"><b><em><u><a href="#top">Return
to Top</a></u></em></b></font></div>
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><b><font color="#996644">5. Initializing the Cells<a name="link5"></a></font></b></td>
</tr>
<tr>
<td colspan="3">Given the full parametric model and its instantiation, and
assuming that the same model is used for each individual cells, then values
for N individuals over T times can be simulated in two stages: an "initialization"
phase and an "update" phase. The initialization phase must assign
values for all the variables (genes) in each individual for time step 1.
After this, the update function specified above can be used to assign values
to variables for a given individual, with the caveat that if mlag > 1,
then not all the “parents” of a variable in time 2 will exist.
In that case the update function will simply use the latest value of that
variable that does exist as input.
</td>
</tr>
<tr>
<td colspan="3">Biologically, cells from the same tissue can be starved of
nutrients, or manipulated in some other way and all brought into roughly
the same state, that is, synchronized. They can then be shocked, e.g., exposed
to nutrients, and let run.
</td>
</tr>
<tr>
<td colspan="3">Further, many genes in a cell are considered “housekeeping
genes,” which express protein at some basal rate stably over time.
In this version of the simulator we allow the user to choose among two methods
for initializing values: synchronized or random.
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><font color="#996644"><b>5.1 Synchronized Initialization</b></font></td>
</tr>
<tr>
<td colspan="3">
<ol>
<li>For each gene Vi in cell 1 <br>
a. if Vi is a housekeeping gene, that is, its only parent in the update
graph is itself, then let Vi:1 = 0<br>
b. else draw Vi from a standard normal distribution, i.e, N(0,1).<br>
<br>
</li>
<li>Duplicate cell 1 N times, where N is the total number of individual
cells.
</li>
</ol>
</td>
</tr>
<tr>
<td colspan="3"><font color="#996644"><b>5.2 Random Initialization</b></font></td>
</tr>
<tr>
<td colspan="3">
<ol>
<li>For each gene Vi in each cell, <br>
a. if Vi is a housekeeping gene, that is, its only parent in the update
graph is itself, then let Vi:1 = 0, <br>
b. else draw Vi:1 from a standard normal distribution, i.e, N(0,1)
</li>
</ol>
</td>
</tr>
<tr>
<td colspan="3">
<div align="center"><font color="#996644"><b><em><u><a href="#top">Return
to Top</a></u></em></b></font></div>
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><b><font color="#996644">6. Running a Simulation<a name="link6"></a></font></b></td>
</tr>
<tr>
<td colspan="3">To initiate a data generation process, double click on the
red-die on the arrow from an IM modelNode to a Data modelNode (Figure 16). The program
will only produce data if it has all the info it needs, otherwise it will
prompt you.
</td>
</tr>
<tr>
<td><img src="Images/Gene_Pics/figure_10.jpg" alt="Starting a Simulation">
</td>
</tr>
<tr>
<td colspan="3"><b>Figure 10: Starting a Simulation Run </b></td>
</tr>
<tr>
<td colspan="3">The simulation will initialize the cells as specified above,
and then generate as many time steps as desired. Not all time steps generated
need to be stored, however. The updating process might happen at quite a
different pace than data recording, and for inference this might matter.
The simulator thus requires you to specify the first time step you want
to store, and how often you want to store data.
</td>
</tr>
<tr>
<td colspan="3"><p>Simulation Run Parameters:<br>
Thus the parameters you must set, with their defaults in brackets, are
as follows.</p>
<ol>
<li> Number of individual cells = N [100,000]</li>
<li>Total time steps generated = T [4]</li>
<li>First time step stored = TSstart [1]</li>
<li>Interval for storage (step size ) = step [1]</li>
</ol>
</td>
</tr>
<tr>
<td colspan="3">
<div align="center"><font color="#996644"><b><em><u><a href="#top">Return
to Top</a></u></em></b></font></div>
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><font color="#996644"><b>7. Aggregation and Measurement Error<a name="link7"></a></b></font>
</td>
</tr>
<tr>
<td colspan="3"><font color="#996644"><b>7.1 Aggregation by Dish</b></font></td>
</tr>
<tr>
<td colspan="3">So far, we have modelled the progression of gene activity
over time for individual cells. We cannot currently obtain biological data
on this level, however. In microarray experiments, thousands (or millions)
of cells are grown in each of several dishes. For example, Figure 18 shows
two dishes with a million cells each.
</td>
</tr>
<tr>
<td><img src="Images/Gene_Pics/figure_11.jpg" alt="Aggregation by Dish">
</td>
</tr>
<tr>
<td colspan="3"><b>Figure 11: Aggregation by Dish </b></td>
</tr>
<tr>
<td colspan="3"><b>Initial Dish to Dish Differences</b></td>
</tr>
<tr>
<td colspan="3">Although they are intentionally minimized, small variations
in nutrient or temperature make dish to dish variations inevitable, even
at the beginning of an experiment.
</td>
</tr>
<tr>
<td colspan="3">To simulate these differences, we prompt the user for how
much variation in expression levels we can expect between dishes (Figure
20). Let that quantity be the standard deviation of expression level difference
due to the dish, which we will call sd(DV), with default at 10%.
</td>
</tr>
<tr>
<td><img src="Images/Gene_Pics/figure_12.jpg" alt="Dish-to-Dish Variation Parameter"></td>
</tr>
<tr>
<td colspan="3"><b>Figure 12: Dish-to-Dish Variation Parameter</b></td>
</tr>
<tr>
<td colspan="3">For each dish Dj, we draw Dev(Dj) from a normal distribution
with mean 100 and standard deviation = sd(DV), that is, N(100, sd(DV)).
</td>
</tr>
<tr>
<td colspan="3"><br>
We then adjust the <i>initial*</i> expression levels in all genes in all
the cells in dish Dj by Dev(Dj).
</td>
</tr>
<tr>
<td colspan="3">For each dish Dj<br> For each cell
Ck in Dj, <br> For each
gene Gi in Ck at time 1 (Vi:1),<br> Let
Gi = Dev(Dj) % of Gi
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><b>Dishes and Time</b></td>
</tr>
<tr>
<td colspan="3">In the usual studies, although several dishes might begin
an experiment in a relatively “synchronized” state, each dish
must be “frozen” before it can be processed for measurement, and
thus we cannot use the same dish to measure cells at two different time
points in the experiment. To measure two time points, we take a sample from
one dish at time1 1and a sample from a different dish at time 2, e.g., Figure
22.
</td>
</tr>
<tr>
<td colspan="3"> We discussed how we initialize the cells in section 5 above.</td>
</tr>
<tr>
<td><img src="Images/Gene_Pics/figure_13.jpg" alt="Time and Dishes"></td>
</tr>
<tr>
<td colspan="3"><b>Figure 13:Time and Dishes </b></td>
</tr>
<tr>
<td colspan="3">If the goal is to compare the expression levels of a particular
gene at two different times to see if they substantially differ, then this
constraint forces us to compare the level of a sample from one dish against
a sample from another. This constraint will NOT be imposed by the simulator,
but rather by the data analyst after data is generated and stored.
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><font color="#996644"><b>7.2 Measurement Error</b></font></td>
</tr>
<tr>
<td colspan="3">After a dish is “frozen” at a time, its RNA is extracted.
From this RNA, several samples can be drawn and each “measured”
by exposing it to a microarray chip (chips can be re-used) and then digitally
converting pixel intensities to gene expression levels (Figure 24).
</td>
</tr>
<tr>
<td><img src="Images/Gene_Pics/figure_14.jpg" alt="Measurement Error"></td>
</tr>
<tr>
<td colspan="3"><b>Figure 14: Measurement Error</b></td>
</tr>
<tr>
<td colspan="3">Chips can be reused approximately four times. Samples from
the same dish might vary slightly, chips definitely vary, the same chip
functions differently from one use to another, and the pixel digitization
routine might include error as well. Each “measurement” therefore,
has five sources of potential error:
</td>
</tr>
<tr>
<td colspan="3">
<blockquote>
<p>1. dish,<br>
2. sample, <br>
3. chip, <br>
4. re-use of a chip, and<br>
5. pixel digitization</p>
</blockquote>
</td>
</tr>
<tr>
<td colspan="3">We discussed how we will model the dish variability above.
In this version of the simulator, we will NOT model dish to dish variability
beyond initialization. To model the other sources of measurement error,
we will proceed as follows.
</td>
</tr>
<tr>
<td colspan="3">After initializing the cells in an experiment, and adding
dish to dish variabiltiy, we will have N cells partitioned into D dishes.
After we run the experiment, in which each cell obeys the same causal laws
but updates independently of each other, each cell has an expression level
at each of t times.
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><b>After Running the Experiment </b></td>
</tr>
<tr>
<td><img src="Images/Gene_Pics/figure_15.jpg" alt="Gene Levels Before Measurement Error"></td>
</tr>
<tr>
<td colspan="3"><b>Figure 15: Gene Levels Before Measurement Error </b></td>
</tr>
<tr>
<td colspan="3"><b>After RNA Extraction </b></td>
</tr>
<tr>
<td colspan="3" height="41">Next, we model the RNA extraction process for
each dish by aggregating all the cells in a dish, averaging the expression
levels for each gene, and recording an average expression level for each
gene in each dish at each time (Figure 27):
</td>
</tr>
<tr>
<td><img src="Images/Gene_Pics/figure_16.jpg" alt="After RNA Extraction"></td>
</tr>
<tr>
<td><b>Figure 16: After RNA Extraction</b></td>
</tr>
<tr>
<td colspan="3" height="29">Next, we model the RNA extraction process for
each dish by aggregating all the cells in a dish, averaging the expression
levels for each gene, and recording an average expression level for each
gene in each dish at each time (Figure 27):
</td>
</tr>
<tr>
<td colspan="3">pic of nasty formula pg17</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><b>Adding Measurement Error</b></td>
</tr>
<tr>
<td colspan="3"><br>
There remain 4 sources of measurement error: sample, chip to chip, chip
re-use, and pixel digitization error. In this version of the simulator -
we will NOT model chip re-use variability. We treat each of the other as
additive normal error with mean 0 and standard deviation = s.
</td>
</tr>
<tr>
<td colspan="3">Although we could just as easily treat 3 additive twoCycleErrors as
one - for conceptual transparency we keep them separate.
</td>
</tr>
<tr>
<td colspan="3">Let Sample to Sample Variability error = es ~ N(0, sS)</td>
</tr>
<tr>
<td colspan="3">Let Chip to Chip error = ec ~ N(0, sc)</td>
</tr>
<tr>
<td colspan="3">Let Pixel digitization error = epd ~ N(0, spd)</td>
</tr>
<tr>
<td colspan="3">Thus for each sample s taken from a dish d and measured, new
vavalues of es , ec , and epd are drawn, and the average expression level
for each gene Vi at time t is
</td>
</tr>
<tr>
<td colspan="3">
<div align="center">Ms[Vi:t(d)] = Vi:t(d) + es + ec + epd</div>
</td>
</tr>
<tr>
<td colspan="3">If we draw 4 samples from each dish, and don’t re-use
any chips, then our final data table would look as follows:
</td>
</tr>
<tr>
<td><img src="Images/Gene_Pics/figure_17.jpg" alt="After Measurement Error"></td>
</tr>
<tr>
<td colspan="3"><b>Figure 17: After Measurement Error</b></td>
</tr>
<tr>
<td colspan="3"><b>Measurement Error Parameters</b></td>
</tr>
<tr>
<td colspan="3">The parameters the user must specify for the measurement error
model, with defaults in brackets, are:
</td>
</tr>
<tr>
<td colspan="3" height="60"><p>1. Dish to Dish variability = sd(DV) [10]<br>
2. Number of samples per dish = S [4]<br>
3. Sample to Sample Variability sS, [.025]<br>
4. Chip to Chip Variability sc, [.1]<br>
5. Pixel Digitization spd, [.025]</p></td>
</tr>
<tr>
<td colspan="3"><p align="center"><font color="#996644"><b><em><u><a href="#top">Return
to Top</a></u></em></b></font></p></td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3"><font color="#996644"><b>8. References<a name="link8"></a></b></font></td>
</tr>
<tr>
<td colspan="3">Edwards, R., & Glass L. (2000). Combinatorial explosion
in model gene networks., Chaos, V. 10, N. 3, September., pp. 1-14.
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<td colspan="3">
<div align="center"><font color="#996644"><b><em><u><a href="#top">Return
to Top</a></u></em></b></font></div>
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
</table>
<h2> </h2>
</body>
</html>
|
docs/news.html | wangshaowei/buildroot | <!--#include file="header.html" -->
<h3>News</h3>
<p>
<ul>
<li><b>30 May 2012 -- 2012.05 released</b>
<p>The stable 2012.05 release is out - Thanks to everyone
contributing and testing the release candidates. See the
<a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.05">CHANGES</a>
file for more details
and go to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2012.05.tar.bz2">2012.05 release</a>.</p>
<li><b>25 May 2012 -- 2012.05-rc3 released</b>
<p>RC3 is out with more bugfixes - See the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.05_rc3">CHANGES</a>
file for details.
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2012.05-rc3.tar.bz2">2012.05-rc3
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>18 May 2012 -- 2012.05-rc2 released</b>
<p>Another week, another release candidate with more cleanups and
build fixes. See the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.05_rc2">CHANGES</a>
file for details.</p>
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2012.05-rc2.tar.bz2">2012.05-rc2
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>10 May 2012 -- 2012.05-rc1 released</b>
<p>We have a new release candidate! Lots of changes all over the
tree, see the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.05_rc1">CHANGES</a>
file for details, and read the
<a href="http://lists.busybox.net/pipermail/buildroot/2012-May/053736.html">announcement</a>.</p>
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2012.05-rc1.tar.bz2">2012.05-rc1
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>20 April 2012 -- Autobuilder Results Online</b>
<p>The status of the autobuilders, which do repeated
<code>randpackageconfig</code> builds for continuous integration
testing, is now online at <a
href='http://autobuild.buildroot.org'>autobuild.buildroot.org</a>. The
code behind it can be found in <a
href='http://git.buildroot.net/buildroot-test/'>git</a>.</p>
<p>Thanks to Thomas Petazzoni for running the web interface, and
to <a href='http://gcc.gnu.org/wiki/CompileFarm'>The GCC Compile
Farm</a> and <a href='http://free-electrons.com/'>Free
Electrons</a> for hosting builders. Thomas also sends out a daily
summary of the build status to the mailing list.</p>
<li><b>29 February 2012 -- 2012.02 released</b>
<p>The stable 2012.02 release is out - Thanks to everyone
contributing and testing the release candidates. See the
<a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.02">CHANGES</a>
file for more details, read the
<a href="http://lists.busybox.net/pipermail/buildroot/2012-February/050752.html">announcement</a>
and go to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2012.02.tar.bz2">2012.02 release</a>.</p>
<li><b>27 February 2012 -- 2012.02-rc3 released</b>
<p>RC3 is out with more bugfixes - See the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.02_rc3">CHANGES</a>
file for details.
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2012.02-rc3.tar.bz2">2012.02-rc3
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>19 February 2012 -- 2012.02-rc2 released</b>
<p>Another week, another release candidate with more cleanups and
build fixes. See the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.02_rc2">CHANGES</a>
file for details.</p>
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2012.02-rc2.tar.bz2">2012.02-rc2
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>12 February 2012 -- 2012.02-rc1 released</b>
<p>We have a new release candidate! Lots of changes all over the
tree, see the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.02_rc1">CHANGES</a>
file for details, and read the
<a href="http://lists.busybox.net/pipermail/buildroot/2012-February/050234.html">announcement</a>.</p>
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2012.02-rc1.tar.bz2">2012.02-rc1
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>31 January 2012 -- Buildroot Developer Day</b>
<p>Another <i>Buildroot Developer Day</i> will take place on
Friday, February 3rd in Brussels, Belgium - The day before <a
href="http://fosdem.org">FOSDEM</a>. See the
<a href="http://lists.busybox.net/pipermail/buildroot/2012-January/049340.html">announcement</a>
or the <a href="http://free-electrons.com/blog/bdd-2012-brussels/">Free Electrons blog</a>
for more info.</p>
<li><b>30 November 2011 -- 2011.11 released</b>
<p>The stable 2011.11 release is out - Thanks to everyone
contributing and testing the release candidates. See the
<a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.11">CHANGES</a>
file for more details, read the
<a href="http://lists.busybox.net/pipermail/buildroot/2011-November/047926.html">announcement</a>
and go to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2011.11.tar.bz2">2011.11 release</a>.</p>
<li><b>26 November 2011 -- 2011.11-rc3 released</b>
<p>RC3 is out with more bugfixes - See the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.11_rc3">CHANGES</a>
file for details.
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2011.11-rc3.tar.bz2">2011.11-rc3
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>18 November 2011 -- 2011.11-rc2 released</b>
<p>Another week, another release candidate with a bunch of
cleanups and build fixes. See the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.11_rc2">CHANGES</a>
file for details.</p>
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2011.11-rc2.tar.bz2">2011.11-rc2
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>11 November 2011 -- 2011.11-rc1 released</b>
<p>We have a new release candidate! Lots of changes all over the
tree, see the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.11_rc1">CHANGES</a>
file for details, and read the
<a href="http://lists.busybox.net/pipermail/buildroot/2011-November/047395.html">announcement</a>
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2011.11-rc1.tar.bz2">2011.11-rc1
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>31 August 2011 -- 2011.08 released</b>
<p>The stable 2011.08 release is out - Thanks to everyone
contributing and testing the release candidates. See the
<a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.08">CHANGES</a>
file for more details, and go to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2011.08.tar.bz2">2011.08 release</a>.</p>
<li><b>29 August 2011 -- 2011.08-rc2 released</b>
<p>RC2 is out with more bugfixes. See the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.08_rc2">CHANGES</a>
file for details, and read the
<a href="http://lists.busybox.net/pipermail/buildroot/2011-August/045211.html">announcement</a>.
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2011.08-rc2.tar.bz2">2011.08-rc2
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>4 August 2011 -- 2011.08-rc1 released</b>
<p>We have a new release candidate! Lots of changes all over the
tree, see the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.08_rc1">CHANGES</a>
file for details, and read the
<a href="http://lists.busybox.net/pipermail/buildroot/2011-August/044855.html">announcement</a>.
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2011.08-rc1.tar.bz2">2011.08-rc1
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>27 May 2011 -- 2011.05 released</b>
<p>The stable 2011.05 release is out - Thanks to everyone
contributing and testing the release candidates. See the
<a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.05">CHANGES</a>
file for more details, and go to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2011.05.tar.bz2">2011.05 release</a>.</p>
<li><b>24 May 2011 -- 2011.05-rc2 released</b>
<p>RC2 is out with more bugfixes. See the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.05_rc2">CHANGES</a>
file for details.
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2011.05-rc2.tar.bz2">2011.05-rc2
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>18 May 2011 -- 2011.05-rc1 released</b>
<p>We have a new release candidate! Lots of changes all over the
tree, see the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.05_rc1">CHANGES</a>
file for details, and read the
<a href="http://lists.busybox.net/pipermail/buildroot/2011-May/043317.html">announcement</a>.
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2011.05-rc1.tar.bz2">2011.05-rc1
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>28 February 2011 -- 2011.02 released</b>
<p>The stable 2011.02 release is out - Thanks to everyone
contributing and testing the release candidates. See the
<a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.02">CHANGES</a>
file for more details, read the
<a href="http://lists.busybox.net/pipermail/buildroot/2011-February/041662.html">announcement</a>
and go to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2011.02.tar.bz2">2011.02 release</a>.</p>
<li><b>24 February 2011 -- 2011.02-rc2 released</b>
<p>RC2 is out with more cleanups and bugfixes, see the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.02_rc2">CHANGES</a>
file for details.</p>
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2011.02-rc2.tar.bz2">2011.02-rc2
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>14 February 2011 -- 2011.02-rc1 released</b>
<p>We have a new release candidate! Lots of changes all over the
tree, see the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.02_rc1">CHANGES</a>
file for details, and read the
<a href="http://lists.busybox.net/pipermail/buildroot/2011-February/041365.html">announcement</a>.
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2011.02-rc1.tar.bz2">2011.02-rc1
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>30 November 2010 -- 2010.11 released</b>
<p>The stable 2010.11 release is out - Thanks to everyone
contributing and testing the release candidates. See the
<a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.11">CHANGES</a>
file for more details, read the
<a href="http://lists.busybox.net/pipermail/buildroot/2010-November/039135.html">announcement</a>
and go to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2010.11.tar.bz2">2010.11 release</a>.</p>
<li><b>25 November 2010 -- 2010.11-rc2 released</b>
<p>RC2 is out with more cleanups and bugfixes, see the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.11_rc2">CHANGES</a>
file for details.</p>
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2010.11-rc2.tar.bz2">2010.11-rc2
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>8 November 2010 -- 2010.11-rc1 released</b>
<p>We have a new release candidate! Lots of changes all over the
tree, see the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.11_rc1">CHANGES</a>
file for details, and read the
<a href="http://lists.busybox.net/pipermail/buildroot/2010-November/038645.html">announcement</a>.
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2010.11-rc1.tar.bz2">2010.11-rc1
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>28 September 2010 - Buildroot Developer Day</b>
<p>A <i>Buildroot Developer Day</i> will take place on
Friday, October 29th in Cambridge, UK - Just the day after the
<a href="http://www.embeddedlinuxconference.com/elc_europe10/">Embedded
Linux Conference Europe</a>. This <i>Developer Day</i> aims
at allowing Buildroot developers to meet and exchange ideas on the
project and its future. See the
<a href="http://lists.busybox.net/pipermail/buildroot/2010-September/037930.html">announcement</a>
for more info.</p>
<p>Thanks to Thomas Petazzoni for taking care of the practical
arrangements.</p>
<li><b>31 August 2010 -- 2010.08 released</b>
<p>The stable 2010.08 release is out - Thanks to everyone
contributing and testing the release candidates. See the
<a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.08">CHANGES</a>
file for more details, read the
<a href="http://lists.busybox.net/pipermail/buildroot/2010-August/037078.html">announcement</a>
and go to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2010.08.tar.bz2">2010.08 release</a>.</p>
<li><b>30 August 2010 -- 2010.08-rc2 released</b>
<p>RC2 is out with more cleanups and bugfixes, see the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.08_rc2">CHANGES</a>
file for details.
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2010.08-rc2.tar.bz2">2010.08-rc2
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
This is very much expected to be the final release
candidate, so give it a good test and expect a final 2010.08
release before September unless critical issues are found.</p>
<li><b>30 July 2010 -- 2010.08-rc1 released</b>
<p>We have a new release candidate! Lots of changes all over the
tree, see the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.08_rc1">CHANGES</a>
file for details.
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2010.08-rc1.tar.bz2">2010.08-rc1
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>30 May 2010 -- 2010.05 released</b>
<p>The stable 2010.05 release is out - Thanks to everyone
contributing and testing the release candidates. See the
<a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.05">CHANGES</a>
file for more details, read the
<a href="http://lists.busybox.net/pipermail/buildroot/2010-May/034878.html">announcement</a>
and go to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2010.05.tar.bz2">2010.05 release</a>.</p>
<li><b>27 May 2010 -- 2010.05-rc3 released</b>
<p>RC3 is out with more cleanups and bugfixes, see the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.05_rc3">CHANGES</a>
file for details.
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2010.05-rc3.tar.bz2">2010.05-rc3
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>11 May 2010 -- 2010.05-rc2 released</b>
<p>Another week, another release candidate with a bunch of
cleanups and build fixes.</p>
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2010.05-rc2.tar.bz2">2010.05-rc2
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>3 May 2010 -- 2010.05-rc1 released</b>
<p>We have a new release candidate! Lots of changes all over the
tree, see the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.05_rc1">CHANGES</a>
file for details.
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2010.05-rc1.tar.bz2">2010.05-rc1
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>2 May 2010 - FOSDEM slides online</b>
<p>The slides from the <a
href="http://fosdem.org/2010/schedule/events/emb_cross_build">Cross
Build Systems: Present & Future</a> session at <a
href="http://fosdem.org/2010">FOSDEM</a> are now <a
href="http://send-patches.org/news/20100211-1-FOSDEM-Crossdev-Workshop.pdf">online</a>.
<li><b>26 February 2010 -- 2010.02 released</b>
<p>The stable 2010.02 release is out - Thanks to everyone
contributing and testing the release candidates. See the
<a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.02">CHANGES</a>
file for more details, and go to the <a href="/downloads/">downloads page</a>
to pick up the <a href="/downloads/buildroot-2010.02.tar.bz2">2010.02
release</a>.</p>
<li><b>23 February 2010 -- 2010.02-rc2 released</b>
<p>RC2 is out with more cleanups and bugfixes, see the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.02_rc2">CHANGES</a>
file for details.
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2010.02-rc2.tar.bz2">2010.02-rc2
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>9 February 2010 -- 2010.02-rc1 released</b>
<p>We have a new release candidate! Lots of changes all over the
tree, see the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.02_rc1">CHANGES</a>
file for details.
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2010.02-rc1.tar.bz2">2010.02-rc1
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>1 December 2009 -- 2009.11 released</b>
<p>The stable 2009.11 release is out - Thanks to everyone
contributing and testing the release candidates. See the
<a href="http://lists.busybox.net/pipermail/buildroot/2009-December/030672.html">announcement</a>
or <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.11">CHANGES</a>
for more details, and go to the <a href="/downloads/">downloads page</a>
to pick up the <a href="/downloads/buildroot-2009.11.tar.bz2">2009.11
release</a>.</p>
<li><b>29 November 2009 -- 2009.11-rc2 released</b>
<p>RC2 is out with more cleanups and bugfixes, see the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.11_rc2">CHANGES</a>
file for details.
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2009.11-rc2.tar.bz2">2009.11-rc2
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>23 November 2009 -- 2009.11-rc1 released</b>
<p>We have a new release candidate! Lots of changes all over the
tree, see the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.11_rc1">CHANGES</a>
file for details.
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2009.11-rc1.tar.bz2">2009.11-rc1
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>7 September 2009 -- First Buildroot Developer Day</b>
<p>The first <i>Buildroot Developer Day</i> will take place on
Saturday, October 17th in Grenoble, France, just the day after
Embedded Linux Conference Europe. This <i>Developer Day</i> aims
at allowing Buildroot developers to meet and exchange ideas on the
project and its future.</p>
<p>As the number of places is limited, interested candidates are
invited to send an e-mail to Peter Korsgaard (<code>jacmet at
uclibc dot org</code>) and Thomas Petazzoni (<code>thomas dot
petazzoni at free-electrons dot com</code>).</p>
<p>This <i>Developer Day</i> will take place thanks to the
sponsoring of <a href="http://www.calao-systems.com">Calao
Systems</a> and <a href="http://www.free-electrons.com">Free
Electrons</a>.</p>
<li><b>31 August 2009 -- 2009.08 released</b>
<p>The stable 2009.08 release is out - Thanks to everyone
contributing and testing the release candidates. See the
<a href="http://lists.busybox.net/pipermail/buildroot/2009-August/029018.html">announcement</a>
or <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.08">CHANGES</a>
for more details, and go to the <a href="/downloads/">downloads page</a>
to pick up the <a href="/downloads/buildroot-2009.08.tar.bz2">2009.08
release</a>.</p>
<li><b>26 August 2009 -- 2009.08-rc3 released</b>
<p>A number of bugfixes have been added to the tree since RC2
(especially thanks to Thomas Petazzoni) - See the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.08_rc3">CHANGES</a>
file for details. This is very much expected to be the final release
candidate, so give it a good test and expect a final 2009.08
release next weekend unless critical issues are found.</p>
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2009.08-rc3.tar.bz2">2009.08-rc3
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>6 August 2009 -- 2009.08-rc2 released</b>
<p>RC2 is out with more cleanups and bugfixes, see the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.08_rc2">CHANGES</a>
file for details.
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2009.08-rc2.tar.bz2">2009.08-rc2
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>2 August 2009 -- 2009.08-rc1 released</b>
<p>We have a new release candidate! Lots of changes all over the
tree, see the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.08_rc1">CHANGES</a>
file for details.
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2009.08-rc1.tar.bz2">2009.08-rc1
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>1 June 2009 -- 2009.05 released</b>
<p>The stable 2009.05 release is out - Thanks to everyone
contributing and testing the release candidates. See the
<a href="http://lists.busybox.net/pipermail/buildroot/2009-June/027640.html">announcement</a>
or <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.05">CHANGES</a>
for more details, and go to the <a href="/downloads/">downloads page</a>
to pick up the <a href="/downloads/buildroot-2009.05.tar.bz2">2009.05
release</a>.</p>
<li><b>27 May 2009 -- 2009.05-rc3 released</b>
<p>We had a number of fixes post-RC2, so RC3 is out (see <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.05_rc3">CHANGES</a>
for details). Now is the moment to test and verify that everything
is working for your favorite config - Expect a final 2009.05 very soon.</p>
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2009.05-rc3.tar.bz2">2009.05-rc3
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>19 May 2009 -- 2009.05-rc2 released</b>
<p>RC2 is out with more cleanups and bug fixes (see <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.05_rc2">CHANGES</a>).
Unless big issues are found, expect this to be the last release
candidate before the release - So give it a good test.</p>
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2009.05-rc2.tar.bz2">2009.05-rc2
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>14 May 2009 -- Buildroot.org</b>
<p>Earl Levine has been so kind to donate the <b>buildroot.org</b>
domain to us, so the website can now also be reached at <a
href="http://www.buildroot.org">www.buildroot.org</a> (and git at
<a href="http://git.buildroot.org/buildroot">git.buildroot.org</a>).
Thanks a lot Earl!</p>
<li><b>5 May 2009 -- 2009.05-rc1 released</b>
<p>We have a new release candidate! Lots of changes all over the
tree, see the <a
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.05_rc1">CHANGES</a>
file for details.
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2009.05-rc1.tar.bz2">2009.05-rc1
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>3 May 2009 -- Moved to git</b>
<p>We've moved the source code from <a
href="http://subversion.tigris.org">Subversion</a> to <a
href="http://git-scm.org">Git</a>. You can browse the repo online
<a href="http://git.buildroot.net/buildroot">here</a>, and clone
the repo using:
<pre>git clone git://git.buildroot.net/buildroot</pre>
See the <a href="/git.html">Git Access</a> page for more details.
</p>
<li><b>27 March 2009 -- new Logo</b>
<p>We have a <a href="images/logo.png">logo</a>! We have so far
been using the <a href="http://busybox.net">Busybox</a> logo on
the website, as the website was a copy of the <a
href="http://busybox.net">Busybox</a> one - But not anymore, we
now have a shiny new logo of our own.</p>
<li><b>12 February 2009 -- 2009.02 released</b>
<p>The stable 2009.02 release is out - Thanks to everyone
contributing and testing the release candidates. See the
<a href="http://lists.busybox.net/pipermail/buildroot/2009-February/025974.html">announcement</a>
for more details, and go to the <a href="/downloads/">downloads page</a>
to pick up the <a href="/downloads/buildroot-2009.02.tar.bz2">2009.02
release</a>.</p>
<li><b>9 February 2009 -- 2009.02-rc4 released</b>
<p>We had more than 50 changes since RC3, several of them
toolchain related, so decided to make a RC4 as well. This is
very much expected to be the final release candidate, so give it
a good test and expect a final 2009.02 release this week unless
critical issues are found.</p>
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2009.02-rc4.tar.bz2">2009.02-rc4
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>31 January 2009 -- 2009.02-rc3 released</b>
<p>RC3 is out with more cleanups and bug fixes. Unless big issues
are found, expect this to be the last release candidate before the
release - So give it a good test.</p>
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2009.02-rc3.tar.bz2">2009.02-rc3
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>23 January 2009 -- 2009.02-rc2 released</b>
<p>Another week, another release candidate with a bunch of
cleanups and build fixes.</p>
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2009.02-rc2.tar.bz2">2009.02-rc2
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>.</p>
<li><b>16 January 2009 -- Release candidate and new maintainer</b>
<p>It has been a long time coming, but we finally have a new
release candidate! - And a new maintainer to match (Peter Korsgaard).</p>
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
<a href="/downloads/buildroot-2009.02-rc1.tar.bz2">2009.02-rc1
release candidate</a>, and report any problems found to the <a
href="lists.html">mailing list</a> or <a
href="https://bugs.uclibc.org">bug tracker</a>. The plan is to
release 2009.02 in time for <a
href="http://www.fosdem.org/2009/">FOSDEM</a>.</p>
<li><b>16 July 2006 -- Buildroot mailing list</b>
<p>Buildroot now has its own <a href=lists.html>mailing list</a>.</p>
<li><b>21 February 2005 -- Buildroot webpage added</b><p>
Buildroot is a set of Makefiles and patches that makes it easy generate a
cross-compilation toolchain and root filesystem for your target Linux
system using the <a href= "http://www.uclibc.org/">uClibc C library</a>.
Buildroot is useful mainly for people working with small or embedded
systems. Embedded systems often use processors that are not the regular
x86 processors everyone is used to using on their PC. It can be PowerPC
processors, MIPS processors, ARM processors, etc. And to be extra safe,
you do not need to be root to build or run buildroot.
<p>
And as of today buildroot even has its own webpage, making it a first class
citizen of uclibc.org and busybox.net, and more importantly, make it easy
to find and point to buildroot.
<p>
If you find a bug in buildroot, or wish to submit a patch to fix a problem
or add a shiny new feature, please use the <a
href="https://bugs.uclibc.org/">Bug and Patch Tracking System</a> to post
the details, to make certain your work is not lost.
</ul>
<!--#include file="footer.html" -->
|
xscheduler/samples/01_initialization_loading/06_multi_day_events.html | Gelush/shacal | <!doctype html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>Multi-day events</title>
</head>
<script src="../../codebase/dhtmlxscheduler.js" type="text/javascript" charset="utf-8"></script>
<link rel="stylesheet" href="../../codebase/dhtmlxscheduler.css" type="text/css" media="screen" title="no title" charset="utf-8">
<style type="text/css" media="screen">
html, body{
margin:0px;
padding:0px;
height:100%;
overflow:hidden;
}
</style>
<script type="text/javascript" charset="utf-8">
function update_view(input){
scheduler.config.multi_day = input.checked;
scheduler.updateView();
}
function init() {
scheduler.config.xml_date="%Y-%m-%d %H:%i";
scheduler.config.multi_day = true;
scheduler.xy.margin_top = 40;
scheduler.init('scheduler_here',new Date(2014,7,11),"week");
scheduler.load("./data/events.xml");
}
</script>
<body onload="init();">
<div style='padding:5px 20px; height:30px; line-height:30px; font-family:Tahoma;'>
<input type='checkbox' id='mod1' checked onchange='update_view(this)'><label for='mod1'> Show multiday events</label>
</div>
<div id="scheduler_here" class="dhx_cal_container" style='width:100%; height:100%;'>
<div class="dhx_cal_navline">
<div class="dhx_cal_prev_button"> </div>
<div class="dhx_cal_next_button"> </div>
<div class="dhx_cal_today_button"></div>
<div class="dhx_cal_date"></div>
<div class="dhx_cal_tab" name="day_tab" style="right:204px;"></div>
<div class="dhx_cal_tab" name="week_tab" style="right:140px;"></div>
<div class="dhx_cal_tab" name="month_tab" style="right:76px;"></div>
</div>
<div class="dhx_cal_header">
</div>
<div class="dhx_cal_data">
</div>
</div>
</body> |
old/dhtmlx/samples/dhtmlxForm/03_api/04_required_fields.html | o-unity/lanio | <!DOCTYPE html>
<html>
<head>
<title>Required fields</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<link rel="stylesheet" type="text/css" href="../../../codebase/dhtmlx.css"/>
<script src="../../../codebase/dhtmlx.js"></script>
<script>
var myForm, formData;
function doOnLoad() {
formData = [
{type: "settings", position: "label-left", labelWidth: 130, inputWidth: 160},
{type: "label", label: "New project"},
{type: "input", label: "Project Name", value: "", required: true},
{type: "input", label: "Project Description", value: ""},
{type: "input", label: "E-mail", name: "email", value: "", required: true, validate: "ValidEmail"},
{type: "input", label: "Confirm e-mail", value: "", required: true, validate: "myFunc2"},
{type: "select", label: "User Type", validate: "myFunc", options:[
{value: 0, text: ""},
{value: 1, text: "User"},
{value: 2, text: "Power User"},
{value: 3, text: "Mega User"},
{value: 4, text: "Administrator"}
]},
{type: "button", value: "Submit"}
];
myForm = new dhtmlXForm("myForm", formData);
myForm.enableLiveValidation(true);
myForm.attachEvent("onButtonClick",function(){
myForm.validate();
});
}
function myFunc(val) {
return (val > 0);
}
function myFunc2(val) {
return (val==myForm.getItemValue("email"));
}
</script>
</head>
<body onload="doOnLoad();">
<div id="myForm" style="height:510px;"></div>
</body>
</html> |
src/main/javadoc/org/jogamp/java3d/doc-files/SceneGraphSharing.html | gouessej/java3d-core | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="content-type">
<title>Java 3D API - Reusing Scene Graphs</title>
</head>
<body>
<h2>Reusing Scene Graphs</h2>
<p>
Java 3D provides application programmers
with two different means for reusing scene graphs. First, multiple
scene graphs can share a common subgraph. Second, the node hierarchy of
a common subgraph can be cloned, while still sharing large component
objects such as geometry and texture objects. In the first case,
changes in the shared subgraph affect all scene graphs that refer to
the shared subgraph. In the second case, each instance is unique-a
change in one instance does not affect any other instance.
</p>
<h2>Sharing Subgraphs</h2>
<p>An application that wishes to share a subgraph from multiple places
in
a scene graph must do so through the use of the <a href="../Link.html">Link</a>
leaf node and an
associated <a href="../SharedGroup.html">SharedGroup</a> node. The
SharedGroup node serves as the root of
the shared subgraph. The Link leaf node refers to the SharedGroup node.
It does not incorporate the shared scene graph directly into its scene
graph.
</p>
<p>A SharedGroup node allows multiple Link leaf nodes to share its
subgraph as shown in <a href="#Figure_1">Figure
1</a> below.<br>
</p>
<p><a name="Figure_1"></a><img style="width: 500px; height: 476px;"
alt="Sharing a Subgraph" title="Sharing a Subgraph"
src="SceneGraphSharing1.gif">
</p>
<ul>
<font size="-1"><b><i>Figure 1</i> – Sharing a Subgraph</b></font>
</ul>
<h2>Cloning Subgraphs</h2>
<p>An application developer may wish to reuse a common subgraph without
completely sharing that subgraph. For example, the developer may wish
to create a parking lot scene consisting of multiple cars, each with a
different color. The developer might define three basic types of cars,
such as convertible, truck, and sedan. To create the parking lot scene,
the application will instantiate each type of car several times. Then
the application can change the color of the various instances to create
more variety in the scene. Unlike shared subgraphs, each instance is a
separate copy of the scene graph definition: Changes to one instance do
not affect any other instance.
</p>
<p>Java 3D provides the <a href="../Node.html#cloneTree%28%29"><code>cloneTree</code></a>
method for this
purpose. The <code>cloneTree</code>
method allows the programmer to change some attributes (NodeComponent
objects) in a scene graph, while at the same time sharing the majority
of the scene graph data-the geometry.
</p>
<h3>References to Node Component
Objects</h3>
<p>When <code>cloneTree</code> reaches a leaf node,
there are two possible actions for handling the leaf node's
NodeComponent objects (such as Material, Texture, and so forth). First,
the cloned leaf node can reference the original leaf node's
NodeComponent object-the NodeComponent object itself is not duplicated.
Since the cloned leaf node shares the NodeComponent object with the
original leaf node, changing the data in the NodeComponent object will
effect a change in both nodes. This mode would also be used for objects
that are read-only at run time.
</p>
<p>Alternatively, the NodeComponent object can be duplicated, in which
case the new leaf node would reference the duplicated object. This mode
allows data referenced by the newly created leaf node to be modified
without that modification affecting the original leaf node.
</p>
<p><a href="#Figure_2">Figure
2</a>
shows two instances of NodeComponent objects that are shared and one
NodeComponent element that is duplicated for the cloned subgraph.
</p>
<p><a name="Figure_2"></a><img style="width: 499px; height: 287px;"
alt="Referenced and Duplicated NodeComponent Objects"
title="Referenced / Duplicated NodeComponens"
src="SceneGraphSharing2.gif">
</p>
<p>
</p>
<ul>
<font size="-1"><b><i>Figure 2</i> – Referenced and Duplicated
NodeComponent Objects</b></font>
</ul>
<h3>References to Other Scene
Graph Nodes</h3>
Leaf nodes that contain references to other nodes
(for example, Light nodes reference a Group node) can create a problem
for the <code>cloneTree</code> method. After the <code>cloneTree</code>
operation is performed, the reference in the cloned leaf node will
still refer to the node in the original subgraph-a situation that is
most likely incorrect (see <a href="#Figure_3">Figure
3</a>).
<p>To handle these ambiguities, a callback mechanism is provided.
</p>
<p><a name="Figure_3"></a><img style="width: 499px; height: 240px;"
alt="References to Other Scene Graph Nodes"
title="References to Other Nodes" src="SceneGraphSharing3.gif">
</p>
<ul>
<font size="-1"><b><i>Figure 3</i> – References to Other Scene Graph
Nodes</b></font>
</ul>
<p>
A leaf node that needs to update referenced nodes upon being duplicated
by a call to <code>cloneTree</code> must implement the <code>updateNodeReferences</code>
method. By using this method, the cloned leaf node can determine if any
nodes referenced by it have been duplicated and, if so, update the
appropriate references to their cloned counterparts.
</p>
<p>Suppose, for instance, that the leaf node Lf1 in <a href="#Figure_3">Figure
3</a> implemented the <code>updateNodeReferences</code> method. Once
all nodes had been duplicated, the <code>clone-Tree</code> method
would then call each cloned leaf's node <code>updateNodeReferences</code>
method. When cloned leaf node Lf2's method was called, Lf2 could ask if
the node N1 had been duplicated during the <code>cloneTree</code>
operation. If the node had been duplicated, leaf Lf2 could then update
its internal state with the cloned node, N2 (see <a href="#Figure_4">Figure
4</a>).
</p>
<p><a name="Figure_4"></a><img style="width: 499px; height: 190px;"
alt="Updated Subgraph after updateNodeReferences Call"
title="Subgraph after updateNodeReferences"
src="SceneGraphSharing4.gif">
</p>
<p>
</p>
<ul>
<font size="-1"><b><i>Figure 4</i> – Updated Subgraph after
updateNodeReferences Call</b></font>
</ul>
<p>
All predefined Java 3D nodes will automatically have their <code>updateNodeReferences</code>
method defined. Only subclassed nodes that reference other nodes need
to have this method overridden by the user.
</p>
<h3>Dangling References</h3>
Because <code>cloneTree</code> is able to start
the cloning operation from any node, there is a potential for creating
dangling references. A dangling reference can occur only when a leaf
node that contains a reference to another scene graph node is cloned.
If the referenced node is not cloned, a dangling reference situation
exists: There are now two leaf nodes that access the same node (<a
href="#Figure_5">Figure
5</a>). A dangling reference is discovered when a leaf node's <code>updateNodeReferences</code>
method calls the <code>getNewNodeReference</code> method and the
cloned subgraph does not contain a counterpart to the node being looked
up.
<p><a name="Figure_5"></a><img style="width: 499px; height: 232px;"
alt="Dangling Reference" title="Dangling Reference"
src="SceneGraphSharing5.gif"></p>
<p>
</p>
<ul>
<font size="-1"><b><i>Figure 5</i> – Dangling Reference: Bold Nodes
Are Being Cloned</b></font>
</ul>
<p>
When a dangling reference is discovered, <code>cloneTree</code> can
handle it in one of two ways. If <code>cloneTree</code> is called
without the <code>allowDanglingReferences</code> parameter set to <code>true</code>,
a dangling reference will result in a <code>DanglingReferenceException</code>
being thrown. The user can catch this exception if desired. If <code>cloneTree</code>
is called with the <code>allowDanglingReferences</code> parameter set
to <code>true</code>, the <code>update-NodeReferences</code> method
will return a reference to the same object passed into the <code>getNewNodeReference</code>
method. This will result in the <code>cloneTree</code> operation
completing with dangling references, as in <a href="#Figure_5">Figure
5</a>.
</p>
<h3>Subclassing Nodes</h3>
All Java 3D predefined nodes (for example, Interpolators and LOD
nodes)
automatically handle all node reference and duplication operations.
When a user subclasses a Leaf object or a NodeComponent object, certain
methods must be provided in order to ensure the proper operation of <code>cloneTree</code>.
<p>Leaf node subclasses (for example, Behaviors) that contain any user
node-specific data that needs to be duplicated during a <code>cloneTree</code>
operation must define the following two methods:
</p>
<pre><b>Node cloneNode(boolean forceDuplicate);<br>void duplicateNode(Node n, boolean forceDuplicate)<br></b></pre>
The <code>cloneNode</code> method consists of three lines:
<pre><hr><br><code>UserSubClass usc = new UserSubClass();<br>usc.duplicateNode(this, forceDuplicate);</code><br>return usc;<br><br><hr></pre>
The <code>duplicateNode</code> method must first call <code>super.duplicateNode</code>
before duplicating any necessary user-specific data or setting any
user-specific state.
<p>NodeComponent subclasses that contain any user node-specific data
must define the following two methods:
</p>
<pre><b>NodeComponent cloneNodeComponent();<br>void duplicateNodeComponent(NodeComponent nc, boolean forceDuplicate);<br></b></pre>
The <code>cloneNodeComponent</code> method consists of three lines:
<pre><hr><br><code>UserNodeComponent unc = new UserNodeComponent();<br>unc.duplicateNodeComponent(this, forceDuplicate);</code><br>return un;<br><br><hr></pre>
The <code>duplicateNodeComponent</code> must first call <code>super.duplicateNodeComponent</code>
and then can duplicate any user-specific data or set any user-specific
state as necessary.
<h3>NodeReferenceTable Object</h3>
The NodeReferenceTable object is used by a leaf node's <code>updateNodeReferences</code>
method called by the <code>cloneTree</code>
operation. The NodeReferenceTable maps nodes from the original subgraph
to the new nodes in the cloned subgraph. This information can than be
used to update any cloned leaf node references to reference nodes in
the cloned subgraph. This object can be created only by Java 3D.
<h3>Example: User Behavior Node</h3>
The following is an example of a user-defined Behavior object to show
properly how to define a node to be compatible with the <code>cloneTree</code>
operation.
<hr>
<pre>class RotationBehavior extends Behavior {<br> TransformGroup objectTransform;<br> WakeupOnElapsedFrames w;<br></pre>
<pre> Matrix4d rotMat = new Matrix4d();<br> Matrix4d objectMat = new Matrix4d();<br> Transform3D t = new Transform3D();<br></pre>
<pre><i> // Override Behavior's initialize method to set up wakeup<br> // criteria<br></i></pre>
<pre> public void initialize() {<br></pre>
<pre><i> // Establish initial wakeup criteria<br></i></pre>
<pre> wakeupOn(w);<br> }<br></pre>
<pre><i> // Override Behavior's stimulus method to handle the event<br></i></pre>
<pre> public void processStimulus(Enumeration criteria) {<br></pre>
<pre><i> // Rotate by another PI/120.0 radians<br></i></pre>
<pre> objectMat.mul(objectMat, rotMat);<br> t.set(objectMat);<br> objectTransform.setTransform(t);<br></pre>
<pre><i> // Set wakeup criteria for next time<br></i></pre>
<pre> wakeupOn(w);<br> }<br></pre>
<pre><i> // Constructor for rotation behavior.<br></i></pre>
<pre> public RotationBehavior(TransformGroup tg, int numFrames) {<br> w = new WakeupOnElapsedFrames(numFrames);<br> objectTransform = tg;<br></pre>
<pre><i> objectMat.setIdentity();<br></i></pre>
<pre><i> // Create a rotation matrix that rotates PI/120.0<br> // radians per frame<br> rotMat.rotX(Math.PI/120.0);<br></i></pre>
<pre><i> // Note: When this object is duplicated via cloneTree,<br> // the cloned RotationBehavior node needs to point to<br> // the TransformGroup in the just-cloned tree. <br> }<br></i></pre>
<pre><i> // Sets a new TransformGroup.<br></i></pre>
<pre> public void setTransformGroup(TransformGroup tg) {<br> objectTransform = tg;<br></pre>
<pre><i> }<br></i></pre>
<pre><i> // The next two methods are needed for cloneTree to operate<br> // correctly.<br> // cloneNode is needed to provide a new instance of the user<br> // derived subclass.<br></i></pre>
<pre> public Node cloneNode(boolean forceDuplicate) {<br></pre>
<pre><i> // Get all data from current node needed for<br> // the constructor<br> int numFrames = w.getElapsedFrameCount();<br></i></pre>
<pre> RotationBehavior r =<br> new RotationBehavior(objectTransform, numFrames);<br> r.duplicateNode(this, forceDuplicate);<br> return r;<br> }<br></pre>
<pre><i> // duplicateNode is needed to duplicate all super class<br> // data as well as all user data.<br></i></pre>
<pre> public void duplicateNode(Node originalNode, boolean <br> forceDuplicate) {<br> super.duplicateNode(originalNode, forceDuplicate);<br></pre>
<pre><i> // Nothing to do here - all unique data was handled<br> // in the constructor in the cloneNode routine.<br> }<br></i></pre>
<pre><i> // Callback for when this leaf is cloned. For this object<br> // we want to find the cloned TransformGroup node that this<br> // clone Leaf node should reference.<br></i></pre>
<pre> public void updateNodeReferences(NodeReferenceTable t) {<br></pre>
<pre><i> super.updateNodeReferences(t);<br></i></pre>
<pre><i> // Update node's TransformGroup to proper reference<br></i></pre>
<pre> TransformGroup newTg =<br> (TransformGroup)t.getNewObjectReference(<br> objectTransform);<br> setTransformGroup(newTg);<br> }<br>}<br></pre>
</body>
</html>
|
www/api/public/cuon.Skeleton.clients-module.html | juergenhamel/cuon | <?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>cuon.Skeleton.clients</title>
<link rel="stylesheet" href="epydoc.css" type="text/css"></link>
</head>
<body bgcolor="white" text="black" link="blue" vlink="#204080"
alink="#204080">
<!-- =========== START OF NAVBAR =========== -->
<table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0">
<tr valign="center">
<th class="navbar"> <a class="navbar" href="cuon-module.html">Home</a> </th>
<th class="navbar"> <a class="navbar" href="trees.html">Trees</a> </th>
<th class="navbar"> <a class="navbar" href="indices.html">Index</a> </th>
<th class="navbar"> <a class="navbar" href="help.html">Help</a> </th>
<th class="navbar" width="100%"></th>
</tr>
</table>
<table width="100%" cellpadding="0" cellspacing="0">
<tr valign="top">
<td width="100%">
<font size="-1"><b class="breadcrumbs">
<a href="cuon-module.html">Package cuon</a> ::
<a href="cuon.Skeleton-module.html">Package Skeleton</a> ::
Module clients
</b></font></br>
</td>
<td><table cellpadding="0" cellspacing="0">
<tr><td align="right"><font size="-2">[<a href="../private/cuon.Skeleton.clients-module.html">show private</a> | hide private]</font></td></tr>
<tr><td align="right"><font size="-2">[<a href="frames.html"target="_top">frames</a> | <a href="cuon.Skeleton.clients-module.html" target="_top">no frames</a>]</font></td></tr>
</table></td>
</tr></table>
<!-- =========== START OF MODULE DESCRIPTION =========== -->
<h2 class="module">Module cuon.Skeleton.clients</h2>
<!-- =========== START OF CLASSES =========== -->
<table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="summary">
<th colspan="2">Classes</th></tr>
<tr><td width="15%">
<b><a href="cuon.Skeleton.clients.clientswindow-class.html"><code>clientswindow</code></a></b></td>
<td> </td></tr>
</table><br />
<!-- =========== START OF NAVBAR =========== -->
<table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0">
<tr valign="center">
<th class="navbar"> <a class="navbar" href="cuon-module.html">Home</a> </th>
<th class="navbar"> <a class="navbar" href="trees.html">Trees</a> </th>
<th class="navbar"> <a class="navbar" href="indices.html">Index</a> </th>
<th class="navbar"> <a class="navbar" href="help.html">Help</a> </th>
<th class="navbar" width="100%"></th>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td align="left"><font size="-2">Generated by Epydoc 2.1 on Sat Jul 7 09:54:34 2007</font></td>
<td align="right"><a href="http://epydoc.sourceforge.net"
><font size="-2">http://epydoc.sf.net</font></a></td>
</tr>
</table>
</body>
</html>
|
lib/poi-3.17/docs/apidocs/org/apache/poi/sl/draw/binding/class-use/CTPath2DClose.html | TonyClark/ESL | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<TITLE>
Uses of Class org.apache.poi.sl.draw.binding.CTPath2DClose (POI API Documentation)
</TITLE>
<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.poi.sl.draw.binding.CTPath2DClose (POI 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="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/poi/sl/draw/binding/CTPath2DClose.html" title="class in org.apache.poi.sl.draw.binding"><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/poi/sl/draw/binding//class-useCTPath2DClose.html" target="_top"><B>FRAMES</B></A>
<A HREF="CTPath2DClose.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.poi.sl.draw.binding.CTPath2DClose</B></H2>
</CENTER>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Packages that use <A HREF="../../../../../../../org/apache/poi/sl/draw/binding/CTPath2DClose.html" title="class in org.apache.poi.sl.draw.binding">CTPath2DClose</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.apache.poi.sl.draw.binding"><B>org.apache.poi.sl.draw.binding</B></A></TD>
<TD> </TD>
</TR>
</TABLE>
<P>
<A NAME="org.apache.poi.sl.draw.binding"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Uses of <A HREF="../../../../../../../org/apache/poi/sl/draw/binding/CTPath2DClose.html" title="class in org.apache.poi.sl.draw.binding">CTPath2DClose</A> in <A HREF="../../../../../../../org/apache/poi/sl/draw/binding/package-summary.html">org.apache.poi.sl.draw.binding</A></FONT></TH>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../../org/apache/poi/sl/draw/binding/package-summary.html">org.apache.poi.sl.draw.binding</A> that return <A HREF="../../../../../../../org/apache/poi/sl/draw/binding/CTPath2DClose.html" title="class in org.apache.poi.sl.draw.binding">CTPath2DClose</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../../org/apache/poi/sl/draw/binding/CTPath2DClose.html" title="class in org.apache.poi.sl.draw.binding">CTPath2DClose</A></CODE></FONT></TD>
<TD><CODE><B>ObjectFactory.</B><B><A HREF="../../../../../../../org/apache/poi/sl/draw/binding/ObjectFactory.html#createCTPath2DClose()">createCTPath2DClose</A></B>()</CODE>
<BR>
Create an instance of <A HREF="../../../../../../../org/apache/poi/sl/draw/binding/CTPath2DClose.html" title="class in org.apache.poi.sl.draw.binding"><CODE>CTPath2DClose</CODE></A></TD>
</TR>
</TABLE>
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/poi/sl/draw/binding/CTPath2DClose.html" title="class in org.apache.poi.sl.draw.binding"><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/poi/sl/draw/binding//class-useCTPath2DClose.html" target="_top"><B>FRAMES</B></A>
<A HREF="CTPath2DClose.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<i>Copyright 2017 The Apache Software Foundation or
its licensors, as applicable.</i>
</BODY>
</HTML>
|
bedrock/firefox/templates/firefox/privacy/products.html | mozilla/bedrock | {#
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at https://mozilla.org/MPL/2.0/.
#}
{% from "macros.html" import fxa_email_form with context %}
{% from "macros-protocol.html" import call_out, split, picto with context %}
{% extends "firefox/privacy/base.html" %}
{% block page_title_full %}{{ ftl('firefox-privacy-hub-firefox-privacy-by-the') }}{% endblock %}
{% block page_desc %}{{ ftl('firefox-privacy-hub-firefox-protects-your-privacy') }}{% endblock %}
{% block page_css %}
{{ super() }}
{{ css_bundle('firefox-privacy-products') }}
{% endblock %}
{% block body_class %}{{ super() }} privacy-products{% endblock %}
{% set _entrypoint = 'mozilla.org-privacy-products' %}
{% set _utm_campaign = 'privacy-products' %}
{% block hub_content %}
{{ call_out(
title=ftl('firefox-privacy-hub-firefox-protects-your-privacy-strong')|safe,
class='privacy-products-call-out-main',
heading_level=1)
}}
{% call split(
image_url='img/firefox/privacy/products/report.svg',
l10n_image=True,
block_class='privacy-products-hero mzp-t-dark mzp-l-split-hide-media-on-sm-md',
media_class='mzp-l-split-media-overflow'
) %}
<div class="mzp-c-wordmark mzp-t-wordmark-md mzp-t-product-firefox">
<h2>{{ ftl('firefox-privacy-hub-firefox-browser') }}</h2>
</div>
<h3 class="privacy-products-hero-sub-title">
{{ ftl('firefox-privacy-hub-2000-trackers-blocked-automatically') }}
</h3>
<p>{{ ftl('firefox-privacy-hub-tracking-has-become-an') }}</p>
<p class="show-mobile hide-from-legacy-ie">
<strong>{{ ftl('firefox-privacy-hub-if-you-want-to-see-what') }}</strong>
</p>
<p class="show-firefox-desktop-70 hide-from-legacy-ie">
<a class="mzp-c-cta-link js-open-about-protections" href="https://support.mozilla.org/en-US/kb/enhanced-tracking-protection-firefox-desktop/?utm_source={{ _entrypoint }}&utm_medium=referral&utm_campaign={{ _utm_campaign }}&entrypoint={{ _entrypoint }}">
{{ ftl('firefox-privacy-hub-see-what-firefox-has-blocked') }}
</a>
</p>
<p class="privacy-products-hero-tagline show-default show-firefox-desktop-old">
{{ ftl('firefox-privacy-hub-get-enhanced-tracking-protection') }}
</p>
<div class="show-default">
{{ download_firefox(dom_id='download-button-primary-non-firefox', alt_copy=ftl('firefox-privacy-hub-download-the-firefox-browser'), download_location='primary cta') }}
</div>
<p class="show-firefox-desktop-old hide-from-legacy-ie">
<a class="mzp-c-cta-link" href="https://support.mozilla.org/kb/update-firefox-latest-release/?utm_source={{ _entrypoint }}&utm_medium=referral&utm_campaign={{ _utm_campaign }}&entrypoint={{ _entrypoint }}">
{{ ftl('firefox-privacy-hub-update-your-firefox-browser') }}
</a>
</p>
{% endcall %}
<div class="privacy-products-etp mzp-t-dark">
<ul class="mzp-l-content mzp-l-columns mzp-t-columns-three">
{% call picto(
title=ftl('firefox-privacy-hub-invisible-to-the-top-trackers'),
image_url='img/firefox/privacy/products/icon-invisible.svg',
base_el='li',
body=True
) %}
<p>{{ ftl('firefox-privacy-hub-meet-four-of-the-most-common') }}</p>
{% endcall %}
{% call picto(
title=ftl('firefox-privacy-hub-always-in-your-control'),
image_url='img/firefox/privacy/products/icon-control.svg',
base_el='li',
body=True
) %}
<p>{{ ftl('firefox-privacy-hub-want-to-customize-what') }}</p>
{% endcall %}
{% call picto(
title=ftl('firefox-privacy-hub-protection-beyond-tracking'),
image_url='img/firefox/privacy/products/icon-protection.svg',
base_el='li',
body=True
) %}
<p>{{ ftl('firefox-privacy-hub-if-you-have-a-firefox-account') }}</p>
{% endcall %}
</ul>
</div>
{% call call_out(
title=ftl('firefox-privacy-hub-more-than-s-trackers-blocked', trackers=10000000000),
class='privacy-products-tracker-counter mzp-t-dark',
include_cta=True
) %}
<p class="show-firefox-desktop-70 hide-from-legacy-ie">
<a class="mzp-c-cta-link js-open-about-protections" href="https://support.mozilla.org/kb/enhanced-tracking-protection-firefox-desktop/?utm_source={{ _entrypoint }}&utm_medium=referral&utm_campaign={{ _utm_campaign }}&entrypoint={{ _entrypoint }}">
{{ ftl('firefox-privacy-hub-see-what-firefox-has-blocked') }}
</a>
</p>
<div class="show-default">
{{ download_firefox(dom_id='download-button-secondary-non-firefox', alt_copy=ftl('firefox-privacy-hub-download-the-firefox-browser'), download_location='secondary cta') }}
</div>
<p class="show-firefox-desktop-old hide-from-legacy-ie">
<a class="mzp-c-cta-link" href="https://support.mozilla.org/kb/update-firefox-latest-release/?utm_source={{ _entrypoint }}&utm_medium=referral&utm_campaign={{ _utm_campaign }}&entrypoint={{ _entrypoint }}">
{{ ftl('firefox-privacy-hub-update-your-firefox-browser') }}
</a>
</p>
{% endcall %}
<div class="privacy-products-list t-medium">
{% call split(
image_url='img/firefox/privacy/products/monitor.svg',
media_class='mzp-l-split-h-center'
) %}
<div class="mzp-c-wordmark mzp-t-wordmark-md mzp-t-product-monitor">
<h2>{{ ftl('firefox-privacy-hub-firefox-monitor') }}</h2>
</div>
<p>{{ ftl('firefox-privacy-hub-when-you-enter-your-email') }}</p>
<p>
<a class="mzp-c-cta-link" href="https://monitor.firefox.com/?utm_source={{ _entrypoint }}&utm_medium=referral&utm_campaign={{ _utm_campaign }}&entrypoint={{ _entrypoint }}" data-cta-type="fxa-monitor" data-cta-position="secondary">
{{ ftl('firefox-privacy-hub-check-for-breaches') }}
</a>
</p>
{% endcall %}
{% if ftl_has_messages('firefox-privacy-hub-surf-stream-and-get-work') %}
{% call split(
image_url='img/firefox/privacy/products/vpn.svg',
block_class='mzp-l-split-reversed',
media_class='mzp-l-split-h-center'
) %}
<div class="mzp-c-wordmark mzp-t-wordmark-md mzp-t-product-vpn">
<h2>{{ ftl('firefox-privacy-hub-mozilla-vpn') }}</h2>
</div>
<p>{{ ftl('firefox-privacy-hub-surf-stream-and-get-work') }}</p>
<p>
<a class="mzp-c-cta-link" href="{{ url('products.vpn.landing' )}}" data-cta-type="fxa-vpn" data-cta-position="secondary">
{{ ftl('firefox-privacy-hub-get-mozilla-vpn') }}
</a>
</p>
{% endcall %}
{% endif %}
{% if ftl_has_messages('firefox-privacy-hub-protection-for-your-whole') %}
{% set block_class = '' %}
{% else %}
{% set block_class = 'mzp-l-split-reversed' %}
{% endif %}
{% call split(
image_url='img/firefox/privacy/products/pocket.png',
include_highres_image=True,
block_class=block_class,
media_class='mzp-l-split-h-center'
) %}
<div class="mzp-c-wordmark mzp-t-wordmark-md mzp-t-product-pocket">
<h2>{{ ftl('firefox-privacy-hub-pocket') }}</h2>
</div>
<p>{{ ftl('firefox-privacy-hub-pocket-recommends-high') }}</p>
<p>
<a class="mzp-c-cta-link" href="https://getpocket.com/firefox_learnmore/?utm_source={{ _entrypoint }}&utm_medium=referral&utm_campaign={{ _utm_campaign }}&entrypoint={{ _entrypoint }}" data-cta-type="pocket" data-cta-position="secondary">
{{ ftl('firefox-privacy-hub-get-pocket') }}
</a>
</p>
{% endcall %}
<section class="privacy-products-accounts mzp-l-content mzp-l-columns mzp-t-columns-two">
<div>
<h2 class="mzp-c-card-feature-title">{{ ftl('firefox-privacy-hub-your-firefox-account') }}</h2>
<div class="mzp-c-card-feature-desc">
{{ ftl('firefox-privacy-hub-all-the-information-synced') }}
</div>
</div>
<div class="mzp-c-emphasis-box">
{{ fxa_email_form(
entrypoint=_entrypoint,
form_title=ftl('firefox-privacy-hub-take-your-privacy-and-bookmarks'),
button_class='mzp-c-button mzp-t-primary mzp-t-product',
style='trailhead',
utm_campaign=_utm_campaign)
}}
<p class="fxa-signin">
{{ ftl('firefox-privacy-hub-already-have-an-account',
sign_in=fxa_link_fragment(entrypoint=_entrypoint, action='signin', optional_parameters={'utm_campaign': _utm_campaign}),
class_name='js-fxa-cta-link js-fxa-product-button',
learn_more=url('firefox.accounts') )}}
</p>
</div>
</section>
</div>
{% endblock %}
{% block js %}
{{ js_bundle('fxa_form') }}
{{ js_bundle('firefox-privacy-products') }}
{% endblock %}
|
examples/sobel/src/boost_1_63_0/libs/qvm/doc/roty_mat_scalar_.html | ntonjeta/iidea-Docker | <!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN'
'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>
<title>roty_mat(scalar)</title>
<link href='reno.css' type='text/css' rel='stylesheet'/>
</head>
<body>
<div class="body-0">
<div class="body-1">
<div class="body-2">
<div>
<h1>QVM: Quaternions, Vectors, Matrices</h1>
</div>
<!-- Copyright (c) 2008-2016 Emil Dotchevski and Reverge Studios, Inc. -->
<!-- Distributed under the Boost Software License, Version 1.0. (See accompanying -->
<!-- file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) -->
<div class="RenoIncludeDIV"><div class="RenoAutoDIV"><h3>roty_mat(scalar)</h3>
</div>
<div class="RenoIncludeDIV"><p><span class="RenoEscape">#<!--<wiki>`#</wiki>--></span>include <<span class="RenoLink"><a href="boost_qvm_mat_operations_hpp.html">boost/qvm/mat_operations.hpp</a></span>></p>
<pre>namespace <span class="RenoLink"><a href="qvm.html">qvm</a></span>
{
<span class="RenoIncludeSPAN"> template <int Dim,class Angle>
-unspecified-return-type- <span class="RenoLink">roty_mat</span>( Angle const & angle );</span>
}</pre>
</div><h4>Returns:</h4>
<p>A <span class="RenoLink"><a href="view_proxy.html">view proxy</a></span> <span class="RenoLink"><a href="http://en.wikipedia.org/wiki/Rotation_matrix">matrix</a></span> of unspecified type, of <i>Dim</i> rows and <i>Dim</i> columns and scalar type <i>Angle</i>, which performs a rotation around the Y axis at <i>angle</i> radians.</p>
</div><div class="RenoAutoDIV"><div class="RenoHR"><hr/></div>
See also: <span class="RenoPageList"><a href="boost_qvm_mat_operations_hpp.html">boost/qvm/mat_operations.hpp</a> | <a href="rotate_y_mat_scalar_.html">rotate_y(mat,scalar)</a> | <a href="set_roty_mat_scalar_.html">set_roty(mat,scalar)</a></span>
</div>
<!-- Copyright (c) 2008-2016 Emil Dotchevski and Reverge Studios, Inc. -->
<!-- Distributed under the Boost Software License, Version 1.0. (See accompanying -->
<!-- file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) -->
<div id="footer">
<p>
<a class="logo" href="http://jigsaw.w3.org/css-validator/check/referer"><img class="logo_pic" src="valid-css.png" alt="Valid CSS" height="31" width="88"/></a>
<a class="logo" href="http://validator.w3.org/check?uri=referer"><img class="logo_pic" src="valid-xhtml.png" alt="Valid XHTML 1.0" height="31" width="88"/></a>
<small>Copyright (c) 2008-2016 by Emil Dotchevski and Reverge Studios, Inc.<br/>
Distributed under the <a href="http://www.boost.org/LICENSE_1_0.txt">Boost Software License, Version 1.0</a>.</small>
</p>
</div>
</div>
</div>
</div>
</body>
</html>
|
LayoutTests/sputnik/Conformance/15_Native_Objects/15.1_The_Global_Object/15.1.2/15.1.2.3_parseFloat/S15.1.2.3_A1_T5.html | youfoh/webkit-efl | <html>
<head>
<meta charset='utf-8'>
<style>
.pass {
font-weight: bold;
color: green;
}
.fail {
font-weight: bold;
color: red;
}
</style>
<script>
if (window.testRunner)
testRunner.dumpAsText();
function SputnikError(message)
{
this.message = message;
}
SputnikError.prototype.toString = function ()
{
return 'SputnikError: ' + this.message;
};
var sputnikException;
function testPrint(msg)
{
var span = document.createElement("span");
document.getElementById("console").appendChild(span); // insert it first so XHTML knows the namespace
span.innerHTML = msg + '<br />';
}
function escapeHTML(text)
{
return text.toString().replace(/&/g, "&").replace(/</g, "<");
}
function printTestPassed(msg)
{
testPrint('<span><span class="pass">PASS</span> ' + escapeHTML(msg) + '</span>');
}
function printTestFailed(msg)
{
testPrint('<span><span class="fail">FAIL</span> ' + escapeHTML(msg) + '</span>');
}
function testFailed(msg)
{
throw new SputnikError(msg);
}
var successfullyParsed = false;
</script>
</head>
<body>
<p>S15.1.2.3_A1_T5</p>
<div id='console'></div>
<script>
try {
/**
* @name: S15.1.2.3_A1_T5;
* @section: 15.1.2.3, 9.8;
* @assertion: Operator use ToString;
* @description: Checking for Number object;
*/
//CHECK#1
if (parseFloat(new Number(-1.1)) !== parseFloat("-1.1")) {
testFailed('#1: parseFloat(new Number(-1.1)) === parseFloat("-1.1"). Actual: ' + (parseFloat(new Number(-1.1))));
}
//CHECK#2
if (parseFloat(new Number(Infinity)) !== parseFloat("Infinity")) {
testFailed('#2: parseFloat(new Number(Infinity)) === parseFloat("Infinity"). Actual: ' + (parseFloat(new Number(Infinity))));
}
//CHECK#3
if (String(parseFloat(new Number(NaN))) !== "NaN") {
testFailed('#3: String(parseFloat(new Number(NaN))) === "NaN". Actual: ' + (String(parseFloat(new Number(NaN)))));
}
//CHECK#4
if (parseFloat(new Number(.01e+2)) !== parseFloat(".01e+2")) {
testFailed('#4: parseFloat(new Number(.01e+2)) === parseFloat(".01e+2"). Actual: ' + (parseFloat(new Number(.01e+2))));
}
} catch (ex) {
sputnikException = ex;
}
var successfullyParsed = true;
</script>
<script>
if (!successfullyParsed)
printTestFailed('successfullyParsed is not set');
else if (sputnikException)
printTestFailed(sputnikException);
else
printTestPassed("");
testPrint('<br /><span class="pass">TEST COMPLETE</span>');
</script>
</body>
</html>
|
eztables/demo/templates/eztables/server-side-search.html | vetriselvi/django-eztables | {% extends "eztables/server-side.html" %}
{% load js staticfiles %}
{% block server-side-search %}active{% endblock %}
{% block server-side-container %}
<div class="row">
<p>
This demo is a server-side implementation of <a href="http://datatables.net/release-datatables/examples/api/regex.html">the official DataTables filtering API demo</a>.
</p>
<p>
Smart filtering is useless with server-side processing.
In fact, with ezTables Smart Filtering is enabled by default.
</p>
</div>
<div class="row">
<table class="table search">
<thead>
<tr>
<th>Target</th>
<th>Filter text</th>
<th>Treat as regex</th>
</tr>
</thead>
<tbody>
<tr><td class="spacer" colspan="3"> </td></tr>
<tr class="global">
<td>Global</td>
<td>
<input id="global-filter" type="text"
class="input-xxlarge"
placeholder="Global search">
</td>
<td><input id="global-regex" type="checkbox"/></td>
</tr>
<tr class="engine">
<td>Rendering engine</td>
<td>
<input id="filter-0" type="text"
class="input-xxlarge"
placeholder="Rendering engine search">
</td>
<td><input id="regex-0" type="checkbox"/></td>
</tr>
<tr class="browser">
<td>Browser</td>
<td>
<input id="filter-1" type="text"
class="input-xxlarge"
placeholder="Browser search">
</td>
<td><input id="regex-1" type="checkbox"/></td>
</tr>
<tr class="version">
<td>Version</td>
<td>
<input id="filter-2" type="text"
class="input-xxlarge"
placeholder="Version search">
</td>
<td><input id="regex-2" type="checkbox"/></td>
</tr>
<tr class="platform">
<td>Platform(s)</td>
<td>
<input id="filter-3" type="text"
class="input-xxlarge"
placeholder="Platform search">
</td>
<td><input id="regex-3" type="checkbox"/></td>
</tr>
<tr class="version">
<td>Engine version</td>
<td>
<input id="filter-4" type="text"
class="input-xxlarge"
placeholder="Engine version search">
</td>
<td><input id="regex-4" type="checkbox"/></td>
</tr>
<tr class="grade">
<td>CSS Grade</td>
<td>
<input id="filter-5" type="text"
class="input-xxlarge"
placeholder="CSS grade search">
</td>
<td><input id="regex-5" type="checkbox"/></td>
</tr>
</tbody>
</table>
</div>
<div class="row">
<table id="browser-table" class="span12 display table table-bordered table-condensed table-striped">
<thead>
<tr>
<th>Rendering Engine</th>
<th>Browser</th>
<th>Version</th>
<th>Platform(s)</th>
<th>Engine version</th>
<th>CSS Grade</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<div class="row">
<pre data-url="{% static "js/eztables.server.search.js" %}" class="javascript"/>
</div>
{% endblock %}
{% block server-side-extra-script %}
{% js "js/eztables.server.search.js" %}
{% endblock %}
|
doc/html/apiDocs-3/classDOMDocumentFragment-members.html | Starlink/xerces | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>Xerces-C++: Member List</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.5.6 -->
<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="classes.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="classes.html"><span>Alphabetical List</span></a></li>
<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>DOMDocumentFragment Member List</h1>This is the complete list of members for <a class="el" href="classDOMDocumentFragment.html">DOMDocumentFragment</a>, including all inherited members.<p><table>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#504731160f9bfff5bb9cc64afabf0e2f">appendChild</a>(DOMNode *newChild)=0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#6237ede96be83ff729807688e4f638c5b29561d53036246e8117b250c864f1a9">ATTRIBUTE_NODE</a> enum value</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#6237ede96be83ff729807688e4f638c54679a29a636f6206bb7fd9e831d05e4d">CDATA_SECTION_NODE</a> enum value</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#c172a67df7fff2b87ea089492c76ef54">cloneNode</a>(bool deep) const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#6237ede96be83ff729807688e4f638c5253a1b3651ae01131dd88995d03c54e1">COMMENT_NODE</a> enum value</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#17774839097a510abefd851d31f7434a">compareDocumentPosition</a>(const DOMNode *other) const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#6237ede96be83ff729807688e4f638c5775f75ac4ba9124a4d33a33d3da74779">DOCUMENT_FRAGMENT_NODE</a> enum value</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#6237ede96be83ff729807688e4f638c5eb01b6e307edacb6cac1583f467da062">DOCUMENT_NODE</a> enum value</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#8b9b0c9655699ecde9ae39615cb30b12aeaed5fbf968bc4c79ae6c02e254f8a5">DOCUMENT_POSITION_CONTAINED_BY</a> enum value</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#8b9b0c9655699ecde9ae39615cb30b1261a029637e5d2506bcc537fff813d18f">DOCUMENT_POSITION_CONTAINS</a> enum value</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#8b9b0c9655699ecde9ae39615cb30b12424b946f5c383a4d1cf998e331039b3d">DOCUMENT_POSITION_DISCONNECTED</a> enum value</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#8b9b0c9655699ecde9ae39615cb30b1261b8d44acab833df378529ebae9f8af5">DOCUMENT_POSITION_FOLLOWING</a> enum value</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#8b9b0c9655699ecde9ae39615cb30b12d05fb328a1eb1d0a47d3caaa0ab209b9">DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC</a> enum value</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#8b9b0c9655699ecde9ae39615cb30b12c13783dc880795b7ac27d540a07329c9">DOCUMENT_POSITION_PRECEDING</a> enum value</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#6237ede96be83ff729807688e4f638c54cd2263028979f3fe7e9b40fd2406e4c">DOCUMENT_TYPE_NODE</a> enum value</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#8b9b0c9655699ecde9ae39615cb30b12">DocumentPosition</a> enum name</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMDocumentFragment.html#6377889dbf64a3e1601de740c2149f14">DOMDocumentFragment</a>()</td><td><a class="el" href="classDOMDocumentFragment.html">DOMDocumentFragment</a></td><td><code> [protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#85f63599baf0d6c8bac93da940c33306">DOMNode</a>()</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#12a6ce394f39e1c0fff128cfcf6d6fea">DOMNode</a>(const DOMNode &)</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#6237ede96be83ff729807688e4f638c55e4700e1eda58eb7d08dd126c8bfafbe">ELEMENT_NODE</a> enum value</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#6237ede96be83ff729807688e4f638c5f8da261bca426f484769218bd5a40a1c">ENTITY_NODE</a> enum value</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#6237ede96be83ff729807688e4f638c5c287e4413c4fe892654b80345a96e427">ENTITY_REFERENCE_NODE</a> enum value</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#53957cd54f9f818c70f0f47f1c60b34a">getAttributes</a>() const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#ff14f2954d06e240bde35a9bec5117d0">getBaseURI</a>() const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#28990e120a00edb3cd40cb92be962a5f">getChildNodes</a>() const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#a9e181f35c713e9a4f4a0dfbbbfeefc4">getFeature</a>(const XMLCh *feature, const XMLCh *version) const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#24c2077f1694052682fc0ae21b9b535a">getFirstChild</a>() const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#a8466aebd1f2d312013aeba417ee1220">getLastChild</a>() const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#4b5979c0fc8c91573d0d603bdad1551c">getLocalName</a>() const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#eda3f2767daa297b35ab121d8f94d17f">getNamespaceURI</a>() const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#4149ddc7ca78a13610e57dcd5cfb42d7">getNextSibling</a>() const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#54c23f04202c5b401167d0853ab8aba5">getNodeName</a>() const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#4ceca7c2d979f1e42c4d96329fbd7bc1">getNodeType</a>() const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#482f63884206b59d30c49dec3ecd0301">getNodeValue</a>() const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#51104c45d1a157bc17582573451fffdf">getOwnerDocument</a>() const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#9f9d38e5496a6dc21e346588520e02c7">getParentNode</a>() const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#d4a1eef0522d8df9139199fbc325f735">getPrefix</a>() const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#d152534812012fe1e1f294f3fe1d3537">getPreviousSibling</a>() const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#676aacf9c5bcc6335be34bd952b10d44">getTextContent</a>() const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#9f80685f77433d7849a84f6c129b8b13">getUserData</a>(const XMLCh *key) const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#350d63de198edc7af89ff7beec79f157">hasAttributes</a>() const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#cdde5f520bc2063cc4b92965952cc863">hasChildNodes</a>() const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#6b31cf8cc701c8685a00f46f05efcffd">insertBefore</a>(DOMNode *newChild, DOMNode *refChild)=0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#bc5bf978736ff75e8757b4f5c843443d">isDefaultNamespace</a>(const XMLCh *namespaceURI) const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#d9c9bd1315498cdf1beaa36c47f91aee">isEqualNode</a>(const DOMNode *arg) const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#b0dbc31ea043207c23e639fa55cc339d">isSameNode</a>(const DOMNode *other) const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#e44f167bea4e091256ac1abd2d3e91c4">isSupported</a>(const XMLCh *feature, const XMLCh *version) const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#72910e69fd82666a4e3138f2100d0f8d">lookupNamespaceURI</a>(const XMLCh *prefix) const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#e9ccef3e07609f5ef8470abefbcf31ee">lookupPrefix</a>(const XMLCh *namespaceURI) const =0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#6237ede96be83ff729807688e4f638c5">NodeType</a> enum name</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#f97e7de1b1765dd48b537600dad41b35">normalize</a>()=0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#6237ede96be83ff729807688e4f638c5df32a03e60aeffc7d6b767633bc59819">NOTATION_NODE</a> enum value</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#6237ede96be83ff729807688e4f638c5a0b524c41d23469e3a8d19131d94240b">PROCESSING_INSTRUCTION_NODE</a> enum value</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#69b331aca0adcd37a41efa9492c0c9cf">release</a>()=0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#bc253f4706eebe3617a368da41093122">removeChild</a>(DOMNode *oldChild)=0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#eb2ac99f2dc5464d9add76cb8088f9df">replaceChild</a>(DOMNode *newChild, DOMNode *oldChild)=0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#c92753fc2b74889d9228a8f16e82d83a">setNodeValue</a>(const XMLCh *nodeValue)=0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#0567ab83a4dd1e947c8bbac65a0de0f9">setPrefix</a>(const XMLCh *prefix)=0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#7e0c0d340d4467ae06c6e81c55e919c4">setTextContent</a>(const XMLCh *textContent)=0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#db0b0af44813af16fcb44dbba45b11d5">setUserData</a>(const XMLCh *key, void *data, DOMUserDataHandler *handler)=0</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#6237ede96be83ff729807688e4f638c5af04f62271b6e744be27468d924f61b4">TEXT_NODE</a> enum value</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMDocumentFragment.html#32bdd0fd37cfcc9783b9be8a1d1f61e2">~DOMDocumentFragment</a>()</td><td><a class="el" href="classDOMDocumentFragment.html">DOMDocumentFragment</a></td><td><code> [virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classDOMNode.html#81eb183414e4fbfe72b31390215ec59e">~DOMNode</a>()</td><td><a class="el" href="classDOMNode.html">DOMNode</a></td><td><code> [virtual]</code></td></tr>
</table></div>
<hr size="1"><address style="text-align: right;"><small>Generated on Wed Apr 21 17:55:49 2010 for Xerces-C++ by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.6 </small></address>
</body>
</html>
|
webroot/docs/reports/qe/flows/flow_series/select.html | sbavanasi/contrail-web-controller | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Select</title>
</head>
<body>
<div class="help-title">
Use:
</div>
<div class="well">
Click the edit button (pencil icon) to open a Select window (Figure below), where you can click one or more
boxes to select the fields to display from the flow series, such as Source VN, Dest VN, Bytes, Packets, and
more.
</div>
<div>
<div class="help-img">
<img src="../docs/reports/qe/img/select.gif">
</div>
</div>
<div class="help-title">
Description:
</div>
<div class="well">
The Select window allows you to select one or more attributes of a flow series by clicking the check box for
each attribute desired, see Figure below. The upper section of the Select window includes field names, and
the lower portion lets you select units. Select Time Granularity and then select SUM(Bytes) or SUM(Packets)
to aggregate bytes and packets in intervals.
</div>
</body>
</html> |
docs/apis/publisher/v1.0/models/APIInfo.html | Minoli/carbon-apimgt | <div class="main-content">
<h2>APIInfo</h2>
<table class="table table-hover">
<colgroup>
<col style="width: 10%;"/>
<col style="width: 30%;"/>
<col style="width: 10%;"/>
<col style="width: 20%;"/>
<col style="width: 30%;"/>
</colgroup>
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Schema</th>
<th>Default</th>
<th>Example</th>
</tr>
</thead>
<tbody>
<tr>
<td class="parameter">
<p>id</p>
<p class="param-required">
optional
</p>
</td>
<td class="parameter"><p class="marked"></p></td>
<td class="parameter">
<a href="#!/models#string">string</a>
</td>
<td class="parameter"> <p class="marked">null</p></td>
<td class="parameter"> <p class="marked">01234567-0123-0123-0123-012345678901</p></td>
</tr>
<tr>
<td class="parameter">
<p>name</p>
<p class="param-required">
optional
</p>
</td>
<td class="parameter"><p class="marked"></p></td>
<td class="parameter">
<a href="#!/models#string">string</a>
</td>
<td class="parameter"> <p class="marked">null</p></td>
<td class="parameter"> <p class="marked">CalculatorAPI</p></td>
</tr>
<tr>
<td class="parameter">
<p>description</p>
<p class="param-required">
optional
</p>
</td>
<td class="parameter"><p class="marked"></p></td>
<td class="parameter">
<a href="#!/models#string">string</a>
</td>
<td class="parameter"> <p class="marked">null</p></td>
<td class="parameter"> <p class="marked">A calculator API that supports basic operations</p></td>
</tr>
<tr>
<td class="parameter">
<p>context</p>
<p class="param-required">
optional
</p>
</td>
<td class="parameter"><p class="marked"></p></td>
<td class="parameter">
<a href="#!/models#string">string</a>
</td>
<td class="parameter"> <p class="marked">null</p></td>
<td class="parameter"> <p class="marked">CalculatorAPI</p></td>
</tr>
<tr>
<td class="parameter">
<p>version</p>
<p class="param-required">
optional
</p>
</td>
<td class="parameter"><p class="marked"></p></td>
<td class="parameter">
<a href="#!/models#string">string</a>
</td>
<td class="parameter"> <p class="marked">null</p></td>
<td class="parameter"> <p class="marked">1.0.0</p></td>
</tr>
<tr>
<td class="parameter">
<p>provider</p>
<p class="param-required">
optional
</p>
</td>
<td class="parameter"><p class="marked">If the provider value is not given, the user invoking the API will be used as the provider. </p></td>
<td class="parameter">
<a href="#!/models#string">string</a>
</td>
<td class="parameter"> <p class="marked">null</p></td>
<td class="parameter"> <p class="marked">admin</p></td>
</tr>
<tr>
<td class="parameter">
<p>lifeCycleStatus</p>
<p class="param-required">
optional
</p>
</td>
<td class="parameter"><p class="marked"></p></td>
<td class="parameter">
<a href="#!/models#string">string</a>
</td>
<td class="parameter"> <p class="marked">null</p></td>
<td class="parameter"> <p class="marked">CREATED</p></td>
</tr>
<tr>
<td class="parameter">
<p>workflowStatus</p>
<p class="param-required">
optional
</p>
</td>
<td class="parameter"><p class="marked"></p></td>
<td class="parameter">
<a href="#!/models#string">string</a>
</td>
<td class="parameter"> <p class="marked">null</p></td>
<td class="parameter"> <p class="marked">APPROVED</p></td>
</tr>
<tr>
<td class="parameter">
<p>securityScheme</p>
<p class="param-required">
optional
</p>
</td>
<td class="parameter"><p class="marked"></p></td>
<td class="parameter">
<a href="#!/models#array">array</a>
</td>
<td class="parameter"> <p class="marked">null</p></td>
<td class="parameter"> <p class="marked"></p></td>
</tr>
</tbody>
</table>
</div>
|
demos/JBrowse-1.12.1/css/file_dialog.css | GMOD/jbrowse-registry | @import url("../src/dojox/form/resources/UploaderFileList.css");
.fileDialog {
color: #333;
}
.fileDialog label {
font-weight: bold;
padding: 0 0.5em;
}
.fileDialog th {
font-weight: bold;
border-bottom: 2px solid black;
}
.fileDialog .dijitDialogPaneContent > div.intro {
width: 27em;
text-align: justify;
position: relative;
left: 12%;
margin: 1.4em 0 2.4em 0;
}
.fileDialog .connector {
background: #333;
height: 6px;
width: 12px;
position: absolute;
bottom: -6px;
left: 50%;
margin-left: -6px;
}
.fileDialog h2, .fileDialog h3 {
margin: 0;
padding: 0;
font-size: 125%;
}
.fileDialog .dijitDialogPaneContent > div {
position: relative;
width: 40em;
padding: 0 0 0.75em 0;
margin: 6px 0;
}
.fileDialog div.aux {
text-align: center;
margin-bottom: 1em;
}
.fileDialog .resourceControls {
height: 10em;
position: relative;
}
.fileDialog .resourceControls > div {
width: 19.5em;
box-sizing: border-box;
height: 100%;
}
.fileDialog .resourceControls > div > h3 {
height: 19%;
}
.fileDialog .soleResourceControl {
height: 10em;
position: relative;
}
.fileDialog .soleResourceControl > div {
width: 40em;
box-sizing: border-box;
height: 100%;
}
.fileDialog .soleResourceControl > div > h3 {
height: 19%;
}
.fileDialog .localFilesControl {
position: absolute;
top: 0;
left: 0;
}
.fileDialog .dijitUploader {
position: absolute;
margin: 0;
}
.fileDialog .remoteURLsControl textarea,
.fileDialog .localFilesControl .dragArea {
height: 81%;
position: relative;
border: 1px solid #b3b3b3;
width: 100%;
box-sizing: border-box;
}
.fileDialog .localFilesControl .dragArea:hover {
border: 1px dashed green;
}
.fileDialog .localFilesControl .dragArea .dragMessage {
height: 2em;
position: absolute;
top: 60%;
font-weight: bold;
margin-top: -1em;
text-align: center;
width: 100%;
}
.fileDialog .remoteURLsControl textarea {
font-size: 10px;
background: #f2f2f2;
}
.fileDialog .remoteURLsControl textarea:hover {
background: white;
border-color: #333;
}
.fileDialog .remoteURLsControl {
position: absolute;
top: 0;
right: 0;
}
.fileDialog .resourceList {
background: #bcd3ef;
}
.fileDialog .dijitSelect td.dijitStretch {
width: 6em;
}
.fileDialog .resourceList > h3, .fileDialog .trackList > h3 {
padding: 0 0.6em;
line-height: 2.1;
margin-bottom: 0.5em;
}
.fileDialog .emptyMessage {
width: 100%;
font-size: 110%;
color: #686868;
font-weight: bold;
text-align: center;
line-height: 4;
}
.fileDialog .trackList {
background: #8cb1dd;
}
.fileDialog .resourceList > table, .fileDialog .trackList > table {
width: 95%;
padding: 0 0.75em 0.5em 0.75em;
margin: 0 auto;
border-collapse: collapse;
} |
chrome/browser/resources/settings/search_engines_page/search_engines_list.html | chromium/chromium | <style include="settings-shared">
#headers {
display: flex;
padding: 10px 0;
}
#headers .name,
#headers .keyword {
flex: 3;
}
#headers .shortcut,
#headers .url,
#headers .url-padded {
flex: 4;
}
settings-search-engine-entry {
border-top: var(--cr-separator-line);
}
:host([fixed-height]) #container {
/* Max items we show before scrolling is 6. Adding a 7th item to the
* list will add a scroll bar to the container. */
max-height: calc((var(--settings-row-min-height) +
var(--cr-separator-height)) * 6);
}
.icon-placeholder {
margin-inline-end: 0;
margin-inline-start: var(--cr-icon-button-margin-start);
width: var(--cr-icon-ripple-size);
}
.cr-row {
padding-inline-end: 7px;
padding-inline-start: 0;
}
</style>
<div id="outer" class="list-frame" role="table">
<div role="rowgroup">
<div role="row" id="headers" class="column-header">
<span class="name" role="columnheader">[[nameColumnHeader]]</span>
<span class="keyword" role="columnheader"
hidden="[[isActiveSearchEnginesFlagEnabled]]">
$i18n{searchEnginesKeyword}
</span>
<span class="shortcut" role="columnheader" hidden="[[!showShortcut]]">
$i18n{searchEnginesShortcut}
</span>
<span class="url" role="columnheader"
hidden="[[isActiveSearchEnginesFlagEnabled]]">
$i18n{searchEnginesQueryURL}
</span>
<span class="url-padded" role="columnheader"
hidden="[[!showQueryUrl]]">
$i18n{searchEnginesQueryURL}
</span>
<span class="icon-placeholder"></span>
<span class="icon-placeholder"
hidden="[[!isActiveSearchEnginesFlagEnabled]]"></span>
</div>
</div>
<template is="dom-if" if="[[!collapseList]]">
<div id="container" class="scroll-container"
scrollable$="[[fixedHeight]]">
<div role="rowgroup">
<dom-repeat items="[[engines]]">
<template>
<settings-search-engine-entry engine="[[item]]"
is-active-search-engines-flag-enabled=
"[[isActiveSearchEnginesFlagEnabled]]"
show-query-url="[[showQueryUrl]]"
show-shortcut="[[showShortcut]]">
</settings-search-engine-entry>
</template>
</dom-repeat>
</div>
</div>
</template>
<template is="dom-if" if="[[collapseList]]">
<div id="containerWithCollapsibleSection" class="scroll-container"
hidden="[[!collapseList]]"
scrollable$="[[fixedHeight]]">
<div role="rowgroup">
<dom-repeat items="[[visibleEngines]]">
<template>
<settings-search-engine-entry engine="[[item]]"
is-active-search-engines-flag-enabled=
"[[isActiveSearchEnginesFlagEnabled]]"
show-shortcut="[[showShortcut]]"
show-query-url="[[showQueryUrl]]">
</settings-search-engine-entry>
</template>
</dom-repeat>
</div>
<cr-expand-button no-hover class="cr-row"
hidden="[[!collapsedEngines.length]]"
expanded="{{enginesListExpanded_}}">
<div>[[expandListText]]</div>
</cr-expand-button>
<iron-collapse opened="[[enginesListExpanded_]]">
<div role="rowgroup">
<dom-repeat items="[[collapsedEngines]]">
<template>
<settings-search-engine-entry engine="[[item]]"
is-active-search-engines-flag-enabled=
"[[isActiveSearchEnginesFlagEnabled]]"
show-shortcut="[[showShortcut]]"
show-query-url="[[showQueryUrl]]">
</settings-search-engine-entry>
</template>
</dom-repeat>
</div>
</iron-collapse>
</div>
</template>
</div> |
reference/markup/datepicker.html | ExactTarget/fuelux | <!DOCTYPE html>
<html lang="en">
<head><title>Sample Markup</title></head>
<body>
<div class="datepicker" data-initialize="datepicker" id="myDatepicker">
<div class="input-group">
<input class="form-control" id="myDatepickerInput" type="text" />
<div class="input-group-btn">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
<span class="glyphicon glyphicon-calendar"></span>
<span class="sr-only">Toggle Calendar</span>
</button>
<div class="dropdown-menu dropdown-menu-right datepicker-calendar-wrapper" role="menu">
<div class="datepicker-calendar">
<div class="datepicker-calendar-header">
<button type="button" class="prev"><span class="glyphicon glyphicon-chevron-left"></span><span class="sr-only">Previous Month</span></button>
<button type="button" class="next"><span class="glyphicon glyphicon-chevron-right"></span><span class="sr-only">Next Month</span></button>
<button type="button" class="title">
<span class="month">
<span data-month="0">January</span>
<span data-month="1">February</span>
<span data-month="2">March</span>
<span data-month="3">April</span>
<span data-month="4">May</span>
<span data-month="5">June</span>
<span data-month="6">July</span>
<span data-month="7">August</span>
<span data-month="8">September</span>
<span data-month="9">October</span>
<span data-month="10">November</span>
<span data-month="11">December</span>
</span> <span class="year"></span>
</button>
</div>
<table class="datepicker-calendar-days">
<thead>
<tr>
<th>Su</th>
<th>Mo</th>
<th>Tu</th>
<th>We</th>
<th>Th</th>
<th>Fr</th>
<th>Sa</th>
</tr>
</thead>
<tbody></tbody>
</table>
<div class="datepicker-calendar-footer">
<button type="button" class="datepicker-today">Today</button>
</div>
</div>
<div class="datepicker-wheels" aria-hidden="true">
<div class="datepicker-wheels-month">
<h2 class="header">Month</h2>
<ul>
<li data-month="0"><button type="button">Jan</button></li>
<li data-month="1"><button type="button">Feb</button></li>
<li data-month="2"><button type="button">Mar</button></li>
<li data-month="3"><button type="button">Apr</button></li>
<li data-month="4"><button type="button">May</button></li>
<li data-month="5"><button type="button">Jun</button></li>
<li data-month="6"><button type="button">Jul</button></li>
<li data-month="7"><button type="button">Aug</button></li>
<li data-month="8"><button type="button">Sep</button></li>
<li data-month="9"><button type="button">Oct</button></li>
<li data-month="10"><button type="button">Nov</button></li>
<li data-month="11"><button type="button">Dec</button></li>
</ul>
</div>
<div class="datepicker-wheels-year">
<h2 class="header">Year</h2>
<ul></ul>
</div>
<div class="datepicker-wheels-footer clearfix">
<button type="button" class="btn datepicker-wheels-back"><span class="glyphicon glyphicon-arrow-left"></span><span class="sr-only">Return to Calendar</span></button>
<button type="button" class="btn datepicker-wheels-select">Select <span class="sr-only">Month and Year</span></button>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
|
front_end/ui/components/docs/data_grid_controller/filter.html | ChromeDevTools/devtools-frontend | <!--
Copyright 2020 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>Filterable Data grid controller example</title>
<style>
#container {
width: 80%;
border: 1px solid black;
padding: 20px;
height: 500px;
}
input {
font-size: 18px;
padding: 10px;
margin-bottom: 30px;
}
devtools-data-grid-controller {
height: 300px;
}
</style>
</head>
<body>
<div id="container">
<input type="text" placeholder="filter text" />
</div>
<script type="module" src="./filter.js"></script>
</body>
</html>
|
vendor/codeplex/phpexcel/Documentation/API/classes/PHPExcel_Reader_Exception.html | amatyas/ims | <!DOCTYPE html><html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;">
<meta charset="utf-8">
<title>PHPExcel classes » \PHPExcel_Reader_Exception</title>
<meta name="author" content="Mike van Riel">
<meta name="description" content="">
<link href="../css/template.css" rel="stylesheet" media="all">
<script src="../js/jquery-1.7.1.min.js" type="text/javascript"></script><script src="../js/jquery-ui-1.8.2.custom.min.js" type="text/javascript"></script><script src="../js/jquery.mousewheel.min.js" type="text/javascript"></script><script src="../js/bootstrap.js" type="text/javascript"></script><script src="../js/template.js" type="text/javascript"></script><script src="../js/prettify/prettify.min.js" type="text/javascript"></script><link rel="shortcut icon" href="../img/favicon.ico">
<link rel="apple-touch-icon" href="../img/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="../img/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="../img/apple-touch-icon-114x114.png">
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner"><div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></a><a class="brand" href="../index.html">PHPExcel classes</a><div class="nav-collapse"><ul class="nav">
<li class="dropdown">
<a href="#api" class="dropdown-toggle" data-toggle="dropdown">
API Documentation <b class="caret"></b></a><ul class="dropdown-menu">
<li><a>Packages</a></li>
<li><a href="../packages/Default.html"><i class="icon-folder-open"></i> Default</a></li>
<li><a href="../packages/JAMA.html"><i class="icon-folder-open"></i> JAMA</a></li>
<li><a href="../packages/JAMA%0D%0ACholesky%20decomposition%20class%0D%0AFor%20a%20symmetric,%20positive%20definite%20matrix%20A,%20the%20Cholesky%20decomposition%0D%0Ais%20an%20lower%20triangular%20matrix%20L%20so%20that%20A%20=%20L*L'.html"><i class="icon-folder-open"></i> JAMA
Cholesky decomposition class
For a symmetric, positive definite matrix A, the Cholesky decomposition
is an lower triangular matrix L so that A = L*L'</a></li>
<li><a href="../packages/JAMA%0D%0AClass%20to%20obtain%20eigenvalues%20and%20eigenvectors%20of%20a%20real%20matrix.html"><i class="icon-folder-open"></i> JAMA
Class to obtain eigenvalues and eigenvectors of a real matrix</a></li>
<li><a href="../packages/JAMA%0D%0AError%20handling.html"><i class="icon-folder-open"></i> JAMA
Error handling</a></li>
<li><a href="../packages/JAMA%0D%0AFor%20an%20m-by-n%20matrix%20A%20with%20m%20>=%20n,%20the%20LU%20decomposition%20is%20an%20m-by-n%0D%0Aunit%20lower%20triangular%20matrix%20L,%20an%20n-by-n%20upper%20triangular%20matrix%20U,%0D%0Aand%20a%20permutation%20vector%20piv%20of%20length%20m%20so%20that%20A(piv,:)%20=%20L*U.html"><i class="icon-folder-open"></i> JAMA
For an m-by-n matrix A with m >= n, the LU decomposition is an m-by-n
unit lower triangular matrix L, an n-by-n upper triangular matrix U,
and a permutation vector piv of length m so that A(piv,:) = L*U</a></li>
<li><a href="../packages/JAMA%0D%0AFor%20an%20m-by-n%20matrix%20A%20with%20m%20>=%20n,%20the%20QR%20decomposition%20is%20an%20m-by-n%0D%0Aorthogonal%20matrix%20Q%20and%20an%20n-by-n%20upper%20triangular%20matrix%20R%20so%20that%0D%0AA%20=%20Q*R.html"><i class="icon-folder-open"></i> JAMA
For an m-by-n matrix A with m >= n, the QR decomposition is an m-by-n
orthogonal matrix Q and an n-by-n upper triangular matrix R so that
A = Q*R</a></li>
<li><a href="../packages/JAMA%0D%0AFor%20an%20m-by-n%20matrix%20A%20with%20m%20>=%20n,%20the%20singular%20value%20decomposition%20is%0D%0Aan%20m-by-n%20orthogonal%20matrix%20U,%20an%20n-by-n%20diagonal%20matrix%20S,%20and%0D%0Aan%20n-by-n%20orthogonal%20matrix%20V%20so%20that%20A%20=%20U*S*V'.html"><i class="icon-folder-open"></i> JAMA
For an m-by-n matrix A with m >= n, the singular value decomposition is
an m-by-n orthogonal matrix U, an n-by-n diagonal matrix S, and
an n-by-n orthogonal matrix V so that A = U*S*V'</a></li>
<li><a href="../packages/JAMA%0D%0APythagorean%20Theorem:%0D%0Aa%20=%203%0D%0Ab%20=%204%0D%0Ar%20=%20sqrt(square(a)%20+%20square(b))%0D%0Ar%20=%205%0D%0Ar%20=%20sqrt(a%5E2%20+%20b%5E2)%20without%20under.overflow.html"><i class="icon-folder-open"></i> JAMA
Pythagorean Theorem:
a = 3
b = 4
r = sqrt(square(a) + square(b))
r = 5
r = sqrt(a^2 + b^2) without under/overflow</a></li>
<li><a href="../packages/PHPExcel.html"><i class="icon-folder-open"></i> PHPExcel</a></li>
</ul>
</li>
<li class="dropdown" id="charts-menu">
<a href="#charts" class="dropdown-toggle" data-toggle="dropdown">
Charts <b class="caret"></b></a><ul class="dropdown-menu"><li><a href="../graph_class.html"><i class="icon-list-alt"></i> Class hierarchy diagram</a></li></ul>
</li>
<li class="dropdown" id="reports-menu">
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors
<span class="label label-info">519</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers
<ul>
<li>todo
<span class="label label-info">19</span>
</li>
<li>fixme
<span class="label label-info">10</span>
</li>
</ul></a></li>
<li><a href="../deprecated.html"><i class="icon-stop"></i> Deprecated elements
<span class="label label-info">12</span></a></li>
</ul>
</li>
</ul></div>
</div></div>
<div class="go_to_top"><a href="#___" style="color: inherit">Back to top <i class="icon-upload icon-white"></i></a></div>
</div>
<div id="___" class="container">
<noscript><div class="alert alert-warning">
Javascript is disabled; several features are only available
if Javascript is enabled.
</div></noscript>
<div class="row">
<div class="span4">
<span class="btn-group visibility" data-toggle="buttons-checkbox"><button class="btn public active" title="Show public elements">Public</button><button class="btn protected" title="Show protected elements">Protected</button><button class="btn private" title="Show private elements">Private</button><button class="btn inherited active" title="Show inherited elements">Inherited</button></span><div class="btn-group view pull-right" data-toggle="buttons-radio">
<button class="btn details" title="Show descriptions and method names"><i class="icon-list"></i></button><button class="btn simple" title="Show only method names"><i class="icon-align-justify"></i></button>
</div>
<ul class="side-nav nav nav-list"><li class="nav-header">
<i class="icon-custom icon-method"></i> Methods
<ul><li class="method public "><a href="#method_errorHandlerCallback" title="errorHandlerCallback :: Error handler callback"><span class="description">Error handler callback</span><pre>errorHandlerCallback()</pre></a></li></ul>
</li></ul>
</div>
<div class="span8">
<a id="\PHPExcel_Reader_Exception"></a><ul class="breadcrumb">
<li>
<a href="../index.html"><i class="icon-custom icon-class"></i></a><span class="divider">\</span>
</li>
<li><a href="../namespaces/global.html">global</a></li>
<li class="active">
<span class="divider">\</span><a href="../classes/PHPExcel_Reader_Exception.html">PHPExcel_Reader_Exception</a>
</li>
</ul>
<div class="element class">
<p class="short_description">PHPExcel_Reader_Exception</p>
<div class="details">
<div class="long_description"></div>
<table class="table table-bordered">
<tr>
<th>category</th>
<td>PHPExcel</td>
</tr>
<tr>
<th>package</th>
<td><a href="../packages/PHPExcel.Reader.html">PHPExcel_Reader</a></td>
</tr>
<tr>
<th>copyright</th>
<td>Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel)</td>
</tr>
</table>
<h3>
<i class="icon-custom icon-method"></i> Methods</h3>
<a id="method_errorHandlerCallback"></a><div class="element clickable method public method_errorHandlerCallback" data-toggle="collapse" data-target=".method_errorHandlerCallback .collapse">
<h2>Error handler callback</h2>
<pre>errorHandlerCallback(mixed $code, mixed $string, mixed $file, mixed $line, mixed $context) </pre>
<div class="labels"><span class="label">Static</span></div>
<div class="row collapse"><div class="detail-description">
<div class="long_description"></div>
<h3>Parameters</h3>
<div class="subelement argument">
<h4>$code</h4>
<code>mixed</code>
</div>
<div class="subelement argument">
<h4>$string</h4>
<code>mixed</code>
</div>
<div class="subelement argument">
<h4>$file</h4>
<code>mixed</code>
</div>
<div class="subelement argument">
<h4>$line</h4>
<code>mixed</code>
</div>
<div class="subelement argument">
<h4>$context</h4>
<code>mixed</code>
</div>
</div></div>
</div>
</div>
</div>
</div>
</div>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a12</a> and<br>
generated on 2013-06-02T15:42:49+01:00.<br></footer></div>
</div>
</body>
</html>
|
deploy/jxweb/skin/default/css/home.css | wmzsoft/JXADF | .ui-layout-pane {
border: 0 none;
padding: 0;
color: #403e3e;
}
.middle-center {
padding: 0 5px 0 0;
}
.middle-north {
background: url(../images/home/pathbg.png) repeat-x;
line-height: 30px;
font-size: 12px;
color: #403e3e;
padding-left: 5px;
height: 30px;
display: block;
}
.warm {
width: 520px;
height: 311px;
margin: 50px auto 0;
}
.warm-bg {
background: url(../images/home/warm-bg.png) no-repeat 0 0;
width: 132px;
height: 115px;
display: block;
margin: 20px auto 10px;
text-align: center;
padding: 0;
}
.warm-content p {
text-align: center;
padding-left: 10px;
color: #909193;
font-weight: bold;
} |
docs/src-html/co/aikar/taskchain/TaskChainDataWrappers.html | aikar/TaskChain | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<title>Source code</title>
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
</head>
<body>
<div class="sourceContainer">
<pre><span class="sourceLineNo">001</span>/*<a name="line.1"></a>
<span class="sourceLineNo">002</span> * Copyright (c) 2016-2017 Daniel Ennis (Aikar) - MIT License<a name="line.2"></a>
<span class="sourceLineNo">003</span> *<a name="line.3"></a>
<span class="sourceLineNo">004</span> * Permission is hereby granted, free of charge, to any person obtaining<a name="line.4"></a>
<span class="sourceLineNo">005</span> * a copy of this software and associated documentation files (the<a name="line.5"></a>
<span class="sourceLineNo">006</span> * "Software"), to deal in the Software without restriction, including<a name="line.6"></a>
<span class="sourceLineNo">007</span> * without limitation the rights to use, copy, modify, merge, publish,<a name="line.7"></a>
<span class="sourceLineNo">008</span> * distribute, sublicense, and/or sell copies of the Software, and to<a name="line.8"></a>
<span class="sourceLineNo">009</span> * permit persons to whom the Software is furnished to do so, subject to<a name="line.9"></a>
<span class="sourceLineNo">010</span> * the following conditions:<a name="line.10"></a>
<span class="sourceLineNo">011</span> *<a name="line.11"></a>
<span class="sourceLineNo">012</span> * The above copyright notice and this permission notice shall be<a name="line.12"></a>
<span class="sourceLineNo">013</span> * included in all copies or substantial portions of the Software.<a name="line.13"></a>
<span class="sourceLineNo">014</span> *<a name="line.14"></a>
<span class="sourceLineNo">015</span> * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,<a name="line.15"></a>
<span class="sourceLineNo">016</span> * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF<a name="line.16"></a>
<span class="sourceLineNo">017</span> * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND<a name="line.17"></a>
<span class="sourceLineNo">018</span> * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE<a name="line.18"></a>
<span class="sourceLineNo">019</span> * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION<a name="line.19"></a>
<span class="sourceLineNo">020</span> * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION<a name="line.20"></a>
<span class="sourceLineNo">021</span> * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.<a name="line.21"></a>
<span class="sourceLineNo">022</span> */<a name="line.22"></a>
<span class="sourceLineNo">023</span><a name="line.23"></a>
<span class="sourceLineNo">024</span>package co.aikar.taskchain;<a name="line.24"></a>
<span class="sourceLineNo">025</span><a name="line.25"></a>
<span class="sourceLineNo">026</span>@SuppressWarnings("WeakerAccess")<a name="line.26"></a>
<span class="sourceLineNo">027</span>public final class TaskChainDataWrappers {<a name="line.27"></a>
<span class="sourceLineNo">028</span> public static class Data2 <D1, D2> {<a name="line.28"></a>
<span class="sourceLineNo">029</span> public final D1 var1;<a name="line.29"></a>
<span class="sourceLineNo">030</span> public final D2 var2;<a name="line.30"></a>
<span class="sourceLineNo">031</span> public Data2(D1 var1, D2 var2) {<a name="line.31"></a>
<span class="sourceLineNo">032</span> this.var1 = var1;<a name="line.32"></a>
<span class="sourceLineNo">033</span> this.var2 = var2;<a name="line.33"></a>
<span class="sourceLineNo">034</span> }<a name="line.34"></a>
<span class="sourceLineNo">035</span> }<a name="line.35"></a>
<span class="sourceLineNo">036</span> public static class Data3 <D1, D2, D3> extends Data2<D1, D2> {<a name="line.36"></a>
<span class="sourceLineNo">037</span> public final D3 var3;<a name="line.37"></a>
<span class="sourceLineNo">038</span> public Data3(D1 var1, D2 var2, D3 var3) {<a name="line.38"></a>
<span class="sourceLineNo">039</span> super(var1, var2);<a name="line.39"></a>
<span class="sourceLineNo">040</span> this.var3 = var3;<a name="line.40"></a>
<span class="sourceLineNo">041</span> }<a name="line.41"></a>
<span class="sourceLineNo">042</span> }<a name="line.42"></a>
<span class="sourceLineNo">043</span> public static class Data4 <D1, D2, D3, D4> extends Data3<D1, D2, D3> {<a name="line.43"></a>
<span class="sourceLineNo">044</span> public final D4 var4;<a name="line.44"></a>
<span class="sourceLineNo">045</span> public Data4(D1 var1, D2 var2, D3 var3, D4 var4) {<a name="line.45"></a>
<span class="sourceLineNo">046</span> super(var1, var2, var3);<a name="line.46"></a>
<span class="sourceLineNo">047</span> this.var4 = var4;<a name="line.47"></a>
<span class="sourceLineNo">048</span> }<a name="line.48"></a>
<span class="sourceLineNo">049</span> }<a name="line.49"></a>
<span class="sourceLineNo">050</span> public static class Data5 <D1, D2, D3, D4, D5> extends Data4<D1, D2, D3, D4> {<a name="line.50"></a>
<span class="sourceLineNo">051</span> public final D5 var5;<a name="line.51"></a>
<span class="sourceLineNo">052</span> public Data5(D1 var1, D2 var2, D3 var3, D4 var4, D5 var5) {<a name="line.52"></a>
<span class="sourceLineNo">053</span> super(var1, var2, var3, var4);<a name="line.53"></a>
<span class="sourceLineNo">054</span> this.var5 = var5;<a name="line.54"></a>
<span class="sourceLineNo">055</span> }<a name="line.55"></a>
<span class="sourceLineNo">056</span> }<a name="line.56"></a>
<span class="sourceLineNo">057</span> public static class Data6 <D1, D2, D3, D4, D5, D6> extends Data5<D1, D2, D3, D4, D5> {<a name="line.57"></a>
<span class="sourceLineNo">058</span> public final D6 var6;<a name="line.58"></a>
<span class="sourceLineNo">059</span> public Data6(D1 var1, D2 var2, D3 var3, D4 var4, D5 var5, D6 var6) {<a name="line.59"></a>
<span class="sourceLineNo">060</span> super(var1, var2, var3, var4, var5);<a name="line.60"></a>
<span class="sourceLineNo">061</span> this.var6 = var6;<a name="line.61"></a>
<span class="sourceLineNo">062</span> }<a name="line.62"></a>
<span class="sourceLineNo">063</span> }<a name="line.63"></a>
<span class="sourceLineNo">064</span>}<a name="line.64"></a>
</pre>
</div>
</body>
</html>
|
content/css/site.css | crostina/RestaurantWeb | /* Sticky footer styles
-------------------------------------------------- */
html {
position: relative;
min-height: 100%;
}
body {
/* Margin bottom by footer height */
margin-bottom: 60px;
padding-top: 40px;
xpadding-bottom: 10px;
}
#footer {
position: absolute;
bottom: 0;
width: 100%;
/* Set the fixed height of the footer here */
height: 60px;
background-color: #f5f5f5;
}
.text-muted {
margin: 20px 0;
}
.form-login {
max-width: 330px;
padding: 0px 15px 5px 15px;
margin: 0 auto;
}
.form-login .form-login-heading {
margin-bottom: 10px;
}
.form-login .form-control {
position: relative;
height: auto;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 10px;
font-size: 16px;
}
.form-login .form-control:focus {
z-index: 2;
}
.form-login input[type="password"] {
margin-top:5px;
margin-bottom: 5px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
|
aio/content/examples/upgrade-phonecat-2-hybrid/app/phone-detail/phone-detail.template.html | angular-indonesia/angular | <!-- #docregion -->
<div *ngIf="phone">
<div class="phone-images">
<img [src]="img" class="phone" alt="Phone {{ phone.name }} - thumbnail {{ index }}"
[ngClass]="{'selected': img === mainImageUrl}"
*ngFor="let img of phone.images; let index = index;" />
</div>
<h1>{{phone.name}}</h1>
<p>{{phone.description}}</p>
<ul class="phone-thumbs">
<li *ngFor="let img of phone.images; let index = index">
<!-- eslint-disable-next-line @angular-eslint/template/click-events-have-key-events -->
<img [src]="img" (click)="setImage(img)" alt="Phone {{ phone.name }} - thumbnail {{ index }}"/>
</li>
</ul>
<ul class="specs">
<li>
<span>Availability and Networks</span>
<dl>
<dt>Availability</dt>
<dd *ngFor="let availability of phone.availability">{{availability}}</dd>
</dl>
</li>
<li>
<span>Battery</span>
<dl>
<dt>Type</dt>
<dd>{{phone.battery?.type}}</dd>
<dt>Talk Time</dt>
<dd>{{phone.battery?.talkTime}}</dd>
<dt>Standby time (max)</dt>
<dd>{{phone.battery?.standbyTime}}</dd>
</dl>
</li>
<li>
<span>Storage and Memory</span>
<dl>
<dt>RAM</dt>
<dd>{{phone.storage?.ram}}</dd>
<dt>Internal Storage</dt>
<dd>{{phone.storage?.flash}}</dd>
</dl>
</li>
<li>
<span>Connectivity</span>
<dl>
<dt>Network Support</dt>
<dd>{{phone.connectivity?.cell}}</dd>
<dt>WiFi</dt>
<dd>{{phone.connectivity?.wifi}}</dd>
<dt>Bluetooth</dt>
<dd>{{phone.connectivity?.bluetooth}}</dd>
<dt>Infrared</dt>
<dd>{{phone.connectivity?.infrared | checkmark}}</dd>
<dt>GPS</dt>
<dd>{{phone.connectivity?.gps | checkmark}}</dd>
</dl>
</li>
<li>
<span>Android</span>
<dl>
<dt>OS Version</dt>
<dd>{{phone.android?.os}}</dd>
<dt>UI</dt>
<dd>{{phone.android?.ui}}</dd>
</dl>
</li>
<li>
<span>Size and Weight</span>
<dl>
<dt>Dimensions</dt>
<dd *ngFor="let dim of phone.sizeAndWeight?.dimensions">{{dim}}</dd>
<dt>Weight</dt>
<dd>{{phone.sizeAndWeight?.weight}}</dd>
</dl>
</li>
<li>
<span>Display</span>
<dl>
<dt>Screen size</dt>
<dd>{{phone.display?.screenSize}}</dd>
<dt>Screen resolution</dt>
<dd>{{phone.display?.screenResolution}}</dd>
<dt>Touch screen</dt>
<dd>{{phone.display?.touchScreen | checkmark}}</dd>
</dl>
</li>
<li>
<span>Hardware</span>
<dl>
<dt>CPU</dt>
<dd>{{phone.hardware?.cpu}}</dd>
<dt>USB</dt>
<dd>{{phone.hardware?.usb}}</dd>
<dt>Audio / headphone jack</dt>
<dd>{{phone.hardware?.audioJack}}</dd>
<dt>FM Radio</dt>
<dd>{{phone.hardware?.fmRadio | checkmark}}</dd>
<dt>Accelerometer</dt>
<dd>{{phone.hardware?.accelerometer | checkmark}}</dd>
</dl>
</li>
<li>
<span>Camera</span>
<dl>
<dt>Primary</dt>
<dd>{{phone.camera?.primary}}</dd>
<dt>Features</dt>
<dd>{{phone.camera?.features?.join(', ')}}</dd>
</dl>
</li>
<li>
<span>Additional Features</span>
<dd>{{phone.additionalFeatures}}</dd>
</li>
</ul>
</div>
|
vendor/temp/visionmedia-page.js-aa60550/examples/transitions/index.html | Wing-Men/that-wing-thing | <!DOCTYPE html>
<html>
<head>
<title>Page.js - transitions</title>
<script src="/page.js"></script>
<link rel="stylesheet" href="/transitions/style.css" />
</head>
<body>
<section id="content">
<img src="/transitions/logo.png" id="logo" />
<p id="page"></p>
<nav>
<a href="/transitions">home</a>
<a href="/transitions/contact">contact</a>
<a href="/transitions/about">about</a>
</nav>
</section>
<script src="/transitions/app.js"></script>
</body>
</html>
|
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort.html | aldaris/jenkins | <div>
If you are not using JNLP agents, it's recommended that you disable this
entirely, which is the default installation behavior.
Jenkins uses a TCP port to communicate with agents launched via JNLP.
If you're going to use JNLP agents, you can allow the system to randomly
select a port at launch (this avoids interfering with other programs,
including other Jenkins instances).
As it's hard for firewalls to secure a random port, you can instead
specify a fixed port number and configure your firewall accordingly.
</div>
|
static/polyphemus/assets/plugins/parsley (Case Conflict)/doc/about.html | geoffroygivry/CyclopsVFX-Polyphemus | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Parsley, the ultimate frontend javascript form validation library">
<meta name="author" content="Guillaume Potier">
<title>Parsley - About</title>
<!-- Bootstrap core CSS -->
<link href="../bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="assets/docs.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
<style>
body {
color: #111111;
}
h2 {
color: #FF851B;
}
</style>
</head>
<body>
<div class="container">
<div class="masthead">
<div class="header">
<h3 class="text-muted"><a href="../">Parsley</a></h3>
<span class="social-buttons inline-block">
<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://parsleyjs.org" data-text="Parsley, the ultimate javascript form validation library. #parsleyjs" data-via="guillaumepotier" data-related="guillaumepotier" data-hashtags="parsleyjs">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
<iframe src="http://ghbtns.com/github-btn.html?user=guillaumepotier&repo=Parsley.js&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="110" height="20"></iframe>
<iframe src="http://ghbtns.com/github-btn.html?user=guillaumepotier&repo=Parsley.js&type=fork&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="110" height="20"></iframe>
</span>
</div>
<ul class="nav nav-justified">
<li><a href="../">Home</a></li>
<li><a href="examples.html">Examples</a></li>
<li><a href="index.html">Documentation</a></li>
<li><a href="download.html">Download</a></li>
<li><a href="help.html">Help</a></li>
<li><a href="annotated-source/main.html">Annotated source</a></li>
<li><a href="tests.html">Tests</a></li>
<li class="active"><a href="about.html">About</a></li>
</ul>
</div>
<!-- Jumbotron -->
<div class="jumbotron">
<h1>About Parsley</h1>
<hr>
<div class="col-md-12">Parsley is an open source, MIT licensed project created by <a href="https://github.com/guillaumepotier" target="_blank">Guillaume Potier</a> and co-maintened by <a href="https://github.com/marcandre" target="_blank">Marc-André</a> now.</div>
<div class="col-md-12">While independant, Parsley is sponsored by <a href="http://wisembly.com" target="_blank">Wisembly</a>. At Wisembly, we love open-source software, see our <a href="https://github.com/Wisembly" target="_blank">other open-source projects here</a> and don't hesitate to give a try to <a href="http://getsolid.io/?utm_source=parsleyjs.org&utm_medium=referral&utm_campaign=parsley#i-love-parsley" target="_blank" style="font-weight:bolder;text-decoration:underline;">Solid</a>, our latest product that will get you more productive during your meetings.</div>
</div>
<div class="clearfix"></div>
<!-- Site footer -->
<div class="footer">
<p>© <a href="https://twitter.com/guillaumepotier" title="Guillaume Potier on Twitter">Guillaume Potier</a> 2014 - <a href="http://wisembly.com">@Wisembly</a></p>
</div>
</div>
<script src="../bower_components/jquery/dist/jquery.min.js"></script>
<script>
$(document).ready(function () {
$('.download').on('click', function (event) {
_gaq.push(['_trackEvent','download', 'download ' + $(this).data('version'), $(this).data('version')]);
_gaq.push(['_trackPageview','/download/' + $(this).data('version')]);
});
});
</script>
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-37229467-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>
|
examples/webgl_loader_texture_pvrtc.html | 06wj/three.js | <!DOCTYPE html>
<html lang="en">
<head>
<title>three.js webgl - materials - compressed textures</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link type="text/css" rel="stylesheet" href="main.css">
</head>
<body>
<div id="info">
<a href="https://threejs.org" target="_blank" rel="noopener">three.js</a> - webgl - PVR compressed textures
</div>
<script type="module">
import * as THREE from '../build/three.module.js';
import { PVRLoader } from './jsm/loaders/PVRLoader.js';
let camera, scene, renderer;
const meshes = [];
init();
animate();
function init() {
camera = new THREE.PerspectiveCamera( 50, window.innerWidth / window.innerHeight, 1, 2000 );
camera.position.z = 1000;
scene = new THREE.Scene();
const geometry = new THREE.BoxGeometry( 200, 200, 200 );
//
const onCube1Loaded = function ( texture ) {
texture.magFilter = THREE.LinearFilter;
texture.minFilter = THREE.LinearFilter;
texture.mapping = THREE.CubeReflectionMapping;
material6.needsUpdate = true;
};
const onCube2Loaded = function ( texture ) {
texture.magFilter = THREE.LinearFilter;
// texture.minFilter = LinearMipmapNearestFilter;
texture.minFilter = THREE.LinearFilter;
texture.mapping = THREE.CubeReflectionMapping;
material8.needsUpdate = true;
};
//
const loader = new PVRLoader();
const disturb_4bpp_rgb = loader.load( 'textures/compressed/disturb_4bpp_rgb.pvr' );
const disturb_4bpp_rgb_v3 = loader.load( 'textures/compressed/disturb_4bpp_rgb_v3.pvr' );
const disturb_4bpp_rgb_mips = loader.load( 'textures/compressed/disturb_4bpp_rgb_mips.pvr' );
const disturb_2bpp_rgb = loader.load( 'textures/compressed/disturb_2bpp_rgb.pvr' );
const flare_4bpp_rgba = loader.load( 'textures/compressed/flare_4bpp_rgba.pvr' );
const flare_2bpp_rgba = loader.load( 'textures/compressed/flare_2bpp_rgba.pvr' );
const park3_cube_nomip_4bpp_rgb = loader.load( 'textures/compressed/park3_cube_nomip_4bpp_rgb.pvr', onCube1Loaded );
const park3_cube_mip_2bpp_rgb_v3 = loader.load( 'textures/compressed/park3_cube_mip_2bpp_rgb_v3.pvr', onCube2Loaded );
disturb_2bpp_rgb.minFilter =
disturb_2bpp_rgb.magFilter =
flare_4bpp_rgba.minFilter =
flare_4bpp_rgba.magFilter =
disturb_4bpp_rgb.minFilter =
disturb_4bpp_rgb.magFilter =
disturb_4bpp_rgb_v3.minFilter =
disturb_4bpp_rgb_v3.magFilter =
flare_2bpp_rgba.minFilter =
flare_2bpp_rgba.magFilter = THREE.LinearFilter;
const material1 = new THREE.MeshBasicMaterial( { map: disturb_4bpp_rgb } );
const material2 = new THREE.MeshBasicMaterial( { map: disturb_4bpp_rgb_mips } );
const material3 = new THREE.MeshBasicMaterial( { map: disturb_2bpp_rgb } );
const material4 = new THREE.MeshBasicMaterial( { map: flare_4bpp_rgba, side: THREE.DoubleSide, depthTest: false, transparent: true } );
const material5 = new THREE.MeshBasicMaterial( { map: flare_2bpp_rgba, side: THREE.DoubleSide, depthTest: false, transparent: true } );
const material6 = new THREE.MeshBasicMaterial( { envMap: park3_cube_nomip_4bpp_rgb } );
const material8 = new THREE.MeshBasicMaterial( { envMap: park3_cube_mip_2bpp_rgb_v3 } );
const material7 = new THREE.MeshBasicMaterial( { map: disturb_4bpp_rgb_v3 } );
//
let mesh = new THREE.Mesh( geometry, material1 );
mesh.position.x = - 500;
mesh.position.y = 200;
scene.add( mesh );
meshes.push( mesh );
mesh = new THREE.Mesh( geometry, material2 );
mesh.position.x = - 166;
mesh.position.y = 200;
scene.add( mesh );
meshes.push( mesh );
mesh = new THREE.Mesh( geometry, material3 );
mesh.position.x = 166;
mesh.position.y = 200;
scene.add( mesh );
meshes.push( mesh );
mesh = new THREE.Mesh( geometry, material7 );
mesh.position.x = 500;
mesh.position.y = 200;
scene.add( mesh );
meshes.push( mesh );
mesh = new THREE.Mesh( geometry, material4 );
mesh.position.x = - 500;
mesh.position.y = - 200;
scene.add( mesh );
meshes.push( mesh );
mesh = new THREE.Mesh( geometry, material5 );
mesh.position.x = - 166;
mesh.position.y = - 200;
scene.add( mesh );
meshes.push( mesh );
const torus = new THREE.TorusGeometry( 100, 50, 32, 24 );
mesh = new THREE.Mesh( torus, material6 );
mesh.position.x = 166;
mesh.position.y = - 200;
scene.add( mesh );
meshes.push( mesh );
mesh = new THREE.Mesh( torus, material8 );
mesh.position.x = 500;
mesh.position.y = - 200;
scene.add( mesh );
meshes.push( mesh );
//
renderer = new THREE.WebGLRenderer( { antialias: true } );
renderer.setPixelRatio( window.devicePixelRatio );
renderer.setSize( window.innerWidth, window.innerHeight );
document.body.appendChild( renderer.domElement );
window.addEventListener( 'resize', onWindowResize );
}
function onWindowResize() {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize( window.innerWidth, window.innerHeight );
}
function animate() {
requestAnimationFrame( animate );
const time = Date.now() * 0.001;
for ( let i = 0; i < meshes.length; i ++ ) {
const mesh = meshes[ i ];
mesh.rotation.x = time;
mesh.rotation.y = time;
}
renderer.render( scene, camera );
}
</script>
</body>
</html>
|
chord_output/race_TCE447_TCE445.html | cos/evaluation-junit | <?xml version="1.0" encoding="UTF-8"?><html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Datarace Details</title>
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
<table class="details">
<tr>
<td class="head1" colspan="2">Datarace Details</td>
</tr>
<tr>
<td class="head2" colspan="2">
Field: <a href="java/util/HashMap.java.html#0">java.util.HashMap$Entry.key</a></td>
</tr>
<tr>
<td class="head2" colspan="2">
Object: {[<a href="java/util/HashMap.java.html#753">java.
<wbr></wbr>util.
<wbr></wbr>HashMap$Entry</a>], [<a href="java/util/LinkedHashMap.java.html#223">java.
<wbr></wbr>util.
<wbr></wbr>LinkedHashMap$Entry</a>]}
</td>
</tr>
<tr>
<td style="width:50%">
<table class="details">
<colgroup>
<col width="35%" />
<col width="65%" />
</colgroup>
<tr>
<td class="head4" colspan="2">
Path
(complete)
</td>
</tr>
<tr>
<td class="head4">Enclosing Lock(s)</td>
<td class="head4">Call Site(s)</td>
</tr>
<tr>
<td></td>
<td><a href="junit/tests/ParallelThreadsAllTests.java.html#16">junit.tests.ParallelThreadsAllTests.main(java.lang.String[])</a><br />
Context: [main]
</td>
</tr>
<tr>
<td></td>
<td><a href="junit/textui/TestRunner.java.html#77">junit.textui.TestRunner.run(junit.framework.Test)</a><br />
Context: [main]
</td>
</tr>
<tr>
<td></td>
<td><a href="junit/textui/TestRunner.java.html#109">junit.textui.TestRunner.doRun(junit.framework.Test)</a><br />
Context: [main]
</td>
</tr>
<tr>
<td></td>
<td><a href="junit/textui/TestRunner.java.html#116">junit.textui.TestRunner.doRun(junit.framework.Test,boolean)</a><br />
Context: [main]
</td>
</tr>
<tr>
<td></td>
<td><a href="junit/extensions/ActiveTestSuite.java.html#35">junit.extensions.ActiveTestSuite.run(junit.framework.TestResult)</a><br />
Context: [main]
</td>
</tr>
<tr>
<td></td>
<td><a href="junit/framework/TestSuite.java.html#238">junit.framework.TestSuite.run(junit.framework.TestResult)</a><br />
Context: [main]
</td>
</tr>
<tr>
<td></td>
<td><a href="junit/extensions/ActiveTestSuite.java.html#41">junit.extensions.ActiveTestSuite.runTest(junit.framework.Test,junit.framework.TestResult)</a><br />
Context: [main]
</td>
</tr>
<tr>
<td></td>
<td><a href="junit/extensions/ActiveTestSuite.java.html#41">junit.extensions.ActiveTestSuite$1.<init>(junit.extensions.ActiveTestSuite,junit.framework.Test,junit.framework.TestResult)</a><br />
Context: [main]
</td>
</tr>
<tr>
<td></td>
<td><a href="java/lang/Thread.java.html#420">java.lang.Thread.<init>()</a><br />
Context: [main]
</td>
</tr>
<tr>
<td></td>
<td><a href="java/lang/Thread.java.html#342">java.lang.Thread.init(java.lang.ThreadGroup,java.lang.Runnable,java.lang.String,long)</a><br />
Context: [main]
</td>
</tr>
<tr>
<td><a href="java/lang/Thread.java.html#1563">java.lang.Thread.isCCLOverridden(java.lang.Class)</a><br />{[<a href="java/lang/Thread.java.html#1550">sun.
<wbr></wbr>misc.
<wbr></wbr>SoftCache</a>]}<br /></td>
<td><a href="java/lang/Thread.java.html#1564">java.lang.Thread.isCCLOverridden(java.lang.Class)</a><br />
Context: [main]
</td>
</tr>
<tr>
<td></td>
<td><a href="sun/misc/SoftCache.java.html#274">sun.misc.SoftCache.get(java.lang.Object)</a><br />
Context: [main]
</td>
</tr>
<tr>
<td></td>
<td><a href="java/util/HashMap.java.html#385">java.util.HashMap.put(java.lang.Object,java.lang.Object)</a><br />
Context: [main]
</td>
</tr>
<tr>
<td></td>
<td><a href="java/util/HashMap.java.html#753">java.util.HashMap.addEntry(int,java.lang.Object,java.lang.Object,int)</a><br />
Context: [main]
</td>
</tr>
<tr>
<td></td>
<td><a href="java/util/HashMap.java.html#686">java.util.HashMap$Entry.<init>(int,java.lang.Object,java.lang.Object,java.util.HashMap$Entry)</a>
(Wr)
<br />
Context: [main]
</td>
</tr>
</table>
</td>
<td style="width:50%">
<table class="details">
<colgroup>
<col width="35%" />
<col width="65%" />
</colgroup>
<tr>
<td class="head4" colspan="2">
Path
(complete)
</td>
</tr>
<tr>
<td class="head4">Enclosing Lock(s)</td>
<td class="head4">Call Site(s)</td>
</tr>
<tr>
<td></td>
<td><a href="java/lang/Thread.java.html#0">java.lang.Thread.start()</a><br />
Context: [main]
</td>
</tr>
<tr>
<td></td>
<td><a href="junit/extensions/ActiveTestSuite.java.html#47">junit.extensions.ActiveTestSuite$1.run()</a><br />
Context: [main]
</td>
</tr>
<tr>
<td></td>
<td><a href="junit/framework/TestSuite.java.html#238">junit.framework.TestSuite.run(junit.framework.TestResult)</a><br />
Context: [main]
</td>
</tr>
<tr>
<td></td>
<td><a href="junit/extensions/ActiveTestSuite.java.html#41">junit.extensions.ActiveTestSuite.runTest(junit.framework.Test,junit.framework.TestResult)</a><br />
Context: [main]
</td>
</tr>
<tr>
<td></td>
<td><a href="junit/extensions/ActiveTestSuite.java.html#41">junit.extensions.ActiveTestSuite$1.<init>(junit.extensions.ActiveTestSuite,junit.framework.Test,junit.framework.TestResult)</a><br />
Context: [main]
</td>
</tr>
<tr>
<td></td>
<td><a href="java/lang/Thread.java.html#420">java.lang.Thread.<init>()</a><br />
Context: [main]
</td>
</tr>
<tr>
<td></td>
<td><a href="java/lang/Thread.java.html#342">java.lang.Thread.init(java.lang.ThreadGroup,java.lang.Runnable,java.lang.String,long)</a><br />
Context: [main]
</td>
</tr>
<tr>
<td><a href="java/lang/Thread.java.html#1563">java.lang.Thread.isCCLOverridden(java.lang.Class)</a><br />{[<a href="java/lang/Thread.java.html#1550">sun.
<wbr></wbr>misc.
<wbr></wbr>SoftCache</a>]}<br /></td>
<td><a href="java/lang/Thread.java.html#1564">java.lang.Thread.isCCLOverridden(java.lang.Class)</a><br />
Context: [main]
</td>
</tr>
<tr>
<td></td>
<td><a href="sun/misc/SoftCache.java.html#274">sun.misc.SoftCache.get(java.lang.Object)</a><br />
Context: [main]
</td>
</tr>
<tr>
<td></td>
<td><a href="java/util/HashMap.java.html#385">java.util.HashMap.put(java.lang.Object,java.lang.Object)</a><br />
Context: [main]
</td>
</tr>
<tr>
<td></td>
<td><a href="java/util/HashMap.java.html#753">java.util.HashMap.addEntry(int,java.lang.Object,java.lang.Object,int)</a><br />
Context: [main]
</td>
</tr>
<tr>
<td></td>
<td><a href="java/util/HashMap.java.html#686">java.util.HashMap$Entry.<init>(int,java.lang.Object,java.lang.Object,java.util.HashMap$Entry)</a>
(Wr)
<br />
Context: [main]
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html> |
dist/assetsMilan/css/bootstrap/_breadcrumbs.css | cromozooom/retail_store | /*
Error: Undefined variable: "$breadcrumb-padding-vertical".
on line 7 of _breadcrumbs.scss
2: // Breadcrumbs
3: // --------------------------------------------------
4:
5:
6: .breadcrumb {
7: padding: $breadcrumb-padding-vertical $breadcrumb-padding-horizontal;
8: margin-bottom: $line-height-computed;
9: list-style: none;
10: background-color: $breadcrumb-bg;
11: border-radius: $border-radius-base;
12:
Backtrace:
_breadcrumbs.scss:7
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/script/tree/variable.rb:49:in `_perform'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/script/tree/node.rb:50:in `perform'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/script/tree/list_literal.rb:62:in `block in _perform'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/script/tree/list_literal.rb:62:in `map'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/script/tree/list_literal.rb:62:in `_perform'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/script/tree/node.rb:50:in `perform'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/tree/visitors/perform.rb:384:in `visit_prop'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/tree/visitors/base.rb:36:in `visit'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/tree/visitors/perform.rb:158:in `block in visit'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/stack.rb:79:in `block in with_base'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/stack.rb:115:in `with_frame'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/stack.rb:79:in `with_base'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/tree/visitors/perform.rb:158:in `visit'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/tree/visitors/perform.rb:420:in `block (2 levels) in visit_rule'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/tree/visitors/perform.rb:420:in `map'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/tree/visitors/perform.rb:420:in `block in visit_rule'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/tree/visitors/perform.rb:179:in `with_environment'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/tree/visitors/perform.rb:418:in `visit_rule'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/tree/visitors/base.rb:36:in `visit'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/tree/visitors/perform.rb:158:in `block in visit'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/stack.rb:79:in `block in with_base'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/stack.rb:115:in `with_frame'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/stack.rb:79:in `with_base'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/tree/visitors/perform.rb:158:in `visit'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/tree/visitors/base.rb:52:in `block in visit_children'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/tree/visitors/base.rb:52:in `map'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/tree/visitors/base.rb:52:in `visit_children'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/tree/visitors/perform.rb:167:in `block in visit_children'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/tree/visitors/perform.rb:179:in `with_environment'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/tree/visitors/perform.rb:166:in `visit_children'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/tree/visitors/base.rb:36:in `block in visit'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/tree/visitors/perform.rb:186:in `visit_root'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/tree/visitors/base.rb:36:in `visit'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/tree/visitors/perform.rb:157:in `visit'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/tree/visitors/perform.rb:8:in `visit'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/tree/root_node.rb:36:in `css_tree'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/tree/root_node.rb:29:in `render_with_sourcemap'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/engine.rb:368:in `_render_with_sourcemap'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/engine.rb:285:in `render_with_sourcemap'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/exec/sass_scss.rb:396:in `run'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/exec/sass_scss.rb:62:in `process_result'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/exec/base.rb:52:in `parse'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/lib/sass/exec/base.rb:19:in `parse!'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/ruby_gems/gems/sass-3.4.9/bin/sass:13:in `<top (required)>'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/loader.rb:15:in `load'
/Users/nicur/Downloads/Prepros.app/Contents/Resources/app/ruby/loader.rb:15:in `<main>'
*/
body:before {
white-space: pre;
font-family: monospace;
content: "Error: Undefined variable: \"$breadcrumb-padding-vertical\".\A on line 7 of _breadcrumbs.scss\A \A 2: // Breadcrumbs\A 3: // --------------------------------------------------\A 4: \A 5: \A 6: .breadcrumb {\A 7: padding: $breadcrumb-padding-vertical $breadcrumb-padding-horizontal;\A 8: margin-bottom: $line-height-computed;\A 9: list-style: none;\A 10: background-color: $breadcrumb-bg;\A 11: border-radius: $border-radius-base;\A 12: "; }
|
wp/wp-content/plugins/bootstrap-shortcodes/js/plugins/tabs.html | vidia/cvn-website | <!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="../../css/bootstrap.css" />
<link rel="stylesheet" href="../../css/admin.css" />
<script type="text/javascript" src="../jquery.js"></script>
<script type="text/javascript" src="../bootstrap.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('[data-editable]').live('click', function() {
if ($(this).find('input').length > 0) return;
var val = $.trim($(this).html());
$(this).html('<input type="text" />').find('input')[0].focus();
$(this).find('input').val(val);
$(this).find('input')[0].select();
var attr = $(this).attr('data-removable');
if (typeof attr !== 'undefined' && attr !== false) {
$('<i class="icon-remove" style="position:absolute; cursor:pointer; margin:6px 0 0 7px;"></i>').appendTo(this).click(function() {
$(this).parent().remove();
})
.hover(function() {
$(this).parent()[0].removeAttribute('data-editable');
}, function() {
$(this).parent()[0].setAttribute('data-editable', 'true');
$(this).parent().find('input')[0].focus();
})
}
})
$('[data-editable] input').live('blur', function() {
$(this).parent().html($(this).val())
swich_column()
})
$('input[name=type]').on('change', function() {
if (this.id == 'sl_container') {
$('#c_parent').hide();
} else {
$('#c_parent').show();
}
})
/**
* Save tab
*/
$('#savetab').click(function() {
var id = $('#txt_id').val();
var title = $('#txt_tabtitle').val();
var content = $('#txt_content').val();
var mparent = $('#sl_parent').val();
if (id.indexOf('#') > -1) {
$(id).html('<p>' + content + '</p>');
$('#myTab a[href=' + id + ']').text(title);
if (mparent != '') $('#myTab a[href=' + id + ']').parent().removeClass('active').appendTo($('#' + mparent).next());
} else {
$('#' + id).html(title + '<b class="caret"></b>')
}
$('#fields').hide();
$(this).hide();
$('#deletetab').hide();
$('.alert-info').fadeIn().delay(500).fadeOut();
$('#newtab').show();
});
/**
* Create new tab
*/
$('#newtab').click(function(e) {
$('input[name=type]').each(function() {
this.removeAttribute('disabled')
});
if ($('#fields').is(':hidden')) {
$('#fields').fadeIn();
$('#txt_tabtitle').val('New tab');
$('#sl_tab')[0].checked = true;
$('#sl_parent').val('');
$('#txt_content').val('');
$('#c_parent').show();
$(this).val('Save');
return;
}
var title = $('#txt_tabtitle').val();
var type = $('input[name=type]:checked').val();
var mparent = $('#sl_parent').val();
var content = $('#txt_content').val();
var id = 'bs_tab' + e.timeStamp;
if (type == 'tab') {
if (mparent == '') {
$('#myTab').append('<li><a data-toggle="tab" href="#' + id + '">' + title + '</a></li>');
$('#myTabContent').append('<div id="' + id + '" class="tab-pane fade"><p>' + content + '</p></div>');
} else {
$('#' + mparent).next().append('<li><a data-toggle="tab" href="#' + id + '">' + title + '</a></li>');
$('#myTabContent').append('<div id="' + id + '" class="tab-pane fade"><p>' + content + '</p></div>');
}
} else {
$('#myTab').append('<li class="dropdown"><a id="' + id + '" data-toggle="dropdown" class="dropdown-toggle" href="#">' + title + '<b class="caret"></b></a><ul class="dropdown-menu"></ul></li>');
$('#sl_parent').append('<option value="' + id + '">' + title + '</option>');
}
$('#fields').hide();
$(this).val('Insert new tab');
$('.alert-success').fadeIn().delay(500).fadeOut();
})
/**
* Insert button
*/
$('#btn_insert').click(function(e) {
//Generate shortcode
//--------------
// [bs_tabs]
// [bs_thead]
// [bs_tab type="tab" href="#link" title="title"]
// [bs_dropdown title="title"]
// [bs_tab type="tab" href="#link" title="title"]
// [/bs_dropdown]
// [/bs_thead]
// [bs_tcontents]
// [bs_tcontent id="link"]
// [/bs_tcontent]
// [/bs_tcontents]
// [/bs_tabs]
// ---------------
//Clean tab
$('#myTab li.add-new').remove();
$('#myTabContent').find('#bs_container,#bs_new_tab').remove();
var shortcode = '[bs_tabs]<br class="nc"/>[bs_thead]<br class="nc"/>';
var tid = Math.floor((Math.random() * 100) + 1);
//Generate header
$('#myTab>li').each(function(i, e) {
var $this = $(this);
var title = $this.find('a:first').text();
var href = $this.find('a:first').attr('href') + tid;
var sclass = (i == 0) ? 'active' : '';
if ($this.hasClass('dropdown')) {
var id = $this.find('a:first').attr('id') + tid;
shortcode += '[bs_dropdown id="' + id + '" title="' + title + '"]<br class="nc"/>';
var subcode = '';
$(this).find('li').each(function() {
var shref = $(this).find('a').attr('href') + tid;
var stitle = $(this).find('a').text();
subcode += '[bs_tab type="tab" href="' + shref + '" title="' + stitle + '"]<br class="nc"/>';
});
shortcode += subcode;
shortcode += '[/bs_dropdown]<br class="nc"/>';
} else {
shortcode += '[bs_tab class="' + sclass + '" type="tab" href="' + href + '" title="' + title + '"]<br class="nc"/>';
}
})
shortcode += '[/bs_thead][bs_tcontents]<br class="nc"/>';
//Generate content
$('#myTabContent > div').each(function(j, e) {
var content = $(this).find('.tab_content').val();
var id = this.id + tid;
sclass = (j == 0) ? 'active' : '';
shortcode += '[bs_tcontent class="' + sclass + '" id="' + id + '"]' + content + '[/bs_tcontent]<br class="nc"/>';
});
shortcode += '[/bs_tcontents]<br class="nc"/>[/bs_tabs]';
top.tinymce.activeEditor.execCommand('mceInsertContent', false, shortcode);
top.tinymce.activeEditor.windowManager.close();
});
$('.tab_title').live('keyup', function() {
var tid = $(this).closest('.tab-pane').attr('id');
if (tid != 'bs_container') {
$('a[href="#' + tid + '"]').html($(this).val());
} else {
$('#myTab > li.active > a ').html($(this).val() + ' <b class="caret"></b>');
$('.tab_parent option[value=' + $('#myTab > li.active > a ').attr('id') + ']').text($(this).val());
}
})
/**
* Tab delete
*/
$('.tab-delete').live('click', function() {
var id = $(this).closest('.tab-pane').attr('id');
$(this).closest('.tab-pane').remove();
$('#myTab a[href=#' + id + ']').closest('li').remove();
});
$('.cnt-delte').click(function() {
$('.tab_parent option[value=' + $('#myTab > li.active > a ').attr('id') + ']').remove();
$('#myTab > li.active .dropdown-menu li a').each(function() {
var id = $(this).attr('href')
$(id).remove();
})
$('#myTab > li.active').remove();
$(this).closest('.tab-pane').removeClass('active in');
})
/**
* Tab focus
*/
$('#myTab').on('click', 'a', function(e) {
e.preventDefault();
var title = $(this).text();
var type = $(this).hasClass('dropdown-toggle') ? 'container' : 'tab';
var mparent = '';
if (type == 'tab' && ($(this).closest('li.dropdown').length > 0)) {
mparent = $.trim($(this).closest('li.dropdown').find('a:first').attr('id'));
$($(this).attr('href')).find('.tab_parent').val(mparent);
}
if (type == 'container') {
$('#myTab > .active').removeClass('active')
$(this).closest('.dropdown').addClass('active');
$('#myTabContent > .active').removeClass('active').removeClass('in').end()
.find('#bs_container').addClass('active').addClass('in');
$('#myTabContent > .active').find('.tab_title').val($(this).html().replace(' <b class="caret"></b>', ''));
}
});
/*
* Tab parent change
*/
$('.tab_parent').live('change', function() {
if ($(this).attr('id')) return;
var id = '#' + $(this).closest('.tab-pane').attr('id'),
pid = $(this).val();
$('#myTab >li').removeClass('active');
if (pid != '') {
$('#myTab a[href=' + id + ']').parent().removeClass('active').appendTo($('#' + pid).next());
} else {
if ($('#myTab a[href=' + id + ']').closest('.dropdown').length == 0) return
$('#myTab a[href=' + id + ']').parent().addClass('active').prependTo($('#myTab'));
}
});
$('#new_type').on('change', function() {
if ($(this).val() == 1) {
$('#new_parent,#new_content').hide();
} else {
$('#new_parent,#new_content').show();
}
});
$('.add-new').on('click', function() {
$('#new_title').val($('#new_title').attr('placeholder'));
$('#new_type').val('');
$('#new_parent').val('').show();
$('#new_content').val('').show();
});
$('#new_tab').click(function(e) {
var title = $('#new_title').val();
var type = $('#new_type').val();
var mparent = $('#new_parent').val();
var content = '<input type="text" class="tab_title" value="' + title + '" />\
<select class="tab_parent"> ' + $('.tab_parent:first').html() + '\
</select>\
<textarea class="tab_content">' + $('#new_content').val() + '</textarea>\
<button class="tab-delete btn"><i class="icon-trash"></i> Remove</button>';
var id = 'bs_tab' + e.timeStamp;
if (type != 1) {
if (mparent == '') {
$('#myTab').append('<li><a data-toggle="tab" href="#' + id + '">' + title + '</a></li>');
$('#myTabContent').append('<div id="' + id + '" class="tab-pane fade"><p>' + content + '</p></div>');
} else {
$('#' + mparent).next().append('<li><a data-toggle="tab" href="#' + id + '">' + title + '</a></li>');
$('#myTabContent').append('<div id="' + id + '" class="tab-pane fade"><p>' + content + '</p></div>');
}
$('a[href=#' + id + ']').trigger('click')
} else {
$('#myTab').append('<li class="dropdown"><a id="' + id + '" data-toggle="dropdown" class="dropdown-toggle" href="#">' + title + ' <b class="caret"></b></a><ul class="dropdown-menu"></ul></li>');
$('.tab_parent').append('<option value="' + id + '">' + title + '</option>');
$('#' + id).trigger('click')
}
});
});
</script>
</head>
<body>
<div id="bs-wrapper">
<ul id="myTab" class="nav nav-tabs">
<li class="active"><a href="#bs_first_tab" data-toggle="tab">Tab title</a>
</li>
<li class="dropdown">
<a id="bs_dropdown" href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#bs_dropdown1" data-toggle="tab">@fat</a>
</li>
<li><a href="#bs_dropdown2" data-toggle="tab">@mdo</a>
</li>
</ul>
</li>
<li class="add-new"><a href="#bs_new_tab" data-toggle="tab"><i class="glyphicon glyphicon-plus-sign" title="Add new tab"></i></a>
</li>
</ul>
<div id="myTabContent" class="tab-content">
<div class="tab-pane fade active in" id="bs_first_tab">
<input type="text" class="tab_title" value="Tab title" />
<select class="tab_parent">
<option value="">- Select tab parent -</option>
<option value="bs_dropdown">Dropdown</option>
</select>
<textarea class="tab_content">Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.</textarea>
<button class="tab-delete btn"><i class="icon-trash"></i> Remove</button>
</div>
<div class="tab-pane fade" id="bs_container">
<input type="text" class="tab_title" value="Tab title" />
<button class="cnt-delte btn" style="display:block"><i class="icon-trash"></i> Remove</button>
</div>
<div class="tab-pane fade" id="bs_dropdown1">
<input type="text" class="tab_title" value="@fat" />
<select class="tab_parent">
<option value="">- Select tab parent -</option>
<option value="bs_dropdown">Dropdown</option>
</select>
<textarea class="tab_content">Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone.</textarea>
<button class="tab-delete btn"><i class="icon-trash"></i> Remove</button>
</div>
<div class="tab-pane fade" id="bs_dropdown2">
<input type="text" class="tab_title" value="@mdo" />
<select class="tab_parent">
<option value="">- Select tab parent -</option>
<option value="bs_dropdown">Dropdown</option>
</select>
<textarea class="tab_content">Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica.</textarea>
<button class="tab-delete btn"><i class="icon-trash"></i> Remove</button>
</div>
<div class="tab-pane fade" id="bs_new_tab">
<input id="new_title" type="text" onfocus="this.select()" placeholder="Tab title" value="Tab Title" />
<select id="new_type">
<option value="">- Select tab type -</option>
<option value="0">Tab</option>
<option value="1">Container</option>
</select>
<select id="new_parent" class="tab_parent">
<option value="">- Select tab parent -</option>
<option value="bs_dropdown">Default tab</option>
</select>
<textarea id="new_content" placeholder="Tab content"></textarea>
<br/>
<input id="new_tab" type="button" value="Create new tab" class="btn btn-success" />
</div>
</div>
<hr />
<p>
<button id="btn_insert" class="btn btn-primary">Insert shortcode</button>
</p>
</div>
</div>
</body>
</html>
|
wp-content/plugins/jetpack/_inc/blocks/premium-content/view.rtl.css | tstephen/srp-digital | .wp-block-premium-content-container .components-notice-list .components-notice__content{margin:0}.wp-block-premium-content-logged-out-view .wp-block-jetpack-recurring-payments{display:inline-block;margin-left:.5em}.wp-block-premium-content-login-button.aligncenter{align-items:center;display:flex;justify-content:center}.wp-block-premium-content-login-button.alignright{float:left}.wp-block-premium-content-logged-out-view__buttons{display:flex;margin-top:20px}.wp-block-premium-content-logged-out-view__buttons .wp-block-button__link{margin-left:20px}@media(min-width:660px){.wp-block-premium-content-logged-out-view__buttons .wp-block-button__link{min-width:200px}} |
view/layout/ajax/dashboard/people_box.tpl.html | unclerayray/TeamToy | <?php if( isset( $data ) && is_array( $data ) ): ?>
<?php if( count($data) > 15 ): ?>
<div class="ppfliter inline-form" >
<div class="input-prepend ">
<span class="add-on"><i class="icon-search"></i></span>
<input id="ppkeyword" type="text" placeholder="<?=__('FIND_BY_NAME_OR_PINYIN')?>">
</div>
<span id="ppuname_selected" ></span>
</div>
<?php endif; ?>
<ul class="pplist">
<?php foreach( $data as $item ): ?>
<?php if(intval(v('multi')) == 1 ): ?>
<!-- choose multi user -->
<li class="multi user" uid="<?=$item['id']?>" uname="<?=$item['name']?>" pinyin="<?=$item['pinyin']?>"><a href="#"><img src="<?=avatar($item['avatar_small'])?>"><br/><?=$item['name']?></a></li>
<?php else: ?>
<!-- choose single user -->
<?php if( $item['id'] == uid() && v('self') != 1 ): ?>
<li class="user" uid="<?=$item['id']?>" uname="<?=$item['name']?>" pinyin="<?=$item['pinyin']?>"><a href="#"><img src="<?=avatar($item['avatar_small'])?>"><br/><?=$item['name']?></a></li>
<?php else: ?>
<li class="user" uid="<?=$item['id']?>" uname="<?=$item['name']?>" pinyin="<?=$item['pinyin']?>"><a href="javascript:<?=z(t(v('jsfunc')))?>(<?=$tid?> , <?=$item['id']?> , '<?=$item['name']?>');"><img src="<?=avatar($item['avatar_small'])?>"><br/><?=$item['name']?></a></li>
<?php endif; ?>
<?php endif; ?>
<!-- . end foreach -->
<?php endforeach; ?>
</ul>
<?php if(intval(v('multi')) == 1 ): ?>
<div class="modal-footer mywhite">
<a href="#" class="btn btn-primary" id="pp_multi_ok_btn"><?=__('OK')?></a>
</div>
<script type="text/javascript">
$('.pplist .multi').unbind( 'click');
$('.pplist .multi').bind( 'click' , function()
{
$(this).toggleClass('pp-selected');
$("#ppuname_selected").empty();
if( $('.pplist .multi.pp-selected').size() > 0 )
{
$("#ppuname_selected").html('<?=__('SELECTED_PEOPLE')?> - ');
$('.pplist .multi.pp-selected').each( function()
{
$("#ppuname_selected").append( $('<span class="nameitem" uid="' + $(this).attr('uid') + '"><i class="icon-user"></i>'+ $(this).attr('uname') +'</span> ') );
});
}
});
$('#pp_multi_ok_btn').unbind( 'click' );
$('#pp_multi_ok_btn').bind( 'click' , function()
{
if( $('.pp-selected').size() < 1 )
{
alert('<?=__('ONE_PEOPLE_LEAST')?>');
return false;
}
var uids = [] , unames = [];
$('.pp-selected').each( function()
{
uids.push( $(this).attr('uid') );
unames.push( $(this).attr('uname') );
});
<?=z(t(v('jsfunc')))?>(uids , unames);
});
</script>
<?php endif; ?>
<script type="text/javascript">
$('#ppkeyword').unbind('keyup keydown');
$('#ppkeyword').bind('keyup keydown' ,function()
{
if( $('#ppkeyword').val() != '' )
{
$('.pplist li.user').each(function()
{
if( ($(this).attr('pinyin').indexOf( $('#ppkeyword').val() ) < 0)
&& ( $(this).attr('uname').indexOf( $('#ppkeyword').val() ) < 0 ))
$(this).css('display','none');
else
$(this).css('display','inline-block');
});
}
else
{
$('.pplist li.user').each(function()
{
$(this).css('display','inline-block');
});
}
});
</script>
<?php endif; ?>
|
dist/apidocs/classes/Endpoints.Image.html | nicoder/jsPlumb |
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no"/>
<title>Endpoints.Image - jsplumb API documentation</title>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link href="//fonts.googleapis.com/css?family=Lato:400,700" rel="stylesheet">
<link rel="stylesheet" href="../../css/main.css">
<link rel="stylesheet" href="../../css/jsplumb-doc.css">
<!-- yuidoc -->
<link rel="stylesheet" href="http://yui.yahooapis.com/3.9.1/build/cssgrids/cssgrids-min.css">
<link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css">
<link rel="stylesheet" href="../../css/external/cssgrids-min.css">
<link rel="stylesheet" href="../../css/external/prettify-min.css">
<link rel="shortcut icon" type="image/png" href="../../img/favicon.png">
<script src="https://yui-s.yahooapis.com/combo?3.9.1/build/yui/yui-min.js"></script>
<style>
#doc {
text-align:left;
margin-top:44px;
}
</style>
</head>
<body class="yui3-skin-sam">
<div class="navbar navbar-top navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/"><img src="../../img/logo-medium-jsplumb.png"></a>
<div class="community"></div>
</div>
<div class="navbar-collapse collapse nav-wrapper">
<ul class="nav navbar-nav">
<li><a href="../../">DEMOS</a></li>
<li><a href="../../doc/home.html">DOCS</a></li>
<li><a href="../../apidocs/index.html">API</a></li>
<li><a href="../../download">DOWNLOAD</a></li>
<li><a href="http://beta.jsplumbtoolkit.com/contact.html">CONTACT</a></li>
<li><a href="https://blog.jsplumbtoolkit.com">BLOG</a></li>
</ul>
<div class="social-nav hidden-xs">
<a href="http://twitter.com/jsplumblib" class="link"><span class="icon-twitter"></span></a>
<a href="http://github.com/sporritt/jsplumb/" class="link"><span class="icon-github"></span></a>
<a href="http://www.linkedin.com/company/jsplumb" class="link"><span class="icon-linkedin"></span></a>
</div>
</div><!--/.nav-collapse -->
</div>
</div>
<div class="container">
<div class="row">
<div id="doc">
<div id="bd" class="yui3-g">
<div class="yui3-u-1-4">
<div id="docs-sidebar" class="sidebar apidocs">
<div id="api-list">
<h2 class="off-left">APIs</h2>
<div id="api-tabview" class="tabview">
<ul class="tabs">
<li><a href="#api-classes">Classes</a></li>
<li><a href="#api-modules">Modules</a></li>
</ul>
<div id="api-tabview-filter">
<input type="search" id="api-filter" placeholder="Type to filter APIs">
</div>
<div id="api-tabview-panel">
<ul id="api-classes" class="apis classes">
<li><a href="../classes/AbstractOverlay.html">AbstractOverlay</a></li>
<li><a href="../classes/Anchors.Assign.html">Anchors.Assign</a></li>
<li><a href="../classes/Anchors.AutoDefault.html">Anchors.AutoDefault</a></li>
<li><a href="../classes/Anchors.Bottom.html">Anchors.Bottom</a></li>
<li><a href="../classes/Anchors.BottomCenter.html">Anchors.BottomCenter</a></li>
<li><a href="../classes/Anchors.BottomLeft.html">Anchors.BottomLeft</a></li>
<li><a href="../classes/Anchors.BottomRight.html">Anchors.BottomRight</a></li>
<li><a href="../classes/Anchors.Center.html">Anchors.Center</a></li>
<li><a href="../classes/Anchors.Continuous.html">Anchors.Continuous</a></li>
<li><a href="../classes/Anchors.ContinuousBottom.html">Anchors.ContinuousBottom</a></li>
<li><a href="../classes/Anchors.ContinuousLeft.html">Anchors.ContinuousLeft</a></li>
<li><a href="../classes/Anchors.ContinuousRight.html">Anchors.ContinuousRight</a></li>
<li><a href="../classes/Anchors.ContinuousTop.html">Anchors.ContinuousTop</a></li>
<li><a href="../classes/Anchors.Left.html">Anchors.Left</a></li>
<li><a href="../classes/Anchors.LeftMiddle.html">Anchors.LeftMiddle</a></li>
<li><a href="../classes/Anchors.Perimeter.html">Anchors.Perimeter</a></li>
<li><a href="../classes/Anchors.Right.html">Anchors.Right</a></li>
<li><a href="../classes/Anchors.RightMiddle.html">Anchors.RightMiddle</a></li>
<li><a href="../classes/Anchors.Top.html">Anchors.Top</a></li>
<li><a href="../classes/Anchors.TopCenter.html">Anchors.TopCenter</a></li>
<li><a href="../classes/Anchors.TopLeft.html">Anchors.TopLeft</a></li>
<li><a href="../classes/Anchors.TopRight.html">Anchors.TopRight</a></li>
<li><a href="../classes/Connection.html">Connection</a></li>
<li><a href="../classes/Connector.html">Connector</a></li>
<li><a href="../classes/Connectors.Bezier.html">Connectors.Bezier</a></li>
<li><a href="../classes/Connectors.Flowchart.html">Connectors.Flowchart</a></li>
<li><a href="../classes/Connectors.StateMachine.html">Connectors.StateMachine</a></li>
<li><a href="../classes/Connectors.Straight.html">Connectors.Straight</a></li>
<li><a href="../classes/Endpoint.html">Endpoint</a></li>
<li><a href="../classes/Endpoints.Blank.html">Endpoints.Blank</a></li>
<li><a href="../classes/Endpoints.Dot.html">Endpoints.Dot</a></li>
<li><a href="../classes/Endpoints.Image.html">Endpoints.Image</a></li>
<li><a href="../classes/Endpoints.Rectangle.html">Endpoints.Rectangle</a></li>
<li><a href="../classes/jsPlumb.html">jsPlumb</a></li>
<li><a href="../classes/jsPlumbInstance.html">jsPlumbInstance</a></li>
<li><a href="../classes/jsPlumbUIComponent.html">jsPlumbUIComponent</a></li>
<li><a href="../classes/jsPlumbUtil.html">jsPlumbUtil</a></li>
<li><a href="../classes/jsPlumbUtil.EventGenerator.html">jsPlumbUtil.EventGenerator</a></li>
<li><a href="../classes/OverlayCapableJsPlumbUIComponent.html">OverlayCapableJsPlumbUIComponent</a></li>
<li><a href="../classes/Overlays.Arrow.html">Overlays.Arrow</a></li>
<li><a href="../classes/Overlays.Diamond.html">Overlays.Diamond</a></li>
<li><a href="../classes/Overlays.Label.html">Overlays.Label</a></li>
<li><a href="../classes/Overlays.PlainArrow.html">Overlays.PlainArrow</a></li>
</ul>
<ul id="api-modules" class="apis modules">
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="yui3-u-3-4">
<div id="api-options">
Show:
<label for="api-show-inherited">
<input type="checkbox" id="api-show-inherited" checked>
Inherited
</label>
<label for="api-show-protected">
<input type="checkbox" id="api-show-protected">
Protected
</label>
<label for="api-show-private">
<input type="checkbox" id="api-show-private">
Private
</label>
<label for="api-show-deprecated">
<input type="checkbox" id="api-show-deprecated">
Deprecated
</label>
</div>
<div class="apidocs">
<div id="docs-main">
<div class="content">
<h1>Endpoints.Image Class</h1>
<div class="box meta">
<div class="extends">
Extends <a href="../classes/Endpoint.html" class="crosslink">Endpoint</a>
</div>
<div class="foundat">
Defined in: <a href="../files/doc_api_endpoint-api.js.html#l198"><code>doc/api/endpoint-api.js:198</code></a>
</div>
</div>
<div class="box intro">
<p>An Endpoint that uses an Image.</p>
</div>
<div class="constructor">
<h2>Constructor</h2>
<div id="method_Endpoints.Image" class="method item">
<h3 class="name"><code>Endpoints.Image</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>params</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>
Defined in
<a href="../files/doc_api_endpoint-api.js.html#l198"><code>doc/api/endpoint-api.js:198</code></a>
</p>
</div>
<div class="description">
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">params</code>
<span class="type">Object</span>
<div class="param-description">
<p>Constructor parameters</p>
</div>
<ul class="params-list">
<li class="param">
<code class="param-name">src</code>
<span class="type">Integer</span>
<div class="param-description">
<p>Url of the image to display</p>
</div>
</li>
<li class="param">
<code class="param-name optional">[cssClass]</code>
<span class="type">String</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>Optional space-delimited list of CSS classes to attach to the Endpoint.</p>
</div>
</li>
<li class="param">
<code class="param-name optional">[hoverClass]</code>
<span class="type">String</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>Optional space-delimited list of CSS classes to attach to the Endpoint when the mouse is hovering over it.</p>
</div>
</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
<div id="classdocs" class="tabview">
<ul class="api-class-tabs">
<li class="api-class-tab index"><a href="#index">Index</a></li>
<li class="api-class-tab methods"><a href="#methods">Methods</a></li>
<li class="api-class-tab properties"><a href="#properties">Properties</a></li>
</ul>
<div>
<div id="index" class="api-class-tabpanel index">
<h2 class="off-left">Item Index</h2>
<div class="index-section methods">
<h3>Methods</h3>
<ul class="index-list methods extends">
<li class="index-item method inherited">
<a href="#method_addClass">addClass</a>
</li>
<li class="index-item method inherited">
<a href="#method_addOverlay">addOverlay</a>
</li>
<li class="index-item method inherited">
<a href="#method_addType">addType</a>
</li>
<li class="index-item method inherited">
<a href="#method_bind">bind</a>
</li>
<li class="index-item method inherited">
<a href="#method_cleanupListeners">cleanupListeners</a>
</li>
<li class="index-item method inherited">
<a href="#method_clearTypes">clearTypes</a>
</li>
<li class="index-item method inherited">
<a href="#method_detach">detach</a>
</li>
<li class="index-item method inherited">
<a href="#method_detachAll">detachAll</a>
</li>
<li class="index-item method inherited">
<a href="#method_detachFrom">detachFrom</a>
</li>
<li class="index-item method inherited">
<a href="#method_detachFromConnection">detachFromConnection</a>
</li>
<li class="index-item method private inherited">
<a href="#method_fire">fire</a>
</li>
<li class="index-item method inherited">
<a href="#method_getElement">getElement</a>
</li>
<li class="index-item method inherited">
<a href="#method_getLabel">getLabel</a>
</li>
<li class="index-item method inherited">
<a href="#method_getLabelOverlay">getLabelOverlay</a>
</li>
<li class="index-item method inherited">
<a href="#method_getOverlay">getOverlay</a>
</li>
<li class="index-item method inherited">
<a href="#method_getOverlays">getOverlays</a>
</li>
<li class="index-item method inherited">
<a href="#method_getParameter">getParameter</a>
</li>
<li class="index-item method inherited">
<a href="#method_getParameters">getParameters</a>
</li>
<li class="index-item method inherited">
<a href="#method_getType">getType</a>
</li>
<li class="index-item method inherited">
<a href="#method_getUuid">getUuid</a>
</li>
<li class="index-item method inherited">
<a href="#method_hasType">hasType</a>
</li>
<li class="index-item method inherited">
<a href="#method_hideOverlay">hideOverlay</a>
</li>
<li class="index-item method inherited">
<a href="#method_hideOverlays">hideOverlays</a>
</li>
<li class="index-item method inherited">
<a href="#method_isConnectedTo">isConnectedTo</a>
</li>
<li class="index-item method inherited">
<a href="#method_isEnabled">isEnabled</a>
</li>
<li class="index-item method inherited">
<a href="#method_isFull">isFull</a>
</li>
<li class="index-item method inherited">
<a href="#method_isHover">isHover</a>
</li>
<li class="index-item method inherited">
<a href="#method_isSuspendEvents">isSuspendEvents</a>
</li>
<li class="index-item method inherited">
<a href="#method_isVisible">isVisible</a>
</li>
<li class="index-item method inherited">
<a href="#method_jsPlumbUtil.replace">jsPlumbUtil.replace</a>
</li>
<li class="index-item method inherited">
<a href="#method_reapplyTypes">reapplyTypes</a>
</li>
<li class="index-item method inherited">
<a href="#method_removeAllOverlays">removeAllOverlays</a>
</li>
<li class="index-item method inherited">
<a href="#method_removeClass">removeClass</a>
</li>
<li class="index-item method inherited">
<a href="#method_removeOverlay">removeOverlay</a>
</li>
<li class="index-item method inherited">
<a href="#method_removeOverlays">removeOverlays</a>
</li>
<li class="index-item method inherited">
<a href="#method_removeType">removeType</a>
</li>
<li class="index-item method inherited">
<a href="#method_setAnchor">setAnchor</a>
</li>
<li class="index-item method inherited">
<a href="#method_setDragAllowedWhenFull">setDragAllowedWhenFull</a>
</li>
<li class="index-item method inherited">
<a href="#method_setElement">setElement</a>
</li>
<li class="index-item method inherited">
<a href="#method_setEnabled">setEnabled</a>
</li>
<li class="index-item method inherited">
<a href="#method_setEndpoint">setEndpoint</a>
</li>
<li class="index-item method inherited">
<a href="#method_setHover">setHover</a>
</li>
<li class="index-item method inherited">
<a href="#method_setHoverPaintStyle">setHoverPaintStyle</a>
</li>
<li class="index-item method inherited">
<a href="#method_setLabel">setLabel</a>
</li>
<li class="index-item method inherited">
<a href="#method_setPaintStyle">setPaintStyle</a>
</li>
<li class="index-item method inherited">
<a href="#method_setParameter">setParameter</a>
</li>
<li class="index-item method inherited">
<a href="#method_setParameters">setParameters</a>
</li>
<li class="index-item method inherited">
<a href="#method_setSuspendEvents">setSuspendEvents</a>
</li>
<li class="index-item method inherited">
<a href="#method_setType">setType</a>
</li>
<li class="index-item method inherited">
<a href="#method_setVisible">setVisible</a>
</li>
<li class="index-item method inherited">
<a href="#method_showOverlay">showOverlay</a>
</li>
<li class="index-item method inherited">
<a href="#method_showOverlays">showOverlays</a>
</li>
<li class="index-item method inherited">
<a href="#method_toggleType">toggleType</a>
</li>
<li class="index-item method inherited">
<a href="#method_unbind">unbind</a>
</li>
<li class="index-item method inherited">
<a href="#method_updateClasses">updateClasses</a>
</li>
</ul>
</div>
<div class="index-section properties">
<h3>Properties</h3>
<ul class="index-list properties extends">
<li class="index-item property inherited">
<a href="#property_canvas">canvas</a>
</li>
<li class="index-item property inherited">
<a href="#property_connections">connections</a>
</li>
<li class="index-item property inherited">
<a href="#property_overlays">overlays</a>
</li>
<li class="index-item property inherited">
<a href="#property_scope">scope</a>
</li>
</ul>
</div>
</div>
<div id="methods" class="api-class-tabpanel">
<h2 class="off-left">Methods</h2>
<div id="method_addClass" class="method item inherited">
<h3 class="name"><code>addClass</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>class</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/JsPlumbUIComponent.html#method_addClass">jsPlumbUIComponent</a>:
<a href="../files/doc_api_uicomponent.js.html#l44"><code>doc/api/uicomponent.js:44</code></a>
</p>
</div>
<div class="description">
<p>Adds a class or some classes to the visual elements for the given component.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">class</code>
<span class="type">String</span>
<div class="param-description">
<p>The class(es) to add. The values are appended as given, meaning you can supply a space separated string of several classes if you wish.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_addOverlay" class="method item inherited">
<h3 class="name"><code>addOverlay</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>overlaySpec</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/OverlayCapableJsPlumbUIComponent.html#method_addOverlay">OverlayCapableJsPlumbUIComponent</a>:
<a href="../files/doc_api_overlaycomponent.js.html#l90"><code>doc/api/overlaycomponent.js:90</code></a>
</p>
</div>
<div class="description">
<p>Adds an Overlay to the component.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">overlaySpec</code>
<span class="type">Object</span>
<div class="param-description">
<p>Specification of the Overlay to add.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_addType" class="method item inherited">
<h3 class="name"><code>addType</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>typeId</code>
</li>
<li class="arg">
<code class="optional">[params]</code>
</li>
<li class="arg">
<code class="optional">[doNotRepaint=false]</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/JsPlumbUIComponent.html#method_addType">jsPlumbUIComponent</a>:
<a href="../files/doc_api_uicomponent.js.html#l99"><code>doc/api/uicomponent.js:99</code></a>
</p>
</div>
<div class="description">
<p>Adds a type to the component. Note this is distinct from {@link #setType}, which overrides all current types - this function just adds a type to the existing list.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">typeId</code>
<span class="type">String</span>
<div class="param-description">
<p>Id of the type to add.</p>
</div>
</li>
<li class="param">
<code class="param-name optional">[params]</code>
<span class="type">Object</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>Optional params to use when applying the type.</p>
</div>
</li>
<li class="param">
<code class="param-name optional">[doNotRepaint=false]</code>
<span class="type">Boolean</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>Tells jsPlumb not to repaint after adding the type.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_bind" class="method item inherited">
<h3 class="name"><code>bind</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>event</code>
</li>
<li class="arg">
<code>listener</code>
</li>
<li class="arg">
<code class="optional">[insertAtStart=false]</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/jsPlumbUtil.EventGenerator.html#method_bind">jsPlumbUtil.EventGenerator</a>:
<a href="../files/doc_api_util-api.js.html#l89"><code>doc/api/util-api.js:89</code></a>
</p>
</div>
<div class="description">
<p>Binds a listener to one or more events.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">event</code>
<span class="type">String | String</span>
<div class="param-description">
<p>Name(s) of the event(s) to bind to. Note that if you provide multiple event names they all are bound with the same function.</p>
</div>
</li>
<li class="param">
<code class="param-name">listener</code>
<span class="type">Function</span>
<div class="param-description">
<p>Function to execute.</p>
</div>
</li>
<li class="param">
<code class="param-name optional">[insertAtStart=false]</code>
<span class="type">Boolean</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>Whether or not to insert this listener at the start of the listener list, so it is fired before the other currently registered listeners.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_cleanupListeners" class="method item inherited">
<h3 class="name"><code>cleanupListeners</code></h3>
<span class="paren">()</span>
<div class="meta">
<p>Inherited from
<a href="../classes/jsPlumbUtil.EventGenerator.html#method_cleanupListeners">jsPlumbUtil.EventGenerator</a>:
<a href="../files/doc_api_util-api.js.html#l126"><code>doc/api/util-api.js:126</code></a>
</p>
</div>
<div class="description">
<p>Removes all listeners.</p>
</div>
</div>
<div id="method_clearTypes" class="method item inherited">
<h3 class="name"><code>clearTypes</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code class="optional">[doNotRepaint=false]</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/JsPlumbUIComponent.html#method_clearTypes">jsPlumbUIComponent</a>:
<a href="../files/doc_api_uicomponent.js.html#l79"><code>doc/api/uicomponent.js:79</code></a>
</p>
</div>
<div class="description">
<p>Clears all <code>types</code> for a given component.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name optional">[doNotRepaint=false]</code>
<span class="type">Boolean</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>Tells jsPlumb not to repaint after clearing the types.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_detach" class="method item inherited">
<h3 class="name"><code>detach</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>connection</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/Endpoint.html#method_detach">Endpoint</a>:
<a href="../files/doc_api_endpoint-api.js.html#l85"><code>doc/api/endpoint-api.js:85</code></a>
</p>
</div>
<div class="description">
<p>Detach and cleanup a connection.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">connection</code>
<span class="type"><a href="../classes/Connection.html" class="crosslink">Connection</a></span>
<div class="param-description">
</div>
</li>
</ul>
</div>
</div>
<div id="method_detachAll" class="method item inherited">
<h3 class="name"><code>detachAll</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code class="optional">[fireEvent=true]</code>
</li>
<li class="arg">
<code class="optional">[forceDetach=false]</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/Endpoint.html#method_detachAll">Endpoint</a>:
<a href="../files/doc_api_endpoint-api.js.html#l91"><code>doc/api/endpoint-api.js:91</code></a>
</p>
</div>
<div class="description">
<p>Detach all connections for this endpoint.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name optional">[fireEvent=true]</code>
<span class="type">Boolean</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>Whether or not to fire an event for each detach.</p>
</div>
</li>
<li class="param">
<code class="param-name optional">[forceDetach=false]</code>
<span class="type">Boolean</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>If true, this call will ignore any <code>beforeDetach</code> interceptors.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_detachFrom" class="method item inherited">
<h3 class="name"><code>detachFrom</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>targetEndpoint</code>
</li>
<li class="arg">
<code class="optional">[fireEvent=true]</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/Endpoint.html#method_detachFrom">Endpoint</a>:
<a href="../files/doc_api_endpoint-api.js.html#l98"><code>doc/api/endpoint-api.js:98</code></a>
</p>
</div>
<div class="description">
<p>Detach all Connections from this Endpoint to/from the given target endpoint.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">targetEndpoint</code>
<span class="type"><a href="../classes/Endpoint.html" class="crosslink">Endpoint</a></span>
<div class="param-description">
<p>Endpoint between which and this Endpoint to detach all Connections.</p>
</div>
</li>
<li class="param">
<code class="param-name optional">[fireEvent=true]</code>
<span class="type">Boolean</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>Whether or not to fire an event.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_detachFromConnection" class="method item inherited">
<h3 class="name"><code>detachFromConnection</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>connection</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/Endpoint.html#method_detachFromConnection">Endpoint</a>:
<a href="../files/doc_api_endpoint-api.js.html#l79"><code>doc/api/endpoint-api.js:79</code></a>
</p>
</div>
<div class="description">
<p>Detach from the given Connection, without cleaning up or destroying the Connection.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">connection</code>
<span class="type"><a href="../classes/Connection.html" class="crosslink">Connection</a></span>
<div class="param-description">
</div>
</li>
</ul>
</div>
</div>
<div id="method_fire" class="method item private inherited">
<h3 class="name"><code>fire</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>event</code>
</li>
<li class="arg">
<code>value</code>
</li>
<li class="arg">
<code>originalEvent</code>
</li>
</ul><span class="paren">)</span>
</div>
<span class="flag private">private</span>
<div class="meta">
<p>Inherited from
<a href="../classes/jsPlumbUtil.EventGenerator.html#method_fire">jsPlumbUtil.EventGenerator</a>:
<a href="../files/doc_api_util-api.js.html#l97"><code>doc/api/util-api.js:97</code></a>
</p>
</div>
<div class="description">
<p>Fires an update for the given event.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">event</code>
<span class="type">String</span>
<div class="param-description">
<p>Event to fire</p>
</div>
</li>
<li class="param">
<code class="param-name">value</code>
<span class="type">Object</span>
<div class="param-description">
<p>Value to pass to the event listener(s).</p>
</div>
</li>
<li class="param">
<code class="param-name">originalEvent</code>
<span class="type">Event</span>
<div class="param-description">
<p>The original event from the browser</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_getElement" class="method item inherited">
<h3 class="name"><code>getElement</code></h3>
<span class="paren">()</span>
<span class="returns-inline">
<span class="type">Element</span>
</span>
<div class="meta">
<p>Inherited from
<a href="../classes/Endpoint.html#method_getElement">Endpoint</a>:
<a href="../files/doc_api_endpoint-api.js.html#l105"><code>doc/api/endpoint-api.js:105</code></a>
</p>
</div>
<div class="description">
<p>Gets the Element to which this Endpoint belongs.</p>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">Element</span>:
<p>The DOM element this Endpoint is attached to.</p>
</div>
</div>
</div>
<div id="method_getLabel" class="method item inherited">
<h3 class="name"><code>getLabel</code></h3>
<span class="paren">()</span>
<div class="meta">
<p>Inherited from
<a href="../classes/OverlayCapableJsPlumbUIComponent.html#method_getLabel">OverlayCapableJsPlumbUIComponent</a>:
<a href="../files/doc_api_overlaycomponent.js.html#l13"><code>doc/api/overlaycomponent.js:13</code></a>
</p>
</div>
<div class="description">
<p>Returns the label text for this component (or a function if you are labelling with a function).
This does not return the overlay itself; this is a convenience method which is a pair with
<code>setLabel</code>; together they allow you to add and access a Label Overlay without having to create the
Overlay object itself. For access to the underlying label overlay that jsPlumb has created,
use <code>getLabelOverlay</code>.</p>
</div>
</div>
<div id="method_getLabelOverlay" class="method item inherited">
<h3 class="name"><code>getLabelOverlay</code></h3>
<span class="paren">()</span>
<span class="returns-inline">
<span class="type">Overlay</span>
</span>
<div class="meta">
<p>Inherited from
<a href="../classes/OverlayCapableJsPlumbUIComponent.html#method_getLabelOverlay">OverlayCapableJsPlumbUIComponent</a>:
<a href="../files/doc_api_overlaycomponent.js.html#l24"><code>doc/api/overlaycomponent.js:24</code></a>
</p>
</div>
<div class="description">
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">Overlay</span>:
<p>The underlying internal label overlay, which will exist if you specified a label on
a <code>connect</code> call, or have called <code>setLabel</code> at any stage. Otherwise it will be null.</p>
</div>
</div>
</div>
<div id="method_getOverlay" class="method item inherited">
<h3 class="name"><code>getOverlay</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>overlayId</code>
</li>
</ul><span class="paren">)</span>
</div>
<span class="returns-inline">
<span class="type">Overlay</span>
</span>
<div class="meta">
<p>Inherited from
<a href="../classes/OverlayCapableJsPlumbUIComponent.html#method_getOverlay">OverlayCapableJsPlumbUIComponent</a>:
<a href="../files/doc_api_overlaycomponent.js.html#l31"><code>doc/api/overlaycomponent.js:31</code></a>
</p>
</div>
<div class="description">
<p>Gets an overlay, by ID. Note: <strong>by ID</strong>. You would pass an 'id' parameter
in to the Overlay's constructor arguments, and then use that to retrieve it via this method.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">overlayId</code>
<span class="type">String</span>
<div class="param-description">
<p>Id of the overlay to retrieve.</p>
</div>
</li>
</ul>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">Overlay</span>:
<p>The overlay stored against the given id, null if not found.</p>
</div>
</div>
</div>
<div id="method_getOverlays" class="method item inherited">
<h3 class="name"><code>getOverlays</code></h3>
<span class="paren">()</span>
<span class="returns-inline">
<span class="type">Array</span>
</span>
<div class="meta">
<p>Inherited from
<a href="../classes/OverlayCapableJsPlumbUIComponent.html#method_getOverlays">OverlayCapableJsPlumbUIComponent</a>:
<a href="../files/doc_api_overlaycomponent.js.html#l39"><code>doc/api/overlaycomponent.js:39</code></a>
</p>
</div>
<div class="description">
<p>Gets all the overlays for this component.</p>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">Array</span>:
<p>List of the component's overlays.</p>
</div>
</div>
</div>
<div id="method_getParameter" class="method item inherited">
<h3 class="name"><code>getParameter</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>name</code>
</li>
</ul><span class="paren">)</span>
</div>
<span class="returns-inline">
<span class="type">Object</span>
</span>
<div class="meta">
<p>Inherited from
<a href="../classes/JsPlumbUIComponent.html#method_getParameter">jsPlumbUIComponent</a>:
<a href="../files/doc_api_uicomponent.js.html#l16"><code>doc/api/uicomponent.js:16</code></a>
</p>
</div>
<div class="description">
<p>Gets a parameter from the component</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">name</code>
<span class="type">String</span>
<div class="param-description">
<p>Name of the parameter to get</p>
</div>
</li>
</ul>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">Object</span>:
<p>The given parameter's value, null if not found.</p>
</div>
</div>
</div>
<div id="method_getParameters" class="method item inherited">
<h3 class="name"><code>getParameters</code></h3>
<span class="paren">()</span>
<span class="returns-inline">
<span class="type">Object</span>
</span>
<div class="meta">
<p>Inherited from
<a href="../classes/JsPlumbUIComponent.html#method_getParameters">jsPlumbUIComponent</a>:
<a href="../files/doc_api_uicomponent.js.html#l30"><code>doc/api/uicomponent.js:30</code></a>
</p>
</div>
<div class="description">
<p>Gets all parameters from the component. Note that you are given the actual parameters
object, not a copy, so you can alter their values directly, and if you hold the reference
to the parameters object you could cause a memory leak.</p>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">Object</span>:
<p>All of the component's parameters.</p>
</div>
</div>
</div>
<div id="method_getType" class="method item inherited">
<h3 class="name"><code>getType</code></h3>
<span class="paren">()</span>
<span class="returns-inline">
<span class="type">String</span>
</span>
<div class="meta">
<p>Inherited from
<a href="../classes/JsPlumbUIComponent.html#method_getType">jsPlumbUIComponent</a>:
<a href="../files/doc_api_uicomponent.js.html#l73"><code>doc/api/uicomponent.js:73</code></a>
</p>
</div>
<div class="description">
<p>Gets the current type - or types - for this component.</p>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">String</span>:
<p>The current list of types, empty if none registered.</p>
</div>
</div>
</div>
<div id="method_getUuid" class="method item inherited">
<h3 class="name"><code>getUuid</code></h3>
<span class="paren">()</span>
<span class="returns-inline">
<span class="type">String</span>
</span>
<div class="meta">
<p>Inherited from
<a href="../classes/Endpoint.html#method_getUuid">Endpoint</a>:
<a href="../files/doc_api_endpoint-api.js.html#l111"><code>doc/api/endpoint-api.js:111</code></a>
</p>
</div>
<div class="description">
<p>Gets the Endpoint's UUID.</p>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">String</span>:
<p>The UUID for this Endpoint, if there is one. Otherwise returns null.</p>
</div>
</div>
</div>
<div id="method_hasType" class="method item inherited">
<h3 class="name"><code>hasType</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>typeId</code>
</li>
</ul><span class="paren">)</span>
</div>
<span class="returns-inline">
<span class="type">Boolean</span>
</span>
<div class="meta">
<p>Inherited from
<a href="../classes/JsPlumbUIComponent.html#method_hasType">jsPlumbUIComponent</a>:
<a href="../files/doc_api_uicomponent.js.html#l92"><code>doc/api/uicomponent.js:92</code></a>
</p>
</div>
<div class="description">
<p>Returns whether or not the component currently has the given type.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">typeId</code>
<span class="type">String</span>
<div class="param-description">
<p>Id of the type to check for</p>
</div>
</li>
</ul>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">Boolean</span>:
<p>True if the component has the type, false if not.</p>
</div>
</div>
</div>
<div id="method_hideOverlay" class="method item inherited">
<h3 class="name"><code>hideOverlay</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>overlayId</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/OverlayCapableJsPlumbUIComponent.html#method_hideOverlay">OverlayCapableJsPlumbUIComponent</a>:
<a href="../files/doc_api_overlaycomponent.js.html#l45"><code>doc/api/overlaycomponent.js:45</code></a>
</p>
</div>
<div class="description">
<p>Hides the overlay specified by the given id.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">overlayId</code>
<span class="type">String</span>
<div class="param-description">
<p>Id of the overlay to hide.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_hideOverlays" class="method item inherited">
<h3 class="name"><code>hideOverlays</code></h3>
<span class="paren">()</span>
<div class="meta">
<p>Inherited from
<a href="../classes/OverlayCapableJsPlumbUIComponent.html#method_hideOverlays">OverlayCapableJsPlumbUIComponent</a>:
<a href="../files/doc_api_overlaycomponent.js.html#l51"><code>doc/api/overlaycomponent.js:51</code></a>
</p>
</div>
<div class="description">
<p>Hides all Overlays for this component.</p>
</div>
</div>
<div id="method_isConnectedTo" class="method item inherited">
<h3 class="name"><code>isConnectedTo</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>endpoint</code>
</li>
</ul><span class="paren">)</span>
</div>
<span class="returns-inline">
<span class="type">Boolean</span>
</span>
<div class="meta">
<p>Inherited from
<a href="../classes/Endpoint.html#method_isConnectedTo">Endpoint</a>:
<a href="../files/doc_api_endpoint-api.js.html#l132"><code>doc/api/endpoint-api.js:132</code></a>
</p>
</div>
<div class="description">
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">endpoint</code>
<span class="type"><a href="../classes/Endpoint.html" class="crosslink">Endpoint</a></span>
<div class="param-description">
</div>
</li>
</ul>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">Boolean</span>:
<p>Whether or not this Endpoint is connected to the given Endpoint.</p>
</div>
</div>
</div>
<div id="method_isEnabled" class="method item inherited">
<h3 class="name"><code>isEnabled</code></h3>
<span class="paren">()</span>
<span class="returns-inline">
<span class="type">Boolean</span>
</span>
<div class="meta">
<p>Inherited from
<a href="../classes/Endpoint.html#method_isEnabled">Endpoint</a>:
<a href="../files/doc_api_endpoint-api.js.html#l117"><code>doc/api/endpoint-api.js:117</code></a>
</p>
</div>
<div class="description">
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">Boolean</span>:
<p>True if the Endpoint is enabled for drag/drop connections enabled, false otherwise.</p>
</div>
</div>
</div>
<div id="method_isFull" class="method item inherited">
<h3 class="name"><code>isFull</code></h3>
<span class="paren">()</span>
<span class="returns-inline">
<span class="type">Boolean</span>
</span>
<div class="meta">
<p>Inherited from
<a href="../classes/Endpoint.html#method_isFull">Endpoint</a>:
<a href="../files/doc_api_endpoint-api.js.html#l122"><code>doc/api/endpoint-api.js:122</code></a>
</p>
</div>
<div class="description">
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">Boolean</span>:
<p>True if the Endpoint cannot accept any more Connections, false otherwise.</p>
</div>
</div>
</div>
<div id="method_isHover" class="method item inherited">
<h3 class="name"><code>isHover</code></h3>
<span class="paren">()</span>
<span class="returns-inline">
<span class="type">Boolean</span>
</span>
<div class="meta">
<p>Inherited from
<a href="../classes/JsPlumbUIComponent.html#method_isHover">jsPlumbUIComponent</a>:
<a href="../files/doc_api_uicomponent.js.html#l122"><code>doc/api/uicomponent.js:122</code></a>
</p>
</div>
<div class="description">
<p>Returns whether or not the object is currently in hover state</p>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">Boolean</span>:
<p>True if in hover state, false if not.</p>
</div>
</div>
</div>
<div id="method_isSuspendEvents" class="method item inherited">
<h3 class="name"><code>isSuspendEvents</code></h3>
<span class="paren">()</span>
<span class="returns-inline">
<span class="type">Boolean</span>
</span>
<div class="meta">
<p>Inherited from
<a href="../classes/jsPlumbUtil.EventGenerator.html#method_isSuspendEvents">jsPlumbUtil.EventGenerator</a>:
<a href="../files/doc_api_util-api.js.html#l121"><code>doc/api/util-api.js:121</code></a>
</p>
</div>
<div class="description">
<p>Checks whether or not events are currently suspended.</p>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">Boolean</span>:
<p>True if events are suspended, false otherwise.</p>
</div>
</div>
</div>
<div id="method_isVisible" class="method item inherited">
<h3 class="name"><code>isVisible</code></h3>
<span class="paren">()</span>
<span class="returns-inline">
<span class="type">Boolean</span>
</span>
<div class="meta">
<p>Inherited from
<a href="../classes/Endpoint.html#method_isVisible">Endpoint</a>:
<a href="../files/doc_api_endpoint-api.js.html#l127"><code>doc/api/endpoint-api.js:127</code></a>
</p>
</div>
<div class="description">
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">Boolean</span>:
<p>Whether or not the Endpoint is currently visible.</p>
</div>
</div>
</div>
<div id="method_jsPlumbUtil.replace" class="method item inherited">
<h3 class="name"><code>jsPlumbUtil.replace</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>inObj</code>
</li>
<li class="arg">
<code>path</code>
</li>
<li class="arg">
<code>value</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/jsPlumbUtil.EventGenerator.html#method_jsPlumbUtil.replace">jsPlumbUtil.EventGenerator</a>:
<a href="../files/doc_api_util-api.js.html#l131"><code>doc/api/util-api.js:131</code></a>
</p>
</div>
<div class="description">
<p>Replaces values inside some JS object according to a given path spec. A path spec is a string in dotted notation,
with each component optionally declaring an array index. Some examples are:</p>
<p>foo.bar
foo.baz[2]
foo.qux[3].baz[3].shwee</p>
<p>The function fails gracefully if the path identifies a non-existent object.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">inObj</code>
<span class="type">Object</span>
<div class="param-description">
<p>Object to perform replacements inside.</p>
</div>
</li>
<li class="param">
<code class="param-name">path</code>
<span class="type">String</span>
<div class="param-description">
<p>Path to use for replacements</p>
</div>
</li>
<li class="param">
<code class="param-name">value</code>
<span class="type">Object</span>
<div class="param-description">
<p>Value to set.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_reapplyTypes" class="method item inherited">
<h3 class="name"><code>reapplyTypes</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code class="optional">[params]</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/JsPlumbUIComponent.html#method_reapplyTypes">jsPlumbUIComponent</a>:
<a href="../files/doc_api_uicomponent.js.html#l85"><code>doc/api/uicomponent.js:85</code></a>
</p>
</div>
<div class="description">
<p>Reapplies the current list of types with the given (optional) parameters. See the
jsPlumb documentation for a full discussion of types.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name optional">[params]</code>
<span class="type">Object</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>Optional params to use when reapplying types.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_removeAllOverlays" class="method item inherited">
<h3 class="name"><code>removeAllOverlays</code></h3>
<span class="paren">()</span>
<div class="meta">
<p>Inherited from
<a href="../classes/OverlayCapableJsPlumbUIComponent.html#method_removeAllOverlays">OverlayCapableJsPlumbUIComponent</a>:
<a href="../files/doc_api_overlaycomponent.js.html#l67"><code>doc/api/overlaycomponent.js:67</code></a>
</p>
</div>
<div class="description">
<p>Removes all overlays from the component, and then repaints.</p>
</div>
</div>
<div id="method_removeClass" class="method item inherited">
<h3 class="name"><code>removeClass</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>class</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/JsPlumbUIComponent.html#method_removeClass">jsPlumbUIComponent</a>:
<a href="../files/doc_api_uicomponent.js.html#l50"><code>doc/api/uicomponent.js:50</code></a>
</p>
</div>
<div class="description">
<p>Removes a class or some classes from the visual elements for the given component. You can supply a space separated string of several classes if you wish.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">class</code>
<span class="type">String</span>
<div class="param-description">
<p>The class(es) to remove.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_removeOverlay" class="method item inherited">
<h3 class="name"><code>removeOverlay</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>overlayId</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/OverlayCapableJsPlumbUIComponent.html#method_removeOverlay">OverlayCapableJsPlumbUIComponent</a>:
<a href="../files/doc_api_overlaycomponent.js.html#l72"><code>doc/api/overlaycomponent.js:72</code></a>
</p>
</div>
<div class="description">
<p>Removes an overlay by ID. Note: by ID. this is a string you set in the overlay spec.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">overlayId</code>
<span class="type">String</span>
<div class="param-description">
<p>Id of the overlay to remove.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_removeOverlays" class="method item inherited">
<h3 class="name"><code>removeOverlays</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>overlayIds</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/OverlayCapableJsPlumbUIComponent.html#method_removeOverlays">OverlayCapableJsPlumbUIComponent</a>:
<a href="../files/doc_api_overlaycomponent.js.html#l78"><code>doc/api/overlaycomponent.js:78</code></a>
</p>
</div>
<div class="description">
<p>Removes a set of overlays by ID. Note: <strong>by ID</strong>. This is a string you set in the overlay spec.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">overlayIds</code>
<span class="type">...String</span>
<div class="param-description">
<p>This function takes an arbitrary number of arguments, each of which is a single overlay id.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_removeType" class="method item inherited">
<h3 class="name"><code>removeType</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>typeId</code>
</li>
<li class="arg">
<code class="optional">[doNotRepaint=false]</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/JsPlumbUIComponent.html#method_removeType">jsPlumbUIComponent</a>:
<a href="../files/doc_api_uicomponent.js.html#l107"><code>doc/api/uicomponent.js:107</code></a>
</p>
</div>
<div class="description">
<p>Removes the given type from the component.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">typeId</code>
<span class="type">String</span>
<div class="param-description">
<p>Id of the type to remove.</p>
</div>
</li>
<li class="param">
<code class="param-name optional">[doNotRepaint=false]</code>
<span class="type">Boolean</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>Tells jsPlumb not to repaint after removing the type.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_setAnchor" class="method item inherited">
<h3 class="name"><code>setAnchor</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>anchorParams</code>
</li>
<li class="arg">
<code>[doNotRepaint</code>
</li>
</ul><span class="paren">)</span>
</div>
<span class="returns-inline">
<span class="type"><a href="../classes/Endpoint.html" class="crosslink">Endpoint</a></span>
</span>
<div class="meta">
<p>Inherited from
<a href="../classes/Endpoint.html#method_setAnchor">Endpoint</a>:
<a href="../files/doc_api_endpoint-api.js.html#l63"><code>doc/api/endpoint-api.js:63</code></a>
</p>
</div>
<div class="description">
<p>Sets the anchor to use for this Endpoint. <code>anchorParams</code> is an object in the same
form that you would pass as the <code>anchor</code> parameter to <code>jsPlumb.addEndpoint</code> or <code>jsPlumb.connect</code>.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">anchorParams</code>
<span class="type">Object</span>
<div class="param-description">
<p>Parameters for the anchor</p>
</div>
</li>
<li class="param">
<code class="param-name">[doNotRepaint</code>
<span class="type">Boolean</span>
<div class="param-description">
<p>= false] Instructs jsPlumb to not repaint after setting the new anchor.</p>
</div>
</li>
</ul>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type"><a href="../classes/Endpoint.html" class="crosslink">Endpoint</a></span>:
<p>The Endpoint.</p>
</div>
</div>
</div>
<div id="method_setDragAllowedWhenFull" class="method item inherited">
<h3 class="name"><code>setDragAllowedWhenFull</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>allowed</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/Endpoint.html#method_setDragAllowedWhenFull">Endpoint</a>:
<a href="../files/doc_api_endpoint-api.js.html#l138"><code>doc/api/endpoint-api.js:138</code></a>
</p>
</div>
<div class="description">
<p>Sets whether or not connections can be dragged from this Endpoint once it is full. You would use this in a UI in
which you're going to provide some other way of breaking connections, if you need to break them at all. This property
is by default true; use it in conjunction with the <code>reattach</code> option on a connect call.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">allowed</code>
<span class="type">Boolean</span>
<div class="param-description">
<p>Whether drag is allowed or not when the Endpoint is full.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_setElement" class="method item inherited">
<h3 class="name"><code>setElement</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>el</code>
</li>
<li class="arg">
<code class="optional">[container]</code>
</li>
</ul><span class="paren">)</span>
</div>
<span class="returns-inline">
<span class="type"><a href="../classes/Endpoint.html" class="crosslink">Endpoint</a></span>
</span>
<div class="meta">
<p>Inherited from
<a href="../classes/Endpoint.html#method_setElement">Endpoint</a>:
<a href="../files/doc_api_endpoint-api.js.html#l146"><code>doc/api/endpoint-api.js:146</code></a>
</p>
</div>
<div class="description">
<p>Sets the DOM element this Endpoint is attached to.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">el</code>
<span class="type">String | Selector | Element</span>
<div class="param-description">
<p>Element id, DOM element or selector identifying the new element</p>
</div>
</li>
<li class="param">
<code class="param-name optional">[container]</code>
<span class="type">String | Selector | Element</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>Specifies the actual parent element to use as the parent for this Endpoint's visual representation. See the jsPlumb documentation for a discussion about this.</p>
</div>
</li>
</ul>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type"><a href="../classes/Endpoint.html" class="crosslink">Endpoint</a></span>:
<p>The Endpoint.</p>
</div>
</div>
</div>
<div id="method_setEnabled" class="method item inherited">
<h3 class="name"><code>setEnabled</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>enabled</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/Endpoint.html#method_setEnabled">Endpoint</a>:
<a href="../files/doc_api_endpoint-api.js.html#l154"><code>doc/api/endpoint-api.js:154</code></a>
</p>
</div>
<div class="description">
<p>Sets whether or not the Endpoint is enabled for drag/drop connections.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">enabled</code>
<span class="type">Boolean</span>
<div class="param-description">
<p>Whether or not the Endpoint is enabled.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_setEndpoint" class="method item inherited">
<h3 class="name"><code>setEndpoint</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>ep</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/Endpoint.html#method_setEndpoint">Endpoint</a>:
<a href="../files/doc_api_endpoint-api.js.html#l72"><code>doc/api/endpoint-api.js:72</code></a>
</p>
</div>
<div class="description">
<p>Sets the underlying visual representation to use for this Endpoint. <code>ep</code> is an object in the same
form that you would pass as the <code>endpoint</code> parameter to <code>jsPlumb.addEndpoint</code> or <code>jsPlumb.makeSource</code>.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">ep</code>
<span class="type">Object</span>
<div class="param-description">
<p>Parameters for the endpoint</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_setHover" class="method item inherited">
<h3 class="name"><code>setHover</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>hover</code>
</li>
<li class="arg">
<code class="optional">[ignoreAttachedElements=false]</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/JsPlumbUIComponent.html#method_setHover">jsPlumbUIComponent</a>:
<a href="../files/doc_api_uicomponent.js.html#l141"><code>doc/api/uicomponent.js:141</code></a>
</p>
</div>
<div class="description">
<p>Sets/unsets the hover state of this component.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">hover</code>
<span class="type">Boolean</span>
<div class="param-description">
<p>Hover state boolean</p>
</div>
</li>
<li class="param">
<code class="param-name optional">[ignoreAttachedElements=false]</code>
<span class="type">Boolean</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>If true, does not notify any attached elements of the change in hover state. Used mostly by jsPlumb internally, to avoid infinite loops.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_setHoverPaintStyle" class="method item inherited">
<h3 class="name"><code>setHoverPaintStyle</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>style</code>
</li>
<li class="arg">
<code class="optional">[doNotRepaint]</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/JsPlumbUIComponent.html#method_setHoverPaintStyle">jsPlumbUIComponent</a>:
<a href="../files/doc_api_uicomponent.js.html#l128"><code>doc/api/uicomponent.js:128</code></a>
</p>
</div>
<div class="description">
<p>Sets the paint style to use when the mouse is hovering over the component. This is null by default.
The hover paint style is applied as extensions to the paintStyle; it does not entirely replace
it. This is because people will most likely want to change just one thing when hovering, say the
color for example, but leave the rest of the appearance the same.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">style</code>
<span class="type">Object</span>
<div class="param-description">
<p>Style to use when the mouse is hovering. The allowed values in this object originally come from valid values in an HTML5 canvas.</p>
</div>
<ul class="params-list">
<li class="param">
<code class="param-name optional">[fillStyle]</code>
<span class="type">String</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>Fill style, in valid CSS format (a hex code, name, or rgb value). Note that setting a <code>fillStyle</code> on a Connector will cause the browser to fill the connector's path - probably not what you want.</p>
</div>
</li>
<li class="param">
<code class="param-name optional">[strokeStyle]</code>
<span class="type">String</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>Stroke style, in valid CSS format (a hex code, name, or rgb value). You can use <code>strokeStyle</code> on Endpoints to define a border.</p>
</div>
</li>
<li class="param">
<code class="param-name optional">[lineWidth]</code>
<span class="type">Integer</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>Width of the stroked line (for Connectors this is the Connector itself; for Endpoints it is the outline)</p>
</div>
</li>
</ul>
</li>
<li class="param">
<code class="param-name optional">[doNotRepaint]</code>
<span class="type">Boolean</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>If true, the component will not be repainted. Useful when setting things up initially.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_setLabel" class="method item inherited">
<h3 class="name"><code>setLabel</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>label</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/OverlayCapableJsPlumbUIComponent.html#method_setLabel">OverlayCapableJsPlumbUIComponent</a>:
<a href="../files/doc_api_overlaycomponent.js.html#l84"><code>doc/api/overlaycomponent.js:84</code></a>
</p>
</div>
<div class="description">
<p>Sets the component's label.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">label</code>
<span class="type">String | Function | Object</span>
<div class="param-description">
<p>Label to set. May be a String, a Function that returns a String, or a params object containing { "label", "labelStyle", "location", "cssClass" }. Note that this uses innerHTML on the label div, so keep that in mind if you need escaped HTML.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_setPaintStyle" class="method item inherited">
<h3 class="name"><code>setPaintStyle</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>style</code>
</li>
<li class="arg">
<code class="optional">[doNotRepaint=false]</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/JsPlumbUIComponent.html#method_setPaintStyle">jsPlumbUIComponent</a>:
<a href="../files/doc_api_uicomponent.js.html#l148"><code>doc/api/uicomponent.js:148</code></a>
</p>
</div>
<div class="description">
<p>Sets the component's paint style and then repaints the component.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">style</code>
<span class="type">Object</span>
<div class="param-description">
<p>Style to use. The allowed values in this object originally come from valid values in an HTML5 canvas.</p>
</div>
<ul class="params-list">
<li class="param">
<code class="param-name optional">[fillStyle]</code>
<span class="type">String</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>Fill style, in valid CSS format (a hex code, name, or rgb value). Note that setting a <code>fillStyle</code> on a Connector will cause the browser to fill the connector's path - probably not what you want.</p>
</div>
</li>
<li class="param">
<code class="param-name optional">[strokeStyle]</code>
<span class="type">String</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>Stroke style, in valid CSS format (a hex code, name, or rgb value). You can use <code>strokeStyle</code> on Endpoints to define a border.</p>
</div>
</li>
<li class="param">
<code class="param-name optional">[lineWidth]</code>
<span class="type">Integer</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>Width of the stroked line (for Connectors this is the Connector itself; for Endpoints it is the outline)</p>
</div>
</li>
</ul>
</li>
<li class="param">
<code class="param-name optional">[doNotRepaint=false]</code>
<span class="type">Boolean</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>If true, the component will not be repainted.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_setParameter" class="method item inherited">
<h3 class="name"><code>setParameter</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>name</code>
</li>
<li class="arg">
<code>value</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/JsPlumbUIComponent.html#method_setParameter">jsPlumbUIComponent</a>:
<a href="../files/doc_api_uicomponent.js.html#l23"><code>doc/api/uicomponent.js:23</code></a>
</p>
</div>
<div class="description">
<p>Sets a parameter on the component</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">name</code>
<span class="type">String</span>
<div class="param-description">
<p>Name of the parameter to set</p>
</div>
</li>
<li class="param">
<code class="param-name">value</code>
<span class="type">Object</span>
<div class="param-description">
<p>Value to set</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_setParameters" class="method item inherited">
<h3 class="name"><code>setParameters</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>params</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/JsPlumbUIComponent.html#method_setParameters">jsPlumbUIComponent</a>:
<a href="../files/doc_api_uicomponent.js.html#l38"><code>doc/api/uicomponent.js:38</code></a>
</p>
</div>
<div class="description">
<p>Sets all parameters on the component.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">params</code>
<span class="type">Object</span>
<div class="param-description">
<p>Parameters to set.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_setSuspendEvents" class="method item inherited">
<h3 class="name"><code>setSuspendEvents</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>val</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/jsPlumbUtil.EventGenerator.html#method_setSuspendEvents">jsPlumbUtil.EventGenerator</a>:
<a href="../files/doc_api_util-api.js.html#l116"><code>doc/api/util-api.js:116</code></a>
</p>
</div>
<div class="description">
<p>Sets whether or not events are suspended.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">val</code>
<span class="type">Boolean</span>
<div class="param-description">
<p>Whether or not to suspend events.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_setType" class="method item inherited">
<h3 class="name"><code>setType</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>typeId</code>
</li>
<li class="arg">
<code class="optional">[params]</code>
</li>
<li class="arg">
<code class="optional">[doNotRepaint=false]</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/JsPlumbUIComponent.html#method_setType">jsPlumbUIComponent</a>:
<a href="../files/doc_api_uicomponent.js.html#l64"><code>doc/api/uicomponent.js:64</code></a>
</p>
</div>
<div class="description">
<p>This function sets a <code>type</code> for the given component. It replaces all existing types. For a full discussion of the concept
of types, see the jsPlumb documentation.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">typeId</code>
<span class="type">String</span>
<div class="param-description">
<p>Id of the type to set.</p>
</div>
</li>
<li class="param">
<code class="param-name optional">[params]</code>
<span class="type">Object</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>Optional parameter object to expand.</p>
</div>
</li>
<li class="param">
<code class="param-name optional">[doNotRepaint=false]</code>
<span class="type">Boolean</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>Tells jsPlumb not to repaint after setting the type.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_setVisible" class="method item inherited">
<h3 class="name"><code>setVisible</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>visible</code>
</li>
<li class="arg">
<code class="optional">[doNotChangeConnections=false]</code>
</li>
<li class="arg">
<code class="optional">[doNotNotifyOtherEndpoint=false]</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/Endpoint.html#method_setVisible">Endpoint</a>:
<a href="../files/doc_api_endpoint-api.js.html#l160"><code>doc/api/endpoint-api.js:160</code></a>
</p>
</div>
<div class="description">
<p>Sets whether or not the Endpoint is currently visible.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">visible</code>
<span class="type">Boolean</span>
<div class="param-description">
<p>Whether or not the Endpoint should be visible.</p>
</div>
</li>
<li class="param">
<code class="param-name optional">[doNotChangeConnections=false]</code>
<span class="type">Boolean</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>Instructs jsPlumb to not pass the visible state on to any attached Connections.</p>
</div>
</li>
<li class="param">
<code class="param-name optional">[doNotNotifyOtherEndpoint=false]</code>
<span class="type">Boolean</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>Instructs jsPlumb to not pass the visible state on to Endpoints at the other end of any attached Connections.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_showOverlay" class="method item inherited">
<h3 class="name"><code>showOverlay</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>overlayId</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/OverlayCapableJsPlumbUIComponent.html#method_showOverlay">OverlayCapableJsPlumbUIComponent</a>:
<a href="../files/doc_api_overlaycomponent.js.html#l57"><code>doc/api/overlaycomponent.js:57</code></a>
</p>
</div>
<div class="description">
<p>Shows the overlay specified by the given id.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">overlayId</code>
<span class="type">String</span>
<div class="param-description">
<p>Id of the overlay to show.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_showOverlays" class="method item inherited">
<h3 class="name"><code>showOverlays</code></h3>
<span class="paren">()</span>
<div class="meta">
<p>Inherited from
<a href="../classes/OverlayCapableJsPlumbUIComponent.html#method_showOverlays">OverlayCapableJsPlumbUIComponent</a>:
<a href="../files/doc_api_overlaycomponent.js.html#l63"><code>doc/api/overlaycomponent.js:63</code></a>
</p>
</div>
<div class="description">
<p>Shows all Overlays for this component.</p>
</div>
</div>
<div id="method_toggleType" class="method item inherited">
<h3 class="name"><code>toggleType</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>typeId</code>
</li>
<li class="arg">
<code class="optional">[params]</code>
</li>
<li class="arg">
<code class="optional">[doNotRepaint=false]</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/JsPlumbUIComponent.html#method_toggleType">jsPlumbUIComponent</a>:
<a href="../files/doc_api_uicomponent.js.html#l114"><code>doc/api/uicomponent.js:114</code></a>
</p>
</div>
<div class="description">
<p>Toggles the given type on the component.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">typeId</code>
<span class="type">String</span>
<div class="param-description">
<p>Id of the type to toggle.</p>
</div>
</li>
<li class="param">
<code class="param-name optional">[params]</code>
<span class="type">Object</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>Optional params to use if the type is not currently set and jsPlumb applies it.</p>
</div>
</li>
<li class="param">
<code class="param-name optional">[doNotRepaint=false]</code>
<span class="type">Boolean</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>Tells jsPlumb not to repaint after toggling the type.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_unbind" class="method item inherited">
<h3 class="name"><code>unbind</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code class="optional">[eventOrListener]</code>
</li>
<li class="arg">
<code class="optional">[listener]</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/jsPlumbUtil.EventGenerator.html#method_unbind">jsPlumbUtil.EventGenerator</a>:
<a href="../files/doc_api_util-api.js.html#l106"><code>doc/api/util-api.js:106</code></a>
</p>
</div>
<div class="description">
<p>Clears either all listeners, or listeners for some specific event, or just some listener. You can call this method
with zero, one or two arguments: with zero arguments, all listeners are cleared. With one argument that is a string, all listeners for
the specified event type are cleared. With one argument that is a function, it is removed from the appropriate event list.
With two arguments, the first is an event type, and the second is a function to be unbound. In fact this is perhaps unnecessary
given that you can unbind a function just by passing it.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name optional">[eventOrListener]</code>
<span class="type">String | Function</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>If a string, constrains the clear to just listeners for the event identified by the string. If a Function, unbinds this function wherever it may have been bound.</p>
</div>
</li>
<li class="param">
<code class="param-name optional">[listener]</code>
<span class="type">Function</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
<p>If provided, removes just this listener for the given event.</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_updateClasses" class="method item inherited">
<h3 class="name"><code>updateClasses</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code class="optional">[classesToAdd]</code>
</li>
<li class="arg">
<code class="optional">[classesToRemove]</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/JsPlumbUIComponent.html#method_updateClasses">jsPlumbUIComponent</a>:
<a href="../files/doc_api_uicomponent.js.html#l56"><code>doc/api/uicomponent.js:56</code></a>
</p>
</div>
<div class="description">
<p>Adds/removes classes at the same time, which reduces the number of reflows that occur in the page. Either parameter
may be null but of course if you pass only a single parameter to this method then it will be taken to be classesToAdd.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name optional">[classesToAdd]</code>
<span class="type">String | String</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
</div>
</li>
<li class="param">
<code class="param-name optional">[classesToRemove]</code>
<span class="type">String | String</span>
<span class="flag optional" title="This parameter is optional.">optional</span>
<div class="param-description">
</div>
</li>
</ul>
</div>
</div>
</div>
<div id="properties" class="api-class-tabpanel">
<h2 class="off-left">Properties</h2>
<div id="property_canvas" class="property item inherited">
<h3 class="name"><code>canvas</code></h3>
<span class="type">Element</span>
<div class="meta">
<p>Inherited from
<a href="../classes/Endpoint.html#property_canvas">Endpoint</a>:
<a href="../files/doc_api_endpoint-api.js.html#l45"><code>doc/api/endpoint-api.js:45</code></a>
</p>
</div>
<div class="description">
<p>The Endpoint's drawing area</p>
</div>
</div>
<div id="property_connections" class="property item inherited">
<h3 class="name"><code>connections</code></h3>
<span class="type">Array</span>
<div class="meta">
<p>Inherited from
<a href="../classes/Endpoint.html#property_connections">Endpoint</a>:
<a href="../files/doc_api_endpoint-api.js.html#l51"><code>doc/api/endpoint-api.js:51</code></a>
</p>
</div>
<div class="description">
<p>List of Connections for the Endpoint.</p>
</div>
</div>
<div id="property_overlays" class="property item inherited">
<h3 class="name"><code>overlays</code></h3>
<span class="type">ListOverlay</span>
<div class="meta">
<p>Inherited from
<a href="../classes/OverlayCapableJsPlumbUIComponent.html#property_overlays">OverlayCapableJsPlumbUIComponent</a>:
<a href="../files/doc_api_overlaycomponent.js.html#l7"><code>doc/api/overlaycomponent.js:7</code></a>
</p>
</div>
<div class="description">
<p>List of Overlays for this component.</p>
</div>
</div>
<div id="property_scope" class="property item inherited">
<h3 class="name"><code>scope</code></h3>
<span class="type">Array | String</span>
<div class="meta">
<p>Inherited from
<a href="../classes/Endpoint.html#property_scope">Endpoint</a>:
<a href="../files/doc_api_endpoint-api.js.html#l57"><code>doc/api/endpoint-api.js:57</code></a>
</p>
</div>
<div class="description">
<p>Scope descriptor for the Endpoint.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<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-49979015-1', 'auto');
ga('send', 'pageview');
</script>
<script src="../assets/vendor/prettify/prettify-min.js"></script>
<script>prettyPrint();</script>
<script src="../assets/js/yui-prettify.js"></script>
<script src="../assets/../api.js"></script>
<script src="../assets/js/api-filter.js"></script>
<script src="../assets/js/api-list.js"></script>
<script src="../assets/js/api-search.js"></script>
<script src="../assets/js/apidocs.js"></script>
</body>
</html>
|
common/build/Help/UGens/Multichannel/Panners/PanAz.html | danstowell/SuperCute | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Style-Type" content="text/css">
<title></title>
<meta name="Generator" content="Cocoa HTML Writer">
<meta name="CocoaVersion" content="824.44">
<style type="text/css">
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 18.0px Helvetica}
p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 9.0px Monaco; min-height: 12.0px}
p.p3 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica}
p.p4 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica; min-height: 14.0px}
p.p5 {margin: 0.0px 0.0px 0.0px 0.0px; font: 9.0px Monaco; color: #902a19}
p.p6 {margin: 0.0px 0.0px 0.0px 0.0px; font: 9.0px Monaco}
p.p7 {margin: 0.0px 0.0px 0.0px 0.0px; font: 9.0px Monaco; color: #091fb1}
span.s1 {color: #091fb1}
span.s2 {color: #000000}
span.s3 {color: #902a19}
span.s4 {color: #456c20}
span.Apple-tab-span {white-space:pre}
</style>
</head>
<body>
<p class="p1"><b>PanAz<span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span>azimuth panner</b></p>
<p class="p2"><br></p>
<p class="p3"><b>PanAz.ar(numChans, in, pos, level, width, orientation)</b></p>
<p class="p2"><br></p>
<p class="p3">Multichannel equal power panner.</p>
<p class="p4"><br></p>
<p class="p3"><b>numChans</b> - number of output channels</p>
<p class="p3"><b>in</b> - input signal</p>
<p class="p3"><b>pos</b> - pan position. Channels are evenly spaced over a cyclic period of 2.0 with 0.0 equal to the position directly in front, 2.0/numChans a clockwise shift 1/numChans of the way around the ring, 4.0/numChans equal to a shift of 2/numChans, etc. Thus all channels will be cyclically panned through if a sawtooth wave from -1 to +1 is used to modulate the pos. <b>N.B.</b> Front may or may not correspond to a speaker depending on the setting of the <b>orientation</b> arg, see below.</p>
<p class="p3"><b>level</b> - a control rate level input.</p>
<p class="p3"><b>width</b> - The width of the panning envelope. Nominally this is 2.0 which pans between pairs</p>
<p class="p3">of adjacent speakers. Width values greater than two will spread the pan over greater numbers</p>
<p class="p3">of speakers. Width values less than one will leave silent gaps between speakers.</p>
<p class="p3"><b>orientation</b> - Should be zero if the front is a vertex of the polygon. The first speaker will be directly in front. Should be 0.5 if the front bisects a side of the polygon. Then the first speaker will be the one left of center. Default is 0.5.</p>
<p class="p2"><br></p>
<p class="p2"><br></p>
<p class="p5">// five channel circular panning</p>
<p class="p6"><span class="s1">Server</span>.internal.boot;</p>
<p class="p6">(</p>
<p class="p6">{</p>
<p class="p6"><span class="Apple-tab-span"> </span><span class="s1">PanAz</span>.ar(</p>
<p class="p5"><span class="s2"><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span>5, <span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span></span>// numChans</p>
<p class="p7"><span class="s2"><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span></span>ClipNoise<span class="s2">.ar, <span class="Apple-tab-span"> </span></span><span class="s3">// in</span></p>
<p class="p6"><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="s1">LFSaw</span>.kr(<span class="s1">MouseX</span>.kr(0.2, 8, <span class="s4">'exponential'</span>)), <span class="s3">// pos</span></p>
<p class="p6"><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span>0.5,<span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="s3">// level</span></p>
<p class="p5"><span class="s2"><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span>3<span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span></span>// width</p>
<p class="p6"><span class="Apple-tab-span"> </span>);</p>
<p class="p6">}.play(<span class="s1">Server</span>.internal);</p>
<p class="p6"><span class="s1">Server</span>.internal.scope;</p>
<p class="p6">)</p>
<p class="p2"><br></p>
</body>
</html>
|
moodledata/temp/tool_installaddon/e0ed58f6739b5b0046a0987387a960a2/contents/mr/docs/__examplesource/exsource_mark_Sites_joule2-maint_blocks_helloworld_view.php_b33cb6a0be974c2a717c7551e2cb3392.html | jnhl/theCELL-moodle | <?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 xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title>See how to use this file</title>
<link rel="stylesheet" href="../media/stylesheet.css" />
</head>
<body>
<h1>See how to use this file</h1>
<div class="listing">
<div class="src-code"><ol><li><div class="src-line"><span class="src-php"><?php</span></div></li>
<li><div class="src-line"><span class="src-doc">/**</span></div></li>
<li><div class="src-line"><span class="src-doc"> * View renderer</span></div></li>
<li><div class="src-line"><span class="src-doc"> *</span></div></li>
<li><div class="src-line"><span class="src-doc"> * </span><span class="src-doc-coretag">@author</span><span class="src-doc"> Mark Nielsen</span></div></li>
<li><div class="src-line"><span class="src-doc"> * </span><span class="src-doc-coretag">@version</span><span class="src-doc"> $Id$</span></div></li>
<li><div class="src-line"><span class="src-doc"> * </span><span class="src-doc-coretag">@package</span><span class="src-doc"> blocks/helloworld</span></div></li>
<li><div class="src-line"><span class="src-doc"> */</span></div></li>
<li><div class="src-line"> </div></li>
<li><div class="src-line"><span class="src-inc">require_once</span><span class="src-sym">(</span><span class="src-str">'../../config.php'</span><span class="src-sym">)</span><span class="src-sym">;</span></div></li>
<li><div class="src-line"> </div></li>
<li><div class="src-line"><span class="src-comm">// By including mr/bootstrap.php, all mr</span></div></li>
<li><div class="src-line"><span class="src-comm">// classes become available to us. So now</span></div></li>
<li><div class="src-line"><span class="src-comm">// we can call mr_controller without explicitly</span></div></li>
<li><div class="src-line"><span class="src-comm">// including its class file.</span></div></li>
<li><div class="src-line"><span class="src-comm">// Use mr_bootstrap::shutdown(); to turn off</span></div></li>
<li><div class="src-line"><span class="src-comm">// class autoloading (basically the opposite of</span></div></li>
<li><div class="src-line"><span class="src-comm">// mr_bootstrap::startup();)</span></div></li>
<li><div class="src-line">require<span class="src-sym">(</span><span class="src-var">$CFG</span><span class="src-sym">-></span><span class="src-id">dirroot</span>.<span class="src-str">'/local/mr/bootstrap.php'</span><span class="src-sym">)</span><span class="src-sym">;</span></div></li>
<li><div class="src-line"> </div></li>
<li><div class="src-line"><span class="src-id"><a href="../mr/mr_controller.html">mr_controller</a></span><span class="src-sym">::</span><a href="../mr/mr_controller.html#methodrender">render</a><span class="src-sym">(</span><span class="src-str">'blocks/helloworld'</span><span class="src-sym">, </span><span class="src-str">'blockname'</span><span class="src-sym">, </span><span class="src-str">'block_helloworld'</span><span class="src-sym">)</span><span class="src-sym">;</span></div></li>
</ol></div>
</div>
<p class="notes" id="credit">
Documentation generated on Thu, 28 Jun 2012 16:33:46 -0700 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.3</a>
</p>
</body>
</html> |
tests/wpt/web-platform-tests/css/css-regions/interactivity/hit-testing/css-hover-on-region-002.html | saneyuki/servo | <!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS Regions: :hover on regions that have padding</title>
<link rel="author" title="Mihai Balan" href="mailto:[email protected]">
<link rel="help" href="http://www.w3.org/TR/css3-regions/#the-flow-into-property">
<link rel="help" href="http://www.w3.org/TR/css3-regions/#flow-from">
<meta name="assert" content="CSS rules using the :hover pseudo class are applied to regions when moving the mouse over the region padding">
<meta name="flags" content="interact">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
#source {
color: blue;
font-family: Ahem;
font-size: 20px;
line-height: 1em;
width: 5em;
height: 5em;
flow-into: f;
}
#region {
flow-from: f;
}
.region {
background-color: yellow;
padding-left: 100px;
width: 100px;
height: 100px;
}
.region:hover {
background-color: lime;
color: red;
}
.region p {
width: 100%;
height: 50%;
background-color: red;
}
</style>
</head>
<body>
<ol>
<li>You should not see any red before or during this test</li>
<li>You should see a yellow and a blue square</li>
<li>Move the mouse over the yellow square</li>
<li>The yellow square should turn green</li>
</ol>
<div id="parent">
<div id="source">xxxxx<br>xxxxx<br>xxxxx<br>xxxxx<br>xxxxx</div>
</div>
<div class="region" id="region">
<p></p>
</div>
</body>
</html> |
chapter-3/example7/tests/index.html | Rodic/emberjs-essentials | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Example7 Tests</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
{{content-for 'head'}}
{{content-for 'test-head'}}
<link rel="stylesheet" href="assets/vendor.css">
<link rel="stylesheet" href="assets/example7.css">
<link rel="stylesheet" href="assets/test-support.css">
{{content-for 'head-footer'}}
{{content-for 'test-head-footer'}}
</head>
<body>
{{content-for 'body'}}
{{content-for 'test-body'}}
<script src="assets/vendor.js"></script>
<script src="assets/test-support.js"></script>
<script src="assets/example7.js"></script>
<script src="testem.js"></script>
<script src="assets/test-loader.js"></script>
{{content-for 'body-footer'}}
{{content-for 'test-body-footer'}}
</body>
</html>
|
doc/0.9.13-incubating/libguac/search/all_10.html | mike-jumper/incubator-guacamole-website | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html><head><title></title>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta name="generator" content="Doxygen 1.8.11"/>
<link rel="stylesheet" type="text/css" href="search.css"/>
<script type="text/javascript" src="all_10.js"></script>
<script type="text/javascript" src="search.js"></script>
</head>
<body class="SRPage">
<div id="SRIndex">
<div class="SRStatus" id="Loading">Loading...</div>
<div id="SRResults"></div>
<script type="text/javascript"><!--
createResults();
--></script>
<div class="SRStatus" id="Searching">Searching...</div>
<div class="SRStatus" id="NoMatches">No Matches</div>
<script type="text/javascript"><!--
document.getElementById("Loading").style.display="none";
document.getElementById("NoMatches").style.display="none";
var searchResults = new SearchResults("searchResults");
searchResults.Search();
--></script>
</div>
<!-- Google Analytics -->
<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-75289145-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>
|
addOns/websocket/src/main/javahelp/org/zaproxy/zap/extension/websocket/resources/help_fil_PH/contents/introduction.html | thc202/zap-extensions | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>
Mga WebSocket
</title>
</head>
<body>
<h1>Mga WebSocket</h1>
<p>
Mga websocket ay maaring gamitin ng mga aplikasyon sa web o mga web site para i-setup ang isang bi-directional (dalawang-panig), buong duplex na komunikasyon channel sa ibabaw ng isang solong TCP koneksyon.<br>
Ito ay nagtatambok ng isang magaan na protocol, na nagpapahintulot sa mga developer upang mapagtanto ang mga realname na paggamit ng mga kaso. Mga Websocket ay nagbibigay ng alternatibong paggamit ng mabigat na paggamit sa Ajax, HTTP Long Polling o Comet.<br>
</p>
<p>
Pagkatapos ng isang paunang HTTP batay sa pakikipagkamay, ang TCP koneksyon ay nakabukas palagi, nagpapahintulot sa mga aplikasyon na magpadala & tumatanggap ng di-makatwirang datos. Madalas ang port 80 at 443 para sa encrypted na mga websocket channel ay ginagamit.
</p>
<p>
Ang WebSocket na pamantayan ay tinukoy sa
<dl>
<dt><a href="http://www.w3.org/TR/websockets/">Ang WebSocket API (http://www.w3.org/TR/websockets/)</a></dt>
<dd>tumutukoy sa interface sa mga browser</dd>
<dt><a href="https://tools.ietf.org/html/rfc6455">Ang WebSocket Protocol (RFC6455) (https://tools.ietf.org/html/rfc6455)</a></dt>
<dd>naglalarawan sa istraktura sa WebSocket na mga frame sa TCP</dd>
</dl>
<p>
Ang ZAP ay may kakayahan na:
<ul>
<li>maharang ay nagpakita ng WebSocket na mga mensahe</li>
<li>nagtakda ng mga breakpoint sa tiyak na mga uri sa WebSocket na mga mensahe</li>
<li>fuzz WebSocket na mga mensahe (nagpapadala ng mga maraming hindi balido o di-inaasahang datos sa isang browser o server)</li>
<li>passively scan WebSocket messages and raise alerts with scripts</li>
</ul>
Ang WebSocket na mga mensahe ay makikita sa loob ng <a href="tab.html">Mga WebSocket na tab</a>.<br><br>
The WebSocket add-on adds new <a href="script.html">scripts</a> and additional endpoints to the ZAP <a href="api.html">API</a>
</body>
</html>
|
docs/html/devguide/cdevtricks39584.html | Kerensky256/Database | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-us" xml:lang="en-us">
<!--
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.
-->
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<meta name="copyright" content="(C) Copyright 2005" />
<meta name="DC.rights.owner" content="(C) Copyright 2005" />
<meta content="public" name="security" />
<meta content="index,follow" name="Robots" />
<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
<meta content="concept" name="DC.Type" />
<meta name="DC.Title" content="Supplying a parameter only once" />
<meta name="abstract" content="If you want to supply a parameter value once and use it multiple times within a query, put it in the FROM clause with an appropriate CAST." />
<meta name="description" content="If you want to supply a parameter value once and use it multiple times within a query, put it in the FROM clause with an appropriate CAST." />
<meta content="VALUES clause, power of, Using a supplied parameter multiple times in a query" name="DC.subject" />
<meta content="VALUES clause, power of, Using a supplied parameter multiple times in a query" name="keywords" />
<meta scheme="URI" name="DC.Relation" content="cdevtricks19707.html" />
<meta scheme="URI" name="DC.Relation" content="cdevtricks21248.html" />
<meta scheme="URI" name="DC.Relation" content="cdevtricks23426.html" />
<meta scheme="URI" name="DC.Relation" content="cdevtricks13019.html" />
<meta scheme="URI" name="DC.Relation" content="cdevtricks32436.html" />
<meta content="XHTML" name="DC.Format" />
<meta content="cdevtricks39584" name="DC.Identifier" />
<meta content="en-us" name="DC.Language" />
<link href="commonltr.css" type="text/css" rel="stylesheet" />
<title>Supplying a parameter only once</title>
</head>
<body id="cdevtricks39584"><a name="cdevtricks39584"><!-- --></a>
<h1 class="topictitle1">Supplying a parameter only once</h1>
<div><p>If you want to supply a parameter value once and use it multiple
times within a query, put it in the FROM clause with an appropriate CAST.</p>
<pre>SELECT phonebook.*
FROM phonebook, (VALUES (CAST(? AS INT), CAST(? AS VARCHAR(255))))
AS Choice(choice, search_string)
WHERE search_string = (case when choice = 1 then firstnme
when choice=2 then lastname
when choice=3 then phonenumber end);</pre>
<p>This query selects what the second parameter will be compared to based
on the value in the first parameter. Putting the parameters in the FROM clause
means that they need to be applied only once to the query, and you can give
them names so that you can refer to them elsewhere in the query. In the example
above, the first parameter is given the name <em>choice</em>, and the second
parameter is given the name <em>search_string</em>.</p>
</div>
<div>
<div class="familylinks">
<div class="parentlink"><strong>Parent topic:</strong> <a href="cdevtricks32436.html" title="This section provides some examples of interesting SQL features. It also includes a few non-SQL tips.">SQL tips</a></div>
</div>
<div class="relconcepts"><strong>Related concepts</strong><br />
<div><a href="cdevtricks19707.html" title="Derby does not have a built-in function that returns the name of the database. However, you can use DatabaseMetaData to return the connection URL of any local Connection.">Retrieving the database connection URL</a></div>
<div><a href="cdevtricks21248.html" title="An identity column is a column that stores numbers that increment by one with each insertion. Identity columns are sometimes called autoincrement columns.">Defining an identity column</a></div>
<div><a href="cdevtricks23426.html" title="You can hook into any JDBC tool with just our JDBC Driver class name (org.apache.derby.jdbc.EmbeddedDriver) and Derby's JDBC connection URL.">Using third-party tools</a></div>
<div><a href="cdevtricks13019.html" title="This section contains some tips to use with the VALUES clause.">Tricks of the VALUES clause</a></div>
</div>
</div>
</body>
</html>
|
docs/apis/0.7/rust/mentat_core/value_type_set/ValueTypeSet.t.html | ncalexan/mentat | <!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="refresh" content="0;URL=struct.ValueTypeSet.html">
</head>
<body>
<p>Redirecting to <a href="struct.ValueTypeSet.html">struct.ValueTypeSet.html</a>...</p>
<script>location.replace("struct.ValueTypeSet.html" + location.search + location.hash);</script>
</body>
</html> |
site/docs/phaser/Phaser.ArrayList.html | prshreshtha/LaseRun | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Phaser Class: ArrayList</title>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/sunlight.default.css">
<link type="text/css" rel="stylesheet" href="styles/site.cerulean.css">
</head>
<body>
<div class="container-fluid">
<div class="navbar navbar-fixed-top navbar-inverse">
<div class="navbar-inner">
<a class="brand" href="index.html">Phaser</a>
<ul class="nav">
<li class="dropdown">
<a href="namespaces.list.html" class="dropdown-toggle" data-toggle="dropdown">Namespaces<b
class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-0">
<a href="Phaser.html">Phaser</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="classes.list.html" class="dropdown-toggle" data-toggle="dropdown">Classes<b
class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-1">
<a href="Phaser.Animation.html">Animation</a>
</li>
<li class="class-depth-1">
<a href="Phaser.AnimationManager.html">AnimationManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.AnimationParser.html">AnimationParser</a>
</li>
<li class="class-depth-1">
<a href="Phaser.ArrayList.html">ArrayList</a>
</li>
<li class="class-depth-1">
<a href="Phaser.BitmapData.html">BitmapData</a>
</li>
<li class="class-depth-1">
<a href="Phaser.BitmapText.html">BitmapText</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Button.html">Button</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Cache.html">Cache</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Camera.html">Camera</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Canvas.html">Canvas</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Circle.html">Circle</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Color.html">Color</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Device.html">Device</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Easing.html">Easing</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Back.html">Back</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Bounce.html">Bounce</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Circular.html">Circular</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Cubic.html">Cubic</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Elastic.html">Elastic</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Exponential.html">Exponential</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Linear.html">Linear</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Quadratic.html">Quadratic</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Quartic.html">Quartic</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Quintic.html">Quintic</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Sinusoidal.html">Sinusoidal</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Ellipse.html">Ellipse</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Events.html">Events</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Filter.html">Filter</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Frame.html">Frame</a>
</li>
<li class="class-depth-1">
<a href="Phaser.FrameData.html">FrameData</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Game.html">Game</a>
</li>
<li class="class-depth-1">
<a href="Phaser.GameObjectCreator.html">GameObjectCreator</a>
</li>
<li class="class-depth-1">
<a href="Phaser.GameObjectFactory.html">GameObjectFactory</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Gamepad.html">Gamepad</a>
</li>
<li class="class-depth-1">
<a href="Phaser.GamepadButton.html">GamepadButton</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Graphics.html">Graphics</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Group.html">Group</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Image.html">Image</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Input.html">Input</a>
</li>
<li class="class-depth-1">
<a href="Phaser.InputHandler.html">InputHandler</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Key.html">Key</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Keyboard.html">Keyboard</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Line.html">Line</a>
</li>
<li class="class-depth-1">
<a href="Phaser.LinkedList.html">LinkedList</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Loader.html">Loader</a>
</li>
<li class="class-depth-1">
<a href="Phaser.LoaderParser.html">LoaderParser</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Math.html">Math</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Mouse.html">Mouse</a>
</li>
<li class="class-depth-1">
<a href="Phaser.MSPointer.html">MSPointer</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Net.html">Net</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Particle.html">Particle</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Particles.html">Particles</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Particles.Arcade.Emitter.html">Emitter</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Physics.html">Physics</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Physics.Arcade.html">Arcade</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Arcade.Body.html">Body</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Physics.Ninja.html">Ninja</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Ninja.AABB.html">AABB</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Ninja.Body.html">Body</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Ninja.Circle.html">Circle</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Ninja.Tile.html">Tile</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Physics.P2.html">P2</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.Body.html">Body</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.BodyDebug.html">BodyDebug</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.CollisionGroup.html">CollisionGroup</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.ContactMaterial.html">ContactMaterial</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.DistanceConstraint.html">DistanceConstraint</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.FixtureList.html">FixtureList</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.GearConstraint.html">GearConstraint</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.InversePointProxy.html">InversePointProxy</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.LockConstraint.html">LockConstraint</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.Material.html">Material</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.PointProxy.html">PointProxy</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.PrismaticConstraint.html">PrismaticConstraint</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.RevoluteConstraint.html">RevoluteConstraint</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.Spring.html">Spring</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Plugin.html">Plugin</a>
</li>
<li class="class-depth-1">
<a href="Phaser.PluginManager.html">PluginManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Point.html">Point</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Pointer.html">Pointer</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Polygon.html">Polygon</a>
</li>
<li class="class-depth-1">
<a href="Phaser.QuadTree.html">QuadTree</a>
</li>
<li class="class-depth-1">
<a href="Phaser.RandomDataGenerator.html">RandomDataGenerator</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Rectangle.html">Rectangle</a>
</li>
<li class="class-depth-1">
<a href="Phaser.RenderTexture.html">RenderTexture</a>
</li>
<li class="class-depth-1">
<a href="Phaser.RequestAnimationFrame.html">RequestAnimationFrame</a>
</li>
<li class="class-depth-1">
<a href="Phaser.RetroFont.html">RetroFont</a>
</li>
<li class="class-depth-1">
<a href="Phaser.ScaleManager.html">ScaleManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Signal.html">Signal</a>
</li>
<li class="class-depth-1">
<a href="Phaser.SignalBinding.html">SignalBinding</a>
</li>
<li class="class-depth-1">
<a href="Phaser.SinglePad.html">SinglePad</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Sound.html">Sound</a>
</li>
<li class="class-depth-1">
<a href="Phaser.SoundManager.html">SoundManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Sprite.html">Sprite</a>
</li>
<li class="class-depth-1">
<a href="Phaser.SpriteBatch.html">SpriteBatch</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Stage.html">Stage</a>
</li>
<li class="class-depth-1">
<a href="Phaser.State.html">State</a>
</li>
<li class="class-depth-1">
<a href="Phaser.StateManager.html">StateManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Text.html">Text</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Tile.html">Tile</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Tilemap.html">Tilemap</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TilemapLayer.html">TilemapLayer</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TilemapParser.html">TilemapParser</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Tileset.html">Tileset</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TileSprite.html">TileSprite</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Time.html">Time</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Timer.html">Timer</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TimerEvent.html">TimerEvent</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Touch.html">Touch</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Tween.html">Tween</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TweenManager.html">TweenManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Utils.html">Utils</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Utils.Debug.html">Debug</a>
</li>
<li class="class-depth-1">
<a href="Phaser.World.html">World</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="row-fluid">
<div class="span8">
<div id="main">
<h1 class="page-title">Class: ArrayList</h1>
<section>
<header>
<h2>
<span class="ancestors"><a href="Phaser.html">Phaser</a>.</span>
ArrayList
</h2>
<div class="class-description"><p>Phaser.ArrayList</p></div>
</header>
<article>
<div class="container-overview">
<dt>
<h4 class="name" id="ArrayList"><span class="type-signature"></span>new ArrayList<span class="signature">()</span><span class="type-signature"></span></h4>
</dt>
<dd>
<div class="description">
<p>A set data structure. Allows items to add themselves to and remove themselves from the set. Items can only exist once in the set.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="ArrayList.js.html">core/ArrayList.js</a>, <a href="ArrayList.js.html#sunlight-1-line-13">line 13</a>
</li></ul></dd>
</dl>
</dd>
</div>
<h3 class="subsection-title">Members</h3>
<dl>
<dt>
<h4 class="name" id="first"><span class="type-signature"></span>first<span class="type-signature"></span></h4>
</dt>
<dd>
<div class="description">
<p>Resets the cursor to the first item in the list and returns it.</p>
</div>
<dl class="details">
<h5 class="subsection-title">Properties:</h5>
<dl>
<table class="props table table-striped">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>first</code></td>
<td class="type">
<span class="param-type">object</span>
</td>
<td class="description last"><p>The first item in the list.</p></td>
</tr>
</tbody>
</table>
</dl>
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="ArrayList.js.html">core/ArrayList.js</a>, <a href="ArrayList.js.html#sunlight-1-line-139">line 139</a>
</li></ul></dd>
</dl>
</dd>
<dt>
<h4 class="name" id="list"><span class="type-signature"></span>list<span class="type-signature"></span></h4>
</dt>
<dd>
<dl class="details">
<h5 class="subsection-title">Properties:</h5>
<dl>
<table class="props table table-striped">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>list</code></td>
<td class="type">
<span class="param-type">array</span>
</td>
<td class="description last"><p>The list.</p></td>
</tr>
</tbody>
</table>
</dl>
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="ArrayList.js.html">core/ArrayList.js</a>, <a href="ArrayList.js.html#sunlight-1-line-30">line 30</a>
</li></ul></dd>
</dl>
</dd>
<dt>
<h4 class="name" id="next"><span class="type-signature"></span>next<span class="type-signature"></span></h4>
</dt>
<dd>
<div class="description">
<p>Gets the next item in the list and returns it, advancing the cursor.</p>
</div>
<dl class="details">
<h5 class="subsection-title">Properties:</h5>
<dl>
<table class="props table table-striped">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>next</code></td>
<td class="type">
<span class="param-type">object</span>
</td>
<td class="description last"><p>Advanced the cursor and return.</p></td>
</tr>
</tbody>
</table>
</dl>
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="ArrayList.js.html">core/ArrayList.js</a>, <a href="ArrayList.js.html#sunlight-1-line-164">line 164</a>
</li></ul></dd>
</dl>
</dd>
<dt>
<h4 class="name" id="position"><span class="type-signature"></span>position<span class="type-signature"></span></h4>
</dt>
<dd>
<dl class="details">
<h5 class="subsection-title">Properties:</h5>
<dl>
<table class="props table table-striped">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>position</code></td>
<td class="type">
<span class="param-type">number</span>
</td>
<td class="description last"><p>Current cursor position.</p></td>
</tr>
</tbody>
</table>
</dl>
<dt class="tag-default">Default Value:</dt>
<dd class="tag-default"><ul class="dummy"><li>0</li></ul></dd>
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="ArrayList.js.html">core/ArrayList.js</a>, <a href="ArrayList.js.html#sunlight-1-line-25">line 25</a>
</li></ul></dd>
</dl>
</dd>
<dt>
<h4 class="name" id="total"><span class="type-signature"></span>total<span class="type-signature"></span></h4>
</dt>
<dd>
<dl class="details">
<h5 class="subsection-title">Properties:</h5>
<dl>
<table class="props table table-striped">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>total</code></td>
<td class="type">
<span class="param-type">number</span>
</td>
<td class="description last"><p>Number of objects in the list.</p></td>
</tr>
</tbody>
</table>
</dl>
<dt class="tag-default">Default Value:</dt>
<dd class="tag-default"><ul class="dummy"><li>0</li></ul></dd>
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="ArrayList.js.html">core/ArrayList.js</a>, <a href="ArrayList.js.html#sunlight-1-line-19">line 19</a>
</li></ul></dd>
</dl>
</dd>
</dl>
<h3 class="subsection-title">Methods</h3>
<dl>
<dt>
<h4 class="name" id="add"><span class="type-signature"></span>add<span class="signature">(child)</span><span class="type-signature"> → {object}</span></h4>
</dt>
<dd>
<div class="description">
<p>Adds a new element to this list. The item can only exist in the list once.</p>
</div>
<h5>Parameters:</h5>
<table class="params table table-striped">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>child</code></td>
<td class="type">
<span class="param-type">object</span>
</td>
<td class="description last"><p>The element to add to this list. Can be a Phaser.Sprite or any other object you need to quickly iterate through.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="ArrayList.js.html">core/ArrayList.js</a>, <a href="ArrayList.js.html#sunlight-1-line-36">line 36</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>The child that was added.</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">object</span>
</dd>
</dl>
</dd>
<dt>
<h4 class="name" id="callAll"><span class="type-signature"></span>callAll<span class="signature">(callback, parameter)</span><span class="type-signature"></span></h4>
</dt>
<dd>
<div class="description">
<p>Calls a function on all members of this list, using the member as the context for the callback.
The function must exist on the member.</p>
</div>
<h5>Parameters:</h5>
<table class="params table table-striped">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Argument</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>callback</code></td>
<td class="type">
<span class="param-type">function</span>
</td>
<td class="attributes">
</td>
<td class="description last"><p>The function to call.</p></td>
</tr>
<tr>
<td class="name"><code>parameter</code></td>
<td class="type">
<span class="param-type">*</span>
</td>
<td class="attributes">
<repeatable><br>
</td>
<td class="description last"><p>Additional parameters that will be passed to the callback.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="ArrayList.js.html">core/ArrayList.js</a>, <a href="ArrayList.js.html#sunlight-1-line-113">line 113</a>
</li></ul></dd>
</dl>
</dd>
<dt>
<h4 class="name" id="exists"><span class="type-signature"></span>exists<span class="signature">(child)</span><span class="type-signature"> → {boolean}</span></h4>
</dt>
<dd>
<div class="description">
<p>Checks for the child within this list.</p>
</div>
<h5>Parameters:</h5>
<table class="params table table-striped">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>child</code></td>
<td class="type">
<span class="param-type">object</span>
</td>
<td class="description last"><p>The element to get the list index for.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="ArrayList.js.html">core/ArrayList.js</a>, <a href="ArrayList.js.html#sunlight-1-line-68">line 68</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>True if the child is found in the list, otherwise false.</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">boolean</span>
</dd>
</dl>
</dd>
<dt>
<h4 class="name" id="getIndex"><span class="type-signature"></span>getIndex<span class="signature">(child)</span><span class="type-signature"> → {number}</span></h4>
</dt>
<dd>
<div class="description">
<p>Gets the index of the child in the list, or -1 if it isn't in the list.</p>
</div>
<h5>Parameters:</h5>
<table class="params table table-striped">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>child</code></td>
<td class="type">
<span class="param-type">object</span>
</td>
<td class="description last"><p>The element to get the list index for.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="ArrayList.js.html">core/ArrayList.js</a>, <a href="ArrayList.js.html#sunlight-1-line-55">line 55</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>The index of the child or -1 if not found.</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">number</span>
</dd>
</dl>
</dd>
<dt>
<h4 class="name" id="remove"><span class="type-signature"></span>remove<span class="signature">(child)</span><span class="type-signature"> → {object}</span></h4>
</dt>
<dd>
<div class="description">
<p>Removes the given element from this list if it exists.</p>
</div>
<h5>Parameters:</h5>
<table class="params table table-striped">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>child</code></td>
<td class="type">
<span class="param-type">object</span>
</td>
<td class="description last"><p>The child to be removed from the list.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="ArrayList.js.html">core/ArrayList.js</a>, <a href="ArrayList.js.html#sunlight-1-line-93">line 93</a>
</li></ul></dd>
</dl>
<h5>Returns:</h5>
<div class="param-desc">
<p>child - The child that was removed.</p>
</div>
<dl>
<dt>
Type
</dt>
<dd>
<span class="param-type">object</span>
</dd>
</dl>
</dd>
<dt>
<h4 class="name" id="reset"><span class="type-signature"></span>reset<span class="signature">()</span><span class="type-signature"></span></h4>
</dt>
<dd>
<div class="description">
<p>Resets the list length and drops all items in the list.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="ArrayList.js.html">core/ArrayList.js</a>, <a href="ArrayList.js.html#sunlight-1-line-81">line 81</a>
</li></ul></dd>
</dl>
</dd>
</dl>
</article>
</section>
</div>
<div class="clearfix"></div>
<footer>
<span class="copyright">
Phaser Copyright © 2012-2014 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-dev</a>
on Tue May 20 2014 10:05:51 GMT+0100 (BST) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>
<div class="span3">
<div id="toc"></div>
</div>
<br clear="both">
</div>
</div>
<script src="scripts/sunlight.js"></script>
<script src="scripts/sunlight.javascript.js"></script>
<script src="scripts/sunlight-plugin.doclinks.js"></script>
<script src="scripts/sunlight-plugin.linenumbers.js"></script>
<script src="scripts/sunlight-plugin.menu.js"></script>
<script src="scripts/jquery.min.js"></script>
<script src="scripts/jquery.scrollTo.js"></script>
<script src="scripts/jquery.localScroll.js"></script>
<script src="scripts/bootstrap-dropdown.js"></script>
<script src="scripts/toc.js"></script>
<script> Sunlight.highlightAll({lineNumbers:true, showMenu: true, enableDoclinks :true}); </script>
<script>
$( function () {
$( "#toc" ).toc( {
anchorName : function(i, heading, prefix) {
return $(heading).attr("id") || ( prefix + i );
},
selectors : "h1,h2,h3,h4",
showAndHide : false,
scrollTo : 60
} );
$( "#toc>ul" ).addClass( "nav nav-pills nav-stacked" );
$( "#main span[id^='toc']" ).addClass( "toc-shim" );
} );
</script>
</body>
</html> |
node_modules/wire/bower_components/dijit/tests/form/robot/Button_mouse.html | landock/garbage-boy | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>doh.robot Button Test</title>
<style>
@import "../../../../util/doh/robot/robot.css";
</style>
<!-- required: dojo.js -->
<script type="text/javascript" src="../../../../dojo/dojo.js"></script>
<script type="text/javascript">
dojo.require("dojo.on");
dojo.require("dijit.robotx");
dojo.require("dijit.tests.helpers"); // functions to help test
dojo.ready(function(){
doh.robot.initRobot('../test_Button.html');
doh.register("dijit.form.Button", [
{
name: "enabled",
timeout: 4000,
runTest: function(){
var d = new doh.Deferred();
var clicked = false;
dijit.byId("T1466").set("onClick", function(){ clicked = true; });
doh.robot.mouseMoveAt("T1466", 500);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.t(clicked, "click event was fired");
}), 1000);
return d;
}
},
{
name: "disabled",
timeout: 4000,
runTest: function(){
var d = new doh.Deferred();
var clicked = false;
dijit.byId("disabled").set("onClick", function(){ clicked = true; });
doh.robot.mouseMoveAt("disabled", 500);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
if(!dojo.isWebKit){ // webkit bug, see #11064
doh.f(dojo.isDescendant(dojo.global.dijit.focus.curNode, dijit.byId("disabled").domNode), "not focused on button")
}
doh.f(clicked, "click event wasn't fired");
}), 1000);
return d;
}
}
]);
doh.register("dijit.form.DropDownButton", [
{
name: "click button",
timeout: 4000,
runTest: function(){
var d = new doh.Deferred();
doh.robot.mouseMoveAt("edit", 500);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.t(isVisible("editMenu"), "edit menu is visible: " + dijit.byId("editMenu").domNode.style.cssText);
}), 1000);
return d;
}
},
{
name: "click menu",
timeout: 4000,
runTest: function(){
var d = new doh.Deferred();
doh.robot.mouseMoveAt("copy", 500);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.t(isHidden("editMenu"), "edit menu was closed: " + dijit.byId("editMenu").domNode.style.cssText);
}), 1000);
return d;
}
}
]);
doh.register("dijit.form.ComboButton", [
{
name: "click button",
timeout: 4000,
runTest: function(){
var d = new doh.Deferred();
var leftPart = dojo.query(".dijitButtonContents", dojo.byId("save"))[0];
doh.t(leftPart, "found left part of button");
var clicked = false;
dijit.byId("save").set("onClick", function(){ clicked = true; });
doh.robot.mouseMoveAt(leftPart, 500);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.t(clicked, "click event was fired");
}), 1000);
return d;
}
},
{
name: "click drop down button",
timeout: 4000,
runTest: function(){
var d = new doh.Deferred();
var rightPart = dojo.query(".dijitDownArrowButton", dojo.byId("save"))[0];
doh.t(rightPart, "found right part of button");
doh.robot.mouseMoveAt(rightPart, 500);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.t(isVisible("saveMenu"), "save menu is visible: " + dijit.byId("saveMenu").domNode.style.cssText);
}), 1000);
return d;
}
},
{
name: "click menu",
timeout: 4000,
runTest: function(){
var d = new doh.Deferred();
doh.robot.mouseMoveAt("saveAs", 500);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.t(isHidden("saveMenu"), "save menu was closed: " + dijit.byId("saveMenu").domNode.style.cssText);
}), 1000);
return d;
}
},
{
name: "disabled click button",
timeout: 4000,
runTest: function(){
var d = new doh.Deferred();
var leftPart = dojo.query(".dijitButtonContents", dojo.byId("save"))[0];
doh.t(leftPart, "found left part of button");
var clicked = false;
dijit.byId("save").set("onClick", function(){ clicked = true; });
dijit.byId("save").set("disabled", true);
doh.robot.mouseMoveAt(leftPart, 500);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
if(!dojo.isWebKit){ // webkit bug, see #11064
doh.f(dojo.isDescendant(dojo.global.dijit.focus.curNode, dijit.byId("save").domNode), "not focused on button")
}
doh.f(clicked, "click event wasn't fired");
}), 1000);
return d;
}
},
{
name: "disabled click drop down button",
timeout: 4000,
runTest: function(){
var d = new doh.Deferred();
var rightPart = dojo.query(".dijitDownArrowButton", dojo.byId("save"))[0];
doh.t(rightPart, "found right part of button");
doh.robot.mouseMoveAt(rightPart, 500);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
if(!dojo.isWebKit){ // webkit bug, see #11064
doh.f(dojo.isDescendant(dojo.global.dijit.focus.curNode, dijit.byId("save").domNode), "not focused on button")
}
doh.t(isHidden("saveMenu"), "save menu is still hidden: " + dijit.byId("saveMenu").domNode.style.cssText);
}), 1000);
return d;
}
},
{
name: "tabIndex",
timeout: 1000,
runTest: function(){
var btn = dijit.byId("save"),
focusNode = btn.focusNode,
titleNode = btn.titleNode;
btn.set("disabled", true);
doh.t(btn.get("disabled"), "save button is disabled");
doh.f(dojo.hasAttr(focusNode, "tabIndex") && dojo.attr(focusNode, "tabIndex") >= 0, "disabled focusNode tabIndex");
doh.f(dojo.hasAttr(titleNode, "tabIndex") && dojo.attr(titleNode, "tabIndex") >= 0, "disabled titleNode tabIndex");
btn.set("disabled", false);
doh.f(btn.get("disabled"), "save button is enabled");
doh.is(0, dojo.attr(focusNode, "tabIndex"), "enabled focusNode tabIndex");
doh.is(0, dojo.attr(titleNode, "tabIndex"), "enabled titleNode tabIndex");
}
}
]);
doh.register("dijit.form.ToggleButton", [
{
name: "initially checked",
timeout: 4000,
runTest: function(){
var d = new doh.Deferred();
var checked = dijit.byId("toggle1").get("checked");
dijit.byId("toggle1").set("onChange", function(v){ checked = v; });
doh.t(checked, "toggle1 initially checked");
doh.robot.mouseMoveAt("toggle1", 500);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.f(checked, "toggle1 unchecked");
}), 1000);
return d;
}
},
{
name: "initially unchecked",
timeout: 4000,
runTest: function(){
var d = new doh.Deferred();
var checked = dijit.byId("toggle2").get("checked");
dijit.byId("toggle2").set("onChange", function(v){ checked = v; });
doh.f(checked, "toggle2 initially unchecked");
doh.robot.mouseMoveAt("toggle2", 500);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.t(checked, "toggle2 checked");
}), 1000);
return d;
}
},
{
name: "disabled",
timeout: 4000,
runTest: function(){
var d = new doh.Deferred();
dijit.byId("toggle1").set("disabled", true);
var changed = false;
dijit.byId("toggle1").set("onChange", function(v){ changed = true; });
doh.robot.mouseMoveAt("toggle1", 500);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
if(!dojo.isWebKit){ // webkit bug, see #11064
doh.f(dojo.isDescendant(dojo.global.dijit.focus.curNode, dijit.byId("toggle1").domNode), "not focused on button")
}
doh.f(changed, "value didn't change");
}), 1000);
return d;
}
}
]);
doh.register("get/set", [
{
name: "change label",
runTest: function(){
dijit.byId("edit").set("label", "hi!");
doh.is("hi!", dijit.byId("edit").containerNode.innerHTML);
}
},
{
name: "icon",
runTest: function(){
// initial condition: no icon
doh.f(dojo.hasClass(dijit.byId("T1466").iconNode, "plusIcon"), "doesn't have plusIcon class");
doh.is("none", dojo.style(dijit.byId("T1466").iconNode, "display"), "initially hidden");
// no icon --> icon
dijit.byId("T1466").set("iconClass", "plusIcon");
doh.t(dojo.hasClass(dijit.byId("T1466").iconNode, "plusIcon"), "plusIcon class added");
doh.isNot("none", dojo.style(dijit.byId("T1466").iconNode, "display"), "became visible");
// switching icon
dijit.byId("T1466").set("iconClass", "noteIcon");
doh.f(dojo.hasClass(dijit.byId("T1466").iconNode, "plusIcon"), "plusIcon cleared");
doh.t(dojo.hasClass(dijit.byId("T1466").iconNode, "noteIcon"), "noteIcon added");
// initial conditions for buttons with icon
doh.t(dojo.hasClass(dijit.byId("dropDownNoLabel").iconNode, "noteIcon"),
"dropDownNoLabel: noteIcon set");
doh.t(dojo.hasClass(dijit.byId("comboNoLabel").iconNode, "plusBlockIcon"),
"comboNoLabel: plusBlockIcon set");
doh.t(isVisible(dijit.byId("comboNoLabel").iconNode),
"comboNoLabel: initially visible");
}
},
{
name: "disable",
timeout: 6000,
runTest: function(){
var d = new doh.Deferred();
dijit.byId("save").set("disabled", true);
// click left side of button
var leftPart = dojo.query(".dijitButtonContents", dojo.byId("save"))[0];
doh.t(leftPart, "found left part of button");
var clicked = false;
dijit.byId("save").set("onClick", function(){ clicked = true; });
doh.robot.mouseMoveAt(leftPart, 500);
doh.robot.mouseClick({left:true}, 500);
// click right side of button
var rightPart = dojo.query(".dijitDownArrowButton", dojo.byId("save"))[0];
doh.t(rightPart, "found right part of button");
doh.robot.mouseMoveAt(rightPart, 500);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.f(clicked, "click event was not fired");
doh.f(isVisible("saveMenu"), "save menu is hidden: " + dijit.byId("saveMenu").domNode.style.cssText);
}), 1000);
return d;
}
}
]);
var nameBox, valueBox;
function setUp(){
nameBox = dojo.byId("buttonName");
valueBox = dojo.byId("buttonValue");
dojo.window.scrollIntoView(valueBox);
nameBox.value = 'INIT';
valueBox.value = 'INIT';
}
doh.register("submit", [
{
name: "plain",
timeout: 5000,
setUp: setUp,
runTest: function(){
var d = new doh.Deferred();
doh.robot.mouseMoveAt('SubmitPlain', 500, 1);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.is("Plain", nameBox.value, "Plain name");
doh.is("Plain Submit", valueBox.value, "Plain value");
}), 1500);
return d;
}
},
{
name: "combo left",
timeout: 5000,
setUp: setUp,
runTest: function(){
var d = new doh.Deferred();
doh.robot.mouseMoveAt('SubmitCombo', 500, 1);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.is("Combo", nameBox.value, "Combo name");
doh.is("Combo Submit", valueBox.value, "Combo value");
}), 1500);
return d;
}
},
{
name: "combo right",
timeout: 5000,
setUp: setUp,
runTest: function(){
var d = new doh.Deferred();
var downArrowNode = dojo.query(".dijitDownArrowButton", dojo.byId("SubmitCombo"))[0];
doh.robot.mouseMoveAt(downArrowNode, 500, 1);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.is("INIT", nameBox.value, "Combo Down Arrow name");
doh.is("INIT", valueBox.value, "Combo Down Arrow value");
}), 1500);
return d;
}
},
{
name: "combo menu",
timeout: 5000,
setUp: setUp,
runTest: function(){
var d = new doh.Deferred();
doh.robot.mouseMoveAt("SubmitComboMenuItem", 500, 1);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.is("", nameBox.value, "Combo Arrow name");
doh.is("", valueBox.value, "Combo Arrow value");
}), 1500);
return d;
}
},
{
name: "drop down",
timeout: 5000,
setUp: setUp,
runTest: function(){
var d = new doh.Deferred();
doh.robot.mouseMoveAt('SubmitDropDown', 500, 1);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.is("DropDown", nameBox.value, "DropDown name");
doh.is("DropDown Submit", valueBox.value, "DropDown value");
}), 1500);
return d;
}
},
{
name: "drop down menu",
timeout: 5000,
setUp: setUp,
runTest: function(){
var d = new doh.Deferred();
doh.robot.mouseMoveAt("SubmitDropDownMenuItem", 500, 1);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.is("", nameBox.value, "DropDown Arrow name");
doh.is("", valueBox.value, "DropDown Arrow value");
}), 1500);
return d;
}
},
{
name: "disabled",
timeout: 5000,
setUp: setUp,
runTest: function(){
var d = new doh.Deferred();
doh.robot.mouseMoveAt('SubmitDisabled', 500, 1);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.is("INIT", nameBox.value, "Disabled name");
doh.is("INIT", valueBox.value, "Disabled value");
}), 1000);
return d;
}
}
]);
doh.register("onClick", [
{
name: "reset: none",
timeout: 3000,
runTest: function(){
var d = new doh.Deferred();
var valueBox = dojo.byId("onClickName");
valueBox.value = '1';
doh.robot.mouseMoveAt('reset1', 500);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.is("RESET", dojo.byId('onClickName').value);
}), 1000);
return d;
}
},
{
name: "reset native: none",
timeout: 3000,
runTest: function(){
var d = new doh.Deferred();
var valueBox = dojo.byId("onClickName");
valueBox.value = '1';
doh.robot.mouseMoveAt('reset1N', 500);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.is("RESET", dojo.byId('onClickName').value);
}), 1000);
return d;
}
},
{
name: "reset: return false",
timeout: 3000,
runTest: function(){
var d = new doh.Deferred();
var valueBox = dojo.byId("onClickName");
valueBox.value = '2';
doh.robot.mouseMoveAt('reset2', 500);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.is("2", dojo.byId('onClickName').value);
}), 1000);
return d;
}
},
{
name: "reset native: return false",
timeout: 3000,
runTest: function(){
var d = new doh.Deferred();
var valueBox = dojo.byId("onClickName");
valueBox.value = '2';
doh.robot.mouseMoveAt('reset2N', 500);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.is("2", dojo.byId('onClickName').value);
}), 1000);
return d;
}
},
{
name: "reset: return true",
timeout: 3000,
runTest: function(){
var d = new doh.Deferred();
var valueBox = dojo.byId("onClickName");
valueBox.value = '3';
doh.robot.mouseMoveAt('reset3', 500);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.is("RESET", dojo.byId('onClickName').value);
}), 1000);
return d;
}
},
{
name: "reset native: return true",
timeout: 3000,
runTest: function(){
var d = new doh.Deferred();
var valueBox = dojo.byId("onClickName");
valueBox.value = '3';
doh.robot.mouseMoveAt('reset3N', 500);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.is("RESET", dojo.byId('onClickName').value);
}), 1000);
return d;
}
},
{
name: "reset: return",
timeout: 3000,
runTest: function(){
var d = new doh.Deferred();
var valueBox = dojo.byId("onClickName");
valueBox.value = '4';
doh.robot.mouseMoveAt('reset4', 500);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.is("RESET", dojo.byId('onClickName').value);
}), 1000);
return d;
}
},
{
name: "reset native: return",
timeout: 3000,
runTest: function(){
var d = new doh.Deferred();
var valueBox = dojo.byId("onClickName");
valueBox.value = '4';
doh.robot.mouseMoveAt('reset4N', 500);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.is("RESET", dojo.byId('onClickName').value);
}), 1000);
return d;
}
},
{
name: "reset: empty",
timeout: 3000,
runTest: function(){
var d = new doh.Deferred();
var valueBox = dojo.byId("onClickName");
valueBox.value = '5';
doh.robot.mouseMoveAt('reset5', 500);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.is("RESET", dojo.byId('onClickName').value);
}), 1000);
return d;
}
},
{
name: "reset native: empty",
timeout: 3000,
runTest: function(){
var d = new doh.Deferred();
var valueBox = dojo.byId("onClickName");
valueBox.value = '5';
doh.robot.mouseMoveAt('reset5N', 500);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.is("RESET", dojo.byId('onClickName').value);
}), 1000);
return d;
}
}
]);
doh.register("resize", [
{
name: "ComboButton",
timeout: 5000,
runTest: function(){
var d = new doh.Deferred();
var combo = dijit.byId('combo_default');
var origSize = combo.domNode.scrollWidth;
doh.robot.mouseMoveAt('changeLabels', 500);
doh.robot.mouseClick({left:true}, 500);
doh.robot.sequence(d.getTestCallback(function(){
doh.isNot(origSize, combo.domNode.scrollWidth, "ComboButton size");
}), 1000);
return d;
}
}
]);
doh.register("bubbling", [
{
name: "bubbling",
timeout: 5000,
runTest: function(){
var d = new doh.Deferred(),
wrapper = dojo.byId("bubbleContainer");
// Listen for click events on the outer DOMNode.
var clicks = 0;
dojo.on(wrapper, "click", function(){
clicks++;
});
doh.robot.mouseMoveAt("bubble2", 500);
doh.robot.mouseClick({left:true}, 500);
// Check that one click event bubbled
doh.robot.sequence(d.getTestCallback(function(){
doh.is(1, clicks, "one click event bubbled");
}), 500);
return d;
}
}
]);
doh.run();
});
</script>
</head>
</html>
|
core/templates/dev/head/pages/participate.html | google-code-export/oppia | {% extends "base.html" %}
{% block subtitle %}
Participation Playbook
{% endblock subtitle %}
{% block header_js %}
{{ super() }}
<style>
html, body {
background-color: #eee;
}
</style>
{% endblock %}
{% block navbar_breadcrumb %}
<ul class="nav navbar-nav oppia-navbar-breadcrumb">
<li>
<span class="oppia-navbar-breadcrumb-separator"></span>
Participation Playbook
</li>
</ul>
{% endblock navbar_breadcrumb %}
{% block content %}
<div class="oppia-page-cards-container">
<md-card class="oppia-page-card">
<a class="oppia-about-anchor" name="community-guidelines"></a>
<h2>Community Guidelines</h2>
<p>
1. <strong>Once published, explorations can be updated by anyone in the Oppia community.</strong> With everyone's input, we can continuously improve explorations and make learning as perfect as possible.
</p>
<p>
2. <strong>Use good judgement when publishing explorations.</strong>
Explorations should have significant educational value and cannot contain
advertising, spam, vandalism and/or abuse.
</p>
<p>
3. <strong>Be a good citizen.</strong> Creating multiple accounts, using
explorations to trick users, circumventing features meant to encourage
improvement of explorations or other such antisocial behavior will not be
tolerated and may result in account suspension.
</p>
<p>
If you're unsure about an exploration topic or need clarification on
guidelines, you can ask us on our <a href="{{SITE_FORUM_URL}}">forum</a>.
</p>
<a class="oppia-about-anchor" name="exploration-publishing-criteria"></a>
<h2>Exploration Publishing Criteria</h2>
<a class="oppia-about-anchor" name="publication-criteria"></a>
<h3>Publication criteria</h3>
<p>
These publication criteria ensure explorations can be meaningfully tested,
continually developed, and refined in a way that makes them fit to be
featured. They're meant to be objective and precise so you can easily
determine whether an exploration is fit for publication.
</p>
<p><strong><em>An exploration should:</em></strong></p>
<p>
<strong>Teach something meaningful</strong> - Present information that's
new to the target audience. Don't just test knowledge the target audience
is already assumed to have.
</p>
<p>
<strong>Teach more than a single factoid</strong> - Explorations should
be either "deep" or "broad". "Deep" means an involved, tricky concept
that has nuances and depth. "Broad" means a collection of related,
interesting facts the learner can understand and better remember after
completing the exploration.
</p>
<p>
<strong>Give informative feedback</strong> - Don't just tell learners if
they're correct or incorrect — explain reasoning. Tell learners
why something is right or wrong, and how to correct it if necessary.
Make your exploration more than just a quiz!
</p>
<p>
<strong>Avoid duplicating existing explorations</strong> - The beauty of
Oppia is that everyone works together to make explorations maximally
effective. If you'd like to teach an existing topic, first try submitting
feedback for the current exploration or improving it. Only if you use a
significantly different teaching style should you create a completely new
exploration.
</p>
<a class="oppia-about-anchor" name="featured-criteria"></a>
<h3>"Featured" criteria</h3>
<p>
Featured explorations are educational, are interesting to learners, and
use our interactive, discovery-based learning style. For help on crafting
useful feedback and creating explorations that fit these "Featured"
criteria, check out our
<a href="https://code.google.com/p/oppia/wiki/DesignTips">Design Tips</a>
wiki page!
</p>
<p><strong><em>A featured exploration is:</em></strong></p>
<p>
<strong>More than memorization</strong> - The exploration does more than
simply provide facts to memorize. It helps the user genuinely understand
interesting concepts.
</p>
<p>
<strong>Learning, not assessment</strong> - The exploration doesn't just
quiz the learner. It presents and builds upon new concepts.
</p>
<p>
<strong>Interactive</strong> - Users learn by doing. They have a chance
to reason about concepts, try out new knowledge, and receive useful
feedback on responses.
</p>
<p>
<strong>Formative feedback</strong> - The exploration's feedback gives
learners new, useful insights. It finds a good middle ground between
telling the learner they're wrong (or right), and giving the entire
answer away. Also, the feedback should cover a wide range of potential
replies.
</p>
<p>
<strong>Complete and polished</strong> - Not only is the exploration
free of typos, factual errors and bugs, it's well-written and easy to
read. Additionally, it delivers all the content promised in the learning
objective and in the exploration itself.
</p>
<a class="oppia-about-anchor" name="publication-policies"></a>
<h2>Publication policy</h2>
<p>
The following policies help Oppia moderators enforce the criteria for
publishing and featuring explorations.
</p>
<a class="oppia-about-anchor" name="publishing-an-exploration"></a>
<h3>Publishing an Exploration</h3>
<p>
Any owner of a private exploration can publish it at any time. However,
if the exploration does not fit the
<a href="#exploration-publishing-criteria">publication criteria</a>, the site
moderators may unpublish or delete it. (The norm is to unpublish; deletion
is only likely in egregious cases, such as outright spam.)
</p>
<a class="oppia-about-anchor" name="editing-rights"></a>
<h3>Editing rights</h3>
<p>
Explorations are meant to be polished and developed until they're
"featured exploration" material. An exploration that hasn't been edited
for a long time may be considered "orphaned". In this case, ownership
may be handed to the community at large (at moderator discretion), so
that Oppia community members can continue to improve it.
</p>
<p>
Note that when you embed a particular version of your exploration in
your site, it won't change unless the original exploration is unpublished
or deleted. This means that even if you or other community members make
changes to the exploration, the version embedded on your website will
remain the same.
</p>
<a class="oppia-about-anchor" name="releasing-an-exploration"></a>
<h3>Releasing an exploration</h3>
<p>
We hope to make the exploration-release process community-driven soon,
but here's how it works now: When an owner of an exploration — or
anyone involved in the process — thinks the exploration is ready to
be featured, they can post to the
<a href="{{MODERATOR_REQUEST_FORUM_URL}}" target="_blank">Moderator Requests forum</a>.
A moderator will play through the exploration, look at its structure,
and decide whether it fits the "Featured" <a href="#publication-criteria">criteria</a>.
If it does, the exploration will be marked as featured. If it doesn't, the
moderator will work with the creator(s) to improve the exploration.
</p>
</md-card>
</div>
<div class="nav oppia-about-right-menu hidden-sm hidden-xs">
<h4><strong>Participation Playbook</strong></h4>
<p><a href="#community-guidelines">Community Guidelines</a></p>
<p><a href="#exploration-publishing-criteria">Exploration Publishing Criteria</a></p>
<p><a class="oppia-about-right-menu-subnav" href="#publication-criteria">Publication Criteria</a></p>
<p><a class="oppia-about-right-menu-subnav" href="#featured-criteria">"Featured" Criteria</a></p>
<p><a href="#publication-policies">Publication Policy</a></p>
<p><a class="oppia-about-right-menu-subnav" href="#publishing-an-exploration">Publishing an Exploration</a></p>
<p><a class="oppia-about-right-menu-subnav" href="#editing-rights">Editing Rights</a></p>
<p><a class="oppia-about-right-menu-subnav" href="#releasing-an-exploration">Releasing an Exploration</a></p>
</div>
<script>
// This scrolls the page to the anchor clicked on in the quick links menu.
$('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '')) {
var target = $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
</script>
{% endblock %}
|
doc/doxygen.css | lukedirtwalker/Envision | /* The standard CSS for doxygen */
body, table, div, p, dl {
font: 400 14px/19px Roboto,sans-serif;
}
/* @group Heading Levels */
h1 {
font-size: 150%;
border-bottom: 1px solid #000000;
}
.title {
font-size: 150%;
font-weight: bold;
margin: 10px 2px;
}
h2 {
border-bottom: 1px solid #879ECB;
color: #354C7B;
font-size: 150%;
font-weight: normal;
margin-top: 1.75em;
padding-top: 8px;
padding-bottom: 4px;
width: 100%;
}
h3 {
font-size: 100%;
}
h1, h2, h3, h4, h5, h6 {
-webkit-transition: text-shadow 0.5s linear;
-moz-transition: text-shadow 0.5s linear;
-ms-transition: text-shadow 0.5s linear;
-o-transition: text-shadow 0.5s linear;
transition: text-shadow 0.5s linear;
margin-right: 15px;
}
h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow {
text-shadow: 0 0 15px cyan;
}
dt {
font-weight: bold;
}
div.multicol {
-moz-column-gap: 1em;
-webkit-column-gap: 1em;
-moz-column-count: 3;
-webkit-column-count: 3;
}
p.startli, p.startdd, p.starttd {
margin-top: 2px;
}
p.endli {
margin-bottom: 0px;
}
p.enddd {
margin-bottom: 4px;
}
p.endtd {
margin-bottom: 2px;
}
/* @end */
caption {
font-weight: bold;
}
span.legend {
font-size: 70%;
text-align: center;
}
h3.version {
font-size: 90%;
text-align: center;
}
div.qindex, div.navtab{
background-color: #EBEFF6;
border: 1px solid #A3B4D7;
text-align: center;
}
div.qindex, div.navpath {
width: 100%;
line-height: 140%;
}
div.navtab {
margin-right: 15px;
}
/* @group Link Styling */
a {
color: #3D578C;
font-weight: normal;
text-decoration: none;
}
.contents a:visited {
color: #4665A2;
}
a:hover {
text-decoration: underline;
}
a.qindex {
font-weight: bold;
}
a.qindexHL {
font-weight: bold;
background-color: #9CAFD4;
color: #ffffff;
border: 1px double #869DCA;
}
.contents a.qindexHL:visited {
color: #ffffff;
}
a.el {
font-weight: bold;
}
a.elRef {
}
a.code, a.code:visited {
color: #4665A2;
}
a.codeRef, a.codeRef:visited {
color: #4665A2;
}
/* @end */
dl.el {
margin-left: -1cm;
}
pre.fragment {
border: 1px solid #C4CFE5;
background-color: #FBFCFD;
padding: 4px 6px;
margin: 4px 8px 4px 2px;
overflow: auto;
word-wrap: break-word;
font-size: 9pt;
line-height: 125%;
font-family: monospace, fixed;
font-size: 105%;
}
div.fragment {
padding: 4px;
margin: 4px;
background-color: #FBFCFD;
border: 1px solid #C4CFE5;
}
div.line {
font-family: monospace, fixed;
font-size: 13px;
min-height: 13px;
line-height: 1.0;
text-wrap: unrestricted;
white-space: -moz-pre-wrap; /* Moz */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
white-space: pre-wrap; /* CSS3 */
word-wrap: break-word; /* IE 5.5+ */
text-indent: -53px;
padding-left: 53px;
padding-bottom: 0px;
margin: 0px;
-webkit-transition-property: background-color, box-shadow;
-webkit-transition-duration: 0.5s;
-moz-transition-property: background-color, box-shadow;
-moz-transition-duration: 0.5s;
-ms-transition-property: background-color, box-shadow;
-ms-transition-duration: 0.5s;
-o-transition-property: background-color, box-shadow;
-o-transition-duration: 0.5s;
transition-property: background-color, box-shadow;
transition-duration: 0.5s;
}
div.line.glow {
background-color: cyan;
box-shadow: 0 0 10px cyan;
}
span.lineno {
padding-right: 4px;
text-align: right;
border-right: 2px solid #0F0;
background-color: #E8E8E8;
white-space: pre;
}
span.lineno a {
background-color: #D8D8D8;
}
span.lineno a:hover {
background-color: #C8C8C8;
}
div.ah {
background-color: black;
font-weight: bold;
color: #ffffff;
margin-bottom: 3px;
margin-top: 3px;
padding: 0.2em;
border: solid thin #333;
border-radius: 0.5em;
-webkit-border-radius: .5em;
-moz-border-radius: .5em;
box-shadow: 2px 2px 3px #999;
-webkit-box-shadow: 2px 2px 3px #999;
-moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px;
background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444));
background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000);
}
div.groupHeader {
margin-left: 16px;
margin-top: 12px;
font-weight: bold;
}
div.groupText {
margin-left: 16px;
font-style: italic;
}
body {
background-color: white;
color: black;
margin: 0;
}
div.contents {
margin-top: 10px;
margin: 0 auto;
width: 1045px; /* This is like the Qt doc. */
}
td.indexkey {
background-color: #EBEFF6;
font-weight: bold;
border: 1px solid #C4CFE5;
margin: 2px 0px 2px 0;
padding: 2px 10px;
white-space: nowrap;
vertical-align: top;
}
td.indexvalue {
background-color: #EBEFF6;
border: 1px solid #C4CFE5;
padding: 2px 10px;
margin: 2px 0px;
}
tr.memlist {
background-color: #EEF1F7;
}
p.formulaDsp {
text-align: center;
}
img.formulaDsp {
}
img.formulaInl {
vertical-align: middle;
}
div.center {
text-align: center;
margin-top: 0px;
margin-bottom: 0px;
padding: 0px;
}
div.center img {
border: 0px;
}
address.footer {
text-align: right;
padding-right: 12px;
}
img.footer {
border: 0px;
vertical-align: middle;
}
/* @group Code Colorization */
span.keyword {
color: #008000
}
span.keywordtype {
color: #604020
}
span.keywordflow {
color: #e08000
}
span.comment {
color: #800000
}
span.preprocessor {
color: #806020
}
span.stringliteral {
color: #002080
}
span.charliteral {
color: #008080
}
span.vhdldigit {
color: #ff00ff
}
span.vhdlchar {
color: #000000
}
span.vhdlkeyword {
color: #700070
}
span.vhdllogic {
color: #ff0000
}
blockquote {
background-color: #F7F8FB;
border-left: 2px solid #9CAFD4;
margin: 0 24px 0 4px;
padding: 0 12px 0 16px;
}
/* @end */
/*
.search {
color: #003399;
font-weight: bold;
}
form.search {
margin-bottom: 0px;
margin-top: 0px;
}
input.search {
font-size: 75%;
color: #000080;
font-weight: normal;
background-color: #e8eef2;
}
*/
td.tiny {
font-size: 75%;
}
.dirtab {
padding: 4px;
border-collapse: collapse;
border: 1px solid #A3B4D7;
}
th.dirtab {
background: #EBEFF6;
font-weight: bold;
}
hr {
height: 0px;
border: none;
border-top: 1px solid #4A6AAA;
}
hr.footer {
height: 1px;
}
/* @group Member Descriptions */
table.memberdecls {
border-spacing: 0px;
padding: 0px;
}
.memberdecls td, .fieldtable tr {
-webkit-transition-property: background-color, box-shadow;
-webkit-transition-duration: 0.5s;
-moz-transition-property: background-color, box-shadow;
-moz-transition-duration: 0.5s;
-ms-transition-property: background-color, box-shadow;
-ms-transition-duration: 0.5s;
-o-transition-property: background-color, box-shadow;
-o-transition-duration: 0.5s;
transition-property: background-color, box-shadow;
transition-duration: 0.5s;
}
.memberdecls td.glow, .fieldtable tr.glow {
background-color: cyan;
box-shadow: 0 0 15px cyan;
}
.mdescLeft, .mdescRight,
.memItemLeft, .memItemRight,
.memTemplItemLeft, .memTemplItemRight, .memTemplParams {
background-color: #F9FAFC;
border: none;
margin: 4px;
padding: 1px 0 0 8px;
}
.mdescLeft, .mdescRight {
padding: 0px 8px 4px 8px;
color: #555;
}
.memItemLeft, .memItemRight, .memTemplParams {
border-bottom: 1px solid #DEE4F0;
}
.memItemLeft, .memTemplItemLeft {
white-space: nowrap;
}
.memItemRight {
width: 100%;
}
.memTemplParams {
color: #4665A2;
white-space: nowrap;
}
/* @end */
/* @group Member Details */
/* Styles for detailed member documentation */
.memtemplate {
font-size: 80%;
color: #4665A2;
font-weight: normal;
margin-left: 9px;
}
.memnav {
background-color: #EBEFF6;
border: 1px solid #A3B4D7;
text-align: center;
margin: 2px;
margin-right: 15px;
padding: 2px;
}
.mempage {
width: 100%;
}
.memitem {
padding: 0;
margin-bottom: 10px;
margin-right: 5px;
-webkit-transition: box-shadow 0.5s linear;
-moz-transition: box-shadow 0.5s linear;
-ms-transition: box-shadow 0.5s linear;
-o-transition: box-shadow 0.5s linear;
transition: box-shadow 0.5s linear;
display: table !important;
width: 100%;
}
.memitem.glow {
box-shadow: 0 0 15px cyan;
}
.memname {
font-weight: bold;
margin-left: 6px;
}
.memname td {
vertical-align: bottom;
}
.memproto, dl.reflist dt {
border-top: 1px solid #A8B8D9;
border-left: 1px solid #A8B8D9;
border-right: 1px solid #A8B8D9;
padding: 6px 0px 6px 0px;
color: #253555;
font-weight: bold;
text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
background-image:url('nav_f.png');
background-repeat:repeat-x;
background-color: #E2E8F2;
/* opera specific markup */
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
border-top-right-radius: 4px;
border-top-left-radius: 4px;
/* firefox specific markup */
-moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
-moz-border-radius-topright: 4px;
-moz-border-radius-topleft: 4px;
/* webkit specific markup */
-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
-webkit-border-top-right-radius: 4px;
-webkit-border-top-left-radius: 4px;
}
.memdoc, dl.reflist dd {
border-bottom: 1px solid #A8B8D9;
border-left: 1px solid #A8B8D9;
border-right: 1px solid #A8B8D9;
padding: 6px 10px 2px 10px;
background-color: #FBFCFD;
border-top-width: 0;
background-image:url('nav_g.png');
background-repeat:repeat-x;
background-color: #FFFFFF;
/* opera specific markup */
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
/* firefox specific markup */
-moz-border-radius-bottomleft: 4px;
-moz-border-radius-bottomright: 4px;
-moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
/* webkit specific markup */
-webkit-border-bottom-left-radius: 4px;
-webkit-border-bottom-right-radius: 4px;
-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
}
dl.reflist dt {
padding: 5px;
}
dl.reflist dd {
margin: 0px 0px 10px 0px;
padding: 5px;
}
.paramkey {
text-align: right;
}
.paramtype {
white-space: nowrap;
}
.paramname {
color: #602020;
white-space: nowrap;
}
.paramname em {
font-style: normal;
}
.paramname code {
line-height: 14px;
}
.params, .retval, .exception, .tparams {
margin-left: 0px;
padding-left: 0px;
}
.params .paramname, .retval .paramname {
font-weight: bold;
vertical-align: top;
}
.params .paramtype {
font-style: italic;
vertical-align: top;
}
.params .paramdir {
font-family: "courier new",courier,monospace;
vertical-align: top;
}
table.mlabels {
border-spacing: 0px;
}
td.mlabels-left {
width: 100%;
padding: 0px;
}
td.mlabels-right {
vertical-align: bottom;
padding: 0px;
white-space: nowrap;
}
span.mlabels {
margin-left: 8px;
}
span.mlabel {
background-color: #728DC1;
border-top:1px solid #5373B4;
border-left:1px solid #5373B4;
border-right:1px solid #C4CFE5;
border-bottom:1px solid #C4CFE5;
text-shadow: none;
color: white;
margin-right: 4px;
padding: 2px 3px;
border-radius: 3px;
font-size: 7pt;
white-space: nowrap;
}
/* @end */
/* these are for tree view when not used as main index */
div.directory {
margin: 10px 0px;
border-top: 1px solid #A8B8D9;
border-bottom: 1px solid #A8B8D9;
width: 100%;
}
.directory table {
border-collapse:collapse;
}
.directory td {
margin: 0px;
padding: 0px;
vertical-align: top;
}
.directory td.entry {
white-space: nowrap;
padding-right: 6px;
}
.directory td.entry a {
outline:none;
}
.directory td.entry a img {
border: none;
}
.directory td.desc {
width: 100%;
padding-left: 6px;
padding-right: 6px;
padding-top: 3px;
border-left: 1px solid rgba(0,0,0,0.05);
}
.directory tr.even {
padding-left: 6px;
background-color: #F7F8FB;
}
.directory img {
vertical-align: -30%;
}
.directory .levels {
white-space: nowrap;
width: 100%;
text-align: right;
font-size: 9pt;
}
.directory .levels span {
cursor: pointer;
padding-left: 2px;
padding-right: 2px;
color: #3D578C;
}
div.dynheader {
margin-top: 8px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
address {
font-style: normal;
color: #2A3D61;
}
table.doxtable {
border-collapse:collapse;
margin-top: 4px;
margin-bottom: 4px;
}
table.doxtable td, table.doxtable th {
border: 1px solid #2D4068;
padding: 3px 7px 2px;
}
table.doxtable th {
background-color: #374F7F;
color: #FFFFFF;
font-size: 110%;
padding-bottom: 4px;
padding-top: 5px;
}
table.fieldtable {
width: 100%;
margin-bottom: 10px;
border: 1px solid #A8B8D9;
border-spacing: 0px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
-moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px;
-webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
}
.fieldtable td, .fieldtable th {
padding: 3px 7px 2px;
}
.fieldtable td.fieldtype, .fieldtable td.fieldname {
white-space: nowrap;
border-right: 1px solid #A8B8D9;
border-bottom: 1px solid #A8B8D9;
vertical-align: top;
}
.fieldtable td.fielddoc {
border-bottom: 1px solid #A8B8D9;
width: 100%;
}
.fieldtable tr:last-child td {
border-bottom: none;
}
.fieldtable th {
background-image:url('nav_f.png');
background-repeat:repeat-x;
background-color: #E2E8F2;
font-size: 90%;
color: #253555;
padding-bottom: 4px;
padding-top: 5px;
text-align:left;
-moz-border-radius-topleft: 4px;
-moz-border-radius-topright: 4px;
-webkit-border-top-left-radius: 4px;
-webkit-border-top-right-radius: 4px;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
border-bottom: 1px solid #A8B8D9;
}
.tabsearch {
top: 0px;
left: 10px;
height: 36px;
background-image: url('tab_b.png');
z-index: 101;
overflow: hidden;
font-size: 13px;
}
.navpath ul
{
font-size: 11px;
background-image:url('tab_b.png');
background-repeat:repeat-x;
height:30px;
line-height:30px;
color:#8AA0CC;
border:solid 1px #C2CDE4;
overflow:hidden;
margin:0px;
padding:0px;
}
.navpath li
{
list-style-type:none;
float:left;
padding-left:10px;
padding-right:15px;
background-image:url('bc_s.png');
background-repeat:no-repeat;
background-position:right;
color:#364D7C;
}
.navpath li.navelem a
{
height:32px;
display:block;
text-decoration: none;
outline: none;
font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif;
}
.navpath li.navelem a:hover
{
color:#6884BD;
}
.navpath li.footer
{
list-style-type:none;
float:right;
padding-left:10px;
padding-right:15px;
background-image:none;
background-repeat:no-repeat;
background-position:right;
color:#364D7C;
font-size: 8pt;
}
div.summary
{
float: right;
font-size: 8pt;
padding-right: 5px;
width: 50%;
text-align: right;
}
div.summary a
{
white-space: nowrap;
}
div.ingroups
{
font-size: 8pt;
width: 50%;
text-align: left;
}
div.ingroups a
{
white-space: nowrap;
}
div.header
{
background-image:url('nav_h.png');
background-repeat:repeat-x;
background-color: #F9FAFC;
margin: 0 auto;
border-bottom: 1px solid #C4CFE5;
text-align: center;
}
div.headertitle
{
padding: 5px 5px 5px 10px;
}
dl
{
padding: 0 0 0 10px;
}
/* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug */
dl.section
{
margin-left: 0px;
padding-left: 0px;
}
dl.note
{
margin-left:-7px;
padding-left: 3px;
border-left:4px solid;
border-color: #D0C000;
}
dl.warning, dl.attention
{
margin-left:-7px;
padding-left: 3px;
border-left:4px solid;
border-color: #FF0000;
}
dl.pre, dl.post, dl.invariant
{
margin-left:-7px;
padding-left: 3px;
border-left:4px solid;
border-color: #00D000;
}
dl.deprecated
{
margin-left:-7px;
padding-left: 3px;
border-left:4px solid;
border-color: #505050;
}
dl.todo
{
margin-left:-7px;
padding-left: 3px;
border-left:4px solid;
border-color: #00C0E0;
}
dl.test
{
margin-left:-7px;
padding-left: 3px;
border-left:4px solid;
border-color: #3030E0;
}
dl.bug
{
margin-left:-7px;
padding-left: 3px;
border-left:4px solid;
border-color: #C08050;
}
dl.section dd {
margin-bottom: 6px;
}
#projectlogo
{
text-align: center;
vertical-align: bottom;
border-collapse: separate;
}
#projectlogo img
{
border: 0px none;
}
#projectname
{
font: 300% Tahoma, Arial,sans-serif;
margin: 0px;
padding: 2px 0px;
}
#projectbrief
{
font: 120% Tahoma, Arial,sans-serif;
margin: 0px;
padding: 0px;
}
#projectnumber
{
font: 50% Tahoma, Arial,sans-serif;
margin: 0px;
padding: 0px;
}
#titlearea
{
padding: 0px;
margin: 0px;
width: 100%;
border-bottom: 1px solid #5373B4;
}
.image
{
text-align: center;
}
.dotgraph
{
text-align: center;
}
.mscgraph
{
text-align: center;
}
.caption
{
font-weight: bold;
}
div.zoom
{
border: 1px solid #90A5CE;
}
dl.citelist {
margin-bottom:50px;
}
dl.citelist dt {
color:#334975;
float:left;
font-weight:bold;
margin-right:10px;
padding:5px;
}
dl.citelist dd {
margin:2px 0;
padding:5px 0;
}
div.toc {
padding: 14px 25px;
background-color: #F4F6FA;
border: 1px solid #D8DFEE;
border-radius: 7px 7px 7px 7px;
float: right;
height: auto;
margin: 0 20px 10px 10px;
width: 200px;
}
div.toc li {
background: url("bdwn.png") no-repeat scroll 0 5px transparent;
font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif;
margin-top: 5px;
padding-left: 10px;
padding-top: 2px;
}
div.toc h3 {
font: bold 12px/1.2 Arial,FreeSans,sans-serif;
color: #4665A2;
border-bottom: 0 none;
margin: 0;
}
div.toc ul {
list-style: none outside none;
border: medium none;
padding: 0px;
}
div.toc li.level1 {
margin-left: 0px;
}
div.toc li.level2 {
margin-left: 15px;
}
div.toc li.level3 {
margin-left: 30px;
}
div.toc li.level4 {
margin-left: 45px;
}
.inherit_header {
font-weight: bold;
color: gray;
cursor: pointer;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.inherit_header td {
padding: 6px 0px 2px 5px;
}
.inherit {
display: none;
}
tr.heading h2 {
margin-top: 12px;
margin-bottom: 4px;
}
@media print
{
#top { display: none; }
#side-nav { display: none; }
#nav-path { display: none; }
body { overflow:visible; }
h1, h2, h3, h4, h5, h6 { page-break-after: avoid; }
.summary { display: none; }
.memitem { page-break-inside: avoid; }
#doc-content
{
margin-left:0 !important;
height:auto !important;
width:auto !important;
overflow:inherit;
display:inline;
}
}
|
help_files/ErMagicSiteHelp.html | Caoimhinmg/PmagPy | <!DOCTYPE HTML>
<HTML>
<HEAD>
<META NAME="description" CONTENT="ErMagicBuilder help window">
<META NAME="keywords" CONTENT="ErMagicBuilderHelp">
<META NAME="resource-type" CONTENT="document">
<META NAME="distribution" CONTENT="global">
<META NAME="Generator" CONTENT="LaTeX2HTML v2008">
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
<LINK REL="STYLESHEET" HREF="MagIC_Model_Builder_Help.css">
<LINK REL="next" HREF="node1.html">
</HEAD>
<h3> Earth-Ref Magic Site Help Window</h3>
<HEAD>
<BODY >
<BR>
<p>
<UL>
<LI>Check location name (under the header er_location_name).
</LI>
<LI>Fill site class (under the header site_class).<br>
The drop-down menu uses controlled vocabularies from: <TT><A NAME="tex2html1"
HREF="http://earthref.org/cgi-bin/er-s1-controlled-vocabularies.cgi?category=class&type=E">site class controlled vocabularies</A></TT><br>
To edit values for the entire column, click the column header.
Class can take multiple values in the form of a colon-delimited list, i.e. Extrusive:Igneous.
You may use the drop-down menus to add as many values as needed in these columns.
</LI>
<LI>Fill site lithology (under the header site_lithology).<br>
Use controlled vocabularies from <TT><A NAME="tex2html2"
HREF="http://earthref.org/cgi-bin/er-s1-controlled-vocabularies.cgi?category=lithology&type=E">site lithology controlled vocabularies</A></TT>. If you can't find any appropriate definition use: Not Specified.<br>
To edit values for the entire column, click the column header.
Lithology can take multiple values in the form of a colon-delimited list, i.e. Silicate-Sandstone:Silicate-Mud.
You may use the drop-down menus to add as many values as needed in these columns.
</LI>
<LI>Fill site type (under the header site_type). <br>
Use controlled vocabularies from <TT><A NAME="tex2html3"
HREF="http://earthref.org/cgi-bin/er-s1-controlled-vocabularies.cgi?category=type&type=E">site type controlled vocabularies</A></TT>. If you can't find any appropriate definition use: Not Specified.<br>
To edit values for the entire column, click the column header.
Type can take multiple values in the form of a colon-delimited list, i.e. Baked-Mud:Baked-Rock
You may use the drop-down menus to add as many values as needed in these columns.
</LI>
<LI>Fill site definition (under the header site_definition: the letter "s" for single site or the letter "c" for composite site (including various units).<br>
To edit values for the entire column, click the column header.
</LI>
<LI>Fill site longitude (under the header site_lon):Decimal degrees between 0 and 360.
</LI>
<LI>Fill site latitude (under the header site_lat): Decimal degrees between -90 and 90
</LI>
<LI>Note: changes to site type, class, etc. will overwrite sample type, class, etc. However, you will be able to specify any differences between (for example) site type and sample type in the next step.
</UL>
<P>
</BODY>
</HTML>
|
themes/content-slider.html | inoyyth/proderma | <!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta charset="utf-8" />
<title>Content sliders based on Bootstrap modals - Ace Admin</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<!-- bootstrap & fontawesome -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<link rel="stylesheet" href="assets/font-awesome/4.5.0/css/font-awesome.min.css" />
<!-- page specific plugin styles -->
<!-- text fonts -->
<link rel="stylesheet" href="assets/css/fonts.googleapis.com.css" />
<!-- ace styles -->
<link rel="stylesheet" href="assets/css/ace.min.css" class="ace-main-stylesheet" id="main-ace-style" />
<!--[if lte IE 9]>
<link rel="stylesheet" href="assets/css/ace-part2.min.css" class="ace-main-stylesheet" />
<![endif]-->
<link rel="stylesheet" href="assets/css/ace-skins.min.css" />
<link rel="stylesheet" href="assets/css/ace-rtl.min.css" />
<!--[if lte IE 9]>
<link rel="stylesheet" href="assets/css/ace-ie.min.css" />
<![endif]-->
<!-- inline styles related to this page -->
<!-- ace settings handler -->
<script src="assets/js/ace-extra.min.js"></script>
<!-- HTML5shiv and Respond.js for IE8 to support HTML5 elements and media queries -->
<!--[if lte IE 8]>
<script src="assets/js/html5shiv.min.js"></script>
<script src="assets/js/respond.min.js"></script>
<![endif]-->
</head>
<body class="no-skin">
<div id="navbar" class="navbar navbar-default ace-save-state">
<div class="navbar-container ace-save-state" id="navbar-container">
<button type="button" class="navbar-toggle menu-toggler pull-left" id="menu-toggler" data-target="#sidebar">
<span class="sr-only">Toggle sidebar</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="navbar-header pull-left">
<a href="index.html" class="navbar-brand">
<small>
<i class="fa fa-leaf"></i>
Ace Admin
</small>
</a>
</div>
<div class="navbar-buttons navbar-header pull-right" role="navigation">
<ul class="nav ace-nav">
<li class="grey dropdown-modal">
<a data-toggle="dropdown" class="dropdown-toggle" href="#">
<i class="ace-icon fa fa-tasks"></i>
<span class="badge badge-grey">4</span>
</a>
<ul class="dropdown-menu-right dropdown-navbar dropdown-menu dropdown-caret dropdown-close">
<li class="dropdown-header">
<i class="ace-icon fa fa-check"></i>
4 Tasks to complete
</li>
<li class="dropdown-content">
<ul class="dropdown-menu dropdown-navbar">
<li>
<a href="#">
<div class="clearfix">
<span class="pull-left">Software Update</span>
<span class="pull-right">65%</span>
</div>
<div class="progress progress-mini">
<div style="width:65%" class="progress-bar"></div>
</div>
</a>
</li>
<li>
<a href="#">
<div class="clearfix">
<span class="pull-left">Hardware Upgrade</span>
<span class="pull-right">35%</span>
</div>
<div class="progress progress-mini">
<div style="width:35%" class="progress-bar progress-bar-danger"></div>
</div>
</a>
</li>
<li>
<a href="#">
<div class="clearfix">
<span class="pull-left">Unit Testing</span>
<span class="pull-right">15%</span>
</div>
<div class="progress progress-mini">
<div style="width:15%" class="progress-bar progress-bar-warning"></div>
</div>
</a>
</li>
<li>
<a href="#">
<div class="clearfix">
<span class="pull-left">Bug Fixes</span>
<span class="pull-right">90%</span>
</div>
<div class="progress progress-mini progress-striped active">
<div style="width:90%" class="progress-bar progress-bar-success"></div>
</div>
</a>
</li>
</ul>
</li>
<li class="dropdown-footer">
<a href="#">
See tasks with details
<i class="ace-icon fa fa-arrow-right"></i>
</a>
</li>
</ul>
</li>
<li class="purple dropdown-modal">
<a data-toggle="dropdown" class="dropdown-toggle" href="#">
<i class="ace-icon fa fa-bell icon-animated-bell"></i>
<span class="badge badge-important">8</span>
</a>
<ul class="dropdown-menu-right dropdown-navbar navbar-pink dropdown-menu dropdown-caret dropdown-close">
<li class="dropdown-header">
<i class="ace-icon fa fa-exclamation-triangle"></i>
8 Notifications
</li>
<li class="dropdown-content">
<ul class="dropdown-menu dropdown-navbar navbar-pink">
<li>
<a href="#">
<div class="clearfix">
<span class="pull-left">
<i class="btn btn-xs no-hover btn-pink fa fa-comment"></i>
New Comments
</span>
<span class="pull-right badge badge-info">+12</span>
</div>
</a>
</li>
<li>
<a href="#">
<i class="btn btn-xs btn-primary fa fa-user"></i>
Bob just signed up as an editor ...
</a>
</li>
<li>
<a href="#">
<div class="clearfix">
<span class="pull-left">
<i class="btn btn-xs no-hover btn-success fa fa-shopping-cart"></i>
New Orders
</span>
<span class="pull-right badge badge-success">+8</span>
</div>
</a>
</li>
<li>
<a href="#">
<div class="clearfix">
<span class="pull-left">
<i class="btn btn-xs no-hover btn-info fa fa-twitter"></i>
Followers
</span>
<span class="pull-right badge badge-info">+11</span>
</div>
</a>
</li>
</ul>
</li>
<li class="dropdown-footer">
<a href="#">
See all notifications
<i class="ace-icon fa fa-arrow-right"></i>
</a>
</li>
</ul>
</li>
<li class="green dropdown-modal">
<a data-toggle="dropdown" class="dropdown-toggle" href="#">
<i class="ace-icon fa fa-envelope icon-animated-vertical"></i>
<span class="badge badge-success">5</span>
</a>
<ul class="dropdown-menu-right dropdown-navbar dropdown-menu dropdown-caret dropdown-close">
<li class="dropdown-header">
<i class="ace-icon fa fa-envelope-o"></i>
5 Messages
</li>
<li class="dropdown-content">
<ul class="dropdown-menu dropdown-navbar">
<li>
<a href="#" class="clearfix">
<img src="assets/images/avatars/avatar.png" class="msg-photo" alt="Alex's Avatar" />
<span class="msg-body">
<span class="msg-title">
<span class="blue">Alex:</span>
Ciao sociis natoque penatibus et auctor ...
</span>
<span class="msg-time">
<i class="ace-icon fa fa-clock-o"></i>
<span>a moment ago</span>
</span>
</span>
</a>
</li>
<li>
<a href="#" class="clearfix">
<img src="assets/images/avatars/avatar3.png" class="msg-photo" alt="Susan's Avatar" />
<span class="msg-body">
<span class="msg-title">
<span class="blue">Susan:</span>
Vestibulum id ligula porta felis euismod ...
</span>
<span class="msg-time">
<i class="ace-icon fa fa-clock-o"></i>
<span>20 minutes ago</span>
</span>
</span>
</a>
</li>
<li>
<a href="#" class="clearfix">
<img src="assets/images/avatars/avatar4.png" class="msg-photo" alt="Bob's Avatar" />
<span class="msg-body">
<span class="msg-title">
<span class="blue">Bob:</span>
Nullam quis risus eget urna mollis ornare ...
</span>
<span class="msg-time">
<i class="ace-icon fa fa-clock-o"></i>
<span>3:15 pm</span>
</span>
</span>
</a>
</li>
<li>
<a href="#" class="clearfix">
<img src="assets/images/avatars/avatar2.png" class="msg-photo" alt="Kate's Avatar" />
<span class="msg-body">
<span class="msg-title">
<span class="blue">Kate:</span>
Ciao sociis natoque eget urna mollis ornare ...
</span>
<span class="msg-time">
<i class="ace-icon fa fa-clock-o"></i>
<span>1:33 pm</span>
</span>
</span>
</a>
</li>
<li>
<a href="#" class="clearfix">
<img src="assets/images/avatars/avatar5.png" class="msg-photo" alt="Fred's Avatar" />
<span class="msg-body">
<span class="msg-title">
<span class="blue">Fred:</span>
Vestibulum id penatibus et auctor ...
</span>
<span class="msg-time">
<i class="ace-icon fa fa-clock-o"></i>
<span>10:09 am</span>
</span>
</span>
</a>
</li>
</ul>
</li>
<li class="dropdown-footer">
<a href="inbox.html">
See all messages
<i class="ace-icon fa fa-arrow-right"></i>
</a>
</li>
</ul>
</li>
<li class="light-blue dropdown-modal">
<a data-toggle="dropdown" href="#" class="dropdown-toggle">
<img class="nav-user-photo" src="assets/images/avatars/user.jpg" alt="Jason's Photo" />
<span class="user-info">
<small>Welcome,</small>
Jason
</span>
<i class="ace-icon fa fa-caret-down"></i>
</a>
<ul class="user-menu dropdown-menu-right dropdown-menu dropdown-yellow dropdown-caret dropdown-close">
<li>
<a href="#">
<i class="ace-icon fa fa-cog"></i>
Settings
</a>
</li>
<li>
<a href="profile.html">
<i class="ace-icon fa fa-user"></i>
Profile
</a>
</li>
<li class="divider"></li>
<li>
<a href="#">
<i class="ace-icon fa fa-power-off"></i>
Logout
</a>
</li>
</ul>
</li>
</ul>
</div>
</div><!-- /.navbar-container -->
</div>
<div class="main-container ace-save-state" id="main-container">
<script type="text/javascript">
try{ace.settings.loadState('main-container')}catch(e){}
</script>
<div id="sidebar" class="sidebar responsive ace-save-state">
<script type="text/javascript">
try{ace.settings.loadState('sidebar')}catch(e){}
</script>
<div class="sidebar-shortcuts" id="sidebar-shortcuts">
<div class="sidebar-shortcuts-large" id="sidebar-shortcuts-large">
<button class="btn btn-success">
<i class="ace-icon fa fa-signal"></i>
</button>
<button class="btn btn-info">
<i class="ace-icon fa fa-pencil"></i>
</button>
<button class="btn btn-warning">
<i class="ace-icon fa fa-users"></i>
</button>
<button class="btn btn-danger">
<i class="ace-icon fa fa-cogs"></i>
</button>
</div>
<div class="sidebar-shortcuts-mini" id="sidebar-shortcuts-mini">
<span class="btn btn-success"></span>
<span class="btn btn-info"></span>
<span class="btn btn-warning"></span>
<span class="btn btn-danger"></span>
</div>
</div><!-- /.sidebar-shortcuts -->
<ul class="nav nav-list">
<li class="">
<a href="index.html">
<i class="menu-icon fa fa-tachometer"></i>
<span class="menu-text"> Dashboard </span>
</a>
<b class="arrow"></b>
</li>
<li class="active open">
<a href="#" class="dropdown-toggle">
<i class="menu-icon fa fa-desktop"></i>
<span class="menu-text">
UI & Elements
</span>
<b class="arrow fa fa-angle-down"></b>
</a>
<b class="arrow"></b>
<ul class="submenu">
<li class="">
<a href="#" class="dropdown-toggle">
<i class="menu-icon fa fa-caret-right"></i>
Layouts
<b class="arrow fa fa-angle-down"></b>
</a>
<b class="arrow"></b>
<ul class="submenu">
<li class="">
<a href="top-menu.html">
<i class="menu-icon fa fa-caret-right"></i>
Top Menu
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="two-menu-1.html">
<i class="menu-icon fa fa-caret-right"></i>
Two Menus 1
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="two-menu-2.html">
<i class="menu-icon fa fa-caret-right"></i>
Two Menus 2
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="mobile-menu-1.html">
<i class="menu-icon fa fa-caret-right"></i>
Default Mobile Menu
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="mobile-menu-2.html">
<i class="menu-icon fa fa-caret-right"></i>
Mobile Menu 2
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="mobile-menu-3.html">
<i class="menu-icon fa fa-caret-right"></i>
Mobile Menu 3
</a>
<b class="arrow"></b>
</li>
</ul>
</li>
<li class="">
<a href="typography.html">
<i class="menu-icon fa fa-caret-right"></i>
Typography
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="elements.html">
<i class="menu-icon fa fa-caret-right"></i>
Elements
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="buttons.html">
<i class="menu-icon fa fa-caret-right"></i>
Buttons & Icons
</a>
<b class="arrow"></b>
</li>
<li class="active">
<a href="content-slider.html">
<i class="menu-icon fa fa-caret-right"></i>
Content Sliders
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="treeview.html">
<i class="menu-icon fa fa-caret-right"></i>
Treeview
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="jquery-ui.html">
<i class="menu-icon fa fa-caret-right"></i>
jQuery UI
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="nestable-list.html">
<i class="menu-icon fa fa-caret-right"></i>
Nestable Lists
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="#" class="dropdown-toggle">
<i class="menu-icon fa fa-caret-right"></i>
Three Level Menu
<b class="arrow fa fa-angle-down"></b>
</a>
<b class="arrow"></b>
<ul class="submenu">
<li class="">
<a href="#">
<i class="menu-icon fa fa-leaf green"></i>
Item #1
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="#" class="dropdown-toggle">
<i class="menu-icon fa fa-pencil orange"></i>
4th level
<b class="arrow fa fa-angle-down"></b>
</a>
<b class="arrow"></b>
<ul class="submenu">
<li class="">
<a href="#">
<i class="menu-icon fa fa-plus purple"></i>
Add Product
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="#">
<i class="menu-icon fa fa-eye pink"></i>
View Products
</a>
<b class="arrow"></b>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li class="">
<a href="#" class="dropdown-toggle">
<i class="menu-icon fa fa-list"></i>
<span class="menu-text"> Tables </span>
<b class="arrow fa fa-angle-down"></b>
</a>
<b class="arrow"></b>
<ul class="submenu">
<li class="">
<a href="tables.html">
<i class="menu-icon fa fa-caret-right"></i>
Simple & Dynamic
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="jqgrid.html">
<i class="menu-icon fa fa-caret-right"></i>
jqGrid plugin
</a>
<b class="arrow"></b>
</li>
</ul>
</li>
<li class="">
<a href="#" class="dropdown-toggle">
<i class="menu-icon fa fa-pencil-square-o"></i>
<span class="menu-text"> Forms </span>
<b class="arrow fa fa-angle-down"></b>
</a>
<b class="arrow"></b>
<ul class="submenu">
<li class="">
<a href="form-elements.html">
<i class="menu-icon fa fa-caret-right"></i>
Form Elements
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="form-elements-2.html">
<i class="menu-icon fa fa-caret-right"></i>
Form Elements 2
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="form-wizard.html">
<i class="menu-icon fa fa-caret-right"></i>
Wizard & Validation
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="wysiwyg.html">
<i class="menu-icon fa fa-caret-right"></i>
Wysiwyg & Markdown
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="dropzone.html">
<i class="menu-icon fa fa-caret-right"></i>
Dropzone File Upload
</a>
<b class="arrow"></b>
</li>
</ul>
</li>
<li class="">
<a href="widgets.html">
<i class="menu-icon fa fa-list-alt"></i>
<span class="menu-text"> Widgets </span>
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="calendar.html">
<i class="menu-icon fa fa-calendar"></i>
<span class="menu-text">
Calendar
<span class="badge badge-transparent tooltip-error" title="2 Important Events">
<i class="ace-icon fa fa-exclamation-triangle red bigger-130"></i>
</span>
</span>
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="gallery.html">
<i class="menu-icon fa fa-picture-o"></i>
<span class="menu-text"> Gallery </span>
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="#" class="dropdown-toggle">
<i class="menu-icon fa fa-tag"></i>
<span class="menu-text"> More Pages </span>
<b class="arrow fa fa-angle-down"></b>
</a>
<b class="arrow"></b>
<ul class="submenu">
<li class="">
<a href="profile.html">
<i class="menu-icon fa fa-caret-right"></i>
User Profile
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="inbox.html">
<i class="menu-icon fa fa-caret-right"></i>
Inbox
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="pricing.html">
<i class="menu-icon fa fa-caret-right"></i>
Pricing Tables
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="invoice.html">
<i class="menu-icon fa fa-caret-right"></i>
Invoice
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="timeline.html">
<i class="menu-icon fa fa-caret-right"></i>
Timeline
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="search.html">
<i class="menu-icon fa fa-caret-right"></i>
Search Results
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="email.html">
<i class="menu-icon fa fa-caret-right"></i>
Email Templates
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="login.html">
<i class="menu-icon fa fa-caret-right"></i>
Login & Register
</a>
<b class="arrow"></b>
</li>
</ul>
</li>
<li class="">
<a href="#" class="dropdown-toggle">
<i class="menu-icon fa fa-file-o"></i>
<span class="menu-text">
Other Pages
<span class="badge badge-primary">5</span>
</span>
<b class="arrow fa fa-angle-down"></b>
</a>
<b class="arrow"></b>
<ul class="submenu">
<li class="">
<a href="faq.html">
<i class="menu-icon fa fa-caret-right"></i>
FAQ
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="error-404.html">
<i class="menu-icon fa fa-caret-right"></i>
Error 404
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="error-500.html">
<i class="menu-icon fa fa-caret-right"></i>
Error 500
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="grid.html">
<i class="menu-icon fa fa-caret-right"></i>
Grid
</a>
<b class="arrow"></b>
</li>
<li class="">
<a href="blank.html">
<i class="menu-icon fa fa-caret-right"></i>
Blank Page
</a>
<b class="arrow"></b>
</li>
</ul>
</li>
</ul><!-- /.nav-list -->
<div class="sidebar-toggle sidebar-collapse" id="sidebar-collapse">
<i id="sidebar-toggle-icon" class="ace-icon fa fa-angle-double-left ace-save-state" data-icon1="ace-icon fa fa-angle-double-left" data-icon2="ace-icon fa fa-angle-double-right"></i>
</div>
</div>
<div class="main-content">
<div class="main-content-inner">
<div class="breadcrumbs ace-save-state" id="breadcrumbs">
<ul class="breadcrumb">
<li>
<i class="ace-icon fa fa-home home-icon"></i>
<a href="#">Home</a>
</li>
<li>
<a href="#">UI & Elements</a>
</li>
<li class="active">Content Sliders</li>
</ul><!-- /.breadcrumb -->
<div class="nav-search" id="nav-search">
<form class="form-search">
<span class="input-icon">
<input type="text" placeholder="Search ..." class="nav-search-input" id="nav-search-input" autocomplete="off" />
<i class="ace-icon fa fa-search nav-search-icon"></i>
</span>
</form>
</div><!-- /.nav-search -->
</div>
<div class="page-content">
<div class="ace-settings-container" id="ace-settings-container">
<div class="btn btn-app btn-xs btn-warning ace-settings-btn" id="ace-settings-btn">
<i class="ace-icon fa fa-cog bigger-130"></i>
</div>
<div class="ace-settings-box clearfix" id="ace-settings-box">
<div class="pull-left width-50">
<div class="ace-settings-item">
<div class="pull-left">
<select id="skin-colorpicker" class="hide">
<option data-skin="no-skin" value="#438EB9">#438EB9</option>
<option data-skin="skin-1" value="#222A2D">#222A2D</option>
<option data-skin="skin-2" value="#C6487E">#C6487E</option>
<option data-skin="skin-3" value="#D0D0D0">#D0D0D0</option>
</select>
</div>
<span> Choose Skin</span>
</div>
<div class="ace-settings-item">
<input type="checkbox" class="ace ace-checkbox-2 ace-save-state" id="ace-settings-navbar" autocomplete="off" />
<label class="lbl" for="ace-settings-navbar"> Fixed Navbar</label>
</div>
<div class="ace-settings-item">
<input type="checkbox" class="ace ace-checkbox-2 ace-save-state" id="ace-settings-sidebar" autocomplete="off" />
<label class="lbl" for="ace-settings-sidebar"> Fixed Sidebar</label>
</div>
<div class="ace-settings-item">
<input type="checkbox" class="ace ace-checkbox-2 ace-save-state" id="ace-settings-breadcrumbs" autocomplete="off" />
<label class="lbl" for="ace-settings-breadcrumbs"> Fixed Breadcrumbs</label>
</div>
<div class="ace-settings-item">
<input type="checkbox" class="ace ace-checkbox-2" id="ace-settings-rtl" autocomplete="off" />
<label class="lbl" for="ace-settings-rtl"> Right To Left (rtl)</label>
</div>
<div class="ace-settings-item">
<input type="checkbox" class="ace ace-checkbox-2 ace-save-state" id="ace-settings-add-container" autocomplete="off" />
<label class="lbl" for="ace-settings-add-container">
Inside
<b>.container</b>
</label>
</div>
</div><!-- /.pull-left -->
<div class="pull-left width-50">
<div class="ace-settings-item">
<input type="checkbox" class="ace ace-checkbox-2" id="ace-settings-hover" autocomplete="off" />
<label class="lbl" for="ace-settings-hover"> Submenu on Hover</label>
</div>
<div class="ace-settings-item">
<input type="checkbox" class="ace ace-checkbox-2" id="ace-settings-compact" autocomplete="off" />
<label class="lbl" for="ace-settings-compact"> Compact Sidebar</label>
</div>
<div class="ace-settings-item">
<input type="checkbox" class="ace ace-checkbox-2" id="ace-settings-highlight" autocomplete="off" />
<label class="lbl" for="ace-settings-highlight"> Alt. Active Item</label>
</div>
</div><!-- /.pull-left -->
</div><!-- /.ace-settings-box -->
</div><!-- /.ace-settings-container -->
<div class="page-header">
<h1>Content sliders based on Bootstrap modals
</h1>
</div><!-- /.page-header -->
<div class="row">
<div class="col-xs-12">
<!-- PAGE CONTENT BEGINS -->
<div class="alert alert-info">
<button class="close" data-dismiss="alert">
<i class="ace-icon fa fa-times"></i>
</button>
You can use any button to toggle sliders!
</div>
<div id="top-menu" class="modal aside" data-fixed="true" data-placement="top" data-background="true" data-backdrop="invisible" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body container">
<div class="row">
<div class="col-sm-5 col-sm-offset-1 white">
<h3 class="lighter">Bootstrap Grid & Elements</h3>
With invisible backdrop
</div>
<div class="col-sm-5 text-center line-height-2">
<a class="btn btn-app btn-Default no-radius" href="#">
<i class="ace-icon fa fa-pencil-square-o bigger-230"></i>
Default
<span class="label label-light arrowed-in-right badge-left">11</span>
</a>
<a class="btn btn-info btn-app no-radius" href="#">
<i class="ace-icon fa fa-cog bigger-230"></i>
Mailbox
<span class="label label-danger arrowed-in">6+</span>
</a>
<a class="btn btn-app btn-light no-radius" href="#">
<i class="ace-icon fa fa-print bigger-230"></i>
Print
</a>
</div>
</div>
</div>
</div><!-- /.modal-content -->
<button class="btn btn-inverse btn-app btn-xs ace-settings-btn aside-trigger" data-target="#top-menu" data-toggle="modal" type="button">
<i data-icon1="fa-chevron-down" data-icon2="fa-chevron-up" class="ace-icon fa fa-chevron-down bigger-110 icon-only"></i>
</button>
</div><!-- /.modal-dialog -->
</div>
<div id="bottom-menu" class="modal aside" data-fixed="true" data-placement="bottom" data-background="true" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body container">
<div class="row">
<div class="col-sm-5 col-sm-offset-1 white">
<h3 class="lighter">Bootstrap Grid & Elements</h3>
With dark modal backdrop
</div>
</div>
</div>
</div><!-- /.modal-content -->
<button class="btn btn-yellow btn-app btn-xs ace-settings-btn aside-trigger" data-target="#bottom-menu" data-toggle="modal" type="button">
<i data-icon2="fa-chevron-down" data-icon1="fa-chevron-up" class="ace-icon fa fa-chevron-up bigger-110 icon-only"></i>
</button>
</div><!-- /.modal-dialog -->
</div>
<div id="right-menu" class="modal aside" data-body-scroll="false" data-offset="true" data-placement="right" data-fixed="true" data-backdrop="false" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header no-padding">
<div class="table-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">
<span class="white">×</span>
</button>
Based on Modal boxes
</div>
</div>
<div class="modal-body">
<h3 class="lighter">Custom Elements and Content</h3>
<br />
With no modal backdrop
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
1
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
2
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
3
</div>
</div><!-- /.modal-content -->
<button class="aside-trigger btn btn-info btn-app btn-xs ace-settings-btn" data-target="#right-menu" data-toggle="modal" type="button">
<i data-icon1="fa-plus" data-icon2="fa-minus" class="ace-icon fa fa-plus bigger-110 icon-only"></i>
</button>
</div><!-- /.modal-dialog -->
</div>
<a href="#my-modal" role="button" class="bigger-125 bg-primary white" data-toggle="modal">
Content Slider inside Modal Box
</a>
<div id="my-modal" class="modal fade" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 class="smaller lighter blue no-margin">A modal with a slider in it!</h3>
</div>
<div class="modal-body">
Some content
<br />
<br />
<br />
<br />
<br />
1
<br />
<br />
<br />
<br />
<br />
2
</div>
<div class="modal-footer">
<button class="btn btn-sm btn-danger pull-right" data-dismiss="modal">
<i class="ace-icon fa fa-times"></i>
Close
</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div>
<div id="aside-inside-modal" class="modal" data-placement="bottom" data-background="true" data-backdrop="false" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
<div class="row">
<div class="col-xs-12 white">
<h3 class="lighter no-margin">Inside another modal</h3>
<br />
<br />
</div>
</div>
</div>
</div><!-- /.modal-content -->
<button class="btn btn-default btn-app btn-xs ace-settings-btn aside-trigger" data-target="#aside-inside-modal" data-toggle="modal" type="button">
<i data-icon2="fa-arrow-down" data-icon1="fa-arrow-up" class="ace-icon fa fa-arrow-up bigger-110 icon-only"></i>
</button>
</div><!-- /.modal-dialog -->
</div>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<!-- PAGE CONTENT ENDS -->
</div><!-- /.col -->
</div><!-- /.row -->
</div><!-- /.page-content -->
</div>
</div><!-- /.main-content -->
<div class="footer">
<div class="footer-inner">
<div class="footer-content">
<span class="bigger-120">
<span class="blue bolder">Ace</span>
Application © 2013-2014
</span>
<span class="action-buttons">
<a href="#">
<i class="ace-icon fa fa-twitter-square light-blue bigger-150"></i>
</a>
<a href="#">
<i class="ace-icon fa fa-facebook-square text-primary bigger-150"></i>
</a>
<a href="#">
<i class="ace-icon fa fa-rss-square orange bigger-150"></i>
</a>
</span>
</div>
</div>
</div>
<a href="#" id="btn-scroll-up" class="btn-scroll-up btn btn-sm btn-inverse">
<i class="ace-icon fa fa-angle-double-up icon-only bigger-110"></i>
</a>
</div><!-- /.main-container -->
<!-- basic scripts -->
<!--[if !IE]> -->
<script src="assets/js/jquery-2.1.4.min.js"></script>
<!-- <![endif]-->
<!--[if IE]>
<script src="assets/js/jquery-1.11.3.min.js"></script>
<![endif]-->
<script type="text/javascript">
if('ontouchstart' in document.documentElement) document.write("<script src='assets/js/jquery.mobile.custom.min.js'>"+"<"+"/script>");
</script>
<script src="assets/js/bootstrap.min.js"></script>
<!-- page specific plugin scripts -->
<!-- ace scripts -->
<script src="assets/js/ace-elements.min.js"></script>
<script src="assets/js/ace.min.js"></script>
<!-- inline scripts related to this page -->
<script type="text/javascript">
jQuery(function($) {
$('.modal.aside').ace_aside();
$('#aside-inside-modal').addClass('aside').ace_aside({container: '#my-modal > .modal-dialog'});
//$('#top-menu').modal('show')
$(document).one('ajaxloadstart.page', function(e) {
//in ajax mode, remove before leaving page
$('.modal.aside').remove();
$(window).off('.aside')
});
//make content sliders resizable using jQuery UI (you should include jquery ui files)
//$('#right-menu > .modal-dialog').resizable({handles: "w", grid: [ 20, 0 ], minWidth: 200, maxWidth: 600});
})
</script>
</body>
</html>
|
guacamole/src/main/webapp/app/settings/styles/buttons.css | TribeMedia/guacamole-client | /*
* Copyright (C) 2014 Glyptodon LLC
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
button.add-user,
a.button.add-connection,
a.button.add-connection-group {
font-size: 0.8em;
padding-left: 1.8em;
position: relative;
}
button.add-user::before,
a.button.add-connection::before,
a.button.add-connection-group::before {
content: ' ';
position: absolute;
width: 1.8em;
top: 0;
bottom: 0;
left: 0;
background-repeat: no-repeat;
background-size: 1em;
background-position: 0.5em 0.45em;
}
button.add-user::before {
background-image: url('images/action-icons/guac-user-add.png');
}
a.button.add-connection::before {
background-image: url('images/action-icons/guac-monitor-add.png');
}
a.button.add-connection-group::before {
background-image: url('images/action-icons/guac-group-add.png');
}
|
docs/api/animation/tracks/StringKeyframeTrack.html | ValtoLibraries/ThreeJS | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<base href="../../../" />
<script src="list.js"></script>
<script src="page.js"></script>
<link type="text/css" rel="stylesheet" href="page.css" />
</head>
<body>
[page:KeyframeTrack] →
<h1>[name]</h1>
<p class="desc">
A Track of string keyframe values.
</p>
<h2>Constructor</h2>
<h3>[name]( [param:String name], [param:Array times], [param:Array values] )</h3>
<p>
[page:String name] - (required) identifier for the KeyframeTrack.<br />
[page:Array times] - (required) array of keyframe times.<br />
[page:Array values] - values for the keyframes at the times specified.<br />
[page:Constant interpolation] - the type of interpolation to use. See
[page:Animation Animation Constants] for possible values. Default is
[page:Animation InterpolateDiscrete].
</p>
<h2>Properties</h2>
<p class="desc">
See [page:KeyframeTrack] for inherited properties.
</p>
<h3>[property:Constant DefaultInterpolation]</h3>
<p>
The default interpolation type to use, [page:Animation InterpolateDiscrete].
</p>
<h3>[property:Array ValueBufferType]</h3>
<p>
A normal Array (no Float32Array in this case, unlike *ValueBufferType* of [page:KeyframeTrack]).
</p>
<h3>[property:String ValueTypeName]</h3>
<p>
String 'string'.
</p>
<h2>Methods</h2>
<p class="desc">
See [page:KeyframeTrack] for inherited methods.
</p>
<h3>[method:null InterpolantFactoryMethodLinear]()</h3>
<p>
The value of this method here is 'undefined', as it does not make sense for discrete properties.
</p>
<h3>[method:null InterpolantFactoryMethodSmooth]()</h3>
<p>
The value of this method here is 'undefined', as it does not make sense for discrete properties.
</p>
<h2>Source</h2>
[link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
</body>
</html>
|
deps/db/docs/programmer_reference/upgrade_4_5_toc.html | egoitzro/poedit | <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Chapter 42. Upgrading Berkeley DB 4.4 applications to Berkeley DB 4.5</title>
<link rel="stylesheet" href="gettingStarted.css" type="text/css" />
<meta name="generator" content="DocBook XSL Stylesheets V1.73.2" />
<link rel="start" href="index.html" title="Berkeley DB Programmer's Reference Guide" />
<link rel="up" href="index.html" title="Berkeley DB Programmer's Reference Guide" />
<link rel="prev" href="changelog_4_4_20.html" title="Berkeley DB 4.4.20 Change Log" />
<link rel="next" href="upgrade_4_5_deprecate.html" title="Release 4.5: deprecated interfaces" />
</head>
<body>
<div class="navheader">
<table width="100%" summary="Navigation header">
<tr>
<th colspan="3" align="center">Chapter 42. Upgrading Berkeley DB 4.4 applications to Berkeley DB 4.5</th>
</tr>
<tr>
<td width="20%" align="left"><a accesskey="p" href="changelog_4_4_20.html">Prev</a> </td>
<th width="60%" align="center"> </th>
<td width="20%" align="right"> <a accesskey="n" href="upgrade_4_5_deprecate.html">Next</a></td>
</tr>
</table>
<hr />
</div>
<div class="chapter" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h2 class="title"><a id="upgrade_4_5_toc"></a>Chapter 42. Upgrading Berkeley DB 4.4 applications to Berkeley DB 4.5</h2>
</div>
</div>
</div>
<div class="toc">
<p>
<b>Table of Contents</b>
</p>
<dl>
<dt>
<span class="sect1">
<a href="upgrade_4_5_toc.html#upgrade_4_5_intro">Release 4.5: Introduction</a>
</span>
</dt>
<dt>
<span class="sect1">
<a href="upgrade_4_5_deprecate.html">Release 4.5: deprecated interfaces</a>
</span>
</dt>
<dt>
<span class="sect1">
<a href="upgrade_4_5_alive.html">Release 4.5: DB->set_isalive</a>
</span>
</dt>
<dt>
<span class="sect1">
<a href="upgrade_4_5_elect.html">Release 4.5: DB_ENV->rep_elect</a>
</span>
</dt>
<dt>
<span class="sect1">
<a href="upgrade_4_5_rep_set.html">Release 4.5: Replication method naming</a>
</span>
</dt>
<dt>
<span class="sect1">
<a href="upgrade_4_5_rep_event.html">Release 4.5: Replication events</a>
</span>
</dt>
<dt>
<span class="sect1">
<a href="upgrade_4_5_memp.html">Release 4.5: Memory Pool API</a>
</span>
</dt>
<dt>
<span class="sect1">
<a href="upgrade_4_5_paniccall.html">Release 4.5: DB_ENV->set_paniccall</a>
</span>
</dt>
<dt>
<span class="sect1">
<a href="upgrade_4_5_pagesize.html">Release 4.5: DB->set_pagesize</a>
</span>
</dt>
<dt>
<span class="sect1">
<a href="upgrade_4_5_collect.html">Release 4.5: Collections API</a>
</span>
</dt>
<dt>
<span class="sect1">
<a href="upgrade_4_5_config.html">Release 4.5: --enable-pthread_self</a>
</span>
</dt>
<dt>
<span class="sect1">
<a href="upgrade_4_5_source.html">Release 4.5: Recno backing text source files</a>
</span>
</dt>
<dt>
<span class="sect1">
<a href="upgrade_4_5_applog.html">Release 4.5: Application-specific logging</a>
</span>
</dt>
<dt>
<span class="sect1">
<a href="upgrade_4_5_disk.html">Release 4.5: Upgrade Requirements</a>
</span>
</dt>
<dt>
<span class="sect1">
<a href="changelog_4_5_20.html">Berkeley DB 4.5.20 Change Log</a>
</span>
</dt>
<dd>
<dl>
<dt>
<span class="sect2">
<a href="changelog_4_5_20.html#id1651887">Database or Log File On-Disk Format Changes:</a>
</span>
</dt>
<dt>
<span class="sect2">
<a href="changelog_4_5_20.html#id1651951">New Features:</a>
</span>
</dt>
<dt>
<span class="sect2">
<a href="changelog_4_5_20.html#id1652038">Database Environment Changes:</a>
</span>
</dt>
<dt>
<span class="sect2">
<a href="changelog_4_5_20.html#id1652046">Concurrent Data Store Changes:</a>
</span>
</dt>
<dt>
<span class="sect2">
<a href="changelog_4_5_20.html#id1652068">General Access Method Changes:</a>
</span>
</dt>
<dt>
<span class="sect2">
<a href="changelog_4_5_20.html#id1652108">Btree Access Method Changes:</a>
</span>
</dt>
<dt>
<span class="sect2">
<a href="changelog_4_5_20.html#id1652176">Hash Access Method Changes:</a>
</span>
</dt>
<dt>
<span class="sect2">
<a href="changelog_4_5_20.html#id1652121">Queue Access Method Changes:</a>
</span>
</dt>
<dt>
<span class="sect2">
<a href="changelog_4_5_20.html#id1652284">Recno Access Method Changes:</a>
</span>
</dt>
<dt>
<span class="sect2">
<a href="changelog_4_5_20.html#id1652273">C++-specific API Changes:</a>
</span>
</dt>
<dt>
<span class="sect2">
<a href="changelog_4_5_20.html#id1652103">Java-specific API Changes:</a>
</span>
</dt>
<dt>
<span class="sect2">
<a href="changelog_4_5_20.html#id1652000">Java collections and bind API Changes:</a>
</span>
</dt>
<dt>
<span class="sect2">
<a href="changelog_4_5_20.html#id1652247">Tcl-specific API Changes:</a>
</span>
</dt>
<dt>
<span class="sect2">
<a href="changelog_4_5_20.html#id1651879">RPC-specific Client/Server Changes:</a>
</span>
</dt>
<dt>
<span class="sect2">
<a href="changelog_4_5_20.html#id1652205">Replication Changes:</a>
</span>
</dt>
<dt>
<span class="sect2">
<a href="changelog_4_5_20.html#id1652349">XA Resource Manager Changes:</a>
</span>
</dt>
<dt>
<span class="sect2">
<a href="changelog_4_5_20.html#id1652139">Locking Subsystem Changes:</a>
</span>
</dt>
<dt>
<span class="sect2">
<a href="changelog_4_5_20.html#id1651909">Logging Subsystem Changes:</a>
</span>
</dt>
<dt>
<span class="sect2">
<a href="changelog_4_5_20.html#id1652168">Memory Pool Subsystem Changes:</a>
</span>
</dt>
<dt>
<span class="sect2">
<a href="changelog_4_5_20.html#id1652298">Transaction Subsystem Changes:</a>
</span>
</dt>
<dt>
<span class="sect2">
<a href="changelog_4_5_20.html#id1652136">Utility Changes:</a>
</span>
</dt>
<dt>
<span class="sect2">
<a href="changelog_4_5_20.html#id1652498">Configuration, Documentation, Portability and Build Changes:</a>
</span>
</dt>
</dl>
</dd>
</dl>
</div>
<div class="sect1" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h2 class="title" style="clear: both"><a id="upgrade_4_5_intro"></a>Release 4.5: Introduction</h2>
</div>
</div>
</div>
<p>The following pages describe how to upgrade applications coded against
the Berkeley DB 4.4 release interfaces to the Berkeley DB 4.5 release interfaces.
This information does not describe how to upgrade Berkeley DB 1.85 release
applications.</p>
</div>
</div>
<div class="navfooter">
<hr />
<table width="100%" summary="Navigation footer">
<tr>
<td width="40%" align="left"><a accesskey="p" href="changelog_4_4_20.html">Prev</a> </td>
<td width="20%" align="center"> </td>
<td width="40%" align="right"> <a accesskey="n" href="upgrade_4_5_deprecate.html">Next</a></td>
</tr>
<tr>
<td width="40%" align="left" valign="top">Berkeley DB 4.4.20 Change Log </td>
<td width="20%" align="center">
<a accesskey="h" href="index.html">Home</a>
</td>
<td width="40%" align="right" valign="top"> Release 4.5: deprecated interfaces</td>
</tr>
</table>
</div>
</body>
</html>
|
assets/css/src/board.css | fabiano-pereira/kanboard | /* public board */
.public-board {
margin-top: 5px;
}
.public-task {
max-width: 800px;
margin: 0 auto;
margin-top: 5px;
}
/* board table */
#board-container {
overflow-x: scroll;
}
#board {
table-layout: fixed;
}
#board th.board-column-header {
width: 240px;
}
#board td {
vertical-align: top;
}
/* compact mode/horizontal scrolling */
.board-container-compact {
overflow-x: initial;
}
@media all and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.board-container-compact #board {
table-layout: auto;
}
}
#board th.board-column-header.board-column-compact {
width: initial; /* Do not force the width of the columns in compact view mode */
}
/* show/hide column */
.board-column-collapsed {
display: none;
}
td.board-column-task-collapsed {
font-weight: bold;
background-color: #fbfbfb;
}
#board th.board-column-header-collapsed {
width: 28px;
min-width: 28px;
text-align: center;
overflow: hidden;
}
.board-rotation-wrapper {
position: relative;
padding: 8px 4px;
}
.board-rotation {
min-width: 250px;
-webkit-backface-visibility: hidden;
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
-webkit-transform-origin: 0 100%;
-moz-transform-origin: 0 100%;
-ms-transform-origin: 0 100%;
transform-origin: 0 100%;
}
/* column header */
.board-add-icon {
float: left;
padding: 0 5px;
}
.board-add-icon a {
text-decoration: none;
color: #3366CC;
font-size: 150%;
line-height: 70%;
}
.board-add-icon a:focus,
.board-add-icon a:hover {
text-decoration: none;
color: red;
}
.board-column-header-task-count {
color: #999;
font-weight: normal;
}
th.board-column-header-collapsed .board-column-header-task-count {
font-size: 0.85em;
}
/* swimlanes */
th.board-swimlane-header {
width: 120px;
}
a.board-swimlane-toggle {
font-size: 0.95em;
}
.board-swimlane-toggle-title {
font-size: 0.85em;
display: none;
}
.board-swimlane-title {
vertical-align: top;
}
/* board task list */
.board-task-list {
overflow: auto;
}
.board-task-list-limit {
background-color: #DF5353;
}
/* drag and drop */
.draggable-item {
cursor: pointer;
user-select: none;
}
.draggable-placeholder {
border: 2px dashed #000;
background: #fafafa;
height: 70px;
margin-bottom: 10px;
}
div.draggable-item-selected {
border: 1px solid #000;
}
.task-board-sort-handle {
float: left;
padding-right: 5px;
}
|
lesson-3/experiment/index.html | 4thex/JSAsteroids | <html>
<head>
<link rel="stylesheet" href="main.css" type="text/css" />
<script type="text/javascript" src="main.js"></script>
</head>
<body>
<div id="container">
<canvas id="canvas" width="2000" height="2000"></canvas>
</div>
</body>
</html> |
nodejs/lib/node_modules/npm/html/doc/cli/npm-publish.html | Shadownest/drawmybahari | <!doctype html>
<html>
<title>npm-publish</title>
<meta http-equiv="content-type" value="text/html;utf-8">
<link rel="stylesheet" type="text/css" href="../../static/style.css">
<link rel="canonical" href="https://www.npmjs.org/doc/cli/npm-publish.html">
<script async=true src="../../static/toc.js"></script>
<body>
<div id="wrapper">
<h1><a href="../cli/npm-publish.html">npm-publish</a></h1> <p>Publish a package</p>
<h2 id="synopsis">SYNOPSIS</h2>
<pre><code>npm publish <tarball> [--tag <tag>] [--access <public|restricted>]
npm publish <folder> [--tag <tag>] [--access <public|restricted>]
</code></pre><h2 id="description">DESCRIPTION</h2>
<p>Publishes a package to the registry so that it can be installed by name. See
<code><a href="../misc/npm-developers.html"><a href="../misc/npm-developers.html">npm-developers(7)</a></a></code> for details on what's included in the published package, as
well as details on how the package is built.</p>
<p>By default npm will publish to the public registry. This can be overridden by
specifying a different default registry or using a <code><a href="../misc/npm-scope.html"><a href="../misc/npm-scope.html">npm-scope(7)</a></a></code> in the name
(see <code><a href="../files/package.json.html"><a href="../files/package.json.html">package.json(5)</a></a></code>).</p>
<ul>
<li><p><code><folder></code>:
A folder containing a package.json file</p>
</li>
<li><p><code><tarball></code>:
A url or file path to a gzipped tar archive containing a single folder
with a package.json file inside.</p>
</li>
<li><p><code>[--tag <tag>]</code>
Registers the published package with the given tag, such that <code>npm install
<name>@<tag></code> will install this version. By default, <code>npm publish</code> updates
and <code>npm install</code> installs the <code>latest</code> tag.</p>
</li>
<li><p><code>[--access <public|restricted>]</code>
Tells the registry whether this package should be published as public or
restricted. Only applies to scoped packages, which default to <code>restricted</code>.
If you don't have a paid account, you must publish with <code>--access public</code>
to publish scoped packages.</p>
</li>
</ul>
<p>Fails if the package name and version combination already exists in
the specified registry.</p>
<p>Once a package is published with a given name and version, that
specific name and version combination can never be used again, even if
it is removed with <a href="../cli/npm-unpublish.html"><a href="../cli/npm-unpublish.html">npm-unpublish(1)</a></a>.</p>
<h2 id="see-also">SEE ALSO</h2>
<ul>
<li><a href="../misc/npm-registry.html"><a href="../misc/npm-registry.html">npm-registry(7)</a></a></li>
<li><a href="../misc/npm-scope.html"><a href="../misc/npm-scope.html">npm-scope(7)</a></a></li>
<li><a href="../cli/npm-adduser.html"><a href="../cli/npm-adduser.html">npm-adduser(1)</a></a></li>
<li><a href="../cli/npm-owner.html"><a href="../cli/npm-owner.html">npm-owner(1)</a></a></li>
<li><a href="../cli/npm-deprecate.html"><a href="../cli/npm-deprecate.html">npm-deprecate(1)</a></a></li>
<li><a href="../cli/npm-tag.html"><a href="../cli/npm-tag.html">npm-tag(1)</a></a></li>
</ul>
</div>
<table border=0 cellspacing=0 cellpadding=0 id=npmlogo>
<tr><td style="width:180px;height:10px;background:rgb(237,127,127)" colspan=18> </td></tr>
<tr><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)"> </td><td style="width:40px;height:10px;background:#fff" colspan=4> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4> </td><td style="width:40px;height:10px;background:#fff" colspan=4> </td><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)"> </td><td colspan=6 style="width:60px;height:10px;background:#fff"> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4> </td></tr>
<tr><td colspan=2 style="width:20px;height:30px;background:#fff" rowspan=3> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3> </td><td style="width:10px;height:10px;background:#fff" rowspan=3> </td><td style="width:20px;height:10px;background:#fff" rowspan=4 colspan=2> </td><td style="width:10px;height:20px;background:rgb(237,127,127)" rowspan=2> </td><td style="width:10px;height:10px;background:#fff" rowspan=3> </td><td style="width:20px;height:10px;background:#fff" rowspan=3 colspan=2> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3> </td><td style="width:10px;height:10px;background:#fff" rowspan=3> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3> </td></tr>
<tr><td style="width:10px;height:10px;background:#fff" rowspan=2> </td></tr>
<tr><td style="width:10px;height:10px;background:#fff"> </td></tr>
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
</table>
<p id="footer">npm-publish — [email protected]</p>
|
toolchain/arm_cm0_deprecated/share/doc/gcc-arm-none-eabi/html/gdb/GDB_002fMI.html | jocelynmass/nrf51 | <html lang="en">
<head>
<title>GDB/MI - Debugging with GDB</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="Debugging with GDB">
<meta name="generator" content="makeinfo 4.8">
<link title="Top" rel="start" href="index.html#Top">
<link rel="prev" href="Emacs.html#Emacs" title="Emacs">
<link rel="next" href="Annotations.html#Annotations" title="Annotations">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<!--
Copyright (C) 1988-2015 Free Software Foundation, Inc.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
any later version published by the Free Software Foundation; with the
Invariant Sections being ``Free Software'' and ``Free Software Needs
Free Documentation'', with the Front-Cover Texts being ``A GNU Manual,''
and with the Back-Cover Texts as in (a) below.
(a) The FSF's Back-Cover Text is: ``You are free to copy and modify
this GNU Manual. Buying copies from GNU Press supports the FSF in
developing GNU and promoting software freedom.''
-->
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
pre.display { font-family:inherit }
pre.format { font-family:inherit }
pre.smalldisplay { font-family:inherit; font-size:smaller }
pre.smallformat { font-family:inherit; font-size:smaller }
pre.smallexample { font-size:smaller }
pre.smalllisp { font-size:smaller }
span.sc { font-variant:small-caps }
span.roman { font-family:serif; font-weight:normal; }
span.sansserif { font-family:sans-serif; font-weight:normal; }
--></style>
</head>
<body>
<div class="node">
<p>
<a name="GDB%2fMI"></a>
<a name="GDB_002fMI"></a>
Next: <a rel="next" accesskey="n" href="Annotations.html#Annotations">Annotations</a>,
Previous: <a rel="previous" accesskey="p" href="Emacs.html#Emacs">Emacs</a>,
Up: <a rel="up" accesskey="u" href="index.html#Top">Top</a>
<hr>
</div>
<h2 class="chapter">27 The <span class="sc">gdb/mi</span> Interface</h2>
<h3 class="unnumberedsec">Function and Purpose</h3>
<p><a name="index-g_t_0040sc_007bgdb_002fmi_007d_002c-its-purpose-2842"></a><span class="sc">gdb/mi</span> is a line based machine oriented text interface to
<span class="sc">gdb</span> and is activated by specifying using the
<samp><span class="option">--interpreter</span></samp> command line option (see <a href="Mode-Options.html#Mode-Options">Mode Options</a>). It
is specifically intended to support the development of systems which
use the debugger as just one small component of a larger system.
<p>This chapter is a specification of the <span class="sc">gdb/mi</span> interface. It is written
in the form of a reference manual.
<p>Note that <span class="sc">gdb/mi</span> is still under construction, so some of the
features described below are incomplete and subject to change
(see <a href="GDB_002fMI-Development-and-Front-Ends.html#GDB_002fMI-Development-and-Front-Ends"><span class="sc">gdb/mi</span> Development and Front Ends</a>).
<h3 class="unnumberedsec">Notation and Terminology</h3>
<p><a name="index-notational-conventions_002c-for-_0040sc_007bgdb_002fmi_007d-2843"></a>This chapter uses the following notation:
<ul>
<li><code>|</code> separates two alternatives.
<li><code>[ </code><var>something</var><code> ]</code> indicates that <var>something</var> is optional:
it may or may not be given.
<li><code>( </code><var>group</var><code> )*</code> means that <var>group</var> inside the parentheses
may repeat zero or more times.
<li><code>( </code><var>group</var><code> )+</code> means that <var>group</var> inside the parentheses
may repeat one or more times.
<li><code>"</code><var>string</var><code>"</code> means a literal <var>string</var>.
</ul>
<ul class="menu">
<li><a accesskey="1" href="GDB_002fMI-General-Design.html#GDB_002fMI-General-Design">GDB/MI General Design</a>
<li><a accesskey="2" href="GDB_002fMI-Command-Syntax.html#GDB_002fMI-Command-Syntax">GDB/MI Command Syntax</a>
<li><a accesskey="3" href="GDB_002fMI-Compatibility-with-CLI.html#GDB_002fMI-Compatibility-with-CLI">GDB/MI Compatibility with CLI</a>
<li><a accesskey="4" href="GDB_002fMI-Development-and-Front-Ends.html#GDB_002fMI-Development-and-Front-Ends">GDB/MI Development and Front Ends</a>
<li><a accesskey="5" href="GDB_002fMI-Output-Records.html#GDB_002fMI-Output-Records">GDB/MI Output Records</a>
<li><a accesskey="6" href="GDB_002fMI-Simple-Examples.html#GDB_002fMI-Simple-Examples">GDB/MI Simple Examples</a>
<li><a accesskey="7" href="GDB_002fMI-Command-Description-Format.html#GDB_002fMI-Command-Description-Format">GDB/MI Command Description Format</a>
<li><a accesskey="8" href="GDB_002fMI-Breakpoint-Commands.html#GDB_002fMI-Breakpoint-Commands">GDB/MI Breakpoint Commands</a>
<li><a accesskey="9" href="GDB_002fMI-Catchpoint-Commands.html#GDB_002fMI-Catchpoint-Commands">GDB/MI Catchpoint Commands</a>
<li><a href="GDB_002fMI-Program-Context.html#GDB_002fMI-Program-Context">GDB/MI Program Context</a>
<li><a href="GDB_002fMI-Thread-Commands.html#GDB_002fMI-Thread-Commands">GDB/MI Thread Commands</a>
<li><a href="GDB_002fMI-Ada-Tasking-Commands.html#GDB_002fMI-Ada-Tasking-Commands">GDB/MI Ada Tasking Commands</a>
<li><a href="GDB_002fMI-Program-Execution.html#GDB_002fMI-Program-Execution">GDB/MI Program Execution</a>
<li><a href="GDB_002fMI-Stack-Manipulation.html#GDB_002fMI-Stack-Manipulation">GDB/MI Stack Manipulation</a>
<li><a href="GDB_002fMI-Variable-Objects.html#GDB_002fMI-Variable-Objects">GDB/MI Variable Objects</a>
<li><a href="GDB_002fMI-Data-Manipulation.html#GDB_002fMI-Data-Manipulation">GDB/MI Data Manipulation</a>
<li><a href="GDB_002fMI-Tracepoint-Commands.html#GDB_002fMI-Tracepoint-Commands">GDB/MI Tracepoint Commands</a>
<li><a href="GDB_002fMI-Symbol-Query.html#GDB_002fMI-Symbol-Query">GDB/MI Symbol Query</a>
<li><a href="GDB_002fMI-File-Commands.html#GDB_002fMI-File-Commands">GDB/MI File Commands</a>
<li><a href="GDB_002fMI-Target-Manipulation.html#GDB_002fMI-Target-Manipulation">GDB/MI Target Manipulation</a>
<li><a href="GDB_002fMI-File-Transfer-Commands.html#GDB_002fMI-File-Transfer-Commands">GDB/MI File Transfer Commands</a>
<li><a href="GDB_002fMI-Ada-Exceptions-Commands.html#GDB_002fMI-Ada-Exceptions-Commands">GDB/MI Ada Exceptions Commands</a>
<li><a href="GDB_002fMI-Support-Commands.html#GDB_002fMI-Support-Commands">GDB/MI Support Commands</a>
<li><a href="GDB_002fMI-Miscellaneous-Commands.html#GDB_002fMI-Miscellaneous-Commands">GDB/MI Miscellaneous Commands</a>
</ul>
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -->
</body></html>
|
toolchain/share/doc/gcc-linaro-arm-linux-gnueabihf/html/ld.html/BFD-outline.html | vic3t3chn0/Samsung_Wave_Kernel_SD_NAND | <html lang="en">
<head>
<title>BFD outline - Untitled</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="Untitled">
<meta name="generator" content="makeinfo 4.13">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="BFD.html#BFD" title="BFD">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<!--
This file documents the GNU linker LD
(GNU Binutils)
version 2.22.
Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3
or any later version published by the Free Software Foundation;
with no Invariant Sections, with no Front-Cover Texts, and with no
Back-Cover Texts. A copy of the license is included in the
section entitled ``GNU Free Documentation License''.-->
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
pre.display { font-family:inherit }
pre.format { font-family:inherit }
pre.smalldisplay { font-family:inherit; font-size:smaller }
pre.smallformat { font-family:inherit; font-size:smaller }
pre.smallexample { font-size:smaller }
pre.smalllisp { font-size:smaller }
span.sc { font-variant:small-caps }
span.roman { font-family:serif; font-weight:normal; }
span.sansserif { font-family:sans-serif; font-weight:normal; }
--></style>
</head>
<body>
<div class="node">
<a name="BFD-outline"></a>
<p>
Up: <a rel="up" accesskey="u" href="BFD.html#BFD">BFD</a>
<hr>
</div>
<h3 class="section">5.1 How It Works: An Outline of BFD</h3>
<p><a name="index-opening-object-files-688"></a><!-- This summary of BFD is shared by the BFD and LD docs. -->
When an object file is opened, BFD subroutines automatically determine
the format of the input object file. They then build a descriptor in
memory with pointers to routines that will be used to access elements of
the object file's data structures.
<p>As different information from the object files is required,
BFD reads from different sections of the file and processes them.
For example, a very common operation for the linker is processing symbol
tables. Each BFD back end provides a routine for converting
between the object file's representation of symbols and an internal
canonical format. When the linker asks for the symbol table of an object
file, it calls through a memory pointer to the routine from the
relevant BFD back end which reads and converts the table into a canonical
form. The linker then operates upon the canonical form. When the link is
finished and the linker writes the output file's symbol table,
another BFD back end routine is called to take the newly
created symbol table and convert it into the chosen output format.
<ul class="menu">
<li><a accesskey="1" href="BFD-information-loss.html#BFD-information-loss">BFD information loss</a>: Information Loss
<li><a accesskey="2" href="Canonical-format.html#Canonical-format">Canonical format</a>: The BFD canonical object-file format
</ul>
</body></html>
|
win/hardware/tools/avr/doc/simulavr/internals_html/op__names_8c-source.html | SelfDesignRobotics/DuinoPack | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>Main Page</title>
<link href="dox.css" rel="stylesheet" type="text/css">
</head>
<body bgcolor="#cfcfcf">
<!-- Generated by Doxygen 1.5.5 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="main.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<h1>op_names.c</h1><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<a name="l00002"></a>00002 <span class="comment"> * $Id: op_names.c,v 1.5 2003/12/01 09:10:15 troth Exp $</span>
<a name="l00003"></a>00003 <span class="comment"> *</span>
<a name="l00004"></a>00004 <span class="comment"> ****************************************************************************</span>
<a name="l00005"></a>00005 <span class="comment"> *</span>
<a name="l00006"></a>00006 <span class="comment"> * simulavr - A simulator for the Atmel AVR family of microcontrollers.</span>
<a name="l00007"></a>00007 <span class="comment"> * Copyright (C) 2001, 2002, 2003 Theodore A. Roth</span>
<a name="l00008"></a>00008 <span class="comment"> *</span>
<a name="l00009"></a>00009 <span class="comment"> * This program is free software; you can redistribute it and/or modify</span>
<a name="l00010"></a>00010 <span class="comment"> * it under the terms of the GNU General Public License as published by</span>
<a name="l00011"></a>00011 <span class="comment"> * the Free Software Foundation; either version 2 of the License, or</span>
<a name="l00012"></a>00012 <span class="comment"> * (at your option) any later version.</span>
<a name="l00013"></a>00013 <span class="comment"> *</span>
<a name="l00014"></a>00014 <span class="comment"> * This program is distributed in the hope that it will be useful,</span>
<a name="l00015"></a>00015 <span class="comment"> * but WITHOUT ANY WARRANTY; without even the implied warranty of</span>
<a name="l00016"></a>00016 <span class="comment"> * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the</span>
<a name="l00017"></a>00017 <span class="comment"> * GNU General Public License for more details.</span>
<a name="l00018"></a>00018 <span class="comment"> *</span>
<a name="l00019"></a>00019 <span class="comment"> * You should have received a copy of the GNU General Public License</span>
<a name="l00020"></a>00020 <span class="comment"> * along with this program; if not, write to the Free Software</span>
<a name="l00021"></a>00021 <span class="comment"> * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA</span>
<a name="l00022"></a>00022 <span class="comment"> *</span>
<a name="l00023"></a>00023 <span class="comment"> ****************************************************************************</span>
<a name="l00024"></a>00024 <span class="comment"> */</span>
<a name="l00025"></a>00025
<a name="l00026"></a>00026 <span class="preprocessor">#include "op_names.h"</span>
<a name="l00027"></a>00027
<a name="l00028"></a>00028 <span class="comment">/*</span>
<a name="l00029"></a>00029 <span class="comment"> * Define a global array of opcode Name strings.</span>
<a name="l00030"></a>00030 <span class="comment"> */</span>
<a name="l00031"></a>00031
<a name="l00032"></a>00032 <span class="comment">/* *INDENT-OFF */</span>
<a name="l00033"></a>00033 <span class="keywordtype">char</span> *global_opcode_name[NUM_OPCODE_HANLDERS] = {
<a name="l00034"></a>00034 <span class="comment">/* opcodes with no operands */</span>
<a name="l00035"></a>00035 <span class="stringliteral">"BREAK"</span>, <span class="comment">/* 0x9598 - 1001 0101 1001 1000 | BREAK */</span>
<a name="l00036"></a>00036 <span class="stringliteral">"EICALL"</span>, <span class="comment">/* 0x9519 - 1001 0101 0001 1001 | EICALL */</span>
<a name="l00037"></a>00037 <span class="stringliteral">"EIJMP"</span>, <span class="comment">/* 0x9419 - 1001 0100 0001 1001 | EIJMP */</span>
<a name="l00038"></a>00038 <span class="stringliteral">"ELPM"</span>, <span class="comment">/* 0x95D8 - 1001 0101 1101 1000 | ELPM */</span>
<a name="l00039"></a>00039 <span class="stringliteral">"ESPM"</span>, <span class="comment">/* 0x95F8 - 1001 0101 1111 1000 | ESPM */</span>
<a name="l00040"></a>00040 <span class="stringliteral">"ICALL"</span>, <span class="comment">/* 0x9509 - 1001 0101 0000 1001 | ICALL */</span>
<a name="l00041"></a>00041 <span class="stringliteral">"IJMP"</span>, <span class="comment">/* 0x9409 - 1001 0100 0000 1001 | IJMP */</span>
<a name="l00042"></a>00042 <span class="stringliteral">"LPM"</span>, <span class="comment">/* 0x95C8 - 1001 0101 1100 1000 | LPM */</span>
<a name="l00043"></a>00043 <span class="stringliteral">"NOP"</span>, <span class="comment">/* 0x0000 - 0000 0000 0000 0000 | NOP */</span>
<a name="l00044"></a>00044 <span class="stringliteral">"RET"</span>, <span class="comment">/* 0x9508 - 1001 0101 0000 1000 | RET */</span>
<a name="l00045"></a>00045 <span class="stringliteral">"RETI"</span>, <span class="comment">/* 0x9518 - 1001 0101 0001 1000 | RETI */</span>
<a name="l00046"></a>00046 <span class="stringliteral">"SLEEP"</span>, <span class="comment">/* 0x9588 - 1001 0101 1000 1000 | SLEEP */</span>
<a name="l00047"></a>00047 <span class="stringliteral">"SPM"</span>, <span class="comment">/* 0x95E8 - 1001 0101 1110 1000 | SPM */</span>
<a name="l00048"></a>00048 <span class="stringliteral">"WDR"</span>, <span class="comment">/* 0x95A8 - 1001 0101 1010 1000 | WDR */</span>
<a name="l00049"></a>00049
<a name="l00050"></a>00050 <span class="comment">/* opcode with a single register (Rd) as operand */</span>
<a name="l00051"></a>00051 <span class="stringliteral">"ASR"</span>, <span class="comment">/* 0x9405 - 1001 010d dddd 0101 | ASR */</span>
<a name="l00052"></a>00052 <span class="stringliteral">"COM"</span>, <span class="comment">/* 0x9400 - 1001 010d dddd 0000 | COM */</span>
<a name="l00053"></a>00053 <span class="stringliteral">"DEC"</span>, <span class="comment">/* 0x940A - 1001 010d dddd 1010 | DEC */</span>
<a name="l00054"></a>00054 <span class="stringliteral">"ELPM_Z"</span>, <span class="comment">/* 0x9006 - 1001 000d dddd 0110 | ELPM */</span>
<a name="l00055"></a>00055 <span class="stringliteral">"ELPM_Z_incr"</span>, <span class="comment">/* 0x9007 - 1001 000d dddd 0111 | ELPM */</span>
<a name="l00056"></a>00056 <span class="stringliteral">"INC"</span>, <span class="comment">/* 0x9403 - 1001 010d dddd 0011 | INC */</span>
<a name="l00057"></a>00057 <span class="stringliteral">"LDS"</span>, <span class="comment">/* 0x9000 - 1001 000d dddd 0000 | LDS */</span>
<a name="l00058"></a>00058 <span class="stringliteral">"LD_X"</span>, <span class="comment">/* 0x900C - 1001 000d dddd 1100 | LD */</span>
<a name="l00059"></a>00059 <span class="stringliteral">"LD_X_decr"</span>, <span class="comment">/* 0x900E - 1001 000d dddd 1110 | LD */</span>
<a name="l00060"></a>00060 <span class="stringliteral">"LD_X_incr"</span>, <span class="comment">/* 0x900D - 1001 000d dddd 1101 | LD */</span>
<a name="l00061"></a>00061 <span class="stringliteral">"LD_Y_decr"</span>, <span class="comment">/* 0x900A - 1001 000d dddd 1010 | LD */</span>
<a name="l00062"></a>00062 <span class="stringliteral">"LD_Y_incr"</span>, <span class="comment">/* 0x9009 - 1001 000d dddd 1001 | LD */</span>
<a name="l00063"></a>00063 <span class="stringliteral">"LD_Z_decr"</span>, <span class="comment">/* 0x9002 - 1001 000d dddd 0010 | LD */</span>
<a name="l00064"></a>00064 <span class="stringliteral">"LD_Z_incr"</span>, <span class="comment">/* 0x9001 - 1001 000d dddd 0001 | LD */</span>
<a name="l00065"></a>00065 <span class="stringliteral">"LPM_Z"</span>, <span class="comment">/* 0x9004 - 1001 000d dddd 0100 | LPM */</span>
<a name="l00066"></a>00066 <span class="stringliteral">"LPM_Z_incr"</span>, <span class="comment">/* 0x9005 - 1001 000d dddd 0101 | LPM */</span>
<a name="l00067"></a>00067 <span class="stringliteral">"LSR"</span>, <span class="comment">/* 0x9406 - 1001 010d dddd 0110 | LSR */</span>
<a name="l00068"></a>00068 <span class="stringliteral">"NEG"</span>, <span class="comment">/* 0x9401 - 1001 010d dddd 0001 | NEG */</span>
<a name="l00069"></a>00069 <span class="stringliteral">"POP"</span>, <span class="comment">/* 0x900F - 1001 000d dddd 1111 | POP */</span>
<a name="l00070"></a>00070 <span class="stringliteral">"PUSH"</span>, <span class="comment">/* 0x920F - 1001 001d dddd 1111 | PUSH */</span>
<a name="l00071"></a>00071 <span class="stringliteral">"ROR"</span>, <span class="comment">/* 0x9407 - 1001 010d dddd 0111 | ROR */</span>
<a name="l00072"></a>00072 <span class="stringliteral">"STS"</span>, <span class="comment">/* 0x9200 - 1001 001d dddd 0000 | STS */</span>
<a name="l00073"></a>00073 <span class="stringliteral">"ST_X"</span>, <span class="comment">/* 0x920C - 1001 001d dddd 1100 | ST */</span>
<a name="l00074"></a>00074 <span class="stringliteral">"ST_X_decr"</span>, <span class="comment">/* 0x920E - 1001 001d dddd 1110 | ST */</span>
<a name="l00075"></a>00075 <span class="stringliteral">"ST_X_incr"</span>, <span class="comment">/* 0x920D - 1001 001d dddd 1101 | ST */</span>
<a name="l00076"></a>00076 <span class="stringliteral">"ST_Y_decr"</span>, <span class="comment">/* 0x920A - 1001 001d dddd 1010 | ST */</span>
<a name="l00077"></a>00077 <span class="stringliteral">"ST_Y_incr"</span>, <span class="comment">/* 0x9209 - 1001 001d dddd 1001 | ST */</span>
<a name="l00078"></a>00078 <span class="stringliteral">"ST_Z_decr"</span>, <span class="comment">/* 0x9202 - 1001 001d dddd 0010 | ST */</span>
<a name="l00079"></a>00079 <span class="stringliteral">"ST_Z_incr"</span>, <span class="comment">/* 0x9201 - 1001 001d dddd 0001 | ST */</span>
<a name="l00080"></a>00080 <span class="stringliteral">"SWAP"</span>, <span class="comment">/* 0x9402 - 1001 010d dddd 0010 | SWAP */</span>
<a name="l00081"></a>00081
<a name="l00082"></a>00082 <span class="comment">/* opcodes with two 5-bit register (Rd and Rr) operands */</span>
<a name="l00083"></a>00083 <span class="stringliteral">"ADC"</span>, <span class="comment">/* 0x1C00 - 0001 11rd dddd rrrr | ADC or ROL */</span>
<a name="l00084"></a>00084 <span class="stringliteral">"ADD"</span>, <span class="comment">/* 0x0C00 - 0000 11rd dddd rrrr | ADD or LSL */</span>
<a name="l00085"></a>00085 <span class="stringliteral">"AND"</span>, <span class="comment">/* 0x2000 - 0010 00rd dddd rrrr | AND or TST</span>
<a name="l00086"></a>00086 <span class="comment"> or LSL */</span>
<a name="l00087"></a>00087 <span class="stringliteral">"CP"</span>, <span class="comment">/* 0x1400 - 0001 01rd dddd rrrr | CP */</span>
<a name="l00088"></a>00088 <span class="stringliteral">"CPC"</span>, <span class="comment">/* 0x0400 - 0000 01rd dddd rrrr | CPC */</span>
<a name="l00089"></a>00089 <span class="stringliteral">"CPSE"</span>, <span class="comment">/* 0x1000 - 0001 00rd dddd rrrr | CPSE */</span>
<a name="l00090"></a>00090 <span class="stringliteral">"EOR"</span>, <span class="comment">/* 0x2400 - 0010 01rd dddd rrrr | EOR or CLR */</span>
<a name="l00091"></a>00091 <span class="stringliteral">"MOV"</span>, <span class="comment">/* 0x2C00 - 0010 11rd dddd rrrr | MOV */</span>
<a name="l00092"></a>00092 <span class="stringliteral">"MUL"</span>, <span class="comment">/* 0x9C00 - 1001 11rd dddd rrrr | MUL */</span>
<a name="l00093"></a>00093 <span class="stringliteral">"OR"</span>, <span class="comment">/* 0x2800 - 0010 10rd dddd rrrr | OR */</span>
<a name="l00094"></a>00094 <span class="stringliteral">"SBC"</span>, <span class="comment">/* 0x0800 - 0000 10rd dddd rrrr | SBC */</span>
<a name="l00095"></a>00095 <span class="stringliteral">"SUB"</span>, <span class="comment">/* 0x1800 - 0001 10rd dddd rrrr | SUB */</span>
<a name="l00096"></a>00096
<a name="l00097"></a>00097 <span class="comment">/* opcodes with two 4-bit register (Rd and Rr) operands */</span>
<a name="l00098"></a>00098 <span class="stringliteral">"MOVW"</span>, <span class="comment">/* 0x0100 - 0000 0001 dddd rrrr | MOVW */</span>
<a name="l00099"></a>00099 <span class="stringliteral">"MULS"</span>, <span class="comment">/* 0x0200 - 0000 0010 dddd rrrr | MULS */</span>
<a name="l00100"></a>00100 <span class="stringliteral">"MULSU"</span>, <span class="comment">/* 0x0300 - 0000 0011 dddd rrrr | MULSU */</span>
<a name="l00101"></a>00101
<a name="l00102"></a>00102 <span class="comment">/* opcodes with two 3-bit register (Rd and Rr) operands */</span>
<a name="l00103"></a>00103 <span class="stringliteral">"FMUL"</span>, <span class="comment">/* 0x0308 - 0000 0011 0ddd 1rrr | FMUL */</span>
<a name="l00104"></a>00104 <span class="stringliteral">"FMULS"</span>, <span class="comment">/* 0x0380 - 0000 0011 1ddd 0rrr | FMULS */</span>
<a name="l00105"></a>00105 <span class="stringliteral">"FMULSU"</span>, <span class="comment">/* 0x0388 - 0000 0011 1ddd 1rrr | FMULSU */</span>
<a name="l00106"></a>00106
<a name="l00107"></a>00107 <span class="comment">/* opcodes with a register (Rd) and a constant data (K) as operands */</span>
<a name="l00108"></a>00108 <span class="stringliteral">"ANDI"</span>, <span class="comment">/* 0x7000 - 0111 KKKK dddd KKKK | CBR or</span>
<a name="l00109"></a>00109 <span class="comment"> ANDI */</span>
<a name="l00110"></a>00110 <span class="stringliteral">"CPI"</span>, <span class="comment">/* 0x3000 - 0011 KKKK dddd KKKK | CPI */</span>
<a name="l00111"></a>00111 <span class="stringliteral">"LDI"</span>, <span class="comment">/* 0xE000 - 1110 KKKK dddd KKKK | LDI */</span>
<a name="l00112"></a>00112 <span class="stringliteral">"ORI"</span>, <span class="comment">/* 0x6000 - 0110 KKKK dddd KKKK | SBR or ORI */</span>
<a name="l00113"></a>00113 <span class="stringliteral">"SBCI"</span>, <span class="comment">/* 0x4000 - 0100 KKKK dddd KKKK | SBCI */</span>
<a name="l00114"></a>00114 <span class="stringliteral">"SUBI"</span>, <span class="comment">/* 0x5000 - 0101 KKKK dddd KKKK | SUBI */</span>
<a name="l00115"></a>00115
<a name="l00116"></a>00116 <span class="comment">/* opcodes with a register (Rd) and a register bit number (b) as</span>
<a name="l00117"></a>00117 <span class="comment"> operands */</span>
<a name="l00118"></a>00118 <span class="stringliteral">"BLD"</span>, <span class="comment">/* 0xF800 - 1111 100d dddd 0bbb | BLD */</span>
<a name="l00119"></a>00119 <span class="stringliteral">"BST"</span>, <span class="comment">/* 0xFA00 - 1111 101d dddd 0bbb | BST */</span>
<a name="l00120"></a>00120 <span class="stringliteral">"SBRC"</span>, <span class="comment">/* 0xFC00 - 1111 110d dddd 0bbb | SBRC */</span>
<a name="l00121"></a>00121 <span class="stringliteral">"SBRS"</span>, <span class="comment">/* 0xFE00 - 1111 111d dddd 0bbb | SBRS */</span>
<a name="l00122"></a>00122
<a name="l00123"></a>00123 <span class="comment">/* opcodes with a relative 7-bit address (k) and a register bit number (b)</span>
<a name="l00124"></a>00124 <span class="comment"> as operands */</span>
<a name="l00125"></a>00125 <span class="stringliteral">"BRBC"</span>, <span class="comment">/* 0xF400 - 1111 01kk kkkk kbbb | BRBC */</span>
<a name="l00126"></a>00126 <span class="stringliteral">"BRBS"</span>, <span class="comment">/* 0xF000 - 1111 00kk kkkk kbbb | BRBS */</span>
<a name="l00127"></a>00127
<a name="l00128"></a>00128 <span class="comment">/* opcodes with a 6-bit address displacement (q) and a register (Rd) as</span>
<a name="l00129"></a>00129 <span class="comment"> operands */</span>
<a name="l00130"></a>00130 <span class="stringliteral">"LDD_Y"</span>, <span class="comment">/* 0x8008 - 10q0 qq0d dddd 1qqq | LDD */</span>
<a name="l00131"></a>00131 <span class="stringliteral">"LDD_Z"</span>, <span class="comment">/* 0x8000 - 10q0 qq0d dddd 0qqq | LDD */</span>
<a name="l00132"></a>00132 <span class="stringliteral">"STD_Y"</span>, <span class="comment">/* 0x8208 - 10q0 qq1d dddd 1qqq | STD */</span>
<a name="l00133"></a>00133 <span class="stringliteral">"STD_Z"</span>, <span class="comment">/* 0x8200 - 10q0 qq1d dddd 0qqq | STD */</span>
<a name="l00134"></a>00134
<a name="l00135"></a>00135 <span class="comment">/* opcodes with a absolute 22-bit address (k) operand */</span>
<a name="l00136"></a>00136 <span class="stringliteral">"CALL"</span>, <span class="comment">/* 0x940E - 1001 010k kkkk 111k | CALL */</span>
<a name="l00137"></a>00137 <span class="stringliteral">"JMP"</span>, <span class="comment">/* 0x940C - 1001 010k kkkk 110k | JMP */</span>
<a name="l00138"></a>00138
<a name="l00139"></a>00139 <span class="comment">/* opcode with a sreg bit select (s) operand */</span>
<a name="l00140"></a>00140 <span class="stringliteral">"BCLR"</span>, <span class="comment">/* 0x9488 - 1001 0100 1sss 1000 | BCLR or</span>
<a name="l00141"></a>00141 <span class="comment"> CL{C,Z,N,V,S,H,T,I} */</span>
<a name="l00142"></a>00142 <span class="stringliteral">"BSET"</span>, <span class="comment">/* 0x9408 - 1001 0100 0sss 1000 | BSET or</span>
<a name="l00143"></a>00143 <span class="comment"> SE{C,Z,N,V,S,H,T,I} */</span>
<a name="l00144"></a>00144
<a name="l00145"></a>00145 <span class="comment">/* opcodes with a 6-bit constant (K) and a register (Rd) as operands */</span>
<a name="l00146"></a>00146 <span class="stringliteral">"ADIW"</span>, <span class="comment">/* 0x9600 - 1001 0110 KKdd KKKK | ADIW */</span>
<a name="l00147"></a>00147 <span class="stringliteral">"SBIW"</span>, <span class="comment">/* 0x9700 - 1001 0111 KKdd KKKK | SBIW */</span>
<a name="l00148"></a>00148
<a name="l00149"></a>00149 <span class="comment">/* opcodes with a 5-bit IO Addr (A) and register bit number (b) as</span>
<a name="l00150"></a>00150 <span class="comment"> operands */</span>
<a name="l00151"></a>00151 <span class="stringliteral">"CBI"</span>, <span class="comment">/* 0x9800 - 1001 1000 AAAA Abbb | CBI */</span>
<a name="l00152"></a>00152 <span class="stringliteral">"SBI"</span>, <span class="comment">/* 0x9A00 - 1001 1010 AAAA Abbb | SBI */</span>
<a name="l00153"></a>00153 <span class="stringliteral">"SBIC"</span>, <span class="comment">/* 0x9900 - 1001 1001 AAAA Abbb | SBIC */</span>
<a name="l00154"></a>00154 <span class="stringliteral">"SBIS"</span>, <span class="comment">/* 0x9B00 - 1001 1011 AAAA Abbb | SBIS */</span>
<a name="l00155"></a>00155
<a name="l00156"></a>00156 <span class="comment">/* opcodes with a 6-bit IO Addr (A) and register (Rd) as operands */</span>
<a name="l00157"></a>00157 <span class="stringliteral">"IN"</span>, <span class="comment">/* 0xB000 - 1011 0AAd dddd AAAA | IN */</span>
<a name="l00158"></a>00158 <span class="stringliteral">"OUT"</span>, <span class="comment">/* 0xB800 - 1011 1AAd dddd AAAA | OUT */</span>
<a name="l00159"></a>00159
<a name="l00160"></a>00160 <span class="comment">/* opcodes with a relative 12-bit address (k) operand */</span>
<a name="l00161"></a>00161 <span class="stringliteral">"RCALL"</span>, <span class="comment">/* 0xD000 - 1101 kkkk kkkk kkkk | RCALL */</span>
<a name="l00162"></a>00162 <span class="stringliteral">"RJMP"</span> <span class="comment">/* 0xC000 - 1100 kkkk kkkk kkkk | RJMP */</span>
<a name="l00163"></a>00163 };
<a name="l00164"></a>00164
<a name="l00165"></a>00165 <span class="comment">/* *INDENT-ON */</span>
</pre></div></div>
<hr width="80%">
<p><center>Automatically generated by Doxygen 1.5.5 on 7 Nov 2008.</center></p>
</body>
</html>
|
docs/developersguide.html | haitaoyao/btrace | <html>
<head>
<title>
BTrace Developer's Guide
</title>
</head>
<body>
<h1>BTrace Developer's Guide</h1>
<p>
<b>BTrace</b> is a safe, dynamic tracing tool for Java. Please
refer to <a href="usersguide.html">user's guide</a> for BTrace usage
information.
</p>
<h3>BTrace Development Tools</h3>
<p>
<ul>
<li>BTrace requires JDK 6 or above.
<li>BTrace can be built using <a href="http://ant.apache.org/">ant</a> or
<a href="http://www.netbeans.org">NetBeans IDE</a>.
</ul>
</p>
<h3>BTrace Components</h3>
<p>
BTrace accepts a tracing program written in (subset) of
the Java programming language. BTrace compiles the trace class
into bytecode and submits the same to a java.lang.instrument agent that
runs inside the target program. The BTrace agent is dynamically
loaded into the target program if it is not already loaded (using
"attach-on-demand" API).
</p>
BTrace Components:
<ul>
<li><b>BTrace Client Tool</b> - compiles, validates and submits BTrace program to
BTrace VM agent. And receives trace messages and prints to stdout.
<li><b>BTrace java.lang.instrument Agent</b> to bytecode instrument classes
and hotswap them. Also, this agent verifies the bytecodes of BTrace
class for safety [read-only, boundedness] rules. This way we don't need
to trust the client to enforce the safety rules at compile time.
<li><b>Wire Protocol</b> between the client and the agent.
</ul>
<h3>
<h3>BTrace Packages</h3>
<ul>
<li><b><code>com.sun.btrace.agent</code></b>. This package contains
classes for BTrace's <b><code>java.lang.instrument</code></b> agent.
This agent uses simple socket protocol to communicate with the client.
Multiple BTrace clients are supported. For each client, an instance
of com.sun.btrace.agent.Client is created.
<li><b><code>com.sun.btrace.annotations</code></b>. This package
contains annotations and enumeration classes used by BTrace author
as well as agent to specify/infer "probed locations" of the traced
program. These classes are loaded by bootstrap loader (agent
adds classes containing these classes to bootstrap path).
<li><b><code>com.sun.btrace.client</code></b>. This package contains
BTrace client tool main class.
<li><b><code>com.sun.btrace.dtrace</code></b>. This package contains
BTrace and DTrace integration classes. The classes that wrap DTrace/Java
API are here. Please refer to /use/share/lib/java/javadoc/dtrace for DTrace/Java
API.
<li><b><code>com.sun.btrace.comm</code></b>. This package contains
wire protocol messages between BTrace agent and client tool. BTrace
agent and client communicate by object serializing the instances of
Message classes.
<li><b><code>com.sun.btrace.compiler</code></b>. This package
has classes for compiling a BTrace program into bytecode after
safety verification. Because BTrace accepts subset of Java, it uses
javac's APIs (JSR 199 - compiler tool API, JSR 269 - Annotation
Processing API and javac Tree API to access AST of compiled Java
program) to compile and enforce BTrace safety rules.
<li><b><code>com.sun.btrace.resources</code></b>. This package contains
error messages resource used by BTrace compiler and bytecode verifier.
<li><b><code>com.sun.btrace.runtime</code></b>. This package contains
various bytecode instrumentation classes used by BTrace. These
instrumentation classes use <a href="http://asm.objectweb.org">Objectweb's ASM</a>
package to do actual class file parsing and writing. ASM version 3.0
is used. This package contains BTrace bytecode verifier and jvmstat reader as well.
<li><b><code>com.sun.btrace</code></b>. This package contains classes loaded
by bootstrap loader (agent adds classes containing these classes to bootstrap path).
<code>com.sun.btrace.BTraceUtils</code> class contains built-in "functions" that can be called
by any BTrace program (these are read-only and bounded methods can
be called by trace program). <code>com.sun.btrace.BTraceRuntime</code> class contains
per-client state for each BTrace client and helps implementing certain methods
of BTraceUtils. Also, BTraceRuntime makes sure that BTrace agent's own
method invocations and BTrace built-in "function" calls are not
traced [there by leading to infinite recursion!].
</ul>
<h3>BTrace jar files</h3>
<ul>
<li><b>btrace-boot.jar</b> - loaded by bootstrap loader in the traced
JVM. Contains BTrace annotation classes in <b><code>com.sun.btrace.annotations</code></b>
package and classes in <b><code>com.sun.btrace</code></b> package.
<li><b>btrace-agent.jar</b> - contains classes for java.lang.instrument
agent and instrumentation classes. This uses <b><code>asm-3.0</code></b>
jar for instrumentation and <b><code>tools.jar</code></b> for reading
jvmstat counter values [<b><code>sun.jvmstat.monitor</code></b> classes].
<li><b>btrace-client.jar</b> - contains BTrace client classes. This
uses <b><code>tools.jar</code></b> for javac's classes.
</ul>
<h3>BTrace "To Do"s</h3>
<ul>
<li>Remove instrumentation when a client leaves tracing session.
Right now, we "disable" trace calls when a BTrace client leaves
the session. It would be better to remove the instrumentation and
re-hotswap the classes to avoid the "disabled" calls completely.
</ul>
<h3>Debugging BTrace</h3>
<p>
BTrace can be debugged by setting few System properties. All these properties are
set at the BTrace client.
<ul>
<li><b><code>com.sun.btrace.debug</code></b> - this boolean valued property makes
BTrace to print debug messages (set at client - but debug mode is propagated
to BTrace agent as well).
<li><b><code>com.sun.btrace.dumpClasses</code></b> - this boolean valued property
may be set to force BTrace agent dump every .class that is
intrumented.
<li><b><code>com.sun.btrace.dumpDir</code></b> - this is a String valued property
that sets the directory where the instrumened .class files are dumped.
</ul>
It is better to run the traced JVM with <b><code>-Xverify:all</code></b> to force
bytecode verification of all classes. This is to make sure that BTrace does not produce
bad classes thereby crashing the JVM. After dumping instrumeted classes, it is possible
(offline) analyze those using <b>javap</b> tool. The BTrace action methods look like
the form: "btrace$<trace-class-name>$<trace-action-method-name>" - where "."s
in the trace class name are replaced by "$".
</p>
<h3>Known Issues and Limitations</h3>
<ul>
<li><b>BTrace requires JDK 6</b>. There are API dependencies [for example, javac's new APIs].
And BTrace uses certain recent changes with java.lang.instrument and hotswap. In particular,
<b>BTrace adds private methods while hotswapping classes</b>. This feature (of
adding private methods while hotswapping classes) is <b>not</b> available in earlier
JDK versions. Also, retranformantion is used to avoid fetching .class bytes from
the file system. Again, this is a new feature of java.lang.instrument API since JDK 6.
</ul>
</body>
</html>
|
toolchains/share/doc/gas/as.html/HPPA_002dDependent.html | thanhphat11/android_kernel_xiaomi_msm8996 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- This file documents the GNU Assembler "as".
Copyright (C) 1991-2013 Free Software Foundation, Inc.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3
or any later version published by the Free Software Foundation;
with no Invariant Sections, with no Front-Cover Texts, and with no
Back-Cover Texts. A copy of the license is included in the
section entitled "GNU Free Documentation License".
-->
<!-- Created by GNU Texinfo 5.2, http://www.gnu.org/software/texinfo/ -->
<head>
<title>Using as: HPPA-Dependent</title>
<meta name="description" content="Using as: HPPA-Dependent">
<meta name="keywords" content="Using as: HPPA-Dependent">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="makeinfo">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="index.html#Top" rel="start" title="Top">
<link href="AS-Index.html#AS-Index" rel="index" title="AS Index">
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
<link href="Machine-Dependencies.html#Machine-Dependencies" rel="up" title="Machine Dependencies">
<link href="HPPA-Notes.html#HPPA-Notes" rel="next" title="HPPA Notes">
<link href="H8_002f300-Opcodes.html#H8_002f300-Opcodes" rel="prev" title="H8/300 Opcodes">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.smallquotation {font-size: smaller}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
div.indentedblock {margin-left: 3.2em}
div.lisp {margin-left: 3.2em}
div.smalldisplay {margin-left: 3.2em}
div.smallexample {margin-left: 3.2em}
div.smallindentedblock {margin-left: 3.2em; font-size: smaller}
div.smalllisp {margin-left: 3.2em}
kbd {font-style:oblique}
pre.display {font-family: inherit}
pre.format {font-family: inherit}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
pre.smalldisplay {font-family: inherit; font-size: smaller}
pre.smallexample {font-size: smaller}
pre.smallformat {font-family: inherit; font-size: smaller}
pre.smalllisp {font-size: smaller}
span.nocodebreak {white-space:nowrap}
span.nolinebreak {white-space:nowrap}
span.roman {font-family:serif; font-weight:normal}
span.sansserif {font-family:sans-serif; font-weight:normal}
ul.no-bullet {list-style: none}
-->
</style>
</head>
<body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<a name="HPPA_002dDependent"></a>
<div class="header">
<p>
Next: <a href="ESA_002f390_002dDependent.html#ESA_002f390_002dDependent" accesskey="n" rel="next">ESA/390-Dependent</a>, Previous: <a href="H8_002f300_002dDependent.html#H8_002f300_002dDependent" accesskey="p" rel="prev">H8/300-Dependent</a>, Up: <a href="Machine-Dependencies.html#Machine-Dependencies" accesskey="u" rel="up">Machine Dependencies</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="AS-Index.html#AS-Index" title="Index" rel="index">Index</a>]</p>
</div>
<hr>
<a name="HPPA-Dependent-Features"></a>
<h3 class="section">9.13 HPPA Dependent Features</h3>
<a name="index-support"></a>
<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top">• <a href="HPPA-Notes.html#HPPA-Notes" accesskey="1">HPPA Notes</a>:</td><td> </td><td align="left" valign="top">Notes
</td></tr>
<tr><td align="left" valign="top">• <a href="HPPA-Options.html#HPPA-Options" accesskey="2">HPPA Options</a>:</td><td> </td><td align="left" valign="top">Options
</td></tr>
<tr><td align="left" valign="top">• <a href="HPPA-Syntax.html#HPPA-Syntax" accesskey="3">HPPA Syntax</a>:</td><td> </td><td align="left" valign="top">Syntax
</td></tr>
<tr><td align="left" valign="top">• <a href="HPPA-Floating-Point.html#HPPA-Floating-Point" accesskey="4">HPPA Floating Point</a>:</td><td> </td><td align="left" valign="top">Floating Point
</td></tr>
<tr><td align="left" valign="top">• <a href="HPPA-Directives.html#HPPA-Directives" accesskey="5">HPPA Directives</a>:</td><td> </td><td align="left" valign="top">HPPA Machine Directives
</td></tr>
<tr><td align="left" valign="top">• <a href="HPPA-Opcodes.html#HPPA-Opcodes" accesskey="6">HPPA Opcodes</a>:</td><td> </td><td align="left" valign="top">Opcodes
</td></tr>
</table>
</body>
</html>
|
javadoc/models/jeu/class-use/Jeu_Client.html | PiRSquared17/asd-tower-defense | <!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_16) on Thu Jul 22 17:19:23 CEST 2010 -->
<TITLE>
Uses of Class models.jeu.Jeu_Client
</TITLE>
<META NAME="date" CONTENT="2010-07-22">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class models.jeu.Jeu_Client";
}
}
</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="../../../models/jeu/Jeu_Client.html" title="class in models.jeu"><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-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">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?models/jeu/\class-useJeu_Client.html" target="_top"><B>FRAMES</B></A>
<A HREF="Jeu_Client.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>models.jeu.Jeu_Client</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="../../../models/jeu/Jeu_Client.html" title="class in models.jeu">Jeu_Client</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#reseau.jeu.client"><B>reseau.jeu.client</B></A></TD>
<TD> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#vues"><B>vues</B></A></TD>
<TD> </TD>
</TR>
</TABLE>
<P>
<A NAME="reseau.jeu.client"><!-- --></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="../../../models/jeu/Jeu_Client.html" title="class in models.jeu">Jeu_Client</A> in <A HREF="../../../reseau/jeu/client/package-summary.html">reseau.jeu.client</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">Constructors in <A HREF="../../../reseau/jeu/client/package-summary.html">reseau.jeu.client</A> with parameters of type <A HREF="../../../models/jeu/Jeu_Client.html" title="class in models.jeu">Jeu_Client</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../reseau/jeu/client/ClientJeu.html#ClientJeu(models.jeu.Jeu_Client)">ClientJeu</A></B>(<A HREF="../../../models/jeu/Jeu_Client.html" title="class in models.jeu">Jeu_Client</A> jeu)</CODE>
<BR>
Constructeur</TD>
</TR>
</TABLE>
<P>
<A NAME="vues"><!-- --></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="../../../models/jeu/Jeu_Client.html" title="class in models.jeu">Jeu_Client</A> in <A HREF="../../../vues/package-summary.html">vues</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">Constructors in <A HREF="../../../vues/package-summary.html">vues</A> with parameters of type <A HREF="../../../models/jeu/Jeu_Client.html" title="class in models.jeu">Jeu_Client</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../vues/Fenetre_JeuVersus.html#Fenetre_JeuVersus(models.jeu.Jeu_Client)">Fenetre_JeuVersus</A></B>(<A HREF="../../../models/jeu/Jeu_Client.html" title="class in models.jeu">Jeu_Client</A> jeu)</CODE>
<BR>
Constructeur de la fenetre.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../vues/Panel_AttendreJoueurs.html#Panel_AttendreJoueurs(javax.swing.JFrame, models.jeu.Jeu_Client)">Panel_AttendreJoueurs</A></B>(javax.swing.JFrame parent,
<A HREF="../../../models/jeu/Jeu_Client.html" title="class in models.jeu">Jeu_Client</A> jeu)</CODE>
<BR>
Constructeur du joueur qui rejoint</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../vues/Panel_AttendreJoueurs.html#Panel_AttendreJoueurs(javax.swing.JFrame, models.jeu.Jeu_Serveur, models.jeu.Jeu_Client)">Panel_AttendreJoueurs</A></B>(javax.swing.JFrame parent,
<A HREF="../../../models/jeu/Jeu_Serveur.html" title="class in models.jeu">Jeu_Serveur</A> jeuServeur,
<A HREF="../../../models/jeu/Jeu_Client.html" title="class in models.jeu">Jeu_Client</A> jeuClient)</CODE>
<BR>
Constructeur de créateur de partie</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="../../../models/jeu/Jeu_Client.html" title="class in models.jeu"><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-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">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?models/jeu/\class-useJeu_Client.html" target="_top"><B>FRAMES</B></A>
<A HREF="Jeu_Client.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>
</BODY>
</HTML>
|
2016-2017/septiembre/redes/ex4/html/estilo3.css | oogg06/p_tests | #cabecera, #publicidad, #relacionados, #pie{
border-width: 1px;
border-style: solid;
border-color: black;
margin-left: 5px;
}
#cabecera{
float: left;
width:25%;
}
#publicidad{
float: right;
width: 25%;
}
#relacionados{
float: right;
width: 25%;
}
#pie{
clear: both;
} |
wiki/templates/wiki/settings.html | Livit/Livit.Learn.EdX.Wiki | {% extends "wiki/article.html" %}
{% load wiki_tags i18n %}
{% load url from future %}
{% block wiki_pagetitle %}{% trans "Settings" %}: {{ article.current_revision.title }}{% endblock %}
{% block wiki_contents_tab %}
{% for form in forms %}
<form method="POST" class="form-horizontal settings-form" action="?f={{form.action}}">
<h3 class="page-header">{{ form.settings_form_headline }}</h2>
{% wiki_form form %}
<div class="form-group form-actions">
<div class="col-lg-2"></div>
<div class="col-lg-10">
<button type="submit" name="save" value="1" class="btn btn-primary btn-large">
<span class="icon-ok"></span>
{% trans "Save changes" %}
</button>
</div>
</div>
</form>
{% endfor %}
{% endblock %}
|
src/Frapid.Web/scripts/semantic-ui/components/transition.rtl.css | SurajRepo/frapid | /*!
* # Semantic UI 2.2.7 - Transition
* http://github.com/semantic-org/semantic-ui/
*
*
* Released under the MIT license
* http://opensource.org/licenses/MIT
*
*/
/*******************************
Transitions
*******************************/
.transition {
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-duration: 300ms;
animation-duration: 300ms;
-webkit-animation-timing-function: ease;
animation-timing-function: ease;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
/*******************************
States
*******************************/
/* Animating */
.animating.transition {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
visibility: visible !important;
}
/* Loading */
.loading.transition {
position: absolute;
top: -99999px;
right: -99999px;
}
/* Hidden */
.hidden.transition {
display: none;
visibility: hidden;
}
/* Visible */
.visible.transition {
display: block !important;
visibility: visible !important;
/* backface-visibility: @backfaceVisibility;
transform: @use3DAcceleration;*/
}
/* Disabled */
.disabled.transition {
-webkit-animation-play-state: paused;
animation-play-state: paused;
}
/*******************************
Variations
*******************************/
.looping.transition {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
/*******************************
Transitions
*******************************/
/*
Some transitions adapted from Animate CSS
https://github.com/daneden/animate.css
Additional transitions adapted from Glide
by Nick Pettit - https://github.com/nickpettit/glide
*/
/*--------------
Browse
---------------*/
.transition.browse {
-webkit-animation-duration: 500ms;
animation-duration: 500ms;
}
.transition.browse.in {
-webkit-animation-name: browseIn;
animation-name: browseIn;
}
.transition.browse.out,
.transition.browse.left.out {
-webkit-animation-name: browseOutLeft;
animation-name: browseOutLeft;
}
.transition.browse.right.out {
-webkit-animation-name: browseOutRight;
animation-name: browseOutRight;
}
/* In */
@-webkit-keyframes browseIn {
0% {
-webkit-transform: scale(0.8) translateZ(0px);
transform: scale(0.8) translateZ(0px);
z-index: -1;
}
10% {
-webkit-transform: scale(0.8) translateZ(0px);
transform: scale(0.8) translateZ(0px);
z-index: -1;
opacity: 0.7;
}
80% {
-webkit-transform: scale(1.05) translateZ(0px);
transform: scale(1.05) translateZ(0px);
opacity: 1;
z-index: 999;
}
100% {
-webkit-transform: scale(1) translateZ(0px);
transform: scale(1) translateZ(0px);
z-index: 999;
}
}
@keyframes browseIn {
0% {
-webkit-transform: scale(0.8) translateZ(0px);
transform: scale(0.8) translateZ(0px);
z-index: -1;
}
10% {
-webkit-transform: scale(0.8) translateZ(0px);
transform: scale(0.8) translateZ(0px);
z-index: -1;
opacity: 0.7;
}
80% {
-webkit-transform: scale(1.05) translateZ(0px);
transform: scale(1.05) translateZ(0px);
opacity: 1;
z-index: 999;
}
100% {
-webkit-transform: scale(1) translateZ(0px);
transform: scale(1) translateZ(0px);
z-index: 999;
}
}
/* Out */
@-webkit-keyframes browseOutLeft {
0% {
z-index: 999;
-webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg);
transform: translateX(0%) rotateY(0deg) rotateX(0deg);
}
50% {
z-index: -1;
-webkit-transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
}
80% {
opacity: 1;
}
100% {
z-index: -1;
-webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
opacity: 0;
}
}
@keyframes browseOutLeft {
0% {
z-index: 999;
-webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg);
transform: translateX(0%) rotateY(0deg) rotateX(0deg);
}
50% {
z-index: -1;
-webkit-transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
}
80% {
opacity: 1;
}
100% {
z-index: -1;
-webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
opacity: 0;
}
}
@-webkit-keyframes browseOutRight {
0% {
z-index: 999;
-webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg);
transform: translateX(0%) rotateY(0deg) rotateX(0deg);
}
50% {
z-index: 1;
-webkit-transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
}
80% {
opacity: 1;
}
100% {
z-index: 1;
-webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
opacity: 0;
}
}
@keyframes browseOutRight {
0% {
z-index: 999;
-webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg);
transform: translateX(0%) rotateY(0deg) rotateX(0deg);
}
50% {
z-index: 1;
-webkit-transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
}
80% {
opacity: 1;
}
100% {
z-index: 1;
-webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
opacity: 0;
}
}
/*--------------
Drop
---------------*/
.drop.transition {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-duration: 400ms;
animation-duration: 400ms;
-webkit-animation-timing-function: cubic-bezier(0.34, 1.61, 0.7, 1);
animation-timing-function: cubic-bezier(0.34, 1.61, 0.7, 1);
}
.drop.transition.in {
-webkit-animation-name: dropIn;
animation-name: dropIn;
}
.drop.transition.out {
-webkit-animation-name: dropOut;
animation-name: dropOut;
}
/* Drop */
@-webkit-keyframes dropIn {
0% {
opacity: 0;
-webkit-transform: scale(0);
transform: scale(0);
}
100% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes dropIn {
0% {
opacity: 0;
-webkit-transform: scale(0);
transform: scale(0);
}
100% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
}
@-webkit-keyframes dropOut {
0% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
100% {
opacity: 0;
-webkit-transform: scale(0);
transform: scale(0);
}
}
@keyframes dropOut {
0% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
100% {
opacity: 0;
-webkit-transform: scale(0);
transform: scale(0);
}
}
/*--------------
Fade
---------------*/
.transition.fade.in {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
.transition[class*="fade up"].in {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
.transition[class*="fade down"].in {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
.transition[class*="fade left"].in {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
.transition[class*="fade right"].in {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
.transition.fade.out {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
.transition[class*="fade up"].out {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}
.transition[class*="fade down"].out {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
}
.transition[class*="fade left"].out {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
}
.transition[class*="fade right"].out {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
}
/* In */
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translateY(10%);
transform: translateY(10%);
}
100% {
opacity: 1;
-webkit-transform: translateY(0%);
transform: translateY(0%);
}
}
@keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translateY(10%);
transform: translateY(10%);
}
100% {
opacity: 1;
-webkit-transform: translateY(0%);
transform: translateY(0%);
}
}
@-webkit-keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-10%);
transform: translateY(-10%);
}
100% {
opacity: 1;
-webkit-transform: translateY(0%);
transform: translateY(0%);
}
}
@keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-10%);
transform: translateY(-10%);
}
100% {
opacity: 1;
-webkit-transform: translateY(0%);
transform: translateY(0%);
}
}
@-webkit-keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-10%);
transform: translateX(-10%);
}
100% {
opacity: 1;
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
}
@keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-10%);
transform: translateX(-10%);
}
100% {
opacity: 1;
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
}
@-webkit-keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translateX(10%);
transform: translateX(10%);
}
100% {
opacity: 1;
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
}
@keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translateX(10%);
transform: translateX(10%);
}
100% {
opacity: 1;
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
}
/* Out */
@-webkit-keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@-webkit-keyframes fadeOutUp {
0% {
opacity: 1;
-webkit-transform: translateY(0%);
transform: translateY(0%);
}
100% {
opacity: 0;
-webkit-transform: translateY(5%);
transform: translateY(5%);
}
}
@keyframes fadeOutUp {
0% {
opacity: 1;
-webkit-transform: translateY(0%);
transform: translateY(0%);
}
100% {
opacity: 0;
-webkit-transform: translateY(5%);
transform: translateY(5%);
}
}
@-webkit-keyframes fadeOutDown {
0% {
opacity: 1;
-webkit-transform: translateY(0%);
transform: translateY(0%);
}
100% {
opacity: 0;
-webkit-transform: translateY(-5%);
transform: translateY(-5%);
}
}
@keyframes fadeOutDown {
0% {
opacity: 1;
-webkit-transform: translateY(0%);
transform: translateY(0%);
}
100% {
opacity: 0;
-webkit-transform: translateY(-5%);
transform: translateY(-5%);
}
}
@-webkit-keyframes fadeOutLeft {
0% {
opacity: 1;
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
100% {
opacity: 0;
-webkit-transform: translateX(-5%);
transform: translateX(-5%);
}
}
@keyframes fadeOutLeft {
0% {
opacity: 1;
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
100% {
opacity: 0;
-webkit-transform: translateX(-5%);
transform: translateX(-5%);
}
}
@-webkit-keyframes fadeOutRight {
0% {
opacity: 1;
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
100% {
opacity: 0;
-webkit-transform: translateX(5%);
transform: translateX(5%);
}
}
@keyframes fadeOutRight {
0% {
opacity: 1;
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
100% {
opacity: 0;
-webkit-transform: translateX(5%);
transform: translateX(5%);
}
}
/*--------------
Flips
---------------*/
.flip.transition.in,
.flip.transition.out {
-webkit-animation-duration: 600ms;
animation-duration: 600ms;
}
.horizontal.flip.transition.in {
-webkit-animation-name: horizontalFlipIn;
animation-name: horizontalFlipIn;
}
.horizontal.flip.transition.out {
-webkit-animation-name: horizontalFlipOut;
animation-name: horizontalFlipOut;
}
.vertical.flip.transition.in {
-webkit-animation-name: verticalFlipIn;
animation-name: verticalFlipIn;
}
.vertical.flip.transition.out {
-webkit-animation-name: verticalFlipOut;
animation-name: verticalFlipOut;
}
/* In */
@-webkit-keyframes horizontalFlipIn {
0% {
-webkit-transform: perspective(2000px) rotateY(-90deg);
transform: perspective(2000px) rotateY(-90deg);
opacity: 0;
}
100% {
-webkit-transform: perspective(2000px) rotateY(0deg);
transform: perspective(2000px) rotateY(0deg);
opacity: 1;
}
}
@keyframes horizontalFlipIn {
0% {
-webkit-transform: perspective(2000px) rotateY(-90deg);
transform: perspective(2000px) rotateY(-90deg);
opacity: 0;
}
100% {
-webkit-transform: perspective(2000px) rotateY(0deg);
transform: perspective(2000px) rotateY(0deg);
opacity: 1;
}
}
@-webkit-keyframes verticalFlipIn {
0% {
-webkit-transform: perspective(2000px) rotateX(-90deg);
transform: perspective(2000px) rotateX(-90deg);
opacity: 0;
}
100% {
-webkit-transform: perspective(2000px) rotateX(0deg);
transform: perspective(2000px) rotateX(0deg);
opacity: 1;
}
}
@keyframes verticalFlipIn {
0% {
-webkit-transform: perspective(2000px) rotateX(-90deg);
transform: perspective(2000px) rotateX(-90deg);
opacity: 0;
}
100% {
-webkit-transform: perspective(2000px) rotateX(0deg);
transform: perspective(2000px) rotateX(0deg);
opacity: 1;
}
}
/* Out */
@-webkit-keyframes horizontalFlipOut {
0% {
-webkit-transform: perspective(2000px) rotateY(0deg);
transform: perspective(2000px) rotateY(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(2000px) rotateY(90deg);
transform: perspective(2000px) rotateY(90deg);
opacity: 0;
}
}
@keyframes horizontalFlipOut {
0% {
-webkit-transform: perspective(2000px) rotateY(0deg);
transform: perspective(2000px) rotateY(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(2000px) rotateY(90deg);
transform: perspective(2000px) rotateY(90deg);
opacity: 0;
}
}
@-webkit-keyframes verticalFlipOut {
0% {
-webkit-transform: perspective(2000px) rotateX(0deg);
transform: perspective(2000px) rotateX(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(2000px) rotateX(-90deg);
transform: perspective(2000px) rotateX(-90deg);
opacity: 0;
}
}
@keyframes verticalFlipOut {
0% {
-webkit-transform: perspective(2000px) rotateX(0deg);
transform: perspective(2000px) rotateX(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(2000px) rotateX(-90deg);
transform: perspective(2000px) rotateX(-90deg);
opacity: 0;
}
}
/*--------------
Scale
---------------*/
.scale.transition.in {
-webkit-animation-name: scaleIn;
animation-name: scaleIn;
}
.scale.transition.out {
-webkit-animation-name: scaleOut;
animation-name: scaleOut;
}
@-webkit-keyframes scaleIn {
0% {
opacity: 0;
-webkit-transform: scale(0.8);
transform: scale(0.8);
}
100% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes scaleIn {
0% {
opacity: 0;
-webkit-transform: scale(0.8);
transform: scale(0.8);
}
100% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
}
/* Out */
@-webkit-keyframes scaleOut {
0% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
100% {
opacity: 0;
-webkit-transform: scale(0.9);
transform: scale(0.9);
}
}
@keyframes scaleOut {
0% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
100% {
opacity: 0;
-webkit-transform: scale(0.9);
transform: scale(0.9);
}
}
/*--------------
Fly
---------------*/
/* Inward */
.transition.fly {
-webkit-animation-duration: 0.6s;
animation-duration: 0.6s;
-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.transition.fly.in {
-webkit-animation-name: flyIn;
animation-name: flyIn;
}
.transition[class*="fly up"].in {
-webkit-animation-name: flyInUp;
animation-name: flyInUp;
}
.transition[class*="fly down"].in {
-webkit-animation-name: flyInDown;
animation-name: flyInDown;
}
.transition[class*="fly left"].in {
-webkit-animation-name: flyInLeft;
animation-name: flyInLeft;
}
.transition[class*="fly right"].in {
-webkit-animation-name: flyInRight;
animation-name: flyInRight;
}
/* Outward */
.transition.fly.out {
-webkit-animation-name: flyOut;
animation-name: flyOut;
}
.transition[class*="fly up"].out {
-webkit-animation-name: flyOutUp;
animation-name: flyOutUp;
}
.transition[class*="fly down"].out {
-webkit-animation-name: flyOutDown;
animation-name: flyOutDown;
}
.transition[class*="fly left"].out {
-webkit-animation-name: flyOutLeft;
animation-name: flyOutLeft;
}
.transition[class*="fly right"].out {
-webkit-animation-name: flyOutRight;
animation-name: flyOutRight;
}
/* In */
@-webkit-keyframes flyIn {
0% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(0.97, 0.97, 0.97);
transform: scale3d(0.97, 0.97, 0.97);
}
100% {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes flyIn {
0% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(0.97, 0.97, 0.97);
transform: scale3d(0.97, 0.97, 0.97);
}
100% {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@-webkit-keyframes flyInUp {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 1500px, 0);
transform: translate3d(0, 1500px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes flyInUp {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 1500px, 0);
transform: translate3d(0, 1500px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@-webkit-keyframes flyInDown {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -1500px, 0);
transform: translate3d(0, -1500px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes flyInDown {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -1500px, 0);
transform: translate3d(0, -1500px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@-webkit-keyframes flyInLeft {
0% {
opacity: 0;
-webkit-transform: translate3d(-1500px, 0, 0);
transform: translate3d(-1500px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes flyInLeft {
0% {
opacity: 0;
-webkit-transform: translate3d(-1500px, 0, 0);
transform: translate3d(-1500px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@-webkit-keyframes flyInRight {
0% {
opacity: 0;
-webkit-transform: translate3d(1500px, 0, 0);
transform: translate3d(1500px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes flyInRight {
0% {
opacity: 0;
-webkit-transform: translate3d(1500px, 0, 0);
transform: translate3d(1500px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
/* Out */
@-webkit-keyframes flyOut {
20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9);
}
50%,
55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
100% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
}
@keyframes flyOut {
20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9);
}
50%,
55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
100% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
}
@-webkit-keyframes flyOutUp {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%,
45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes flyOutUp {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%,
45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@-webkit-keyframes flyOutDown {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%,
45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes flyOutDown {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%,
45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@-webkit-keyframes flyOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes flyOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@-webkit-keyframes flyOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes flyOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
/*--------------
Slide
---------------*/
.transition.slide.in,
.transition[class*="slide down"].in {
-webkit-animation-name: slideInY;
animation-name: slideInY;
-webkit-transform-origin: top center;
transform-origin: top center;
}
.transition[class*="slide up"].in {
-webkit-animation-name: slideInY;
animation-name: slideInY;
-webkit-transform-origin: bottom center;
transform-origin: bottom center;
}
.transition[class*="slide left"].in {
-webkit-animation-name: slideInX;
animation-name: slideInX;
-webkit-transform-origin: center left;
transform-origin: center left;
}
.transition[class*="slide right"].in {
-webkit-animation-name: slideInX;
animation-name: slideInX;
-webkit-transform-origin: center right;
transform-origin: center right;
}
.transition.slide.out,
.transition[class*="slide down"].out {
-webkit-animation-name: slideOutY;
animation-name: slideOutY;
-webkit-transform-origin: top center;
transform-origin: top center;
}
.transition[class*="slide up"].out {
-webkit-animation-name: slideOutY;
animation-name: slideOutY;
-webkit-transform-origin: bottom center;
transform-origin: bottom center;
}
.transition[class*="slide left"].out {
-webkit-animation-name: slideOutX;
animation-name: slideOutX;
-webkit-transform-origin: center left;
transform-origin: center left;
}
.transition[class*="slide right"].out {
-webkit-animation-name: slideOutX;
animation-name: slideOutX;
-webkit-transform-origin: center right;
transform-origin: center right;
}
/* In */
@-webkit-keyframes slideInY {
0% {
opacity: 0;
-webkit-transform: scaleY(0);
transform: scaleY(0);
}
100% {
opacity: 1;
-webkit-transform: scaleY(1);
transform: scaleY(1);
}
}
@keyframes slideInY {
0% {
opacity: 0;
-webkit-transform: scaleY(0);
transform: scaleY(0);
}
100% {
opacity: 1;
-webkit-transform: scaleY(1);
transform: scaleY(1);
}
}
@-webkit-keyframes slideInX {
0% {
opacity: 0;
-webkit-transform: scaleX(0);
transform: scaleX(0);
}
100% {
opacity: 1;
-webkit-transform: scaleX(1);
transform: scaleX(1);
}
}
@keyframes slideInX {
0% {
opacity: 0;
-webkit-transform: scaleX(0);
transform: scaleX(0);
}
100% {
opacity: 1;
-webkit-transform: scaleX(1);
transform: scaleX(1);
}
}
/* Out */
@-webkit-keyframes slideOutY {
0% {
opacity: 1;
-webkit-transform: scaleY(1);
transform: scaleY(1);
}
100% {
opacity: 0;
-webkit-transform: scaleY(0);
transform: scaleY(0);
}
}
@keyframes slideOutY {
0% {
opacity: 1;
-webkit-transform: scaleY(1);
transform: scaleY(1);
}
100% {
opacity: 0;
-webkit-transform: scaleY(0);
transform: scaleY(0);
}
}
@-webkit-keyframes slideOutX {
0% {
opacity: 1;
-webkit-transform: scaleX(1);
transform: scaleX(1);
}
100% {
opacity: 0;
-webkit-transform: scaleX(0);
transform: scaleX(0);
}
}
@keyframes slideOutX {
0% {
opacity: 1;
-webkit-transform: scaleX(1);
transform: scaleX(1);
}
100% {
opacity: 0;
-webkit-transform: scaleX(0);
transform: scaleX(0);
}
}
/*--------------
Swing
---------------*/
.transition.swing {
-webkit-animation-duration: 800ms;
animation-duration: 800ms;
}
.transition[class*="swing down"].in {
-webkit-animation-name: swingInX;
animation-name: swingInX;
-webkit-transform-origin: top center;
transform-origin: top center;
}
.transition[class*="swing up"].in {
-webkit-animation-name: swingInX;
animation-name: swingInX;
-webkit-transform-origin: bottom center;
transform-origin: bottom center;
}
.transition[class*="swing left"].in {
-webkit-animation-name: swingInY;
animation-name: swingInY;
-webkit-transform-origin: center left;
transform-origin: center left;
}
.transition[class*="swing right"].in {
-webkit-animation-name: swingInY;
animation-name: swingInY;
-webkit-transform-origin: center right;
transform-origin: center right;
}
.transition.swing.out,
.transition[class*="swing down"].out {
-webkit-animation-name: swingOutX;
animation-name: swingOutX;
-webkit-transform-origin: top center;
transform-origin: top center;
}
.transition[class*="swing up"].out {
-webkit-animation-name: swingOutX;
animation-name: swingOutX;
-webkit-transform-origin: bottom center;
transform-origin: bottom center;
}
.transition[class*="swing left"].out {
-webkit-animation-name: swingOutY;
animation-name: swingOutY;
-webkit-transform-origin: center left;
transform-origin: center left;
}
.transition[class*="swing right"].out {
-webkit-animation-name: swingOutY;
animation-name: swingOutY;
-webkit-transform-origin: center right;
transform-origin: center right;
}
/* In */
@-webkit-keyframes swingInX {
0% {
-webkit-transform: perspective(1000px) rotateX(90deg);
transform: perspective(1000px) rotateX(90deg);
opacity: 0;
}
40% {
-webkit-transform: perspective(1000px) rotateX(-30deg);
transform: perspective(1000px) rotateX(-30deg);
opacity: 1;
}
60% {
-webkit-transform: perspective(1000px) rotateX(15deg);
transform: perspective(1000px) rotateX(15deg);
}
80% {
-webkit-transform: perspective(1000px) rotateX(-7.5deg);
transform: perspective(1000px) rotateX(-7.5deg);
}
100% {
-webkit-transform: perspective(1000px) rotateX(0deg);
transform: perspective(1000px) rotateX(0deg);
}
}
@keyframes swingInX {
0% {
-webkit-transform: perspective(1000px) rotateX(90deg);
transform: perspective(1000px) rotateX(90deg);
opacity: 0;
}
40% {
-webkit-transform: perspective(1000px) rotateX(-30deg);
transform: perspective(1000px) rotateX(-30deg);
opacity: 1;
}
60% {
-webkit-transform: perspective(1000px) rotateX(15deg);
transform: perspective(1000px) rotateX(15deg);
}
80% {
-webkit-transform: perspective(1000px) rotateX(-7.5deg);
transform: perspective(1000px) rotateX(-7.5deg);
}
100% {
-webkit-transform: perspective(1000px) rotateX(0deg);
transform: perspective(1000px) rotateX(0deg);
}
}
@-webkit-keyframes swingInY {
0% {
-webkit-transform: perspective(1000px) rotateY(-90deg);
transform: perspective(1000px) rotateY(-90deg);
opacity: 0;
}
40% {
-webkit-transform: perspective(1000px) rotateY(30deg);
transform: perspective(1000px) rotateY(30deg);
opacity: 1;
}
60% {
-webkit-transform: perspective(1000px) rotateY(-17.5deg);
transform: perspective(1000px) rotateY(-17.5deg);
}
80% {
-webkit-transform: perspective(1000px) rotateY(7.5deg);
transform: perspective(1000px) rotateY(7.5deg);
}
100% {
-webkit-transform: perspective(1000px) rotateY(0deg);
transform: perspective(1000px) rotateY(0deg);
}
}
@keyframes swingInY {
0% {
-webkit-transform: perspective(1000px) rotateY(-90deg);
transform: perspective(1000px) rotateY(-90deg);
opacity: 0;
}
40% {
-webkit-transform: perspective(1000px) rotateY(30deg);
transform: perspective(1000px) rotateY(30deg);
opacity: 1;
}
60% {
-webkit-transform: perspective(1000px) rotateY(-17.5deg);
transform: perspective(1000px) rotateY(-17.5deg);
}
80% {
-webkit-transform: perspective(1000px) rotateY(7.5deg);
transform: perspective(1000px) rotateY(7.5deg);
}
100% {
-webkit-transform: perspective(1000px) rotateY(0deg);
transform: perspective(1000px) rotateY(0deg);
}
}
/* Out */
@-webkit-keyframes swingOutX {
0% {
-webkit-transform: perspective(1000px) rotateX(0deg);
transform: perspective(1000px) rotateX(0deg);
}
40% {
-webkit-transform: perspective(1000px) rotateX(-7.5deg);
transform: perspective(1000px) rotateX(-7.5deg);
}
60% {
-webkit-transform: perspective(1000px) rotateX(17.5deg);
transform: perspective(1000px) rotateX(17.5deg);
}
80% {
-webkit-transform: perspective(1000px) rotateX(-30deg);
transform: perspective(1000px) rotateX(-30deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(1000px) rotateX(90deg);
transform: perspective(1000px) rotateX(90deg);
opacity: 0;
}
}
@keyframes swingOutX {
0% {
-webkit-transform: perspective(1000px) rotateX(0deg);
transform: perspective(1000px) rotateX(0deg);
}
40% {
-webkit-transform: perspective(1000px) rotateX(-7.5deg);
transform: perspective(1000px) rotateX(-7.5deg);
}
60% {
-webkit-transform: perspective(1000px) rotateX(17.5deg);
transform: perspective(1000px) rotateX(17.5deg);
}
80% {
-webkit-transform: perspective(1000px) rotateX(-30deg);
transform: perspective(1000px) rotateX(-30deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(1000px) rotateX(90deg);
transform: perspective(1000px) rotateX(90deg);
opacity: 0;
}
}
@-webkit-keyframes swingOutY {
0% {
-webkit-transform: perspective(1000px) rotateY(0deg);
transform: perspective(1000px) rotateY(0deg);
}
40% {
-webkit-transform: perspective(1000px) rotateY(7.5deg);
transform: perspective(1000px) rotateY(7.5deg);
}
60% {
-webkit-transform: perspective(1000px) rotateY(-10deg);
transform: perspective(1000px) rotateY(-10deg);
}
80% {
-webkit-transform: perspective(1000px) rotateY(30deg);
transform: perspective(1000px) rotateY(30deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(1000px) rotateY(-90deg);
transform: perspective(1000px) rotateY(-90deg);
opacity: 0;
}
}
@keyframes swingOutY {
0% {
-webkit-transform: perspective(1000px) rotateY(0deg);
transform: perspective(1000px) rotateY(0deg);
}
40% {
-webkit-transform: perspective(1000px) rotateY(7.5deg);
transform: perspective(1000px) rotateY(7.5deg);
}
60% {
-webkit-transform: perspective(1000px) rotateY(-10deg);
transform: perspective(1000px) rotateY(-10deg);
}
80% {
-webkit-transform: perspective(1000px) rotateY(30deg);
transform: perspective(1000px) rotateY(30deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(1000px) rotateY(-90deg);
transform: perspective(1000px) rotateY(-90deg);
opacity: 0;
}
}
/*******************************
Static Animations
*******************************/
/*--------------
Emphasis
---------------*/
.flash.transition {
-webkit-animation-duration: 750ms;
animation-duration: 750ms;
-webkit-animation-name: flash;
animation-name: flash;
}
.shake.transition {
-webkit-animation-duration: 750ms;
animation-duration: 750ms;
-webkit-animation-name: shake;
animation-name: shake;
}
.bounce.transition {
-webkit-animation-duration: 750ms;
animation-duration: 750ms;
-webkit-animation-name: bounce;
animation-name: bounce;
}
.tada.transition {
-webkit-animation-duration: 750ms;
animation-duration: 750ms;
-webkit-animation-name: tada;
animation-name: tada;
}
.pulse.transition {
-webkit-animation-duration: 500ms;
animation-duration: 500ms;
-webkit-animation-name: pulse;
animation-name: pulse;
}
.jiggle.transition {
-webkit-animation-duration: 750ms;
animation-duration: 750ms;
-webkit-animation-name: jiggle;
animation-name: jiggle;
}
/* Flash */
@-webkit-keyframes flash {
0%,
50%,
100% {
opacity: 1;
}
25%,
75% {
opacity: 0;
}
}
@keyframes flash {
0%,
50%,
100% {
opacity: 1;
}
25%,
75% {
opacity: 0;
}
}
/* Shake */
@-webkit-keyframes shake {
0%,
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translateX(10px);
transform: translateX(10px);
}
20%,
40%,
60%,
80% {
-webkit-transform: translateX(-10px);
transform: translateX(-10px);
}
}
@keyframes shake {
0%,
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translateX(10px);
transform: translateX(10px);
}
20%,
40%,
60%,
80% {
-webkit-transform: translateX(-10px);
transform: translateX(-10px);
}
}
/* Bounce */
@-webkit-keyframes bounce {
0%,
20%,
50%,
80%,
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
40% {
-webkit-transform: translateY(-30px);
transform: translateY(-30px);
}
60% {
-webkit-transform: translateY(-15px);
transform: translateY(-15px);
}
}
@keyframes bounce {
0%,
20%,
50%,
80%,
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
40% {
-webkit-transform: translateY(-30px);
transform: translateY(-30px);
}
60% {
-webkit-transform: translateY(-15px);
transform: translateY(-15px);
}
}
/* Tada */
@-webkit-keyframes tada {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
10%,
20% {
-webkit-transform: scale(0.9) rotate(3deg);
transform: scale(0.9) rotate(3deg);
}
30%,
50%,
70%,
90% {
-webkit-transform: scale(1.1) rotate(-3deg);
transform: scale(1.1) rotate(-3deg);
}
40%,
60%,
80% {
-webkit-transform: scale(1.1) rotate(3deg);
transform: scale(1.1) rotate(3deg);
}
100% {
-webkit-transform: scale(1) rotate(0);
transform: scale(1) rotate(0);
}
}
@keyframes tada {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
10%,
20% {
-webkit-transform: scale(0.9) rotate(3deg);
transform: scale(0.9) rotate(3deg);
}
30%,
50%,
70%,
90% {
-webkit-transform: scale(1.1) rotate(-3deg);
transform: scale(1.1) rotate(-3deg);
}
40%,
60%,
80% {
-webkit-transform: scale(1.1) rotate(3deg);
transform: scale(1.1) rotate(3deg);
}
100% {
-webkit-transform: scale(1) rotate(0);
transform: scale(1) rotate(0);
}
}
/* Pulse */
@-webkit-keyframes pulse {
0% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
50% {
-webkit-transform: scale(0.9);
transform: scale(0.9);
opacity: 0.7;
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
}
@keyframes pulse {
0% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
50% {
-webkit-transform: scale(0.9);
transform: scale(0.9);
opacity: 0.7;
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
}
/* Rubberband */
@-webkit-keyframes jiggle {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(0.95, 1.05, 1);
transform: scale3d(0.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, 0.95, 1);
transform: scale3d(1.05, 0.95, 1);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes jiggle {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(0.95, 1.05, 1);
transform: scale3d(0.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, 0.95, 1);
transform: scale3d(1.05, 0.95, 1);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
/*******************************
Site Overrides
*******************************/
|
uw-frame-components/portal/main/partials/beta-header.html | jiayinjx/uw-frame | <div class='beta-announcement'>
<div class="container-fluid row">
<div class='col-xs-5 col-sm-6 col-md-7 no-padding text'><strong>You're looking at the new MyUW.</strong><br/>
<span class="hidden-xs">It's a work in progress.
<a onClick="_gaq.push(['_trackEvent', 'Beta', 'Read About Change', 'Read About Change']);"
href="http://redesign.my.wisc.edu/"
target="_blank">
Read about what's changing
</a>.
</span>
</div>
<div class='col-xs-7 col-sm-6 col-md-5 no-padding beta-buttons-div'>
<span class="beta-buttons">
<a class='btn btn-default feedback-button' href="/portal/p/feedback"
onClick="_gaq.push(['_trackEvent', 'Beta', 'Feedback', 'Feedback']);" >
<span class='hidden-xs'>
Tell us what you think
</span>
<span class='visible-xs'>
Feedback
</span>
</a>
<a class='btn btn-default' href="/portal/Login?profile=default"
onClick="_gaq.push(['_trackEvent', 'Beta', 'Back to classic', 'Back to classic']);" >
Back to classic <span class="hidden-xs hidden-sm">MyUW</span>
</a>
</span>
</div>
</div>
</div>
|
docs/releases/3.5.0/instructions/check.html | psoreide/bnd | <!DOCTYPE html>
<html lang="en" ng-app="jpm">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="/releases/3.5.0/css/style.css" rel="stylesheet" />
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="/js/releases.js"></script>
<!-- Begin Jekyll SEO tag v2.5.0 -->
<title>-check ‘ALL’ ( ‘IMPORTS’ ‘EXPORTS’ ) *</title>
<meta name="generator" content="Jekyll v3.8.5" />
<meta property="og:title" content="-check ‘ALL’ ( ‘IMPORTS’ ‘EXPORTS’ ) *" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="Adding extra checks to bnd will break existing builds and some people get a tad upset about that. However, some checks are actually really valuable. So this instruction is a contract. New checks that can break build will add additional enums to this list. So in theory builds should not be broken. Currently we have the following values defined" />
<meta property="og:description" content="Adding extra checks to bnd will break existing builds and some people get a tad upset about that. However, some checks are actually really valuable. So this instruction is a contract. New checks that can break build will add additional enums to this list. So in theory builds should not be broken. Currently we have the following values defined" />
<script type="application/ld+json">
{"@type":"WebPage","url":"/releases/3.5.0/instructions/check.html","headline":"-check ‘ALL’ ( ‘IMPORTS’ ‘EXPORTS’ ) *","description":"Adding extra checks to bnd will break existing builds and some people get a tad upset about that. However, some checks are actually really valuable. So this instruction is a contract. New checks that can break build will add additional enums to this list. So in theory builds should not be broken. Currently we have the following values defined","@context":"http://schema.org"}</script>
<!-- End Jekyll SEO tag -->
</head>
<body>
<ul class="container12 menu-bar">
<li span=11><a class=menu-link href="/releases/3.5.0/"><img
class=menu-logo src='/releases/3.5.0/img/bnd-80x40-white.png'></a>
<a href="/releases/3.5.0/chapters/110-introduction.html">Intro
</a><a href="/releases/3.5.0/chapters/800-headers.html">Headers
</a><a href="/releases/3.5.0/chapters/820-instructions.html">Instructions
</a><a href="/releases/3.5.0/chapters/850-macros.html">Macros
</a><div class="releases"><button class="dropbtn">3.5.0</button><div class="dropdown-content"></div></div>
<li class=menu-link span=1>
<a href="https://github.com/bndtools/bnd" target="_"><img
style="position:absolute;top:0;right:0;margin:0;padding:0;z-index:100"
src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67"
alt="Fork me on GitHub"
data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"></a>
</ul>
<ul class=container12>
<li span=3>
<div>
<ul class="side-nav">
<li><a href="/releases/3.5.0/chapters/100-release.html">Release</a>
<li><a href="/releases/3.5.0/chapters/110-introduction.html">Introduction</a>
<li><a href="/releases/3.5.0/chapters/120-install.html">How to install bnd</a>
<li><a href="/releases/3.5.0/chapters/123-tour-workspace.html">Guided Tour</a>
<li><a href="/releases/3.5.0/chapters/125-tour-features.html">Guided Tour Workspace & Projects</a>
<li><a href="/releases/3.5.0/chapters/130-concepts.html">Concepts</a>
<li><a href="/releases/3.5.0/chapters/140-best-practices.html">Best practices</a>
<li><a href="/releases/3.5.0/chapters/150-build.html">Build</a>
<li><a href="/releases/3.5.0/chapters/160-jars.html">Generating JARs</a>
<li><a href="/releases/3.5.0/chapters/170-versioning.html">Versioning</a>
<li><a href="/releases/3.5.0/chapters/180-baselining.html">Baselining</a>
<li><a href="/releases/3.5.0/chapters/200-components.html">Service Components</a>
<li><a href="/releases/3.5.0/chapters/210-metatype.html">Metatype</a>
<li><a href="/releases/3.5.0/chapters/220-contracts.html">Contracts</a>
<li><a href="/releases/3.5.0/chapters/230-manifest-annotations.html">Manifest Annotations</a>
<li><a href="/releases/3.5.0/chapters/250-resolving.html">Resolving Dependencies</a>
<li><a href="/releases/3.5.0/chapters/300-launching.html">Launching</a>
<li><a href="/releases/3.5.0/chapters/310-testing.html">Testing</a>
<li><a href="/releases/3.5.0/chapters/320-packaging.html">Packaging Applications</a>
<li><a href="/releases/3.5.0/chapters/390-wrapping.html">Wrapping Libraries to OSGi Bundles</a>
<li><a href="/releases/3.5.0/chapters/400-commandline.html">From the command line</a>
<li><a href="/releases/3.5.0/chapters/600-developer.html">For Developers</a>
<li><a href="/releases/3.5.0/chapters/610-plugin.html">Plugins</a>
<li><a href="/releases/3.5.0/chapters/700-tools.html">Tools bound to bnd</a>
<li><a href="/releases/3.5.0/chapters/790-format.html">File Format</a>
<li><a href="/releases/3.5.0/chapters/800-headers.html">Header Reference</a>
<li><a href="/releases/3.5.0/chapters/820-instructions.html">Instruction</a>
<li><a href="/releases/3.5.0/chapters/825-instructions-ref.html">Instruction Index</a>
<li><a href="/releases/3.5.0/chapters/850-macros.html">Macro Reference</a>
<li><a href="/releases/3.5.0/chapters/860-commands.html">Command Reference</a>
<li><a href="/releases/3.5.0/chapters/870-plugins.html">Plugins Reference</a>
<li><a href="/releases/3.5.0/chapters/880-settings.html">Settings</a>
<li><a href="/releases/3.5.0/chapters/900-errors.html">Errors</a>
<li><a href="/releases/3.5.0/chapters/910-warnings.html">Warnings</a>
<li><a href="/releases/3.5.0/chapters/920-faq.html">Frequently Asked Questions</a>
</ul>
<div class=enroute><a href="http://enroute.osgi.org">Supported by OSGi enRoute <img src="/releases/3.5.0/img/EnRouteIcon_CMYK.png"></a></div>
</div>
<li span=9>
<div class=notes-margin>
<h1> -check 'ALL' | ( 'IMPORTS' | 'EXPORTS' ) *</h1>
<p>Adding extra checks to bnd will break existing builds and some people get a tad upset about that. However, some checks are actually really valuable. So this instruction is a contract. New checks that can break build will add additional enums to this list. So in theory builds should not be broken. Currently we have the following values defined</p>
<ul>
<li><code class="highlighter-rouge">ALL</code> – Enable all checking, including checks that are added in the future. So for <code class="highlighter-rouge">ALL</code>, one day we might break your build. Your choice. Then again, this is the wisest choice since the checks we do are really useful to know if they are not satisfied.</li>
<li><code class="highlighter-rouge">EXPORTS</code> – Enable checking for exports. This checks if an exported package has contents.</li>
<li>
<p><code class="highlighter-rouge">IMPORTS</code> – Enable checking of imports. If an import is not exported by any bundle on the <code class="highlighter-rouge">-buildpath</code> then we have a bit of a problem. Trying to resolve the current bundle on a framework will almost certainly fail. If you really need an import but have no export then you can get rid of the warning by explicitly importing it in Import-Package. For example:</p>
<p>Import-Package: i.do.no.exist;[email protected], *</p>
</li>
</ul>
</div>
</ul>
<nav class=next-prev>
<a href='/releases/3.5.0/instructions/bumpolicy.html'></a> <a href='/releases/3.5.0/instructions/classpath.html'></a>
</nav>
<footer class="container12" style="border-top: 1px solid black;padding:10px 0">
<ul span=12 row>
<li span=3>
<ul>
<li><a href="/releases/3.5.0/contact.html">Contact</a>
</ul>
<li span=3>
<ul>
<li><a href="/releases/3.5.0/">Developers</a>
</ul>
<li span=3>
<ul>
<li><a href="/releases/3.5.0/">More</a>
</ul>
</ul>
</footer>
</body>
</html>
|
reference/library/src/webapp/skin/neo-some-u/pda.css | harfalm/Sakai-10.1 | /*pda portal*/
html {
font-family: Helvetica, Arial, sans-serif;
}
.portalBodyPDA {
margin: 0;
padding: 0;
width: auto;
}
/*several overrides for tool elements displayed in the pda portal*/
/*the menu for sites*/
.portletpda .portletBody {
font-size: 13px !important;
}
/* Pad all direct descendants of .portletBody that are not a form (jsf tools) */
.portletpda .portletBody > *:not(form) {
padding: 0 10px;
}
.portletpda .portletBody input[ type ="button"], .portletpda .portletBody input[ type = "submit"], .portletpda .portletBody input[ type = "reset"], .portletpda .portletBody input[ type = "text"], .portletpda .portletBody input[ type = "radio"], .portletpda .portletBody input[ type = "checkbox"], .portletpda .portletBody select {
margin: .3em 0;
font-size: .8em !important;
}
.portletpda .portletBody input[type ="text"] {
margin: .3em 0;
font-size: 1.1em !important;
}
.portletpda .portletBody .shorttext, .portletpda .portletBody .longtext, .portletpda .portletBody .checkbox {
padding: .3em 0;
}
.portletpda .portletBody .shorttext label, .portletpda .portletBody .longtext label, .portletpda .portletBody .checkbox label {
font-size: 1.1em;
}
.portalBodyPDA .portletBody .navIntraTool {
padding: .5em 0;
}
.portalBodyPDA .portletBody .navIntraTool a {
text-decoration: none !important;
}
#pda-portlet-menu {
font-size: 16px;
font-family: Helvetica, Arial, sans-serif;
width: 100%;
background: #45484d;
background: -moz-linear-gradient(top, #45484d 0%, #000000 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45484d), color-stop(100%,#000000));
background: -webkit-linear-gradient(top, #45484d 0%,#000000 100%);
background: -o-linear-gradient(top, #45484d 0%,#000000 100%);
background: -ms-linear-gradient(top, #45484d 0%,#000000 100%);
background: linear-gradient(to bottom, #45484d 0%,#000000 100%);
list-style: none;
color: #fff;
margin: 0;
clear: both;
overflow: hidden;
line-height: 23px;
padding: 0;
}
#pda-portlet-menu li {
margin-left: 0;
padding: 0 10px;
list-style: none;
float: left;
}
#pda-portlet-menu li.instanceNote {
padding-top: 7px;
}
#pda-portlet-menu li.backLink {
background: url(images/pda-back-l.png) 0 0 no-repeat;
padding: 0px 0 0 10px !important;
margin: 3px;
display: block;
height: 32px;
}
#pda-portlet-menu li.backLink span {
background: url(images/pda-back-m.png) 0 0 repeat;
display: block;
height: 32px;
padding: 0 !important;
overflow: hidden;
}
#pda-portlet-menu a {
text-decoration: none !important
}
#pda-portlet-menu li.backLink span a {
padding: 5px 10px 5px 5px !important;
display: block;
background: url(images/pda-back-r.png) top right no-repeat;
}
#pda-portlet-menu li.loginLink,#pda-portlet-menu li.logoutLink, #switch-link-w,.helpLink {
background: #ffd65e;
background: -moz-linear-gradient(top, #ffd65e 0%, #febf04 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffd65e), color-stop(100%,#febf04));
background: -webkit-linear-gradient(top, #ffd65e 0%,#febf04 100%);
background: -o-linear-gradient(top, #ffd65e 0%,#febf04 100%);
background: -ms-linear-gradient(top, #ffd65e 0%,#febf04 100%);
background: linear-gradient(to bottom, #ffd65e 0%,#febf04 100%);
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
border: 1px solid #45505D;
font-family: inherit;
font-size: 12px;
font-weight: bold;
height: 30px;
line-height: 30px;
margin: 0;
padding: 0 5px;
text-align: center;
text-decoration: none;
text-overflow: ellipsis;
white-space: nowrap;
width: auto;
margin: 3px 5px;
display: block;
}
#pda-portlet-menu li.loginLink span,#pda-portlet-menu li.logoutLink span , #switch-link-w span,.helpLink span {}
#pda-portlet-menu li.loginLink span a,#pda-portlet-menu li.logoutLink span a, #switch-link-w span a, .helpLink span a {}
#switch-link-w {
margin: auto;
width: 50%;
}
#switch-link-w span a {
color: #000;
text-decoration: none;
}
#pda-portlet-menu li.resetToolLink a, #pda-portlet-menu li.jsreditLink a {
padding-left: 10px;
}
#pda-portlet-menu li.resetToolLink, #pda-portlet-menu li.jsreditLink {
margin-top: 10px;
}
#pda-portlet-menu a img {
border: none
}
/*put non site links to the right*/
#pda-portlet-menu li.loginLink, #pda-portlet-menu li.logoutLink, #pda-portlet-menu li.helpLink,#pda-portlet-menu li.usersPresentLink {
float: right;
}
#pda-portlet-menu li.helpLink {
margin-left: 5px;
}
#pda-portlet-menu li span a {
color: #000;
text-decoration: none !important;
}
#pda-portlet-menu li span a:hover {
text-decoration: none !important;
}
#pda-portlet-menu li span a:focus {
outline: 1px dotted #fff !important;
}
/*all types of links in the breadcrumb are addressed in the markup and can be styled here*/
.currentSiteParentLink {}
.currentSiteChildLink {}
.currentSiteTitle, .currentToolTitle {display:block;margin-top:8px;}
.helpLink {}
.logoutLink {}
.loginLink {}
/*the list menu (gateway sites, site lists, tool lists, may want to differentiate between them, if so can*/
#pda-portlet-page-menu, #pda-portlet-site-menu {
font-size: 18px !important;
font-weight: bold;
margin: 0;
padding: 0;
list-style: none;
line-height: 2em;
font-family: Helvetica, Arial, sans-serif;
border-collapse: collapse;
}
#pda-portlet-page-menu li, #pda-portlet-site-menu li {
margin: 0;
padding:.4em;
border-bottom: 1px solid #ccc;
}
#pda-portlet-page-menu li.subSites, #pda-portlet-site-menu li.subSites {
padding: 0
}
#pda-portlet-page-menu li.subSites ul, #pda-portlet-site-menu li.subSites ul {
list-style: none;
margin: 0;
padding: 0 !important;
}
#pda-portlet-page-menu li.subSiteItem, #pda-portlet-site-menu li.subSiteItem {
padding-left: 0;
}
.subSiteItem .textPanelFooter {
font-size: .8em;
font-style: normal;
color: #aaa;
}
#pda-portlet-page-menu li:hover {
background: #eee url(images/pda-list-arrow.png) center right no-repeat;
}
#pda-portlet-page-menu > li.subSites {
background: none;
}
#pda-portlet-page-menu li {
background: url(images/pda-list-arrow.png) center right no-repeat;
}
#pda-portlet-site-menu li {
background: url(images/pda-site-item.png) center right no-repeat;
}
#pda-portlet-site-menu a, #pda-portlet-page-menu a {
color: #333;
text-decoration: none;
padding: 0;
display: block;
margin: 0;
width: auto;
position:relative;
}
.toolMenuIcon {
background-color: transparent;
background-image: url(/library/image/silk/fff-sprites/images/famfamfam.png);
background-repeat: no-repeat;
background-position: -36px -0px;
display: inline-block;
height: 16px;
width: 16px;
position:absolute;
top:10px;
left:5px;
vertical-align: middle;
}
#pda-portlet-page-menu a {
padding-left:40px
}
#presdiv {
position: absolute;
top: 25px;right: 5px;
height: 75px;
width: 150px;
}
#presenceIframePDA {
border: 1px solid #000;
height: 75px;
width: 150px;
overflow: auto;
}
#pda-footer {
padding: 3px;
text-align: center;
background: #45484d;
background: -moz-linear-gradient(top, #45484d 0%, #000000 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45484d), color-stop(100%,#000000));
background: -webkit-linear-gradient(top, #45484d 0%,#000000 100%);
background: -o-linear-gradient(top, #45484d 0%,#000000 100%);
background: -ms-linear-gradient(top, #45484d 0%,#000000 100%);
background: linear-gradient(to bottom, #45484d 0%,#000000 100%);
overflow: hidden;
}
.skip {
display: inline;
position: absolute;
top: -9999px;
left: -9999px;
height: 0;
}
/*
iPhone, iPod Touch
Breadcrumb is minimized (logo: link to sites list; site title: link to tool list, tool reload icon link, lti/jsr168 settings icon link).
Tool title, explicit link to sites, parent site link, help link are hidden. This might disorient the few current users just a little bit, but
it will make the experience better for any new takers
*/
@media screen and (max-device-width: 480px) {
html {
-webkit-text-size-adjust: none;
}
#pda-portlet-menu {
position: absolute;
top: 0;
padding: 0;
height: 38px;
font-size: 14px !important;
width: 100%;
background: #45484d;
background: -moz-linear-gradient(top, #45484d 0%, #000000 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45484d), color-stop(100%,#000000));
background: -webkit-linear-gradient(top, #45484d 0%,#000000 100%);
background: -o-linear-gradient(top, #45484d 0%,#000000 100%);
background: -ms-linear-gradient(top, #45484d 0%,#000000 100%);
background: linear-gradient(to bottom, #45484d 0%,#000000 100%);
line-height: 23px;
}
#pda-portlet-site-menu, #pda-portlet-page-menu, .portletpda .portletBody {
margin-top: 40px;
}
#pda-portlet-menu a:focus,#pda-portlet-menu a:active {
text-decoration: none
}
.notSmallDev {
display: none !important
}
#pda-portlet-menu li {
padding-top: 10px;
padding-left: 10px;
position: relative;
height: 35px;
width: auto;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
#pda-portlet-menu li.instanceNote a {
text-decoration: none;
display: block;
width: 55px;
margin-top: 5px;
height: 35px;
}
#pda-portlet-menu li.resetToolLink a, #pda-portlet-menu li.jsreditLink a {
padding: 0 2px;
}
#pda-portlet-menu li.resetToolLink,#pda-portlet-menu li.jsreditLink {
margin-top: 0;
}
#pda-portlet-menu li.helpLink, .currentSiteParentLink, .currentToolTitle {
display: none;
}
#pda-portlet-menu li span a {
color: #000;
}
.logoutLink, .loginLink, .switch-link {
position: absolute;
top: 0;
right: 0;
}
.logoutLink:active, .loginLink:active, .switch-link:active,.logoutLink:focus, .loginLink:focus, .switch-link:focus {
text-decoration: none !important;
}
.sitesLink span a {
max-width: 45px !important;
text-overflow: ellipsis;
overflow: hidden
}
.currentSiteTitle {
width: 140px !important;
margin-top: 0;
padding: 0;
}
.currentToolTitle span, .currentSiteTitle span {
display: block;
margin-top: -2px;
}
.currentSiteLink span a {
width: 70px !important;
text-overflow: ellipsis;
overflow: hidden;
}
#pda-portlet-site-menu li, #pda-portlet-page-menu li {
-webkit-tap-highlight-color: #fff;
-webkit-text-size-adjust: none;
}
#pda-portlet-site-menu a, #pda-portlet-page-menu a {
width: auto !important;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.portletMainWrap+#pda-footer {
margin-top: 50px
}
#pda-footer {
padding: 2px;
height: 100%;
background: #45484d;
background: -moz-linear-gradient(top, #45484d 0%, #000000 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45484d), color-stop(100%,#000000));
background: -webkit-linear-gradient(top, #45484d 0%,#000000 100%);
background: -o-linear-gradient(top, #45484d 0%,#000000 100%);
background: -ms-linear-gradient(top, #45484d 0%,#000000 100%);
background: linear-gradient(to bottom, #45484d 0%,#000000 100%);
overflow: hidden;
}
.switch-link, .switch-link:visited {
position: relative;
top: 0;
color: #000 !important;
text-decoration: none !important;
}
/*below so that tool toolbar (.navIntraTool) will display*/
.portletpda ul.navIntraTool>li>span.separator, .portletpda .navIntraTool>li>span:empty {
display: inline !important;
}
/*
tools that are iframed
*/
.portletMainWrap > iframe{
margin-top:39px;
}
/*
tweak the resources and dropbox list to make it usable in this format
*/
/*
hide some columns
*/
form#showForm table th#access,form#showForm table th#creator,form#showForm table th#modified,form#showForm table th#size,form#showForm table td[headers='access'],form#showForm table td[headers='creator'],form#showForm table td[headers='modified'],form#showForm table td[headers='size'],form#showForm table td[colspan='4'] {
display: none
}
/*
set the width of other columns
*/
form#showForm table td[headers='expansion'], form#showForm table td[headers='checkboxes'] {
width: 3px;
}
/*
make menus smaller
*/
form#showForm table .menuOpen {
font-size: 85%;
white-space: nowrap;
}
.navIntraToolLink input.enabled {
border: none !important;
}
/*
set the size of resource names (default for portrait orientation) and add a trim and ellipsis if longer
*/
form#showForm table td[headers='title'] h3,form#showForm table td[headers='title'] h4, form#showForm table td[headers='title'] h5, form#showForm table td[headers='title'] h6 {
width: 120px !important;
overflow: hidden;
text-overflow: ellipsis;
font-size: 90%;
font-weight: bold;
white-space: nowrap;
}
/*
tweak the announcement list to make it usable in this format
*/
form[name='announcementListForm'] table td {
font-size: 90%
}
/*
hide some metadata columns
*/
form[name='announcementListForm'] table th#releaseDate, form[name='announcementListForm'] table th#retractDate,
form[name='announcementListForm'] table td[headers='releaseDate'],form[name='announcementListForm'] table td[headers='retractDate'] {
display: none;
}
/*
set the size of announc titles (default for portrait orientation) and add a trim and ellipsis of longer
*/
form[name='announcementListForm'] table td[headers='subject'] h4 {
width: 120px !important;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
/*set width and height of textarea in different contexts in portrait mode
* Note: need to make sure that these are targetting unique things
* */
#gradeForm textarea, textarea[id^='Assignment'], [name='reviseForm'] textarea#body, #addContentForm textarea, #addFolderForm textarea[id^='description'], #detailsForm textarea[id^='description'], form[name='newAssignmentForm'] textarea {
width: 100%;
height: 100px;
}
form[name='newAssignmentForm'] fieldset {
width: 80% !important;
min-width: 80%;
max-width: 80%;
}
form[name='newAssignmentForm'] fieldset textarea {
width: 90%;
margin-left: -1em
}
/*some adjustments to elements in resources and assignments*/
form[name='newAssignmentForm'] .shorttext label {
display: block;
float: none
}
#gradeForm .navPanel .viewNav {
float: none;
width: 100% !important
}
#gradeForm .navPanel .viewNav span.act input[name="save"], #gradeForm .navPanel .viewNav span.act input[name="return"],#gradeForm .navPanel .viewNav span.act input[name="preview"], #gradeForm .navPanel .viewNav span.act input[name="cancel"] {
margin-top: .5em;
float: left;
}
#gradeForm .navPanel .viewNav span.act input[name="preview"] {
clear: left;
}
form[name='reviseForm'] input#subject, #addContentForm input[id^='content'], #detailsForm input[id^='displayName'] {
width: 100%;
}
#addContentForm .labelindnt, #addFolderForm .labelindnt, #detailsForm .labelindnt, form[name='newAssignmentForm'] .labelindnt {
margin-left: 1em !important
}
#fileURLHolder {
width: 50px;
}
}
/*
adjust text trimming for site link in toolbar and in Sites menu (as well as Resource titles
for a landscape orientation of the iPhone/iPod T
*/
@media only screen and (orientation: landscape) and (max-device-width: 480px) {
#pda-portlet-menu li.currentSiteLink, #pda-portlet-menu li.currentSiteChildLink {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
#pda-portlet-site-menu a, #pda-portlet-page-menu a {
width: auto !important;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.sitesLink span a {
max-width: 45px !important;
text-overflow: ellipsis;
overflow: hidden
}
.currentSiteTitle {
width: 300px !important;
}
.currentToolTitle {
width: 220px !important;
}
.currentSiteLink span a {
width: 70px !important;
text-overflow: ellipsis;
overflow: hidden
}
/* resource title length in landscape orientation */
form#showForm table td[headers='title'] h3,form#showForm table td[headers='title'] h4, form#showForm table td[headers='title'] h5, form#showForm table td[headers='title'] h6 {
width: 250px !important;
overflow: hidden;
}
}
/*end of @ media selector for landscape orientation*/
/*
Overrides for specific tools that use iframes or the ability to invoke them, which will not work in the mobile portal.
NOTE: some functionality is removed from the tool by this:
- rwiki: cannot create or edit comments, or preview a wiki edit
- chat: cannot see list of people in room
*/
#createCommentLink, #commentsList .itemAction, #rwiki_tabholder #preview {
display: none;
}
#chatPresenceWrapper {
display: none;
}
#chatListWrapper {
float: none !important;
clear: both !important;
width: 100% !important
}
/* PART 9 - Tool Icons */
.icon-osp-evaluation {
background-position: -252px -504px;
}
.icon-osp-glossary {
background-position: -468px -486px;
}
.icon-osp-matrix, .icon-osp-exposedmatrix {
background-position: -558px -450px;
}
.icon-osp-presentation {
background-position: -234px -54px;
}
.icon-osp-presLayout {
background-position: -198px -270px;
}
.icon-osp-presTemplate {
background-position: -54px -18px;
}
.icon-osp-style {
background-position: -360px -450px;
}
.icon-osp-wizard, .icon-osp-exposedwizard {
background-position: -270px -522px;
}
.icon-sakai-announcements {
background-position: -324px -216px;
}
.icon-sakai-chat {
background-position: -558px -504px;
}
.icon-sakai-datapoint {
background-position: -180px -108px;
}
.icon-sakai-discussion {
background-position: -324px -126px;
}
.icon-sakai-dropbox {
background-position: -216px -234px;
}
.icon-sakai-emailtemplateservice {
background-position: -162px -198px;
}
.icon-sakai-gmt {
background-position: -54px -36px;
}
.icon-sakai-help {
background-position: -54px -252px;
}
.icon-sakai-iframe {
background-position: -432px -360px;
}
.icon-sakai-iframe-site {
background-position: -162px -252px;
}
.icon-sakai-web-168 {
background-position: -270px -0px;
}
.icon-sakai-mailbox {
background-position: -90px -198px;
}
.icon-sakai-messages {
background-position: -252px -126px;
}
.icon-sakai-metaobj {
background-position: -162px -0px;
}
.icon-sakai-membership {
background-position: -432px -234px;
}
.icon-sakai-news {
background-position: -432px -396px;
}
.icon-sakai-podcasts {
background-position: -450px -252px;
}
.icon-sakai-postem {
background-position: -450px -162px;
}
.icon-sakai-preferences {
background-position: -54px -126px;
}
.icon-sakai-rutgers-linktool {
background-position: -36px -0px;
}
.icon-sakai-sections {
background-position: -522px -234px;
}
.icon-sakai-singleuser {
background-position: -522px -504px;
}
.icon-sakai-syllabus {
background-position: -90px -414px;
}
.icon-blogger {
background-position: -522px -36px;
}
.icon-sakai-assignment-grades, .icon-sakai-assignment2 {
background-position: -324px -324px;
}
.icon-sakai-forums, .icon-sakai-jforum-tool {
background-position: -324px -126px;
}
.icon-sakai-gradebook-tool, .icon-sakai-gradebook-gwt-rpc {
background-position: -126px -396px;
}
.icon-sakai-mailtool {
background-position: -198px -198px;
}
.icon-sakai-poll {
background-position: -540px -90px;
}
.icon-sakai-sitestats {
background-position: -540px -90px;
}
.icon-sakai-sitestats-admin {
background-position: -180px -108px;
}
.icon-sakai-presentation {
background-position: -234px -306px;
}
.icon-sakai-profile {
background-position: -198px -522px;
}
.icon-sakai-reports {
background-position: -270px -396px;
}
.icon-sakai-resetpass {
background-position: -0px -270px;
}
.icon-sakai-resources {
background-position: -450px -216px;
}
.icon-sakai-rwiki {
background-position: -324px -342px;
}
.icon-sakai-samigo, .icon-sakai-mneme-admin, .icon-sakai-mneme {
background-position: -540px -360px;
}
.icon-sakai-schedule {
background-position: -504px -72px;
}
.icon-sakai-search {
background-position: -306px -216px;
}
.icon-sakai-siteinfo {
background-position: -324px -0px;
}
.icon-sakai-sitesetup {
background-position: -324px -0px;
}
.icon-sakai-site-roster {
background-position: -144px -522px;
}
.icon-sakai-synoptic-messagecenter {
background-position: -252px -126px;
}
.icon-sakai-conferencing {
background-position: -396px -522px;
}
.icon-sakai-profile2 {
background-position: -144px -522px;
}
.icon-sakai-summary-calendar {
background-position: -504px -72px;
}
.icon-sakai-synoptic-announcement {
background-position: -324px -216px;
}
.icon-sakai-synoptic-chat {
background-position: -558px -504px;
}
.icon-sakai-subsite {
background-position: -288px -108px;
}
.icon-sakai-iframe-service {
background-position: -162px -252px;
}
.icon-sakai-iframe-myworkspace {
background-position: -162px -252px;
}
.icon-sakai-basiclti {
background-position: -270px -0px;
}
.icon-sakai-basiclti-admin {
background-position: -270px -0px;
}
.icon-sakai-lessonbuildertool {
background-position: -36px -54px;
}
.icon-my-libintro, .icon-my-libguides {
background-position: -450px -36px;
}
.icon-sakai-see-all-tools {
background-position: -126px -72px;
}
.icon-sakai-signup {
background-position: -468px -162px;
}
.icon-sakai-privacy {
background-position: -522px -198px;
}
.icon-sakai-rsf-evaluation {
background-position: -324px -324px;
}
.icon-sakai-iclicker, .icon-sakai-turningtool {
background-position: -396px -72px;
}
.icon-sakai-bbb, .icon-sakai-rutgers-connect, .icon-portlet-\/sakai-elluminate-tool-sakai-elluminate {
background-position: -432px -234px;
}
.icon-sakai-melete {
background-image: url(../../image/sakai/tool-icons/sakai.melete.png);
}
.icon-sakai-blogwow {
background-position: -0px -18px;
}
.icon-sakai-scormcloud {
background-position: -90px -414px;
}
.icon-sakai-njvidbrowser {
background-position: -144px -216px;
}
.icon-role-enter {
background-position: -432px -18px;
}
.icon-role-exit {
background-position: -270px -18px;
}
/* admin tools */
.icon-sakai-users {
background-position: -324px -234px;
}
.icon-sakai-aliases {
background-position: -288px -468px;
}
.icon-sakai-sites {
background-position: -72px -0px;
}
.icon-sakai-realms {
background-position: -558px -432px;
}
.icon-sakai-online {
background-position: -306px -396px;
}
.icon-sakai-memory {
background-position: -378px -414px;
}
.icon-sakai-archive {
background-position: -180px -342px;
}
.icon-sakai-scheduler {
background-position: -450px -108px;
}
.icon-sakai-su {
background-position: -36px -522px;
}
.icon-sakai-usermembership {
background-position: -504px -180px;
}
.icon-sakai-motd {
background-position: -162px -252px;
}
.icon-sakai-sitebrowser {
background-position: -468px -522px;
}
.icon-sakai-createuser {
background-position: -540px -504px;
} |
src/main/app/templates/_tree.html | syshk/commafeed | <div ng-controller="CategoryTreeCtrl" class="sidebar-nav-fixed" mousewheel-scrolling ui-jq="resizable"
ui-options="{handles: 'e', resize: resizeCallback}">
<div class="btn-group">
<button class="btn btn-default" ui-sref="feeds.subscribe" ng-click="MobileService.toggleLeftMenu()">
<span class="icon-rss"></span>
{{ 'tree.subscribe' | translate }}
</button>
<button class="btn btn-default dropdown-toggle" data-toggle="dropdown">
<span class="caret"></span>
</button>
<ul class="dropdown-menu">
<li>
<a ui-sref="feeds.new_category" ng-click="MobileService.toggleLeftMenu()">
<i class="icon-plus"></i>
{{ 'tree.new_category' | translate }}
</a>
</li>
<li>
<a ui-sref="feeds.import" ng-click="MobileService.toggleLeftMenu()">
<i class="icon-arrow-down"></i>
{{ 'tree.import' | translate }}
</a>
</li>
</ul>
</div>
<div class="btn-group">
<button type="button" class="btn btn-default" ng-click="MobileService.toggleLeftMenu()" ng-if="MobileService.mobile">
<i class="icon-remove"></i>
{{ 'global.close' | translate }}
</button>
</div>
<div class="css-treeview">
<ul>
<category node="CategoryService.subscriptions" show-label="'tree.all' | translate" show-children="false" level="0" selected-type="selectedType"
selected-id="selectedId" unread-count="unreadCount(category)"> </category>
<category node="starred" show-label="'tree.starred' | translate" show-children="false" level="0" selected-type="selectedType"
selected-id="selectedId" unread-count="unreadCount(category)"> </category>
<category node="CategoryService.subscriptions" show-label="false" show-children="true" level="0" selected-type="selectedType"
selected-id="selectedId" unread-count="unreadCount(category)"> </category>
<li ng-repeat="tag in tags | orderBy: 'name'">
<category node="tag" show-label="tag.name" show-children="false" level="0" selected-type="selectedType" selected-id="selectedId"
unread-count="unreadCount(category)"> </category>
</li>
</ul>
</div>
</div> |
venv/bin/libs/geometry/doc/html/geometry/reference/algorithms/assign.html | NixaSoftware/CVis | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>assign</title>
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="../../../index.html" title="Chapter 1. Geometry">
<link rel="up" href="../algorithms.html" title="Algorithms">
<link rel="prev" href="area/area_2_with_strategy.html" title="area (with strategy)">
<link rel="next" href="assign/assign.html" title="assign">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../boost.png"></td>
<td align="center"><a href="../../../../../../../index.html">Home</a></td>
<td align="center"><a href="../../../../../../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../../../../../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="area/area_2_with_strategy.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../algorithms.html"><img src="../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="assign/assign.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h4 class="title">
<a name="geometry.reference.algorithms.assign"></a><a class="link" href="assign.html" title="assign">assign</a>
</h4></div></div></div>
<div class="toc"><dl class="toc">
<dt><span class="section"><a href="assign/assign.html">assign</a></span></dt>
<dt><span class="section"><a href="assign/assign_inverse.html">assign_inverse</a></span></dt>
<dt><span class="section"><a href="assign/assign_points.html">assign_points</a></span></dt>
<dt><span class="section"><a href="assign/assign_values_3_2_coordinate_values.html">assign_values
(2 coordinate values)</a></span></dt>
<dt><span class="section"><a href="assign/assign_values_4_3_coordinate_values.html">assign_values
(3 coordinate values)</a></span></dt>
<dt><span class="section"><a href="assign/assign_values_5_4_coordinate_values.html">assign_values
(4 coordinate values)</a></span></dt>
<dt><span class="section"><a href="assign/assign_zero.html">assign_zero</a></span></dt>
</dl></div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2009-2013 Barend Gehrels, Bruno Lalande, Mateusz Loskot, Adam Wulkiewicz<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="area/area_2_with_strategy.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../algorithms.html"><img src="../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="assign/assign.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
devfest-2010/manila/talk/maps/map-geolocation.html | fizzvr/js-samples | <!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no"/>
<title>Template</title>
<style type="text/css">
html, body {
height: 100%;
margin: 0;
}
#map {
height: 100%;
}
</style>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
/**
* Called on the intiial page load.
*/
var map;
function init() {
var mapCenter = new google.maps.LatLng(0, 0);
map = new google.maps.Map(document.getElementById('map'), {
zoom: 13,
center: new google.maps.LatLng(14.597466, 121.0092),
mapTypeId: google.maps.MapTypeId.ROADMAP
});
window.setInterval(getUsersLocation, 1000);
}
function getUsersLocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
var pos = new google.maps.LatLng(position.coords.latitude,
position.coords.longitude);
map.panTo(pos);
}, function() {
map.panTo(new google.maps.LatLng(14.597466, 121.0092));
});
}
}
// Register an event listener to fire when the page finishes loading.
google.maps.event.addDomListener(window, 'load', init);
</script>
</head>
<body>
<div id="map"></div>
</body>
</html>
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.