path
stringlengths
5
312
repo_name
stringlengths
5
116
content
stringlengths
2
1.04M
third_party/cpp/berkeleydb/docs/java/com/sleepycat/persist/raw/RawStore.html
apavlo/h-store
<!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_60) on Thu Jun 18 16:18:50 EDT 2015 --> <title>RawStore (Oracle - Berkeley DB Java API)</title> <meta name="date" content="2015-06-18"> <link rel="stylesheet" type="text/css" href="../../../../style.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="RawStore (Oracle - Berkeley DB Java API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/RawStore.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><em><b>Berkeley DB</b><br><font size="-1"> version 6.1.26</font></em></div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../com/sleepycat/persist/raw/RawObject.html" title="class in com.sleepycat.persist.raw"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../com/sleepycat/persist/raw/RawType.html" title="interface in com.sleepycat.persist.raw"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?com/sleepycat/persist/raw/RawStore.html" target="_top">Frames</a></li> <li><a href="RawStore.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">com.sleepycat.persist.raw</div> <h2 title="Class RawStore" class="title">Class RawStore</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>com.sleepycat.persist.raw.RawStore</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public class <span class="strong">RawStore</span> extends java.lang.Object</pre> <div class="block">Provides access to the raw data in a store for use by general purpose tools. A <code>RawStore</code> provides access to stored entities without using entity classes or key classes. Keys are represented as simple type objects or, for composite keys, as <a href="../../../../com/sleepycat/persist/raw/RawObject.html" title="class in com.sleepycat.persist.raw"><code>RawObject</code></a> instances, and entities are represented as <a href="../../../../com/sleepycat/persist/raw/RawObject.html" title="class in com.sleepycat.persist.raw"><code>RawObject</code></a> instances. <p><code>RawStore</code> objects are thread-safe. Multiple threads may safely call the methods of a shared <code>RawStore</code> object.</p> <p>When using a <code>RawStore</code>, the current persistent class definitions are not used. Instead, the previously stored metadata and class definitions are used. This has several implications:</p> <ol> <li>An <code>EntityModel</code> may not be specified using <a href="../../../../com/sleepycat/persist/StoreConfig.html#setModel(com.sleepycat.persist.model.EntityModel)"><code>StoreConfig.setModel(com.sleepycat.persist.model.EntityModel)</code></a>. In other words, the configured model must be null (the default).</li> <li>When storing entities, their format will not automatically be evolved to the current class definition, even if the current class definition has changed.</li> </ol></div> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../com/sleepycat/persist/raw/RawStore.html#RawStore(com.sleepycat.db.Environment,%20java.lang.String,%20com.sleepycat.persist.StoreConfig)">RawStore</a></strong>(<a href="../../../../com/sleepycat/db/Environment.html" title="class in com.sleepycat.db">Environment</a>&nbsp;env, java.lang.String&nbsp;storeName, <a href="../../../../com/sleepycat/persist/StoreConfig.html" title="class in com.sleepycat.persist">StoreConfig</a>&nbsp;config)</code> <div class="block">Opens an entity store for raw data access.</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">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../com/sleepycat/persist/raw/RawStore.html#close()">close</a></strong>()</code> <div class="block">Closes all databases and sequences that were opened by this model.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../com/sleepycat/persist/StoreConfig.html" title="class in com.sleepycat.persist">StoreConfig</a></code></td> <td class="colLast"><code><strong><a href="../../../../com/sleepycat/persist/raw/RawStore.html#getConfig()">getConfig</a></strong>()</code> <div class="block">Returns a copy of the entity store configuration.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../com/sleepycat/db/Environment.html" title="class in com.sleepycat.db">Environment</a></code></td> <td class="colLast"><code><strong><a href="../../../../com/sleepycat/persist/raw/RawStore.html#getEnvironment()">getEnvironment</a></strong>()</code> <div class="block">Returns the environment associated with this store.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../com/sleepycat/persist/model/EntityModel.html" title="class in com.sleepycat.persist.model">EntityModel</a></code></td> <td class="colLast"><code><strong><a href="../../../../com/sleepycat/persist/raw/RawStore.html#getModel()">getModel</a></strong>()</code> <div class="block">Returns the last configured and stored entity model for this store.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../com/sleepycat/persist/evolve/Mutations.html" title="class in com.sleepycat.persist.evolve">Mutations</a></code></td> <td class="colLast"><code><strong><a href="../../../../com/sleepycat/persist/raw/RawStore.html#getMutations()">getMutations</a></strong>()</code> <div class="block">Returns the set of mutations that were configured and stored previously.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../com/sleepycat/persist/PrimaryIndex.html" title="class in com.sleepycat.persist">PrimaryIndex</a>&lt;java.lang.Object,<a href="../../../../com/sleepycat/persist/raw/RawObject.html" title="class in com.sleepycat.persist.raw">RawObject</a>&gt;</code></td> <td class="colLast"><code><strong><a href="../../../../com/sleepycat/persist/raw/RawStore.html#getPrimaryIndex(java.lang.String)">getPrimaryIndex</a></strong>(java.lang.String&nbsp;entityClass)</code> <div class="block">Opens the primary index for a given entity class.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../com/sleepycat/persist/SecondaryIndex.html" title="class in com.sleepycat.persist">SecondaryIndex</a>&lt;java.lang.Object,java.lang.Object,<a href="../../../../com/sleepycat/persist/raw/RawObject.html" title="class in com.sleepycat.persist.raw">RawObject</a>&gt;</code></td> <td class="colLast"><code><strong><a href="../../../../com/sleepycat/persist/raw/RawStore.html#getSecondaryIndex(java.lang.String,%20java.lang.String)">getSecondaryIndex</a></strong>(java.lang.String&nbsp;entityClass, java.lang.String&nbsp;keyName)</code> <div class="block">Opens the secondary index for a given entity class and secondary key name.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><strong><a href="../../../../com/sleepycat/persist/raw/RawStore.html#getStoreName()">getStoreName</a></strong>()</code> <div class="block">Returns the name of this store.</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&nbsp;java.lang.Object</h3> <code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="RawStore(com.sleepycat.db.Environment, java.lang.String, com.sleepycat.persist.StoreConfig)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>RawStore</h4> <pre>public&nbsp;RawStore(<a href="../../../../com/sleepycat/db/Environment.html" title="class in com.sleepycat.db">Environment</a>&nbsp;env, java.lang.String&nbsp;storeName, <a href="../../../../com/sleepycat/persist/StoreConfig.html" title="class in com.sleepycat.persist">StoreConfig</a>&nbsp;config) throws <a href="../../../../com/sleepycat/persist/StoreNotFoundException.html" title="class in com.sleepycat.persist">StoreNotFoundException</a>, <a href="../../../../com/sleepycat/db/DatabaseException.html" title="class in com.sleepycat.db">DatabaseException</a></pre> <div class="block">Opens an entity store for raw data access.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>env</code> - an open Berkeley DB environment.</dd><dd><code>storeName</code> - the name of the entity store within the given environment.</dd><dd><code>config</code> - the store configuration, or null to use default configuration properties.</dd> <dt><span class="strong">Throws:</span></dt> <dd><code>java.lang.IllegalArgumentException</code> - if the <code>Environment</code> is read-only and the <code>config ReadOnly</code> property is false.</dd> <dd><code><a href="../../../../com/sleepycat/persist/StoreNotFoundException.html" title="class in com.sleepycat.persist">StoreNotFoundException</a></code></dd> <dd><code><a href="../../../../com/sleepycat/db/DatabaseException.html" title="class in com.sleepycat.db">DatabaseException</a></code></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="getPrimaryIndex(java.lang.String)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getPrimaryIndex</h4> <pre>public&nbsp;<a href="../../../../com/sleepycat/persist/PrimaryIndex.html" title="class in com.sleepycat.persist">PrimaryIndex</a>&lt;java.lang.Object,<a href="../../../../com/sleepycat/persist/raw/RawObject.html" title="class in com.sleepycat.persist.raw">RawObject</a>&gt;&nbsp;getPrimaryIndex(java.lang.String&nbsp;entityClass) throws <a href="../../../../com/sleepycat/db/DatabaseException.html" title="class in com.sleepycat.db">DatabaseException</a></pre> <div class="block">Opens the primary index for a given entity class.</div> <dl><dt><span class="strong">Throws:</span></dt> <dd><code><a href="../../../../com/sleepycat/db/DatabaseException.html" title="class in com.sleepycat.db">DatabaseException</a></code> - the base class for all BDB exceptions.</dd></dl> </li> </ul> <a name="getSecondaryIndex(java.lang.String, java.lang.String)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getSecondaryIndex</h4> <pre>public&nbsp;<a href="../../../../com/sleepycat/persist/SecondaryIndex.html" title="class in com.sleepycat.persist">SecondaryIndex</a>&lt;java.lang.Object,java.lang.Object,<a href="../../../../com/sleepycat/persist/raw/RawObject.html" title="class in com.sleepycat.persist.raw">RawObject</a>&gt;&nbsp;getSecondaryIndex(java.lang.String&nbsp;entityClass, java.lang.String&nbsp;keyName) throws <a href="../../../../com/sleepycat/db/DatabaseException.html" title="class in com.sleepycat.db">DatabaseException</a></pre> <div class="block">Opens the secondary index for a given entity class and secondary key name.</div> <dl><dt><span class="strong">Throws:</span></dt> <dd><code><a href="../../../../com/sleepycat/db/DatabaseException.html" title="class in com.sleepycat.db">DatabaseException</a></code> - the base class for all BDB exceptions.</dd></dl> </li> </ul> <a name="getEnvironment()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getEnvironment</h4> <pre>public&nbsp;<a href="../../../../com/sleepycat/db/Environment.html" title="class in com.sleepycat.db">Environment</a>&nbsp;getEnvironment()</pre> <div class="block">Returns the environment associated with this store.</div> </li> </ul> <a name="getConfig()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getConfig</h4> <pre>public&nbsp;<a href="../../../../com/sleepycat/persist/StoreConfig.html" title="class in com.sleepycat.persist">StoreConfig</a>&nbsp;getConfig()</pre> <div class="block">Returns a copy of the entity store configuration.</div> </li> </ul> <a name="getStoreName()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getStoreName</h4> <pre>public&nbsp;java.lang.String&nbsp;getStoreName()</pre> <div class="block">Returns the name of this store.</div> </li> </ul> <a name="getModel()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getModel</h4> <pre>public&nbsp;<a href="../../../../com/sleepycat/persist/model/EntityModel.html" title="class in com.sleepycat.persist.model">EntityModel</a>&nbsp;getModel()</pre> <div class="block">Returns the last configured and stored entity model for this store.</div> </li> </ul> <a name="getMutations()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getMutations</h4> <pre>public&nbsp;<a href="../../../../com/sleepycat/persist/evolve/Mutations.html" title="class in com.sleepycat.persist.evolve">Mutations</a>&nbsp;getMutations()</pre> <div class="block">Returns the set of mutations that were configured and stored previously.</div> </li> </ul> <a name="close()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>close</h4> <pre>public&nbsp;void&nbsp;close() throws <a href="../../../../com/sleepycat/db/DatabaseException.html" title="class in com.sleepycat.db">DatabaseException</a></pre> <div class="block">Closes all databases and sequences that were opened by this model. No databases opened via this store may be in use. <p>WARNING: To guard against memory leaks, the application should discard all references to the closed handle. While BDB makes an effort to discard references from closed objects to the allocated memory for an environment, this behavior is not guaranteed. The safe course of action for an application is to discard all references to closed BDB objects.</p></div> <dl><dt><span class="strong">Throws:</span></dt> <dd><code><a href="../../../../com/sleepycat/db/DatabaseException.html" title="class in com.sleepycat.db">DatabaseException</a></code> - the base class for all BDB exceptions.</dd></dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/RawStore.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><em><b>Berkeley DB</b><br><font size="-1"> version 6.1.26</font></em></div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../com/sleepycat/persist/raw/RawObject.html" title="class in com.sleepycat.persist.raw"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../com/sleepycat/persist/raw/RawType.html" title="interface in com.sleepycat.persist.raw"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?com/sleepycat/persist/raw/RawStore.html" target="_top">Frames</a></li> <li><a href="RawStore.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small><font size=1>Copyright (c) 1996, 2015 Oracle and/or its affiliates. All rights reserved.</font></small></p> </body> </html>
themes/hugo-fabric/layouts/partials/categories.html
ningyu1/site
{{ $.Scratch.Add "last" 0 }} {{ range (where $.Site.Pages "Kind" $.Site.Params.theme.post_type) }} {{ if ne .Type $.Site.Params.theme.archive_post_type }} {{ $year := .Date.Format "2006" | int }} {{ $post_date := .Date.Format "01-02" }} {{ $last := $.Scratch.Get "last" }} {{ if ne $last $year }} {{ if ne $last 0 }} </section> {{ end }} {{ $.Scratch.Set "last" $year }} <section class="archives"><h1 class="year">{{ $year }}</h1><div class="top-border-padding"></div> {{ end }} <article> <h2 class="title"><a href="{{ .Permalink }}">{{ .Title }}</a></h2> <div class="meta"> <span class="date">{{ $post_date }}</span> <span class="tags">{{ partial "post/tags.html" . }}</span> {{ if $.Site.Params.theme.disqus_shortname }} <span class="comments"><a href="{{ .Permalink }}#disqus_thread">Comments</a></span> {{ end }} </div> </article> {{ end }} {{ end }} </section>
thirdparty/sources/boost_1_60_0/doc/html/boost/mpi/maximum.html
gwq5210/litlib
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Struct template maximum</title> <link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> <link rel="up" href="../../mpi/reference.html#header.boost.mpi.operations_hpp" title="Header &lt;boost/mpi/operations.hpp&gt;"> <link rel="prev" href="logical_xor.html" title="Struct template logical_xor"> <link rel="next" href="minimum.html" title="Struct template minimum"> </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="logical_xor.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../mpi/reference.html#header.boost.mpi.operations_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="minimum.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.mpi.maximum"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Struct template maximum</span></h2> <p>boost::mpi::maximum &#8212; Compute the maximum of two values. </p> </div> <h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2> <div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: &lt;<a class="link" href="../../mpi/reference.html#header.boost.mpi.operations_hpp" title="Header &lt;boost/mpi/operations.hpp&gt;">boost/mpi/operations.hpp</a>&gt; </span><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> T<span class="special">&gt;</span> <span class="keyword">struct</span> <a class="link" href="maximum.html" title="Struct template maximum">maximum</a> <span class="special">:</span> <span class="keyword">public</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">binary_function</span><span class="special">&lt;</span> <span class="identifier">T</span><span class="special">,</span> <span class="identifier">T</span><span class="special">,</span> <span class="identifier">T</span> <span class="special">&gt;</span> <span class="special">{</span> <span class="comment">// <a class="link" href="maximum.html#idm45507109479136-bb">public member functions</a></span> <span class="keyword">const</span> <span class="identifier">T</span> <span class="special">&amp;</span> <a class="link" href="maximum.html#idm45507109478576-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">T</span> <span class="special">&amp;</span><span class="special">,</span> <span class="keyword">const</span> <span class="identifier">T</span> <span class="special">&amp;</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span> <span class="special">}</span><span class="special">;</span></pre></div> <div class="refsect1"> <a name="idm45555220128176"></a><h2>Description</h2> <p>This binary function object computes the maximum of the two values it is given. When used with MPI and a type <code class="computeroutput">T</code> that has an associated, built-in MPI data type, translates to <code class="computeroutput">MPI_MAX</code>. </p> <div class="refsect2"> <a name="idm45555220125952"></a><h3> <a name="idm45507109479136-bb"></a><code class="computeroutput">maximum</code> public member functions</h3> <div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"> <pre class="literallayout"><span class="keyword">const</span> <span class="identifier">T</span> <span class="special">&amp;</span> <a name="idm45507109478576-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">T</span> <span class="special">&amp;</span> x<span class="special">,</span> <span class="keyword">const</span> <span class="identifier">T</span> <span class="special">&amp;</span> y<span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre> <p> </p> <div class="variablelist"><table border="0" class="variablelist compact"> <colgroup> <col align="left" valign="top"> <col> </colgroup> <tbody><tr> <td><p><span class="term">Returns:</span></p></td> <td><p>the maximum of x and y. </p></td> </tr></tbody> </table></div> </li></ol></div> </div> </div> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2005-2007 Douglas Gregor, Matthias Troyer, Trustees of Indiana University<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="logical_xor.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../mpi/reference.html#header.boost.mpi.operations_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="minimum.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
external/toolboxes/SBMLToolbox-4.1.0/docs/structure-functions/compartmentVolumeRule.html
bbarker/cobratoolbox-rmtf
<style type='text/css'> /*/*/ /*<![CDATA[*/ @import "../style.css"; /*]]>*/ /* */ </style> <h3>MATLAB_SBML_STRUCTURE_FUNCTIONS\COMPARTMENTVOLUMERULE</h3> <p>The functions allow users to create and work with the SBML CompartmentVolumeRule structure.</p> <p>Function are:</p> <hr> <h4>CompartmentVolumeRule = CompartmentVolumeRule_create(level(optional), version(optional) )</h4> <p>Takes</p> <ol> <li>level, an integer representing an SBML level (optional)</li> <li>version, an integer representing an SBML version (optional)</li> </ol> <p>Returns</p> <ol> <li>a MATLAB_SBML CompartmentVolumeRule structure of the appropriate level and version</li> </ol> <p><em>NOTE:</em> the optional level and version preserve backwards compatibility a missing version argument will default to L1V2; L2V4 or L3V1 missing both arguments will default to L3V1</p> <hr> <h4>compartment = CompartmentVolumeRule_getCompartment(SBMLCompartmentVolumeRule)</h4> <p>Takes</p> <ol> <li>SBMLCompartmentVolumeRule, an SBML CompartmentVolumeRule structure</li> </ol> <p>Returns</p> <ol> <li>the value of the compartment attribute</li> </ol> <hr> <h4>formula = CompartmentVolumeRule_getFormula(SBMLCompartmentVolumeRule)</h4> <p>Takes</p> <ol> <li>SBMLCompartmentVolumeRule, an SBML CompartmentVolumeRule structure</li> </ol> <p>Returns</p> <ol> <li>the value of the formula attribute</li> </ol> <hr> <h4>type = CompartmentVolumeRule_getType(SBMLCompartmentVolumeRule)</h4> <p>Takes</p> <ol> <li>SBMLCompartmentVolumeRule, an SBML CompartmentVolumeRule structure</li> </ol> <p>Returns</p> <ol> <li>the value of the type attribute</li> </ol> <hr> <h4>value = CompartmentVolumeRule_isSetCompartment(SBMLCompartmentVolumeRule)</h4> <p>Takes</p> <ol> <li>SBMLCompartmentVolumeRule, an SBML CompartmentVolumeRule structure</li> </ol> <p>Returns</p> <ol> <li>value = <ul> <li>1 if the compartment attribute is set</li> <li>0 otherwise</li> </ul></li> </ol> <hr> <h4>value = CompartmentVolumeRule_isSetFormula(SBMLCompartmentVolumeRule)</h4> <p>Takes</p> <ol> <li>SBMLCompartmentVolumeRule, an SBML CompartmentVolumeRule structure</li> </ol> <p>Returns</p> <ol> <li>value = <ul> <li>1 if the formula attribute is set</li> <li>0 otherwise</li> </ul></li> </ol> <hr> <h4>value = CompartmentVolumeRule_isSetType(SBMLCompartmentVolumeRule)</h4> <p>Takes</p> <ol> <li>SBMLCompartmentVolumeRule, an SBML CompartmentVolumeRule structure</li> </ol> <p>Returns</p> <ol> <li>value = <ul> <li>1 if the type attribute is set</li> <li>0 otherwise</li> </ul></li> </ol> <hr> <h4>SBMLCompartmentVolumeRule = CompartmentVolumeRule_setCompartment(SBMLCompartmentVolumeRule, compartment)</h4> <p>Takes</p> <ol> <li>SBMLCompartmentVolumeRule, an SBML CompartmentVolumeRule structure</li> <li>compartment; a string representing the compartment to be set</li> </ol> <p>Returns</p> <ol> <li>the SBML CompartmentVolumeRule structure with the new value for the compartment attribute</li> </ol> <hr> <h4>SBMLCompartmentVolumeRule = CompartmentVolumeRule_setFormula(SBMLCompartmentVolumeRule, formula)</h4> <p>Takes</p> <ol> <li>SBMLCompartmentVolumeRule, an SBML CompartmentVolumeRule structure</li> <li>formula; a string representing the formula to be set</li> </ol> <p>Returns</p> <ol> <li>the SBML CompartmentVolumeRule structure with the new value for the formula attribute</li> </ol> <hr> <h4>SBMLCompartmentVolumeRule = CompartmentVolumeRule_setType(SBMLCompartmentVolumeRule, type)</h4> <p>Takes</p> <ol> <li>SBMLCompartmentVolumeRule, an SBML CompartmentVolumeRule structure</li> <li>type; a string representing the type to be set</li> </ol> <p>Returns</p> <ol> <li>the SBML CompartmentVolumeRule structure with the new value for the type attribute</li> </ol> <hr> <h4>SBMLCompartmentVolumeRule = CompartmentVolumeRule_unsetCompartment(SBMLCompartmentVolumeRule)</h4> <p>Takes</p> <ol> <li>SBMLCompartmentVolumeRule, an SBML CompartmentVolumeRule structure</li> </ol> <p>Returns</p> <ol> <li>the SBML CompartmentVolumeRule structure with the compartment attribute unset</li> </ol> <hr> <h4>SBMLCompartmentVolumeRule = CompartmentVolumeRule_unsetFormula(SBMLCompartmentVolumeRule)</h4> <p>Takes</p> <ol> <li>SBMLCompartmentVolumeRule, an SBML CompartmentVolumeRule structure</li> </ol> <p>Returns</p> <ol> <li>the SBML CompartmentVolumeRule structure with the formula attribute unset</li> </ol> <hr> <h4>SBMLCompartmentVolumeRule = CompartmentVolumeRule_unsetType(SBMLCompartmentVolumeRule)</h4> <p>Takes</p> <ol> <li>SBMLCompartmentVolumeRule, an SBML CompartmentVolumeRule structure</li> </ol> <p>Returns</p> <ol> <li>the SBML CompartmentVolumeRule structure with the type attribute unset</li> </ol> <hr>
src/ModeloBlufeedme/dist/javadoc/blufeedme/basedatos/package-frame.html
google-code/blufeedme
<!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_18) on Fri Jun 24 13:47:35 CEST 2011 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> blufeedme.basedatos (Blufeedme) </TITLE> <META NAME="date" CONTENT="2011-06-24"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../stylesheet.css" TITLE="Style"> </HEAD> <BODY BGCOLOR="white"> <FONT size="+1" CLASS="FrameTitleFont"> <A HREF="../../blufeedme/basedatos/package-summary.html" target="classFrame">blufeedme.basedatos</A></FONT> <TABLE BORDER="0" WIDTH="100%" SUMMARY=""> <TR> <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> Interfaces</FONT>&nbsp; <FONT CLASS="FrameItemFont"> <BR> <A HREF="BdBlufeedme.html" title="interface in blufeedme.basedatos" target="classFrame"><I>BdBlufeedme</I></A></FONT></TD> </TR> </TABLE> </BODY> </HTML>
packages/neos-ui-guest-frame/src/style.css
mstruebing/PackageFactory.Guevara
.markHoveredNodeAsHovered { outline-offset: 10px; outline: 2px solid rgba(#000, .2); } .markHiddenNodeAsHidden { opacity: .3; } .addEmptyContentCollectionOverlay { height: 20px; width: 100%; outline: 2px solid var(--colors-ContrastBrighter); } .markActiveNodeAsFocused--focusedNode { outline-offset: 10px; outline: 2px solid var(--colors-PrimaryBlue); } :global(.neos-contentelement-shine-through:hover).markHoveredNodeAsHovered, :global(.neos-contentelement-shine-through).markActiveNodeAsFocused--focusedNode { outline-color: var(--colors-Warn); } :global(.neos-inline-editable:focus) { outline: none; } :global([data-neos-inline-editor-is-initialized]:hover) { outline-offset: 5px; outline: 2px dashed var(--colors-PrimaryBlue); } .notInlineEditableOverlay { position: absolute; top: 0; left: 0; bottom: 0; right: 0; z-index: var(--zIndex-NotInlineEditableOverlay-Context); background-size: 100%; background-image: linear-gradient(to bottom, rgba(50, 50, 50, .1), rgba(50, 50, 50, .2), rgba(50, 50, 50, .1)); } :global(.ck-content .table table td) { padding: 5px; border: 1px solid gray; } :global body::-webkit-scrollbar { width: 8px; height: 8px; } :global body::-webkit-scrollbar-track { background-color: var(--colors-ContrastDarkest) !important; }
game/data/scripts/quests/Q00026_TiredOfWaiting/30655-08.html
karolusw/l2j
<html><body>Isael Silvershadow:<br> You are back! Now, I apologize for testing you, but I couldn't find someone trustworthy for my task. Thank you for all your help!<br> (You have already completed this quest.) </body></html>
metronic_v4.7.1/theme/admin_1_rounded/ui_toastr.html
FernandoUnix/AcessoRestrito
<!DOCTYPE html> <!-- Template Name: Metronic - Responsive Admin Dashboard Template build with Twitter Bootstrap 3.3.7 Version: 4.7.1 Author: KeenThemes Website: http://www.keenthemes.com/ Contact: support@keenthemes.com Follow: www.twitter.com/keenthemes Dribbble: www.dribbble.com/keenthemes Like: www.facebook.com/keenthemes Purchase: http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes Renew Support: 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 Admin Theme #1 | Toastr Notifications</title> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta content="width=device-width, initial-scale=1" name="viewport" /> <meta content="Preview page of Metronic Admin Theme #1 for gnome & growl type non-blocking bootstrap toastr notifications" 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/bootstrap-switch/css/bootstrap-switch.min.css" rel="stylesheet" type="text/css" /> <!-- END GLOBAL MANDATORY STYLES --> <!-- BEGIN PAGE LEVEL PLUGINS --> <link href="../assets/global/plugins/bootstrap-toastr/toastr.min.css" rel="stylesheet" type="text/css" /> <!-- END PAGE LEVEL PLUGINS --> <!-- BEGIN THEME GLOBAL STYLES --> <link href="../assets/global/css/components-rounded.min.css" rel="stylesheet" id="style_components" type="text/css" /> <link href="../assets/global/css/plugins.min.css" rel="stylesheet" type="text/css" /> <!-- END THEME GLOBAL STYLES --> <!-- BEGIN THEME LAYOUT STYLES --> <link href="../assets/layouts/layout/css/layout.min.css" rel="stylesheet" type="text/css" /> <link href="../assets/layouts/layout/css/themes/darkblue.min.css" rel="stylesheet" type="text/css" id="style_color" /> <link href="../assets/layouts/layout/css/custom.min.css" rel="stylesheet" type="text/css" /> <!-- END THEME LAYOUT STYLES --> <link rel="shortcut icon" href="favicon.ico" /> </head> <!-- END HEAD --> <body class="page-header-fixed page-sidebar-closed-hide-logo page-content-white"> <div class="page-wrapper"> <!-- 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/layouts/layout/img/logo.png" alt="logo" class="logo-default" /> </a> <div class="menu-toggler sidebar-toggler"> <span></span> </div> </div> <!-- END LOGO --> <!-- BEGIN RESPONSIVE MENU TOGGLER --> <a href="javascript:;" class="menu-toggler responsive-toggler" data-toggle="collapse" data-target=".navbar-collapse"> <span></span> </a> <!-- END RESPONSIVE MENU TOGGLER --> <!-- BEGIN TOP NAVIGATION MENU --> <div class="top-menu"> <ul class="nav navbar-nav pull-right"> <!-- BEGIN NOTIFICATION DROPDOWN --> <!-- DOC: Apply "dropdown-dark" class after "dropdown-extended" to change the dropdown styte --> <!-- DOC: Apply "dropdown-hoverable" class after below "dropdown" and remove data-toggle="dropdown" data-hover="dropdown" data-close-others="true" attributes to enable hover dropdown mode --> <!-- DOC: Remove "dropdown-hoverable" and add data-toggle="dropdown" data-hover="dropdown" data-close-others="true" attributes to the below A element with dropdown-toggle class --> <li class="dropdown dropdown-extended dropdown-notification" id="header_notification_bar"> <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true"> <i class="icon-bell"></i> <span class="badge badge-default"> 7 </span> </a> <ul class="dropdown-menu"> <li class="external"> <h3> <span class="bold">12 pending</span> notifications</h3> <a href="page_user_profile_1.html">view all</a> </li> <li> <ul class="dropdown-menu-list scroller" style="height: 250px;" data-handle-color="#637283"> <li> <a href="javascript:;"> <span class="time">just now</span> <span class="details"> <span class="label label-sm label-icon label-success"> <i class="fa fa-plus"></i> </span> New user registered. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">3 mins</span> <span class="details"> <span class="label label-sm label-icon label-danger"> <i class="fa fa-bolt"></i> </span> Server #12 overloaded. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">10 mins</span> <span class="details"> <span class="label label-sm label-icon label-warning"> <i class="fa fa-bell-o"></i> </span> Server #2 not responding. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">14 hrs</span> <span class="details"> <span class="label label-sm label-icon label-info"> <i class="fa fa-bullhorn"></i> </span> Application error. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">2 days</span> <span class="details"> <span class="label label-sm label-icon label-danger"> <i class="fa fa-bolt"></i> </span> Database overloaded 68%. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">3 days</span> <span class="details"> <span class="label label-sm label-icon label-danger"> <i class="fa fa-bolt"></i> </span> A user IP blocked. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">4 days</span> <span class="details"> <span class="label label-sm label-icon label-warning"> <i class="fa fa-bell-o"></i> </span> Storage Server #4 not responding dfdfdfd. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">5 days</span> <span class="details"> <span class="label label-sm label-icon label-info"> <i class="fa fa-bullhorn"></i> </span> System Error. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">9 days</span> <span class="details"> <span class="label label-sm label-icon label-danger"> <i class="fa fa-bolt"></i> </span> Storage server failed. </span> </a> </li> </ul> </li> </ul> </li> <!-- END NOTIFICATION DROPDOWN --> <!-- BEGIN INBOX DROPDOWN --> <!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte --> <li class="dropdown dropdown-extended dropdown-inbox" 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-default"> 4 </span> </a> <ul class="dropdown-menu"> <li class="external"> <h3>You have <span class="bold">7 New</span> Messages</h3> <a href="app_inbox.html">view all</a> </li> <li> <ul class="dropdown-menu-list scroller" style="height: 275px;" data-handle-color="#637283"> <li> <a href="#"> <span class="photo"> <img src="../assets/layouts/layout3/img/avatar2.jpg" class="img-circle" alt=""> </span> <span class="subject"> <span class="from"> Lisa Wong </span> <span class="time">Just Now </span> </span> <span class="message"> Vivamus sed auctor nibh congue nibh. auctor nibh auctor nibh... </span> </a> </li> <li> <a href="#"> <span class="photo"> <img src="../assets/layouts/layout3/img/avatar3.jpg" class="img-circle" alt=""> </span> <span class="subject"> <span class="from"> Richard Doe </span> <span class="time">16 mins </span> </span> <span class="message"> Vivamus sed congue nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span> </a> </li> <li> <a href="#"> <span class="photo"> <img src="../assets/layouts/layout3/img/avatar1.jpg" class="img-circle" alt=""> </span> <span class="subject"> <span class="from"> Bob Nilson </span> <span class="time">2 hrs </span> </span> <span class="message"> Vivamus sed nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span> </a> </li> <li> <a href="#"> <span class="photo"> <img src="../assets/layouts/layout3/img/avatar2.jpg" class="img-circle" alt=""> </span> <span class="subject"> <span class="from"> Lisa Wong </span> <span class="time">40 mins </span> </span> <span class="message"> Vivamus sed auctor 40% nibh congue nibh... </span> </a> </li> <li> <a href="#"> <span class="photo"> <img src="../assets/layouts/layout3/img/avatar3.jpg" class="img-circle" alt=""> </span> <span class="subject"> <span class="from"> Richard Doe </span> <span class="time">46 mins </span> </span> <span class="message"> Vivamus sed congue nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span> </a> </li> </ul> </li> </ul> </li> <!-- END INBOX DROPDOWN --> <!-- BEGIN TODO DROPDOWN --> <!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte --> <li class="dropdown dropdown-extended dropdown-tasks" id="header_task_bar"> <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true"> <i class="icon-calendar"></i> <span class="badge badge-default"> 3 </span> </a> <ul class="dropdown-menu extended tasks"> <li class="external"> <h3>You have <span class="bold">12 pending</span> tasks</h3> <a href="app_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"> <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true"> <img alt="" class="img-circle" src="../assets/layouts/layout/img/avatar3_small.jpg" /> <span class="username username-hide-on-mobile"> Nick </span> <i class="fa fa-angle-down"></i> </a> <ul class="dropdown-menu dropdown-menu-default"> <li> <a href="page_user_profile_1.html"> <i class="icon-user"></i> My Profile </a> </li> <li> <a href="app_calendar.html"> <i class="icon-calendar"></i> My Calendar </a> </li> <li> <a href="app_inbox.html"> <i class="icon-envelope-open"></i> My Inbox <span class="badge badge-danger"> 3 </span> </a> </li> <li> <a href="app_todo.html"> <i class="icon-rocket"></i> My Tasks <span class="badge badge-success"> 7 </span> </a> </li> <li class="divider"> </li> <li> <a href="page_user_lock_1.html"> <i class="icon-lock"></i> Lock Screen </a> </li> <li> <a href="page_user_login_1.html"> <i class="icon-key"></i> Log Out </a> </li> </ul> </li> <!-- END USER LOGIN DROPDOWN --> <!-- BEGIN QUICK SIDEBAR TOGGLER --> <!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte --> <li class="dropdown dropdown-quick-sidebar-toggler"> <a href="javascript:;" class="dropdown-toggle"> <i class="icon-logout"></i> </a> </li> <!-- END QUICK SIDEBAR TOGGLER --> </ul> </div> <!-- END TOP NAVIGATION MENU --> </div> <!-- END HEADER INNER --> </div> <!-- END HEADER --> <!-- BEGIN HEADER & CONTENT DIVIDER --> <div class="clearfix"> </div> <!-- END HEADER & CONTENT DIVIDER --> <!-- BEGIN CONTAINER --> <div class="page-container"> <!-- BEGIN SIDEBAR --> <div class="page-sidebar-wrapper"> <!-- BEGIN SIDEBAR --> <!-- 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 page-header-fixed " data-keep-expanded="false" data-auto-scroll="true" data-slide-speed="200" style="padding-top: 20px"> <!-- DOC: To remove the sidebar toggler from the sidebar you just need to completely remove the below "sidebar-toggler-wrapper" LI element --> <!-- BEGIN SIDEBAR TOGGLER BUTTON --> <li class="sidebar-toggler-wrapper hide"> <div class="sidebar-toggler"> <span></span> </div> </li> <!-- END SIDEBAR TOGGLER BUTTON --> <!-- DOC: To remove the search box from the sidebar you just need to completely remove the below "sidebar-search-wrapper" LI element --> <li class="sidebar-search-wrapper"> <!-- BEGIN RESPONSIVE QUICK SEARCH FORM --> <!-- DOC: Apply "sidebar-search-bordered" class the below search form to have bordered search box --> <!-- DOC: Apply "sidebar-search-bordered sidebar-search-solid" class the below search form to have bordered & solid search box --> <form class="sidebar-search " action="page_general_search_3.html" method="POST"> <a href="javascript:;" class="remove"> <i class="icon-close"></i> </a> <div class="input-group"> <input type="text" class="form-control" placeholder="Search..."> <span class="input-group-btn"> <a href="javascript:;" class="btn submit"> <i class="icon-magnifier"></i> </a> </span> </div> </form> <!-- END RESPONSIVE QUICK SEARCH FORM --> </li> <li class="nav-item start "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-home"></i> <span class="title">Dashboard</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item start "> <a href="index.html" class="nav-link "> <i class="icon-bar-chart"></i> <span class="title">Dashboard 1</span> </a> </li> <li class="nav-item start "> <a href="dashboard_2.html" class="nav-link "> <i class="icon-bulb"></i> <span class="title">Dashboard 2</span> <span class="badge badge-success">1</span> </a> </li> <li class="nav-item start "> <a href="dashboard_3.html" class="nav-link "> <i class="icon-graph"></i> <span class="title">Dashboard 3</span> <span class="badge badge-danger">5</span> </a> </li> </ul> </li> <li class="heading"> <h3 class="uppercase">Features</h3> </li> <li class="nav-item active open"> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-diamond"></i> <span class="title">UI Features</span> <span class="selected"></span> <span class="arrow open"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="ui_colors.html" class="nav-link "> <span class="title">Color Library</span> </a> </li> <li class="nav-item "> <a href="ui_metronic_grid.html" class="nav-link "> <span class="title">Metronic Grid System</span> </a> </li> <li class="nav-item "> <a href="ui_general.html" class="nav-link "> <span class="title">General Components</span> </a> </li> <li class="nav-item "> <a href="ui_buttons.html" class="nav-link "> <span class="title">Buttons</span> </a> </li> <li class="nav-item "> <a href="ui_buttons_spinner.html" class="nav-link "> <span class="title">Spinner Buttons</span> </a> </li> <li class="nav-item "> <a href="ui_confirmations.html" class="nav-link "> <span class="title">Popover Confirmations</span> </a> </li> <li class="nav-item "> <a href="ui_sweetalert.html" class="nav-link "> <span class="title">Bootstrap Sweet Alerts</span> </a> </li> <li class="nav-item "> <a href="ui_icons.html" class="nav-link "> <span class="title">Font Icons</span> </a> </li> <li class="nav-item "> <a href="ui_socicons.html" class="nav-link "> <span class="title">Social Icons</span> </a> </li> <li class="nav-item "> <a href="ui_typography.html" class="nav-link "> <span class="title">Typography</span> </a> </li> <li class="nav-item "> <a href="ui_tabs_accordions_navs.html" class="nav-link "> <span class="title">Tabs, Accordions & Navs</span> </a> </li> <li class="nav-item "> <a href="ui_timeline.html" class="nav-link "> <span class="title">Timeline 1</span> </a> </li> <li class="nav-item "> <a href="ui_timeline_2.html" class="nav-link "> <span class="title">Timeline 2</span> </a> </li> <li class="nav-item "> <a href="ui_timeline_horizontal.html" class="nav-link "> <span class="title">Horizontal Timeline</span> </a> </li> <li class="nav-item "> <a href="ui_tree.html" class="nav-link "> <span class="title">Tree View</span> </a> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <span class="title">Page Progress Bar</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="ui_page_progress_style_1.html" class="nav-link "> Flash </a> </li> <li class="nav-item "> <a href="ui_page_progress_style_2.html" class="nav-link "> Big Counter </a> </li> </ul> </li> <li class="nav-item "> <a href="ui_blockui.html" class="nav-link "> <span class="title">Block UI</span> </a> </li> <li class="nav-item "> <a href="ui_bootstrap_growl.html" class="nav-link "> <span class="title">Bootstrap Growl Notifications</span> </a> </li> <li class="nav-item "> <a href="ui_notific8.html" class="nav-link "> <span class="title">Notific8 Notifications</span> </a> </li> <li class="nav-item active open"> <a href="ui_toastr.html" class="nav-link "> <span class="title">Toastr Notifications</span> <span class="selected"></span> </a> </li> <li class="nav-item "> <a href="ui_bootbox.html" class="nav-link "> <span class="title">Bootbox Dialogs</span> </a> </li> <li class="nav-item "> <a href="ui_alerts_api.html" class="nav-link "> <span class="title">Metronic Alerts API</span> </a> </li> <li class="nav-item "> <a href="ui_session_timeout.html" class="nav-link "> <span class="title">Session Timeout</span> </a> </li> <li class="nav-item "> <a href="ui_idle_timeout.html" class="nav-link "> <span class="title">User Idle Timeout</span> </a> </li> <li class="nav-item "> <a href="ui_modals.html" class="nav-link "> <span class="title">Modals</span> </a> </li> <li class="nav-item "> <a href="ui_extended_modals.html" class="nav-link "> <span class="title">Extended Modals</span> </a> </li> <li class="nav-item "> <a href="ui_tiles.html" class="nav-link "> <span class="title">Tiles</span> </a> </li> <li class="nav-item "> <a href="ui_datepaginator.html" class="nav-link "> <span class="title">Date Paginator</span> </a> </li> <li class="nav-item "> <a href="ui_nestable.html" class="nav-link "> <span class="title">Nestable List</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-puzzle"></i> <span class="title">Components</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="components_date_time_pickers.html" class="nav-link "> <span class="title">Date & Time Pickers</span> </a> </li> <li class="nav-item "> <a href="components_color_pickers.html" class="nav-link "> <span class="title">Color Pickers</span> <span class="badge badge-danger">2</span> </a> </li> <li class="nav-item "> <a href="components_select2.html" class="nav-link "> <span class="title">Select2 Dropdowns</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_multiselect_dropdown.html" class="nav-link "> <span class="title">Bootstrap Multiselect Dropdowns</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_select.html" class="nav-link "> <span class="title">Bootstrap Select</span> </a> </li> <li class="nav-item "> <a href="components_multi_select.html" class="nav-link "> <span class="title">Bootstrap Multiple Select</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_select_splitter.html" class="nav-link "> <span class="title">Select Splitter</span> </a> </li> <li class="nav-item "> <a href="components_clipboard.html" class="nav-link "> <span class="title">Clipboard</span> </a> </li> <li class="nav-item "> <a href="components_typeahead.html" class="nav-link "> <span class="title">Typeahead Autocomplete</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_tagsinput.html" class="nav-link "> <span class="title">Bootstrap Tagsinput</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_switch.html" class="nav-link "> <span class="title">Bootstrap Switch</span> <span class="badge badge-success">6</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_maxlength.html" class="nav-link "> <span class="title">Bootstrap Maxlength</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_fileinput.html" class="nav-link "> <span class="title">Bootstrap File Input</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_touchspin.html" class="nav-link "> <span class="title">Bootstrap Touchspin</span> </a> </li> <li class="nav-item "> <a href="components_form_tools.html" class="nav-link "> <span class="title">Form Widgets & Tools</span> </a> </li> <li class="nav-item "> <a href="components_context_menu.html" class="nav-link "> <span class="title">Context Menu</span> </a> </li> <li class="nav-item "> <a href="components_editors.html" class="nav-link "> <span class="title">Markdown & WYSIWYG Editors</span> </a> </li> <li class="nav-item "> <a href="components_code_editors.html" class="nav-link "> <span class="title">Code Editors</span> </a> </li> <li class="nav-item "> <a href="components_ion_sliders.html" class="nav-link "> <span class="title">Ion Range Sliders</span> </a> </li> <li class="nav-item "> <a href="components_noui_sliders.html" class="nav-link "> <span class="title">NoUI Range Sliders</span> </a> </li> <li class="nav-item "> <a href="components_knob_dials.html" class="nav-link "> <span class="title">Knob Circle Dials</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-settings"></i> <span class="title">Form Stuff</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="form_controls.html" class="nav-link "> <span class="title">Bootstrap Form <br>Controls</span> </a> </li> <li class="nav-item "> <a href="form_controls_md.html" class="nav-link "> <span class="title">Material Design <br>Form Controls</span> </a> </li> <li class="nav-item "> <a href="form_validation.html" class="nav-link "> <span class="title">Form Validation</span> </a> </li> <li class="nav-item "> <a href="form_validation_states_md.html" class="nav-link "> <span class="title">Material Design <br>Form Validation States</span> </a> </li> <li class="nav-item "> <a href="form_validation_md.html" class="nav-link "> <span class="title">Material Design <br>Form Validation</span> </a> </li> <li class="nav-item "> <a href="form_layouts.html" class="nav-link "> <span class="title">Form Layouts</span> </a> </li> <li class="nav-item "> <a href="form_repeater.html" class="nav-link "> <span class="title">Form Repeater</span> </a> </li> <li class="nav-item "> <a href="form_input_mask.html" class="nav-link "> <span class="title">Form Input Mask</span> </a> </li> <li class="nav-item "> <a href="form_editable.html" class="nav-link "> <span class="title">Form X-editable</span> </a> </li> <li class="nav-item "> <a href="form_wizard.html" class="nav-link "> <span class="title">Form Wizard</span> </a> </li> <li class="nav-item "> <a href="form_icheck.html" class="nav-link "> <span class="title">iCheck Controls</span> </a> </li> <li class="nav-item "> <a href="form_image_crop.html" class="nav-link "> <span class="title">Image Cropping</span> </a> </li> <li class="nav-item "> <a href="form_fileupload.html" class="nav-link "> <span class="title">Multiple File Upload</span> </a> </li> <li class="nav-item "> <a href="form_dropzone.html" class="nav-link "> <span class="title">Dropzone File Upload</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-bulb"></i> <span class="title">Elements</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="elements_steps.html" class="nav-link "> <span class="title">Steps</span> </a> </li> <li class="nav-item "> <a href="elements_lists.html" class="nav-link "> <span class="title">Lists</span> </a> </li> <li class="nav-item "> <a href="elements_ribbons.html" class="nav-link "> <span class="title">Ribbons</span> </a> </li> <li class="nav-item "> <a href="elements_overlay.html" class="nav-link "> <span class="title">Overlays</span> </a> </li> <li class="nav-item "> <a href="elements_cards.html" class="nav-link "> <span class="title">User Cards</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-briefcase"></i> <span class="title">Tables</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="table_static_basic.html" class="nav-link "> <span class="title">Basic Tables</span> </a> </li> <li class="nav-item "> <a href="table_static_responsive.html" class="nav-link "> <span class="title">Responsive Tables</span> </a> </li> <li class="nav-item "> <a href="table_bootstrap.html" class="nav-link "> <span class="title">Bootstrap Tables</span> </a> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <span class="title">Datatables</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="table_datatables_managed.html" class="nav-link "> Managed Datatables </a> </li> <li class="nav-item "> <a href="table_datatables_buttons.html" class="nav-link "> Buttons Extension </a> </li> <li class="nav-item "> <a href="table_datatables_colreorder.html" class="nav-link "> Colreorder Extension </a> </li> <li class="nav-item "> <a href="table_datatables_rowreorder.html" class="nav-link "> Rowreorder Extension </a> </li> <li class="nav-item "> <a href="table_datatables_scroller.html" class="nav-link "> Scroller Extension </a> </li> <li class="nav-item "> <a href="table_datatables_fixedheader.html" class="nav-link "> FixedHeader Extension </a> </li> <li class="nav-item "> <a href="table_datatables_responsive.html" class="nav-link "> Responsive Extension </a> </li> <li class="nav-item "> <a href="table_datatables_editable.html" class="nav-link "> Editable Datatables </a> </li> <li class="nav-item "> <a href="table_datatables_ajax.html" class="nav-link "> Ajax Datatables </a> </li> </ul> </li> </ul> </li> <li class="nav-item "> <a href="?p=" class="nav-link nav-toggle"> <i class="icon-wallet"></i> <span class="title">Portlets</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="portlet_boxed.html" class="nav-link "> <span class="title">Boxed Portlets</span> </a> </li> <li class="nav-item "> <a href="portlet_light.html" class="nav-link "> <span class="title">Light Portlets</span> </a> </li> <li class="nav-item "> <a href="portlet_solid.html" class="nav-link "> <span class="title">Solid Portlets</span> </a> </li> <li class="nav-item "> <a href="portlet_ajax.html" class="nav-link "> <span class="title">Ajax Portlets</span> </a> </li> <li class="nav-item "> <a href="portlet_draggable.html" class="nav-link "> <span class="title">Draggable Portlets</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-bar-chart"></i> <span class="title">Charts</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="charts_amcharts.html" class="nav-link "> <span class="title">amChart</span> </a> </li> <li class="nav-item "> <a href="charts_flotcharts.html" class="nav-link "> <span class="title">Flot Charts</span> </a> </li> <li class="nav-item "> <a href="charts_flowchart.html" class="nav-link "> <span class="title">Flow Charts</span> </a> </li> <li class="nav-item "> <a href="charts_google.html" class="nav-link "> <span class="title">Google Charts</span> </a> </li> <li class="nav-item "> <a href="charts_echarts.html" class="nav-link "> <span class="title">eCharts</span> </a> </li> <li class="nav-item "> <a href="charts_morris.html" class="nav-link "> <span class="title">Morris Charts</span> </a> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <span class="title">HighCharts</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="charts_highcharts.html" class="nav-link "> HighCharts </a> </li> <li class="nav-item "> <a href="charts_highstock.html" class="nav-link "> HighStock </a> </li> <li class="nav-item "> <a href="charts_highmaps.html" class="nav-link "> HighMaps </a> </li> </ul> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-pointer"></i> <span class="title">Maps</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="maps_google.html" class="nav-link "> <span class="title">Google Maps</span> </a> </li> <li class="nav-item "> <a href="maps_vector.html" class="nav-link "> <span class="title">Vector Maps</span> </a> </li> </ul> </li> <li class="heading"> <h3 class="uppercase">Layouts</h3> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-layers"></i> <span class="title">Page Layouts</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="layout_blank_page.html" class="nav-link "> <span class="title">Blank Page</span> </a> </li> <li class="nav-item "> <a href="layout_ajax_page.html" class="nav-link "> <span class="title">Ajax Content Layout</span> </a> </li> <li class="nav-item "> <a href="layout_offcanvas_mobile_menu.html" class="nav-link "> <span class="title">Off-canvas Mobile Menu</span> </a> </li> <li class="nav-item "> <a href="layout_classic_page_head.html" class="nav-link "> <span class="title">Classic Page Head</span> </a> </li> <li class="nav-item "> <a href="layout_light_page_head.html" class="nav-link "> <span class="title">Light Page Head</span> </a> </li> <li class="nav-item "> <a href="layout_content_grey.html" class="nav-link "> <span class="title">Grey Bg Content</span> </a> </li> <li class="nav-item "> <a href="layout_search_on_header_1.html" class="nav-link "> <span class="title">Search Box On Header 1</span> </a> </li> <li class="nav-item "> <a href="layout_search_on_header_2.html" class="nav-link "> <span class="title">Search Box On Header 2</span> </a> </li> <li class="nav-item "> <a href="layout_language_bar.html" class="nav-link "> <span class="title">Header Language Bar</span> </a> </li> <li class="nav-item "> <a href="layout_footer_fixed.html" class="nav-link "> <span class="title">Fixed Footer</span> </a> </li> <li class="nav-item "> <a href="layout_boxed_page.html" class="nav-link "> <span class="title">Boxed Page</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-feed"></i> <span class="title">Sidebar Layouts</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="layout_sidebar_menu_light.html" class="nav-link "> <span class="title">Light Sidebar Menu</span> </a> </li> <li class="nav-item "> <a href="layout_sidebar_menu_hover.html" class="nav-link "> <span class="title">Hover Sidebar Menu</span> </a> </li> <li class="nav-item "> <a href="layout_sidebar_search_1.html" class="nav-link "> <span class="title">Sidebar Search Option 1</span> </a> </li> <li class="nav-item "> <a href="layout_sidebar_search_2.html" class="nav-link "> <span class="title">Sidebar Search Option 2</span> </a> </li> <li class="nav-item "> <a href="layout_toggler_on_sidebar.html" class="nav-link "> <span class="title">Sidebar Toggler On Sidebar</span> </a> </li> <li class="nav-item "> <a href="layout_sidebar_reversed.html" class="nav-link "> <span class="title">Reversed Sidebar Page</span> </a> </li> <li class="nav-item "> <a href="layout_sidebar_fixed.html" class="nav-link "> <span class="title">Fixed Sidebar Layout</span> </a> </li> <li class="nav-item "> <a href="layout_sidebar_closed.html" class="nav-link "> <span class="title">Closed Sidebar Layout</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-paper-plane"></i> <span class="title">Horizontal Menu</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="layout_mega_menu_light.html" class="nav-link "> <span class="title">Light Mega Menu</span> </a> </li> <li class="nav-item "> <a href="layout_mega_menu_dark.html" class="nav-link "> <span class="title">Dark Mega Menu</span> </a> </li> <li class="nav-item "> <a href="layout_full_width.html" class="nav-link "> <span class="title">Full Width Layout</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class=" icon-wrench"></i> <span class="title">Custom Layouts</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="layout_disabled_menu.html" class="nav-link "> <span class="title">Disabled Menu Links</span> </a> </li> <li class="nav-item "> <a href="layout_full_height_portlet.html" class="nav-link "> <span class="title">Full Height Portlet</span> </a> </li> <li class="nav-item "> <a href="layout_full_height_content.html" class="nav-link "> <span class="title">Full Height Content</span> </a> </li> </ul> </li> <li class="heading"> <h3 class="uppercase">Pages</h3> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-basket"></i> <span class="title">eCommerce</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="ecommerce_index.html" class="nav-link "> <i class="icon-home"></i> <span class="title">Dashboard</span> </a> </li> <li class="nav-item "> <a href="ecommerce_orders.html" class="nav-link "> <i class="icon-basket"></i> <span class="title">Orders</span> </a> </li> <li class="nav-item "> <a href="ecommerce_orders_view.html" class="nav-link "> <i class="icon-tag"></i> <span class="title">Order View</span> </a> </li> <li class="nav-item "> <a href="ecommerce_products.html" class="nav-link "> <i class="icon-graph"></i> <span class="title">Products</span> </a> </li> <li class="nav-item "> <a href="ecommerce_products_edit.html" class="nav-link "> <i class="icon-graph"></i> <span class="title">Product Edit</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-docs"></i> <span class="title">Apps</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="app_todo.html" class="nav-link "> <i class="icon-clock"></i> <span class="title">Todo 1</span> </a> </li> <li class="nav-item "> <a href="app_todo_2.html" class="nav-link "> <i class="icon-check"></i> <span class="title">Todo 2</span> </a> </li> <li class="nav-item "> <a href="app_inbox.html" class="nav-link "> <i class="icon-envelope"></i> <span class="title">Inbox</span> </a> </li> <li class="nav-item "> <a href="app_calendar.html" class="nav-link "> <i class="icon-calendar"></i> <span class="title">Calendar</span> </a> </li> <li class="nav-item "> <a href="app_ticket.html" class="nav-link "> <i class="icon-notebook"></i> <span class="title">Support</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-user"></i> <span class="title">User</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="page_user_profile_1.html" class="nav-link "> <i class="icon-user"></i> <span class="title">Profile 1</span> </a> </li> <li class="nav-item "> <a href="page_user_profile_1_account.html" class="nav-link "> <i class="icon-user-female"></i> <span class="title">Profile 1 Account</span> </a> </li> <li class="nav-item "> <a href="page_user_profile_1_help.html" class="nav-link "> <i class="icon-user-following"></i> <span class="title">Profile 1 Help</span> </a> </li> <li class="nav-item "> <a href="page_user_profile_2.html" class="nav-link "> <i class="icon-users"></i> <span class="title">Profile 2</span> </a> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-notebook"></i> <span class="title">Login</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="page_user_login_1.html" class="nav-link " target="_blank"> Login Page 1 </a> </li> <li class="nav-item "> <a href="page_user_login_2.html" class="nav-link " target="_blank"> Login Page 2 </a> </li> <li class="nav-item "> <a href="page_user_login_3.html" class="nav-link " target="_blank"> Login Page 3 </a> </li> <li class="nav-item "> <a href="page_user_login_4.html" class="nav-link " target="_blank"> Login Page 4 </a> </li> <li class="nav-item "> <a href="page_user_login_5.html" class="nav-link " target="_blank"> Login Page 5 </a> </li> <li class="nav-item "> <a href="page_user_login_6.html" class="nav-link " target="_blank"> Login Page 6 </a> </li> </ul> </li> <li class="nav-item "> <a href="page_user_lock_1.html" class="nav-link " target="_blank"> <i class="icon-lock"></i> <span class="title">Lock Screen 1</span> </a> </li> <li class="nav-item "> <a href="page_user_lock_2.html" class="nav-link " target="_blank"> <i class="icon-lock-open"></i> <span class="title">Lock Screen 2</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-social-dribbble"></i> <span class="title">General</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="page_general_about.html" class="nav-link "> <i class="icon-info"></i> <span class="title">About</span> </a> </li> <li class="nav-item "> <a href="page_general_contact.html" class="nav-link "> <i class="icon-call-end"></i> <span class="title">Contact</span> </a> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-notebook"></i> <span class="title">Portfolio</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="page_general_portfolio_1.html" class="nav-link "> Portfolio 1 </a> </li> <li class="nav-item "> <a href="page_general_portfolio_2.html" class="nav-link "> Portfolio 2 </a> </li> <li class="nav-item "> <a href="page_general_portfolio_3.html" class="nav-link "> Portfolio 3 </a> </li> <li class="nav-item "> <a href="page_general_portfolio_4.html" class="nav-link "> Portfolio 4 </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-magnifier"></i> <span class="title">Search</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="page_general_search.html" class="nav-link "> Search 1 </a> </li> <li class="nav-item "> <a href="page_general_search_2.html" class="nav-link "> Search 2 </a> </li> <li class="nav-item "> <a href="page_general_search_3.html" class="nav-link "> Search 3 </a> </li> <li class="nav-item "> <a href="page_general_search_4.html" class="nav-link "> Search 4 </a> </li> <li class="nav-item "> <a href="page_general_search_5.html" class="nav-link "> Search 5 </a> </li> </ul> </li> <li class="nav-item "> <a href="page_general_pricing.html" class="nav-link "> <i class="icon-tag"></i> <span class="title">Pricing</span> </a> </li> <li class="nav-item "> <a href="page_general_faq.html" class="nav-link "> <i class="icon-wrench"></i> <span class="title">FAQ</span> </a> </li> <li class="nav-item "> <a href="page_general_blog.html" class="nav-link "> <i class="icon-pencil"></i> <span class="title">Blog</span> </a> </li> <li class="nav-item "> <a href="page_general_blog_post.html" class="nav-link "> <i class="icon-note"></i> <span class="title">Blog Post</span> </a> </li> <li class="nav-item "> <a href="page_general_invoice.html" class="nav-link "> <i class="icon-envelope"></i> <span class="title">Invoice</span> </a> </li> <li class="nav-item "> <a href="page_general_invoice_2.html" class="nav-link "> <i class="icon-envelope"></i> <span class="title">Invoice 2</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-settings"></i> <span class="title">System</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="page_cookie_consent_1.html" class="nav-link "> <span class="title">Cookie Consent 1</span> </a> </li> <li class="nav-item "> <a href="page_cookie_consent_2.html" class="nav-link "> <span class="title">Cookie Consent 2</span> </a> </li> <li class="nav-item "> <a href="page_system_coming_soon.html" class="nav-link " target="_blank"> <span class="title">Coming Soon</span> </a> </li> <li class="nav-item "> <a href="page_system_404_1.html" class="nav-link "> <span class="title">404 Page 1</span> </a> </li> <li class="nav-item "> <a href="page_system_404_2.html" class="nav-link " target="_blank"> <span class="title">404 Page 2</span> </a> </li> <li class="nav-item "> <a href="page_system_404_3.html" class="nav-link " target="_blank"> <span class="title">404 Page 3</span> </a> </li> <li class="nav-item "> <a href="page_system_500_1.html" class="nav-link "> <span class="title">500 Page 1</span> </a> </li> <li class="nav-item "> <a href="page_system_500_2.html" class="nav-link " target="_blank"> <span class="title">500 Page 2</span> </a> </li> </ul> </li> <li class="nav-item"> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-folder"></i> <span class="title">Multi Level Menu</span> <span class="arrow "></span> </a> <ul class="sub-menu"> <li class="nav-item"> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-settings"></i> Item 1 <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item"> <a href="javascript:;" target="_blank" class="nav-link"> <i class="icon-user"></i> Arrow Toggle <span class="arrow nav-toggle"></span> </a> <ul class="sub-menu"> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-power"></i> Sample Link 1</a> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-paper-plane"></i> Sample Link 1</a> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-star"></i> Sample Link 1</a> </li> </ul> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-camera"></i> Sample Link 1</a> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-link"></i> Sample Link 2</a> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-pointer"></i> Sample Link 3</a> </li> </ul> </li> <li class="nav-item"> <a href="javascript:;" target="_blank" class="nav-link"> <i class="icon-globe"></i> Arrow Toggle <span class="arrow nav-toggle"></span> </a> <ul class="sub-menu"> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-tag"></i> Sample Link 1</a> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-pencil"></i> Sample Link 1</a> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-graph"></i> Sample Link 1</a> </li> </ul> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-bar-chart"></i> Item 3 </a> </li> </ul> </li> </ul> <!-- END SIDEBAR MENU --> <!-- END SIDEBAR MENU --> </div> <!-- END SIDEBAR --> </div> <!-- END SIDEBAR --> <!-- BEGIN CONTENT --> <div class="page-content-wrapper"> <!-- BEGIN CONTENT BODY --> <div class="page-content"> <!-- BEGIN PAGE HEADER--> <!-- BEGIN THEME PANEL --> <div class="theme-panel hidden-xs hidden-sm"> <div class="toggler"> </div> <div class="toggler-close"> </div> <div class="theme-options"> <div class="theme-option theme-colors clearfix"> <span> THEME COLOR </span> <ul> <li class="color-default current tooltips" data-style="default" data-container="body" data-original-title="Default"> </li> <li class="color-darkblue tooltips" data-style="darkblue" data-container="body" data-original-title="Dark Blue"> </li> <li class="color-blue tooltips" data-style="blue" data-container="body" data-original-title="Blue"> </li> <li class="color-grey tooltips" data-style="grey" data-container="body" data-original-title="Grey"> </li> <li class="color-light tooltips" data-style="light" data-container="body" data-original-title="Light"> </li> <li class="color-light2 tooltips" data-style="light2" data-container="body" data-html="true" data-original-title="Light 2"> </li> </ul> </div> <div class="theme-option"> <span> Theme Style </span> <select class="layout-style-option form-control input-sm"> <option value="square" selected="selected">Square corners</option> <option value="rounded">Rounded corners</option> </select> </div> <div class="theme-option"> <span> Layout </span> <select class="layout-option form-control input-sm"> <option value="fluid" selected="selected">Fluid</option> <option value="boxed">Boxed</option> </select> </div> <div class="theme-option"> <span> Header </span> <select class="page-header-option form-control input-sm"> <option value="fixed" selected="selected">Fixed</option> <option value="default">Default</option> </select> </div> <div class="theme-option"> <span> Top Menu Dropdown</span> <select class="page-header-top-dropdown-style-option form-control input-sm"> <option value="light" selected="selected">Light</option> <option value="dark">Dark</option> </select> </div> <div class="theme-option"> <span> Sidebar Mode</span> <select class="sidebar-option form-control input-sm"> <option value="fixed">Fixed</option> <option value="default" selected="selected">Default</option> </select> </div> <div class="theme-option"> <span> Sidebar Menu </span> <select class="sidebar-menu-option form-control input-sm"> <option value="accordion" selected="selected">Accordion</option> <option value="hover">Hover</option> </select> </div> <div class="theme-option"> <span> Sidebar Style </span> <select class="sidebar-style-option form-control input-sm"> <option value="default" selected="selected">Default</option> <option value="light">Light</option> </select> </div> <div class="theme-option"> <span> Sidebar Position </span> <select class="sidebar-pos-option form-control input-sm"> <option value="left" selected="selected">Left</option> <option value="right">Right</option> </select> </div> <div class="theme-option"> <span> Footer </span> <select class="page-footer-option form-control input-sm"> <option value="fixed">Fixed</option> <option value="default" selected="selected">Default</option> </select> </div> </div> </div> <!-- END THEME PANEL --> <!-- BEGIN PAGE BAR --> <div class="page-bar"> <ul class="page-breadcrumb"> <li> <a href="index.html">Home</a> <i class="fa fa-circle"></i> </li> <li> <span>UI Features</span> </li> </ul> <div class="page-toolbar"> <div class="btn-group pull-right"> <button type="button" class="btn green btn-sm btn-outline dropdown-toggle" data-toggle="dropdown"> Actions <i class="fa fa-angle-down"></i> </button> <ul class="dropdown-menu pull-right" role="menu"> <li> <a href="#"> <i class="icon-bell"></i> Action</a> </li> <li> <a href="#"> <i class="icon-shield"></i> Another action</a> </li> <li> <a href="#"> <i class="icon-user"></i> Something else here</a> </li> <li class="divider"> </li> <li> <a href="#"> <i class="icon-bag"></i> Separated link</a> </li> </ul> </div> </div> </div> <!-- END PAGE BAR --> <!-- BEGIN PAGE TITLE--> <h1 class="page-title"> Toastr Notifications <small>gnome & growl type non-blocking bootstrap toastr notifications</small> </h1> <!-- END PAGE TITLE--> <!-- END PAGE HEADER--> <div class="m-heading-1 border-green m-bordered"> <h3>Bootstrap Toastr</h3> <p> Bootstrap Toastr is a Javascript library for Gnome / Growl type non-blocking notifications. jQuery is required. The goal is to create a simple core library that can be customized and extended.. For more info please check out <a href="http://codeseven.github.io/toastr/" target="_blank">the official documentation</a>. </p> </div> <div class="row"> <div class="col-md-12"> <div class="portlet light bordered"> <div class="portlet-title"> <div class="caption"> <i class="icon-bubble font-green-sharp"></i> <span class="caption-subject font-green-sharp sbold">Toastr Notification Demo</span> </div> <div class="actions"> <div class="btn-group"> <a class="btn green-haze btn-outline btn-circle btn-sm" href="javascript:;" data-toggle="dropdown" data-hover="dropdown" data-close-others="true"> Actions <i class="fa fa-angle-down"></i> </a> <ul class="dropdown-menu pull-right"> <li> <a href="javascript:;"> Option 1</a> </li> <li class="divider"> </li> <li> <a href="javascript:;">Option 2</a> </li> <li> <a href="javascript:;">Option 3</a> </li> <li> <a href="javascript:;">Option 4</a> </li> </ul> </div> </div> </div> <div class="portlet-body"> <div class="row"> <div class="col-md-3"> <div class="form-group"> <label class="control-label" for="title">Title</label> <input id="title" type="text" class="form-control" value="Toastr Notifications" placeholder="Enter a title ..." /> </div> <div class="form-group"> <label class="control-label" for="message">Message</label> <textarea class="form-control" id="message" rows="3" placeholder="Enter a message ...">Gnome & Growl type non-blocking notifications</textarea> </div> <div class="form-group"> <div class="mt-checkbox-list"> <label class="mt-checkbox mt-checkbox-outline" for="closeButton"> <input id="closeButton" type="checkbox" value="checked" checked class="input-small" />Close Button <span></span> </label> <label class="mt-checkbox mt-checkbox-outline" for="addBehaviorOnToastClick"> <input id="addBehaviorOnToastClick" type="checkbox" value="checked" class="input-small" />Add behavior on toast click <span></span> </label> <label class="mt-checkbox mt-checkbox-outline" for="debugInfo"> <input id="debugInfo" type="checkbox" value="checked" class="input-small" />Debug <span></span> </label> </div> </div> </div> <div class="col-md-3"> <div class="form-group" id="toastTypeGroup"> <label>Toast Type</label> <div class="mt-radio-list"> <label class="mt-radio mt-radio-outline"> <input type="radio" name="toasts" value="success" checked/>Success <span></span> </label> <label class="mt-radio mt-radio-outline"> <input type="radio" name="toasts" value="info" />Info <span></span> </label> <label class="mt-radio mt-radio-outline"> <input type="radio" name="toasts" value="warning" />Warning <span></span> </label> <label class="mt-radio mt-radio-outline"> <input type="radio" name="toasts" value="error" />Error <span></span> </label> </div> </div> <div class="form-group" id="positionGroup"> <label>Position</label> <div class="mt-radio-list"> <label class="mt-radio mt-radio-outline"> <input type="radio" name="positions" value="toast-top-right" checked/>Top Right <span></span> </label> <label class="mt-radio mt-radio-outline"> <input type="radio" name="positions" value="toast-bottom-right" />Bottom Right <span></span> </label> <label class="mt-radio mt-radio-outline"> <input type="radio" name="positions" value="toast-bottom-left" />Bottom Left <span></span> </label> <label class="mt-radio mt-radio-outline"> <input type="radio" name="positions" value="toast-top-left" />Top Left <span></span> </label> <label class="mt-radio mt-radio-outline"> <input type="radio" name="positions" value="toast-top-center" />Top Center <span></span> </label> <label class="mt-radio mt-radio-outline"> <input type="radio" name="positions" value="toast-bottom-center" />Bottom Center <span></span> </label> <label class="mt-radio mt-radio-outline" l> <input type="radio" name="positions" value="toast-top-full-width" />Top Full Width <span></span> </label> <label class="mt-radio mt-radio-outline"> <input type="radio" name="positions" value="toast-bottom-full-width" />Bottom Full Width <span></span> </label> </div> </div> </div> <div class="col-md-3"> <div class="form-group"> <div class="controls"> <label class="control-label" for="showEasing">Show Easing</label> <input id="showEasing" type="text" placeholder="swing, linear" class="form-control input-small" value="swing" /> <label class="control-label" for="hideEasing">Hide Easing</label> <input id="hideEasing" type="text" placeholder="swing, linear" class="form-control input-small" value="linear" /> <label class="control-label" for="showMethod">Show Method</label> <input id="showMethod" type="text" placeholder="show, fadeIn, slideDown" class="form-control input-small" value="fadeIn" /> <label class="control-label" for="hideMethod">Hide Method</label> <input id="hideMethod" type="text" placeholder="hide, fadeOut, slideUp" class="form-control input-small" value="fadeOut" /> </div> </div> </div> <div class="col-md-3"> <div class="form-group"> <div class="controls"> <label class="control-label" for="showDuration">Show Duration</label> <input id="showDuration" type="text" placeholder="ms" class="form-control input-small" value="1000" /> <label class="control-label" for="hideDuration">Hide Duration</label> <input id="hideDuration" type="text" placeholder="ms" class="form-control input-small" value="1000" /> <label class="control-label" for="timeOut">Time out</label> <input id="timeOut" type="text" placeholder="ms" class="form-control input-small" value="5000" /> <label class="control-label" for="timeOut">Extended time out</label> <input id="extendedTimeOut" type="text" placeholder="ms" class="form-control input-small" value="1000" /> </div> </div> </div> </div> <div class="row"> <div class="col-md-12"> <button type="button" class="btn green" id="showtoast">Show Toast</button> <button type="button" class="btn btn-outline dark" id="cleartoasts">Clear Toasts</button> <button type="button" class="btn btn-outline dark" id="clearlasttoast">Clear Last Toast</button> </div> </div> <div class="row margin-top-30"> <div class="col-md-12"> <pre id='toastrOptions' class="well">Settings... </pre> </div> </div> </div> </div> </div> </div> </div> <!-- END CONTENT BODY --> </div> <!-- END CONTENT --> <!-- BEGIN QUICK SIDEBAR --> <a href="javascript:;" class="page-quick-sidebar-toggler"> <i class="icon-login"></i> </a> <div class="page-quick-sidebar-wrapper" data-close-on-body-click="false"> <div class="page-quick-sidebar"> <ul class="nav nav-tabs"> <li class="active"> <a href="javascript:;" data-target="#quick_sidebar_tab_1" data-toggle="tab"> Users <span class="badge badge-danger">2</span> </a> </li> <li> <a href="javascript:;" data-target="#quick_sidebar_tab_2" data-toggle="tab"> Alerts <span class="badge badge-success">7</span> </a> </li> <li class="dropdown"> <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown"> More <i class="fa fa-angle-down"></i> </a> <ul class="dropdown-menu pull-right"> <li> <a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab"> <i class="icon-bell"></i> Alerts </a> </li> <li> <a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab"> <i class="icon-info"></i> Notifications </a> </li> <li> <a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab"> <i class="icon-speech"></i> Activities </a> </li> <li class="divider"></li> <li> <a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab"> <i class="icon-settings"></i> Settings </a> </li> </ul> </li> </ul> <div class="tab-content"> <div class="tab-pane active page-quick-sidebar-chat" id="quick_sidebar_tab_1"> <div class="page-quick-sidebar-chat-users" data-rail-color="#ddd" data-wrapper-class="page-quick-sidebar-list"> <h3 class="list-heading">Staff</h3> <ul class="media-list list-items"> <li class="media"> <div class="media-status"> <span class="badge badge-success">8</span> </div> <img class="media-object" src="../assets/layouts/layout/img/avatar3.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Bob Nilson</h4> <div class="media-heading-sub"> Project Manager </div> </div> </li> <li class="media"> <img class="media-object" src="../assets/layouts/layout/img/avatar1.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Nick Larson</h4> <div class="media-heading-sub"> Art Director </div> </div> </li> <li class="media"> <div class="media-status"> <span class="badge badge-danger">3</span> </div> <img class="media-object" src="../assets/layouts/layout/img/avatar4.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Deon Hubert</h4> <div class="media-heading-sub"> CTO </div> </div> </li> <li class="media"> <img class="media-object" src="../assets/layouts/layout/img/avatar2.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Ella Wong</h4> <div class="media-heading-sub"> CEO </div> </div> </li> </ul> <h3 class="list-heading">Customers</h3> <ul class="media-list list-items"> <li class="media"> <div class="media-status"> <span class="badge badge-warning">2</span> </div> <img class="media-object" src="../assets/layouts/layout/img/avatar6.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Lara Kunis</h4> <div class="media-heading-sub"> CEO, Loop Inc </div> <div class="media-heading-small"> Last seen 03:10 AM </div> </div> </li> <li class="media"> <div class="media-status"> <span class="label label-sm label-success">new</span> </div> <img class="media-object" src="../assets/layouts/layout/img/avatar7.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Ernie Kyllonen</h4> <div class="media-heading-sub"> Project Manager, <br> SmartBizz PTL </div> </div> </li> <li class="media"> <img class="media-object" src="../assets/layouts/layout/img/avatar8.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Lisa Stone</h4> <div class="media-heading-sub"> CTO, Keort Inc </div> <div class="media-heading-small"> Last seen 13:10 PM </div> </div> </li> <li class="media"> <div class="media-status"> <span class="badge badge-success">7</span> </div> <img class="media-object" src="../assets/layouts/layout/img/avatar9.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Deon Portalatin</h4> <div class="media-heading-sub"> CFO, H&D LTD </div> </div> </li> <li class="media"> <img class="media-object" src="../assets/layouts/layout/img/avatar10.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Irina Savikova</h4> <div class="media-heading-sub"> CEO, Tizda Motors Inc </div> </div> </li> <li class="media"> <div class="media-status"> <span class="badge badge-danger">4</span> </div> <img class="media-object" src="../assets/layouts/layout/img/avatar11.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Maria Gomez</h4> <div class="media-heading-sub"> Manager, Infomatic Inc </div> <div class="media-heading-small"> Last seen 03:10 AM </div> </div> </li> </ul> </div> <div class="page-quick-sidebar-item"> <div class="page-quick-sidebar-chat-user"> <div class="page-quick-sidebar-nav"> <a href="javascript:;" class="page-quick-sidebar-back-to-list"> <i class="icon-arrow-left"></i>Back</a> </div> <div class="page-quick-sidebar-chat-user-messages"> <div class="post out"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Bob Nilson</a> <span class="datetime">20:15</span> <span class="body"> When could you send me the report ? </span> </div> </div> <div class="post in"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Ella Wong</a> <span class="datetime">20:15</span> <span class="body"> Its almost done. I will be sending it shortly </span> </div> </div> <div class="post out"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Bob Nilson</a> <span class="datetime">20:15</span> <span class="body"> Alright. Thanks! :) </span> </div> </div> <div class="post in"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Ella Wong</a> <span class="datetime">20:16</span> <span class="body"> You are most welcome. Sorry for the delay. </span> </div> </div> <div class="post out"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Bob Nilson</a> <span class="datetime">20:17</span> <span class="body"> No probs. Just take your time :) </span> </div> </div> <div class="post in"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Ella Wong</a> <span class="datetime">20:40</span> <span class="body"> Alright. I just emailed it to you. </span> </div> </div> <div class="post out"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Bob Nilson</a> <span class="datetime">20:17</span> <span class="body"> Great! Thanks. Will check it right away. </span> </div> </div> <div class="post in"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Ella Wong</a> <span class="datetime">20:40</span> <span class="body"> Please let me know if you have any comment. </span> </div> </div> <div class="post out"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Bob Nilson</a> <span class="datetime">20:17</span> <span class="body"> Sure. I will check and buzz you if anything needs to be corrected. </span> </div> </div> </div> <div class="page-quick-sidebar-chat-user-form"> <div class="input-group"> <input type="text" class="form-control" placeholder="Type a message here..."> <div class="input-group-btn"> <button type="button" class="btn green"> <i class="icon-paper-clip"></i> </button> </div> </div> </div> </div> </div> </div> <div class="tab-pane page-quick-sidebar-alerts" id="quick_sidebar_tab_2"> <div class="page-quick-sidebar-alerts-list"> <h3 class="list-heading">General</h3> <ul class="feeds list-items"> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-info"> <i class="fa fa-check"></i> </div> </div> <div class="cont-col2"> <div class="desc"> You have 4 pending tasks. <span class="label label-sm label-warning "> Take action <i class="fa fa-share"></i> </span> </div> </div> </div> </div> <div class="col2"> <div class="date"> Just now </div> </div> </li> <li> <a href="javascript:;"> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-success"> <i class="fa fa-bar-chart-o"></i> </div> </div> <div class="cont-col2"> <div class="desc"> Finance Report for year 2013 has been released. </div> </div> </div> </div> <div class="col2"> <div class="date"> 20 mins </div> </div> </a> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-danger"> <i class="fa fa-user"></i> </div> </div> <div class="cont-col2"> <div class="desc"> You have 5 pending membership that requires a quick review. </div> </div> </div> </div> <div class="col2"> <div class="date"> 24 mins </div> </div> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-info"> <i class="fa fa-shopping-cart"></i> </div> </div> <div class="cont-col2"> <div class="desc"> New order received with <span class="label label-sm label-success"> Reference Number: DR23923 </span> </div> </div> </div> </div> <div class="col2"> <div class="date"> 30 mins </div> </div> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-success"> <i class="fa fa-user"></i> </div> </div> <div class="cont-col2"> <div class="desc"> You have 5 pending membership that requires a quick review. </div> </div> </div> </div> <div class="col2"> <div class="date"> 24 mins </div> </div> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-info"> <i class="fa fa-bell-o"></i> </div> </div> <div class="cont-col2"> <div class="desc"> Web server hardware needs to be upgraded. <span class="label label-sm label-warning"> Overdue </span> </div> </div> </div> </div> <div class="col2"> <div class="date"> 2 hours </div> </div> </li> <li> <a href="javascript:;"> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-default"> <i class="fa fa-briefcase"></i> </div> </div> <div class="cont-col2"> <div class="desc"> IPO Report for year 2013 has been released. </div> </div> </div> </div> <div class="col2"> <div class="date"> 20 mins </div> </div> </a> </li> </ul> <h3 class="list-heading">System</h3> <ul class="feeds list-items"> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-info"> <i class="fa fa-check"></i> </div> </div> <div class="cont-col2"> <div class="desc"> You have 4 pending tasks. <span class="label label-sm label-warning "> Take action <i class="fa fa-share"></i> </span> </div> </div> </div> </div> <div class="col2"> <div class="date"> Just now </div> </div> </li> <li> <a href="javascript:;"> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-danger"> <i class="fa fa-bar-chart-o"></i> </div> </div> <div class="cont-col2"> <div class="desc"> Finance Report for year 2013 has been released. </div> </div> </div> </div> <div class="col2"> <div class="date"> 20 mins </div> </div> </a> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-default"> <i class="fa fa-user"></i> </div> </div> <div class="cont-col2"> <div class="desc"> You have 5 pending membership that requires a quick review. </div> </div> </div> </div> <div class="col2"> <div class="date"> 24 mins </div> </div> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-info"> <i class="fa fa-shopping-cart"></i> </div> </div> <div class="cont-col2"> <div class="desc"> New order received with <span class="label label-sm label-success"> Reference Number: DR23923 </span> </div> </div> </div> </div> <div class="col2"> <div class="date"> 30 mins </div> </div> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-success"> <i class="fa fa-user"></i> </div> </div> <div class="cont-col2"> <div class="desc"> You have 5 pending membership that requires a quick review. </div> </div> </div> </div> <div class="col2"> <div class="date"> 24 mins </div> </div> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-warning"> <i class="fa fa-bell-o"></i> </div> </div> <div class="cont-col2"> <div class="desc"> Web server hardware needs to be upgraded. <span class="label label-sm label-default "> Overdue </span> </div> </div> </div> </div> <div class="col2"> <div class="date"> 2 hours </div> </div> </li> <li> <a href="javascript:;"> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-info"> <i class="fa fa-briefcase"></i> </div> </div> <div class="cont-col2"> <div class="desc"> IPO Report for year 2013 has been released. </div> </div> </div> </div> <div class="col2"> <div class="date"> 20 mins </div> </div> </a> </li> </ul> </div> </div> <div class="tab-pane page-quick-sidebar-settings" id="quick_sidebar_tab_3"> <div class="page-quick-sidebar-settings-list"> <h3 class="list-heading">General Settings</h3> <ul class="list-items borderless"> <li> Enable Notifications <input type="checkbox" class="make-switch" checked data-size="small" data-on-color="success" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> <li> Allow Tracking <input type="checkbox" class="make-switch" data-size="small" data-on-color="info" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> <li> Log Errors <input type="checkbox" class="make-switch" checked data-size="small" data-on-color="danger" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> <li> Auto Sumbit Issues <input type="checkbox" class="make-switch" data-size="small" data-on-color="warning" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> <li> Enable SMS Alerts <input type="checkbox" class="make-switch" checked data-size="small" data-on-color="success" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> </ul> <h3 class="list-heading">System Settings</h3> <ul class="list-items borderless"> <li> Security Level <select class="form-control input-inline input-sm input-small"> <option value="1">Normal</option> <option value="2" selected>Medium</option> <option value="e">High</option> </select> </li> <li> Failed Email Attempts <input class="form-control input-inline input-sm input-small" value="5" /> </li> <li> Secondary SMTP Port <input class="form-control input-inline input-sm input-small" value="3560" /> </li> <li> Notify On System Error <input type="checkbox" class="make-switch" checked data-size="small" data-on-color="danger" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> <li> Notify On SMTP Error <input type="checkbox" class="make-switch" checked data-size="small" data-on-color="warning" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> </ul> <div class="inner-content"> <button class="btn btn-success"> <i class="icon-settings"></i> Save Changes</button> </div> </div> </div> </div> </div> </div> <!-- END QUICK SIDEBAR --> </div> <!-- END CONTAINER --> <!-- BEGIN FOOTER --> <div class="page-footer"> <div class="page-footer-inner"> 2016 &copy; Metronic Theme By <a target="_blank" href="http://keenthemes.com">Keenthemes</a> &nbsp;|&nbsp; <a href="http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes" title="Purchase Metronic just for 27$ and get lifetime updates for free" target="_blank">Purchase Metronic!</a> </div> <div class="scroll-to-top"> <i class="icon-arrow-up"></i> </div> </div> <!-- END FOOTER --> </div> <!-- BEGIN QUICK NAV --> <nav class="quick-nav"> <a class="quick-nav-trigger" href="#0"> <span aria-hidden="true"></span> </a> <ul> <li> <a href="https://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes" target="_blank" class="active"> <span>Purchase Metronic</span> <i class="icon-basket"></i> </a> </li> <li> <a href="https://themeforest.net/item/metronic-responsive-admin-dashboard-template/reviews/4021469?ref=keenthemes" target="_blank"> <span>Customer Reviews</span> <i class="icon-users"></i> </a> </li> <li> <a href="http://keenthemes.com/showcast/" target="_blank"> <span>Showcase</span> <i class="icon-user"></i> </a> </li> <li> <a href="http://keenthemes.com/metronic-theme/changelog/" target="_blank"> <span>Changelog</span> <i class="icon-graph"></i> </a> </li> </ul> <span aria-hidden="true" class="quick-nav-bg"></span> </nav> <div class="quick-nav-overlay"></div> <!-- END QUICK NAV --> <!--[if lt IE 9]> <script src="../assets/global/plugins/respond.min.js"></script> <script src="../assets/global/plugins/excanvas.min.js"></script> <script src="../assets/global/plugins/ie8.fix.min.js"></script> <![endif]--> <!-- BEGIN CORE PLUGINS --> <script src="../assets/global/plugins/jquery.min.js" type="text/javascript"></script> <script src="../assets/global/plugins/bootstrap/js/bootstrap.min.js" type="text/javascript"></script> <script src="../assets/global/plugins/js.cookie.min.js" type="text/javascript"></script> <script src="../assets/global/plugins/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/bootstrap-switch/js/bootstrap-switch.min.js" type="text/javascript"></script> <!-- END CORE PLUGINS --> <!-- BEGIN PAGE LEVEL PLUGINS --> <script src="../assets/global/plugins/bootstrap-toastr/toastr.min.js" type="text/javascript"></script> <!-- END PAGE LEVEL PLUGINS --> <!-- BEGIN THEME GLOBAL SCRIPTS --> <script src="../assets/global/scripts/app.min.js" type="text/javascript"></script> <!-- END THEME GLOBAL SCRIPTS --> <!-- BEGIN PAGE LEVEL SCRIPTS --> <script src="../assets/pages/scripts/ui-toastr.min.js" type="text/javascript"></script> <!-- END PAGE LEVEL SCRIPTS --> <!-- BEGIN THEME LAYOUT SCRIPTS --> <script src="../assets/layouts/layout/scripts/layout.min.js" type="text/javascript"></script> <script src="../assets/layouts/layout/scripts/demo.min.js" type="text/javascript"></script> <script src="../assets/layouts/global/scripts/quick-sidebar.min.js" type="text/javascript"></script> <script src="../assets/layouts/global/scripts/quick-nav.min.js" type="text/javascript"></script> <!-- END THEME LAYOUT SCRIPTS --> </body> </html>
web/nfs-loadfiles.html
bongiojp/dbench
<!--#set var="TITLE" value="NFS loadfiles" --> <!--#include virtual="header.html" --> <H1 align="center">NFS Loadfiles</h1> <p> This will illustrate how to create and run an NFS loadfile using DBENCH. This example is based on that you do start the session with a completely empty share and add all the files and data as part of the actual process of running the application/job. It is possible to create loadfiles that use pregenerated/preexisting data as well but that is a much more complex scenario. </p> <H2>Network trace</h2> <p> First we need to take a network trace to capture the sequence of operations that the NFS client generates. </p> <p> We do this by using the tshark tool from the <a href="http://www.wireshark.org">wireshark</a> package. We will, as of this writing, later need the very latest version of wireshark so unless you already use the development version of wireshark, download the source and compile up a brand new version... </p> <p> Once you are ready, start a network trace on the client and capture all the traffic to/from the server. Note, you MUST start the trace before the client even mounts the share since we must have the actual MOUNT operations present in the network trace. It is also important that we filter the trace to only contain the traffic to/from the server in order to keep the trace as small as possible. </p> <pre> tshark -i eth0 -s 0 -w <a href="/web/nfs.cap">nfs.cap</a> host 10.0.0.21 </pre> <p> This example network trace was taken when I mapped a share and did some file operations. <H2>Processing step 1</h2> <p> Once we have a network trace we need to do some initial processing on the trace to create the start of what will become our loadfile. Download, edit and run this script that converts a trace into a loadfile: </p> <pre> <a href="/web/nfsloadfile.sh">nfsloadfile.sh</a> <a href="nfs.cap">nfs.cap</a> > nfs.loadfile </pre> <p> This should generate an initial loadfile that would look something like this : </p> <pre> XXX unknown packet 14 0.001604 10.1.1.101 -> 10.0.0.21 NFS V3 NULL Call frame.time_relative == 0.001604000 nfs.procedure_v3 == 0 rpc.msgtyp == 0 rpc.xid == 0x2318b639 XXX unknown packet 16 0.001998 10.0.0.21 -> 10.1.1.101 NFS V3 NULL Reply (Call In 14) frame.time_relative == 0.001998000 nfs.procedure_v3 == 0 rpc.msgtyp == 1 rpc.xid == 0x2318b639 XXX unknown packet 54 0.012970 10.1.1.101 -> 10.0.0.21 NFS V3 NULL Call frame.time_relative == 0.012970000 nfs.procedure_v3 == 0 rpc.msgtyp == 0 rpc.xid == 0x3645ff3b XXX unknown packet 56 0.013270 10.0.0.21 -> 10.1.1.101 NFS V3 NULL Reply (Call In 54) frame.time_relative == 0.013270000 nfs.procedure_v3 == 0 rpc.msgtyp == 1 rpc.xid == 0x3645ff3b 0.013381000 FSINFO3 0x00000000 0.013903000 GETATTR3 "10.0.0.21:/gpfs/nfsshare" 0x00000000 0.014291000 FSINFO3 0x00000000 0.014720000 GETATTR3 "10.0.0.21:/gpfs/nfsshare" 0x00000000 1.027163000 ACCESS3 "10.0.0.21:/gpfs/nfsshare" 0 0 0x00000000 5.726435000 ACCESS3 "10.0.0.21:/gpfs/nfsshare" 0 0 0x00000000 6.799179000 GETATTR3 "10.0.0.21:/gpfs/nfsshare" 0x00000000 6.799669000 READDIRPLUS3 "10.0.0.21:/gpfs/nfsshare" 0x00000000 8.347222000 GETATTR3 "10.0.0.21:/gpfs/nfsshare" 0x00000000 35.087310000 LOOKUP3 "10.0.0.21:/gpfs/nfsshare/small-file" 0x00000002 35.087938000 CREATE3 "10.0.0.21:/gpfs/nfsshare/small-file" 0 0x00000000 35.102625000 WRITE3 "10.0.0.21:/gpfs/nfsshare/small-file" 0 10240 2 0x00000000 35.104245000 GETATTR3 "10.0.0.21:/gpfs/nfsshare/small-file" 0x00000000 41.827776000 GETATTR3 "10.0.0.21:/gpfs/nfsshare" 0x00000000 41.828343000 READDIRPLUS3 "10.0.0.21:/gpfs/nfsshare" 0x00000000 41.828880000 LOOKUP3 "10.0.0.21:/gpfs/nfsshare/small-file" 0x00000000 45.548004000 GETATTR3 "10.0.0.21:/gpfs/nfsshare" 0x00000000 49.805150000 GETATTR3 "10.0.0.21:/gpfs/nfsshare" 0x00000000 49.806402000 GETATTR3 "10.0.0.21:/gpfs/nfsshare/small-file" 0x00000000 52.777193000 GETATTR3 "10.0.0.21:/gpfs/nfsshare/small-file" 0x00000000 52.778562000 ACCESS3 "10.0.0.21:/gpfs/nfsshare/small-file" 0 0 0x00000000 52.779051000 READ3 "10.0.0.21:/gpfs/nfsshare/small-file" 0 10240 0x00000000 </pre> <H2>Processing step 2</h2> <p> Some lines are marked with XXX and this means that the generator does not yet know how to implement this call into a loadfile. When this happens there are a few options, we can either refine the generator and teach it about this new command (patches welcome) or we can try to manually adjust it in the loadfile by substituting it with a similar operation. In this example these are just NULL procedures which we dont care about so we just delete them. </p> <p> Now we need to process the file and re-target the directory where we want to replay this loadfile. In our example we used the server 10.0.0.21 and the nfs export /gpfs/nfsshare. To do this conversion we now replace the server/share string "10.0.0.21:/gpfs/nfsshare" with the string "/clients/client1". </p> <p> "/clients/client1" is in DBENCH a "magic" path we use. This special path is inside DBENCH substituted into "/clients/client$CLIENTID" which allows us to run multiple clients in parallell, with each client process using its own dedicated directory to do I/O to. That is a pretty neat feature in DBENCH. </p> <p> We should then end up with something that would look something like this: </p> <pre> 0.013381000 FSINFO3 0x00000000 0.013903000 GETATTR3 "/clients/client1" 0x00000000 0.014291000 FSINFO3 0x00000000 0.014720000 GETATTR3 "/clients/client1" 0x00000000 1.027163000 ACCESS3 "/clients/client1" 0 0 0x00000000 5.726435000 ACCESS3 "/clients/client1" 0 0 0x00000000 6.799179000 GETATTR3 "/clients/client1" 0x00000000 6.799669000 READDIRPLUS3 "/clients/client1" 0x00000000 8.347222000 GETATTR3 "/clients/client1" 0x00000000 35.087310000 LOOKUP3 "/clients/client1/small-file" 0x00000002 35.087938000 CREATE3 "/clients/client1/small-file" 0 0x00000000 35.102625000 WRITE3 "/clients/client1/small-file" 0 10240 2 0x00000000 35.104245000 GETATTR3 "/clients/client1/small-file" 0x00000000 41.827776000 GETATTR3 "/clients/client1" 0x00000000 41.828343000 READDIRPLUS3 "/clients/client1" 0x00000000 41.828880000 LOOKUP3 "/clients/client1/small-file" 0x00000000 45.548004000 GETATTR3 "/clients/client1" 0x00000000 49.805150000 GETATTR3 "/clients/client1" 0x00000000 49.806402000 GETATTR3 "/clients/client1/small-file" 0x00000000 52.777193000 GETATTR3 "/clients/client1/small-file" 0x00000000 52.778562000 ACCESS3 "/clients/client1/small-file" 0 0 0x00000000 52.779051000 READ3 "/clients/client1/small-file" 0 10240 0x00000000 </pre> <H2>Processing step 3</h2> <p> Finally we need a little header that will cleanup and delete the client directory everytime the loadfile wraps. This is done by adding a header such as this to the file : </p> <pre> # DELTREE if we want to delete the client directory everytime we restart # the script. Remove these two lines if the script is only "read-only" # reading from pre-existing files in the /clients/clientX/ tree 0.000 Deltree "/clients/client1" 0x00000000 # # Make sure these directories exist. We specify * as the status code # since these directories might already exist and in which case # we dont care that the command returned an error. 0.000 MKDIR3 "/clients" * 0.000 MKDIR3 "/clients/client1" * </pre> <p> I also change all timestamps in this example to 0.000 just to make it run a bit faster. And we should end up with a loadfile looking like this </p> <pre> # DELTREE if we want to delete the client directory everytime we restart # the script. Remove these two lines if the script is only "read-only" # reading from pre-existing files in the /clients/clientX/ tree 0.000 Deltree "/clients/client1" 0x00000000 # # Make sure these directories exist. We specify * as the status code # since these directories might already exist and in which case # we dont care that the command returned an error. 0.000 MKDIR3 "/clients" * 0.000 MKDIR3 "/clients/client1" * 0.000 FSINFO3 0x00000000 0.000 GETATTR3 "/clients/client1" 0x00000000 0.000 FSINFO3 0x00000000 0.000 GETATTR3 "/clients/client1" 0x00000000 0.000 ACCESS3 "/clients/client1" 0 0 0x00000000 0.000 ACCESS3 "/clients/client1" 0 0 0x00000000 0.000 GETATTR3 "/clients/client1" 0x00000000 0.000 READDIRPLUS3 "/clients/client1" 0x00000000 0.000 GETATTR3 "/clients/client1" 0x00000000 0.000 LOOKUP3 "/clients/client1/small-file" 0x00000002 0.000 CREATE3 "/clients/client1/small-file" 0 0x00000000 0.000 WRITE3 "/clients/client1/small-file" 0 10240 2 0x00000000 0.000 GETATTR3 "/clients/client1/small-file" 0x00000000 0.000 GETATTR3 "/clients/client1" 0x00000000 0.000 READDIRPLUS3 "/clients/client1" 0x00000000 0.000 LOOKUP3 "/clients/client1/small-file" 0x00000000 0.000 GETATTR3 "/clients/client1" 0x00000000 0.000 GETATTR3 "/clients/client1" 0x00000000 0.000 GETATTR3 "/clients/client1/small-file" 0x00000000 0.000 GETATTR3 "/clients/client1/small-file" 0x00000000 0.000 ACCESS3 "/clients/client1/small-file" 0 0 0x00000000 0.000 READ3 "/clients/client1/small-file" 0 10240 0x00000000 </pre> <H2>Running the loadfile</h2> <p> Now to run this loadfile for 10 seconds using 3 concurrent clients we can use : </p> <pre> ./dbench -B nfs --server=10.0.0.21 --export=/gpfs/nfsshare --protocol=tcp -c tmp.loadfile -t 20 3 2>/dev/null </pre> <p> Which should result in output similar to : </p> <pre> dbench version 4.00 - Copyright Andrew Tridgell 1999-2004 Running for 10 seconds with load 'tmp.loadfile' and minimum warmup 2 secs 0 of 3 processes prepared for launch 0 sec 3 of 3 processes prepared for launch 0 sec releasing clients 3 2041 3.88 MB/sec warmup 1 sec latency 4.695 ms 3 6120 3.93 MB/sec execute 1 sec latency 8.853 ms 3 8192 3.94 MB/sec execute 2 sec latency 14.410 ms 3 10085 3.84 MB/sec execute 3 sec latency 12.082 ms 3 12002 3.79 MB/sec execute 4 sec latency 4.949 ms 3 13097 3.46 MB/sec execute 5 sec latency 437.859 ms 3 15156 3.53 MB/sec execute 6 sec latency 6.671 ms 3 17219 3.59 MB/sec execute 7 sec latency 5.066 ms 3 19223 3.62 MB/sec execute 8 sec latency 6.746 ms 3 21103 3.62 MB/sec execute 9 sec latency 11.987 ms 3 cleanup 10 sec 0 cleanup 10 sec Operation Count AvgLat MaxLat -------------------------------------------------- Deltree 1667 4.652 701.966 GETATTR3 16646 0.460 7.096 LOOKUP3 3329 0.482 12.073 CREATE3 1665 0.671 4.390 WRITE3 1665 1.274 14.404 READ3 1665 0.865 4.789 ACCESS3 4993 0.458 9.187 MKDIR3 3328 0.743 435.178 FSINFO3 3328 0.446 7.927 READDIRPLUS3 3329 0.534 3.474 Throughput 3.62071 MB/sec 3 clients 3 procs max_latency=437.859 ms </pre> <p> Dont worry about the low throughput. This loadfile does virtually no reads/writes at all. We can now also scale this up to 10 clients or 20 clients ... and compare how the server response times are affected. </p> <!--#include virtual="footer.html" -->
project_name/templates/content/externallylinkedmediafile/image.html
596acres/django-livinglots-template
<div class="image"> {% if content.external_url %} <a href="{{ content.external_url }}"> <img src="{{ content.mediafile.file.url }}" alt="{{ content.mediafile.translation.caption }}" /> </a> {% else %} <img src="{{ content.mediafile.file.url }}" alt="{{ content.mediafile.translation.caption }}" /> {% endif %} <span class="caption">{{ content.mediafile.translation.caption }}</span> {% if content.mediafile.copyright %}<span class="copyright">{{ content.mediafile.copyright }}</span>{% endif %} </div>
OpenKeychain/src/main/res/raw-nl/help_about.html
cketti/open-keychain
<html> <head></head> <body> <p><a href="http://www.openkeychain.org">http://www.openkeychain.org</a></p> <p><a href="http://www.openkeychain.org">OpenKeychain</a> is een OpenPGP implementatie voor Android.</p> <p>Licentie: GPLv3+</p> <h2>Developers</h2> <ul> <li>Dominik Schürmann (Maintainer)</li> <li>Art O Cathain</li> <li>Ash Hughes</li> <li>Brian C. Barnes</li> <li>Bahtiar 'kalkin' Gadimov</li> <li>Daniel Albert</li> <li>Daniel Hammann</li> <li>Daniel Haß</li> <li>Greg Witczak</li> <li>'mar-v-in'</li> <li>Markus Doits</li> <li>Miroojin Bakshi</li> <li>Nikhil Peter Raj</li> <li>Paul Sarbinowski</li> <li>'Senecaso'</li> <li>Signe Rüsch</li> <li>Sreeram Boyapati</li> <li>Thialfihar (APG 1.x)</li> <li>Tim Bray</li> <li>Vincent Breitmoser</li> </ul> <h2>Bibliotheken</h2> <ul> <li> <a href="http://developer.android.com/tools/support-library/index.html">Android Support Biblitheek v4</a> (Apache Licentie v2)</li> <li> <a href="http://developer.android.com/tools/support-library/index.html">Android Support Bibliotheek v7 'appcompat'</a> (Apache Licentie v2)</li> <li> <a href="https://github.com/timbray/KeybaseLib">KeybaseLib</a> (Apache License v2)</li> <li> <a href="https://github.com/JohnPersano/SuperToasts">SuperToasts</a> (Apache License v2)</li> <li> <a href="https://github.com/splitwise/TokenAutoComplete">TokenAutoComplete</a> (Apache License v2)</li> <li> <a href="https://github.com/rtreffer/minidns">MiniDNS</a> (Apache License v2)</li> <li> <a href="https://github.com/emilsjolander/StickyListHeaders">StickyListHeaders</a> (Apache Licentie v2)</li> <li> <a href="http://code.google.com/p/zxing/">ZXing</a> (Apache Licentie v2)</li> <li> <a href="http://rtyley.github.com/spongycastle/">SpongyCastle</a> (MIT X11 Licentie)</li> <li> <a href="https://github.com/dschuermann/html-textview">HtmlTextView</a> (Apache Licentie v2)</li> <li> <a href="https://github.com/SafeSlingerProject/exchange-android">SafeSlinger Exchange library</a> (MIT License)</li> </ul> </body> </html>
game/data/scripts/quests/Q00905_RefinedDragonBlood/32864-02.html
karolusw/l2j
<html><body>Separated Soul:<br> I suppose you wish to be ripped off soul like me. If not, forget what I said.<br> (Must be above level 83 to do this quest) </body></html>
cdr_stats/templates/admin/voip_billing/voipplan/change_list.html
Star2Billing/cdr-stats
{% extends "admin/change_list.html" %} {% load admin_list i18n %} {% block object-tools %} {% if has_add_permission %} <ul class="object-tools"> <li><a href="simulator/" class="addlink">{% trans "simulator"|title %}</a></li> <li><a href="export/" class="addlink">{% blocktrans with cl.opts.verbose_name as name %}Export {{ name }}{% endblocktrans %}</a></li> <li> <a href="add/{% if is_popup %}?_popup=1{% endif %}" class="addlink"> {% blocktrans with cl.opts.verbose_name as name %}Add {{ name }}{% endblocktrans %} </a> </li> </ul> {% endif %} {% endblock %}
datawarehouse/static/datawarehouse/DataTables/extras/ColReorder-1.0.8/media/docs/a69b02bcf2.html
vecnet/vnetsource
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8"> <title>Namespace: Common and useful DOM elements for the class instance - documentation</title> <style type="text/css" media="screen"> @import "media/css/doc.css"; @import "media/css/shCore.css"; @import "media/css/shThemeDataTables.css"; </style> <script type="text/javascript" src="media/js/shCore.js"></script> <script type="text/javascript" src="media/js/shBrushJScript.js"></script> <script type="text/javascript" src="media/js/jquery.js"></script> <script type="text/javascript" src="media/js/doc.js"></script> </head> <body> <div class="fw_container"> <a name="top"></a> <div class="fw_header"> <h1 class="page-title">Namespace: Common and useful DOM elements for the class instance</h1> <div class="page-info"> </div> </div> <div class="fw_nav"> <h2>Navigation</h2> <ul> <li><a href="#top">Overview</a></li> <li><a href="#summary">Summary</a><div><table cellpadding="5" border="0" cellspacing="0" width="100%"><tbody><tr><td>Classes (0)</td><td>Namespaces (0)</td></tr><tr><td>Properties (0)</td><td>Static properties (0)</td></tr><tr><td>Methods (0)</td><td>Static methods (0)</td></tr><tr><td>Events (0)</td><td></td></tr></tbody></table></div></li><li><a href="#details">Details</a><div><table cellpadding="5" border="0" cellspacing="0" width="100%"><tbody><tr><td>Properties (0)</td><td>Static properties (0)</td></tr><tr><td>Methods (0)</td><td>Static methods (0)</td></tr><tr><td>Events (0)</td><td></td></tr></tbody></table></div></li></ul> <div style="margin-top: 10px;"> <input type="hidden" name="show_private" value="0"> <span id="private_label">Hiding</span> private elements (<a id="private_toggle" href="">toggle</a>) </span> </div> <div> <input type="hidden" name="show_extended" value="1"> <span id="extended_label">Showing</span> extended elements (<a id="extended_toggle" href="">toggle</a>) </span> </div> </div> <div class="fw_content"> <a name="overview"></a> <div class="doc_overview"> <div class="nav_blocker"></div> <dl class="details"> </dl> </div> </div> <div class="fw_footer"> Documentation generated by <a href="https://github.com/micmath/JSDoc">JSDoc 3</a> on 23th Sep 2012 - 12:54 with the <a href="http://datatables.net/">DataTables</a> template. </div> </body> </html>
collections/btree/map/struct.IntoIter.html
servo/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="refresh" content="0;URL=../../../collections/btree_map/struct.IntoIter.html"> </head> <body> <p>Redirecting to <a href="../../../collections/btree_map/struct.IntoIter.html">../../../collections/btree_map/struct.IntoIter.html</a>...</p> <script>location.replace("../../../collections/btree_map/struct.IntoIter.html" + location.search + location.hash);</script> </body> </html>
lib/angular-material/modules/js/bottomSheet/bottomSheet-default-theme.min.min.css
Adimpression/NewsMuteWWW
/*! * Angular Material Design * https://github.com/angular/material * @license MIT * v1.1.1 */md-bottom-sheet.md-THEME_NAME-theme{background-color:'{{background-50}}';border-top-color:'{{background-300}}'}md-bottom-sheet.md-THEME_NAME-theme.md-list md-list-item{color:'{{foreground-1}}'}md-bottom-sheet.md-THEME_NAME-theme .md-subheader{background-color:'{{background-50}}'}md-bottom-sheet.md-THEME_NAME-theme .md-subheader{color:'{{foreground-1}}'}
cms/templates/checklists.html
eduNEXT/edx-platform
<%page expression_filter="h"/> <%inherit file="base.html" /> <%def name="online_help_token()"><% return "files" %></%def> <%! import six from cms.djangoapps.contentstore import utils from cms.djangoapps.contentstore.config.waffle_utils import should_show_checklists_quality from django.urls import reverse from django.utils.translation import gettext as _ from openedx.core.djangolib.markup import HTML, Text from openedx.core.djangolib.js_utils import js_escaped_string, dump_js_escaped_json from common.djangoapps.util.course import has_certificates_enabled %> <%block name="title">${_("Checklists")}</%block> <%block name="bodyclass">is-signedin course view-checklists</%block> <%namespace name='static' file='static_content.html'/> <%block name="header_extras"> % if not settings.STUDIO_FRONTEND_CONTAINER_URL: <link rel="stylesheet" type="text/css" href="${static.url('common/css/vendor/common.min.css')}" /> <link rel="stylesheet" type="text/css" href="${static.url('common/css/vendor/courseHealthCheck.min.css')}" /> % endif </%block> <%block name="content"> <div class="wrapper-mast wrapper"> <header class="mast has-actions has-subtitle"> <h2 class="page-header"> <small class="subtitle">${_("Tools")}</small> <span class="sr">- </span>${_("Checklists")} </h2> </header> </div> <div class="wrapper-content wrapper"> <div class="content"> <%static:studiofrontend entry="courseHealthCheck"> <% course_key = six.text_type(context_course.id) certificates_url = '' if has_certificates_enabled(context_course): certificates_url = utils.reverse_course_url('certificates_list_handler', course_key) %> { "lang": "${language_code | n, js_escaped_string}", "course": { "id": "${context_course.id | n, js_escaped_string}", "name": "${context_course.display_name_with_default | n, js_escaped_string}", "is_course_self_paced": ${context_course.self_paced | n, dump_js_escaped_json}, "url_name": "${context_course.location.name | n, js_escaped_string}", "org": "${context_course.location.org | n, js_escaped_string}", "num": "${context_course.location.course | n, js_escaped_string}", "display_course_number": "${context_course.display_coursenumber | n, js_escaped_string}", "revision": "${context_course.location.revision | n, js_escaped_string}" }, "help_tokens": { "files": "${get_online_help_info(online_help_token())['doc_url'] | n, js_escaped_string}" }, "enable_quality": ${should_show_checklists_quality(context_course.id) | n, dump_js_escaped_json}, "links": { "certificates": ${certificates_url | n, dump_js_escaped_json}, "course_outline": ${utils.reverse_course_url('course_handler', course_key) | n, dump_js_escaped_json}, "course_updates": ${utils.reverse_course_url('course_info_handler', course_key) | n, dump_js_escaped_json}, "grading_policy": ${utils.reverse_course_url('grading_handler', course_key) | n, dump_js_escaped_json}, "settings": ${utils.reverse_course_url('settings_handler', course_key) | n, dump_js_escaped_json}, "proctored_exam_settings": ${mfe_proctored_exam_settings_url | n, dump_js_escaped_json} } } </%static:studiofrontend> </div> </div> </%block>
web/nopoll.css
schmidtw/nopoll
/* gris oscuro: #2e3436; gris medio: #555753; gris aluminio: #888a85; rojo claro: #ef2929; azul claro: #3465a4; azul clarito: #729fcf; */ body { font-family: free-sans, sans-serif, sans, TrebuchetMS, Arial, Helvetica; background: #fff url("images/bg.gif"); color: #2e3436; margin-bottom: 20px; padding-bottom: 20px; } .content { background: white; border: 1px solid #3786ea; border-top: 0px; /* first width, then position, then margin-left */ width: 900px; position: absolute; left: 50%; top: 0; z-index: 1; margin-left: -450px; color: #2e3436; background: #fff url("images/content-bg.png") repeat-x; } .header-content { padding: 20px; padding-bottom: 10px; } .content-note { background: white; border: 1px solid #888a85; /* first width, then position, then margin-left */ width: 320px; position: absolute; left: 50%; top: 3%; z-index: 1; margin-left: -160px; padding: 20px; padding-bottom: 0px; color: #2e3436; } a:link { color: #3465a4; text-decoration: none; font-weight: bold; background: white; } a:visited { color: #3465a4; text-decoration: none; font-weight: bold; background: white; } a:hover { color: #3465a4; text-decoration: none; font-weight: bold; background: white; } a:active { color: red; text-decoration: underline; font-weight: bold; background: white; } a img { border: 0px; } p, li { font-size: 14px; } h1 { font-weight: lighter; font-size: 30px; color: black; font-family: TrebuchetMS, Arial, free-sans, sans-serif, sans; background: white; border-left: 5px solid #ef2929; padding-left: 3px; } h2 { font-size: 100%; border-left: 5px solid #b0deff; padding-left: 3px; } pre { color: white; background: #2e3436; border: 1px solid #acacac; font-size: 11px; } .main-content-left { width: 65%; float: left; padding: 15px; padding-top: 0px; border-right: 1px dotted #3465a4; } .main-content-left-80 { width: 75%; float: left; padding: 15px; padding-top: 0px; border-right: 1px dotted #3465a4; } .main-content-right { padding: 0px; padding-right: 7px; margin: 0px; width: 30%; float: right; text-align: justify; } ul.news { padding: 0px; margin: 0px; } ul.news li { list-style: none; font-size: 11px; padding-bottom: 6px; padding-top: 2px; } ul.images { padding: 2px; margin: 0px; } ul.images li { list-style: none; display: inline; } ul.images img { border: 0px; } .news p { font-size: 11px; } .logo img { border: 0px; } .logo { position: absolute; right: 10px; top: 15px; z-index: 1; padding-right: 20px; } .alt-logo img { border: 0px; } .alt-logo { position: absolute; right: 20px; top: 20px; z-index: 1; } .footer-notice { color: #888a85; border-top: 1px dotted #3465a4; font-size: 9px; text-align: center; background: white; margin: 0px; padding: 0px; width: 100%; float: left; /* padding-top: 20px; */ padding-bottom: 10px; } .valid { width: 15%; float: left; } .valid img { border: 0px; } .footer-content { text-align: center; } .center { text-align: center; } ul.languages { list-style: none; padding: 0px; margin: 0px; } ul.languages li { display: inline; } pre.xml-doc { padding: 10px; border: 1px dashed #b0b0b0; background: #4a554a; color: white; } div.xml-doc pre.fragment { margin: 0px; padding: 10px; /* background: #4a554a; */ background: #555753; color: white; } div.xml-doc pre.fragment .stringliteral { color: #e9b96e; } div.xml-doc pre.fragment .keyword { color: white; } div.xml-doc pre.fragment .keywordflow { color: white; } span.comment { color: #ef2929; } span.attrvalue { color: #fcaf3e; } span.node { color: #ad7fa8; } span.header { color: #729fcf; } .donation { text-align: center; } ol li.explain { padding-bottom: 7px; } .top-menu { background: #fff url("images/menu-rule.png") repeat-x; height: 40px; width: 100%; color: white; } .menu { font-family: TrebuchetMS, Arial, free-sans, sans-serif, sans; } ul.menu { list-style: none; padding: 0px; margin: 0px; padding-top: 10px; text-align: center; } ul.menu li { display: inline; padding-right: 25px; } .menu a { font-weight: bold; font-size: 15px; color: white; background: none; } .menu a:hover { font-weight: bold; font-size: 15px; color: white; background: none; text-decoration: underline; } .right-ads { padding-top: 30px; text-align: center; } .sponsored-content { background: #3465a4; color: white; text-align: left; border-bottom: 1px dotted #3465a4; margin-bottom: 10px; border-left: 1px dotted #729fcf; border-right: 1px dotted #729fcf; } .sponsored-content .dotted { border-right: 1px dotted #729fcf; } .sponsored-content a { background: #3465a4; color: white; } .sponsored-content table { padding: 10px; } .sponsored-content h1 { padding-top: 0px; margin-top: 0px; background: #3465a4; color: white; } .sponsored-content td { vertical-align: top; } .sponsored-content ul { padding: 6px; margin: 6px; } .sponsored-content li { list-style: none; } table.licensing-table { text-align: center; } .licensing-table .header { color: white; font-weight: bold; background: #729fcf } .licensing-table td { padding: 6px; } .licensing-table .table-option { width: 400px; text-align: right; } .licensing-table .row-odd { background: #e7f0f3 }
cpp_component/3rdparty/boost/libs/icl/doc/html/boost/icl/type_to_string_ic_idm34662.html
qianqians/abelkhan
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Struct template type_to_string&lt;icl::continuous_interval&lt; DomainT, Compare &gt;&gt;</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.79.1"> <link rel="home" href="../../index.html" title="Chapter 1. Boost.Icl"> <link rel="up" href="../../header/boost/icl/continuous_interval_hpp.html" title="Header &lt;boost/icl/continuous_interval.hpp&gt;"> <link rel="prev" href="is_continuous_int_idm34643.html" title="Struct template is_continuous_interval&lt;continuous_interval&lt; DomainT, Compare &gt;&gt;"> <link rel="next" href="value_size_icl_co_idm34673.html" title="Struct template value_size&lt;icl::continuous_interval&lt; DomainT &gt;&gt;"> </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="../../../../../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_continuous_int_idm34643.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../header/boost/icl/continuous_interval_hpp.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="value_size_icl_co_idm34673.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.icl.type_to_string_ic_idm34662"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Struct template type_to_string&lt;icl::continuous_interval&lt; DomainT, Compare &gt;&gt;</span></h2> <p>boost::icl::type_to_string&lt;icl::continuous_interval&lt; DomainT, Compare &gt;&gt;</p> </div> <h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2> <div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: &lt;<a class="link" href="../../header/boost/icl/continuous_interval_hpp.html" title="Header &lt;boost/icl/continuous_interval.hpp&gt;">boost/icl/continuous_interval.hpp</a>&gt; </span><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> DomainT<span class="special">,</span> <span class="identifier">ICL_COMPARE</span> Compare<span class="special">&gt;</span> <span class="keyword">struct</span> <a class="link" href="type_to_string_ic_idm34662.html" title="Struct template type_to_string&lt;icl::continuous_interval&lt; DomainT, Compare &gt;&gt;">type_to_string</a><span class="special">&lt;</span><span class="identifier">icl</span><span class="special">::</span><span class="identifier">continuous_interval</span><span class="special">&lt;</span> <span class="identifier">DomainT</span><span class="special">,</span> <span class="identifier">Compare</span> <span class="special">&gt;</span><span class="special">&gt;</span> <span class="special">{</span> <span class="comment">// <a class="link" href="type_to_string_ic_idm34662.html#idm34670-bb">public static functions</a></span> <span class="keyword">static</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <a class="link" href="type_to_string_ic_idm34662.html#idm34671-bb"><span class="identifier">apply</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span> <span class="special">}</span><span class="special">;</span></pre></div> <div class="refsect1"> <a name="idm36341"></a><h2>Description</h2> <div class="refsect2"> <a name="idm36343"></a><h3> <a name="idm34670-bb"></a><code class="computeroutput">type_to_string</code> public static functions</h3> <div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"><pre class="literallayout"><span class="keyword">static</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <a name="idm34671-bb"></a><span class="identifier">apply</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre></li></ol></div> </div> </div> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright © 2007-2010 Joachim Faulhaber<br>Copyright © 1999-2006 Cortex Software GmbH<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="is_continuous_int_idm34643.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../header/boost/icl/continuous_interval_hpp.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="value_size_icl_co_idm34673.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
templates/rfp/_base_rfp.html
canonical-websites/www.ubuntu.com
{% extends "templates/base.html" %} {% block meta_copydoc %}https://drive.google.com/drive/folders/1jDMjzaftyp7CJbYMSNqKMWzQISffvKGu{% endblock meta_copydoc %} {% block outer_content %} {% block content %}{% endblock %} <!-- Set default Marketo information for contact form below--> <div class="u-hide" id="contact-form-container" data-form-location="/shared/forms/interactive/general" data-form-id="1257" data-lp-id="2154" data-return-url="https://www.ubuntu.com/contact-us/form/thank-you" data-lp-url="https://pages.ubuntu.com/things-contact-us.html"> </div> {% endblock %}
文档/jvmref/ref-goto_w.html
woate/asmsupport
<html xmlns="http://www.w3.org/1999/xhtml"><head><style type="text/css"> dt { font-style: italic; margin-top: 15px; margin-bottom: 3px; margin-left: 0px; border-bottom: 1px dotted black; } dd { margin-left: 10px; } table { border-collapse:collapse; border: 1px solid black; margin-top: 7px; } th { border: 1px solid black; padding: 3 7 3 7; } td { border: 1px solid black; padding: 3 7 3 7; } </style></head><body><p><a name="goto_w"></a><b>goto_w</b> : branch to address using wide offset : <a href="opcodes.html">index</a> : </p><dl><dt>Description</dt><dd>Causes execution to branch to the instruction at the address (<i xmlns="">pc</i> + <i xmlns="">branchoffset</i>), where <i xmlns="">pc</i> is the address of the goto_w opcode in the bytecode and <i xmlns="">branchoffset</i> is a 32-bit signed integer parameter that follows the goto_w opcode in the bytecode. If you are using Jasmin, <i xmlns="">branchoffset</i> is determined for you from the address associated with &lt;label&gt;.</dd><dt>Notes</dt><dd>1. goto_w is identical to goto, except that a 32-bit signed integer <i xmlns="">branchoffset</i> is used instead of a 16-bit <i xmlns="">branchoffset</i>. <br></br>2. In Jasmin, goto and goto_w are synonymous, since the Jasmin assembler automatically decides which version of the instruction to use, based on the address of the&lt;label&gt;.<br></br>3. Addresses are measured in bytes from the start of the bytecode - i.e. address 0 is the first byte in the bytecode of the currently executing method. The maximum address in a method is 65535.</dd><dt>See also</dt><dd><a href="ref-goto.html">goto</a> <a href="ref-.html"></a> <a href="ref-jsr.html">jsr</a> <a href="ref-.html"></a> <a href="ref-jsr_w.html">jsr_w</a> </dd><dt>Stack</dt><dd><table xmlns=""> <tr> <td> <b>Before </b> </td> <td><b>After</b></td></tr> <tr> <td>...</td> <td>...</td></tr> </table></dd><dt>Bytecode</dt><dd><table xmlns=""> <tr> <td> <b> Type </b> </td> <td><b>Description</b></td></tr> <tr> <td> u1 </td> <td>goto_w opcode = 0xC8 (200) </td></tr> <tr> <td> s4 </td> <td>branchoffset</td></tr> </table></dd></dl></body></html>
website/content/docs/index.html
jakubbrzeski/camlistore
<h1>Documentation</h1> <p>The documentation is mostly in the project's <a href="/gw/doc">doc/ directory</a> or in the source itself. It's now being promoted to HTML, though:</p> <h2>Intro</h2> <ul> <li><a href="/docs/overview">Overview</a>: What is Camlistore? Motivation, background.</li> </ul> <h2>For Users</h2> <ul> <li><a href="/docs/server-config">Server Config</a>: how to configure your Camlistore server</li> <li><a href="/cmd/">Commands</a>: Camlistore command-line tools</li> <li><a href="https://code.google.com/p/camlistore/wiki/GettingStarted">Getting started</a></li> </ul> <h2>For Developers</h2> <ul> <li><a href="/docs/arch">Architecture</a>: the pieces, layers, and how they interact</li> <li><a href="/docs/principles">Principles</a>: our base principles, goals, assumptions</li> <li><a href="/docs/terms">Terminology</a>: let's agree on terms to stay sane</li> <li><a href="/docs/uses">Use Cases</a>: what one might do with all this (or at least our aspirations)</li> <li><a href="/docs/schema">Schema</a>: how we model data in Camlistore</li> <li><a href="/docs/json-signing">JSON Signing</a></li> <li><a href="/docs/sharing">Sharing</a></li> <li><a href="/pkg/">Packages</a>: internal API documentation</li> <li><a href="/docs/prior-art">Prior Art</a>: other projects doing similar stuff</li> <li><a href="/download">Release History</a>: previous releases and notable features of each</li> <li><a href="/docs/contributing">Contributing</a>: how to help</li> </ul>
static/events/2015-toronto/proposals/Self-organizing clusters/index.html
masteinhauser/devopsdays-web
<!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=utf-8" > <title>Toronto 2015 - Proposal</title> <meta name="author" content="Hany Fahim" > <link rel="alternate" type="application/rss+xml" title="devopsdays RSS Feed" href="http://www.devopsdays.org/feed/" > <script type="text/javascript" src="https://www.google.com/jsapi"></script> <script type="text/javascript"> google.load('jquery', '1.3.2'); </script> <!---This is a combined jAmpersand, jqwindont , jPullquote --> <script type="text/javascript" src="/js/devops.js"></script> <!--- Blueprint CSS Framework Screen + Fancytype-Screen + jedi.css --> <link rel="stylesheet" href="/css/devops.min.css" type="text/css" media="screen, projection"> <link rel="stylesheet" href="/css/blueprint/print.css" type="text/css" media="print"> <!--[if IE]> <link rel="stylesheet" href="/css/blueprint/ie.css" type="text/css" media="screen, projection"> <![endif]--> </head> <body onload="initialize()"> <div class="container "> <div class="span-24 last" id="header"> <div class="span-16 first"> <img src="/images/devopsdays-banner.png" title="devopsdays banner" width="801" height="115" alt="devopdays banner" ><br> </div> <div class="span-8 last"> </div> </div> <div class="span-24 last"> <div class="span-15 first"> <div id="headermenu"> <table > <tr> <td> <a href="/"><img alt="home" title="home" src="/images/home.png"></a> <a href="/">Home</a> </td> <td> <a href="/contact/"><img alt="contact" title="contact" src="/images/contact.png"></a> <a href="/contact/">Contact</a> </td> <td> <a href="/events/"><img alt="events" title="events" src="/images/events.png"></a> <a href="/events/">Events</a> </td> <td> <a href="/presentations/"><img alt="presentations" title="presentations" src="/images/presentations.png"></a> <a href="/presentations/">Presentations</a> </td> <td> <a href="/blog/"><img alt="blog" title="blog" src="/images/blog.png"></a> <a href="/blog/">Blog</a> </td> </tr> </table> </div> </div> <div class="span-8 last"> </div> <div class="span-24 last" id="title"> <div class="span-15 first"> <h1>Toronto 2015 - Proposal </h1> </div> <div class="span-8 last"> </div> <h1>Platinum sponsors</h1> </div> <div class="span-15 "> <div class="span-15 last "> <div class="submenu"> <h3> <a href="/events/2015-toronto/">Welcome</a>&nbsp; <a href="/events/2015-toronto/location">Location</a>&nbsp; <a href="/events/2015-toronto/program">Program</a>&nbsp; <a href="/events/2015-toronto/registration">Register</a>&nbsp; <a href="/events/2015-toronto/propose">Propose</a>&nbsp; <a href="/events/2015-toronto/sponsor">Sponsor</a>&nbsp; <a href="/events/2015-toronto/contact">Contact</a>&nbsp; <a href="/events/2015-toronto/conduct">Conduct</a>&nbsp; </h3> </div> Back to <a href='..'>proposals overview</a> - <a href='../../program'>program</a> <hr> <h3>Self-organizing clusters</h3> <p><strong>Abstract:</strong></p> <p>"Servers that management themselves." Just a pipe dream. Or is it?</p> <p>This talk is a story about exploring concepts of self-organizing clusters using Docker, systemd, and CoreOS. It will go over an approach for building an auto-updating, auto-patching, self-balanced, and redundant cluster. It will even address the problem of the “data persistence” that Docker doesn't seem to solve, but is necessary for data stores.</p> <p><strong>Speaker:</strong></p> <p>Hany Fahim</p> </div> <div class="span-15 first last"> <script type="text/javascript"> // var disqus_developer = 1; </script> <div id="disqus_thread"></div> <script type="text/javascript"> var disqus_shortname = 'devopsdays'; (function() { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })(); </script> <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> <a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a> <hr> </div> </div> <div class="span-8 last"> <div class="span-8 last"> <a href='http://www.ibm.com/devops'><img border=0 alt='IBM' title='IBM' width=100px height=100px src='/events/2015-toronto/logos/ibm.png'></a> <a href='https://puppetlabs.com'><img border=0 alt='PuppetLabs' title='PuppetLabs' width=100px height=100px src='/events/2015-toronto/logos/puppetlabs.png'></a> <a href='http://discover.shomi.com/'><img border=0 alt='Shomi' title='Shomi' width=100px height=100px src='/events/2015-toronto/logos/shomi.png'></a> <a href='https://www.visualstudio.com/'><img border=0 alt='Visual Studio' title='Visual Studio' width=100px height=100px src='/events/2015-toronto/logos/microsoft.png'></a> <a href='https://www.chef.io'><img border=0 alt='Chef' title='Chef' width=100px height=100px src='/events/2015-toronto/logos/chef.png'></a> <a href='http://www.newrelic.com/'><img border=0 alt='New Relic' title='New Relic' width=100px height=100px src='/events/2015-toronto/logos/newrelic.png'></a> <br /> <br /> <h1>Venue/Party sponsor</h1> <a href='http://www8.hp.com/us/en/software-solutions/devops-solutions/index.html'><img border=0 alt='HP' title='HP' width=100px height=100px src='/events/2015-toronto/logos/hp.png'></a> <br /> <br /> <h1>Gold sponsors</h1> <a href='http://www.shopify.ca/'><img border=0 alt='Shopify' title='Shopify' width=100px height=100px src='/events/2015-toronto/logos/shopify.png'></a> <a href='http://vmfarms.com/'><img border=0 alt='VM Farms' title='VM Farms' width=100px height=100px src='/events/2015-toronto/logos/vmfarms.png'></a> <a href='http://www.victorops.com/'><img border=0 alt='VictorOps' title='VictorOps' width=100px height=100px src='/events/2015-toronto/logos/victorops.png'></a> <a href='http://pagerduty.com/'><img border=0 alt='PagerDuty' title='PagerDuty' width=100px height=100px src='/events/2015-toronto/logos/pagerduty.png'></a> <a href='http://www.blendedperspectives.com'><img border=0 alt='Blended Perspectives' title='Blended Perspectives' width=100px height=100px src='/events/2015-toronto/logos/blendedperspectives.png'></a> <a href='http://www.ansible.com/home'><img border=0 alt='Ansible' title='Ansible' width=100px height=100px src='/events/2015-toronto/logos/ansible.png'></a> <a href='http://sonatype.com/'><img border=0 alt='Sonatype' title='Sonatype' width=100px height=100px src='/events/2015-toronto/logos/sonatype.png'></a> <br /> <br /> <h1>Silver sponsors</h1> <a href='http://www.scalar.ca'><img border=0 alt='Scalar' title='Scalar' width=100px height=100px src='/events/2015-toronto/logos/scalar.png'></a> <a href='http://www.sumologic.com/'><img border=0 alt='Sumo Logic' title='Sumo Logic' width=100px height=100px src='/events/2015-toronto/logos/sumologic.png'></a> <a href='http://mercatus.com'><img border=0 alt='Mercatus' title='Mercatus' width=100px height=100px src='/events/2015-toronto/logos/mercatus.png'></a> <br /> <br /> <h1>Media sponsors</h1> <a href='http://www.oreilly.com/'><img border=0 alt='O-Reilly Media' title='O-Reilly Media' width=100px height=100px src='/events/2015-toronto/logos/oreilly.png'></a> <a href='http://uberflip.com'><img border=0 alt='Uberflip' title='Uberflip' width=100px height=100px src='/events/2015-toronto/logos/uberflip.png'></a> <br /> <br /> <h1>Community Partners</h1> <a href='http://fitc.ca/'><img border=0 alt='FITC' title='FITC' width=100px height=100px src='/events/2015-toronto/logos/fitc.png'></a> <br /> <br /> </div> <div class="span-8 last"> </div> </div> </div> </div> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-9713393-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>
samples/plugins/example-ui-feed-stepper-plugin/src/main/resources/example-plugin-1.0/feed-details-templates/data-transform-feed-details.html
claudiu-stanciu/kylo
<div lazy-load-retain-order="['js/plugin/template-table-option/data-transformation/data-transform-properties.js']"> <kylo-data-transform-properties></kylo-data-transform-properties> </div> <thinkbig-feed-data-policies></thinkbig-feed-data-policies> <div lazy-load-retain-order="['/example-plugin-1.0/module.js','/example-plugin-1.0/example-feed-details-core-step/example-feed-details-core-step.js']"> <example-feed-details-core-step></example-feed-details-core-step> </div>
docs/Structs.html
NachoSoto/socket.io-client-swift
<!DOCTYPE html> <html lang="en"> <head> <title>Structures 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/swift/Section/Structures" class="dashAnchor"></a> <a title="Structures Reference"></a> <header class="header"> <p class="header-col header-col--primary"> <a class="header-link" href="index.html"> SocketIO 16.0.0 Docs </a> (100% documented) </p> <p class="header-col--secondary"> <form role="search" action="search.json"> <input type="text" placeholder="Search documentation" data-typeahead> </form> </p> </header> <p class="breadcrumbs"> <a class="breadcrumb" href="index.html">SocketIO Reference</a> <img class="carat" src="img/carat.png" /> Structures 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="Guides.html">Guides</a> <ul class="nav-group-tasks"> <li class="nav-group-task"> <a class="nav-group-task-link" href="12to13.html">12to13</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="15to16.html">15to16</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="faq.html">FAQ</a> </li> </ul> </li> <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/OnAckCallback.html">OnAckCallback</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Classes/SocketAckEmitter.html">SocketAckEmitter</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Classes/SocketAnyEvent.html">SocketAnyEvent</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Classes/SocketEngine.html">SocketEngine</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Classes/SocketIOClient.html">SocketIOClient</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Classes/SocketManager.html">SocketManager</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Classes/SocketRawAckView.html">SocketRawAckView</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Classes/SocketRawView.html">SocketRawView</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/SocketAckStatus.html">SocketAckStatus</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Enums/SocketClientEvent.html">SocketClientEvent</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Enums/SocketEnginePacketType.html">SocketEnginePacketType</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Enums/SocketIOClientOption.html">SocketIOClientOption</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Enums/SocketIOStatus.html">SocketIOStatus</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Enums/SocketIOVersion.html">SocketIOVersion</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Enums/SocketParsableError.html">SocketParsableError</a> </li> </ul> </li> <li class="nav-group-name"> <a class="nav-group-name-link" href="Extensions.html">Extensions</a> <ul class="nav-group-tasks"> <li class="nav-group-task"> <a class="nav-group-task-link" href="Extensions.html#/s:Sa">Array</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Extensions.html#/s:Sb">Bool</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Extensions.html#/s:10Foundation4DataV">Data</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Extensions.html#/s:SD">Dictionary</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Extensions.html#/s:Sd">Double</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Extensions.html#/s:Si">Int</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Extensions.html#/c:objc(cs)NSArray">NSArray</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Extensions.html#/c:objc(cs)NSData">NSData</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Extensions.html#/c:objc(cs)NSDictionary">NSDictionary</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Extensions.html#/c:objc(cs)NSNull">NSNull</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Extensions.html#/c:objc(cs)NSString">NSString</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Extensions.html#/s:SS">String</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/ConfigSettable.html">ConfigSettable</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Protocols/SocketData.html">SocketData</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Protocols/SocketDataBufferable.html">SocketDataBufferable</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Protocols/SocketEngineClient.html">SocketEngineClient</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Protocols/SocketEnginePollable.html">SocketEnginePollable</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Protocols/SocketEngineSpec.html">SocketEngineSpec</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Protocols/SocketEngineWebsocket.html">SocketEngineWebsocket</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Protocols/SocketIOClientSpec.html">SocketIOClientSpec</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Protocols/SocketLogger.html">SocketLogger</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Protocols/SocketManagerSpec.html">SocketManagerSpec</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Protocols/SocketParsable.html">SocketParsable</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/SocketEventHandler.html">SocketEventHandler</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Structs/SocketIOClientConfiguration.html">SocketIOClientConfiguration</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Structs/SocketPacket.html">SocketPacket</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Structs/SocketPacket/PacketType.html">– PacketType</a> </li> </ul> </li> <li class="nav-group-name"> <a class="nav-group-name-link" href="Typealiases.html">Type Aliases</a> <ul class="nav-group-tasks"> <li class="nav-group-task"> <a class="nav-group-task-link" href="Typealiases.html#/s:8SocketIO11AckCallbacka">AckCallback</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Typealiases.html#/s:8SocketIO14NormalCallbacka">NormalCallback</a> </li> <li class="nav-group-task"> <a class="nav-group-task-link" href="Typealiases.html#/s:8SocketIO4Posta">Post</a> </li> </ul> </li> </ul> </nav> <article class="main-content"> <section class="section"> <div class="section-content top-matter"> <h1>Structures</h1> <p>The following structures are available globally.</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="/s:8SocketIO0A12EventHandlerV"></a> <a name="//apple_ref/swift/Struct/SocketEventHandler" class="dashAnchor"></a> <a class="token" href="#/s:8SocketIO0A12EventHandlerV">SocketEventHandler</a> </code> </div> <div class="height-container"> <div class="pointer-container"></div> <section class="section"> <div class="pointer"></div> <div class="abstract"> <p>A wrapper around a handler.</p> <a href="Structs/SocketEventHandler.html" class="slightly-smaller">See more</a> </div> <div class="declaration"> <h4>Declaration</h4> <div class="language"> <p class="aside-title">Swift</p> <pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">struct</span> <span class="kt">SocketEventHandler</span></code></pre> </div> </div> </section> </div> </li> <li class="item"> <div> <code> <a name="/s:8SocketIO0A21IOClientConfigurationV"></a> <a name="//apple_ref/swift/Struct/SocketIOClientConfiguration" class="dashAnchor"></a> <a class="token" href="#/s:8SocketIO0A21IOClientConfigurationV">SocketIOClientConfiguration</a> </code> </div> <div class="height-container"> <div class="pointer-container"></div> <section class="section"> <div class="pointer"></div> <div class="abstract"> <p>An array-like type that holds <code><a href="Enums/SocketIOClientOption.html">SocketIOClientOption</a></code>s</p> <a href="Structs/SocketIOClientConfiguration.html" class="slightly-smaller">See more</a> </div> <div class="declaration"> <h4>Declaration</h4> <div class="language"> <p class="aside-title">Swift</p> <pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">struct</span> <span class="kt">SocketIOClientConfiguration</span> <span class="p">:</span> <span class="kt">ExpressibleByArrayLiteral</span><span class="p">,</span> <span class="kt">Collection</span><span class="p">,</span> <span class="kt">MutableCollection</span></code></pre> </div> </div> </section> </div> </li> <li class="item"> <div> <code> <a name="/s:8SocketIO0A6PacketV"></a> <a name="//apple_ref/swift/Struct/SocketPacket" class="dashAnchor"></a> <a class="token" href="#/s:8SocketIO0A6PacketV">SocketPacket</a> </code> </div> <div class="height-container"> <div class="pointer-container"></div> <section class="section"> <div class="pointer"></div> <div class="abstract"> <p>A struct that represents a socket.io packet.</p> <a href="Structs/SocketPacket.html" class="slightly-smaller">See more</a> </div> <div class="declaration"> <h4>Declaration</h4> <div class="language"> <p class="aside-title">Swift</p> <pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">struct</span> <span class="kt">SocketPacket</span> <span class="p">:</span> <span class="kt">CustomStringConvertible</span></code></pre> </div> </div> </section> </div> </li> </ul> </div> </div> </section> </article> </div> <section class="footer"> <p>&copy; 2021 <a class="link" href="https://github.com/socketio/socket.io-client-swift" target="_blank" rel="external">Erik</a>. All rights reserved. (Last updated: 2021-02-01)</p> <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.13.6</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p> </section> </body> </div> </html>
docs/apidocs/org/apache/flume/sink/hdfs/class-use/HDFSDataStream.html
wangchuande/apache-flume-1.7.0
<!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_80) on Wed Oct 12 20:49:57 CEST 2016 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class org.apache.flume.sink.hdfs.HDFSDataStream (Apache Flume 1.7.0 API)</title> <meta name="date" content="2016-10-12"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.flume.sink.hdfs.HDFSDataStream (Apache Flume 1.7.0 API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/flume/sink/hdfs/HDFSDataStream.html" title="class in org.apache.flume.sink.hdfs">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/flume/sink/hdfs/class-use/HDFSDataStream.html" target="_top">Frames</a></li> <li><a href="HDFSDataStream.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.apache.flume.sink.hdfs.HDFSDataStream" class="title">Uses of Class<br>org.apache.flume.sink.hdfs.HDFSDataStream</h2> </div> <div class="classUseContainer">No usage of org.apache.flume.sink.hdfs.HDFSDataStream</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/flume/sink/hdfs/HDFSDataStream.html" title="class in org.apache.flume.sink.hdfs">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/flume/sink/hdfs/class-use/HDFSDataStream.html" target="_top">Frames</a></li> <li><a href="HDFSDataStream.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2009-2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All Rights Reserved.</small></p> </body> </html>
releases/0.7.1/api/java/io/gearpump/streaming/task/AckRequest$.html
stanleyxu2005/gearpump.github.io
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.6.0_36) on Tue Dec 29 00:09:29 CST 2015 --> <title>AckRequest$</title> <meta name="date" content="2015-12-29"> <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="AckRequest$"; } //--> </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="../../../../io/gearpump/streaming/task/AckRequest.html" title="class in io.gearpump.streaming.task"><span class="strong">PREV CLASS</span></a></li> <li><a href="../../../../io/gearpump/streaming/task/CheckpointClock.html" title="class in io.gearpump.streaming.task"><span class="strong">NEXT CLASS</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?io/gearpump/streaming/task/AckRequest$.html" target="_top">FRAMES</a></li> <li><a href="AckRequest$.html" target="_top">NO FRAMES</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>SUMMARY:&nbsp;</li> <li>NESTED&nbsp;|&nbsp;</li> <li><a href="#field_summary">FIELD</a>&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">CONSTR</a>&nbsp;|&nbsp;</li> <li><a href="#methods_inherited_from_class_scala.runtime.AbstractFunction3">METHOD</a></li> </ul> <ul class="subNavList"> <li>DETAIL:&nbsp;</li> <li><a href="#field_detail">FIELD</a>&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">CONSTR</a>&nbsp;|&nbsp;</li> <li>METHOD</li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <p class="subTitle">io.gearpump.streaming.task</p> <h2 title="Class AckRequest$" class="title">Class AckRequest$</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>scala.runtime.AbstractFunction3&lt;<a href="../../../../io/gearpump/streaming/task/TaskId.html" title="class in io.gearpump.streaming.task">TaskId</a>,java.lang.Object,java.lang.Object,<a href="../../../../io/gearpump/streaming/task/AckRequest.html" title="class in io.gearpump.streaming.task">AckRequest</a>&gt;</li> <li> <ul class="inheritance"> <li>io.gearpump.streaming.task.AckRequest$</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, scala.Function3&lt;<a href="../../../../io/gearpump/streaming/task/TaskId.html" title="class in io.gearpump.streaming.task">TaskId</a>,java.lang.Object,java.lang.Object,<a href="../../../../io/gearpump/streaming/task/AckRequest.html" title="class in io.gearpump.streaming.task">AckRequest</a>&gt;</dd> </dl> <hr> <br> <pre>public class <strong>AckRequest$</strong> extends scala.runtime.AbstractFunction3&lt;<a href="../../../../io/gearpump/streaming/task/TaskId.html" title="class in io.gearpump.streaming.task">TaskId</a>,java.lang.Object,java.lang.Object,<a href="../../../../io/gearpump/streaming/task/AckRequest.html" title="class in io.gearpump.streaming.task">AckRequest</a>&gt; implements scala.Serializable</pre> <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../serialized-form.html#io.gearpump.streaming.task.AckRequest$">Serialized Form</a></dd></dl> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- =========== FIELD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="field_summary"> <!-- --> </a> <h3>Field Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation"> <caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Field and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../io/gearpump/streaming/task/AckRequest$.html" title="class in io.gearpump.streaming.task">AckRequest$</a></code></td> <td class="colLast"><code><strong><a href="../../../../io/gearpump/streaming/task/AckRequest$.html#MODULE$">MODULE$</a></strong></code> <div class="block">Static reference to the singleton instance of this Scala object.</div> </td> </tr> </table> </li> </ul> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../io/gearpump/streaming/task/AckRequest$.html#AckRequest$()">AckRequest$</a></strong>()</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_scala.runtime.AbstractFunction3"> <!-- --> </a> <h3>Methods inherited from class&nbsp;scala.runtime.AbstractFunction3</h3> <code>curried, toString, tupled</code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_scala.Function3"> <!-- --> </a> <h3>Methods inherited from interface&nbsp;scala.Function3</h3> <code>apply</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ FIELD DETAIL =========== --> <ul class="blockList"> <li class="blockList"><a name="field_detail"> <!-- --> </a> <h3>Field Detail</h3> <a name="MODULE$"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>MODULE$</h4> <pre>public static final&nbsp;<a href="../../../../io/gearpump/streaming/task/AckRequest$.html" title="class in io.gearpump.streaming.task">AckRequest$</a> MODULE$</pre> <div class="block">Static reference to the singleton instance of this Scala object.</div> </li> </ul> </li> </ul> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="AckRequest$()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>AckRequest$</h4> <pre>public&nbsp;AckRequest$()</pre> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="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="../../../../io/gearpump/streaming/task/AckRequest.html" title="class in io.gearpump.streaming.task"><span class="strong">PREV CLASS</span></a></li> <li><a href="../../../../io/gearpump/streaming/task/CheckpointClock.html" title="class in io.gearpump.streaming.task"><span class="strong">NEXT CLASS</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?io/gearpump/streaming/task/AckRequest$.html" target="_top">FRAMES</a></li> <li><a href="AckRequest$.html" target="_top">NO FRAMES</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>SUMMARY:&nbsp;</li> <li>NESTED&nbsp;|&nbsp;</li> <li><a href="#field_summary">FIELD</a>&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">CONSTR</a>&nbsp;|&nbsp;</li> <li><a href="#methods_inherited_from_class_scala.runtime.AbstractFunction3">METHOD</a></li> </ul> <ul class="subNavList"> <li>DETAIL:&nbsp;</li> <li><a href="#field_detail">FIELD</a>&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">CONSTR</a>&nbsp;|&nbsp;</li> <li>METHOD</li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
static/events/2017-tel-aviv/speakers/lior-redlus/index.html
gomex/devopsdays-web
<!DOCTYPE html> <html itemscope lang="en-us"> <head><meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta charset="utf-8"> <meta name="HandheldFriendly" content="True"> <meta name="MobileOptimized" content="320"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"><meta name="generator" content="Hugo 0.57.2" /> <meta property="og:title" content="Lior Redlus" /> <meta name="twitter:title" content="Lior Redlus"/> <meta itemprop="name" content="Lior Redlus"><meta property="og:description" content="Co-founder and Chief Data Science Officer at Coralogix" /> <meta name="twitter:description" content="Co-founder and Chief Data Science Officer at Coralogix" /> <meta itemprop="description" content="Co-founder and Chief Data Science Officer at Coralogix"><meta name="twitter:site" content="@devopsdays"> <meta property="og:type" content="speaker" /> <meta property="og:url" content="/events/2017-tel-aviv/speakers/lior-redlus/" /><meta name="twitter:creator" content="@DevOpsDaysTLV" /><meta name="twitter:label1" value="Event" /> <meta name="twitter:data1" value="devopsdays Tel Aviv 2017" /><meta name="twitter:label2" value="Dates" /> <meta name="twitter:data2" value="November 13 - 14, 2017" /><meta property="og:image" content="https://www.devopsdays.org/img/sharing.jpg" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:image" content="https://www.devopsdays.org/img/sharing.jpg" /> <meta itemprop="image" content="https://www.devopsdays.org/img/sharing.jpg" /> <meta property="fb:app_id" content="1904065206497317" /><meta itemprop="wordCount" content="8"> <title>Lior Redlus - devopsdays Tel Aviv 2017 </title> <script> window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date; ga('create', 'UA-9713393-1', 'auto'); ga('send', 'pageview'); </script> <script async src='https://www.google-analytics.com/analytics.js'></script> <link href="/css/site.css" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700" rel="stylesheet"><link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png"> <link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png"> <link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png"> <link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png"> <link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png"> <link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png"> <link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png"> <link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png"> <link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png"> <link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png"> <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png"> <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> <link rel="manifest" href="/manifest.json"> <meta name="msapplication-TileColor" content="#ffffff"> <meta name="msapplication-TileImage" content="/ms-icon-144x144.png"> <meta name="theme-color" content="#ffffff"> <link href="/events/index.xml" rel="alternate" type="application/rss+xml" title="DevOpsDays" /> <link href="/events/index.xml" rel="feed" type="application/rss+xml" title="DevOpsDays" /> <script src=/js/devopsdays-min.js></script></head> <body lang=""> <nav class="navbar navbar-expand-md navbar-light"> <a class="navbar-brand" href="/"> <img src="/img/devopsdays-brain.png" height="30" class="d-inline-block align-top" alt="devopsdays Logo"> DevOpsDays </a> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarSupportedContent"> <ul class="navbar-nav mr-auto"><li class="nav-item global-navigation"><a class = "nav-link" href="/events">events</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/blog">blog</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/sponsor">sponsor</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/speaking">speaking</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/organizing">organizing</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/about">about</a></li></ul> </div> </nav> <nav class="navbar event-navigation navbar-expand-md navbar-light"> <a href="/events/2017-tel-aviv" class="nav-link">Tel Aviv</a> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbar2"> <span class="navbar-toggler-icon"></span> </button> <div class="navbar-collapse collapse" id="navbar2"> <ul class="navbar-nav"><li class="nav-item active"> <a class="nav-link" href="/events/2017-tel-aviv/location">location</a> </li><li class="nav-item active"> <a class="nav-link" href="/events/2017-tel-aviv/registration">registration</a> </li><li class="nav-item active"> <a class="nav-link" href="/events/2017-tel-aviv/program">program</a> </li><li class="nav-item active"> <a class="nav-link" href="/events/2017-tel-aviv/speakers">speakers</a> </li><li class="nav-item active"> <a class="nav-link" href="/events/2017-tel-aviv/contact">contact</a> </li><li class="nav-item active"> <a class="nav-link" href="/events/2017-tel-aviv/conduct">conduct</a> </li></ul> </div> </nav> <div class="container-fluid"> <div class="row"> <div class="col-md-12"><div class = "row"> <div class = "col-md-12 offset-md-1"> <h2 class="speaker-page">Lior Redlus</h2> </div> </div> <div class = "row"> <div class = "col-md-4 offset-md-1"> <span class="speaker-page content-text"> <p>Co-founder and Chief Data Science Officer at Coralogix</p> </span> <div class="speaker-bio-talks"> <h3>Lior Redlus at Tel Aviv 2017</h3> <ul class="list-group"> <a href = "https://www.devopsdays.org/events/2017-tel-aviv/program/lior-redlus/" class= "list-group-item list-group-item-action">How our ISP’s firewall cost us a full day of the entire R&amp;D</a> </ul> </div> </div> <div class = "col-md-3 offset-md-1"><img src = "/events/2017-tel-aviv/speakers/lior-redlus.jpg" class="speaker-page" alt="Lior Redlus"/><br /></div> </div> <div class="row cta-row"> <div class="col-md-12"><h4 class="sponsor-cta">Gold Sponsors</h4></div> </div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://cloudify.co"><img src = "/img/sponsors/cloudify.png" alt = "Cloudify" title = "Cloudify" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://automic.com/"><img src = "/img/sponsors/automic.png" alt = "Automic" title = "Automic" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://bigpanda.io/"><img src = "/img/sponsors/bigpanda.png" alt = "BigPanda" title = "BigPanda" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.microsoft.com/"><img src = "/img/sponsors/microsoft.png" alt = "Microsoft" title = "Microsoft" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://logz.io/"><img src = "/img/sponsors/logzio.png" alt = "logz.io" title = "logz.io" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.facebook.com/"><img src = "/img/sponsors/facebook-before-20170607.png" alt = "facebook" title = "facebook" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://walkme.com/"><img src = "/img/sponsors/walkme.png" alt = "Walk Me" title = "Walk Me" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.elastic.co"><img src = "/img/sponsors/elastic.png" alt = "Elastic" title = "Elastic" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.oracle.com/"><img src = "/img/sponsors/oracle-before-20181214.png" alt = "oracle" title = "oracle" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://cyberark.com"><img src = "/img/sponsors/cyberarktlv.png" alt = "CyberArk" title = "CyberArk" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://cloud.google.com/"><img src = "/img/sponsors/googlecloudtlv2017.png" alt = "Google Cloud" title = "Google Cloud" class="img-fluid"></a> </div></div><div class="row cta-row"> <div class="col-md-12"><h4 class="sponsor-cta">Silver Sponsors</h4></div> </div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.AppsFlyer.com/"><img src = "/img/sponsors/appsflyer-before-20180801.png" alt = "AppsFlyer" title = "AppsFlyer" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.checkmarx.com/"><img src = "/img/sponsors/checkmarx-before-20190621.png" alt = "Checkmarx" title = "Checkmarx" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.Akamai.com"><img src = "/img/sponsors/akamai.png" alt = "Akamai" title = "Akamai" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://gitlab.co.il"><img src = "/img/sponsors/gitlab_il.png" alt = "GitLab" title = "GitLab" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://automat-it.com/"><img src = "/img/sponsors/automat_it.png" alt = "automat it" title = "automat it" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.SimilarWeb.com/"><img src = "/img/sponsors/similarweb.png" alt = "Similar Web" title = "Similar Web" class="img-fluid"></a> </div></div><div class="row cta-row"> <div class="col-md-12"><h4 class="sponsor-cta">Lunch Sponsors</h4></div> </div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.twistlock.com"><img src = "/img/sponsors/twistlock.png" alt = "Twistlock" title = "Twistlock" class="img-fluid"></a> </div></div><div class="row cta-row"> <div class="col-md-12"><h4 class="sponsor-cta">breakfast Sponsors</h4></div> </div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.Outbrain.com/"><img src = "/img/sponsors/outbrain.png" alt = "Outbrain" title = "Outbrain" class="img-fluid"></a> </div></div><div class="row cta-row"> <div class="col-md-12"><h4 class="sponsor-cta">Coffee Sponsors</h4></div> </div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://automic.com/"><img src = "/img/sponsors/automic.png" alt = "Automic" title = "Automic" class="img-fluid"></a> </div></div><div class="row cta-row"> <div class="col-md-12"><h4 class="sponsor-cta">Day 1 HappyHour Sponsors</h4></div> </div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.microsoft.com/"><img src = "/img/sponsors/microsoft.png" alt = "Microsoft" title = "Microsoft" class="img-fluid"></a> </div></div><div class="row cta-row"> <div class="col-md-12"><h4 class="sponsor-cta">Day 2 HappyHour Sponsors</h4></div> </div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.ziprecruiter.com/"><img src = "/img/sponsors/ziprecruiter.png" alt = "ziprecruiter" title = "ziprecruiter" class="img-fluid"></a> </div></div><div class="row cta-row"> <div class="col-md-12"><h4 class="sponsor-cta">WorkShop Room Sponsors</h4></div> </div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.quali.com/"><img src = "/img/sponsors/quali.png" alt = "Quali" title = "Quali" class="img-fluid"></a> </div></div><div class="row cta-row"> <div class="col-md-12"><h4 class="sponsor-cta">lanyard Sponsors</h4></div> </div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://cloudify.co"><img src = "/img/sponsors/cloudify.png" alt = "Cloudify" title = "Cloudify" class="img-fluid"></a> </div></div><div class="row cta-row"> <div class="col-md-12"><h4 class="sponsor-cta">Community Sponsors</h4></div> </div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.statscraft.org.il/"><img src = "/img/sponsors/statscraft.png" alt = "Statscraft" title = "Statscraft" class="img-fluid"></a> </div></div><div class="row cta-row"> <div class="col-md-12"><h4 class="sponsor-cta">GiveAway Bag Sponsors</h4></div> </div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.facebook.com/"><img src = "/img/sponsors/facebook-before-20170607.png" alt = "facebook" title = "facebook" class="img-fluid"></a> </div></div><br /> </div></div> </div> <nav class="navbar bottom navbar-light footer-nav-row" style="background-color: #bfbfc1;"> <div class = "row"> <div class = "col-md-12 footer-nav-background"> <div class = "row"> <div class = "col-md-6 col-lg-3 footer-nav-col"> <h3 class="footer-nav">@DEVOPSDAYS</h3> <div> <a class="twitter-timeline" data-dnt="true" href="https://twitter.com/devopsdays/lists/devopsdays" data-chrome="noheader" height="440"></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> </div> </div> <div class="col-md-6 col-lg-3 footer-nav-col footer-content"> <h3 class="footer-nav">BLOG</h3><a href = "https://www.devopsdays.org/blog/2019/05/10/10-years-of-devopsdays/"><h1 class = "footer-heading">10 years of devopsdays</h1></a><h2 class="footer-heading">by Kris Buytaert - 10 May, 2019</h2><p class="footer-content">It&rsquo;s hard to believe but it is almost 10 years ago since #devopsdays happened for the first time in Gent. Back then there were almost 70 of us talking about topics that were of interest to both Operations and Development, we were exchanging our ideas and experiences `on how we were improving the quality of software delivery. Our ideas got started on the crossroads of Open Source, Agile and early Cloud Adoption.</p><a href = "https://www.devopsdays.org/blog/"><h1 class = "footer-heading">Blogs</h1></a><h2 class="footer-heading">10 May, 2019</h2><p class="footer-content"></p><a href="https://www.devopsdays.org/blog/index.xml">Feed</a> </div> <div class="col-md-6 col-lg-3 footer-nav-col"> <h3 class="footer-nav">CFP OPEN</h3><a href = "/events/2019-campinas" class = "footer-content">Campinas</a><br /><a href = "/events/2019-macapa" class = "footer-content">Macapá</a><br /><a href = "/events/2019-shanghai" class = "footer-content">Shanghai</a><br /><a href = "/events/2019-recife" class = "footer-content">Recife</a><br /><a href = "/events/2020-charlotte" class = "footer-content">Charlotte</a><br /><a href = "/events/2020-prague" class = "footer-content">Prague</a><br /><a href = "/events/2020-tokyo" class = "footer-content">Tokyo</a><br /><a href = "/events/2020-salt-lake-city" class = "footer-content">Salt Lake City</a><br /> <br />Propose a talk at an event near you!<br /> </div> <div class="col-md-6 col-lg-3 footer-nav-col"> <h3 class="footer-nav">About</h3> devopsdays is a worldwide community conference series for anyone interested in IT improvement.<br /><br /> <a href="/about/" class = "footer-content">About devopsdays</a><br /> <a href="/privacy/" class = "footer-content">Privacy Policy</a><br /> <a href="/conduct/" class = "footer-content">Code of Conduct</a> <br /> <br /> <a href="https://www.netlify.com"> <img src="/img/netlify-light.png" alt="Deploys by Netlify"> </a> </div> </div> </div> </div> </nav> <script> $(document).ready(function () { $("#share").jsSocials({ shares: ["email", {share: "twitter", via: 'DevOpsDaysTLV'}, "facebook", "linkedin"], text: 'devopsdays Tel Aviv - 2017', showLabel: false, showCount: false }); }); </script> </body> </html>
support/apache-cassandra-2.2.1/javadoc/org/apache/cassandra/db/marshal/class-use/CompositeType.Builder.html
mitch-kyle/message-board
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_45) on Fri Aug 28 09:51:32 EDT 2015 --> <title>Uses of Class org.apache.cassandra.db.marshal.CompositeType.Builder (apache-cassandra API)</title> <meta name="date" content="2015-08-28"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.cassandra.db.marshal.CompositeType.Builder (apache-cassandra API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/cassandra/db/marshal/CompositeType.Builder.html" title="class in org.apache.cassandra.db.marshal">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/cassandra/db/marshal/class-use/CompositeType.Builder.html" target="_top">Frames</a></li> <li><a href="CompositeType.Builder.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.apache.cassandra.db.marshal.CompositeType.Builder" class="title">Uses of Class<br>org.apache.cassandra.db.marshal.CompositeType.Builder</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../org/apache/cassandra/db/marshal/CompositeType.Builder.html" title="class in org.apache.cassandra.db.marshal">CompositeType.Builder</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.apache.cassandra.db.marshal">org.apache.cassandra.db.marshal</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.apache.cassandra.db.marshal"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/apache/cassandra/db/marshal/CompositeType.Builder.html" title="class in org.apache.cassandra.db.marshal">CompositeType.Builder</a> in <a href="../../../../../../org/apache/cassandra/db/marshal/package-summary.html">org.apache.cassandra.db.marshal</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/apache/cassandra/db/marshal/package-summary.html">org.apache.cassandra.db.marshal</a> that return <a href="../../../../../../org/apache/cassandra/db/marshal/CompositeType.Builder.html" title="class in org.apache.cassandra.db.marshal">CompositeType.Builder</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/apache/cassandra/db/marshal/CompositeType.Builder.html" title="class in org.apache.cassandra.db.marshal">CompositeType.Builder</a></code></td> <td class="colLast"><span class="typeNameLabel">CompositeType.Builder.</span><code><span class="memberNameLink"><a href="../../../../../../org/apache/cassandra/db/marshal/CompositeType.Builder.html#add-java.nio.ByteBuffer-">add</a></span>(java.nio.ByteBuffer&nbsp;bb)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../../org/apache/cassandra/db/marshal/CompositeType.Builder.html" title="class in org.apache.cassandra.db.marshal">CompositeType.Builder</a></code></td> <td class="colLast"><span class="typeNameLabel">CompositeType.Builder.</span><code><span class="memberNameLink"><a href="../../../../../../org/apache/cassandra/db/marshal/CompositeType.Builder.html#add-org.apache.cassandra.cql3.ColumnIdentifier-">add</a></span>(<a href="../../../../../../org/apache/cassandra/cql3/ColumnIdentifier.html" title="class in org.apache.cassandra.cql3">ColumnIdentifier</a>&nbsp;name)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/apache/cassandra/db/marshal/CompositeType.Builder.html" title="class in org.apache.cassandra.db.marshal">CompositeType.Builder</a></code></td> <td class="colLast"><span class="typeNameLabel">CompositeType.</span><code><span class="memberNameLink"><a href="../../../../../../org/apache/cassandra/db/marshal/CompositeType.html#builder--">builder</a></span>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../../org/apache/cassandra/db/marshal/CompositeType.Builder.html" title="class in org.apache.cassandra.db.marshal">CompositeType.Builder</a></code></td> <td class="colLast"><span class="typeNameLabel">CompositeType.Builder.</span><code><span class="memberNameLink"><a href="../../../../../../org/apache/cassandra/db/marshal/CompositeType.Builder.html#copy--">copy</a></span>()</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../../../org/apache/cassandra/db/marshal/CompositeType.Builder.html" title="class in org.apache.cassandra.db.marshal">CompositeType.Builder</a></code></td> <td class="colLast"><span class="typeNameLabel">CompositeType.Builder.</span><code><span class="memberNameLink"><a href="../../../../../../org/apache/cassandra/db/marshal/CompositeType.Builder.html#staticBuilder-org.apache.cassandra.db.marshal.CompositeType-">staticBuilder</a></span>(<a href="../../../../../../org/apache/cassandra/db/marshal/CompositeType.html" title="class in org.apache.cassandra.db.marshal">CompositeType</a>&nbsp;composite)</code>&nbsp;</td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/cassandra/db/marshal/CompositeType.Builder.html" title="class in org.apache.cassandra.db.marshal">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/cassandra/db/marshal/class-use/CompositeType.Builder.html" target="_top">Frames</a></li> <li><a href="CompositeType.Builder.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &copy; 2015 The Apache Software Foundation</small></p> </body> </html>
packages/hbase-0.98.7-hadoop2/docs/xref/org/apache/hadoop/hbase/master/MetricsMasterFileSystemSource.html
gsoundar/mambo-ec2-deploy
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <title>MetricsMasterFileSystemSource xref</title> <link type="text/css" rel="stylesheet" href="../../../../../stylesheet.css" /> </head> <body> <div id="overview"><a href="../../../../../../apidocs/org/apache/hadoop/hbase/master/MetricsMasterFileSystemSource.html">View Javadoc</a></div><pre> <a class="jxr_linenumber" name="1" href="#1">1</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="2" href="#2">2</a> <em class="jxr_javadoccomment"> * Licensed to the Apache Software Foundation (ASF) under one</em> <a class="jxr_linenumber" name="3" href="#3">3</a> <em class="jxr_javadoccomment"> * or more contributor license agreements. See the NOTICE file</em> <a class="jxr_linenumber" name="4" href="#4">4</a> <em class="jxr_javadoccomment"> * distributed with this work for additional information</em> <a class="jxr_linenumber" name="5" href="#5">5</a> <em class="jxr_javadoccomment"> * regarding copyright ownership. The ASF licenses this file</em> <a class="jxr_linenumber" name="6" href="#6">6</a> <em class="jxr_javadoccomment"> * to you under the Apache License, Version 2.0 (the</em> <a class="jxr_linenumber" name="7" href="#7">7</a> <em class="jxr_javadoccomment"> * "License"); you may not use this file except in compliance</em> <a class="jxr_linenumber" name="8" href="#8">8</a> <em class="jxr_javadoccomment"> * with the License. You may obtain a copy of the License at</em> <a class="jxr_linenumber" name="9" href="#9">9</a> <em class="jxr_javadoccomment"> *</em> <a class="jxr_linenumber" name="10" href="#10">10</a> <em class="jxr_javadoccomment"> * <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em> <a class="jxr_linenumber" name="11" href="#11">11</a> <em class="jxr_javadoccomment"> *</em> <a class="jxr_linenumber" name="12" href="#12">12</a> <em class="jxr_javadoccomment"> * Unless required by applicable law or agreed to in writing, software</em> <a class="jxr_linenumber" name="13" href="#13">13</a> <em class="jxr_javadoccomment"> * distributed under the License is distributed on an "AS IS" BASIS,</em> <a class="jxr_linenumber" name="14" href="#14">14</a> <em class="jxr_javadoccomment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em> <a class="jxr_linenumber" name="15" href="#15">15</a> <em class="jxr_javadoccomment"> * See the License for the specific language governing permissions and</em> <a class="jxr_linenumber" name="16" href="#16">16</a> <em class="jxr_javadoccomment"> * limitations under the License.</em> <a class="jxr_linenumber" name="17" href="#17">17</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="18" href="#18">18</a> <a class="jxr_linenumber" name="19" href="#19">19</a> <strong class="jxr_keyword">package</strong> org.apache.hadoop.hbase.master; <a class="jxr_linenumber" name="20" href="#20">20</a> <a class="jxr_linenumber" name="21" href="#21">21</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.metrics.BaseSource; <a class="jxr_linenumber" name="22" href="#22">22</a> <a class="jxr_linenumber" name="23" href="#23">23</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../../org/apache/hadoop/hbase/master/MetricsMasterFileSystemSource.html">MetricsMasterFileSystemSource</a> <strong class="jxr_keyword">extends</strong> <a href="../../../../../org/apache/hadoop/hbase/metrics/BaseSource.html">BaseSource</a> { <a class="jxr_linenumber" name="24" href="#24">24</a> <a class="jxr_linenumber" name="25" href="#25">25</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="26" href="#26">26</a> <em class="jxr_javadoccomment"> * The name of the metrics</em> <a class="jxr_linenumber" name="27" href="#27">27</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="28" href="#28">28</a> String METRICS_NAME = <span class="jxr_string">"FileSystem"</span>; <a class="jxr_linenumber" name="29" href="#29">29</a> <a class="jxr_linenumber" name="30" href="#30">30</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="31" href="#31">31</a> <em class="jxr_javadoccomment"> * The context metrics will be under.</em> <a class="jxr_linenumber" name="32" href="#32">32</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="33" href="#33">33</a> String METRICS_CONTEXT = <span class="jxr_string">"master"</span>; <a class="jxr_linenumber" name="34" href="#34">34</a> <a class="jxr_linenumber" name="35" href="#35">35</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="36" href="#36">36</a> <em class="jxr_javadoccomment"> * The name of the metrics context that metrics will be under in jmx</em> <a class="jxr_linenumber" name="37" href="#37">37</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="38" href="#38">38</a> String METRICS_JMX_CONTEXT = <span class="jxr_string">"Master,sub="</span> + METRICS_NAME; <a class="jxr_linenumber" name="39" href="#39">39</a> <a class="jxr_linenumber" name="40" href="#40">40</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="41" href="#41">41</a> <em class="jxr_javadoccomment"> * Description</em> <a class="jxr_linenumber" name="42" href="#42">42</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="43" href="#43">43</a> String METRICS_DESCRIPTION = <span class="jxr_string">"Metrics about HBase master file system."</span>; <a class="jxr_linenumber" name="44" href="#44">44</a> <a class="jxr_linenumber" name="45" href="#45">45</a> String META_SPLIT_TIME_NAME = <span class="jxr_string">"metaHlogSplitTime"</span>; <a class="jxr_linenumber" name="46" href="#46">46</a> String META_SPLIT_SIZE_NAME = <span class="jxr_string">"metaHlogSplitSize"</span>; <a class="jxr_linenumber" name="47" href="#47">47</a> String SPLIT_TIME_NAME = <span class="jxr_string">"hlogSplitTime"</span>; <a class="jxr_linenumber" name="48" href="#48">48</a> String SPLIT_SIZE_NAME = <span class="jxr_string">"hlogSplitSize"</span>; <a class="jxr_linenumber" name="49" href="#49">49</a> <a class="jxr_linenumber" name="50" href="#50">50</a> String META_SPLIT_TIME_DESC = <span class="jxr_string">"Time it takes to finish splitMetaLog()"</span>; <a class="jxr_linenumber" name="51" href="#51">51</a> String META_SPLIT_SIZE_DESC = <span class="jxr_string">"Size of hbase:meta HLog files being split"</span>; <a class="jxr_linenumber" name="52" href="#52">52</a> String SPLIT_TIME_DESC = <span class="jxr_string">"Time it takes to finish HLog.splitLog()"</span>; <a class="jxr_linenumber" name="53" href="#53">53</a> String SPLIT_SIZE_DESC = <span class="jxr_string">"Size of HLog files being split"</span>; <a class="jxr_linenumber" name="54" href="#54">54</a> <a class="jxr_linenumber" name="55" href="#55">55</a> <a class="jxr_linenumber" name="56" href="#56">56</a> <strong class="jxr_keyword">void</strong> updateMetaWALSplitTime(<strong class="jxr_keyword">long</strong> time); <a class="jxr_linenumber" name="57" href="#57">57</a> <a class="jxr_linenumber" name="58" href="#58">58</a> <strong class="jxr_keyword">void</strong> updateMetaWALSplitSize(<strong class="jxr_keyword">long</strong> size); <a class="jxr_linenumber" name="59" href="#59">59</a> <a class="jxr_linenumber" name="60" href="#60">60</a> <strong class="jxr_keyword">void</strong> updateSplitTime(<strong class="jxr_keyword">long</strong> time); <a class="jxr_linenumber" name="61" href="#61">61</a> <a class="jxr_linenumber" name="62" href="#62">62</a> <strong class="jxr_keyword">void</strong> updateSplitSize(<strong class="jxr_keyword">long</strong> size); <a class="jxr_linenumber" name="63" href="#63">63</a> <a class="jxr_linenumber" name="64" href="#64">64</a> } </pre> <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body> </html>
pyocni/doc/pyocni.backends.dummy_backend-module.html
jordan-developer/pyCMBS
<?xml version="1.0" encoding="ascii"?> <!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>pyocni.backends.dummy_backend</title> <link rel="stylesheet" href="epydoc.css" type="text/css" /> <script type="text/javascript" src="epydoc.js"></script> </head> <body bgcolor="white" text="black" link="blue" vlink="#204080" alink="#204080"> <!-- ==================== NAVIGATION BAR ==================== --> <table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0"> <tr valign="middle"> <!-- Home link --> <th>&nbsp;&nbsp;&nbsp;<a href="pyocni-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th> <!-- Tree link --> <th>&nbsp;&nbsp;&nbsp;<a href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th> <!-- Index link --> <th>&nbsp;&nbsp;&nbsp;<a href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th> <!-- Help link --> <th>&nbsp;&nbsp;&nbsp;<a href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th> <!-- Project homepage --> <th class="navbar" align="right" width="100%"> <table border="0" cellpadding="0" cellspacing="0"> <tr><th class="navbar" align="center" >pyocni</th> </tr></table></th> </tr> </table> <table width="100%" cellpadding="0" cellspacing="0"> <tr valign="top"> <td width="100%"> <span class="breadcrumbs"> <a href="pyocni-module.html">Package&nbsp;pyocni</a> :: <a href="pyocni.backends-module.html">Package&nbsp;backends</a> :: Module&nbsp;dummy_backend </span> </td> <td> <table cellpadding="0" cellspacing="0"> <!-- hide/show private --> <tr><td align="right"><span class="options">[<a href="javascript:void(0);" class="privatelink" onclick="toggle_private();">hide&nbsp;private</a>]</span></td></tr> <tr><td align="right"><span class="options" >[<a href="frames.html" target="_top">frames</a >]&nbsp;|&nbsp;<a href="pyocni.backends.dummy_backend-module.html" target="_top">no&nbsp;frames</a>]</span></td></tr> </table> </td> </tr> </table> <!-- ==================== MODULE DESCRIPTION ==================== --> <h1 class="epydoc">Module dummy_backend</h1><p class="nomargin-top"><span class="codelink"><a href="pyocni.backends.dummy_backend-pysrc.html">source&nbsp;code</a></span></p> <p>Created on Nov 10, 2011</p> <hr /> <div class="fields"> <dl><dt>Authors:</dt> <dd> Bilel Msekni, Houssem Medhioub </dd> </dl> <dl><dt>Contacts:</dt> <dd> bilel.msekni@telecom-sudparis.eu, houssem.medhioub@it-sudparis.eu </dd> </dl> <p><strong>Organization:</strong> Institut Mines-Telecom - Telecom SudParis </p> <p><strong>License:</strong> Apache License, Version 2.0 </p> </div><!-- ==================== CLASSES ==================== --> <a name="section-Classes"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Classes</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-Classes" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="pyocni.backends.dummy_backend.dummy_backend-class.html" class="summary-name">dummy_backend</a> </td> </tr> </table> <!-- ==================== VARIABLES ==================== --> <a name="section-Variables"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Variables</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-Variables" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="logger"></a><span class="summary-name">logger</span> = <code title="config.logger">config.logger</code> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="__package__"></a><span class="summary-name">__package__</span> = <code title="'pyocni.backends'"><code class="variable-quote">'</code><code class="variable-string">pyocni.backends</code><code class="variable-quote">'</code></code> </td> </tr> </table> <!-- ==================== NAVIGATION BAR ==================== --> <table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0"> <tr valign="middle"> <!-- Home link --> <th>&nbsp;&nbsp;&nbsp;<a href="pyocni-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th> <!-- Tree link --> <th>&nbsp;&nbsp;&nbsp;<a href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th> <!-- Index link --> <th>&nbsp;&nbsp;&nbsp;<a href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th> <!-- Help link --> <th>&nbsp;&nbsp;&nbsp;<a href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th> <!-- Project homepage --> <th class="navbar" align="right" width="100%"> <table border="0" cellpadding="0" cellspacing="0"> <tr><th class="navbar" align="center" >pyocni</th> </tr></table></th> </tr> </table> <table border="0" cellpadding="0" cellspacing="0" width="100%%"> <tr> <td align="left" class="footer"> Generated by Epydoc 3.0.1 on Thu Oct 25 18:47:46 2012 </td> <td align="right" class="footer"> <a target="mainFrame" href="http://epydoc.sourceforge.net" >http://epydoc.sourceforge.net</a> </td> </tr> </table> <script type="text/javascript"> <!-- // Private objects are initially displayed (because if // javascript is turned off then we want them to be // visible); but by default, we want to hide them. So hide // them unless we have a cookie that says to show them. checkCookie(); // --> </script> </body> </html>
wicket-examples/src/main/java/org/apache/wicket/examples/breadcrumb/SecondPanel.html
mosoft521/wicket
<wicket:panel xmlns:wicket="http://wicket.apache.org"> <div class="breadcrumb-content"> Donec consectetuer purus nec risus. Ut lobortis. Quisque ac arcu vel mi aliquam varius. Aliquam erat volutpat. Sed augue. Pellentesque sapien justo, pellentesque at, hendrerit nec, laoreet ac, sapien. Cras at risus. Suspendisse nulla mauris, vehicula nec, luctus non, placerat vitae, ligula. Sed orci. Morbi nec nunc a leo tincidunt auctor. Donec pede metus, consequat in, viverra eget, tincidunt non, ipsum. Sed mollis sagittis orci. Nam id nibh sed diam pulvinar blandit. Phasellus pulvinar odio vitae sapien. Phasellus vehicula lectus in tellus porta lacinia. Ut ligula risus, pellentesque ut, sagittis non, interdum sed, sem. Nunc accumsan, enim eu rutrum faucibus, massa leo luctus arcu, nonummy viverra enim est vel pede. Donec vel neque adipiscing nulla ultrices iaculis. </div> <div class="breadcrumb-links"> <form wicket:id="form"> input <input wicket:id="input" type="text" value="" />&#160; <input wicket:id="normalButton" type="submit" value="update" /> <input wicket:id="nextButton" type="submit" value="update and display result panel" /> </form> </div> <div class="breadcrumb-links"> <a href="#" wicket:id="linkToThird">go to the third panel</a> </div> <div class="breadcrumb-links"> <a href="#" wicket:id="linkToFourth">go to the fourth panel</a> </div> </wicket:panel>
src/app/frontend/common/components/actionbar/actionbar.html
vlal/dashboard
<!-- Copyright 2017 The Kubernetes Dashboard Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <div layout="row" layout-align="center center"> <div ui-view="actionbar" class="kd-actionbar-view-part"></div> </div>
test/Arabic/1235-NotoSansArabic.html
googlei18n/noto-source
<html lang="ar"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/><style>@font-face { font-family: "NotoSansArabic"; src: url("https://cdn.jsdelivr.net/gh/googlefonts/noto-fonts@main/unhinted/ttf/NotoSansArabic/NotoSansArabic-Regular.ttf"); } </style> </head><body><a href="https://github.com/googlefonts/noto-fonts/issues/1235">Issue 1235</a><p>NotoSansArabic</p><p><span style="font-family:NotoSansArabic; font-weight:400">ـݛ</span></p></body></html>
prebuilts/cmake-3.7.1-Windows-x86_64/doc/cmake/html/variable/CMAKE_LIBRARY_OUTPUT_DIRECTORY.html
jomof/cmake-server-java-bindings
<!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>CMAKE_LIBRARY_OUTPUT_DIRECTORY &mdash; CMake 3.7.1 Documentation</title> <link rel="stylesheet" href="../_static/cmake.css" type="text/css" /> <link rel="stylesheet" href="../_static/pygments.css" type="text/css" /> <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../', VERSION: '3.7.1', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true }; </script> <script type="text/javascript" src="../_static/jquery.js"></script> <script type="text/javascript" src="../_static/underscore.js"></script> <script type="text/javascript" src="../_static/doctools.js"></script> <link rel="shortcut icon" href="../_static/cmake-favicon.ico"/> <link rel="top" title="CMake 3.7.1 Documentation" href="../index.html" /> <link rel="up" title="cmake-variables(7)" href="../manual/cmake-variables.7.html" /> <link rel="next" title="CMAKE_LIBRARY_OUTPUT_DIRECTORY_&lt;CONFIG&gt;" href="CMAKE_LIBRARY_OUTPUT_DIRECTORY_CONFIG.html" /> <link rel="prev" title="CMAKE_&lt;LANG&gt;_VISIBILITY_PRESET" href="CMAKE_LANG_VISIBILITY_PRESET.html" /> </head> <body role="document"> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="../genindex.html" title="General Index" accesskey="I">index</a></li> <li class="right" > <a href="CMAKE_LIBRARY_OUTPUT_DIRECTORY_CONFIG.html" title="CMAKE_LIBRARY_OUTPUT_DIRECTORY_&lt;CONFIG&gt;" accesskey="N">next</a> |</li> <li class="right" > <a href="CMAKE_LANG_VISIBILITY_PRESET.html" title="CMAKE_&lt;LANG&gt;_VISIBILITY_PRESET" accesskey="P">previous</a> |</li> <li> <img src="../_static/cmake-logo-16.png" alt="" style="vertical-align: middle; margin-top: -2px" /> </li> <li> <a href="https://cmake.org/">CMake</a> &raquo; </li> <li> <a href="../index.html">3.7.1 Documentation</a> &raquo; </li> <li class="nav-item nav-item-1"><a href="../manual/cmake-variables.7.html" accesskey="U">cmake-variables(7)</a> &raquo;</li> </ul> </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body" role="main"> <div class="section" id="cmake-library-output-directory"> <span id="variable:CMAKE_LIBRARY_OUTPUT_DIRECTORY"></span><h1>CMAKE_LIBRARY_OUTPUT_DIRECTORY<a class="headerlink" href="#cmake-library-output-directory" title="Permalink to this headline">¶</a></h1> <p>Where to put all the <a class="reference internal" href="../manual/cmake-buildsystem.7.html#library-output-artifacts"><span>LIBRARY</span></a> target files when built.</p> <p>This variable is used to initialize the <span class="target" id="index-0-prop_tgt:LIBRARY_OUTPUT_DIRECTORY"></span><a class="reference internal" href="../prop_tgt/LIBRARY_OUTPUT_DIRECTORY.html#prop_tgt:LIBRARY_OUTPUT_DIRECTORY" title="LIBRARY_OUTPUT_DIRECTORY"><code class="xref cmake cmake-prop_tgt docutils literal"><span class="pre">LIBRARY_OUTPUT_DIRECTORY</span></code></a> property on all the targets. See that target property for additional information.</p> </div> </div> </div> </div> <div class="sphinxsidebar" role="navigation" aria-label="main navigation"> <div class="sphinxsidebarwrapper"> <h4>Previous topic</h4> <p class="topless"><a href="CMAKE_LANG_VISIBILITY_PRESET.html" title="previous chapter">CMAKE_&lt;LANG&gt;_VISIBILITY_PRESET</a></p> <h4>Next topic</h4> <p class="topless"><a href="CMAKE_LIBRARY_OUTPUT_DIRECTORY_CONFIG.html" title="next chapter">CMAKE_LIBRARY_OUTPUT_DIRECTORY_&lt;CONFIG&gt;</a></p> <div role="note" aria-label="source link"> <h3>This Page</h3> <ul class="this-page-menu"> <li><a href="../_sources/variable/CMAKE_LIBRARY_OUTPUT_DIRECTORY.txt" rel="nofollow">Show Source</a></li> </ul> </div> <div id="searchbox" style="display: none" role="search"> <h3>Quick search</h3> <form class="search" action="../search.html" method="get"> <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> </form> <p class="searchtip" style="font-size: 90%"> Enter search terms or a module, class or function name. </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> </div> </div> <div class="clearer"></div> </div> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="../genindex.html" title="General Index" >index</a></li> <li class="right" > <a href="CMAKE_LIBRARY_OUTPUT_DIRECTORY_CONFIG.html" title="CMAKE_LIBRARY_OUTPUT_DIRECTORY_&lt;CONFIG&gt;" >next</a> |</li> <li class="right" > <a href="CMAKE_LANG_VISIBILITY_PRESET.html" title="CMAKE_&lt;LANG&gt;_VISIBILITY_PRESET" >previous</a> |</li> <li> <img src="../_static/cmake-logo-16.png" alt="" style="vertical-align: middle; margin-top: -2px" /> </li> <li> <a href="https://cmake.org/">CMake</a> &raquo; </li> <li> <a href="../index.html">3.7.1 Documentation</a> &raquo; </li> <li class="nav-item nav-item-1"><a href="../manual/cmake-variables.7.html" >cmake-variables(7)</a> &raquo;</li> </ul> </div> <div class="footer" role="contentinfo"> &copy; Copyright 2000-2016 Kitware, Inc. and Contributors. Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.4a0+. </div> </body> </html>
HumulusTripleSearch/public_html/googleform.html
kamir/Humulus
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <meta charset="utf-8"> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title></title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="css/bootstrap.min.css"> <style> body { padding-top: 50px; padding-bottom: 20px; } </style> <link rel="stylesheet" href="css/bootstrap-theme.min.css"> <link rel="stylesheet" href="css/main.css"> <script src="js/vendor/modernizr-2.6.2-respond-1.1.0.min.js"></script> </head> <body> <body> <!--[if lt IE 7]> <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p> <![endif]--> <div class="navbar navbar-inverse 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="index.html">Ask bigger questions ...</a> </div> <div class="navbar-collapse collapse"> </div><!--/.navbar-collapse --> </div> </div> <div class="container"> <!-- Example row of columns --> <div class="row"> <div class="col-md-4"></div> <div id="tabs-1"> <p> <iframe src="https://docs.google.com/a/cloudera.com/forms/d/1F-cwLJinW0C2TnErv_iMvh2l4HC7DG3sgeroHI4CFKU/viewform?embedded=true" width="1100" height="900" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe> </p> </div> </div> <hr> <footer> <p>&copy; Cloudera 2014</p> </footer> </div> <!-- /container --> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.js"></script> <script>window.jQuery || document.write('<script src="js/vendor/jquery-1.11.0.js"><\/script>')</script> <script src="js/vendor/bootstrap.min.js"></script> <script src="js/main.js"></script> <!-- Google Analytics: change UA-XXXXX-X to be your site's ID. --> <script> (function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]= function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date; e=o.createElement(i);r=o.getElementsByTagName(i)[0]; e.src='//www.google-analytics.com/analytics.js'; r.parentNode.insertBefore(e,r)}(window,document,'script','ga')); ga('create','UA-XXXXX-X');ga('send','pageview'); </script> </body> </html>
docs/api/org/apache/hadoop/metrics2/sink/ganglia/class-use/AbstractGangliaSink.GangliaConfType.html
Jun1113/MapReduce-Example
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_26) on Tue Feb 14 08:16:37 UTC 2012 --> <TITLE> Uses of Class org.apache.hadoop.metrics2.sink.ganglia.AbstractGangliaSink.GangliaConfType (Hadoop 1.0.1 API) </TITLE> <META NAME="date" CONTENT="2012-02-14"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.hadoop.metrics2.sink.ganglia.AbstractGangliaSink.GangliaConfType (Hadoop 1.0.1 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/hadoop/metrics2/sink/ganglia/AbstractGangliaSink.GangliaConfType.html" title="enum in org.apache.hadoop.metrics2.sink.ganglia"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html?org/apache/hadoop/metrics2/sink/ganglia//class-useAbstractGangliaSink.GangliaConfType.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="AbstractGangliaSink.GangliaConfType.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.apache.hadoop.metrics2.sink.ganglia.AbstractGangliaSink.GangliaConfType</B></H2> </CENTER> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Packages that use <A HREF="../../../../../../../org/apache/hadoop/metrics2/sink/ganglia/AbstractGangliaSink.GangliaConfType.html" title="enum in org.apache.hadoop.metrics2.sink.ganglia">AbstractGangliaSink.GangliaConfType</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.hadoop.metrics2.sink.ganglia"><B>org.apache.hadoop.metrics2.sink.ganglia</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.hadoop.metrics2.sink.ganglia"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../../../org/apache/hadoop/metrics2/sink/ganglia/AbstractGangliaSink.GangliaConfType.html" title="enum in org.apache.hadoop.metrics2.sink.ganglia">AbstractGangliaSink.GangliaConfType</A> in <A HREF="../../../../../../../org/apache/hadoop/metrics2/sink/ganglia/package-summary.html">org.apache.hadoop.metrics2.sink.ganglia</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../../org/apache/hadoop/metrics2/sink/ganglia/package-summary.html">org.apache.hadoop.metrics2.sink.ganglia</A> that return <A HREF="../../../../../../../org/apache/hadoop/metrics2/sink/ganglia/AbstractGangliaSink.GangliaConfType.html" title="enum in org.apache.hadoop.metrics2.sink.ganglia">AbstractGangliaSink.GangliaConfType</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../../../org/apache/hadoop/metrics2/sink/ganglia/AbstractGangliaSink.GangliaConfType.html" title="enum in org.apache.hadoop.metrics2.sink.ganglia">AbstractGangliaSink.GangliaConfType</A></CODE></FONT></TD> <TD><CODE><B>AbstractGangliaSink.GangliaConfType.</B><B><A HREF="../../../../../../../org/apache/hadoop/metrics2/sink/ganglia/AbstractGangliaSink.GangliaConfType.html#valueOf(java.lang.String)">valueOf</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;name)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the enum constant of this type with the specified name.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../../../org/apache/hadoop/metrics2/sink/ganglia/AbstractGangliaSink.GangliaConfType.html" title="enum in org.apache.hadoop.metrics2.sink.ganglia">AbstractGangliaSink.GangliaConfType</A>[]</CODE></FONT></TD> <TD><CODE><B>AbstractGangliaSink.GangliaConfType.</B><B><A HREF="../../../../../../../org/apache/hadoop/metrics2/sink/ganglia/AbstractGangliaSink.GangliaConfType.html#values()">values</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns an array containing the constants of this enum type, in the order they are declared.</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/hadoop/metrics2/sink/ganglia/AbstractGangliaSink.GangliaConfType.html" title="enum in org.apache.hadoop.metrics2.sink.ganglia"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html?org/apache/hadoop/metrics2/sink/ganglia//class-useAbstractGangliaSink.GangliaConfType.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="AbstractGangliaSink.GangliaConfType.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &copy; 2009 The Apache Software Foundation </BODY> </HTML>
web_seller/src/main/resources/static/view/sign-in-new.html
YihuaWanglv/commerce
<!DOCTYPE html> <html> <head> <title>timeitem sign up</title> <link rel="stylesheet" href="assets/css/sign-up.css" /> <link rel="stylesheet" href="assets/css/sign-up-plus.css" /> </head> <body> <div class="bert-alert clearfix"> <div class="container"> <p></p> </div> <!-- end .container --> </div> <!-- end .bert-alert --> <div class="container"> <div class="row"> <div class="col-sm-8 col-sm-offset-2 col-md-6 col-md-offset-3 col-lg-4 col-lg-offset-4"> <div class="auth-logo auth-header"> <a href="https://timeitem.com/"> <!-- <img src="./Login_files/logo-mark.svg"> --> TimeItem </a> </div> <div class="auth-wrapper"> <form id="login" novalidate="novalidate"> <div class="form-group"> <label for="identifier">Email</label> <input type="email" class="form-control valid" name="identifier" id="identifier" aria-required="true" aria-invalid="false"> </div> <div class="form-group"> <label for="password">Password</label> <input type="password" class="form-control" name="password" id="password"> </div> <input type="submit" value="Log in" class="btn btn-block btn-success"> </form> </div> <div class="auth-footer"> New around here?<br> <a href="https://www.wiplo.com/register">Create a new team</a> <br><br><br><br> Forgot password?<br> <a href="https://www.wiplo.com/password/forgot">Reset password</a> </div> </div> </div> </div><iframe style="display: none;"></iframe></body> </html>
mammoth-src/docs/api/org/apache/hadoop/metrics2/filter/class-use/GlobFilter.html
zincumyx/Mammoth
<!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_21) on Wed May 04 07:58:35 PDT 2011 --> <TITLE> Uses of Class org.apache.hadoop.metrics2.filter.GlobFilter (Hadoop 0.20.203.0 API) </TITLE> <META NAME="date" CONTENT="2011-05-04"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.hadoop.metrics2.filter.GlobFilter (Hadoop 0.20.203.0 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/hadoop/metrics2/filter/GlobFilter.html" title="class in org.apache.hadoop.metrics2.filter"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?org/apache/hadoop/metrics2/filter//class-useGlobFilter.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="GlobFilter.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.apache.hadoop.metrics2.filter.GlobFilter</B></H2> </CENTER> No usage of org.apache.hadoop.metrics2.filter.GlobFilter <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/hadoop/metrics2/filter/GlobFilter.html" title="class in org.apache.hadoop.metrics2.filter"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?org/apache/hadoop/metrics2/filter//class-useGlobFilter.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="GlobFilter.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &copy; 2009 The Apache Software Foundation </BODY> </HTML>
docs/html/dir_dbbe66b78aa470cf2119ca08004d7d25.html
janusnic/OctoberFriends
<!-- HTML header for doxygen 1.8.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> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.9.1"/> <title>DMA Friends: classes/api Directory Reference</title> <!--<link href="tabs.css" rel="stylesheet" type="text/css"/>--> <!--<script type="text/javascript" src="jquery.js"></script>--> <script type="text/javascript" src="dynsections.js"></script> <link href="bootstrap3/css/bootstrap.min.css" rel="stylesheet"> <script src="bootstrap3/js/jquery-2.1.1.min.js"></script> <script src="bootstrap3/js/bootstrap.min.js"></script> <script type="text/javascript" src="doxy-boot.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { init_search(); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">DMA Friends &#160;<span id="projectnumber">2.0</span> </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.9.1 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="dir_b02e4219757ae4e3a0f1714873865bbf.html">classes</a></li><li class="navelem"><a class="el" href="dir_dbbe66b78aa470cf2119ca08004d7d25.html">api</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">api Directory Reference</div> </div> </div><!--header--> <div class="contents"> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="files"></a> Files</h2></td></tr> <tr class="memitem:de/dae/AdditionalRoutesTrait_8php"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><b>AdditionalRoutesTrait.php</b></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:d1/d03/APIDocsController_8php"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><b>APIDocsController.php</b></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:d4/dd8/APIManager_8php"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><b>APIManager.php</b></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:d3/dc7/BaseResource_8php"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><b>BaseResource.php</b></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:df/d85/BaseTransformer_8php"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><b>BaseTransformer.php</b></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:d5/d7b/FilterSpec_8php"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><b>FilterSpec.php</b></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:da/d69/ModelRepository_8php"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><b>ModelRepository.php</b></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> </div><!-- contents --> <!-- HTML footer for doxygen 1.8.8--> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Tue Aug 11 2015 18:30:27 for DMA Friends by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.9.1 </small></address> </body> </html>
db/db-derby-10.13.1.1-bin/docs/html/security/cseccsecure865818.html
sadrayan/topic_web
<?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="Setting the default connection access mode" /> <meta name="abstract" content="You can use the derby.database.defaultConnectionMode property to specify the default type of access that users have when they connect to the database." /> <meta name="description" content="You can use the derby.database.defaultConnectionMode property to specify the default type of access that users have when they connect to the database." /> <meta content="databases, controlling access to, derby.database.ConnectionMode property, defaultConnectionMode, properties" name="DC.subject" /> <meta content="databases, controlling access to, derby.database.ConnectionMode property, defaultConnectionMode, properties" name="keywords" /> <meta scheme="URI" name="DC.Relation" content="csecauthorcoarse.html" /> <meta scheme="URI" name="DC.Relation" content="rseccsecure190.html" /> <meta scheme="URI" name="DC.Relation" content="rseccsecure379.html" /> <meta content="XHTML" name="DC.Format" /> <meta content="cseccsecure865818" name="DC.Identifier" /> <meta content="en-us" name="DC.Language" /> <link href="commonltr.css" type="text/css" rel="stylesheet" /> <title>Setting the default connection access mode</title> </head> <body id="cseccsecure865818"><a name="cseccsecure865818"><!-- --></a> <h1 class="topictitle1">Setting the default connection access mode</h1> <div><p>You can use the <samp class="codeph">derby.database.defaultConnectionMode</samp> property to specify the default type of access that users have when they connect to the database.</p> <div class="p">The valid settings for the <samp class="codeph">derby.database.defaultConnectionMode</samp> property are:<ul> <li><samp class="codeph">noAccess</samp></li> <li><samp class="codeph">readOnlyAccess</samp></li> <li><samp class="codeph">fullAccess</samp></li> </ul> </div> <p>If you do not specify a setting for the <samp class="codeph">derby.database.defaultConnectionMode</samp> property, the default access setting is <samp class="codeph">fullAccess</samp>.</p> <p>To set the default connection access mode, specify the access in a CALL statement. For example:</p> <div class="p">To specify read-write access for the System Administrator user ID <samp class="codeph">sa</samp> and read-only access as the default for anyone else who connects to the database, issue these CALL statements: <pre>CALL SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY( 'derby.database.fullAccessUsers', 'sa') CALL SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY( 'derby.database.defaultConnectionMode', 'readOnlyAccess') </pre> </div> <p>To specify read-write access for the user ID Fred and no access for other users, issue these CALL statements:</p> <pre>CALL SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY( 'derby.database.fullAccessUsers', 'Fred') CALL SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY( 'derby.database.defaultConnectionMode', 'noAccess') </pre> </div> <div> <div class="familylinks"> <div class="parentlink"><strong>Parent topic:</strong> <a href="csecauthorcoarse.html" title="You can manipulate coarse-grained access by using the builtin procedure SYSCS_SET_DATABASE_PROPERTY to set the database properties derby.database.fullAccessUsers and derby.database.readOnlyAccessUsers.">Configuring coarse-grained user authorization</a></div> </div> <div class="relref"><strong>Related reference</strong><br /> <div><a href="rseccsecure190.html" title="The actions that users can perform on a Derby database with coarse-grained authorization are determined by the type of access that users have to the database objects.">Read-only and full access permissions</a></div> <div><a href="rseccsecure379.html" title="SQL exceptions are returned when errors occur with coarse-grained user authorizations.">User authorization exceptions</a></div> </div> </div> </body> </html>
docs/modules/models.html
jamescdavis/ember-osf
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>models - Ember OSF Addon</title> <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="../assets/css/main.css" id="site_styles"> <link rel="icon" href="../assets/favicon.ico"> <script src="http://yui.yahooapis.com/combo?3.9.1/build/yui/yui-min.js"></script> </head> <body class="yui3-skin-sam"> <div id="doc"> <div id="hd" class="yui3-g header"> <div class="yui3-u-3-4"> <h1><img src="https://cdn.cos.io/static/images/cos_wide.png" title="Ember OSF Addon"></h1> </div> <div class="yui3-u-1-4 version"> <em>API Docs for: 0.25.0</em> </div> </div> <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/Analytics.html">Analytics</a></li> <li><a href="../classes/auth.html">auth</a></li> <li><a href="../classes/author-link.html">author-link</a></li> <li><a href="../classes/buildSecondaryNavLinks.html">buildSecondaryNavLinks</a></li> <li><a href="../classes/CasAuthenticatedRouteMixin.html">CasAuthenticatedRouteMixin</a></li> <li><a href="../classes/ChronosJournals.html">ChronosJournals</a></li> <li><a href="../classes/ChronosSubmissions.html">ChronosSubmissions</a></li> <li><a href="../classes/Citation.html">Citation</a></li> <li><a href="../classes/citation-widget.html">citation-widget</a></li> <li><a href="../classes/Collection.html">Collection</a></li> <li><a href="../classes/Comment.html">Comment</a></li> <li><a href="../classes/comment-detail.html">comment-detail</a></li> <li><a href="../classes/comment-form.html">comment-form</a></li> <li><a href="../classes/comment-pane.html">comment-pane</a></li> <li><a href="../classes/CommentableMixin.html">CommentableMixin</a></li> <li><a href="../classes/CommentReport.html">CommentReport</a></li> <li><a href="../classes/Contributor.html">Contributor</a></li> <li><a href="../classes/current-user.html">current-user</a></li> <li><a href="../classes/discover-page.html">discover-page</a></li> <li><a href="../classes/DraftRegistration.html">DraftRegistration</a></li> <li><a href="../classes/dropzone-widget.html">dropzone-widget</a></li> <li><a href="../classes/elem-id.html">elem-id</a></li> <li><a href="../classes/eosf-project-nav.html">eosf-project-nav</a></li> <li><a href="../classes/faceted-search.html">faceted-search</a></li> <li><a href="../classes/File.html">File</a></li> <li><a href="../classes/file-browser.html">file-browser</a></li> <li><a href="../classes/file-browser-icon.html">file-browser-icon</a></li> <li><a href="../classes/file-chooser component.html">file-chooser component</a></li> <li><a href="../classes/file-editor.html">file-editor</a></li> <li><a href="../classes/file-manager.html">file-manager</a></li> <li><a href="../classes/file-renderer.html">file-renderer</a></li> <li><a href="../classes/file-version.html">file-version</a></li> <li><a href="../classes/file-widget.html">file-widget</a></li> <li><a href="../classes/FileCacheBypassMixin.html">FileCacheBypassMixin</a></li> <li><a href="../classes/FileItemMixin.html">FileItemMixin</a></li> <li><a href="../classes/FileProvider.html">FileProvider</a></li> <li><a href="../classes/FileVersion.html">FileVersion</a></li> <li><a href="../classes/filterReplace.html">filterReplace</a></li> <li><a href="../classes/fix-special-char.html">fix-special-char</a></li> <li><a href="../classes/fix-special-char-helper.html">fix-special-char-helper</a></li> <li><a href="../classes/fixstring.html">fixstring</a></li> <li><a href="../classes/GenericDataADapter.html">GenericDataADapter</a></li> <li><a href="../classes/getDisplayName.html">getDisplayName</a></li> <li><a href="../classes/HostAppNameMixin.html">HostAppNameMixin</a></li> <li><a href="../classes/human-file-size.html">human-file-size</a></li> <li><a href="../classes/ifFilter.html">ifFilter</a></li> <li><a href="../classes/InfinityCustomMixin.html">InfinityCustomMixin</a></li> <li><a href="../classes/Institution.html">Institution</a></li> <li><a href="../classes/license-picker.html">license-picker</a></li> <li><a href="../classes/Log.html">Log</a></li> <li><a href="../classes/Metaschema.html">Metaschema</a></li> <li><a href="../classes/mimeTypes.html">mimeTypes</a></li> <li><a href="../classes/navbar-auth-dropdown.html">navbar-auth-dropdown</a></li> <li><a href="../classes/new-navbar-auth-dropdown.html">new-navbar-auth-dropdown</a></li> <li><a href="../classes/Node.html">Node</a></li> <li><a href="../classes/NodeActionsMixin.html">NodeActionsMixin</a></li> <li><a href="../classes/NodeLink.html">NodeLink</a></li> <li><a href="../classes/oauth-popup.html">oauth-popup</a></li> <li><a href="../classes/old-file-browser.html">old-file-browser</a></li> <li><a href="../classes/osf-copyright.html">osf-copyright</a></li> <li><a href="../classes/osf-footer.html">osf-footer</a></li> <li><a href="../classes/osf-mode-footer.html">osf-mode-footer</a></li> <li><a href="../classes/osf-navbar.html">osf-navbar</a></li> <li><a href="../classes/osf-paginator.html">osf-paginator</a></li> <li><a href="../classes/osf-services.html">osf-services</a></li> <li><a href="../classes/OsfAdapter.html">OsfAdapter</a></li> <li><a href="../classes/OsfAgnosticAuthController.html">OsfAgnosticAuthController</a></li> <li><a href="../classes/OsfAgnosticAuthRoute.html">OsfAgnosticAuthRoute</a></li> <li><a href="../classes/OsfCookieAuthenticator.html">OsfCookieAuthenticator</a></li> <li><a href="../classes/OsfCookieAuthorizer.html">OsfCookieAuthorizer</a></li> <li><a href="../classes/OsfCookieLoginController.html">OsfCookieLoginController</a></li> <li><a href="../classes/OsfCookieLoginRoute.html">OsfCookieLoginRoute</a></li> <li><a href="../classes/OsfModel.html">OsfModel</a></li> <li><a href="../classes/OsfSerializer.html">OsfSerializer</a></li> <li><a href="../classes/OsfTokenAuthenticator.html">OsfTokenAuthenticator</a></li> <li><a href="../classes/OsfTokenAuthorizer.html">OsfTokenAuthorizer</a></li> <li><a href="../classes/OsfTokenLoginControllerMixin.html">OsfTokenLoginControllerMixin</a></li> <li><a href="../classes/OsfTokenLoginRouteMixin.html">OsfTokenLoginRouteMixin</a></li> <li><a href="../classes/outside-click.html">outside-click</a></li> <li><a href="../classes/PaginatedControllerMixin.html">PaginatedControllerMixin</a></li> <li><a href="../classes/PaginatedRouteMixin.html">PaginatedRouteMixin</a></li> <li><a href="../classes/pagination-control.html">pagination-control</a></li> <li><a href="../classes/permissions.html">permissions</a></li> <li><a href="../classes/Preprint.html">Preprint</a></li> <li><a href="../classes/project-selector.html">project-selector</a></li> <li><a href="../classes/providerRegex.html">providerRegex</a></li> <li><a href="../classes/Registration.html">Registration</a></li> <li><a href="../classes/RegistrationActionsMixin.html">RegistrationActionsMixin</a></li> <li><a href="../classes/scheduled-banner.html">scheduled-banner</a></li> <li><a href="../classes/search-dropdown.html">search-dropdown</a></li> <li><a href="../classes/search-facet-locked.html">search-facet-locked</a></li> <li><a href="../classes/search-help-modal.html">search-help-modal</a></li> <li><a href="../classes/search-result.html">search-result</a></li> <li><a href="../classes/service-links.html">service-links</a></li> <li><a href="../classes/sharing-icons.html">sharing-icons</a></li> <li><a href="../classes/sharing-icons-popover Sample usage: {{sharing-icons title=title description=description hyperlink=hyperlink metricsExtra=metricsExtra }}.html">sharing-icons-popover Sample usage: {{sharing-icons title=title description=description hyperlink=hyperlink metricsExtra=metricsExtra }}</a></li> <li><a href="../classes/sign-up.html">sign-up</a></li> <li><a href="../classes/sortOptionDisplay.html">sortOptionDisplay</a></li> <li><a href="../classes/Subscription.html">Subscription</a></li> <li><a href="../classes/TaggableMixin.html">TaggableMixin</a></li> <li><a href="../classes/tags-widget.html">tags-widget</a></li> <li><a href="../classes/Taxonomy.html">Taxonomy</a></li> <li><a href="../classes/theme.html">theme</a></li> <li><a href="../classes/total-share-results.html">total-share-results</a></li> <li><a href="../classes/User.html">User</a></li> </ul> <ul id="api-modules" class="apis modules"> <li><a href="../modules/adapters.html">adapters</a></li> <li><a href="../modules/authenticators.html">authenticators</a></li> <li><a href="../modules/authorizers.html">authorizers</a></li> <li><a href="../modules/components.html">components</a></li> <li><a href="../modules/const.html">const</a></li> <li><a href="../modules/ember-osf.html">ember-osf</a></li> <li><a href="../modules/helpers.html">helpers</a></li> <li><a href="../modules/mixins.html">mixins</a></li> <li><a href="../modules/models.html">models</a></li> <li><a href="../modules/serializers.html">serializers</a></li> <li><a href="../modules/services.html">services</a></li> <li><a href="../modules/transforms.html">transforms</a></li> <li><a href="../modules/utils.html">utils</a></li> </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>models Module</h1> <div class="box clearfix meta"> <div class="foundat"> Defined in: <a href="../files/addon_models_user.js.html#l12"><code>addon&#x2F;models&#x2F;user.js:12</code></a> </div> </div> <div class="box intro"> <p>Ember-data models for interacting with the OSF APIv2</p> </div> <div class="yui3-g"> <div class="yui3-u-1-2"> <p>This module provides the following classes:</p> <ul class="module-classes"> <li class="module-class"> <a href="../classes/ChronosJournals.html"> ChronosJournals </a> </li> <li class="module-class"> <a href="../classes/ChronosSubmissions.html"> ChronosSubmissions </a> </li> <li class="module-class"> <a href="../classes/Citation.html"> Citation </a> </li> <li class="module-class"> <a href="../classes/Collection.html"> Collection </a> </li> <li class="module-class"> <a href="../classes/Comment.html"> Comment </a> </li> <li class="module-class"> <a href="../classes/CommentReport.html"> CommentReport </a> </li> <li class="module-class"> <a href="../classes/Contributor.html"> Contributor </a> </li> <li class="module-class"> <a href="../classes/DraftRegistration.html"> DraftRegistration </a> </li> <li class="module-class"> <a href="../classes/File.html"> File </a> </li> <li class="module-class"> <a href="../classes/FileProvider.html"> FileProvider </a> </li> <li class="module-class"> <a href="../classes/FileVersion.html"> FileVersion </a> </li> <li class="module-class"> <a href="../classes/Institution.html"> Institution </a> </li> <li class="module-class"> <a href="../classes/Log.html"> Log </a> </li> <li class="module-class"> <a href="../classes/Metaschema.html"> Metaschema </a> </li> <li class="module-class"> <a href="../classes/Node.html"> Node </a> </li> <li class="module-class"> <a href="../classes/NodeLink.html"> NodeLink </a> </li> <li class="module-class"> <a href="../classes/OsfModel.html"> OsfModel </a> </li> <li class="module-class"> <a href="../classes/Preprint.html"> Preprint </a> </li> <li class="module-class"> <a href="../classes/Registration.html"> Registration </a> </li> <li class="module-class"> <a href="../classes/Subscription.html"> Subscription </a> </li> <li class="module-class"> <a href="../classes/Taxonomy.html"> Taxonomy </a> </li> <li class="module-class"> <a href="../classes/User.html"> User </a> </li> </ul> </div> <div class="yui3-u-1-2"> </div> </div> </div> </div> </div> </div> </div> </div> <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>
js/myMail/assets/css/subscriber-style.css
juniorug/vidacon
@import "common-style.css"; /*----------------------------------------------------------------------*/ /* Title /*----------------------------------------------------------------------*/ p.email-error{ background-color: #FFEBE8; border:1px solid #CC0000; border-top:0; margin:-1px 1px 1px 2px; padding:10px 15px; -webkit-border-bottom-right-radius: 3px; -webkit-border-bottom-left-radius: 3px; -moz-border-radius-bottomright: 3px; -moz-border-radius-bottomleft: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } #publishing-action .spinner{ vertical-align: middle; display: block; float: left; margin-top: 4px; margin-right: 3px; width: 16px; height: 16px; } /*----------------------------------------------------------------------*/ /* Data /*----------------------------------------------------------------------*/ #mymail_subscriber_data .inside{ overflow:hidden; } #user_fields label{ padding:10px 0 0px; margin:0; } #user_fields code{ float:right; cursor:help; } #mymail_subscriber_data .input{ padding: 3px; font-size:16px; margin:1px 0 8px; width:100%; } #user_fields{ padding-left:150px; min-height: 150px; } #user_image_wrap{ float:left; width:120px; height:120px; margin:0 15px 15px 0; } #user_image{ width:120px; height:120px; padding:5px; border:1px solid #D3D6DB; box-shadow:0px 2px 5px rgba(0,0,0,0.1); -moz-box-shadow:0px 2px 5px rgba(0,0,0,0.1); -webkit-box-shadow:0px 2px 5px rgba(0,0,0,0.1); background-color:#fff; background-position:center center; background-repeat:no-repeat; } #user_image.loading{ background-image:none !important; } #user_location p{ margin: 3px; } .custom-field-wrap{ margin-top: 12px; } .custom-field-wrap ul{ margin: 0; } /*----------------------------------------------------------------------*/ /* Lists /*----------------------------------------------------------------------*/ #tagcloud-newsletter_lists a{ font-size:14px !important; } /*----------------------------------------------------------------------*/ /* Table /*----------------------------------------------------------------------*/ #mymail_subscriber_stats .campaing-stats{ border-top:1px solid #FFFFFF; border-bottom:1px solid #DFDFDF; padding-bottom: 15px; } #mymail_subscriber_stats .campaing-stats:first-child{ border-top:0; } #mymail_subscriber_stats .campaing-stats:last-child{ border-bottom:0; } #mymail_subscriber_stats h4{ font-weight: 100; font-size: 16px; margin-bottom: 0.4em; margin-left: 2px; } #mymail_subscriber_stats h4 a{ font-size: 12px; visibility: hidden; } #mymail_subscriber_stats .campaing-stats:hover h4 a{ visibility: visible; } #mymail_subscriber_stats table{ border-collapse:collapse; width:100%; margin:5px 0 10px; } #mymail_subscriber_stats table .strong td{ font-weight: 700; } #mymail_subscriber_stats table ul{ margin:0; } #mymail_subscriber_stats table td, #mymail_subscriber_stats table th{ text-align:left; border-collapse:collapse; border-top:1px solid #DFDFDF; padding:7px; }
lino/templates_old/base.html
lino-framework/lino
<!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" lang="{{ LANGUAGE_CODE }}" xml:lang="{{ LANGUAGE_CODE }}"> <head> <title>{% block title %}{% endblock %}</title> <link rel="stylesheet" type="text/css" href="{settings.MEDIA_URL}extjs/resources/css/ext-all.css" /> {% block extrastyle %}{% endblock %} {% block extrahead %}{% endblock %} {% block blockbots %}<meta name="robots" content="NONE,NOARCHIVE" />{% endblock %} </head> {% load i18n %} <body class="{% if is_popup %}popup {% endif %}{% block bodyclass %}{% endblock %}"> <!-- Container --> <div id="container"> {% if not is_popup %} <!-- Header --> <div id="header"> <div id="branding"> {% block branding %}{% endblock %} </div> {% block nav-global %}{% endblock %} </div> <!-- END Header --> {% block breadcrumbs %}<div class="breadcrumbs"><a href="/">{% trans 'Home' %}</a>{% if title %} &rsaquo; {{ title }}{% endif %}</div>{% endblock %} {% endif %} <!-- Content --> <div id="content" class="{% block coltype %}colM{% endblock %}"> {% block pretitle %}{% endblock %} {% block content_title %}{% if title %}<h1>{{ title }}</h1>{% endif %}{% endblock %} {% block content %} {% block object-tools %}{% endblock %} {{ content }} {% endblock %} {% block sidebar %}{% endblock %} <br class="clear" /> </div> <!-- END Content --> {% block footer %}<div id="footer"></div>{% endblock %} </div> <!-- END Container --> </body> </html>
static/css/style.css
wpjesus/codematch
/**************************** /* Author : Ashok /* Website : http://responsivewebinc.com ****************************/ body{ font-size: 12px; line-height: 22px; color: #666; border-top: 3px solid #eee; background:#343434 url("../images/back.png") repeat; padding-top: 37px; -webkit-font-smoothing: antialiased; } h1,h2,h3,h4,h5,h6{ padding: 2px 0px; margin: 2px 0px; color: #777; } h2{ font-size: 25px; line-height: 35px; } h3{ font-size: 18px; line-height: 23px; } h4{ font-size: 15px; line-height: 20px; } h5{ font-size: 13px; line-height: 18px; } h6{ font-size: 12px; line-height: 17px; } p{ padding: 0px; margin:0px; } a{ color: #026b9c; } a:hover{ color: #003f5c; text-decoration: none; } a:hover,a:active,a:focus { outline: 0; } .bold{ font-weight: bold; } hr{ margin:15px 0px 10px 0px; padding:0px; border-top:0px; border-bottom:1px solid #f4f4f4; height:0px; } .center{ text-align:center; } a:hover,a:active,a:focus { outline: 0; } :focus { outline:none; } ::-moz-focus-inner { border:0; } .badge{ padding-left: 7px !important; padding-right: 7px !important; } .well{ padding:10px 15px; } button.close{ font-size: 20px !important; font-weight: normal; } button{ font-size: 11px; } .progress{ height: 6px; border-radius: 6px; margin: 15px 0px !important; line-height: 12px; background:#eee; } .progress-bar{ font-size:11px !important; line-height:16px !important; } i.ipad{ margin-right: 2px; } .bblue{ background:#5eb2d9; } .bbrown{ background:#b46e4c; } .bgreen{ background: #4ac344; } .borange{ background:#ff8421; } .bred{ background: #ff5d5e; } .byellow{ background: #d7a443; } /* Sparkline tooltip */ .jqstooltip { width: auto !important; height: auto !important; border-radius: 5px; padding: 4px 6px !important; background-color: rgba(0, 0, 0, 0.5) !important; border: 0 !important; } /* Form */ form{ margin: 0px; } .input-group-width{ max-width:250px; } /* Modal */ .modal-header{ padding-top:7px; padding-bottom: 7px; } /* Social */ .social{ font-size:16px; margin: 5px 0px; } .social i{ box-shadow:inset 0px 0px 1px #333; height:25px; width:25px; line-height:25px; margin:0px 5px 0px 0px; border-radius:3px; color:#fff; -webkit-transition:background 1s ease; -moz-transition:background 1s ease; -o-transition:background 1s ease; transition:background 1s ease; text-align:center; } .social i.facebook{ background:#3c5b9b; } .social i.twitter{ background:#2daae1; } .social i.google-plus{ background:#f63e28; } .social i.pinterest{ background:#cb2027; } .social i.linkedin{ background:#0173b2; } .social i:hover{ background:#000; -webkit-transition:background 1s ease; -moz-transition:background 1s ease; -o-transition:background 1s ease; transition:background 1s ease; } .social a,.social a:visited,.social a:hover{ color:#fff; text-decoration:none; } /* Back to top */ .totop { position: fixed; bottom: 0px; right: 0px; z-index: 104400; background: #0993d3 !important; } .totop a, .totop a:visited{ display: block; width: 30px; height: 30px; color: #fff; text-align: center; line-height: 30px; } .totop a:hover { color: #eee; text-decoration: none; } /* Image alignment*/ .alignleft, img.alignleft { margin-right: 8px; margin-top:5px; display: inline; float: left; } .alignright, img.alignright { margin-left: 8px; margin-top:5px; display: inline; float: right; } .aligncenter, img.aligncenter { margin-right: auto; margin-left: auto; display: block; clear: both; } /* Half column */ .mcol-left{ width: 48%; float: left; } .mcol-right{ width: 48%; float: right; } .col-left{ width: 48%; float: left; } .col-right{ width: 48%; float: right; } /* Dropdown menu */ .dropdown-big .dropdown-menu{ min-width: 230px; padding:8px 10px; } .dropdown-big .dropdown-menu p{ margin: 0px 0px; padding: 1px 0px; font-size: 11px; line-height: 16px; color:#999; } .dropdown-big .dropdown-menu a, .dropdown-big .dropdown-menu a:hover{ line-height: 16px; font-size: 12px; background:transparent; padding: 0px; color: #777; } .dropdown-big .dropdown-menu a:hover{ color: #777; } .dropdown-big .dropdown-menu .drop-foot{ text-align: center; } .dropdown-big .dropdown-menu .drop-foot a{ font-size: 11px !important; color:#777; } .dropdown-big .dropdown-menu hr{ padding:0px; margin: 8px 0px; border-top: 0px solid #aaa; border-bottom: 1px solid #eee; } .dropdown-big .dropdown-menu i{ position: relative; } .dropdown-big .dropdown-menu h5{ color: #888 !important; line-height: 18px; font-weight: bold; font-size: 13px; } .dropdown-big .dropdown-menu h6, .dropdown-big .dropdown-menu h6 a{ color: #888 !important; font-size: 12px; line-height: 14px !important; font-weight: normal; } .dropdown-big .dropdown-menu h6 a:hover{ color: #555 !important; text-decoration: none; } .dropdown-big .dropdown-menu li{ line-height: 15px; } .dropdown-big .dropdown-menu li p{ padding:5px 0px; } .dropdown-menu { background-clip: padding-box; background-color: #fff; border: 1px solid rgba(0, 0, 0, 0.15); border-radius: 4px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); display: none; float: left; font-size: 15px; left: 0; list-style: outside none none; margin: 2px 0 0; min-width: 160px; padding: 5px 0; position: absolute; text-align: left; top: 100%; z-index: 1000; } .dropdown-menu li{ color: #777; font-size: 12px; line-height: 18px; } .dropdown-menu li > a{ color: #333; line-height: 25px; font-weight:bold; } .dropdown-menu li > a:hover{ background: #f3f3f3 !important; filter:none; color: #333; } .dropdown-menu .progress{ height:8px; } /* Navbar */ .navbar *{ /*font-weight: normal !important;*/ text-shadow:none !important; } .navbar{ background-image: linear-gradient(to bottom, #40366c 0px, #2c254a 100%); background-repeat: repeat-x; background-color: #2c254a; border-color: #181428; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); } .navbar .caret{ border-top-color: #666; border-bottom-color: #666; } .navbar-brand{ color:#777; font-size:23px; font-weight:bold; padding-top:8px; } .navbar-brand:hover{ color:#777; } .navbar-toggle{ background:#f2f2f2; border:1px solid #ccc; border-radius:4px; } .navbar-toggle:hover{ background:#ddd; } .navbar li a{ font-size: 12px !important; } .navbar-nav > li > a{ font-size: 15px !important; font-family:"PT Sans","Trebuchet","Seravek",sans-serif; color:#eee; font-weight: bold; } .navbar li a:hover{ } .navbar i{ margin-right: 4px; } .navbar .btn{ color: #666 !important; } .navbar .label{ padding:5px 7px !important; font-size:11px; border-radius:10px; } .navbar .label i{ margin-right: 0px; } .navbar .progress{ margin-bottom: 0px; padding: 0px !important; margin: 0px !important; } /* Header */ header{ border-top: 1px solid #ccc; padding: 25px 0px 15px 0px; background: #fafafa url("../images/cream.png") repeat; border-bottom: 1px solid #ddd; } header .container { width:100%; max-width: 100%; } header .logo{ margin-top: 0px; margin-bottom: 10px; padding-left: 10px; } header .logo h1 a, header .logo h1 a:visited, header .logo h1 a:hover{ font-size: 35px; color: #777; text-decoration: none; font-weight: normal; } header .logo .meta{ color: #888; line-height: 15px; padding: 0px; margin: 0px; } header .nav.nav-pills{ margin-bottom: 10px; margin-top: 15px; } header .nav.nav-pills > li > a{ color: #666; text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); background-color: #f5f5f5; background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6)); background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6); background-image: -o-linear-gradient(top, #ffffff, #e6e6e6); background-image: linear-gradient(to bottom, #ffffff, #e6e6e6); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0); border-color: #e6e6e6 #e6e6e6 #bfbfbf; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); *background-color: #e6e6e6; /* Darken IE7 buttons by default so they stand out more given they won't have borders */ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); border: 1px solid #ccc; *border: 0; border-bottom-color: #c2c2c2; border-radius: 5px; *margin-left: .3em; margin-right: 5px; padding:7px 14px; } header .nav.nav-pills > li > a:hover, header .nav.nav-pills > li > a:focus{ color: #444; background-color: #e6e6e6; *background-color: #d9d9d9; text-decoration: none; border:1px solid #aaa; background-position: 0 -15px; -webkit-transition: background-position 0.1s linear; -moz-transition: background-position 0.1s linear; -o-transition: background-position 0.1s linear; transition: background-position 0.1s linear; } header .nav.nav-pills > li > a span{ border-radius:40px; padding:4px 6px; font-size:11px; display:inline-block; text-shadow:none !important; } header .nav-pills .open .dropdown-toggle{ color: #444; background-color: #e6e6e6; *background-color: #d9d9d9; text-decoration: none; background-position: 0 -15px; -webkit-transition: background-position 0.1s linear; -moz-transition: background-position 0.1s linear; -o-transition: background-position 0.1s linear; transition: background-position 0.1s linear; } header .header-data{ margin-top: 15px; } header .header-data .hdata{ display: inline-block; width: 85px; margin-right: 15px; } header .header-data .hdata i{ display: inline-block; height: 40px; width: 40px; line-height: 40px; font-size: 17px; text-align: center; color: #fff; border-radius: 50px; box-shadow: inset 0px 0px 1px #777; } header .header-data .hdata p, header .header-data .hdata a, header .header-data .hdata a:hover{ display: block; line-height: 16px; font-weight: bold; font-size: 14px; text-align: center; margin-top: 3px; color: #666; } header .header-data .hdata em{ display: block; font-weight: normal; font-style: normal; font-size: 12px; } /* Notification */ .noty_text{ font-size: 12px; line-height: 20px; } /* Sidebar */ .sidebar{ width: 260px; float: left; display: block; background:#f2f2f2; color: #777; position: relative; } .sidebar .sidebar-dropdown{ display: none; } .sidebar .sidebar-dropdown a{ color: #fff !important; box-shadow: inset 0px 0px 1px #000; background-color: #343434; background: -webkit-gradient(linear, left top, left bottom, from(#343434), to(#292929)); background: -webkit-linear-gradient(top, #343434, #292929); background: -moz-linear-gradient(top, #343434, #292929); background: -ms-linear-gradient(top, #343434, #292929); background: -o-linear-gradient(top, #343434, #292929); background: linear-gradient(top, #343434, #292929); padding:6px; text-transform: uppercase; text-align: center; font-size: 11px; display: block; border-top: 2px solid #666; border-bottom: 1px solid #333; } .sidebar ul{ padding: 0px; margin: 0px; } .sidebar ul li{ list-style-type: none; } .sidebar #nav { display: block; width:100%; margin:0 auto; position: absolute; z-index: 60; } .sidebar #nav li i{ display:inline-block; margin-right: 5px ; background: #eee ; color:#888; width: 38px; height: 38px; line-height: 38px; text-align: center; border-radius: 30px; border: 1px solid #ccc; } .sidebar #nav li span i{ margin: 0px; color: #999; background: transparent !important; border: 0px; } .sidebar #nav > li > a { display: block; padding: 10px 20px; font-size: 13px; color: #777; text-decoration: none; border-bottom: 1px solid #ccc; border-top: 1px solid #fff; background-color: #f8f8f8; background: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#f2f2f2)); background: -webkit-linear-gradient(top, #f9f9f9, #f2f2f2); background: -moz-linear-gradient(top, #f9f9f9, #f2f2f2); background: -ms-linear-gradient(top, #f9f9f9, #f2f2f2); background: -o-linear-gradient(top, #f9f9f9, #f2f2f2); background: linear-gradient(top, #f9f9f9, #f2f2f2); box-shadow: inset 0px 1px 1px #fff; } .sidebar #nav > li > a:hover, .sidebar #nav > li.open > a { color: #e9e9e9; border-bottom: 1px solid #167cac; border-top: 1px solid #2094ca; background-color: #aaa; background: -webkit-gradient(linear, left top, left bottom, from(#1aaef3), to(#0993d3)); background: -webkit-linear-gradient(top, #1aaef3, #0993d3); background: -moz-linear-gradient(top, #1aaef3, #0993d3); background: -ms-linear-gradient(top, #1aaef3, #0993d3); background: -o-linear-gradient(top, #1aaef3, #0993d3); background: linear-gradient(top, #1aaef3, #0993d3); box-shadow: none; color: #fff; font-weight: bold; } .sidebar #nav > li > a:hover i, .sidebar #nav > li.open > a i{ color: #fff; background-color: #167cac !important; border: 1px solid #167cac; } .sidebar #nav > li > a:hover span i, .sidebar #nav > li.open > a span i{ color: #fff; background: transparent !important; border: 0px; } .sidebar #nav li li.current{ background:#f3f3f3; } .sidebar #nav li ul { display: none; background: #efefef url("../images/cream.png") repeat; } .sidebar #nav li ul li a { display: block; background: none; padding: 10px 0px; padding-left: 30px; text-decoration: none; color: #777; border-bottom: 1px solid #ddd; box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.1); } .sidebar #nav li ul li a:hover { background: #eee; border-bottom: 1px solid #ddd; } .sidebar #nav li.open ul{ display: block !important; } /* Main */ .mainbar{ position: relative; margin-left: 0px; margin-right: 0px; width: auto; z-index: 50; /*min-height: 800px;*/ } .mainbar .container{ max-width:100% !important; /*width: 100% !important;*/ } /* Pagination*/ .pagination{ margin: 10px 0px 5px 0px; } .pagination ul > li > a, .pagination ul > li > span { border: 1px solid #aaa; margin-right: 2px; border-radius: 5px !important; padding: 2px 8px; background-color: #f8f8f8; background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f2f2f2)); background: -webkit-linear-gradient(top, #f8f8f8, #f2f2f2); background: -moz-linear-gradient(top, #f8f8f8, #f2f2f2); background: -ms-linear-gradient(top, #f8f8f8, #f2f2f2); background: -o-linear-gradient(top, #f8f8f8, #f2f2f2); background: linear-gradient(top, #f8f8f8, #f2f2f2); box-shadow: inset 0px 2px 1px #fff; color: #666; } .pagination ul > li > a:hover{ color: #333; } /* Data tables */ .page-tables #data-table{ margin-bottom: 20px; } .page-tables .dataTables_length{ margin-top:5px; margin-bottom:5px; font-size:12px; font-weight:normal; } .page-tables .dataTables_length select{ border-color: #ddd; border-radius: 2px; } .page-tables .dataTables_filter{ margin-top:5px; margin-bottom:5px; font-size:12px; font-weight:normal; } .page-tables .dataTables_filter input{ border-radius:3px; border:1px solid #ddd; padding:3px; line-height:12px; } .page-tables #data-table{ border:1px solid #ddd; } .page-tables table#data-table thead th{ padding:7px 10px; font-weight:normal; border-bottom:0px; } .page-tables table#data-table tfoot th{ border-top:1px solid #ddd; padding:7px 10px; font-weight:normal; background:#fff; } .page-tables table#data-table td{ background:#fcfcfc; border-top:1px solid #ddd; } .page-tables .dataTables_info{ margin-bottom:20px; } .page-tables .dataTables_paginate{ margin-bottom:20px; } .page-tables .dataTables_paginate a{ background:#fff; border:1px solid #ddd; border-radius:2px; margin-right:2px; padding: 5px 10px; color: #aaa; } .page-tables .dataTables_paginate a:hover{ background:#f8f8f8; } .page-tables .dataTables_paginate a.paginate_active{ background:#f8f8f8; } /* Page head */ .mainbar .page-head{ background-color: #f8f8f8; background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f2f2f2)); background: -webkit-linear-gradient(top, #f8f8f8, #f2f2f2); background: -moz-linear-gradient(top, #f8f8f8, #f2f2f2); background: -ms-linear-gradient(top, #f8f8f8, #f2f2f2); background: -o-linear-gradient(top, #f8f8f8, #f2f2f2); background: linear-gradient(top, #f8f8f8, #f2f2f2); padding: 8px 20px 0; min-height: 52px; border-bottom: 1px solid #fff; box-shadow: inset 0px 1px 1px #fff; } .mainbar .page-head h2{ font-weight: normal; font-size: 20px; } /* Bread crumb */ .mainbar .bread-crumb{ font-size: 11px; margin-top: 10px; color: #aaa; } .mainbar .bread-crumb i{ margin-right: 3px; } .mainbar .bread-crumb .divider{ margin: 0px 3px; } .mainbar .bread-crumb a{ color: #666; } .mainbar .bread-crumb a.bread-current{ color: #888; } /* Matter */ .mainbar .matter{ border-top: 1px solid #ddd; padding: 15px 0px; } /* Widget */ .widget { border: 1px solid #c9c9c9; border-radius: 3px; margin-top: 10px; margin-bottom: 20px; background: #fafafa url('../images/cream.png') repeat; } .widget p{ margin: 3px 0px 5px 0px !important; line-height: 20px; } .widget hr{ margin: 8px 0px; border-top: 1px solid #ccc; border-bottom: 1px solid #fff; } .widget .table *{ border-color:#e8e8e8 !important; } .widget .table.table-bordered{ margin-bottom:0px; border:0px; } .widget .table.table-bordered tr th{ border-top:0px; border-left:0px; } .widget .table.table-bordered tr th:last-child{ border-right:0px; } .widget .table.table-bordered tr:first-child td{ border-top:0px; } .widget .table.table-bordered tr:last-child td{ border-bottom:0px; } .widget .table.table-bordered td{ border-right:1px solid #ddd; } .widget .table.table-bordered tr td:first-child{ border-left:0px; } .widget .table.table-bordered td:last-child{ border-right:0px; } .widget.wblack{ background: #fafafa url('../images/black.png') repeat; color: #ddd; border: 1px solid #222; } .widget.wblack hr{ border-top: 1px solid #444; border-bottom: 1px solid #222; } .widget.wblack a{ color: #aaa; } .widget.wblack a:hover{ color: #888; } .widget .padd, .modal-body{ padding: 13px 15px; } .widget .widget-head,.modal-header{ background-color: #f8f8f8; background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f2f2f2)); background: -webkit-linear-gradient(top, #f8f8f8, #f2f2f2); background: -moz-linear-gradient(top, #f8f8f8, #f2f2f2); background: -ms-linear-gradient(top, #f8f8f8, #f2f2f2); background: -o-linear-gradient(top, #f8f8f8, #f2f2f2); background: linear-gradient(top, #f8f8f8, #f2f2f2); border-top-right-radius: 3px; border-top-left-radius: 3px; text-shadow:0px 1px #fff; border-bottom: 1px solid #ccc; border-top: 1px solid #fff; color: #666; font-size: 13px; font-weight: bold; padding: 8px 15px; } .widget.wblack .widget-head{ background-color: #333; background: -webkit-gradient(linear, left top, left bottom, from(#333), to(#111)); background: -webkit-linear-gradient(top, #333, #111); background: -moz-linear-gradient(top, #333, #111); background: -ms-linear-gradient(top, #333, #111); background: -o-linear-gradient(top, #333, #111); background: linear-gradient(top, #333, #111); text-shadow:0px 1px #000; border-bottom: 1px solid #555; border-top: 1px solid #666; box-shadow: inset 0px 1px 1px #444; color: #ccc; } .widget .widget-head .widget-icons i{ font-size: 14px; margin: 0px 4px; } .widget .widget-head .widget-icons a{ color: #aaa; } .widget .widget-head .widget-icons a:hover{ color: #999; } .widget.wblack .widget-head .widget-icons i{ font-size: 14px; margin: 0px 4px; } .widget .widget-foot, .modal-footer{ background-color: #f8f8f8; background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f2f2f2)); background: -webkit-linear-gradient(top, #f8f8f8, #f2f2f2); background: -moz-linear-gradient(top, #f8f8f8, #f2f2f2); background: -ms-linear-gradient(top, #f8f8f8, #f2f2f2); background: -o-linear-gradient(top, #f8f8f8, #f2f2f2); background: linear-gradient(top, #f8f8f8, #f2f2f2); border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; text-shadow:0px 1px #fff; border-bottom: 1px solid #fff; border-top: 1px solid #ccc; padding: 8px 15px; font-size: 12px; color: #555; box-shadow: inset 0px 1px 1px #fff; } .widget.wblack .widget-foot{ background-color: #111; background: -webkit-gradient(linear, left top, left bottom, from(#222), to(#111)); background: -webkit-linear-gradient(top, #222, #111); background: -moz-linear-gradient(top, #222, #111); background: -ms-linear-gradient(top, #222, #111); background: -o-linear-gradient(top, #222, #111); background: linear-gradient(top, #222, #111); text-shadow:0px 1px #000; border-bottom: 1px solid #000; border-top: 1px solid #222; color: #aaa; box-shadow: inset 0px 1px 1px #444; } /* Widget white extras */ .widget .nav-tabs > li a { padding: 5px 10px; } .widget .nav-tabs { margin-bottom: 5px; } .widget .tab-content{ margin-bottom: 10px; } /* Widget black extras */ .widget.wblack .btn-inverse{ border: 1px solid #212121; } .widget.wblack a.btn-primary, .widget.wblack a.btn-primary:hover, .widget.wblack a.btn-warning, .widget.wblack a.btn-warning:hover, .widget.wblack a.btn-danger, .widget.wblack a.btn-danger:hover, .widget.wblack a.btn-success, .widget.wblack a.btn-success:hover, .widget.wblack a.btn-info, .widget.wblack a.btn-info:hover, .widget.wblack a.btn-inverse, .widget.wblack a.btn-inverse:hover{ color: #fff; } .widget.wblack .form-actions{ border-radius: 5px; background-color: #111; background: -webkit-gradient(linear, left top, left bottom, from(#222), to(#111)); background: -webkit-linear-gradient(top, #222, #111); background: -moz-linear-gradient(top, #222, #111); background: -ms-linear-gradient(top, #222, #111); background: -o-linear-gradient(top, #222, #111); background: linear-gradient(top, #222, #111); border: 1px solid #111; box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.1); } .widget.wblack h2, .widget.wblack h3, .widget.wblack h4, .widget.wblack h5, .widget.wblack h6{ color: #ddd; } .widget.wblack blockquote{ border-left: 3px solid #555; } .widget.wblack .pagination ul > li > a, .widget.wblack .pagination ul > li > span { background-color: #111; background: -webkit-gradient(linear, left top, left bottom, from(#222), to(#111)); background: -webkit-linear-gradient(top, #222, #111); background: -moz-linear-gradient(top, #222, #111); background: -ms-linear-gradient(top, #222, #111); background: -o-linear-gradient(top, #222, #111); background: linear-gradient(top, #222, #111); box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.1); border: 1px solid #161616; } .widget.wblack .pagination ul > li > a:hover{ background: #222; } .widget.wblack .table td{ border-top: 1px solid #222; } .widget.wblack .table tr:hover{ background: rgba(255,255,255,0.1); } .widget.wblack .nav-tabs > .active > a, .widget.wblack .nav-tabs > .active > a:hover { background: #222; } .widget.wblack .nav-tabs { margin-bottom: 5px; border-bottom: 1px solid #222; } .widget.wblack .nav-tabs > li a { padding: 5px 10px; background-color: #111; background: -webkit-gradient(linear, left top, left bottom, from(#222), to(#111)); background: -webkit-linear-gradient(top, #222, #111); background: -moz-linear-gradient(top, #222, #111); background: -ms-linear-gradient(top, #222, #111); background: -o-linear-gradient(top, #222, #111); background: linear-gradient(top, #222, #111); border: 1px solid #222; border-bottom: 0px; box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.1); color: #ccc; font-weight: bold; margin-right: 5px; } .widget.wblack .nav-tabs > li a:hover { background: #222; } .widget.wblack .nav-tabs > li.active { border-bottom: 0px; } .widget.wblack .nav-tabs > li.active a { color: #fff; background: #333 url('../images/back.png'); border-bottom: 0px; } .widget.wblack .nav-tabs > li.active a:hover { background: #333 url('../images/back.png'); border-bottom: 0px; } .widget.wblack .tab-content{ margin-bottom: 10px; } /* Calendar */ .fc-header-title h2 { font-size: 15px; line-height: 20px; } .fc-event-skin { background-color: #ff5d5e; border-color: #ff3839; } .fc-button-month, .fc-button-agendaWeek, .fc-button-agendaDay { margin-top: -48px; right: 20px; } .fc-widget-header { padding: 7px 0px !important; color: #666; background: #eee; border-color: #ccc; } .fc-content { background: #fff; } .fc-content td:hover{ background: #f3f3f3; } /* Current status */ .current-status{ list-style-type: none; padding: 0px; margin: 0px; } .current-status .bold{ font-size: 13px; margin-left: 8px; } .current-status li{ padding: 10px 0px; } /* Today datas */ .today-datas{ list-style-type: none; padding: 0px; margin: 10px 0px; } .today-datas li{ display: inline-block; margin-bottom: 5px; margin-right: 10px; padding: 10px 20px; background-color: #f8f8f8; background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f2f2f2)); background: -webkit-linear-gradient(top, #f8f8f8, #f2f2f2); background: -moz-linear-gradient(top, #f8f8f8, #f2f2f2); background: -ms-linear-gradient(top, #f8f8f8, #f2f2f2); background: -o-linear-gradient(top, #f8f8f8, #f2f2f2); background: linear-gradient(top, #f8f8f8, #f2f2f2); background: #f8f8f8 url("../images/cream.png") repeat; text-shadow:0px 1px #fff; border: 1px solid #ccc; box-shadow: inset 0px 0px 3px #fff; max-width: 100%; text-align: center; } .today-datas li .datas-text{ font-size: 11px; padding: 7px 0px 0px 0px; font-weight: normal; } /* Error */ .error-page{ max-width: 500px; margin: 50px auto; } .error-page .container{ max-width:100%; width:100%: } .error h1{ font-weight: normal; } /* Grid */ .show-grid div{ background: #eee; text-align: center; margin: 10px 0px; border: 1px solid #ddd; } /* Date & Time Picker */ .dtpicker{ max-width:200px; } /* Slider */ #eq span { height:120px; float:left; margin:15px } .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.1em; height: 1.1em; cursor: default; border-radius: 50px; background: #fafafa !important; border: 1px solid #ccc !important; } .ui-slider-horizontal { height: .6em; border: 1px solid #ccc !important; background: #fff !important; border-radius: 3px; } .ui-slider-vertical { height: 100px; width: 0.6em; border: 1px solid #ccc !important; background: #fff !important; border-radius: 3px; } #master1, #master2, #master3, #master4, #master5, #master6{ width: 100%; margin:15px 0px !important; } .ui-widget-header{ border-radius: 3px !important; } .slider-red .ui-widget-header{ background: #dd514c !important; border-color: #dd514c !important; } .slider-blue .ui-widget-header{ background: #36a5c6 !important; border-color: #36a5c6 !important; } .slider-green .ui-widget-header{ background: #44c636 !important; border-color: #44c636 !important; } .slider-yellow .ui-widget-header{ background: #fcd419 !important; border-color: #fcd419 !important; } .slider-orange .ui-widget-header{ background: #fc9419 !important; border-color: #fc9419 !important; } .slider-violet .ui-widget-header{ background: #9919fc !important; border-color: #9919fc !important; } /* Toggle button */ .sw-green .onoffswitch-inner:before { background-color: #51d466; } .sw-red .onoffswitch-inner:before { background-color: #f75353; } .sw-lblue .onoffswitch-inner:before { background-color: #32c8de; } .sw-orange .onoffswitch-inner:before { background-color: #f78153; } .sw-blue .onoffswitch-inner:before { background-color: #609cec; } /* Gallery */ .gallery img{ max-width: 170px; margin: 5px; padding: 1px; border: 1px solid #aaa; border-radius: 5px; } /* Error log */ .error-log{ height: 300px; overflow: auto; font-family: "Courier New", monospace; } .error-log ul{ list-style-type: none; margin: 0px; padding: 0px; } .error-log .green{ color: #61c221; } .error-log .red{ color: #ff0000; } /* Media */ .medias .checker { width: 5px !important; } .medias img{ padding: 1px; background: #fff; border: 1px solid #aaa; max-width: 40px; } /* CL Editor */ .cleditorMain{ border: 1px solid #ccc; margin: 10px 0px; } .cleditorMain textarea, .cleditorMain iframe{ width: 100% !important; } /* Chart */ #bar-chart,#bar-chart-black,#curve-chart,#live-chart,#pie-chart,#pie-chart2,#pie-chart3{ height: 250px; max-width: 100%; } #pie-chart,#pie-chart2,#pie-chart3{ max-width: 300px; margin: 10px auto; } /* Support page */ .support-faq form input{ padding-left:8px; margin:10px 0px; border-radius:3px; border:1px solid #aaa; } #slist p{ display: none; margin:5px 0px; padding:5px 10px; background:#fff; line-height: 25px; border:1px solid #eee; } #slist{ margin-left: 20px; } #slist li{ margin-bottom: 10px; } #slist li a{ display: block; margin-bottom: 0px; } /* Post form */ .post{ margin-top: 20px; } /* Login and Register form */ .admin-form{ max-width: 500px; margin: 50px auto; } .admin-form .container{ width:100% !important; max-width:100% !important; } .admin-form form{ padding: 10px 0px; } /* Widget-Content */ .widget-content .error .form-inline button{ margin-left:-2px; padding:8px 12px; } .chats{ padding-left:0px; margin-left:0px; } .recent{ padding-left:0px; margin-left:0px; } .widget-foot .form-inline button { margin-left: -3px; padding:7px 12px; } .widget-content .form-inline button { margin-left: 0px; padding:7px 12px; } .buttons button{ margin-top:10px; } .widget-content ol#slist{ padding:0px; } .task i { display:inline-block; width: 30px; height: 17px; background: #ccc; text-align: center; border-radius: 50px; font-size: 10px; line-height: 17px; } .pagination li a{ color:#777; } /* Footer */ footer{ background-color: #f8f8f8; background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f2f2f2)); background: -webkit-linear-gradient(top, #f8f8f8, #f2f2f2); background: -moz-linear-gradient(top, #f8f8f8, #f2f2f2); background: -ms-linear-gradient(top, #f8f8f8, #f2f2f2); background: -o-linear-gradient(top, #f8f8f8, #f2f2f2); background: linear-gradient(top, #f8f8f8, #f2f2f2); padding:10px 0px; color: #777; font-size: 12px; border-top: 3px solid #ddd; } footer .container{ width:100%; max-width:100% !important; } footer a, footer a:visited{ color: #444; } footer a:hover{ color: #333; text-decoration: underline; } footer .copy{ font-size: 11px; } /* Responsive */ @media (max-width: 480px){ .mainbar .page-head h2{ float: none; } .mainbar .bread-crumb{ float: none; margin-top: 10px; } .col-left{ width: 100%; float: none; margin-right: none; } .col-right{ width: 100%; float: none; } .fc-button-month, .fc-button-agendaWeek, .fc-button-agendaDay { display: none; } } @media (max-width: 767px){ .form-inline button{ margin-left:0px; } header{ padding-top: 0px !important; padding-bottom: 20px !important; } header .logo{ padding: 0px; display: none; } header .nav.nav-pills{ margin-top: 30px; margin-bottom: 20px; margin-left:20px; } header .header-data { margin-top: 15px; margin-left: 20px; } .navbar{ margin-top: 0px !important; margin-bottom: 0px !important; } .nav-collapse .dropdown-menu{ padding: 10px 10px !important; } .nav-collapse .dropdown-menu > li{ color: #999 !important; } .nav-collapse .dropdown-menu a { color: #777; } .nav-collapse .dropdown-menu a:hover{ color: #888; background:transparent !important; } .nav-collapse .dropdown-menu hr{ border-top: 1px solid #eee; border-bottom: 1px solid #ccc; } .sidebar{ float: none; width: 100%; } .sidebar .sidebar-dropdown{ display: block; } .sidebar #nav{ display: none; } .mainbar{ float: none; margin:0px; border:0px; } .today-datas{ text-align: center; } } @media (min-width: 768px) and (max-width: 991px){ .form{ margin: 0px !important; } form .control-group{ margin:0px !important; } form .control-label{ float: none !important; width: auto !important; text-align: left !important; } form .controls{ float: none !important; margin-left: 0px !important; } form .form-actions{ padding-left: 0px !important; } .navbar{ margin-top: 0px !important; margin-bottom: 0px !important; } .nav-collapse .dropdown-menu{ padding: 10px 10px !important; } .nav-collapse .dropdown-menu > li{ color: #999 !important; } .nav-collapse .dropdown-menu a { color: #777; } .nav-collapse .dropdown-menu a:hover{ color: #888; background:transparent !important; } .nav-collapse .dropdown-menu hr{ border-top: 1px solid #eee; border-bottom: 1px solid #ccc; } .sidebar{ width: 200px; } .mainbar{ margin-left: 200px; } header{ padding-top:10px; } header .nav.nav-pills{ margin-top: 30px; margin-bottom: 20px; margin-left:20px; } header .header-data { margin-top: 15px; margin-left: 20px; } header .logo{ padding: 0px; display: none; } } /* Customizations */ #media-strip{ font-size: 25px; margin-top:15px; } #media-strip a i { margin-right: 5px; } #media-strip a:hover{ cursor: pointer; } .list-side-by-side li{ list-style-type: none; display: block; float: left; } @media (min-width: 979px) { ul.nav li.dropdown:hover > ul.dropdown-menu { display: block; } } .content{ padding: 50px 0 20px 50px; background:#eee url("../images/main-back.png") repeat; } ul.pagination { display: inline-block; margin: 0; } ul.pagination li {display: inline;float: left;} ul.pagination li a { color: black; float: left; padding: 8px 16px; text-decoration: none; transition: background-color .3s; } ul.pagination li a.active { background-color: #4CAF50; color: white; } ul.pagination li a:hover:not(.active) {background-color: #ddd;}
emonitor/monitor/inc/monitor-test.min.css
sambandi/eMonitor
@media screen and (min-width:1081px){#area{background:#000 url(/monitor/inc/test_h.png) no-repeat}}@media screen and (max-width:1080px){#area{background:#000 url(/monitor/inc/test_v.png) no-repeat}}body{color:#fff}div.version{background:url(/img/logo.png) no-repeat 0 0 transparent;position:absolute;left:2px;bottom:2px;height:30px;padding-left:30px}div.versiontext{clear:both;position:fixed;bottom:5px;left:30px}div.versiontext small{color:#ababab}div.footer{position:fixed;left:0;right:0;bottom:0;height:20px;background-color:#333 !important;border-top:1px solid #6e6e6e}div.time{float:right;color:#ababab;padding-right:5px;padding-top:2px;font-size:12px}#activecount{position:absolute;top:2px;right:2px;color:#fff;font-size:20px}
themes/simons_quest/style.css
yabhinav/FeedNotifier
@font-face { font-family:'pixelette'; src:url('{{absdir}}/pixelette.eot'); src: local('pixelette'), url('{{absdir}}/pixelette.ttf') format('truetype'); } body { margin: 0; padding: 0; cursor: default; font-family: pixelette; } #icon { margin: 8px; float: left; } #icon img { border: 0; filter:progid:DXImageTransform.Microsoft.Pixelate(maxsquare=4); } #item-title { font-size: 18px; margin-bottom: 6px; color: #ffffff; float: left; } #item-title a { text-decoration: none; color: #0056ff; } #item-description { clear:both; font-size: 12px; margin: 4px; } #footer #next { border: 0; float: right; margin-right: 8px; }
third_party/angle/third_party/VK-GL-CTS/src/scripts/qpa_image_viewer.html
endlessm/chromium-browser
<!-- -------------------------------------- HTML QPA Image Viewer -------------------------------------- Copyright (c) 2020 The Khronos Group Inc. Copyright (c) 2020 Valve Corporation. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <html> <head> <meta charset="utf-8"/> <title>Load PNGs from QPA output</title> <style> body { background: white; text-align: left; font-family: sans-serif; } h1 { margin-top: 2ex; } h2 { font-size: large; } figure { display: flex; flex-direction: column; } img { margin-right: 1ex; margin-bottom: 1ex; /* Attempt to zoom images using the nearest-neighbor scaling algorithm. Unfortunately, not supported under Firefox at the time this text is being written. */ image-rendering: pixelated; /* Use a black background color for images in case some pixels are transparent to some degree. In the worst case, the image could appear to be missing. */ background: black; } button { margin: 1ex; border: none; border-radius: .5ex; padding: 1ex; background-color: steelblue; color: white; font-size: large; } button:hover { opacity: .8; } #clearimagesbutton { background-color: seagreen; } select { font-size: large; padding: 1ex; border-radius: .5ex; border: 1px solid darkgrey; } select:hover { opacity: .8; } .loadoption { text-align: center; margin: 1ex; padding: 2ex; border: 1px solid darkgrey; border-radius: 1ex; } #options { display: flex; flex-wrap: wrap; } #qpatext { display: block; min-width: 80ex; max-width: 132ex; min-height: 25ex; max-height: 25ex; margin: 1ex auto; } #fileselector { display: none; } #zoomandclear { margin: 2ex; } #images { margin: 2ex; display: flex; flex-direction: column; } .imagesblock { display: flex; flex-wrap: wrap; } </style> </head> <body> <h1>Load PNGs from QPA output</h1> <div id="options"> <div class="loadoption"> <h2>Option 1: Load local QPA files</h2> <!-- The file selector text cannot be changed, so we use a hidden selector trick. --> <button id="fileselectorbutton">&#x1F4C2; Load files</button> <input id="fileselector" type="file" multiple> </div> <div class="loadoption"> <h2>Option 2: Paste QPA text or text extract containing &lt;Image&gt; elements below and click "Load images"</h2> <textarea id="qpatext"></textarea> <button id="loadimagesbutton">&#x1F4C3; Load images</button> </div> </div> <div id="zoomandclear"> &#x1F50E; Image zoom <select id="zoomselect"> <option value="1" selected>1x</option> <option value="2">2x</option> <option value="4">4x</option> <option value="8">8x</option> <option value="16">16x</option> <option value="32">32x</option> </select> <button id="clearimagesbutton">&#x267B; Clear images</button> </div> <div id="images"></div> <script> // Returns zoom factor as a number. var getSelectedZoom = function () { return new Number(document.getElementById("zoomselect").value); } // Scales a given image with the selected zoom factor. var scaleSingleImage = function (img) { var factor = getSelectedZoom(); img.style.width = (img.naturalWidth * factor) + "px"; img.style.height = (img.naturalHeight * factor) + "px"; } // Rescales all <img> elements in the page. Used after changing the selected zoom. var rescaleImages = function () { var imageList = document.getElementsByTagName("img"); for (var i = 0; i < imageList.length; i++) { scaleSingleImage(imageList[i]) } } // Removes everything contained in the images <div>. var clearImages = function () { var imagesNode = document.getElementById("images"); while (imagesNode.hasChildNodes()) { imagesNode.removeChild(imagesNode.lastChild); } } // Returns a properly sized image with the given base64-encoded PNG data. var createImage = function (pngData, imageName) { var imageContainer = document.createElement("figure"); if (imageName.length > 0) { var newFileNameHeader = document.createElement("figcaption"); newFileNameHeader.textContent = escape(imageName); imageContainer.appendChild(newFileNameHeader); } var newImage = document.createElement("img"); newImage.src = "data:image/png;base64," + pngData; newImage.onload = (function () { // Grab the image for the callback. We need to wait until // the image has been properly loaded to access its // naturalWidth and naturalHeight properties, needed for // scaling. var cbImage = newImage; return function () { scaleSingleImage(cbImage); }; })(); imageContainer.appendChild(newImage); return imageContainer; } // Returns a new h3 header with the given file name. var createFileNameHeader = function (fileName) { var newHeader = document.createElement("h3"); newHeader.textContent = fileName; return newHeader; } // Returns a new image block to contain images from a file. var createImagesBlock = function () { var imagesBlock = document.createElement("div"); imagesBlock.className = "imagesblock"; return imagesBlock; } // Processes a chunk of QPA text from the given file name. Creates // the file name header and a list of images in the images <div>, as // found in the text. var processText = function(textString, fileName) { var imagesNode = document.getElementById("images"); var newHeader = createFileNameHeader(fileName); imagesNode.appendChild(newHeader); var imagesBlock = createImagesBlock(); // [\s\S] is a match-anything regexp like the dot, except it // also matches newlines. Ideally, browsers would need to widely // support the "dotall" regexp modifier, but that's not the case // yet and this does the trick. // Group 1 are the image element properties, if any. // Group 2 is the base64 PNG data. var imageRegexp = /<Image\b(.*?)>([\s\S]*?)<\/Image>/g; var imageNameRegexp = /\bName="(.*?)"/; var result; var innerResult; var imageName; while ((result = imageRegexp.exec(textString)) !== null) { innerResult = result[1].match(imageNameRegexp); imageName = ((innerResult !== null) ? innerResult[1] : ""); // Blanks need to be removed from the base64 string. var pngData = result[2].replace(/\s+/g, ""); imagesBlock.appendChild(createImage(pngData, imageName)); } imagesNode.appendChild(imagesBlock); } // Loads images from the text in the text area. var loadImages = function () { processText(document.getElementById("qpatext").value, "<Pasted Text>"); } // Loads images from the files in the file selector. var handleFileSelect = function (evt) { var files = evt.target.files; for (var i = 0; i < files.length; i++) { // Creates a reader per file. var reader = new FileReader(); // Grab the needed objects to use them after the file has // been read, in order to process its contents and add // images, if found, in the images <div>. reader.onload = (function () { var cbFileName = files[i].name; var cbReader = reader; return function () { processText(cbReader.result, cbFileName); }; })(); // Reads file contents. This will trigger the event above. reader.readAsText(files[i]); } } // File selector trick: click on the selector when clicking on the // custom button. var clickFileSelector = function () { document.getElementById("fileselector").click(); } // Clears selected files to be able to select them again if needed. var clearSelectedFiles = function() { document.getElementById("fileselector").value = ""; } // Set event handlers for interactive elements in the page. document.getElementById("fileselector").onclick = clearSelectedFiles; document.getElementById("fileselector").addEventListener("change", handleFileSelect, false); document.getElementById("fileselectorbutton").onclick = clickFileSelector; document.getElementById("loadimagesbutton").onclick = loadImages; document.getElementById("zoomselect").onchange = rescaleImages; document.getElementById("clearimagesbutton").onclick = clearImages; </script> </body> </html>
third_party/pmd/docs/xref/net/sourceforge/pmd/lang/ecmascript/Ecmascript3Handler.html
daejunpark/jsaf
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <title>Ecmascript3Handler xref</title> <link type="text/css" rel="stylesheet" href="../../../../../stylesheet.css" /> </head> <body> <div id="overview"><a href="../../../../../../apidocs/net/sourceforge/pmd/lang/ecmascript/Ecmascript3Handler.html">View Javadoc</a></div><pre> <a class="jxr_linenumber" name="1" href="#1">1</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="2" href="#2">2</a> <em class="jxr_javadoccomment"> * BSD-style license; for more info see <a href="http://pmd.sourceforge.net/license.html" target="alexandria_uri">http://pmd.sourceforge.net/license.html</a></em> <a class="jxr_linenumber" name="3" href="#3">3</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="4" href="#4">4</a> <strong class="jxr_keyword">package</strong> net.sourceforge.pmd.lang.ecmascript; <a class="jxr_linenumber" name="5" href="#5">5</a> <a class="jxr_linenumber" name="6" href="#6">6</a> <strong class="jxr_keyword">import</strong> java.io.Writer; <a class="jxr_linenumber" name="7" href="#7">7</a> <a class="jxr_linenumber" name="8" href="#8">8</a> <strong class="jxr_keyword">import</strong> net.sf.saxon.sxpath.IndependentContext; <a class="jxr_linenumber" name="9" href="#9">9</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.AbstractLanguageVersionHandler; <a class="jxr_linenumber" name="10" href="#10">10</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.Parser; <a class="jxr_linenumber" name="11" href="#11">11</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.ParserOptions; <a class="jxr_linenumber" name="12" href="#12">12</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.VisitorStarter; <a class="jxr_linenumber" name="13" href="#13">13</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.XPathHandler; <a class="jxr_linenumber" name="14" href="#14">14</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.ast.Node; <a class="jxr_linenumber" name="15" href="#15">15</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.ast.xpath.AbstractASTXPathHandler; <a class="jxr_linenumber" name="16" href="#16">16</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.ecmascript.ast.DumpFacade; <a class="jxr_linenumber" name="17" href="#17">17</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.ecmascript.ast.EcmascriptNode; <a class="jxr_linenumber" name="18" href="#18">18</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.ecmascript.rule.EcmascriptRuleViolationFactory; <a class="jxr_linenumber" name="19" href="#19">19</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.rule.RuleViolationFactory; <a class="jxr_linenumber" name="20" href="#20">20</a> <a class="jxr_linenumber" name="21" href="#21">21</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="22" href="#22">22</a> <em class="jxr_javadoccomment"> * Implementation of LanguageVersionHandler for the ECMAScript Version 3.</em> <a class="jxr_linenumber" name="23" href="#23">23</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="24" href="#24">24</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../net/sourceforge/pmd/lang/ecmascript/Ecmascript3Handler.html">Ecmascript3Handler</a> <strong class="jxr_keyword">extends</strong> <a href="../../../../../net/sourceforge/pmd/lang/AbstractLanguageVersionHandler.html">AbstractLanguageVersionHandler</a> { <a class="jxr_linenumber" name="25" href="#25">25</a> <a class="jxr_linenumber" name="26" href="#26">26</a> @Override <a class="jxr_linenumber" name="27" href="#27">27</a> <strong class="jxr_keyword">public</strong> <a href="../../../../../net/sourceforge/pmd/lang/XPathHandler.html">XPathHandler</a> getXPathHandler() { <a class="jxr_linenumber" name="28" href="#28">28</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../net/sourceforge/pmd/lang/ast/xpath/AbstractASTXPathHandler.html">AbstractASTXPathHandler</a>() { <a class="jxr_linenumber" name="29" href="#29">29</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> initialize() { <a class="jxr_linenumber" name="30" href="#30">30</a> } <a class="jxr_linenumber" name="31" href="#31">31</a> <a class="jxr_linenumber" name="32" href="#32">32</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> initialize(IndependentContext context) { <a class="jxr_linenumber" name="33" href="#33">33</a> } <a class="jxr_linenumber" name="34" href="#34">34</a> }; <a class="jxr_linenumber" name="35" href="#35">35</a> } <a class="jxr_linenumber" name="36" href="#36">36</a> <a class="jxr_linenumber" name="37" href="#37">37</a> <strong class="jxr_keyword">public</strong> <a href="../../../../../net/sourceforge/pmd/lang/rule/RuleViolationFactory.html">RuleViolationFactory</a> getRuleViolationFactory() { <a class="jxr_linenumber" name="38" href="#38">38</a> <strong class="jxr_keyword">return</strong> EcmascriptRuleViolationFactory.INSTANCE; <a class="jxr_linenumber" name="39" href="#39">39</a> } <a class="jxr_linenumber" name="40" href="#40">40</a> <a class="jxr_linenumber" name="41" href="#41">41</a> @Override <a class="jxr_linenumber" name="42" href="#42">42</a> <strong class="jxr_keyword">public</strong> <a href="../../../../../net/sourceforge/pmd/lang/ParserOptions.html">ParserOptions</a> getDefaultParserOptions() { <a class="jxr_linenumber" name="43" href="#43">43</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../net/sourceforge/pmd/lang/ecmascript/EcmascriptParserOptions.html">EcmascriptParserOptions</a>(); <a class="jxr_linenumber" name="44" href="#44">44</a> } <a class="jxr_linenumber" name="45" href="#45">45</a> <a class="jxr_linenumber" name="46" href="#46">46</a> <strong class="jxr_keyword">public</strong> <a href="../../../../../net/sourceforge/pmd/lang/Parser.html">Parser</a> getParser(<a href="../../../../../net/sourceforge/pmd/lang/ParserOptions.html">ParserOptions</a> parserOptions) { <a class="jxr_linenumber" name="47" href="#47">47</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../net/sourceforge/pmd/lang/ecmascript/Ecmascript3Parser.html">Ecmascript3Parser</a>(parserOptions); <a class="jxr_linenumber" name="48" href="#48">48</a> } <a class="jxr_linenumber" name="49" href="#49">49</a> <a class="jxr_linenumber" name="50" href="#50">50</a> @Override <a class="jxr_linenumber" name="51" href="#51">51</a> <strong class="jxr_keyword">public</strong> <a href="../../../../../net/sourceforge/pmd/lang/VisitorStarter.html">VisitorStarter</a> getDumpFacade(<strong class="jxr_keyword">final</strong> Writer writer, <strong class="jxr_keyword">final</strong> String prefix, <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">boolean</strong> recurse) { <a class="jxr_linenumber" name="52" href="#52">52</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../net/sourceforge/pmd/lang/VisitorStarter.html">VisitorStarter</a>() { <a class="jxr_linenumber" name="53" href="#53">53</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> start(Node rootNode) { <a class="jxr_linenumber" name="54" href="#54">54</a> <strong class="jxr_keyword">new</strong> <a href="../../../../../net/sourceforge/pmd/lang/ecmascript/ast/DumpFacade.html">DumpFacade</a>().initializeWith(writer, prefix, recurse, (EcmascriptNode) rootNode); <a class="jxr_linenumber" name="55" href="#55">55</a> } <a class="jxr_linenumber" name="56" href="#56">56</a> }; <a class="jxr_linenumber" name="57" href="#57">57</a> } <a class="jxr_linenumber" name="58" href="#58">58</a> } </pre> <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body> </html>
kernel/html/search/all_14.html
m-asama/soma
<!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.12"/> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="all_14.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">読み取り中…</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">検索中…</div> <div class="SRStatus" id="NoMatches">一致する文字列を見つけられません</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> </body> </html>
documentation/style/site.css
g2p/SimpleTAL
.navbar { margin-top: 2em; text-align: center; } h1 { margin-bottom: 0px; padding-bottom: 0px; } #subject { font-style: italic; margin-top: 0px; padding-top: 0px; } #footer { font-size: smaller; margin-top: 2em; } #footer p { padding: 0px; margin: 0px; } #version { margin-top: 2em; font-size: smaller; float: right; } code { font-size: small; margin-top: 0em; white-space: pre; font-family: monospace; overflow: auto; } p + code { margin-top: 0em; } /* To work around the block effect of using <pre> as well as <code> - more IE bugs */ pre { display: block; margin-top: 0px; margin-bottom: 0px; margin-left: 30px; line-height: 100%; } * Paragraphs in tables are small */ table p { margin: 0px; } /* Ordinary tables have borders. */ table { border: 1px solid black; } td { border: 1px solid black; } /* Nested tables do not. */ td table { border: 0px; } td table td { border: 0px; } /* Lists with paragraphs in them should not be spread out. */ li p { margin: 0px; } .configOptions { margin-left: 2em; }
third_lib/glm/0.9.9.5/share/man/html/search/functions_16.html
kumakoko/KumaGL
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://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.15"/> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="functions_16.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"><!-- /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */ createResults(); /* @license-end */ --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */ document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); /* @license-end */ --></script> </div> </body> </html>
frappe/public/js/frappe/list/list_item_row_head.html
gangadharkadam/v5_frappe
<div class="list-row list-row-head hidden-xs"> <div class="row doclist-row"> <div class="{% if (list.meta.title_field) { %} col-sm-8 col-xs-7 {% } else { %} col-sm-10 col-xs-9 {% } %} list-row-left"> <!-- title + columns --> {%= main %} </div> <!-- id --> {% if (list.meta.title_field) { %} <div class="list-col col-sm-2 col-xs-3 text-right"> </div> {% } %} <!-- comment --> <div class="list-col col-sm-2 col-xs-3 text-right list-row-right"></div> </div> </div>
templates/webcast/twitch.html
bvisness/the-blue-alliance
<object type='application/x-shockwave-flash' height='100%' width='100%' id='live_embed_player_flash' data='http://www.twitch.tv/widgets/live_embed_player.swf?channel={{webcast.channel}}' bgcolor='#000000'><param name='allowFullScreen' value='true' /><param name='allowScriptAccess' value='always' /><param name='allowNetworking' value='all' /><param name='movie' value='http://www.twitch.tv/widgets/live_embed_player.swf' /><param name='flashvars' value='hostname=www.twitch.tv&channel={{webcast.channel}}&auto_play=true&start_volume=25&enable_javascript=true' /><param name='wmode' value='transparent' /></object>
public/assets/vendor/theme/skin-config.html
wendellpbarreto/dolly
<div class="theme-config"> <div class="theme-config-box"> <div class="spin-icon"> <i class="fa fa-cogs fa-spin"></i> </div> <div class="skin-setttings"> <div class="title">Configuration</div> <div class="setings-item"> <span> Collapse menu </span> <div class="switch"> <div class="onoffswitch"> <input type="checkbox" name="collapsemenu" class="onoffswitch-checkbox" id="collapsemenu"> <label class="onoffswitch-label" for="collapsemenu"> <span class="onoffswitch-inner"></span> <span class="onoffswitch-switch"></span> </label> </div> </div> </div> <div class="setings-item"> <span> Fixed sidebar </span> <div class="switch"> <div class="onoffswitch"> <input type="checkbox" name="fixedsidebar" class="onoffswitch-checkbox" id="fixedsidebar"> <label class="onoffswitch-label" for="fixedsidebar"> <span class="onoffswitch-inner"></span> <span class="onoffswitch-switch"></span> </label> </div> </div> </div> <div class="setings-item"> <span> Top navbar </span> <div class="switch"> <div class="onoffswitch"> <input type="checkbox" name="fixednavbar" class="onoffswitch-checkbox" id="fixednavbar"> <label class="onoffswitch-label" for="fixednavbar"> <span class="onoffswitch-inner"></span> <span class="onoffswitch-switch"></span> </label> </div> </div> </div> <div class="setings-item"> <span> Boxed layout </span> <div class="switch"> <div class="onoffswitch"> <input type="checkbox" name="boxedlayout" class="onoffswitch-checkbox" id="boxedlayout"> <label class="onoffswitch-label" for="boxedlayout"> <span class="onoffswitch-inner"></span> <span class="onoffswitch-switch"></span> </label> </div> </div> </div> <div class="setings-item"> <span> Fixed footer </span> <div class="switch"> <div class="onoffswitch"> <input type="checkbox" name="fixedfooter" class="onoffswitch-checkbox" id="fixedfooter"> <label class="onoffswitch-label" for="fixedfooter"> <span class="onoffswitch-inner"></span> <span class="onoffswitch-switch"></span> </label> </div> </div> </div> <div class="title">Skins</div> <div class="setings-item default-skin"> <span class="skin-name "> <a href="#" class="s-skin-0"> Default </a> </span> </div> <div class="setings-item blue-skin"> <span class="skin-name "> <a href="#" class="s-skin-1"> Blue light </a> </span> </div> <div class="setings-item yellow-skin"> <span class="skin-name "> <a href="#" class="s-skin-3"> Yellow/Purple </a> </span> </div> <div class="setings-item ultra-skin"> <span class="skin-name "> <a href="#" class="s-skin-2"> inspinia Ultra </a> </span> </div> </div> </div> </div> <script> // Config box // Enable/disable fixed top navbar $('#fixednavbar').click(function () { if ($('#fixednavbar').is(':checked')) { $(".navbar-static-top").removeClass('navbar-static-top').addClass('navbar-fixed-top'); $("body").removeClass('boxed-layout'); $("body").addClass('fixed-nav'); $('#boxedlayout').prop('checked', false); } else { $(".navbar-fixed-top").removeClass('navbar-fixed-top').addClass('navbar-static-top'); $("body").removeClass('fixed-nav'); } }); // Enable/disable fixed sidebar $('#fixedsidebar').click(function () { if ($('#fixedsidebar').is(':checked')) { $("body").addClass('fixed-sidebar'); $('.sidebar-collapse').slimScroll({ height: '100%', railOpacity: 0.9, }); } else { $('.sidebar-collapse').slimscroll({destroy: true}); $('.sidebar-collapse').attr('style', ''); $("body").removeClass('fixed-sidebar'); } }); // Enable/disable collapse menu $('#collapsemenu').click(function () { if ($('#collapsemenu').is(':checked')) { $("body").addClass('mini-navbar'); SmoothlyMenu(); } else { $("body").removeClass('mini-navbar'); SmoothlyMenu(); } }); // Enable/disable boxed layout $('#boxedlayout').click(function () { if ($('#boxedlayout').is(':checked')) { $("body").addClass('boxed-layout'); $('#fixednavbar').prop('checked', false); $(".navbar-fixed-top").removeClass('navbar-fixed-top').addClass('navbar-static-top'); $("body").removeClass('fixed-nav'); $(".footer").removeClass('fixed'); $('#fixedfooter').prop('checked', false); } else { $("body").removeClass('boxed-layout'); } }); // Enable/disable fixed footer $('#fixedfooter').click(function () { if ($('#fixedfooter').is(':checked')) { $('#boxedlayout').prop('checked', false); $("body").removeClass('boxed-layout'); $(".footer").addClass('fixed'); } else { $(".footer").removeClass('fixed'); } }); // SKIN Select $('.spin-icon').click(function () { $(".theme-config-box").toggleClass("show"); }); // Default skin $('.s-skin-0').click(function () { $("body").removeClass("skin-1"); $("body").removeClass("skin-2"); $("body").removeClass("skin-3"); }); // Blue skin $('.s-skin-1').click(function () { $("body").removeClass("skin-2"); $("body").removeClass("skin-3"); $("body").addClass("skin-1"); }); // Inspinia ultra skin $('.s-skin-2').click(function () { $("body").removeClass("skin-1"); $("body").removeClass("skin-3"); $("body").addClass("skin-2"); }); // Yellow skin $('.s-skin-3').click(function () { $("body").removeClass("skin-1"); $("body").removeClass("skin-2"); $("body").addClass("skin-3"); }); </script>
rawdata/utf8_lawstat/version2/04666/index.html
g0v/laweasyread-data
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <!-- Mirrored from lis.ly.gov.tw/lghtml/lawstat/version2/04666/ by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 24 Mar 2013 09:04:33 GMT --> <!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1" /><!-- /Added by HTTrack --> <head> <title>Index of /lghtml/lawstat/version2/04666</title> </head> <body> <h1>Index of /lghtml/lawstat/version2/04666</h1> <ul><li><a href="../index.html"> Parent Directory</a></li> <li><a href="0466689050200.html"> 0466689050200.htm</a></li> <li><a href="0466698033100.html"> 0466698033100.htm</a></li> </ul> </body> <!-- Mirrored from lis.ly.gov.tw/lghtml/lawstat/version2/04666/ by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 24 Mar 2013 09:04:33 GMT --> <!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1" /><!-- /Added by HTTrack --> </html>
src/app/checkout/review/templates/checkout.review.html
Four51/demo_buyer
<div ng-form="OC_Checkout_Review"> <div class="row"> <div class="col-md-8"> <div class="row"> <div class="col-sm-6"> <h4>Delivery Address</h4> <div class="panel panel-default"> <div class="panel-body"> <p ng-bind-html="checkout.shippingAddress | address:'full'"></p> </div> </div> </div> <div class="col-sm-6"> <h4>Billing Address</h4> <div class="panel panel-default"> <div class="panel-body"> <p ng-bind-html="checkout.billingAddress | address:'full'"></p> </div> </div> </div> </div> <hr> <div class="row hidden-xs c-line-item__header"> <div class="col-xs-3 col-sm-2"></div> <div class="col-xs-9 col-sm-10"> <div class="row"> <div class="col-sm-5 col-lg-6"><h6>Description</h6></div> <div class="col-sm-7 col-lg-6"> <div class="row"> <div class="col-xs-4"><h6 class="text-right">Price</h6></div> <div class="col-xs-4"><h6 class="text-center">Qty</h6></div> <div class="col-xs-4"><h6 class="text-right">Total</h6></div> </div> </div> </div> </div> <div class="col-xs-12"> <hr> </div> </div> <div class="row c-line-item" ng-repeat="lineItem in checkoutReview.lineItems.Items track by $index"> <div class="col-xs-3 col-sm-2"> <div class="thumbnail c-line-item__img"> <img class="img-responsive" ng-src="{{lineItem.Product.xp.image.URL || 'http://placehold.it/100x100?text=' + lineItem.Product.Name}}" alt="{{lineItem.Product.xp.image.Name || 'Product Image'}}"> </div> </div> <div class="col-xs-9 col-sm-10"> <div class="row c-line-item__info c-line-item--centered"> <div class="col-sm-5 col-lg-6 c-line-item__info--top"> <h3 class="c-line-item__name"> <a href="#">{{lineItem.Product.Name}}</a> </h3> <small class="text-muted c-line-item__id">{{lineItem.ProductID}}</small> <ul class="c-line-item__spec-list" ng-if="lineItem.Specs.length > 0"> <li class="c-line-item__spec" ng-repeat="spec in lineItem.Specs"> <small>{{spec.Name}}:</small> <small>{{spec.Value}}</small> </li> </ul> </div> <div class="col-sm-7 col-lg-6 c-line-item__info--bottom"> <div class="row c-line-item--centered"> <div class="col-xs-4"> <h4 class="c-line-item__price text-right">{{lineItem.UnitPrice | currency}}</h4> </div> <div class="col-xs-4 text-center"> <h4 class="c-line-item__qty-display "> {{lineItem.Quantity}} </h4> <small class="help-block" ng-if="lineItem.Product.QuantityMultiplier > 1"> {{'x ' + lineItem.Product.QuantityMultiplier + (lineItem.Quantity ? (' (' + (lineItem.Quantity * lineItem.Product.QuantityMultiplier) + ')') : '')}} </small> </div> <div class="col-xs-4"> <h4 class="c-line-item__total text-right">{{lineItem.LineTotal | currency}}</h4> </div> </div> </div> </div> </div> <div class="col-xs-12"> <hr> </div> </div> </div> <div class="col-md-4"> <div class="panel panel-default" hl-sticky anchor="top" offset-top="70" media-query="min-width: 992px"> <div class="panel-heading"> <h3 class="panel-title"> Order Summary </h3> </div> <div class="panel-body"> <p> <ng-pluralize count="base.currentOrder.LineItemCount" when="{ '1': 'Checking Out With 1 Item', 'other': 'Checking Out With {} Items' }"></ng-pluralize> </p> <h5>Subtotal: <span class="pull-right">{{base.currentOrder.Subtotal | currency}}</span></h5> <h5 ng-if="base.currentOrder.ShippingCost" class="text-muted">Estimated Shipping: <span class="pull-right"> + {{base.currentOrder.ShippingCost | currency}}</span></h5> <h5 ng-repeat="promotion in checkout.promotions" class="text-danger"> {{promotion.Code}} <span class="pull-right">- {{promotion.Amount | currency}}</span></h5> <hr> <h4>Total: <b class="pull-right text-primary">{{base.currentOrder.Total | currency}}</b></h4> <hr> <div ng-repeat="payment in checkoutReview.payments.Items"> <p>{{payment.Type | humanize}} <b class="pull-right text-primary">{{payment.Amount | currency}}</b></p> <p ng-if="payment.xp.PONumber"><b>PO#:</b> {{payment.xp.PONumber}}</p> <p ng-if="payment.Type == 'CreditCard'"> <i style="font-size:1.3em;" class="fa {{payment.Details.CardType | faCreditCard}} pull-left"></i> <span class="text-muted">XXXX-XXXX-XXXX-</span>{{payment.Details.PartialAccountNumber}} </p> <p ng-if="payment.Type == 'SpendingAccount'"> {{payment.Details.Name}} <br> <small><span class="text-muted">Remaining Balance:</span> {{payment.Details.Balance | currency}}</small> </p> <hr ng-if="!$last"> </div> </div> <div class="panel-footer"> <button type="button" class="btn btn-primary btn-block" ng-disabled="false" ng-click="checkout.submitOrder(base.currentOrder)">Submit Order</button> </div> </div> </div> </div> </div>
rawdata/utf8_lawstat/version2/01183/index.html
czchen/laweasyread-data
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <!-- Mirrored from lis.ly.gov.tw/lghtml/lawstat/version2/01183/ by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 24 Mar 2013 09:00:32 GMT --> <!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1" /><!-- /Added by HTTrack --> <head> <title>Index of /lghtml/lawstat/version2/01183</title> </head> <body> <h1>Index of /lghtml/lawstat/version2/01183</h1> <ul><li><a href="../index.html"> Parent Directory</a></li> <li><a href="01183100110400.html"> 01183100110400.htm</a></li> <li><a href="0118380062900.html"> 0118380062900.htm</a></li> <li><a href="0118399050400.html"> 0118399050400.htm</a></li> </ul> </body> <!-- Mirrored from lis.ly.gov.tw/lghtml/lawstat/version2/01183/ by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 24 Mar 2013 09:00:32 GMT --> <!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1" /><!-- /Added by HTTrack --> </html>
ext/c++/thirdpart/c++/boost/libs/geometry/doc/doxy/doxygen_output/html_by_doxygen/intersection_2box__box_8hpp.html
yinchunlong/abelkhan-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Boost.Geometry (aka GGL, Generic Geometry Library)</title> <link href="doxygen.css" rel="stylesheet" type="text/css"> <link href="tabs.css" rel="stylesheet" type="text/css"> </head> <table cellpadding="2" width="100%"> <tbody> <tr> <td valign="top"> <img alt="Boost.Geometry" src="images/ggl-logo-big.png" height="80" width="200"> &nbsp;&nbsp; </td> <td valign="top" align="right"> <a href="http://www.boost.org"> <img alt="Boost C++ Libraries" src="images/accepted_by_boost.png" height="80" width="230" border="0"> </a> </td> </tr> </tbody> </table> <!-- Generated by Doxygen 1.7.6.1 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li><a href="modules.html"><span>Modules</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> <li><a href="examples.html"><span>Examples</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="files.html"><span>File&#160;List</span></a></li> <li><a href="globals.html"><span>File&#160;Members</span></a></li> </ul> </div> </div> <div class="header"> <div class="summary"> <a href="#namespaces">Namespaces</a> </div> <div class="headertitle"> <div class="title">/home/travis/build/boostorg/boost/boost/geometry/algorithms/detail/intersection/box_box.hpp File Reference</div> </div> </div><!--header--> <div class="contents"> <table class="memberdecls"> <tr><td colspan="2"><h2><a name="namespaces"></a> Namespaces</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceboost.html">boost</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceboost_1_1geometry.html">boost::geometry</a></td></tr> </table> </div><!-- contents --> <hr size="1"> <table width="100%"> <tbody> <tr> <td align="left"><small> <p>April 2, 2011</p> </small></td> <td align="right"> <small> Copyright &copy; 2007-2011 Barend Gehrels, Amsterdam, the Netherlands<br> Copyright &copy; 2008-2011 Bruno Lalande, Paris, France<br> Copyright &copy; 2009-2010 Mateusz Loskot, London, UK<br> </small> </td> </tr> </tbody> </table> <address style="text-align: right;"><small> Documentation is generated by&nbsp;<a href="http://www.doxygen.org/index.html">Doxygen</a> </small></address> </body> </html>
pyprint/background/templates/links.html
Leo02/pyprint
{% extends "layout.html" %} {% block navbar %} <a href="/kamisama/posts" class="submenu">Posts Mangement</a> <a href="/kamisama/links" class="submenu selected-item arrow">Friend Links</a> {% endblock %} {% block body %} <div class="alert alert-danger"> <button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button> <strong>Failed!</strong><span></span> </div> <div class="alert alert-success"> <button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button> <strong>Success!</strong><span></span> </div> <div class="panel panel-default"> <div class="panel-heading"><strong>Friends Links</strong> <div class="row"> <form class="form-inline" role="form" method="post" action="#"> <div class="col-lg-2"> <div class="from-group"> <input name="action" value="add" type="hidden"> <input name="name" type="text" class="form-control" placeholder="Friend's Name"> </div> </div> <div class="col-lg-4"> <div class="input-group"> <span class="input-group-addon">http://</span> <input name="url" type="text" class="form-control" placeholder="Blog's URL"> </div> </div> <button type="submit" class="btn btn-default">Add</button> </form> </div> </div> <table class="table table-striped"> <thead> <tr> <th class="td-title">Name</th> <th class="td-title">Link</th> <th class="td-operate">Delete</th> </tr> </thead> <tbody> {% for link in links %} <tr> <td class="td-title">{{ link.name }}</td> <td class="td-title"><a href="http://{{ link.url }}" target="_blank">http://{{ link.url }}</a></td> <td class="td-operate"><a href="##" class="remove" data-id="{{ link.id }}"><span class="glyphicon glyphicon-remove"></span></a></td> </tr> {% endfor %} </tbody> </table> </div> <script> $(".remove").click(function(){ var friendId = this.attributes['data-id'].value, parent = $(this).parent().parent(); //console.log(friendId); $.ajax({ url: "/kamisama/links", data: {id: friendId, action: "del"}, type: "POST", success: function(){ $(".alert-success").show(); $(".alert-success span").text(" The link had been deleted!"); $(parent).hide(); }, error: function(){ $(".alert-danger").show(); $(".alert-danger span").text(" Delete the link failed."); } }) }) </script>{% endblock %}
dialogos/build/lxml/doc/html/api/lxml.tests.test_elementpath-module.html
bertucho/epic-movie-quotes-quiz
<?xml version="1.0" encoding="ascii"?> <!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>lxml.tests.test_elementpath</title> <link rel="stylesheet" href="epydoc.css" type="text/css" /> <script type="text/javascript" src="epydoc.js"></script> </head> <body bgcolor="white" text="black" link="blue" vlink="#204080" alink="#204080"> <!-- ==================== NAVIGATION BAR ==================== --> <table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0"> <tr valign="middle"> <!-- Home link --> <th>&nbsp;&nbsp;&nbsp;<a href="lxml-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th> <!-- Tree link --> <th>&nbsp;&nbsp;&nbsp;<a href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th> <!-- Index link --> <th>&nbsp;&nbsp;&nbsp;<a href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th> <!-- Help link --> <th>&nbsp;&nbsp;&nbsp;<a href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th> <!-- Project homepage --> <th class="navbar" align="right" width="100%"> <table border="0" cellpadding="0" cellspacing="0"> <tr><th class="navbar" align="center" ><a class="navbar" target="_top" href="/">lxml API</a></th> </tr></table></th> </tr> </table> <table width="100%" cellpadding="0" cellspacing="0"> <tr valign="top"> <td width="100%"> <span class="breadcrumbs"> <a href="lxml-module.html">Package&nbsp;lxml</a> :: <a href="lxml.tests-module.html">Package&nbsp;tests</a> :: Module&nbsp;test_elementpath </span> </td> <td> <table cellpadding="0" cellspacing="0"> <!-- hide/show private --> <tr><td align="right"><span class="options">[<a href="javascript:void(0);" class="privatelink" onclick="toggle_private();">hide&nbsp;private</a>]</span></td></tr> <tr><td align="right"><span class="options" >[<a href="frames.html" target="_top">frames</a >]&nbsp;|&nbsp;<a href="lxml.tests.test_elementpath-module.html" target="_top">no&nbsp;frames</a>]</span></td></tr> </table> </td> </tr> </table> <!-- ==================== MODULE DESCRIPTION ==================== --> <h1 class="epydoc">Module test_elementpath</h1><p class="nomargin-top"><span class="codelink"><a href="lxml.tests.test_elementpath-pysrc.html">source&nbsp;code</a></span></p> Tests for the ElementPath implementation. <!-- ==================== CLASSES ==================== --> <a name="section-Classes"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Classes</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-Classes" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="lxml.tests.test_elementpath.EtreeElementPathTestCase-class.html" class="summary-name">EtreeElementPathTestCase</a> </td> </tr> </table> <!-- ==================== FUNCTIONS ==================== --> <a name="section-Functions"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Functions</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-Functions" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="test_suite"></a><span class="summary-sig-name">test_suite</span>()</span></td> <td align="right" valign="top"> <span class="codelink"><a href="lxml.tests.test_elementpath-pysrc.html#test_suite">source&nbsp;code</a></span> </td> </tr> </table> </td> </tr> </table> <!-- ==================== VARIABLES ==================== --> <a name="section-Variables"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Variables</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-Variables" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="__package__"></a><span class="summary-name">__package__</span> = <code title="'lxml.tests'"><code class="variable-quote">'</code><code class="variable-string">lxml.tests</code><code class="variable-quote">'</code></code> </td> </tr> </table> <!-- ==================== NAVIGATION BAR ==================== --> <table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0"> <tr valign="middle"> <!-- Home link --> <th>&nbsp;&nbsp;&nbsp;<a href="lxml-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th> <!-- Tree link --> <th>&nbsp;&nbsp;&nbsp;<a href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th> <!-- Index link --> <th>&nbsp;&nbsp;&nbsp;<a href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th> <!-- Help link --> <th>&nbsp;&nbsp;&nbsp;<a href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th> <!-- Project homepage --> <th class="navbar" align="right" width="100%"> <table border="0" cellpadding="0" cellspacing="0"> <tr><th class="navbar" align="center" ><a class="navbar" target="_top" href="/">lxml API</a></th> </tr></table></th> </tr> </table> <table border="0" cellpadding="0" cellspacing="0" width="100%%"> <tr> <td align="left" class="footer"> Generated by Epydoc 3.0.1 on Sat Apr 25 16:24:35 2015 </td> <td align="right" class="footer"> <a target="mainFrame" href="http://epydoc.sourceforge.net" >http://epydoc.sourceforge.net</a> </td> </tr> </table> <script type="text/javascript"> <!-- // Private objects are initially displayed (because if // javascript is turned off then we want them to be // visible); but by default, we want to hide them. So hide // them unless we have a cookie that says to show them. checkCookie(); // --> </script> </body> </html>
client/components/charts/devices/_wireless_chart.html
mylittletony/ct-frontend
<md-card> <md-card-header class="graph-small"> <md-card-header-text> <span class="md-subhead"> {{ fn.key | titleCase | translate }} {{ title }} </span> </md-card-header-text> <md-button class="md-icon-button" ng-click="refresh()"> <md-icon>refresh</md-icon> </md-button> <md-menu-bar style="padding: 0"> <md-menu> <button ng-click="$mdOpenMenu()"> <md-icon>more_vert</md-icon> </button> <md-menu-content width="3"> <md-menu-item> <md-button ng-click="changeType()"> <translate> Splash Sessions </translate> </md-button> </md-menu-item> <md-menu-item> <md-button ng-click="changeType('uniques')"> <translate> Splash Users </translate> </md-button> </md-menu-item> <md-menu-item> <md-button ng-click="changeType('impressions')"> <translate> Splash Views </translate> </md-button> </md-menu-item> <md-menu-item> <md-button ng-click="changeType('usage')"> <translate> Usage Data </translate> </md-button> </md-menu-item> <md-menu-item> <md-button ng-click="changeType('clients')"> <translate> Wireless Clients </translate> </md-button> </md-menu-item> <md-menu-divider></md-menu-divider> <md-menu-item> <md-button ng-click="changeFn('mean')"> <translate> Average Values </translate> </md-button> </md-menu-item> <md-menu-item> <md-button ng-click="changeFn('max')"> <translate> Max. Values </translate> </md-button> </md-menu-item> <md-menu-item> <md-button ng-click="changeFn('median')"> <translate> Median Values </translate> </md-button> </md-menu-item> <md-menu-item> <md-button ng-click="changeFn('sum')" ng-disabled="type == 'tx'"> <translate> Sum </translate> </md-button> </md-menu-item> </md-menu-content> </md-menu> </md-menu-bar> </md-card-header> <md-card-content> <div id="location-chart" class="small-chart"></div> <md-card-actions layout="row" layout-align="end center"> <small> <span ng-if="noData && !loading" translate>No graph data</span> <span ng-if="loading" translate>Loading chart</span> </small> </md-card-actions> </md-card-content> </md-card>
lib/api_browser/app/views/types/main/hash.html
rightscale/praxis
<div ng-if="error" class="alert alert-danger"> <p>The requested type could not be found.</p> </div> <div ng-if="type"> <div class="row"> <div class="col-lg-12"> <h1> {{ type.name | resourceName }} </h1> </div> </div> <div class="row" ng-if="controllers.length"> <div class="col-lg-12"> <h3>Served by</h3> <ul> <li ng-repeat="controller in controllers"> <a ui-sref="root.controller({version: apiVersion, controller: controller.id})">{{ controller.name | resourceName }}</a> </li> </ul> </div> </div> <ng-include src="'views/type/details.html'" /> </div>
lesson/3.html
5y/markdowntutorial.com
--- layout: default number: 3 --- <div class="row"> <p>We'll now learn how to make links to other web sites on the world wide web.</p> <p>There are two different link types in Markdown, but both of them render the exact same way. The first link style is called an <em>inline link</em>. To create an inline link, you wrap the link text in brackets ( <code>[ ]</code> ), and then you wrap the link in parenthesis ( <code>( )</code> ). For example, to create a hyperlink to www.github.com, with a link text that says, Visit GitHub!, you'd write this in Markdown: <code>[Visit GitHub!](www.github.com)</code>.</p> <p>In the box below, make a link to www.google.com, with link text that says "Search for it."</p> <div class="col-md-5 scratchpad"></div> <span class="help-tooltip icon-question" data-toggle="tooltip" data-original-title="Type your answers in the left box, and the resulting Markdown appears in the right box. When your answer is correct, you'll be taken to the next lesson"></span> <div class="col-md-5 renderpad"></div> </div> <button class="btn btn-default btn-skip">Skip</button> <div class="toBeRevealed"> <div class="row"> <hr> <p>Nice work!</p> <p>You can add emphasis to link texts, if you like. In the box below, make the phrase "really, really" bold, and have the entire sentence link to www.dailykitten.com. You'll want to make sure that the bold phrasing occurs within the link text brackets.</p> <div class="col-md-5 scratchpad"></div> <div class="col-md-5 renderpad"></div> </div> <button class="btn btn-default btn-skip">Skip</button> </div> <div class="toBeRevealed"> <div class="row"> <hr> <p>Fantastic!</p> <p>Although it might make for an awkward experience, you can make links within headings, too.</p> <p>For this next tutorial, make the text a heading four, and turn the phrase "the BBC" into a link to www.bbc.com/news:</p> <div class="col-md-5 scratchpad"></div> <div class="col-md-5 renderpad"></div> </div> <button class="btn btn-default btn-skip">Skip</button> </div> <div class="toBeRevealed"> <div class="row"> <hr> <p>That's all there is to writing inline links.</p> <p>The other link type is called a <em>reference</em> link. As the name implies, the link is actually a reference to another place in the document. Here's an example of what we mean:</p> <pre> Here's [a link to something else][another place]. Here's [yet another link][another-link]. And now back to [the first link][another place]. [another place]: www.github.com [another-link]: www.google.com </pre> <p>The "references" above are the second set of brackets: <code>[another place]</code> and <code>[another-link]</code>. At the bottom of a Markdown document, these brackets are defined as proper links to outside websites. An advantage of the reference link style is that multiple links to the same place only need to be updated once. For example, if we decide to make all of the <code>[another place]</code> links go somewhere else, we only have to change the single reference link.</p> <p>Reference links don't appear in the rendered Markdown. You define them by providing the same tag name wrapped in brackets, followed by a colon, followed by the link.</p> <p>In the box below, we've started writing out some reference links. You'll need to finish them up! Call the first reference tag "a fun place", and make it link to www.zombo.com; make the second link out to www.stumbleupon.com.</p> <div class="col-md-5 scratchpad"></div> <div class="col-md-5 renderpad"></div> </div> <button class="btn btn-default btn-skip">Skip</button> </div> <div class="toBeRevealed"> <hr> <p>You now know how to make links in Markdown!</p> <a class="btn btn-lg btn-success" href="{{ site.baseurl}}/lesson/4">On to the next lesson!</a> </div>
ajax/libs/oojs-ui/0.33.2/oojs-ui-widgets-wikimediaui.rtl.css
joeyparrish/cdnjs
/*! * OOUI v0.33.2 * https://www.mediawiki.org/wiki/OOUI * * Copyright 2011–2019 OOUI Team and other contributors. * Released under the MIT license * http://oojs.mit-license.org * * Date: 2019-07-10T12:25:14Z */ .oo-ui-draggableElement-handle:not( .oo-ui-draggableElement-undraggable ).oo-ui-widget { cursor: move; cursor: url(images/grab.cur ); cursor: -webkit-grab; cursor: -moz-grab; cursor: grab; } .oo-ui-draggableElement-handle:not( .oo-ui-draggableElement-undraggable ):active { cursor: url(images/grabbing.cur ); cursor: -webkit-grabbing; cursor: -moz-grabbing; cursor: grabbing; } .oo-ui-draggableElement-handle.oo-ui-widget-disabled, .oo-ui-widget-disabled .oo-ui-draggableElement-handle { cursor: default; } .oo-ui-draggableElement-placeholder { opacity: 0.2; } .oo-ui-draggableGroupElement-horizontal .oo-ui-draggableElement { display: inline-block; } .oo-ui-bookletLayout-stackLayout.oo-ui-stackLayout-continuous > .oo-ui-panelLayout-scrollable { overflow: hidden; } .oo-ui-bookletLayout-stackLayout > .oo-ui-panelLayout { width: 100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .oo-ui-bookletLayout-outlinePanel-editable > .oo-ui-outlineSelectWidget { height: auto; position: absolute; top: 0; right: 0; left: 0; bottom: 2.5em; overflow: auto; -webkit-overflow-scrolling: touch; } .oo-ui-bookletLayout-outlinePanel > .oo-ui-outlineControlsWidget { position: absolute; bottom: 0; right: 0; left: 0; height: 2.5em; } .oo-ui-bookletLayout-stackLayout > .oo-ui-panelLayout { padding: 1.42857143em; } .oo-ui-bookletLayout-outlinePanel > .oo-ui-outlineControlsWidget { border-top: 1px solid #c8ccd1; } .oo-ui-bookletLayout > .oo-ui-menuLayout-menu { border-left: 1px solid #c8ccd1; } .oo-ui-indexLayout { /* Use two classes to ensure increased specificity over menuLayout */ } .oo-ui-indexLayout.oo-ui-menuLayout > .oo-ui-menuLayout-menu { height: auto; } .oo-ui-indexLayout.oo-ui-menuLayout.oo-ui-menuLayout-expanded > .oo-ui-menuLayout-menu { height: 3em; white-space: nowrap; } .oo-ui-indexLayout.oo-ui-menuLayout.oo-ui-menuLayout-expanded > .oo-ui-menuLayout-content { top: 3em; } .oo-ui-indexLayout-stackLayout > .oo-ui-panelLayout { padding: 1.42857143em; } .oo-ui-indexLayout.oo-ui-menuLayout.oo-ui-menuLayout-expanded > .oo-ui-menuLayout-menu { height: 2.64285714em; } .oo-ui-indexLayout.oo-ui-menuLayout.oo-ui-menuLayout-expanded > .oo-ui-menuLayout-content { top: 2.64285714em; } .oo-ui-menuLayout { top: 0; right: 0; left: 0; bottom: 0; } .oo-ui-menuLayout-expanded, .oo-ui-menuLayout-expanded > .oo-ui-menuLayout-menu, .oo-ui-menuLayout-expanded > .oo-ui-menuLayout-content { position: absolute; } .oo-ui-menuLayout-expanded > .oo-ui-menuLayout-menu { z-index: 1; } .oo-ui-menuLayout-static.oo-ui-menuLayout-after, .oo-ui-menuLayout-static.oo-ui-menuLayout-before { display: table; width: 100%; } .oo-ui-menuLayout-static.oo-ui-menuLayout-after > .oo-ui-menuLayout-menu, .oo-ui-menuLayout-static.oo-ui-menuLayout-before > .oo-ui-menuLayout-menu, .oo-ui-menuLayout-static.oo-ui-menuLayout-after > .oo-ui-menuLayout-content, .oo-ui-menuLayout-static.oo-ui-menuLayout-before > .oo-ui-menuLayout-content { display: table-cell; vertical-align: top; } .oo-ui-menuLayout > .oo-ui-menuLayout-menu, .oo-ui-menuLayout > .oo-ui-menuLayout-content { -webkit-transition: height ease-out 250ms, width ease-out 250ms, top ease-out 250ms, right ease-out 250ms, left ease-out 250ms, bottom ease-out 250ms; -moz-transition: height ease-out 250ms, width ease-out 250ms, top ease-out 250ms, right ease-out 250ms, left ease-out 250ms, bottom ease-out 250ms; transition: height ease-out 250ms, width ease-out 250ms, top ease-out 250ms, right ease-out 250ms, left ease-out 250ms, bottom ease-out 250ms; } .oo-ui-menuLayout > .oo-ui-menuLayout-menu { height: 14.28571429em; width: 14.28571429em; } .oo-ui-menuLayout > .oo-ui-menuLayout-content { top: 14.28571429em; right: 14.28571429em; left: 14.28571429em; bottom: 14.28571429em; } .oo-ui-menuLayout.oo-ui-menuLayout-hideMenu > .oo-ui-menuLayout-menu { width: 0 !important; height: 0 !important; overflow: hidden; } .oo-ui-menuLayout.oo-ui-menuLayout-hideMenu > .oo-ui-menuLayout-content { top: 0 !important; right: 0 !important; left: 0 !important; bottom: 0 !important; } .oo-ui-menuLayout.oo-ui-menuLayout-showMenu.oo-ui-menuLayout-top > .oo-ui-menuLayout-menu { width: auto !important; right: 0; top: 0; left: 0; } .oo-ui-menuLayout.oo-ui-menuLayout-showMenu.oo-ui-menuLayout-top > .oo-ui-menuLayout-content { left: 0 !important; bottom: 0 !important; right: 0 !important; } .oo-ui-menuLayout.oo-ui-menuLayout-showMenu.oo-ui-menuLayout-after > .oo-ui-menuLayout-menu { height: auto !important; top: 0; left: 0; bottom: 0; } .oo-ui-menuLayout.oo-ui-menuLayout-showMenu.oo-ui-menuLayout-after > .oo-ui-menuLayout-content { bottom: 0 !important; right: 0 !important; top: 0 !important; } .oo-ui-menuLayout.oo-ui-menuLayout-showMenu.oo-ui-menuLayout-bottom > .oo-ui-menuLayout-menu { width: auto !important; left: 0; bottom: 0; right: 0; } .oo-ui-menuLayout.oo-ui-menuLayout-showMenu.oo-ui-menuLayout-bottom > .oo-ui-menuLayout-content { right: 0 !important; top: 0 !important; left: 0 !important; } .oo-ui-menuLayout.oo-ui-menuLayout-showMenu.oo-ui-menuLayout-before > .oo-ui-menuLayout-menu { height: auto !important; bottom: 0; right: 0; top: 0; } .oo-ui-menuLayout.oo-ui-menuLayout-showMenu.oo-ui-menuLayout-before > .oo-ui-menuLayout-content { top: 0 !important; left: 0 !important; bottom: 0 !important; } .oo-ui-stackLayout-continuous > .oo-ui-panelLayout { display: block; position: relative; } .oo-ui-buttonSelectWidget { display: inline-block; border-radius: 2px; margin-left: 0.5em; z-index: 0; position: relative; padding-bottom: 1px; } .oo-ui-buttonSelectWidget:last-child { margin-left: 0; } .oo-ui-buttonSelectWidget:focus { outline: 0; } .oo-ui-buttonSelectWidget .oo-ui-buttonOptionWidget .oo-ui-buttonElement-button { margin-left: -1px; margin-bottom: -1px; border-radius: 0; } .oo-ui-buttonSelectWidget .oo-ui-buttonOptionWidget:first-child .oo-ui-buttonElement-button { border-bottom-right-radius: 2px; border-top-right-radius: 2px; } .oo-ui-buttonSelectWidget .oo-ui-buttonOptionWidget:last-child .oo-ui-buttonElement-button { margin-left: 0; border-bottom-left-radius: 2px; border-top-left-radius: 2px; } .oo-ui-buttonSelectWidget .oo-ui-buttonOptionWidget.oo-ui-widget-disabled + .oo-ui-widget-disabled > .oo-ui-buttonElement-button { border-right-color: #fff; } .oo-ui-buttonSelectWidget.oo-ui-widget-enabled:focus .oo-ui-buttonOptionWidget.oo-ui-optionWidget-selected .oo-ui-buttonElement-button { border-color: #36c; box-shadow: inset 0 0 0 1px #36c, inset 0 0 0 2px #fff; } .oo-ui-buttonSelectWidget.oo-ui-widget-enabled .oo-ui-buttonElement.oo-ui-widget-enabled > .oo-ui-buttonElement-button:hover, .oo-ui-buttonSelectWidget.oo-ui-widget-enabled .oo-ui-buttonElement.oo-ui-widget-enabled > .oo-ui-buttonElement-button:active { z-index: 1; } .oo-ui-buttonSelectWidget.oo-ui-widget-enabled .oo-ui-buttonElement.oo-ui-buttonElement-active > .oo-ui-buttonElement-button { z-index: 3; } .oo-ui-buttonSelectWidget.oo-ui-widget-enabled .oo-ui-buttonElement.oo-ui-widget-disabled > .oo-ui-buttonElement-button { z-index: -1; } .oo-ui-buttonOptionWidget { display: inline-block; } .oo-ui-buttonOptionWidget.oo-ui-buttonElement-active .oo-ui-buttonElement-button { cursor: default; } .oo-ui-toggleButtonWidget { margin-left: 0.5em; } .oo-ui-toggleButtonWidget:last-child { margin-left: 0; } .oo-ui-toggleSwitchWidget { position: relative; display: inline-block; vertical-align: middle; overflow: hidden; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-transform: translateZ(0); transform: translateZ(0); background-color: #f8f9fa; width: 3.5em; min-height: 26px; height: 2em; border: 1px solid #72777d; border-radius: 1em; margin-left: 0.5em; -webkit-transition: background-color 250ms, border-color 250ms; -moz-transition: background-color 250ms, border-color 250ms; transition: background-color 250ms, border-color 250ms; } .oo-ui-toggleSwitchWidget.oo-ui-widget-enabled { cursor: pointer; } .oo-ui-toggleSwitchWidget-grip { position: absolute; display: block; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .oo-ui-toggleSwitchWidget:last-child { margin-left: 0; } .oo-ui-toggleSwitchWidget:before { content: ''; display: block; position: absolute; top: 1px; right: 1px; bottom: 1px; left: 1px; border: 1px solid transparent; border-radius: 1em; z-index: 1; -webkit-transition: border-color 250ms; -moz-transition: border-color 250ms; transition: border-color 250ms; } .oo-ui-toggleSwitchWidget-grip { top: 0.35714286em; min-width: 16px; width: 1.14285714em; min-height: 16px; height: 1.14285714em; border-radius: 1.14285714em; -webkit-transition: background-color 250ms, right 100ms, margin-right 100ms; -moz-transition: background-color 250ms, right 100ms, margin-right 100ms; transition: background-color 250ms, right 100ms, margin-right 100ms; } .oo-ui-toggleSwitchWidget-glow { display: none; } .oo-ui-toggleSwitchWidget.oo-ui-toggleWidget-off .oo-ui-toggleSwitchWidget-grip { right: 0.35714286em; margin-right: 0; } .oo-ui-toggleSwitchWidget.oo-ui-toggleWidget-on .oo-ui-toggleSwitchWidget-grip { right: 1.9em; margin-right: -2px; } .oo-ui-toggleSwitchWidget.oo-ui-widget-enabled .oo-ui-toggleSwitchWidget-grip { background-color: #f8f9fa; border: 1px solid #72777d; } .oo-ui-toggleSwitchWidget.oo-ui-widget-enabled:hover { background-color: #fff; border-color: #447ff5; } .oo-ui-toggleSwitchWidget.oo-ui-widget-enabled:hover .oo-ui-toggleSwitchWidget-grip { background-color: #fff; border-color: #447ff5; } .oo-ui-toggleSwitchWidget.oo-ui-widget-enabled:active, .oo-ui-toggleSwitchWidget.oo-ui-widget-enabled:active:hover, .oo-ui-toggleSwitchWidget.oo-ui-widget-enabled:active:focus { background-color: #2a4b8d; border-color: #2a4b8d; box-shadow: inset 0 0 0 1px #2a4b8d; } .oo-ui-toggleSwitchWidget.oo-ui-widget-enabled:active .oo-ui-toggleSwitchWidget-grip, .oo-ui-toggleSwitchWidget.oo-ui-widget-enabled:active:hover .oo-ui-toggleSwitchWidget-grip, .oo-ui-toggleSwitchWidget.oo-ui-widget-enabled:active:focus .oo-ui-toggleSwitchWidget-grip { background-color: #fff; border-color: #fff; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1); } .oo-ui-toggleSwitchWidget.oo-ui-widget-enabled:focus { border-color: #36c; box-shadow: inset 0 0 0 1px #36c; outline: 0; } .oo-ui-toggleSwitchWidget.oo-ui-widget-enabled:focus .oo-ui-toggleSwitchWidget-grip { border-color: #36c; } .oo-ui-toggleSwitchWidget.oo-ui-widget-enabled.oo-ui-toggleWidget-on { background-color: #36c; border-color: #36c; } .oo-ui-toggleSwitchWidget.oo-ui-widget-enabled.oo-ui-toggleWidget-on .oo-ui-toggleSwitchWidget-grip { background-color: #fff; border-color: #fff; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1); } .oo-ui-toggleSwitchWidget.oo-ui-widget-enabled.oo-ui-toggleWidget-on:hover { background-color: #447ff5; border-color: #447ff5; } .oo-ui-toggleSwitchWidget.oo-ui-widget-enabled.oo-ui-toggleWidget-on:active, .oo-ui-toggleSwitchWidget.oo-ui-widget-enabled.oo-ui-toggleWidget-on:active:hover { background-color: #2a4b8d; border-color: #2a4b8d; } .oo-ui-toggleSwitchWidget.oo-ui-widget-enabled.oo-ui-toggleWidget-on:focus { border-color: #36c; } .oo-ui-toggleSwitchWidget.oo-ui-widget-enabled.oo-ui-toggleWidget-on:focus:before { border-color: #fff; } .oo-ui-toggleSwitchWidget.oo-ui-widget-disabled { background-color: #c8ccd1; border-color: #c8ccd1; outline: 0; } .oo-ui-toggleSwitchWidget.oo-ui-widget-disabled.oo-ui-toggleWidget-off .oo-ui-toggleSwitchWidget-grip { border: 1px solid #fff; box-shadow: inset 0 0 0 1px #fff; } .oo-ui-toggleSwitchWidget.oo-ui-widget-disabled.oo-ui-toggleWidget-on .oo-ui-toggleSwitchWidget-grip { background-color: #fff; } .oo-ui-selectFileWidget-dropTarget { position: relative; cursor: default; height: 8.815em; } .oo-ui-selectFileWidget-dropTarget .oo-ui-selectFileWidget-dropLabel, .oo-ui-selectFileWidget-dropTarget .oo-ui-selectFileInputWidget-selectButton { display: none; } .oo-ui-selectFileWidget-dropTarget .oo-ui-selectFileWidget-thumbnail { width: 7.815em; position: absolute; top: 0.5em; bottom: 0.5em; right: 0.5em; background-position: center center; background-repeat: no-repeat; background-size: contain; } .oo-ui-selectFileWidget-dropTarget .oo-ui-selectFileWidget-thumbnail > .oo-ui-selectFileWidget-noThumbnail-icon { opacity: 0.4; height: 7.815em; width: 7.815em; } .oo-ui-selectFileWidget-dropTarget .oo-ui-pendingElement-pending { background-repeat: repeat; } .oo-ui-selectFileWidget-dropTarget .oo-ui-selectFileInputWidget-info { display: block; height: 100%; width: auto; margin-right: 8.815em; margin-left: 0; } .oo-ui-selectFileWidget-dropTarget .oo-ui-selectFileInputWidget-info > .oo-ui-inputWidget-input { border: 0; box-shadow: none; background: transparent; } .oo-ui-selectFileWidget-dropTarget .oo-ui-selectFileInputWidget-label { display: block; position: relative; top: inherit; } .oo-ui-selectFileWidget-dropTarget .oo-ui-selectFileInputWidget-fileName { display: block; } .oo-ui-selectFileWidget.oo-ui-selectFileInputWidget-empty.oo-ui-selectFileWidget-dropTarget { text-align: center; } .oo-ui-selectFileWidget.oo-ui-selectFileInputWidget-empty.oo-ui-selectFileWidget-dropTarget .oo-ui-selectFileWidget-thumbnail, .oo-ui-selectFileWidget.oo-ui-selectFileInputWidget-empty.oo-ui-selectFileWidget-dropTarget .oo-ui-selectFileInputWidget-info { display: none; } .oo-ui-selectFileWidget.oo-ui-selectFileInputWidget-empty.oo-ui-selectFileWidget-dropTarget .oo-ui-selectFileInputWidget-selectButton { display: block; margin: 2.2em 1em 1em; } .oo-ui-selectFileWidget.oo-ui-selectFileInputWidget-empty.oo-ui-widget-enabled .oo-ui-selectFileWidget-dropLabel { display: block; } .oo-ui-selectFileWidget.oo-ui-selectFileInputWidget-empty.oo-ui-widget-disabled.oo-ui-selectFileWidget-dropTarget { -webkit-touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .oo-ui-selectFileWidget.oo-ui-selectFileInputWidget-empty.oo-ui-widget-disabled.oo-ui-selectFileWidget-dropTarget, .oo-ui-selectFileWidget.oo-ui-selectFileInputWidget-empty.oo-ui-widget-disabled.oo-ui-selectFileWidget-dropTarget .oo-ui-buttonElement-button { cursor: no-drop; } .oo-ui-selectFileWidget-dropTarget { background-color: #fff; border: 1px solid #a2a9b1; border-radius: 2px; vertical-align: middle; overflow: hidden; } .oo-ui-selectFileWidget-dropTarget.oo-ui-selectFileInputWidget-empty { border-style: dashed; } .oo-ui-selectFileWidget-dropTarget .oo-ui-pendingElement-pending { background-size: 1.42857143em 1.42857143em; } .oo-ui-selectFileWidget-buttonOnly { width: auto; max-width: none; } .oo-ui-selectFileWidget.oo-ui-widget-enabled.oo-ui-selectFileWidget-dropTarget { background-color: #fff; -webkit-transition: background-color 250ms, color 250ms, border-color 250ms; -moz-transition: background-color 250ms, color 250ms, border-color 250ms; transition: background-color 250ms, color 250ms, border-color 250ms; } .oo-ui-selectFileWidget.oo-ui-widget-enabled.oo-ui-selectFileWidget-dropTarget:hover { border-color: #72777d; } .oo-ui-selectFileWidget.oo-ui-widget-enabled .oo-ui-selectFileInputWidget-info > .oo-ui-inputWidget-input { -webkit-transition: background-color 250ms, color 250ms; -moz-transition: background-color 250ms, color 250ms; transition: background-color 250ms, color 250ms; } .oo-ui-selectFileWidget.oo-ui-widget-enabled.oo-ui-selectFileWidget-canDrop.oo-ui-selectFileWidget-dropTarget, .oo-ui-selectFileWidget.oo-ui-widget-enabled.oo-ui-selectFileWidget-canDrop .oo-ui-selectFileInputWidget-info > .oo-ui-inputWidget-input { background-color: #eaf3ff; color: #36c; } .oo-ui-selectFileWidget.oo-ui-widget-disabled.oo-ui-selectFileWidget-dropTarget, .oo-ui-selectFileWidget.oo-ui-selectFileInputWidget-empty.oo-ui-widget-disabled.oo-ui-selectFileWidget-dropTarget { background-color: #eaecf0; border-color: #c8ccd1; } .oo-ui-outlineSelectWidget { height: 100%; } .oo-ui-outlineSelectWidget:focus { box-shadow: inset 0 0 0 2px #36c; } .oo-ui-outlineOptionWidget { -webkit-touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; padding: 0.85714286em 0.85714286em; -webkit-transition: background-color 100ms, color 100ms; -moz-transition: background-color 100ms, color 100ms; transition: background-color 100ms, color 100ms; } .oo-ui-outlineOptionWidget.oo-ui-optionWidget-highlighted { background-color: #eaecf0; color: #000; } .oo-ui-outlineOptionWidget.oo-ui-optionWidget-selected { background-color: #eaf3ff; color: #36c; } .oo-ui-outlineOptionWidget.oo-ui-optionWidget-pressed { background-color: rgba(41, 98, 204, 0.1); color: #36c; } .oo-ui-outlineOptionWidget.oo-ui-indicatorElement .oo-ui-labelElement-label { padding-left: 1.5em; } .oo-ui-outlineOptionWidget.oo-ui-indicatorElement .oo-ui-indicatorElement-indicator { opacity: 0.5; } .oo-ui-outlineOptionWidget-level-1 { padding-right: 2.571em; } .oo-ui-outlineOptionWidget-level-1.oo-ui-iconElement { padding-right: 4.429em; } .oo-ui-outlineOptionWidget-level-1.oo-ui-iconElement .oo-ui-iconElement-icon { right: 2.571em; } .oo-ui-outlineOptionWidget-level-2 { padding-right: 5.142em; } .oo-ui-outlineOptionWidget-level-2.oo-ui-iconElement { padding-right: 6.857em; } .oo-ui-outlineOptionWidget-level-2.oo-ui-iconElement .oo-ui-iconElement-icon { right: 4.429em; } .oo-ui-outlineControlsWidget { background-color: #fff; } .oo-ui-outlineControlsWidget-items, .oo-ui-outlineControlsWidget-movers { float: right; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .oo-ui-outlineControlsWidget-items { float: right; } .oo-ui-outlineControlsWidget-items .oo-ui-buttonWidget { float: right; } .oo-ui-outlineControlsWidget-movers { float: left; } .oo-ui-outlineControlsWidget-movers .oo-ui-buttonWidget { float: left; } .oo-ui-outlineControlsWidget-items > .oo-ui-buttonWidget, .oo-ui-outlineControlsWidget-movers > .oo-ui-buttonWidget { height: 2.28571429em; width: 2.28571429em; margin: 0 !important; /* stylelint-disable-line declaration-no-important */ } .oo-ui-tabSelectWidget { text-align: right; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: auto; } .oo-ui-tabSelectWidget-mobile { white-space: nowrap; } .oo-ui-tabSelectWidget-framed { background-color: #eaecf0; } .oo-ui-tabSelectWidget-frameless { box-shadow: inset 0 -1px 0 0 #a2a9b1; } .oo-ui-tabSelectWidget-mobile:after { content: ''; position: absolute; bottom: 0; left: 0; width: 1.28571429em; height: 2.28571429em; pointer-events: none; } .oo-ui-tabSelectWidget-mobile.oo-ui-tabSelectWidget-framed:after { background-image: -webkit-gradient(linear, right top, left top, color-stop(0, rgba(234, 236, 240, 0)), color-stop(100%, #eaecf0)); background-image: -webkit-linear-gradient(right, rgba(234, 236, 240, 0) 0, #eaecf0 100%); background-image: -moz-linear-gradient(right, rgba(234, 236, 240, 0) 0, #eaecf0 100%); background-image: linear-gradient(to left, rgba(234, 236, 240, 0) 0, #eaecf0 100%); } .oo-ui-tabSelectWidget-mobile.oo-ui-tabSelectWidget-frameless:after { background-image: -webkit-gradient(linear, right top, left top, color-stop(0, rgba(255, 255, 255, 0)), color-stop(100%, #fff)); background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0) 0, #fff 100%); background-image: -moz-linear-gradient(right, rgba(255, 255, 255, 0) 0, #fff 100%); background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 0, #fff 100%); bottom: 0.14285714em; } .oo-ui-tabSelectWidget.oo-ui-widget-enabled:focus { outline: 0; } .oo-ui-tabOptionWidget { display: inline-block; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; vertical-align: bottom; color: #444; margin: 0.42857143em 0.42857143em 0 0; padding: 0 0.57142857em; border-color: transparent; border-style: solid; font-weight: bold; line-height: 1; -webkit-transition: background-color 100ms, color 100ms, border-color 100ms; -moz-transition: background-color 100ms, color 100ms, border-color 100ms; transition: background-color 100ms, color 100ms, border-color 100ms; } .oo-ui-tabOptionWidget.oo-ui-optionWidget-selected { cursor: default; } .oo-ui-tabOptionWidget .oo-ui-labelElement-label { padding: 0.42857143em 0.35714286em; line-height: 1.28571429em; } .oo-ui-tabSelectWidget-mobile .oo-ui-tabOptionWidget:last-child { margin-left: 1.28571429em; } .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget { border-width: 1px 1px 0 1px; border-top-right-radius: 2px; border-top-left-radius: 2px; } .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget .oo-ui-labelElement-label { border-bottom: 2px solid transparent; padding: 0.42857143em 0.35714286em 0.28571429em; -webkit-transition: border-color 100ms; -moz-transition: border-color 100ms; transition: border-color 100ms; } .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-optionWidget-selected { background-color: #fff; color: #000; } .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-optionWidget-selected .oo-ui-labelElement-label { border-bottom-color: #fff; } .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-widget-enabled:hover { background-color: rgba(255, 255, 255, 0.3); color: #222; } .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-widget-enabled:active { background-color: rgba(255, 255, 255, 0.8); color: #000; } .oo-ui-tabSelectWidget-framed .oo-ui-tabOptionWidget.oo-ui-widget-enabled.oo-ui-optionWidget-selected:hover { background-color: #fff; } .oo-ui-tabSelectWidget-framed.oo-ui-widget-enabled:focus .oo-ui-tabOptionWidget.oo-ui-optionWidget-selected .oo-ui-labelElement-label { border-bottom-color: #36c; } .oo-ui-tabSelectWidget-frameless .oo-ui-tabOptionWidget { margin: 0.42857143em 0 0 0.42857143em; border-width: 0; box-shadow: inset 0 0 0 0 #36c; -webkit-transition: color 100ms, box-shadow 100ms; -moz-transition: color 100ms, box-shadow 100ms; transition: color 100ms, box-shadow 100ms; } .oo-ui-tabSelectWidget-frameless .oo-ui-tabOptionWidget.oo-ui-optionWidget-selected { color: #36c; box-shadow: inset 0 -2px 0 0 #36c; } .oo-ui-tabSelectWidget-frameless .oo-ui-tabOptionWidget.oo-ui-widget-enabled:hover { color: #447ff5; box-shadow: inset 0 -2px 0 0 #447ff5; } .oo-ui-tabSelectWidget-frameless .oo-ui-tabOptionWidget.oo-ui-widget-enabled:active { color: #2a4b8d; box-shadow: inset 0 -2px 0 0 #2a4b8d; } .oo-ui-tabSelectWidget-frameless.oo-ui-widget-enabled:focus .oo-ui-tabOptionWidget.oo-ui-optionWidget-selected { border-radius: 2px; box-shadow: inset 0 0 0 2px #36c; } .oo-ui-tagMultiselectWidget { display: inline-block; position: relative; width: 100%; max-width: 50em; vertical-align: top; } .oo-ui-tagMultiselectWidget-handle { width: 100%; display: block; position: relative; } .oo-ui-tagMultiselectWidget-handle > .oo-ui-iconElement-icon, .oo-ui-tagMultiselectWidget-handle > .oo-ui-indicatorElement-indicator { position: absolute; top: 0; height: 100%; } .oo-ui-tagMultiselectWidget-content { position: relative; } .oo-ui-tagMultiselectWidget-group { display: inline; } .oo-ui-tagMultiselectWidget-outlined { width: 100%; } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-inlined .oo-ui-tagMultiselectWidget-handle { cursor: text; } .oo-ui-tagMultiselectWidget.oo-ui-widget-disabled .oo-ui-tagMultiselectWidget-content > input { display: none; } .oo-ui-tagMultiselectWidget-focusTrap { display: inline-block; height: 1px; width: 1px; } .oo-ui-tagMultiselectWidget-focusTrap:focus { outline: 0; } .oo-ui-tagMultiselectWidget-handle { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; min-height: 2.28571429em; margin-left: 0.5em; border: 1px solid #a2a9b1; border-radius: 2px; padding: 0 0.57142857em; line-height: 1; } .oo-ui-tagMultiselectWidget-handle:last-child { margin-left: 0; } .oo-ui-tagMultiselectWidget-handle > .oo-ui-tagMultiselectWidget-content > input { background-color: transparent; color: #000; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; height: 2.14285714em; border: 0; padding: 0.42857143em 0.57142857em 0.42857143em 0; font-family: inherit; font-size: inherit; line-height: 1.28571429em; vertical-align: top; } .oo-ui-tagMultiselectWidget-handle > .oo-ui-tagMultiselectWidget-content > input::-webkit-input-placeholder { color: #72777d; opacity: 1; } .oo-ui-tagMultiselectWidget-handle > .oo-ui-tagMultiselectWidget-content > input:-ms-input-placeholder { color: #72777d; opacity: 1; } .oo-ui-tagMultiselectWidget-handle > .oo-ui-tagMultiselectWidget-content > input::-moz-placeholder { color: #72777d; opacity: 1; } .oo-ui-tagMultiselectWidget-handle > .oo-ui-tagMultiselectWidget-content > input:-moz-placeholder { color: #72777d; opacity: 1; } .oo-ui-tagMultiselectWidget-handle > .oo-ui-tagMultiselectWidget-content > input::placeholder { color: #72777d; opacity: 1; } .oo-ui-tagMultiselectWidget-handle > .oo-ui-tagMultiselectWidget-content > input:focus { outline: 0; } .oo-ui-tagMultiselectWidget-handle > .oo-ui-tagMultiselectWidget-content .oo-ui-tagMultiselectWidget-group:empty + input { margin-right: 0; } .oo-ui-tagMultiselectWidget-handle .oo-ui-tagMultiselectWidget-group { display: inline-block; max-width: 100%; margin-top: 0.28571429em; margin-right: -0.14285714em; } .oo-ui-tagMultiselectWidget.oo-ui-iconElement .oo-ui-tagMultiselectWidget-handle { padding-right: 2.02857143em; } .oo-ui-tagMultiselectWidget.oo-ui-iconElement .oo-ui-tagMultiselectWidget-handle > .oo-ui-iconElement-icon { right: 0; margin: 0 0.3em; } .oo-ui-tagMultiselectWidget.oo-ui-indicatorElement .oo-ui-tagMultiselectWidget-handle { padding-left: 2.40714286em; } .oo-ui-tagMultiselectWidget.oo-ui-indicatorElement .oo-ui-tagMultiselectWidget-handle > .oo-ui-indicatorElement-indicator { left: 0; margin: 0 0.775em; } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled .oo-ui-tagMultiselectWidget-handle { background-color: #fff; -webkit-transition: border-color 250ms, box-shadow 250ms; -moz-transition: border-color 250ms, box-shadow 250ms; transition: border-color 250ms, box-shadow 250ms; } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-inlined:hover .oo-ui-tagMultiselectWidget-handle { border-color: #72777d; } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-inlined.oo-ui-tagMultiselectWidget-focus .oo-ui-tagMultiselectWidget-handle { border-color: #36c; outline: 0; box-shadow: inset 0 0 0 1px #36c; } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-inlined.oo-ui-flaggedElement-invalid .oo-ui-tagMultiselectWidget-handle, .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-inlined.oo-ui-flaggedElement-invalid:hover .oo-ui-tagMultiselectWidget-handle { border-color: #d33; } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined .oo-ui-tagMultiselectWidget-handle { background-color: #f8f9fa; border-bottom: 0; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined .oo-ui-tagItemWidget.oo-ui-widget-enabled { background-color: #fff; } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined .oo-ui-inputWidget-input { border-top-right-radius: 0; border-top-left-radius: 0; } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined.oo-ui-flaggedElement-invalid .oo-ui-inputWidget-input { border-color: #d33; } .oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-flaggedElement-invalid .oo-ui-inputWidget-input { color: #d33; } .oo-ui-tagMultiselectWidget.oo-ui-widget-disabled .oo-ui-tagMultiselectWidget-handle { color: #72777d; text-shadow: 0 1px 1px #fff; border-color: #c8ccd1; background-color: #eaecf0; } .oo-ui-tagMultiselectWidget.oo-ui-widget-disabled .oo-ui-tagMultiselectWidget-handle > .oo-ui-iconElement-icon { opacity: 0.51; } .oo-ui-tagMultiselectWidget.oo-ui-widget-disabled .oo-ui-tagMultiselectWidget-handle > .oo-ui-indicatorElement-indicator { opacity: 0.15; } .oo-ui-tagItemWidget { position: relative; display: inline-block; cursor: default; white-space: nowrap; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; width: auto; max-width: 100%; height: 1.57142857em; margin: 0 0 0.28571429em 0.28571429em; border: 1px solid #a2a9b1; border-radius: 1.57142857em; padding: 0 0.57142857em; line-height: 1.42857143em; vertical-align: middle; } .oo-ui-tagItemWidget.oo-ui-labelElement .oo-ui-labelElement-label { display: inline-block; max-width: 100%; text-overflow: ellipsis; overflow: hidden; } .oo-ui-tagItemWidget.oo-ui-labelElement:not( .oo-ui-tagItemWidget-fixed ) .oo-ui-labelElement-label { cursor: text; } .oo-ui-tagItemWidget.oo-ui-labelElement .oo-ui-labelElement-label { font-size: 0.92857143em; line-height: 1.61538462em; } .oo-ui-tagItemWidget.oo-ui-widget-enabled { color: #222; -webkit-transition: background-color 100ms, color 100ms, border-color 100ms, box-shadow 100ms; -moz-transition: background-color 100ms, color 100ms, border-color 100ms, box-shadow 100ms; transition: background-color 100ms, color 100ms, border-color 100ms, box-shadow 100ms; } .oo-ui-tagItemWidget.oo-ui-widget-enabled:hover { background-color: #fff; color: #444; border-color: #a2a9b1; } .oo-ui-tagItemWidget.oo-ui-widget-enabled:focus { border-color: #36c; box-shadow: inset 0 0 0 1px #36c; outline: 0; } .oo-ui-tagItemWidget.oo-ui-widget-enabled:not( .oo-ui-tagItemWidget-fixed ) { background-color: #f8f9fa; padding-left: 1.64285714em; } .oo-ui-tagItemWidget.oo-ui-widget-enabled.oo-ui-flaggedElement-invalid { border-color: #d33; } .oo-ui-tagItemWidget.oo-ui-widget-enabled.oo-ui-flaggedElement-invalid:hover { border-color: #d33; } .oo-ui-tagItemWidget.oo-ui-widget-enabled.oo-ui-flaggedElement-invalid:focus { border-color: #d33; box-shadow: inset 0 0 0 1px #d33; } .oo-ui-tagItemWidget.oo-ui-widget-enabled > .oo-ui-buttonElement { display: block; position: absolute; top: 0; left: 0; } .oo-ui-tagItemWidget.oo-ui-widget-enabled .oo-ui-buttonElement-button { border: 0; border-radius: 1.57142857em; padding-top: 1.42857143em; padding-right: 1.42857143em; -webkit-transition: background-color 100ms; -moz-transition: background-color 100ms; transition: background-color 100ms; } .oo-ui-tagItemWidget.oo-ui-widget-enabled .oo-ui-buttonElement-button:hover { background-color: #fff; } .oo-ui-tagItemWidget.oo-ui-widget-enabled .oo-ui-buttonElement-button:active { background-color: #c8ccd1; } .oo-ui-tagItemWidget.oo-ui-widget-enabled .oo-ui-buttonElement-button .oo-ui-icon-close { right: 0.21428571em; min-width: 14px; width: 1em; } .oo-ui-tagItemWidget.oo-ui-widget-enabled .oo-ui-buttonElement-button .oo-ui-labelElement-label, .oo-ui-tagItemWidget.oo-ui-widget-enabled .oo-ui-buttonElement-button .oo-ui-indicatorElement-indicator { display: none; } .oo-ui-tagItemWidget.oo-ui-widget-disabled { background-color: #eaecf0; color: #72777d; border-color: #c8ccd1; text-shadow: 0 1px 1px #fff; } .oo-ui-tagItemWidget.oo-ui-widget-disabled:focus { outline: 0; } .oo-ui-tagItemWidget.oo-ui-widget-disabled > .oo-ui-buttonElement { display: none; } .oo-ui-searchWidget-query { position: absolute; top: 0; right: 0; left: 0; } .oo-ui-searchWidget-query .oo-ui-textInputWidget { width: 100%; } .oo-ui-searchWidget-results { position: absolute; bottom: 0; right: 0; left: 0; overflow-x: hidden; overflow-y: auto; -webkit-overflow-scrolling: touch; } .oo-ui-searchWidget-query { height: 4em; padding: 0 1.42857143em; border-bottom: 1px solid #c8ccd1; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1); } .oo-ui-searchWidget-query .oo-ui-textInputWidget { margin: 0.85714286em 0; } .oo-ui-searchWidget-results { top: 4em; padding: 1.14285714em; line-height: 0; }
upgrade/files/10.1.0-11.0.0.B1/files/template/comment_element_block.html
unaio/una
<div id="__html_id__" class="sys-action __style_prefix__ __class__ bx-def-margin-right-auto bx-def-margin-thd-topbottom" bx_comment_data_count="__count__"> <div class="sys-action-cnt __style_prefix__-cnt bx-clearfix"> <bx_if:show_do_comment> <div class="__style_prefix__-element-holder">__do_comment__</div> </bx_if:show_do_comment> <bx_if:show_counter> <div class="__style_prefix__-counter-holder bx-def-margin-sec-left-auto bx-btn-border"<bx_if:show_hidden> style="display:none"</bx_if:show_hidden>>__counter__</div> </bx_if:show_counter> </div> __script__ </div>
deps/boost_1_77_0/libs/beast/doc/html/beast/ref/boost__beast__test__basic_stream/basic_stream/overload1.html
davehorton/drachtio-server
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>test::basic_stream::basic_stream (1 of 7 overloads)</title> <link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.79.1"> <link rel="home" href="../../../../index.html" title="Chapter 1. Boost.Beast"> <link rel="up" href="../basic_stream.html" title="test::basic_stream::basic_stream"> <link rel="prev" href="../basic_stream.html" title="test::basic_stream::basic_stream"> <link rel="next" href="overload2.html" title="test::basic_stream::basic_stream (2 of 7 overloads)"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr> <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../boost.png"></td> <td align="center"><a href="../../../../../../../../index.html">Home</a></td> <td align="center"><a href="../../../../../../../../libs/libraries.htm">Libraries</a></td> <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> <td align="center"><a href="../../../../../../../../more/index.htm">More</a></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="../basic_stream.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../basic_stream.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="overload2.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h6 class="title"> <a name="beast.ref.boost__beast__test__basic_stream.basic_stream.overload1"></a><a class="link" href="overload1.html" title="test::basic_stream::basic_stream (1 of 7 overloads)">test::basic_stream::basic_stream (1 of 7 overloads)</a> </h6></div></div></div> <p> Move Constructor. </p> <h7><a name="beast.ref.boost__beast__test__basic_stream.basic_stream.overload1.h0"></a> <span class="phrase"><a name="beast.ref.boost__beast__test__basic_stream.basic_stream.overload1.synopsis"></a></span><a class="link" href="overload1.html#beast.ref.boost__beast__test__basic_stream.basic_stream.overload1.synopsis">Synopsis</a> </h7><pre class="programlisting"><span class="identifier">basic_stream</span><span class="special">(</span> <span class="identifier">basic_stream</span><span class="special">&amp;&amp;</span> <span class="identifier">other</span><span class="special">);</span> </pre> <h7><a name="beast.ref.boost__beast__test__basic_stream.basic_stream.overload1.h1"></a> <span class="phrase"><a name="beast.ref.boost__beast__test__basic_stream.basic_stream.overload1.description"></a></span><a class="link" href="overload1.html#beast.ref.boost__beast__test__basic_stream.basic_stream.overload1.description">Description</a> </h7><p> Moving the stream while asynchronous operations are pending results in undefined behavior. </p> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright © 2016-2019 Vinnie Falco<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="../basic_stream.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../basic_stream.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="overload2.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
index.css
StanislauZubovich/WCAG
#Cover h2 { color: #fff; top: 66%; } .slide.column5_shout h2 { font-size: 90px; } .slide small { font-size: 80%; } .slide.shout .shout_h2_small { font-size: 30px; top: 70%; } .slide.shout .shout_h2_big_2lines { font-size: 90px; } .slide.shout.shout_description .definition { font-size:100px; top:20%; } .slide.shout.shout_description .description { font-size: 75px; top:45%; } .slide.shout.shout_description .description:only-child { font-size: 75px; top:60%; } .slide.shout.shout_description .description.sublevel { top:75%; } /* .slide.shout .shout_h2_big_2lines + .shout_h2_small { font-size: 30px; top: 63%; } */ .wcag-block { position: absolute; right: 10%; bottom: 10%; } .wcag-read { position: relative; border:2px solid #111; border-radius: 5px; padding: 10px; } .wcag-read:before { position: absolute; top: 0; left: -85px; display: block; width: 90px; height: 90px; content: ''; background: url(pictures/reader.svg) no-repeat; } .slide.code_88 code { font-size: 88%; } .deprecated { position:relative; } .deprecated .cross { position:absolute; top: 30px; left: 20px; width:300px; } .deprecated .cross:before, .deprecated .cross:after { content:''; position:absolute; top:0; width:110%; height:4px; background:#D00; } .deprecated .cross:before { left:0; transform-origin:0 0; transform:rotate(25deg); } .deprecated .cross:after { right:0; transform-origin:100% 0; transform:rotate(-25deg); } .slide.no_list ul>li:before { content: ''; } .slide .adv LI:before { content: ''; width: 2em; height: 1em; background-size: auto 100%; background-repeat: no-repeat; margin: -5px -10px -5px 10px; } .slide .adv LI.yes:before { background-image: url(pictures/check.svg); } .slide .adv LI.no:before { background-image: url(pictures/cross.svg); } .slide.links ul { position: absolute; top: 30%; } .slide.links ul+ul { position: absolute; top: 30%; left:50%; }
admintools_bootstrap/templates/admin/change_list_results.html
quinode/django-admintools-bootstrap
{% load i18n %} {% if result_hidden_fields %} <div class="hiddenfields">{# DIV for HTML validation #} {% for item in result_hidden_fields %}{{ item }}{% endfor %} </div> {% endif %} {% if results %} <div class="results"> <table cellspacing="0" id="result_list" class="table table-striped table-condensed table-bordered"> <thead> <tr> {% for header in result_headers %} <th scope="col" {{ header.class_attrib }}> {% if header.sortable %} {% if header.sort_priority > 0 %} <div class="btn-group pull-right sortoptions"> <a href="{{ header.url_toggle }}" class="btn" title="{% trans "Toggle sorting" %}"> <i class="{% if header.ascending %}icon-chevron-up{% else %}icon-chevron-down{% endif %}"></i> </a> <a class="btn btn-danger" href="{{ header.url_remove }}" title="{% trans "Remove from sorting" %}"><i class="icon-remove icon-white"></i></a> </div> {% endif %} {% endif %} <div class="text">{% if header.sortable %}<a href="{{ header.url_primary }}">{{ header.text|capfirst }}</a>{% else %}<span>{{ header.text|capfirst }}</span>{% endif %}</div> <div class="clear"></div> </th>{% endfor %} </tr> </thead> <tbody> {% for result in results %} {% if result.form.non_field_errors %} <tr><td colspan="{{ result|length }}">{{ result.form.non_field_errors }}</td></tr> {% endif %} <tr class="{% cycle 'row1' 'row2' %}">{% for item in result %}{{ item }}{% endfor %}</tr> {% endfor %} </tbody> </table> </div> {% endif %}
third_party/asio/doc/asio/reference/generic__stream_protocol/operator_eq__eq_.html
otgaard/zap
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>generic::stream_protocol::operator==</title> <link rel="stylesheet" href="../../../boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.75.2"> <link rel="home" href="../../../index.html" title="Asio"> <link rel="up" href="../generic__stream_protocol.html" title="generic::stream_protocol"> <link rel="prev" href="operator_not__eq_.html" title="generic::stream_protocol::operator!="> <link rel="next" href="protocol.html" title="generic::stream_protocol::protocol"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr><td valign="top"><img alt="asio C++ library" width="250" height="60" src="../../../asio.png"></td></tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="operator_not__eq_.html"><img src="../../../prev.png" alt="Prev"></a><a accesskey="u" href="../generic__stream_protocol.html"><img src="../../../up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../home.png" alt="Home"></a><a accesskey="n" href="protocol.html"><img src="../../../next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="asio.reference.generic__stream_protocol.operator_eq__eq_"></a><a class="link" href="operator_eq__eq_.html" title="generic::stream_protocol::operator==">generic::stream_protocol::operator==</a> </h4></div></div></div> <p> <a class="indexterm" name="idp150429232"></a> Compare two protocols for equality. </p> <pre class="programlisting"><span class="keyword">friend</span> <span class="keyword">bool</span> <span class="keyword">operator</span><span class="special">==(</span> <span class="keyword">const</span> <span class="identifier">stream_protocol</span> <span class="special">&amp;</span> <span class="identifier">p1</span><span class="special">,</span> <span class="keyword">const</span> <span class="identifier">stream_protocol</span> <span class="special">&amp;</span> <span class="identifier">p2</span><span class="special">);</span> </pre> <h6> <a name="asio.reference.generic__stream_protocol.operator_eq__eq_.h0"></a> <span><a name="asio.reference.generic__stream_protocol.operator_eq__eq_.requirements"></a></span><a class="link" href="operator_eq__eq_.html#asio.reference.generic__stream_protocol.operator_eq__eq_.requirements">Requirements</a> </h6> <p> <span class="emphasis"><em>Header: </em></span><code class="literal">asio/generic/stream_protocol.hpp</code> </p> <p> <span class="emphasis"><em>Convenience header: </em></span><code class="literal">asio.hpp</code> </p> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2003-2015 Christopher M. Kohlhoff<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="operator_not__eq_.html"><img src="../../../prev.png" alt="Prev"></a><a accesskey="u" href="../generic__stream_protocol.html"><img src="../../../up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../home.png" alt="Home"></a><a accesskey="n" href="protocol.html"><img src="../../../next.png" alt="Next"></a> </div> </body> </html>
libs/boost_1_50_0/doc/html/boost_asio/reference/buffered_stream/in_avail.html
djsedulous/namecoind
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>buffered_stream::in_avail</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="../../../boost_asio.html" title="Boost.Asio"> <link rel="up" href="../buffered_stream.html" title="buffered_stream"> <link rel="prev" href="get_io_service.html" title="buffered_stream::get_io_service"> <link rel="next" href="in_avail/overload1.html" title="buffered_stream::in_avail (1 of 2 overloads)"> </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="get_io_service.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../buffered_stream.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="in_avail/overload1.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="boost_asio.reference.buffered_stream.in_avail"></a><a class="link" href="in_avail.html" title="buffered_stream::in_avail">buffered_stream::in_avail</a> </h4></div></div></div> <p> <a class="indexterm" name="id1303312"></a> Determine the amount of data that may be read without blocking. </p> <pre class="programlisting"><span class="identifier">std</span><span class="special">::</span><span class="identifier">size_t</span> <a class="link" href="in_avail/overload1.html" title="buffered_stream::in_avail (1 of 2 overloads)">in_avail</a><span class="special">();</span> <span class="emphasis"><em>&#187; <a class="link" href="in_avail/overload1.html" title="buffered_stream::in_avail (1 of 2 overloads)">more...</a></em></span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">size_t</span> <a class="link" href="in_avail/overload2.html" title="buffered_stream::in_avail (2 of 2 overloads)">in_avail</a><span class="special">(</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">system</span><span class="special">::</span><span class="identifier">error_code</span> <span class="special">&amp;</span> <span class="identifier">ec</span><span class="special">);</span> <span class="emphasis"><em>&#187; <a class="link" href="in_avail/overload2.html" title="buffered_stream::in_avail (2 of 2 overloads)">more...</a></em></span> </pre> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2003-2012 Christopher M. Kohlhoff<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="get_io_service.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../buffered_stream.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="in_avail/overload1.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
tools/armgcc/share/doc/gcc-arm-none-eabi/html/as.html/Characters.html
marduino/stm32Proj
<html lang="en"> <head> <title>Characters - Using as</title> <meta http-equiv="Content-Type" content="text/html"> <meta name="description" content="Using as"> <meta name="generator" content="makeinfo 4.11"> <link title="Top" rel="start" href="index.html#Top"> <link rel="up" href="Constants.html#Constants" title="Constants"> <link rel="next" href="Numbers.html#Numbers" title="Numbers"> <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage"> <!-- This file documents the GNU Assembler "as". Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2006, 2007, 2008, 2009, 2010, 2011 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"> <p> <a name="Characters"></a> Next:&nbsp;<a rel="next" accesskey="n" href="Numbers.html#Numbers">Numbers</a>, Up:&nbsp;<a rel="up" accesskey="u" href="Constants.html#Constants">Constants</a> <hr> </div> <h4 class="subsection">3.6.1 Character Constants</h4> <p><a name="index-character-constants-140"></a><a name="index-constants_002c-character-141"></a>There are two kinds of character constants. A <dfn>character</dfn> stands for one character in one byte and its value may be used in numeric expressions. String constants (properly called string <em>literals</em>) are potentially many bytes and their values may not be used in arithmetic expressions. <ul class="menu"> <li><a accesskey="1" href="Strings.html#Strings">Strings</a>: Strings <li><a accesskey="2" href="Chars.html#Chars">Chars</a>: Characters </ul> </body></html>
web/bundles/asiclinica/css/chosen.css
sanborino/clinica
/*! Chosen, a Select Box Enhancer for jQuery and Prototype by Patrick Filler for Harvest, http://getharvest.com Version 1.2.0 Full source at https://github.com/harvesthq/chosen Copyright (c) 2011-2014 Harvest http://getharvest.com MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md This file is generated by `grunt build`, do not edit it by hand. */ /* @group Base */ .chosen-container { position: relative; display: inline-block; vertical-align: middle; font-size: 13px; zoom: 1; *display: inline; -webkit-user-select: none; -moz-user-select: none; user-select: none; } .chosen-container * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .chosen-container .chosen-drop { position: absolute; top: 100%; left: -9999px; z-index: 1010; width: 100%; border: 1px solid #aaa; border-top: 0; background: #fff; box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15); } .chosen-container.chosen-with-drop .chosen-drop { left: 0; } .chosen-container a { cursor: pointer; } /* @end */ /* @group Single Chosen */ .chosen-container-single .chosen-single { position: relative; display: block; overflow: hidden; padding: 0 0 0 8px; height: 25px; border: 1px solid #aaa; border-radius: 5px; background-color: #fff; background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4)); background: -webkit-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%); background: -moz-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%); background: -o-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%); background: linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%); background-clip: padding-box; box-shadow: 0 0 3px white inset, 0 1px 1px rgba(0, 0, 0, 0.1); color: #444; text-decoration: none; white-space: nowrap; line-height: 24px; } .chosen-container-single .chosen-default { color: #999; } .chosen-container-single .chosen-single span { display: block; overflow: hidden; margin-right: 26px; text-overflow: ellipsis; white-space: nowrap; } .chosen-container-single .chosen-single-with-deselect span { margin-right: 38px; } .chosen-container-single .chosen-single abbr { position: absolute; top: 6px; right: 26px; display: block; width: 12px; height: 12px; background: url('../img/chosen-sprite.png') -42px 1px no-repeat; font-size: 1px; } .chosen-container-single .chosen-single abbr:hover { background-position: -42px -10px; } .chosen-container-single.chosen-disabled .chosen-single abbr:hover { background-position: -42px -10px; } .chosen-container-single .chosen-single div { position: absolute; top: 0; right: 0; display: block; width: 18px; height: 100%; } .chosen-container-single .chosen-single div b { display: block; width: 100%; height: 100%; background: url('../img/chosen-sprite.png') no-repeat 0px 2px; } .chosen-container-single .chosen-search { position: relative; z-index: 1010; margin: 0; padding: 3px 4px; white-space: nowrap; } .chosen-container-single .chosen-search input[type="text"] { margin: 1px 0; padding: 4px 20px 4px 5px; width: 100%; height: auto; outline: 0; border: 1px solid #aaa; background: white url('../img/chosen-sprite.png') no-repeat 100% -20px; background: url('../img/chosen-sprite.png') no-repeat 100% -20px; font-size: 1em; font-family: sans-serif; line-height: normal; border-radius: 0; } .chosen-container-single .chosen-drop { margin-top: -1px; border-radius: 0 0 4px 4px; background-clip: padding-box; } .chosen-container-single.chosen-container-single-nosearch .chosen-search { position: absolute; left: -9999px; } /* @end */ /* @group Results */ .chosen-container .chosen-results { color: #444; position: relative; overflow-x: hidden; overflow-y: auto; margin: 0 4px 4px 0; padding: 0 0 0 4px; max-height: 240px; -webkit-overflow-scrolling: touch; } .chosen-container .chosen-results li { display: none; margin: 0; padding: 5px 6px; list-style: none; line-height: 15px; word-wrap: break-word; -webkit-touch-callout: none; } .chosen-container .chosen-results li.active-result { display: list-item; cursor: pointer; } .chosen-container .chosen-results li.disabled-result { display: list-item; color: #ccc; cursor: default; } .chosen-container .chosen-results li.highlighted { background-color: #3875d7; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc)); background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%); background-image: -moz-linear-gradient(#3875d7 20%, #2a62bc 90%); background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%); background-image: linear-gradient(#3875d7 20%, #2a62bc 90%); color: #fff; } .chosen-container .chosen-results li.no-results { color: #777; display: list-item; background: #f4f4f4; } .chosen-container .chosen-results li.group-result { display: list-item; font-weight: bold; cursor: default; } .chosen-container .chosen-results li.group-option { padding-left: 15px; } .chosen-container .chosen-results li em { font-style: normal; text-decoration: underline; } /* @end */ /* @group Multi Chosen */ .chosen-container-multi .chosen-choices { position: relative; overflow: hidden; margin: 0; padding: 0 5px; width: 100%; height: auto !important; height: 1%; border: 1px solid #aaa; background-color: #fff; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff)); background-image: -webkit-linear-gradient(#eeeeee 1%, #ffffff 15%); background-image: -moz-linear-gradient(#eeeeee 1%, #ffffff 15%); background-image: -o-linear-gradient(#eeeeee 1%, #ffffff 15%); background-image: linear-gradient(#eeeeee 1%, #ffffff 15%); cursor: text; } .chosen-container-multi .chosen-choices li { float: left; list-style: none; } .chosen-container-multi .chosen-choices li.search-field { margin: 0; padding: 0; white-space: nowrap; } .chosen-container-multi .chosen-choices li.search-field input[type="text"] { margin: 1px 0; padding: 0; height: 25px; outline: 0; border: 0 !important; background: transparent !important; box-shadow: none; color: #999; font-size: 100%; font-family: sans-serif; line-height: normal; border-radius: 0; } .chosen-container-multi .chosen-choices li.search-choice { position: relative; margin: 3px 5px 3px 0; padding: 3px 20px 3px 5px; border: 1px solid #aaa; max-width: 100%; border-radius: 3px; background-color: #eeeeee; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee)); background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); background-size: 100% 19px; background-repeat: repeat-x; background-clip: padding-box; box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05); color: #333; line-height: 13px; cursor: default; } .chosen-container-multi .chosen-choices li.search-choice span { word-wrap: break-word; } .chosen-container-multi .chosen-choices li.search-choice .search-choice-close { position: absolute; top: 4px; right: 3px; display: block; width: 12px; height: 12px; background: url('../img/chosen-sprite.png') -42px 1px no-repeat; font-size: 1px; } .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover { background-position: -42px -10px; } .chosen-container-multi .chosen-choices li.search-choice-disabled { padding-right: 5px; border: 1px solid #ccc; background-color: #e4e4e4; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee)); background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); color: #666; } .chosen-container-multi .chosen-choices li.search-choice-focus { background: #d4d4d4; } .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close { background-position: -42px -10px; } .chosen-container-multi .chosen-results { margin: 0; padding: 0; } .chosen-container-multi .chosen-drop .result-selected { display: list-item; color: #ccc; cursor: default; } /* @end */ /* @group Active */ .chosen-container-active .chosen-single { border: 1px solid #5897fb; box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); } .chosen-container-active.chosen-with-drop .chosen-single { border: 1px solid #aaa; -moz-border-radius-bottomright: 0; border-bottom-right-radius: 0; -moz-border-radius-bottomleft: 0; border-bottom-left-radius: 0; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff)); background-image: -webkit-linear-gradient(#eeeeee 20%, #ffffff 80%); background-image: -moz-linear-gradient(#eeeeee 20%, #ffffff 80%); background-image: -o-linear-gradient(#eeeeee 20%, #ffffff 80%); background-image: linear-gradient(#eeeeee 20%, #ffffff 80%); box-shadow: 0 1px 0 #fff inset; } .chosen-container-active.chosen-with-drop .chosen-single div { border-left: none; background: transparent; } .chosen-container-active.chosen-with-drop .chosen-single div b { background-position: -18px 2px; } .chosen-container-active .chosen-choices { border: 1px solid #5897fb; box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); } .chosen-container-active .chosen-choices li.search-field input[type="text"] { color: #222 !important; } /* @end */ /* @group Disabled Support */ .chosen-disabled { opacity: 0.5 !important; cursor: default; } .chosen-disabled .chosen-single { cursor: default; } .chosen-disabled .chosen-choices .search-choice .search-choice-close { cursor: default; } /* @end */ /* @group Right to Left */ .chosen-rtl { text-align: right; } .chosen-rtl .chosen-single { overflow: visible; padding: 0 8px 0 0; } .chosen-rtl .chosen-single span { margin-right: 0; margin-left: 26px; direction: rtl; } .chosen-rtl .chosen-single-with-deselect span { margin-left: 38px; } .chosen-rtl .chosen-single div { right: auto; left: 3px; } .chosen-rtl .chosen-single abbr { right: auto; left: 26px; } .chosen-rtl .chosen-choices li { float: right; } .chosen-rtl .chosen-choices li.search-field input[type="text"] { direction: rtl; } .chosen-rtl .chosen-choices li.search-choice { margin: 3px 5px 3px 0; padding: 3px 5px 3px 19px; } .chosen-rtl .chosen-choices li.search-choice .search-choice-close { right: auto; left: 4px; } .chosen-rtl.chosen-container-single-nosearch .chosen-search, .chosen-rtl .chosen-drop { left: 9999px; } .chosen-rtl.chosen-container-single .chosen-results { margin: 0 0 4px 4px; padding: 0 4px 0 0; } .chosen-rtl .chosen-results li.group-option { padding-right: 15px; padding-left: 0; } .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div { border-right: none; } .chosen-rtl .chosen-search input[type="text"] { padding: 4px 5px 4px 20px; background: white url('../img/chosen-sprite.png') no-repeat -30px -20px; background: url('../img/chosen-sprite.png') no-repeat -30px -20px; direction: rtl; } .chosen-rtl.chosen-container-single .chosen-single div b { background-position: 6px 2px; } .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b { background-position: -12px 2px; } /* @end */ /* @group Retina compatibility */ @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi) { .chosen-rtl .chosen-search input[type="text"], .chosen-container-single .chosen-single abbr, .chosen-container-single .chosen-single div b, .chosen-container-single .chosen-search input[type="text"], .chosen-container-multi .chosen-choices .search-choice .search-choice-close, .chosen-container .chosen-results-scroll-down span, .chosen-container .chosen-results-scroll-up span { background-image: url('../img/chosen-sprite@2x.png') !important; background-size: 52px 37px !important; background-repeat: no-repeat !important; } } /* @end */
org.mwc.asset.comms/docs/docs/engine/org/restlet/engine/resource/class-use/AnnotationInfo.html
debrief/debrief
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.5.0_14) on Wed Nov 03 17:45:50 GMT+01:00 2010 --> <TITLE> Uses of Class org.restlet.engine.resource.AnnotationInfo (Restlet Engine 2.0.2 - JSE) </TITLE> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="Uses of Class org.restlet.engine.resource.AnnotationInfo (Restlet Engine 2.0.2 - JSE)"; } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/restlet/engine/resource/AnnotationInfo.html" title="class in org.restlet.engine.resource"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/restlet/engine/resource/class-use/AnnotationInfo.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="AnnotationInfo.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.restlet.engine.resource.AnnotationInfo</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/restlet/engine/resource/AnnotationInfo.html" title="class in org.restlet.engine.resource">AnnotationInfo</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.restlet.engine.resource"><B>org.restlet.engine.resource</B></A></TD> <TD>Supports resources.&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.restlet.engine.resource"><!-- --></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/restlet/engine/resource/AnnotationInfo.html" title="class in org.restlet.engine.resource">AnnotationInfo</A> in <A HREF="../../../../../org/restlet/engine/resource/package-summary.html">org.restlet.engine.resource</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../org/restlet/engine/resource/package-summary.html">org.restlet.engine.resource</A> that return <A HREF="../../../../../org/restlet/engine/resource/AnnotationInfo.html" title="class in org.restlet.engine.resource">AnnotationInfo</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../org/restlet/engine/resource/AnnotationInfo.html" title="class in org.restlet.engine.resource">AnnotationInfo</A></CODE></FONT></TD> <TD><CODE><B>AnnotationUtils.</B><B><A HREF="../../../../../org/restlet/engine/resource/AnnotationUtils.html#getAnnotation(java.util.List, java.lang.reflect.Method)">getAnnotation</A></B>(java.util.List&lt;<A HREF="../../../../../org/restlet/engine/resource/AnnotationInfo.html" title="class in org.restlet.engine.resource">AnnotationInfo</A>&gt;&nbsp;annotations, java.lang.reflect.Method&nbsp;javaMethod)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the first annotation descriptor matching the given Java method.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../org/restlet/engine/resource/AnnotationInfo.html" title="class in org.restlet.engine.resource">AnnotationInfo</A></CODE></FONT></TD> <TD><CODE><B>AnnotationUtils.</B><B><A HREF="../../../../../org/restlet/engine/resource/AnnotationUtils.html#getAnnotation(java.util.List, org.restlet.data.Method, org.restlet.representation.Representation, org.restlet.service.MetadataService, org.restlet.service.ConverterService)">getAnnotation</A></B>(java.util.List&lt;<A HREF="../../../../../org/restlet/engine/resource/AnnotationInfo.html" title="class in org.restlet.engine.resource">AnnotationInfo</A>&gt;&nbsp;annotations, <A HREF="http://www.restlet.org/documentation/2.0/api/org/restlet/data/Method.html" title="class or interface in org.restlet.data">Method</A>&nbsp;restletMethod, <A HREF="http://www.restlet.org/documentation/2.0/api/org/restlet/representation/Representation.html" title="class or interface in org.restlet.representation">Representation</A>&nbsp;entity, <A HREF="http://www.restlet.org/documentation/2.0/api/org/restlet/service/MetadataService.html" title="class or interface in org.restlet.service">MetadataService</A>&nbsp;metadataService, <A HREF="http://www.restlet.org/documentation/2.0/api/org/restlet/service/ConverterService.html" title="class or interface in org.restlet.service">ConverterService</A>&nbsp;converterService)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the first annotation descriptor matching the given Restlet method.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../org/restlet/engine/resource/AnnotationInfo.html" title="class in org.restlet.engine.resource">AnnotationInfo</A></CODE></FONT></TD> <TD><CODE><B>VariantInfo.</B><B><A HREF="../../../../../org/restlet/engine/resource/VariantInfo.html#getAnnotationInfo()">getAnnotationInfo</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the optional annotation descriptor.</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../org/restlet/engine/resource/package-summary.html">org.restlet.engine.resource</A> that return types with arguments of type <A HREF="../../../../../org/restlet/engine/resource/AnnotationInfo.html" title="class in org.restlet.engine.resource">AnnotationInfo</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;java.util.List&lt;<A HREF="../../../../../org/restlet/engine/resource/AnnotationInfo.html" title="class in org.restlet.engine.resource">AnnotationInfo</A>&gt;</CODE></FONT></TD> <TD><CODE><B>AnnotationUtils.</B><B><A HREF="../../../../../org/restlet/engine/resource/AnnotationUtils.html#getAnnotations(java.lang.Class)">getAnnotations</A></B>(java.lang.Class&lt;?&gt;&nbsp;clazz)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the annotation descriptors for the given resource class.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;java.util.List&lt;<A HREF="../../../../../org/restlet/engine/resource/AnnotationInfo.html" title="class in org.restlet.engine.resource">AnnotationInfo</A>&gt;</CODE></FONT></TD> <TD><CODE><B>AnnotationUtils.</B><B><A HREF="../../../../../org/restlet/engine/resource/AnnotationUtils.html#getAnnotations(java.lang.Class, java.lang.reflect.Method)">getAnnotations</A></B>(java.lang.Class&lt;?&gt;&nbsp;clazz, java.lang.reflect.Method&nbsp;javaMethod)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the annotation descriptors for the given resource class.</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Method parameters in <A HREF="../../../../../org/restlet/engine/resource/package-summary.html">org.restlet.engine.resource</A> with type arguments of type <A HREF="../../../../../org/restlet/engine/resource/AnnotationInfo.html" title="class in org.restlet.engine.resource">AnnotationInfo</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../org/restlet/engine/resource/AnnotationInfo.html" title="class in org.restlet.engine.resource">AnnotationInfo</A></CODE></FONT></TD> <TD><CODE><B>AnnotationUtils.</B><B><A HREF="../../../../../org/restlet/engine/resource/AnnotationUtils.html#getAnnotation(java.util.List, java.lang.reflect.Method)">getAnnotation</A></B>(java.util.List&lt;<A HREF="../../../../../org/restlet/engine/resource/AnnotationInfo.html" title="class in org.restlet.engine.resource">AnnotationInfo</A>&gt;&nbsp;annotations, java.lang.reflect.Method&nbsp;javaMethod)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the first annotation descriptor matching the given Java method.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../org/restlet/engine/resource/AnnotationInfo.html" title="class in org.restlet.engine.resource">AnnotationInfo</A></CODE></FONT></TD> <TD><CODE><B>AnnotationUtils.</B><B><A HREF="../../../../../org/restlet/engine/resource/AnnotationUtils.html#getAnnotation(java.util.List, org.restlet.data.Method, org.restlet.representation.Representation, org.restlet.service.MetadataService, org.restlet.service.ConverterService)">getAnnotation</A></B>(java.util.List&lt;<A HREF="../../../../../org/restlet/engine/resource/AnnotationInfo.html" title="class in org.restlet.engine.resource">AnnotationInfo</A>&gt;&nbsp;annotations, <A HREF="http://www.restlet.org/documentation/2.0/api/org/restlet/data/Method.html" title="class or interface in org.restlet.data">Method</A>&nbsp;restletMethod, <A HREF="http://www.restlet.org/documentation/2.0/api/org/restlet/representation/Representation.html" title="class or interface in org.restlet.representation">Representation</A>&nbsp;entity, <A HREF="http://www.restlet.org/documentation/2.0/api/org/restlet/service/MetadataService.html" title="class or interface in org.restlet.service">MetadataService</A>&nbsp;metadataService, <A HREF="http://www.restlet.org/documentation/2.0/api/org/restlet/service/ConverterService.html" title="class or interface in org.restlet.service">ConverterService</A>&nbsp;converterService)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the first annotation descriptor matching the given Restlet method.</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Constructors in <A HREF="../../../../../org/restlet/engine/resource/package-summary.html">org.restlet.engine.resource</A> with parameters of type <A HREF="../../../../../org/restlet/engine/resource/AnnotationInfo.html" title="class in org.restlet.engine.resource">AnnotationInfo</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../org/restlet/engine/resource/VariantInfo.html#VariantInfo(org.restlet.data.MediaType, org.restlet.engine.resource.AnnotationInfo)">VariantInfo</A></B>(<A HREF="http://www.restlet.org/documentation/2.0/api/org/restlet/data/MediaType.html" title="class or interface in org.restlet.data">MediaType</A>&nbsp;mediaType, <A HREF="../../../../../org/restlet/engine/resource/AnnotationInfo.html" title="class in org.restlet.engine.resource">AnnotationInfo</A>&nbsp;annotationInfo)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Constructor.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../org/restlet/engine/resource/VariantInfo.html#VariantInfo(org.restlet.representation.Variant, org.restlet.engine.resource.AnnotationInfo)">VariantInfo</A></B>(<A HREF="http://www.restlet.org/documentation/2.0/api/org/restlet/representation/Variant.html" title="class or interface in org.restlet.representation">Variant</A>&nbsp;variant, <A HREF="../../../../../org/restlet/engine/resource/AnnotationInfo.html" title="class in org.restlet.engine.resource">AnnotationInfo</A>&nbsp;annotationInfo)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Constructor.</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/restlet/engine/resource/AnnotationInfo.html" title="class in org.restlet.engine.resource"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/restlet/engine/resource/class-use/AnnotationInfo.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="AnnotationInfo.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> <i>Copyright &#169; 2005-2010 <a target="_top" href="http://www.noelios.com">Noelios Technologies</a>.</i> </BODY> </HTML>
docs/api/de/uniba/wiai/lspi/util/logging/package-summary.html
changman/OpenChord
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.5.0_08) on Fri Apr 11 18:14:54 CEST 2008 --> <TITLE> de.uniba.wiai.lspi.util.logging (OpenChord API 1.0.5) </TITLE> <META NAME="keywords" CONTENT="de.uniba.wiai.lspi.util.logging package"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="de.uniba.wiai.lspi.util.logging (OpenChord API 1.0.5)"; } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../../de/uniba/wiai/lspi/util/console/parser/package-summary.html"><B>PREV PACKAGE</B></A>&nbsp; &nbsp;NEXT PACKAGE</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?de/uniba/wiai/lspi/util/logging/package-summary.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <H2> Package de.uniba.wiai.lspi.util.logging </H2> Wraps different logging APIs by providing a unified logging API. <P> <B>See:</B> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="#package_description"><B>Description</B></A> <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../../../../de/uniba/wiai/lspi/util/logging/DummyLogger.html" title="class in de.uniba.wiai.lspi.util.logging">DummyLogger</A></B></TD> <TD>This is a dummy logger that does no logging.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../../../../de/uniba/wiai/lspi/util/logging/Log4jLogger.html" title="class in de.uniba.wiai.lspi.util.logging">Log4jLogger</A></B></TD> <TD>This is the standard logger for this framework.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../../../../de/uniba/wiai/lspi/util/logging/Logger.html" title="class in de.uniba.wiai.lspi.util.logging">Logger</A></B></TD> <TD>This class is the abstract class to be implemented by a logger that should be used within the framework.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../../../../de/uniba/wiai/lspi/util/logging/SystemOutPrintlnLogger.html" title="class in de.uniba.wiai.lspi.util.logging">SystemOutPrintlnLogger</A></B></TD> <TD>Logger, that logs to <code>System.out</code>.</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Enum Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../../../../de/uniba/wiai/lspi/util/logging/Logger.LogLevel.html" title="enum in de.uniba.wiai.lspi.util.logging">Logger.LogLevel</A></B></TD> <TD>&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="package_description"><!-- --></A><H2> Package de.uniba.wiai.lspi.util.logging Description </H2> <P> Wraps different logging APIs by providing a unified logging API. <P> <P> <DL> </DL> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../../de/uniba/wiai/lspi/util/console/parser/package-summary.html"><B>PREV PACKAGE</B></A>&nbsp; &nbsp;NEXT PACKAGE</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?de/uniba/wiai/lspi/util/logging/package-summary.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> <i>Copyright &#169; 2004-2008 Karsten Loesing, Sven Kaffille - Distributed and Mobile Systems Group, <a href=http://www.uni-bamberg.de/pi/>Lehrstuhl f&uuml;r Praktische Informatik</a>, <a href=http://www.uni-bamberg.de/>Universit&auml;t Bamberg</a>. All Rights Reserved.</i> </BODY> </HTML>
docs_source/doxygen/html/structwayverb_1_1core_1_1unit__constructor_3_01cl__float4_01_4-members.html
reuk/wayverb
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.11"/> <title>Wayverb: Member List</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { init_search(); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">Wayverb </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.11 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('structwayverb_1_1core_1_1unit__constructor_3_01cl__float4_01_4.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">wayverb::core::unit_constructor&lt; cl_float4 &gt; Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="structwayverb_1_1core_1_1unit__constructor_3_01cl__float4_01_4.html">wayverb::core::unit_constructor&lt; cl_float4 &gt;</a>, including all inherited members.</p> <table class="directory"> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>value</b> (defined in <a class="el" href="structwayverb_1_1core_1_1unit__constructor_3_01cl__float4_01_4.html">wayverb::core::unit_constructor&lt; cl_float4 &gt;</a>)</td><td class="entry"><a class="el" href="structwayverb_1_1core_1_1unit__constructor_3_01cl__float4_01_4.html">wayverb::core::unit_constructor&lt; cl_float4 &gt;</a></td><td class="entry"><span class="mlabel">static</span></td></tr> </table></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.11 </li> </ul> </div> </body> </html>
vendor/magento/module-checkout-agreements/view/frontend/web/template/checkout/checkout-agreements.html
FPLD/project0
<!-- /** * Copyright © 2015 Magento. All rights reserved. * See COPYING.txt for license details. */ --> <form data-role="checkout-agreements" method="post"> <div class="checkout-agreements" data-bind="visible: isVisible"> <!-- ko foreach: agreements --> <!-- ko if: ($parent.isAgreementRequired($data)) --> <div class="checkout-agreement"> <input type="checkbox" data-bind="attr: { 'id': 'agreement_' + agreementId, 'name': 'agreement[' + agreementId + ']', 'value': agreementId }" data-validate="{required:true}" > <label data-bind="attr: {'for': 'agreement_' + agreementId}"> <button type="button" class="action action-show" data-bind="click: function(data, event) { return $parent.showContent(data, event) }" > <span data-bind="html: checkboxText"></span> </button> </label> </div> <!-- /ko --> <!-- ko ifnot: ($parent.isAgreementRequired($data)) --> <div class="checkout-agreement"> <button type="button" class="action action-show" data-bind="click: function(data, event) { return $parent.showContent(data, event) }"> <span data-bind="html: checkboxText"></span> </button> </div> <!-- /ko --> <!-- /ko --> <div id="checkout-agreements-modal" data-bind="afterRender: initModal" style="display: none"> <div class="checkout-agreements-item-title" data-bind="html: modalTitle"></div> <div class="checkout-agreements-item-content" data-bind="html: modalContent"></div> </div> </div> </form>
doc/html/qhebrewcodec.html
OS2World/LIB-QT3_Toolkit_Vbox
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/codecs/qrtlcodec.cpp:358 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>QHebrewCodec Class</title> <style type="text/css"><!-- fn { margin-left: 1cm; text-indent: -1cm; } a:link { color: #004faf; text-decoration: none } a:visited { color: #672967; text-decoration: none } body { background: #ffffff; color: black; } --></style> </head> <body> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr bgcolor="#E5E5E5"> <td valign=center> <a href="index.html"> <font color="#004faf">Home</font></a> | <a href="classes.html"> <font color="#004faf">All&nbsp;Classes</font></a> | <a href="mainclasses.html"> <font color="#004faf">Main&nbsp;Classes</font></a> | <a href="annotated.html"> <font color="#004faf">Annotated</font></a> | <a href="groups.html"> <font color="#004faf">Grouped&nbsp;Classes</font></a> | <a href="functions.html"> <font color="#004faf">Functions</font></a> </td> <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>QHebrewCodec Class Reference</h1> <p>The QHebrewCodec class provides conversion to and from visually ordered Hebrew. <a href="#details">More...</a> <p>All the functions in this class are <a href="threads.html#reentrant">reentrant</a> when Qt is built with thread support.</p> <p><tt>#include &lt;<a href="qrtlcodec-h.html">qrtlcodec.h</a>&gt;</tt> <p>Inherits <a href="qtextcodec.html">QTextCodec</a>. <p><a href="qhebrewcodec-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> <li class=fn>virtual const char * <a href="#mimeName"><b>mimeName</b></a> () const</li> <li class=fn>virtual QCString <a href="#fromUnicode"><b>fromUnicode</b></a> ( const&nbsp;QString&nbsp;&amp;&nbsp;uc, int&nbsp;&amp;&nbsp;lenInOut ) const</li> </ul> <hr><a name="details"></a><h2>Detailed Description</h2> <p> The QHebrewCodec class provides conversion to and from visually ordered Hebrew. <p> Hebrew as a semitic language is written from right to left. Because older computer systems couldn't handle reordering a string so that the first letter appears on the right, many older documents were encoded in visual order, so that the first letter of a line is the rightmost one in the string. <p> In contrast to this, Unicode defines characters to be in logical order (the order you would read the string). This codec tries to convert visually ordered Hebrew (8859-8) to Unicode. This might not always work perfectly, because reversing the <em>bidi</em> (bi-directional) algorithm that transforms from logical to visual order is non-trivial. <p> Transformation from Unicode to visual Hebrew (8859-8) is done using the bidi algorithm in Qt, and will produce correct results, so long as the codec is given the text a whole paragraph at a time. Places where newlines are supposed to go can be indicated by a newline character ('\n'). Note that these newline characters change the reordering behaviour of the algorithm, since the bidi reordering only takes place within one line of text, whereas line breaks are determined in visual order. <p> Visually ordered Hebrew is still used quite often in some places, mainly in email communication (since most email programs still don't understand logically ordered Hebrew) and on web pages. The use on web pages is rapidly decreasing, due to the availability of browsers that correctly support logically ordered Hebrew. <p> This codec has the name "iso8859-8". If you don't want any bidi reordering to happen during conversion, use the "iso8859-8-i" codec, which assumes logical order for the 8-bit string. <p>See also <a href="i18n.html">Internationalization with Qt</a>. <hr><h2>Member Function Documentation</h2> <h3 class=fn><a href="qcstring.html">QCString</a> <a name="fromUnicode"></a>QHebrewCodec::fromUnicode ( const&nbsp;<a href="qstring.html">QString</a>&nbsp;&amp;&nbsp;uc, int&nbsp;&amp;&nbsp;lenInOut ) const<tt> [virtual]</tt> </h3> Transforms the logically ordered <a href="qstring.html">QString</a>, <em>uc</em>, into a visually ordered string in the 8859-8 encoding. Qt's bidi algorithm is used to perform this task. Note that newline characters affect the reordering, since reordering is done on a line by line basis. <p> The algorithm is designed to work on whole paragraphs of text, so processing a line at a time may produce incorrect results. This approach is taken because the reordering of the contents of a particular line in a paragraph may depend on the previous line in the same paragraph. <p> Some encodings (for example Japanese or UTF-8) are multibyte (so one input character is mapped to two output characters). The <em>lenInOut</em> argument specifies the number of QChars that should be converted and is set to the number of characters returned. <p>Reimplemented from <a href="qtextcodec.html#fromUnicode">QTextCodec</a>. <h3 class=fn>const char * <a name="mimeName"></a>QHebrewCodec::mimeName () const<tt> [virtual]</tt> </h3> Returns the codec's mime name. <p>Reimplemented from <a href="qtextcodec.html#mimeName">QTextCodec</a>. <!-- eof --> <hr><p> This file is part of the <a href="index.html">Qt toolkit</a>. Copyright &copy; 1995-2007 <a href="http://www.trolltech.com/">Trolltech</a>. All Rights Reserved.<p><address><hr><div align=center> <table width=100% cellspacing=0 border=0><tr> <td>Copyright &copy; 2007 <a href="troll.html">Trolltech</a><td align=center><a href="trademarks.html">Trademarks</a> <td align=right><div align=right>Qt 3.3.8</div> </table></div></address></body> </html>
external/ctags-exuberant/ctags.html
baohaojun/ajoke
<!-- Creator : groff version 1.21 --> <!-- CreationDate: Thu Mar 17 14:38:55 2011 --> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta name="generator" content="groff -Thtml, see www.gnu.org"> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <meta name="Content-Style" content="text/css"> <style type="text/css"> p { margin-top: 0; margin-bottom: 0; vertical-align: top } pre { margin-top: 0; margin-bottom: 0; vertical-align: top } table { margin-top: 0; margin-bottom: 0; vertical-align: top } h1 { text-align: center } </style> <title>CTAGS</title> </head> <body> <h1 align="center">CTAGS</h1> <a href="#NAME">NAME</a><br> <a href="#SYNOPSIS">SYNOPSIS</a><br> <a href="#DESCRIPTION">DESCRIPTION</a><br> <a href="#SOURCE FILES">SOURCE FILES</a><br> <a href="#OPTIONS">OPTIONS</a><br> <a href="#OPERATIONAL DETAILS">OPERATIONAL DETAILS</a><br> <a href="#TAG FILE FORMAT">TAG FILE FORMAT</a><br> <a href="#HOW TO USE WITH VI">HOW TO USE WITH VI</a><br> <a href="#HOW TO USE WITH GNU EMACS">HOW TO USE WITH GNU EMACS</a><br> <a href="#HOW TO USE WITH NEDIT">HOW TO USE WITH NEDIT</a><br> <a href="#CAVEATS">CAVEATS</a><br> <a href="#BUGS">BUGS</a><br> <a href="#ENVIRONMENT VARIABLES">ENVIRONMENT VARIABLES</a><br> <a href="#FILES">FILES</a><br> <a href="#SEE ALSO">SEE ALSO</a><br> <a href="#AUTHOR">AUTHOR</a><br> <a href="#MOTIVATION">MOTIVATION</a><br> <a href="#CREDITS">CREDITS</a><br> <hr> <h2>NAME <a name="NAME"></a> </h2> <p style="margin-left:11%; margin-top: 1em">ctags &minus; Generate tag files for source code</p> <h2>SYNOPSIS <a name="SYNOPSIS"></a> </h2> <p style="margin-left:11%; margin-top: 1em"><b>ctags</b> [<b>options</b>] [<i>file(s)</i>] <b><br> etags</b> [<b>options</b>] [<i>file(s)</i>]</p> <h2>DESCRIPTION <a name="DESCRIPTION"></a> </h2> <p style="margin-left:11%; margin-top: 1em">The <b>ctags</b> and <b>etags</b> programs (hereinafter collectively referred to as <b>ctags</b>, except where distinguished) generate an index (or &quot;tag&quot;) file for a variety of language objects found in <i>file(s)</i>. This tag file allows these items to be quickly and easily located by a text editor or other utility. A &quot;tag&quot; signifies a language object for which an index entry is available (or, alternatively, the index entry created for that object).</p> <p style="margin-left:11%; margin-top: 1em">Alternatively, <b>ctags</b> can generate a cross reference file which lists, in human readable form, information about the various source objects found in a set of language files.</p> <p style="margin-left:11%; margin-top: 1em">Tag index files are supported by numerous editors, which allow the user to locate the object associated with a name appearing in a source file and jump to the file and line which defines the name. Those known about at the time of this release are:</p> <p style="margin-left:17%; margin-top: 1em"><b>Vi</b>(1) and its derivatives (e.g. Elvis, Vim, Vile, Lemmy), <b>CRiSP</b>, <b>Emacs</b>, <b>FTE</b> (Folding Text Editor), <b>JED</b>, <b>jEdit</b>, <b>Mined</b>, <b>NEdit</b> (Nirvana Edit), <b>TSE</b> (The SemWare Editor), <b>UltraEdit</b>, <b>WorkSpace</b>, <b>X2</b>, <b>Zeus</b></p> <p style="margin-left:11%; margin-top: 1em"><b>Ctags</b> is capable of generating different kinds of tags for each of many different languages. For a complete list of supported languages, the names by which they are recognized, and the kinds of tags which are generated for each, see the <b>&minus;&minus;list&minus;languages</b> and <b>&minus;&minus;list&minus;kinds</b> options.</p> <h2>SOURCE FILES <a name="SOURCE FILES"></a> </h2> <p style="margin-left:11%; margin-top: 1em">Unless the <b>&minus;&minus;language&minus;force</b> option is specified, the language of each source file is automatically selected based upon a mapping of file names to languages. The mappings in effect for each language may be display using the <b>&minus;&minus;list&minus;maps</b> option and may be changed using the <b>&minus;&minus;langmap</b> option. On platforms which support it, if the name of a file is not mapped to a language and the file is executable, the first line of the file is checked to see if the file is a &quot;#!&quot; script for a recognized language.</p> <p style="margin-left:11%; margin-top: 1em">By default, all other files names are ignored. This permits running <b>ctags</b> on all files in either a single directory (e.g. &quot;ctags *&quot;), or on all files in an entire source directory tree (e.g. &quot;ctags &minus;R&quot;), since only those files whose names are mapped to languages will be scanned.</p> <p style="margin-left:11%; margin-top: 1em">[The reason that .h extensions are mapped to C++ files rather than C files is because it is common to use .h extensions in C++, and no harm results in treating them as C++ files.]</p> <h2>OPTIONS <a name="OPTIONS"></a> </h2> <p style="margin-left:11%; margin-top: 1em">Despite the wealth of available options, defaults are set so that <b>ctags</b> is most commonly executed without any options (e.g. &quot;ctags *&quot;, or &quot;ctags &minus;R&quot;), which will create a tag file in the current directory for all recognized source files. The options described below are provided merely to allow custom tailoring to meet special needs.</p> <p style="margin-left:11%; margin-top: 1em">Note that spaces separating the single-letter options from their parameters are optional.</p> <p style="margin-left:11%; margin-top: 1em">Note also that the boolean parameters to the long form options (those beginning with &quot;&minus;&minus;&quot; and that take a &quot;<i>[=yes</i>|<i>no]</i>&quot; parameter) may be omitted, in which case &quot;<b>=</b><i>yes</i>&quot; is implied. (e.g. <b>&minus;&minus;sort</b> is equivalent to <b>&minus;&minus;sort</b>=<i>yes</i>). Note further that &quot;=<i>1</i>&quot; and &quot;=<i>on</i>&quot; are considered synonyms for &quot;=<i>yes</i>&quot;, and that &quot;=<i>0</i>&quot; and &quot;=<i>off</i>&quot; are considered synonyms for &quot;=<i>no</i>&quot;.</p> <p style="margin-left:11%; margin-top: 1em">Some options are either ignored or useful only when used while running in etags mode (see <b>&minus;e</b> option). Such options will be noted.</p> <p style="margin-left:11%; margin-top: 1em">Most options may appear anywhere on the command line, affecting only those files which follow the option. A few options, however, must appear before the first file name and will be noted as such.</p> <p style="margin-left:11%; margin-top: 1em">Options taking language names will accept those names in either upper or lower case. See the <b>&minus;&minus;list&minus;languages</b> option for a complete list of the built-in language names.</p> <table width="100%" border="0" rules="none" frame="void" cellspacing="0" cellpadding="0"> <tr valign="top" align="left"> <td width="11%"></td> <td width="3%"> <p><b>&minus;a</b></p></td> <td width="4%"></td> <td width="82%"> <p>Equivalent to <b>&minus;&minus;append</b>.</p></td></tr> <tr valign="top" align="left"> <td width="11%"></td> <td width="3%"> <p><b>&minus;B</b></p></td> <td width="4%"></td> <td width="82%"> <p>Use backward searching patterns (e.g. ?pattern?). [Ignored in etags mode]</p></td></tr> <tr valign="top" align="left"> <td width="11%"></td> <td width="3%"> <p><b>&minus;e</b></p></td> <td width="4%"></td> <td width="82%"> <p>Enable etags mode, which will create a tag file for use with the Emacs editor. Alternatively, if <b>ctags</b> is invoked by a name containing the string &quot;etags&quot; (either by renaming, or creating a link to, the executable), etags mode will be enabled. This option must appear before the first file name.</p></td></tr> </table> <p style="margin-left:11%;"><b>&minus;f</b> <i>tagfile</i></p> <p style="margin-left:18%;">Use the name specified by <i>tagfile</i> for the tag file (default is &quot;tags&quot;, or &quot;TAGS&quot; when running in etags mode). If <i>tagfile</i> is specified as &quot;&minus;&quot;, then the tag file is written to standard output instead. <b>Ctags</b> will stubbornly refuse to take orders if <i>tagfile</i> exists and its first line contains something other than a valid tags line. This will save your neck if you mistakenly type &quot;ctags &minus;f *.c&quot;, which would otherwise overwrite your first C file with the tags generated by the rest! It will also refuse to accept a multi-character file name which begins with a &rsquo;&minus;&rsquo; (dash) character, since this most likely means that you left out the tag file name and this option tried to grab the next option as the file name. If you really want to name your output tag file &quot;&minus;ugly&quot;, specify it as &quot;./&minus;ugly&quot;. This option must appear before the first file name. If this option is specified more than once, only the last will apply.</p> <table width="100%" border="0" rules="none" frame="void" cellspacing="0" cellpadding="0"> <tr valign="top" align="left"> <td width="11%"></td> <td width="3%"> <p><b>&minus;F</b></p></td> <td width="4%"></td> <td width="82%"> <p>Use forward searching patterns (e.g. /pattern/) (default). [Ignored in etags mode]</p></td></tr> </table> <p style="margin-left:11%;"><b>&minus;h</b> <i>list</i></p> <p style="margin-left:18%;">Specifies a list of file extensions, separated by periods, which are to be interpreted as include (or header) files. To indicate files having no extension, use a period not followed by a non-period character (e.g. &quot;.&quot;, &quot;..x&quot;, &quot;.x.&quot;). This option only affects how the scoping of a particular kinds of tags is interpreted (i.e. whether or not they are considered as globally visible or visible only within the file in which they are defined); it does not map the extension to any particular language. Any tag which is located in a non-include file and cannot be seen (e.g. linked to) from another file is considered to have file-limited (e.g. static) scope. No kind of tag appearing in an include file will be considered to have file-limited scope. If the first character in the list is a plus sign, then the extensions in the list will be appended to the current list; otherwise, the list will replace the current list. See, also, the <b>&minus;&minus;file&minus;scope</b> option. The default list is &quot;.h.H.hh.hpp.hxx.h++.inc.def&quot;. To restore the default list, specify <b>&minus;h</b> <i>default</i>. Note that if an extension supplied to this option is not already mapped to a particular language (see <b>SOURCE FILES</b>, above), you will also need to use either the <b>&minus;&minus;langmap</b> or <b>&minus;&minus;language&minus;force</b> option.</p> <p style="margin-left:11%;"><b>&minus;I</b> <i>identifier&minus;list</i></p> <p style="margin-left:18%;">Specifies a list of identifiers which are to be specially handled while parsing C and C++ source files. This option is specifically provided to handle special cases arising through the use of preprocessor macros. When the identifiers listed are simple identifiers, these identifiers will be ignored during parsing of the source files. If an identifier is suffixed with a &rsquo;+&rsquo; character, <b>ctags</b> will also ignore any parenthesis-enclosed argument list which may immediately follow the identifier in the source files. If two identifiers are separated with the &rsquo;=&rsquo; character, the first identifiers is replaced by the second identifiers for parsing purposes. The list of identifiers may be supplied directly on the command line or read in from a separate file. If the first character of <i>identifier&minus;list</i> is &rsquo;@&rsquo;, &rsquo;.&rsquo; or a pathname separator (&rsquo;/&rsquo; or &rsquo;\&rsquo;), or the first two characters specify a drive letter (e.g. &quot;C:&quot;), the parameter <i>identifier&minus;list</i> will be interpreted as a filename from which to read a list of identifiers, one per input line. Otherwise, <i>identifier&minus;list</i> is a list of identifiers (or identifier pairs) to be specially handled, each delimited by a either a comma or by white space (in which case the list should be quoted to keep the entire list as one command line argument). Multiple <b>&minus;I</b> options may be supplied. To clear the list of ignore identifiers, supply a single dash (&quot;&minus;&quot;) for <i>identifier&minus;list</i>.</p> <p style="margin-left:18%; margin-top: 1em">This feature is useful when preprocessor macros are used in such a way that they cause syntactic confusion due to their presence. Indeed, this is the best way of working around a number of problems caused by the presence of syntax-busting macros in source files (see <b>CAVEATS</b>, below). Some examples will illustrate this point.</p> <p style="margin-left:23%; margin-top: 1em">int foo ARGDECL4(void *, ptr, long int, nbytes)</p> <p style="margin-left:18%; margin-top: 1em">In the above example, the macro &quot;ARGDECL4&quot; would be mistakenly interpreted to be the name of the function instead of the correct name of &quot;foo&quot;. Specifying <b>&minus;I</b> <i>ARGDECL4</i> results in the correct behavior.</p> <p style="margin-left:23%; margin-top: 1em">/* creates an RCS version string in module */ <br> MODULE_VERSION(&quot;$Revision: 750 $&quot;)</p> <p style="margin-left:18%; margin-top: 1em">In the above example the macro invocation looks too much like a function definition because it is not followed by a semicolon (indeed, it could even be followed by a global variable definition that would look much like a K&amp;R style function parameter declaration). In fact, this seeming function definition could possibly even cause the rest of the file to be skipped over while trying to complete the definition. Specifying <b>&minus;I</b> <i>MODULE_VERSION+</i> would avoid such a problem.</p> <p style="margin-left:23%; margin-top: 1em">CLASS Example { <br> // your content here <br> };</p> <p style="margin-left:18%; margin-top: 1em">The example above uses &quot;CLASS&quot; as a preprocessor macro which expands to something different for each platform. For instance CLASS may be defined as &quot;class __declspec(dllexport)&quot; on Win32 platforms and simply &quot;class&quot; on UNIX. Normally, the absence of the C++ keyword &quot;class&quot; would cause the source file to be incorrectly parsed. Correct behavior can be restored by specifying <b>&minus;I</b> <i>CLASS=class</i>.</p> <p style="margin-left:11%;"><b>&minus;L</b> <i>file</i></p> <p style="margin-left:18%;">Read from <i>file</i> a list of file names for which tags should be generated. If <i>file</i> is specified as &quot;&minus;&quot;, then file names are read from standard input. File names read using this option are processed following file names appearing on the command line. Options are also accepted in this input. If this option is specified more than once, only the last will apply. <b>Note:</b> <i>file</i> is read in line-oriented mode, where a new line is the only delimiter and non-trailing white space is considered significant, in order that file names containing spaces may be supplied (however, trailing white space is stripped from lines); this can affect how options are parsed if included in the input.</p> <table width="100%" border="0" rules="none" frame="void" cellspacing="0" cellpadding="0"> <tr valign="top" align="left"> <td width="11%"></td> <td width="3%"> <p><b>&minus;n</b></p></td> <td width="4%"></td> <td width="47%"> <p>Equivalent to <b>&minus;&minus;excmd</b>=<i>number</i>.</p> </td> <td width="35%"> </td></tr> <tr valign="top" align="left"> <td width="11%"></td> <td width="3%"> <p><b>&minus;N</b></p></td> <td width="4%"></td> <td width="47%"> <p>Equivalent to <b>&minus;&minus;excmd</b>=<i>pattern</i>.</p> </td> <td width="35%"> </td></tr> </table> <p style="margin-left:11%;"><b>&minus;o</b> <i>tagfile</i></p> <p style="margin-left:18%;">Equivalent to <b>&minus;f</b> <i>tagfile</i>.</p> <table width="100%" border="0" rules="none" frame="void" cellspacing="0" cellpadding="0"> <tr valign="top" align="left"> <td width="11%"></td> <td width="3%"> <p><b>&minus;R</b></p></td> <td width="4%"></td> <td width="82%"> <p>Equivalent to <b>&minus;&minus;recurse</b>.</p></td></tr> <tr valign="top" align="left"> <td width="11%"></td> <td width="3%"> <p><b>&minus;u</b></p></td> <td width="4%"></td> <td width="82%"> <p>Equivalent to <b>&minus;&minus;sort</b>=<i>no</i> (i.e. &quot;unsorted&quot;).</p> </td></tr> <tr valign="top" align="left"> <td width="11%"></td> <td width="3%"> <p><b>&minus;V</b></p></td> <td width="4%"></td> <td width="82%"> <p>Equivalent to <b>&minus;&minus;verbose</b>.</p></td></tr> <tr valign="top" align="left"> <td width="11%"></td> <td width="3%"> <p><b>&minus;w</b></p></td> <td width="4%"></td> <td width="82%"> <p>This option is silently ignored for backward-compatibility with the ctags of SVR4 Unix.</p></td></tr> <tr valign="top" align="left"> <td width="11%"></td> <td width="3%"> <p><b>&minus;x</b></p></td> <td width="4%"></td> <td width="82%"> <p>Print a tabular, human-readable cross reference (xref) file to standard output instead of generating a tag file. The information contained in the output includes: the tag name; the kind of tag; the line number, file name, and source line (with extra white space condensed) of the file which defines the tag. No tag file is written and all options affecting tag file output will be ignored. Example applications for this feature are generating a listing of all functions located in a source file (e.g. <b>ctags &minus;x &minus;&minus;c&minus;kinds</b>=<i>f file</i>), or generating a list of all externally visible global variables located in a source file (e.g. <b>ctags &minus;x &minus;&minus;c&minus;kinds</b>=<i>v</i> <b>&minus;&minus;file&minus;scope</b>=<i>no file</i>). This option must appear before the first file name.</p></td></tr> </table> <p style="margin-left:11%;"><b>&minus;&minus;append</b>[=<i>yes</i>|<i>no</i>]</p> <p style="margin-left:18%;">Indicates whether tags generated from the specified files should be appended to those already present in the tag file or should replace them. This option is off by default. This option must appear before the first file name.</p> <p style="margin-left:11%;"><b>&minus;&minus;etags&minus;include</b>=<i>file</i></p> <p style="margin-left:18%;">Include a reference to <i>file</i> in the tag file. This option may be specified as many times as desired. This supports Emacs&rsquo; capability to use a tag file which &quot;includes&quot; other tag files. [Available only in etags mode]</p> <p style="margin-left:11%;"><b>&minus;&minus;exclude</b>=[<i>pattern</i>]</p> <p style="margin-left:18%;">Add <i>pattern</i> to a list of excluded files and directories. This option may be specified as many times as desired. For each file name considered by <b>ctags</b>, each <i>pattern</i> specified using this option will be compared against both the complete path (e.g. some/path/base.ext) and the base name (e.g. base.ext) of the file, thus allowing patterns which match a given file name irrespective of its path, or match only a specific path. If appropriate support is available from the runtime library of your C compiler, then <i>pattern</i> may contain the usual shell wildcards (not regular expressions) common on Unix (be sure to quote the option parameter to protect the wildcards from being expanded by the shell before being passed to <b>ctags</b>; also be aware that wildcards can match the slash character, &rsquo;/&rsquo;). You can determine if shell wildcards are available on your platform by examining the output of the <b>&minus;&minus;version</b> option, which will include &quot;+wildcards&quot; in the compiled feature list; otherwise, <i>pattern</i> is matched against file names using a simple textual comparison.</p> <p style="margin-left:18%; margin-top: 1em">If <i>pattern</i> begins with the character &rsquo;@&rsquo;, then the rest of the string is interpreted as a file name from which to read exclusion patterns, one per line. If <i>pattern</i> is empty, the list of excluded patterns is cleared. Note that at program startup, the default exclude list contains &quot;EIFGEN&quot;, &quot;SCCS&quot;, &quot;RCS&quot;, and &quot;CVS&quot;, which are names of directories for which it is generally not desirable to descend while processing the <b>&minus;&minus;recurse</b> option.</p> <p style="margin-left:11%;"><b>&minus;&minus;excmd</b>=<i>type</i></p> <p style="margin-left:18%;">Determines the type of EX command used to locate tags in the source file. [Ignored in etags mode]</p> <p style="margin-left:18%; margin-top: 1em">The valid values for <i>type</i> (either the entire word or the first letter is accepted) are:</p> <table width="100%" border="0" rules="none" frame="void" cellspacing="0" cellpadding="0"> <tr valign="top" align="left"> <td width="18%"></td> <td width="10%"> <p><i>number</i></p></td> <td width="4%"></td> <td width="68%"> <p>Use only line numbers in the tag file for locating tags. This has four advantages:</p></td></tr> </table> <p style="margin-left:32%;">1.</p> <table width="100%" border="0" rules="none" frame="void" cellspacing="0" cellpadding="0"> <tr valign="top" align="left"> <td width="32%"></td> <td width="3%"></td> <td width="3%"></td> <td width="62%"> <p style="margin-top: 1em">Significantly reduces the size of the resulting tag file.</p></td></tr> <tr valign="top" align="left"> <td width="32%"></td> <td width="3%"> <p>2.</p></td> <td width="3%"></td> <td width="62%"> <p>Eliminates failures to find tags because the line defining the tag has changed, causing the pattern match to fail (note that some editors, such as <b>vim</b>, are able to recover in many such instances).</p></td></tr> <tr valign="top" align="left"> <td width="32%"></td> <td width="3%"> <p>3.</p></td> <td width="3%"></td> <td width="62%"> <p>Eliminates finding identical matching, but incorrect, source lines (see <b>BUGS</b>, below).</p></td></tr> <tr valign="top" align="left"> <td width="32%"></td> <td width="3%"> <p>4.</p></td> <td width="3%"></td> <td width="62%"> <p>Retains separate entries in the tag file for lines which are identical in content. In <i>pattern</i> mode, duplicate entries are dropped because the search patterns they generate are identical, making the duplicate entries useless.</p> </td></tr> </table> <p style="margin-left:32%; margin-top: 1em">However, this option has one significant drawback: changes to the source files can cause the line numbers recorded in the tag file to no longer correspond to the lines in the source file, causing jumps to some tags to miss the target definition by one or more lines. Basically, this option is best used when the source code to which it is applied is not subject to change. Selecting this option type causes the following options to be ignored: <b>&minus;BF</b>.</p> <table width="100%" border="0" rules="none" frame="void" cellspacing="0" cellpadding="0"> <tr valign="top" align="left"> <td width="18%"></td> <td width="11%"> <p style="margin-top: 1em"><i>pattern</i></p></td> <td width="3%"></td> <td width="68%"> <p style="margin-top: 1em">Use only search patterns for all tags, rather than the line numbers usually used for macro definitions. This has the advantage of not referencing obsolete line numbers when lines have been added or removed since the tag file was generated.</p></td></tr> <tr valign="top" align="left"> <td width="18%"></td> <td width="11%"> <p><i>mixed</i></p></td> <td width="3%"></td> <td width="68%"> <p>In this mode, patterns are generally used with a few exceptions. For C, line numbers are used for macro definition tags. This was the default format generated by the original <b>ctags</b> and is, therefore, retained as the default for this option. For Fortran, line numbers are used for common blocks because their corresponding source lines are generally identical, making pattern searches useless for finding all matches.</p></td></tr> </table> <p style="margin-left:11%;"><b>&minus;&minus;extra</b>=<i>[+|&minus;]flags</i></p> <p style="margin-left:18%;">Specifies whether to include extra tag entries for certain kinds of information. The parameter <i>flags</i> is a set of one-letter flags, each representing one kind of extra tag entry to include in the tag file. If <i>flags</i> is preceded by either the &rsquo;+&rsquo; or &rsquo;&minus;&rsquo; character, the effect of each flag is added to, or removed from, those currently enabled; otherwise the flags replace any current settings. The meaning of each flag is as follows:</p> <table width="100%" border="0" rules="none" frame="void" cellspacing="0" cellpadding="0"> <tr valign="top" align="left"> <td width="23%"></td> <td width="2%"> <p><i>f</i></p></td> <td width="4%"></td> <td width="71%"> <p>Include an entry for the base file name of every source file (e.g. &quot;example.c&quot;), which addresses the first line of the file.</p></td></tr> <tr valign="top" align="left"> <td width="23%"></td> <td width="2%"> <p><i>q</i></p></td> <td width="4%"></td> <td width="71%"> <p>Include an extra class-qualified tag entry for each tag which is a member of a class (for languages for which this information is extracted; currently C++, Eiffel, and Java). The actual form of the qualified tag depends upon the language from which the tag was derived (using a form that is most natural for how qualified calls are specified in the language). For C++, it is in the form &quot;class::member&quot;; for Eiffel and Java, it is in the form &quot;class.member&quot;. This may allow easier location of a specific tags when multiple occurrences of a tag name occur in the tag file. Note, however, that this could potentially more than double the size of the tag file.</p> </td></tr> </table> <p style="margin-left:11%;"><b>&minus;&minus;fields</b>=<i>[+|&minus;]flags</i></p> <p style="margin-left:18%;">Specifies the available extension fields which are to be included in the entries of the tag file (see <b>TAG FILE FORMAT</b>, below, for more information). The parameter <i>flags</i> is a set of one-letter flags, each representing one type of extension field to include, with the following meanings (disabled by default unless indicated):</p> <table width="100%" border="0" rules="none" frame="void" cellspacing="0" cellpadding="0"> <tr valign="top" align="left"> <td width="23%"></td> <td width="2%"> <p><i>a</i></p></td> <td width="4%"></td> <td width="71%"> <p>Access (or export) of class members</p></td></tr> <tr valign="top" align="left"> <td width="23%"></td> <td width="2%"> <p><i>f</i></p></td> <td width="4%"></td> <td width="71%"> <p>File-restricted scoping [enabled]</p></td></tr> <tr valign="top" align="left"> <td width="23%"></td> <td width="2%"> <p><i>i</i></p></td> <td width="4%"></td> <td width="71%"> <p>Inheritance information</p></td></tr> <tr valign="top" align="left"> <td width="23%"></td> <td width="2%"> <p><i>k</i></p></td> <td width="4%"></td> <td width="71%"> <p>Kind of tag as a single letter [enabled]</p></td></tr> <tr valign="top" align="left"> <td width="23%"></td> <td width="2%"> <p><i>K</i></p></td> <td width="4%"></td> <td width="71%"> <p>Kind of tag as full name</p></td></tr> <tr valign="top" align="left"> <td width="23%"></td> <td width="2%"> <p><i>l</i></p></td> <td width="4%"></td> <td width="71%"> <p>Language of source file containing tag</p></td></tr> <tr valign="top" align="left"> <td width="23%"></td> <td width="2%"> <p><i>m</i></p></td> <td width="4%"></td> <td width="71%"> <p>Implementation information</p></td></tr> <tr valign="top" align="left"> <td width="23%"></td> <td width="2%"> <p><i>n</i></p></td> <td width="4%"></td> <td width="71%"> <p>Line number of tag definition</p></td></tr> <tr valign="top" align="left"> <td width="23%"></td> <td width="2%"> <p><i>s</i></p></td> <td width="4%"></td> <td width="71%"> <p>Scope of tag definition [enabled]</p></td></tr> <tr valign="top" align="left"> <td width="23%"></td> <td width="2%"> <p><i>S</i></p></td> <td width="4%"></td> <td width="71%"> <p>Signature of routine (e.g. prototype or parameter list)</p> </td></tr> <tr valign="top" align="left"> <td width="23%"></td> <td width="2%"> <p><i>z</i></p></td> <td width="4%"></td> <td width="71%"> <p>Include the &quot;kind:&quot; key in kind field</p></td></tr> <tr valign="top" align="left"> <td width="23%"></td> <td width="2%"> <p><i>t</i></p></td> <td width="4%"></td> <td width="71%"> <p>Type and name of a variable or typedef as &quot;typeref:&quot; field [enabled]</p></td></tr> </table> <p style="margin-left:18%; margin-top: 1em">Each letter or group of letters may be preceded by either &rsquo;+&rsquo; to add it to the default set, or &rsquo;&minus;&rsquo; to exclude it. In the absence of any preceding &rsquo;+&rsquo; or &rsquo;&minus;&rsquo; sign, only those kinds explicitly listed in <i>flags</i> will be included in the output (i.e. overriding the default set). This option is ignored if the option <b>&minus;&minus;format</b>=<i>1</i> has been specified. The default value of this option is <i>fkst</i>.</p> <p style="margin-left:11%;"><b>&minus;&minus;file&minus;scope</b>[=<i>yes</i>|<i>no</i>]</p> <p style="margin-left:18%;">Indicates whether tags scoped only for a single file (i.e. tags which cannot be seen outside of the file in which they are defined, such as &quot;static&quot; tags) should be included in the output. See, also, the <b>&minus;h</b> option. This option is enabled by default.</p> <p style="margin-left:11%;"><b>&minus;&minus;filter</b>[=<i>yes</i>|<i>no</i>]</p> <p style="margin-left:18%;">Causes <b>ctags</b> to behave as a filter, reading source file names from standard input and printing their tags to standard output on a file-by-file basis. If <b>&minus;&minus;sorted</b> is enabled, tags are sorted only within the source file in which they are defined. File names are read from standard input in line-oriented input mode (see note for <b>&minus;L</b> option) and only after file names listed on the command line or from any file supplied using the <b>&minus;L</b> option. When this option is enabled, the options <b>&minus;f</b>, <b>&minus;o</b>, and <b>&minus;&minus;totals</b> are ignored. This option is quite esoteric and is disabled by default. This option must appear before the first file name.</p> <p style="margin-left:11%;"><b>&minus;&minus;filter&minus;terminator</b>=<i>string</i></p> <p style="margin-left:18%;">Specifies a string to print to standard output following the tags for each file name parsed when the <b>&minus;&minus;filter</b> option is enabled. This may permit an application reading the output of ctags to determine when the output for each file is finished. Note that if the file name read is a directory and <b>&minus;&minus;recurse</b> is enabled, this string will be printed only once at the end of all tags found for by descending the directory. This string will always be separated from the last tag line for the file by its terminating newline. This option is quite esoteric and is empty by default. This option must appear before the first file name.</p> <p style="margin-left:11%;"><b>&minus;&minus;format</b>=<i>level</i></p> <p style="margin-left:18%;">Change the format of the output tag file. Currently the only valid values for <i>level</i> are <i>1</i> or <i>2</i>. Level 1 specifies the original tag file format and level 2 specifies a new extended format containing extension fields (but in a manner which retains backward-compatibility with original <b>vi</b>(1) implementations). The default level is 2. This option must appear before the first file name. [Ignored in etags mode]</p> <p style="margin-left:11%;"><b>&minus;&minus;help</b></p> <p style="margin-left:18%;">Prints to standard output a detailed usage description, and then exits.</p> <p style="margin-left:11%;"><b>&minus;&minus;if0</b>[=<i>yes</i>|<i>no</i>]</p> <p style="margin-left:18%;">Indicates a preference as to whether code within an &quot;#if 0&quot; branch of a preprocessor conditional should be examined for non-macro tags (macro tags are always included). Because the intent of this construct is to disable code, the default value of this option is <i>no</i>. Note that this indicates a preference only and does not guarantee skipping code within an &quot;#if 0&quot; branch, since the fall-back algorithm used to generate tags when preprocessor conditionals are too complex follows all branches of a conditional. This option is disabled by default.</p> <p style="margin-left:11%;"><b>&minus;&minus;&lt;LANG&gt;&minus;kinds</b>=<i>[+|&minus;]kinds</i></p> <p style="margin-left:18%;">Specifies a list of language-specific kinds of tags (or kinds) to include in the output file for a particular language, where <b>&lt;LANG&gt;</b> is case-insensitive and is one of the built-in language names (see the <b>&minus;&minus;list&minus;languages</b> option for a complete list). The parameter <i>kinds</i> is a group of one-letter flags designating kinds of tags (particular to the language) to either include or exclude from the output. The specific sets of flags recognized for each language, their meanings and defaults may be list using the <b>&minus;&minus;list&minus;kinds</b> option. Each letter or group of letters may be preceded by either &rsquo;+&rsquo; to add it to, or &rsquo;&minus;&rsquo; to remove it from, the default set. In the absence of any preceding &rsquo;+&rsquo; or &rsquo;&minus;&rsquo; sign, only those kinds explicitly listed in <i>kinds</i> will be included in the output (i.e. overriding the default for the specified language).</p> <p style="margin-left:18%; margin-top: 1em">As an example for the C language, in order to add prototypes and external variable declarations to the default set of tag kinds, but exclude macros, use <b>&minus;&minus;c&minus;kinds</b>=<i>+px&minus;d</i>; to include only tags for functions, use <b>&minus;&minus;c&minus;kinds</b>=<i>f</i>.</p> <p style="margin-left:11%;"><b>&minus;&minus;langdef</b>=<i>name</i></p> <p style="margin-left:18%;">Defines a new user-defined language, <i>name</i>, to be parsed with regular expressions. Once defined, <i>name</i> may be used in other options taking language names. The typical use of this option is to first define the language, then map file names to it using <i>&minus;&minus;langmap</i>, then specify regular expressions using <i>&minus;&minus;regex&minus;&lt;LANG&gt;</i> to define how its tags are found.</p> <p style="margin-left:11%;"><b>&minus;&minus;langmap</b>=<i>map[,map[...]]</i></p> <p style="margin-left:18%;">Controls how file names are mapped to languages (see the <b>&minus;&minus;list&minus;maps</b> option). Each comma-separated <i>map</i> consists of the language name (either a built-in or user-defined language), a colon, and a list of file extensions and/or file name patterns. A file extension is specified by preceding the extension with a period (e.g. &quot;.c&quot;). A file name pattern is specified by enclosing the pattern in parentheses (e.g. &quot;([Mm]akefile)&quot;). If appropriate support is available from the runtime library of your C compiler, then the file name pattern may contain the usual shell wildcards common on Unix (be sure to quote the option parameter to protect the wildcards from being expanded by the shell before being passed to <b>ctags</b>). You can determine if shell wildcards are available on your platform by examining the output of the <b>&minus;&minus;version</b> option, which will include &quot;+wildcards&quot; in the compiled feature list; otherwise, the file name patterns are matched against file names using a simple textual comparison. When mapping a file extension, it will first be unmapped from any other languages.</p> <p style="margin-left:18%; margin-top: 1em">If the first character in a map is a plus sign, then the extensions and file name patterns in that map will be appended to the current map for that language; otherwise, the map will replace the current map. For example, to specify that only files with extensions of .c and .x are to be treated as C language files, use &quot;<b>&minus;&minus;langmap</b>=<i>c:.c.x</i>&quot;; to also add files with extensions of .j as Java language files, specify &quot;<b>&minus;&minus;langmap</b>=<i>c:.c.x,java:+.j</i>&quot;. To map makefiles (e.g. files named either &quot;Makefile&quot;, &quot;makefile&quot;, or having the extension &quot;.mak&quot;) to a language called &quot;make&quot;, specify &quot;<b>&minus;&minus;langmap</b>=<i>make:([Mm]akefile).mak</i>&quot;. To map files having no extension, specify a period not followed by a non-period character (e.g. &quot;.&quot;, &quot;..x&quot;, &quot;.x.&quot;). To clear the mapping for a particular language (thus inhibiting automatic generation of tags for that language), specify an empty extension list (e.g. &quot;<b>&minus;&minus;langmap</b>=<i>fortran:</i>&quot;). To restore the default language mappings for all a particular language, supply the keyword &quot;default&quot; for the mapping. To specify restore the default language mappings for all languages, specify &quot;<b>&minus;&minus;langmap</b>=<i>default</i>&quot;. Note that file extensions are tested before file name patterns when inferring the language of a file.</p> <p style="margin-left:11%;"><b>&minus;&minus;language&minus;force</b>=<i>language</i></p> <p style="margin-left:18%;">By default, <b>ctags</b> automatically selects the language of a source file, ignoring those files whose language cannot be determined (see <b>SOURCE FILES</b>, above). This option forces the specified <i>language</i> (case-insensitive; either built-in or user-defined) to be used for every supplied file instead of automatically selecting the language based upon its extension. In addition, the special value <i>auto</i> indicates that the language should be automatically selected (which effectively disables this option).</p> <p style="margin-left:11%;"><b>&minus;&minus;languages</b>=<i>[+|&minus;]list</i></p> <p style="margin-left:18%;">Specifies the languages for which tag generation is enabled, with <i>list</i> containing a comma-separated list of language names (case-insensitive; either built-in or user-defined). If the first language of <i>list</i> is not preceded by either a &rsquo;+&rsquo; or &rsquo;&minus;&rsquo;, the current list will be cleared before adding or removing the languages in <i>list</i>. Until a &rsquo;&minus;&rsquo; is encountered, each language in the list will be added to the current list. As either the &rsquo;+&rsquo; or &rsquo;&minus;&rsquo; is encountered in the list, the languages following it are added or removed from the current list, respectively. Thus, it becomes simple to replace the current list with a new one, or to add or remove languages from the current list. The actual list of files for which tags will be generated depends upon the language extension mapping in effect (see the <b>&minus;&minus;langmap</b> option). Note that all languages, including user-defined languages are enabled unless explicitly disabled using this option. Language names included in <i>list</i> may be any built-in language or one previously defined with <b>&minus;&minus;langdef</b>. The default is &quot;all&quot;, which is also accepted as a valid argument. See the <b>&minus;&minus;list&minus;languages</b> option for a complete list of the built-in language names.</p> <p style="margin-left:11%;"><b>&minus;&minus;license</b></p> <p style="margin-left:18%;">Prints a summary of the software license to standard output, and then exits.</p> <p style="margin-left:11%;"><b>&minus;&minus;line&minus;directives</b>[=<i>yes</i>|<i>no</i>]</p> <p style="margin-left:18%;">Specifies whether &quot;#line&quot; directives should be recognized. These are present in the output of preprocessors and contain the line number, and possibly the file name, of the original source file(s) from which the preprocessor output file was generated. When enabled, this option will cause <b>ctags</b> to generate tag entries marked with the file names and line numbers of their locations original source file(s), instead of their actual locations in the preprocessor output. The actual file names placed into the tag file will have the same leading path components as the preprocessor output file, since it is assumed that the original source files are located relative to the preprocessor output file (unless, of course, the #line directive specifies an absolute path). This option is off by default. <b>Note:</b> This option is generally only useful when used together with the <b>&minus;&minus;excmd</b>=<i>number</i> (<b>&minus;n</b>) option. Also, you may have to use either the <b>&minus;&minus;langmap</b> or <b>&minus;&minus;language&minus;force</b> option if the extension of the preprocessor output file is not known to <b>ctags</b>.</p> <p style="margin-left:11%;"><b>&minus;&minus;links</b>[=<i>yes</i>|<i>no</i>]</p> <p style="margin-left:18%;">Indicates whether symbolic links (if supported) should be followed. When disabled, symbolic links are ignored. This option is on by default.</p> <p style="margin-left:11%;"><b>&minus;&minus;list&minus;kinds</b>[=<i>language</i>|<i>all</i>]</p> <p style="margin-left:18%;">Lists the tag kinds recognized for either the specified language or all languages, and then exits. Each kind of tag recorded in the tag file is represented by a one-letter flag, which is also used to filter the tags placed into the output through use of the <b>&minus;&minus;&lt;LANG&gt;&minus;kinds</b> option. Note that some languages and/or tag kinds may be implemented using regular expressions and may not be available if regex support is not compiled into <b>ctags</b> (see the <b>&minus;&minus;regex&minus;&lt;LANG&gt;</b> option). Each kind listed is enabled unless followed by &quot;[off]&quot;.</p> <p style="margin-left:11%;"><b>&minus;&minus;list&minus;maps</b>[=<i>language</i>|<i>all</i>]</p> <p style="margin-left:18%;">Lists the file extensions and file name patterns which associate a file name with a language for either the specified language or all languages, and then exits. See the <b>&minus;&minus;langmap</b> option, and <b>SOURCE FILES</b>, above.</p> <p style="margin-left:11%;"><b>&minus;&minus;list&minus;languages</b></p> <p style="margin-left:18%;">Lists the names of the languages understood by <b>ctags</b>, and then exits. These language names are case insensitive and may be used in the <b>&minus;&minus;language&minus;force</b>, <b>&minus;&minus;languages</b>, <b>&minus;&minus;&lt;LANG&gt;&minus;kinds</b>, and <b>&minus;&minus;regex&minus;&lt;LANG&gt;</b> options.</p> <p style="margin-left:11%;"><b>&minus;&minus;options</b>=<i>file</i></p> <p style="margin-left:18%;">Read additional options from <i>file</i>. The file should contain one option per line. As a special case, if <b>&minus;&minus;options</b>=<i>NONE</i> is specified as the first option on the command line, it will disable the automatic reading of any configuration options from either a file or the environment (see <b>FILES</b>).</p> <p style="margin-left:11%;"><b>&minus;&minus;recurse</b>[=<i>yes</i>|<i>no</i>]</p> <p style="margin-left:18%;">Recurse into directories encountered in the list of supplied files. If the list of supplied files is empty and no file list is specified with the <b>&minus;L</b> option, then the current directory (i.e. &quot;.&quot;) is assumed. Symbolic links are followed. If you don&rsquo;t like these behaviors, either explicitly specify the files or pipe the output of <b>find</b>(1) into <b>ctags &minus;L&minus;</b> instead. <b>Note:</b> This option is not supported on all platforms at present. It is available if the output of the <b>&minus;&minus;help</b> option includes this option. See, also, the <b>&minus;&minus;exclude</b> to limit recursion.</p> <p style="margin-left:11%;"><b>&minus;&minus;regex&minus;&lt;LANG&gt;</b>=<i>/regexp/replacement/[kind&minus;spec/][flags]</i></p> <p style="margin-left:18%;">The <i>/regexp/replacement/</i> pair define a regular expression replacement pattern, similar in style to <b>sed</b> substitution commands, with which to generate tags from source files mapped to the named language, <b>&lt;LANG&gt;</b>, (case-insensitive; either a built-in or user-defined language). The regular expression, <i>regexp</i>, defines an extended regular expression (roughly that used by <b>egrep</b>(1)), which is used to locate a single source line containing a tag and may specify tab characters using \t. When a matching line is found, a tag will be generated for the name defined by <i>replacement</i>, which generally will contain the special back-references \1 through \9 to refer to matching sub-expression groups within <i>regexp</i>. The &rsquo;/&rsquo; separator characters shown in the parameter to the option can actually be replaced by any character. Note that whichever separator character is used will have to be escaped with a backslash (&rsquo;\&rsquo;) character wherever it is used in the parameter as something other than a separator. The regular expression defined by this option is added to the current list of regular expressions for the specified language unless the parameter is omitted, in which case the current list is cleared.</p> <p style="margin-left:18%; margin-top: 1em">Unless modified by <i>flags</i>, <i>regexp</i> is interpreted as a Posix extended regular expression. The <i>replacement</i> should expand for all matching lines to a non-empty string of characters, or a warning message will be reported. An optional kind specifier for tags matching <i>regexp</i> may follow <i>replacement</i>, which will determine what kind of tag is reported in the &quot;kind&quot; extension field (see <b>TAG FILE FORMAT</b>, below). The full form of <i>kind&minus;spec</i> is in the form of a single letter, a comma, a name (without spaces), a comma, a description, followed by a separator, which specify the short and long forms of the kind value and its textual description (displayed using <b>&minus;&minus;list&minus;kinds</b>). Either the kind name and/or the description may be omitted. If <i>kind&minus;spec</i> is omitted, it defaults to &quot;<i>r,regex</i>&quot;. Finally, <i>flags</i> are one or more single-letter characters having the following effect upon the interpretation of <i>regexp</i>:</p> <table width="100%" border="0" rules="none" frame="void" cellspacing="0" cellpadding="0"> <tr valign="top" align="left"> <td width="23%"></td> <td width="2%"> <p><i>b</i></p></td> <td width="4%"></td> <td width="71%"> <p>The pattern is interpreted as a Posix basic regular expression.</p> </td></tr> <tr valign="top" align="left"> <td width="23%"></td> <td width="2%"> <p><i>e</i></p></td> <td width="4%"></td> <td width="71%"> <p>The pattern is interpreted as a Posix extended regular expression (default).</p></td></tr> <tr valign="top" align="left"> <td width="23%"></td> <td width="2%"> <p><i>i</i></p></td> <td width="4%"></td> <td width="71%"> <p>The regular expression is to be applied in a case-insensitive manner.</p></td></tr> </table> <p style="margin-left:18%; margin-top: 1em">Note that this option is available only if <b>ctags</b> was compiled with support for regular expressions, which depends upon your platform. You can determine if support for regular expressions is compiled in by examining the output of the <b>&minus;&minus;version</b> option, which will include &quot;+regex&quot; in the compiled feature list.</p> <p style="margin-left:18%; margin-top: 1em">For more information on the regular expressions used by <b>ctags</b>, see either the <b>regex(5,7)</b> man page, or the GNU info documentation for regex (e.g. &quot;info regex&quot;).</p> <p style="margin-left:11%;"><b>&minus;&minus;sort</b>[=<i>yes</i>|<i>no</i>|<i>foldcase</i>]</p> <p style="margin-left:18%;">Indicates whether the tag file should be sorted on the tag name (default is <i>yes</i>). Note that the original <b>vi</b>(1) required sorted tags. The <i>foldcase</i> value specifies case insensitive (or case-folded) sorting. Fast binary searches of tag files sorted with case-folding will require special support from tools using tag files, such as that found in the ctags readtags library, or Vim version 6.2 or higher (using &quot;set ignorecase&quot;). This option must appear before the first file name. [Ignored in etags mode]</p> <p style="margin-left:11%;"><b>&minus;&minus;tag&minus;relative</b>[=<i>yes</i>|<i>no</i>]</p> <p style="margin-left:18%;">Indicates that the file paths recorded in the tag file should be relative to the directory containing the tag file, rather than relative to the current directory, unless the files supplied on the command line are specified with absolute paths. This option must appear before the first file name. The default is <i>yes</i> when running in etags mode (see the <b>&minus;e</b> option), <i>no</i> otherwise.</p> <p style="margin-left:11%;"><b>&minus;&minus;totals</b>[=<i>yes</i>|<i>no</i>]</p> <p style="margin-left:18%;">Prints statistics about the source files read and the tag file written during the current invocation of <b>ctags</b>. This option is off by default. This option must appear before the first file name.</p> <p style="margin-left:11%;"><b>&minus;&minus;verbose</b>[=<i>yes</i>|<i>no</i>]</p> <p style="margin-left:18%;">Enable verbose mode. This prints out information on option processing and a brief message describing what action is being taken for each file considered by <b>ctags</b>. Normally, <b>ctags</b> does not read command line arguments until after options are read from the configuration files (see <b>FILES</b>, below) and the <b>CTAGS</b> environment variable. However, if this option is the first argument on the command line, it will take effect before any options are read from these sources. The default is <i>no</i>.</p> <p style="margin-left:11%;"><b>&minus;&minus;version</b></p> <p style="margin-left:18%;">Prints a version identifier for <b>ctags</b> to standard output, and then exits. This is guaranteed to always contain the string &quot;Exuberant Ctags&quot;.</p> <h2>OPERATIONAL DETAILS <a name="OPERATIONAL DETAILS"></a> </h2> <p style="margin-left:11%; margin-top: 1em">As <b>ctags</b> considers each file name in turn, it tries to determine the language of the file by applying the following three tests in order: if the file extension has been mapped to a language, if the file name matches a shell pattern mapped to a language, and finally if the file is executable and its first line specifies an interpreter using the Unix-style &quot;#!&quot; specification (if supported on the platform). If a language was identified, the file is opened and then the appropriate language parser is called to operate on the currently open file. The parser parses through the file and adds an entry to the tag file for each language object it is written to handle. See <b>TAG FILE FORMAT</b>, below, for details on these entries.</p> <p style="margin-left:11%; margin-top: 1em">This implementation of <b>ctags</b> imposes no formatting requirements on C code as do legacy implementations. Older implementations of ctags tended to rely upon certain formatting assumptions in order to help it resolve coding dilemmas caused by preprocessor conditionals.</p> <p style="margin-left:11%; margin-top: 1em">In general, <b>ctags</b> tries to be smart about conditional preprocessor directives. If a preprocessor conditional is encountered within a statement which defines a tag, <b>ctags</b> follows only the first branch of that conditional (except in the special case of &quot;#if 0&quot;, in which case it follows only the last branch). The reason for this is that failing to pursue only one branch can result in ambiguous syntax, as in the following example:</p> <p style="margin-left:22%; margin-top: 1em">#ifdef TWO_ALTERNATIVES <br> struct { <br> #else <br> union { <br> #endif</p> <p style="margin-left:28%;">short a; <br> long b;</p> <p style="margin-left:22%;">}</p> <p style="margin-left:11%; margin-top: 1em">Both branches cannot be followed, or braces become unbalanced and <b>ctags</b> would be unable to make sense of the syntax.</p> <p style="margin-left:11%; margin-top: 1em">If the application of this heuristic fails to properly parse a file, generally due to complicated and inconsistent pairing within the conditionals, <b>ctags</b> will retry the file using a different heuristic which does not selectively follow conditional preprocessor branches, but instead falls back to relying upon a closing brace (&quot;}&quot;) in column 1 as indicating the end of a block once any brace imbalance results from following a #if conditional branch.</p> <p style="margin-left:11%; margin-top: 1em"><b>Ctags</b> will also try to specially handle arguments lists enclosed in double sets of parentheses in order to accept the following conditional construct:</p> <p style="margin-left:22%; margin-top: 1em">extern void foo __ARGS((int one, char two));</p> <p style="margin-left:11%; margin-top: 1em">Any name immediately preceding the &quot;((&quot; will be automatically ignored and the previous name will be used.</p> <p style="margin-left:11%; margin-top: 1em">C++ operator definitions are specially handled. In order for consistency with all types of operators (overloaded and conversion), the operator name in the tag file will always be preceded by the string &quot;operator &quot; (i.e. even if the actual operator definition was written as &quot;operator&lt;&lt;&quot;).</p> <p style="margin-left:11%; margin-top: 1em">After creating or appending to the tag file, it is sorted by the tag name, removing identical tag lines.</p> <h2>TAG FILE FORMAT <a name="TAG FILE FORMAT"></a> </h2> <p style="margin-left:11%; margin-top: 1em">When not running in etags mode, each entry in the tag file consists of a separate line, each looking like this in the most general case:</p> <p style="margin-left:12%; margin-top: 1em">tag_name&lt;TAB&gt;file_name&lt;TAB&gt;ex_cmd;&quot;&lt;TAB&gt;extension_fields</p> <p style="margin-left:11%; margin-top: 1em">The fields and separators of these lines are specified as follows:</p> <table width="100%" border="0" rules="none" frame="void" cellspacing="0" cellpadding="0"> <tr valign="top" align="left"> <td width="17%"></td> <td width="3%"> <p>1.</p></td> <td width="3%"></td> <td width="77%"> <p>tag name</p></td></tr> <tr valign="top" align="left"> <td width="17%"></td> <td width="3%"> <p>2.</p></td> <td width="3%"></td> <td width="77%"> <p>single tab character</p></td></tr> <tr valign="top" align="left"> <td width="17%"></td> <td width="3%"> <p>3.</p></td> <td width="3%"></td> <td width="77%"> <p>name of the file in which the object associated with the tag is located</p></td></tr> <tr valign="top" align="left"> <td width="17%"></td> <td width="3%"> <p>4.</p></td> <td width="3%"></td> <td width="77%"> <p>single tab character</p></td></tr> <tr valign="top" align="left"> <td width="17%"></td> <td width="3%"> <p>5.</p></td> <td width="3%"></td> <td width="77%"> <p>EX command used to locate the tag within the file; generally a search pattern (either /pattern/ or ?pattern?) or line number (see <b>&minus;&minus;excmd</b>). Tag file format 2 (see <b>&minus;&minus;format</b>) extends this EX command under certain circumstances to include a set of extension fields (described below) embedded in an EX comment immediately appended to the EX command, which leaves it backward-compatible with original <b>vi</b>(1) implementations.</p> </td></tr> </table> <p style="margin-left:11%; margin-top: 1em">A few special tags are written into the tag file for internal purposes. These tags are composed in such a way that they always sort to the top of the file. Therefore, the first two characters of these tags are used a magic number to detect a tag file for purposes of determining whether a valid tag file is being overwritten rather than a source file.</p> <p style="margin-left:11%; margin-top: 1em">Note that the name of each source file will be recorded in the tag file exactly as it appears on the command line. Therefore, if the path you specified on the command line was relative to the current directory, then it will be recorded in that same manner in the tag file. See, however, the <b>&minus;&minus;tag&minus;relative</b> option for how this behavior can be modified.</p> <p style="margin-left:11%; margin-top: 1em">Extension fields are tab-separated key-value pairs appended to the end of the EX command as a comment, as described above. These key value pairs appear in the general form &quot;<i>key</i>:<i>value</i>&quot;. Their presence in the lines of the tag file are controlled by the <b>&minus;&minus;fields</b> option. The possible keys and the meaning of their values are as follows:</p> <table width="100%" border="0" rules="none" frame="void" cellspacing="0" cellpadding="0"> <tr valign="top" align="left"> <td width="11%"></td> <td width="9%"> <p style="margin-top: 1em"><i>access</i></p></td> <td width="9%"></td> <td width="71%"> <p style="margin-top: 1em">Indicates the visibility of this class member, where <i>value</i> is specific to the language.</p> </td></tr> <tr valign="top" align="left"> <td width="11%"></td> <td width="9%"> <p><i>file</i></p></td> <td width="9%"></td> <td width="71%"> <p>Indicates that the tag has file-limited visibility. This key has no corresponding value.</p></td></tr> <tr valign="top" align="left"> <td width="11%"></td> <td width="9%"> <p><i>kind</i></p></td> <td width="9%"></td> <td width="71%"> <p>Indicates the type, or kind, of tag. Its value is either one of the corresponding one-letter flags described under the various <b>&minus;&minus;&lt;LANG&gt;&minus;kinds</b> options above, or a full name. It is permitted (and is, in fact, the default) for the key portion of this field to be omitted. The optional behaviors are controlled with the <b>&minus;&minus;fields</b> option.</p></td></tr> </table> <p style="margin-left:11%;"><i>implementation</i></p> <p style="margin-left:29%;">When present, this indicates a limited implementation (abstract vs. concrete) of a routine or class, where <i>value</i> is specific to the language (&quot;virtual&quot; or &quot;pure virtual&quot; for C++; &quot;abstract&quot; for Java).</p> <table width="100%" border="0" rules="none" frame="void" cellspacing="0" cellpadding="0"> <tr valign="top" align="left"> <td width="11%"></td> <td width="14%"> <p><i>inherits</i></p></td> <td width="4%"></td> <td width="71%"> <p>When present, <i>value</i>. is a comma-separated list of classes from which this class is derived (i.e. inherits from).</p> </td></tr> <tr valign="top" align="left"> <td width="11%"></td> <td width="14%"> <p><i>signature</i></p></td> <td width="4%"></td> <td width="71%"> <p>When present, <i>value</i> is a language-dependent representation of the signature of a routine. A routine signature in its complete form specifies the return type of a routine and its formal argument list. This extension field is presently supported only for C-based languages and does not include the return type.</p></td></tr> </table> <p style="margin-left:11%; margin-top: 1em">In addition, information on the scope of the tag definition may be available, with the key portion equal to some language-dependent construct name and its value the name declared for that construct in the program. This scope entry indicates the scope in which the tag was found. For example, a tag generated for a C structure member would have a scope looking like &quot;struct:myStruct&quot;.</p> <h2>HOW TO USE WITH VI <a name="HOW TO USE WITH VI"></a> </h2> <p style="margin-left:11%; margin-top: 1em">Vi will, by default, expect a tag file by the name &quot;tags&quot; in the current directory. Once the tag file is built, the following commands exercise the tag indexing feature:</p> <table width="100%" border="0" rules="none" frame="void" cellspacing="0" cellpadding="0"> <tr valign="top" align="left"> <td width="11%"></td> <td width="14%"> <p style="margin-top: 1em"><b>vi &minus;t tag</b></p></td> <td width="4%"></td> <td width="71%"> <p style="margin-top: 1em">Start vi and position the cursor at the file and line where &quot;tag&quot; is defined.</p></td></tr> <tr valign="top" align="left"> <td width="11%"></td> <td width="14%"> <p><b>:ta tag</b></p></td> <td width="4%"></td> <td width="71%"> <p>Find a tag.</p></td></tr> <tr valign="top" align="left"> <td width="11%"></td> <td width="14%"> <p><b>Ctrl-]</b></p></td> <td width="4%"></td> <td width="71%"> <p>Find the tag under the cursor.</p></td></tr> <tr valign="top" align="left"> <td width="11%"></td> <td width="14%"> <p><b>Ctrl-T</b></p></td> <td width="4%"></td> <td width="71%"> <p>Return to previous location before jump to tag (not widely implemented).</p></td></tr> </table> <h2>HOW TO USE WITH GNU EMACS <a name="HOW TO USE WITH GNU EMACS"></a> </h2> <p style="margin-left:11%; margin-top: 1em">Emacs will, by default, expect a tag file by the name &quot;TAGS&quot; in the current directory. Once the tag file is built, the following commands exercise the tag indexing feature: <b><br> M-x visit&minus;tags&minus;table &lt;RET&gt; FILE &lt;RET&gt;</b></p> <p style="margin-left:26%;">Select the tag file, &quot;FILE&quot;, to use.</p> <p style="margin-left:11%;"><b>M-. [TAG] &lt;RET&gt;</b></p> <p style="margin-left:26%;">Find the first definition of TAG. The default tag is the identifier under the cursor.</p> <table width="100%" border="0" rules="none" frame="void" cellspacing="0" cellpadding="0"> <tr valign="top" align="left"> <td width="11%"></td> <td width="11%"> <p><b>M-*</b></p></td> <td width="4%"></td> <td width="72%"> <p>Pop back to where you previously invoked &quot;M-.&quot;.</p> </td> <td width="2%"> </td></tr> <tr valign="top" align="left"> <td width="11%"></td> <td width="11%"> <p><b>C-u M-.</b></p></td> <td width="4%"></td> <td width="72%"> <p>Find the next definition for the last tag.</p></td> <td width="2%"> </td></tr> </table> <p style="margin-left:11%; margin-top: 1em">For more commands, see the <i>Tags</i> topic in the Emacs info document.</p> <h2>HOW TO USE WITH NEDIT <a name="HOW TO USE WITH NEDIT"></a> </h2> <p style="margin-left:11%; margin-top: 1em">NEdit version 5.1 and later can handle the new extended tag file format (see <b>&minus;&minus;format</b>). To make NEdit use the tag file, select &quot;File&minus;&gt;Load Tags File&quot;. To jump to the definition for a tag, highlight the word, then press Ctrl-D. NEdit 5.1 can can read multiple tag files from different directories. Setting the X resource nedit.tagFile to the name of a tag file instructs NEdit to automatically load that tag file at startup time.</p> <h2>CAVEATS <a name="CAVEATS"></a> </h2> <p style="margin-left:11%; margin-top: 1em">Because <b>ctags</b> is neither a preprocessor nor a compiler, use of preprocessor macros can fool <b>ctags</b> into either missing tags or improperly generating inappropriate tags. Although <b>ctags</b> has been designed to handle certain common cases, this is the single biggest cause of reported problems. In particular, the use of preprocessor constructs which alter the textual syntax of C can fool <b>ctags</b>. You can work around many such problems by using the <b>&minus;I</b> option.</p> <p style="margin-left:11%; margin-top: 1em">Note that since <b>ctags</b> generates patterns for locating tags (see the <b>&minus;&minus;excmd</b> option), it is entirely possible that the wrong line may be found by your editor if there exists another source line which is identical to the line containing the tag. The following example demonstrates this condition:</p> <p style="margin-left:22%; margin-top: 1em">int variable;</p> <p style="margin-left:22%; margin-top: 1em">/* ... */ <br> void foo(variable) <br> int variable; <br> {</p> <p style="margin-left:28%;">/* ... */</p> <p style="margin-left:22%;">}</p> <p style="margin-left:11%; margin-top: 1em">Depending upon which editor you use and where in the code you happen to be, it is possible that the search pattern may locate the local parameter declaration in foo() before it finds the actual global variable definition, since the lines (and therefore their search patterns are identical). This can be avoided by use of the <b>&minus;&minus;excmd</b>=<i>n</i> option.</p> <h2>BUGS <a name="BUGS"></a> </h2> <p style="margin-left:11%; margin-top: 1em"><b>Ctags</b> has more options than <b>ls</b>(1).</p> <p style="margin-left:11%; margin-top: 1em">When parsing a C++ member function definition (e.g. &quot;className::function&quot;), <b>ctags</b> cannot determine whether the scope specifier is a class name or a namespace specifier and always lists it as a class name in the scope portion of the extension fields. Also, if a C++ function is defined outside of the class declaration (the usual case), the access specification (i.e. public, protected, or private) and implementation information (e.g. virtual, pure virtual) contained in the function declaration are not known when the tag is generated for the function definition. It will, however be available for prototypes (e.g <b>&minus;&minus;c++&minus;kinds</b>=<i>+p</i>).</p> <p style="margin-left:11%; margin-top: 1em">No qualified tags are generated for language objects inherited into a class.</p> <h2>ENVIRONMENT VARIABLES <a name="ENVIRONMENT VARIABLES"></a> </h2> <table width="100%" border="0" rules="none" frame="void" cellspacing="0" cellpadding="0"> <tr valign="top" align="left"> <td width="11%"></td> <td width="9%"> <p style="margin-top: 1em"><b>CTAGS</b></p></td> <td width="3%"></td> <td width="77%"> <p style="margin-top: 1em">If this environment variable exists, it will be expected to contain a set of default options which are read when <b>ctags</b> starts, after the configuration files listed in <b>FILES</b>, below, are read, but before any command line options are read. Options appearing on the command line will override options specified in this variable. Only options will be read from this variable. Note that all white space in this variable is considered a separator, making it impossible to pass an option parameter containing an embedded space. If this is a problem, use a configuration file instead.</p></td></tr> <tr valign="top" align="left"> <td width="11%"></td> <td width="9%"> <p><b>ETAGS</b></p></td> <td width="3%"></td> <td width="77%"> <p>Similar to the <b>CTAGS</b> variable above, this variable, if found, will be read when <b>etags</b> starts. If this variable is not found, <b>etags</b> will try to use <b>CTAGS</b> instead.</p></td></tr> <tr valign="top" align="left"> <td width="11%"></td> <td width="9%"> <p><b>TMPDIR</b></p></td> <td width="3%"></td> <td width="77%"> <p>On Unix-like hosts where mkstemp() is available, the value of this variable specifies the directory in which to place temporary files. This can be useful if the size of a temporary file becomes too large to fit on the partition holding the default temporary directory defined at compilation time. <b>ctags</b> creates temporary files only if either (1) an emacs-style tag file is being generated, (2) the tag file is being sent to standard output, or (3) the program was compiled to use an internal sort algorithm to sort the tag files instead of the the sort utility of the operating system. If the sort utility of the operating system is being used, it will generally observe this variable also. Note that if <b>ctags</b> is setuid, the value of TMPDIR will be ignored.</p></td></tr> </table> <h2>FILES <a name="FILES"></a> </h2> <p style="margin-left:11%; margin-top: 1em"><i>/ctags.cnf (on MSDOS, MSWindows only) <br> /etc/ctags.conf <br> /usr/local/etc/ctags.conf <br> $HOME/.ctags <br> $HOME/ctags.cnf (on MSDOS, MSWindows only) <br> .ctags <br> ctags.cnf (on MSDOS, MSWindows only)</i></p> <p style="margin-left:22%;">If any of these configuration files exist, each will be expected to contain a set of default options which are read in the order listed when <b>ctags</b> starts, but before the <b>CTAGS</b> environment variable is read or any command line options are read. This makes it possible to set up site-wide, personal or project-level defaults. It is possible to compile <b>ctags</b> to read an additional configuration file before any of those shown above, which will be indicated if the output produced by the <b>&minus;&minus;version</b> option lists the &quot;custom-conf&quot; feature. Options appearing in the <b>CTAGS</b> environment variable or on the command line will override options specified in these files. Only options will be read from these files. Note that the option files are read in line-oriented mode in which spaces are significant (since shell quoting is not possible). Each line of the file is read as one command line parameter (as if it were quoted with single quotes). Therefore, use new lines to indicate separate command-line arguments.</p> <table width="100%" border="0" rules="none" frame="void" cellspacing="0" cellpadding="0"> <tr valign="top" align="left"> <td width="11%"></td> <td width="6%"> <p style="margin-top: 1em"><i>tags</i></p></td> <td width="5%"></td> <td width="58%"> <p style="margin-top: 1em">The default tag file created by <b>ctags</b>.</p> </td> <td width="20%"> </td></tr> <tr valign="top" align="left"> <td width="11%"></td> <td width="6%"> <p><i>TAGS</i></p></td> <td width="5%"></td> <td width="58%"> <p>The default tag file created by <b>etags</b>.</p></td> <td width="20%"> </td></tr> </table> <h2>SEE ALSO <a name="SEE ALSO"></a> </h2> <p style="margin-left:11%; margin-top: 1em">The official Exuberant Ctags web site at:</p> <p style="margin-left:22%; margin-top: 1em">http://ctags.sourceforge.net</p> <p style="margin-left:11%; margin-top: 1em">Also <b>ex</b>(1), <b>vi</b>(1), <b>elvis</b>, or, better yet, <b>vim</b>, the official editor of <b>ctags</b>. For more information on <b>vim</b>, see the VIM Pages web site at:</p> <p style="margin-left:22%; margin-top: 1em">http://www.vim.org/</p> <h2>AUTHOR <a name="AUTHOR"></a> </h2> <p style="margin-left:11%; margin-top: 1em">Darren Hiebert &lt;dhiebert at users.sourceforge.net&gt; <br> http://DarrenHiebert.com/</p> <h2>MOTIVATION <a name="MOTIVATION"></a> </h2> <p style="margin-left:11%; margin-top: 1em">&quot;Think ye at all times of rendering some service to every member of the human race.&quot;</p> <p style="margin-left:11%; margin-top: 1em">&quot;All effort and exertion put forth by man from the fullness of his heart is worship, if it is prompted by the highest motives and the will to do service to humanity.&quot;</p> <p style="margin-left:22%; margin-top: 1em">&minus;&minus; From the Baha&rsquo;i Writings</p> <h2>CREDITS <a name="CREDITS"></a> </h2> <p style="margin-left:11%; margin-top: 1em">This version of <b>ctags</b> was originally derived from and inspired by the ctags program by Steve Kirkendall &lt;kirkenda@cs.pdx.edu&gt; that comes with the Elvis vi clone (though virtually none of the original code remains).</p> <p style="margin-left:11%; margin-top: 1em">Credit is also due Bram Moolenaar &lt;Bram@vim.org&gt;, the author of <b>vim</b>, who has devoted so much of his time and energy both to developing the editor as a service to others, and to helping the orphans of Uganda.</p> <p style="margin-left:11%; margin-top: 1em">The section entitled &quot;HOW TO USE WITH GNU EMACS&quot; was shamelessly stolen from the info page for GNU <b>etags</b>.</p> <hr> </body> </html>
lib/genometools-1.4.1/src/external/cgilua-5.1.3/doc/br/sapi.html
bioh4x/NeatFreq
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>CGILua: gera&ccedil;&atilde;o de scripts para a Web usando Lua</title> <link rel="stylesheet" href="http://www.keplerproject.org/doc.css" type="text/css"/> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> </head> <body> <div id="container"> <div id="product"> <div id="product_logo"><a href="http://www.keplerproject.org"><img alt="Logotipo do CGILua" src="cgi-128.gif"/></a></div> <div id="product_name"><big><strong>CGILua</strong></big></div> <div id="product_description">Gera&ccedil;&atilde;o de scripts para a Web usando Lua</div> </div> <!-- id="product" --> <div id="main"> <div id="navigation"> <h1>CGILua</h1> <ul> <li><a href="index.html">In&iacute;cio</a> <ul> <li><a href="index.html#overview">Vis&atilde;o geral</a></li> <li><a href="index.html#status">Status</a></li> <li><a href="index.html#download">Download</a></li> <li><a href="index.html#history">Hist&oacute;rico</a></li> <li><a href="index.html#incompatibility">Incompatibilidades</a></li> <li><a href="index.html#credits">Cr&eacute;ditos</a></li> <li><a href="index.html#contact">Fale conosco</a></li> </ul> </li> <li><a href="manual.html">Manual</a> <ul> <li><a href="manual.html#intro">Introdu&ccedil;&atilde;o</a></li> <li><a href="manual.html#installation">Instala&ccedil;&atilde;o</a></li> <li><a href="manual.html#config">Configura&ccedil;&atilde;o</a></li> <li><a href="manual.html#scripts">Lua Scripts</a></li> <li><a href="manual.html#templates">Lua Pages</a></li> <li><a href="manual.html#parameters">Par&acirc;metros</a></li> </ul> </li> <li><a href="reference.html">Refer&ecirc;ncia</a> <ul> <li><a href="reference.html#headers">Cabe&ccedil;alhos</a></li> <li><a href="reference.html#contents">Gera&ccedil;&atilde;o de conte&uacute;do</a></li> <li><a href="reference.html#prep">Lua Pages</a></li> <li><a href="reference.html#variables">Vari&aacute;veis do CGILua</a></li> <li><a href="reference.html#error_handling">Tratamento de erros</a></li> <li><a href="reference.html#behavior">Comportamento do CGILua</a></li> <li><a href="reference.html#urlcode">Codifica&ccedil;&atilde;o de URL</a></li> <li><a href="reference.html#auxiliar">Fun&ccedil;&otilde;es auxiliares</a></li> <li><a href="reference.html#index">&Iacute;ndice alfab&eacute;tico</a></li> </ul> </li> <li><a href="libraries.html">Bibliotecas</a> <ul> <li><a href="libraries.html#cookies">Cookies</a></li> <li><a href="libraries.html#serialize">Serialize</a></li> <li><a href="libraries.html#session">Session</a></li> </ul> </li> <li><strong>SAPI</strong></li> <li><a href="license.html">Licen&ccedil;as</a></li> </ul> </div> <!-- id="navigation" --> <div id="content"> <h2>API do servidor</h2> <p>A API do servidor (SAPI) &eacute; um conjunto de fun&ccedil;&otilde;es que abstrai o servidor Web e o disparador usado. Um disparador de SAPI &eacute; o mecanismo que permite a um servidor Web executar e comunicar-se com o CGILua e os aplicativos Web. A SAPI permite a abstra&ccedil;&atilde;o de uma s&eacute;rie de detalhes internos, fazendo com que o CGILua seja muito mais port&aacute;til, j&aacute; que transportar o CGILua para uma nova plataforma significa simplesmente escrever um disparador de SAPI para a plataforma de destino.</p> <p>No momento, o CGILua oferece suporte a Apache, Microsoft IIS, Tomcat e Xavante como servidores Web, e a CGI, FastCGI, mod_lua, ISAPI e servlets como disparadores.</p> <p>As fun&ccedil;&otilde;es s&atilde;o separadas em dois pacotes: <code>SAPI.Request</code> e <code>SAPI.Response</code>:</p> <dl class="reference"> <dt><strong><code>SAPI.Request.getpostdata ([n])</code></strong></dt> <dd>Obt&eacute;m um bloco de <em>dados de POST</em>. O par&acirc;metro opcional <em>n</em> &eacute; o n&uacute;mero de bytes para ler (o tamanho de bloco padr&atilde;o ser&aacute; usado se nenhum par&acirc;metro for informado).<br /> Retorna o bloco como uma string Lua.</dd> <dt><a href="#servervariable"><strong><code>SAPI.Request.servervariable (string)</code></strong></a></dt> <dd>Obt&eacute;m o valor de uma vari&aacute;vel de ambiente do servidor. O argumento pode ser uma das <a href="http://hoohoo.ncsa.uiuc.edu/cgi/env.html">vari&aacute;veis CGI</a> definidas, embora nem todos os servidores implementem o conjunto completo de vari&aacute;veis. O conjunto consiste em:<br /> <ul> <li><strong><code>AUTH_TYPE</code></strong> - se o servidor suportar autentica&ccedil;&atilde;o de usu&aacute;rio e o script estiver protegido, este &eacute; o m&eacute;todo de autentica&ccedil;&atilde;o espec&iacute;fico ao protocolo usado para validar o usu&aacute;rio.</li> <li><strong><code>CONTENT_LENGTH</code></strong> - o tamanho do conte&uacute;do como fornecido pelo cliente.</li> <li><strong><code>CONTENT_TYPE</code></strong> - para consultas que t&ecirc;m informa&ccedil;&otilde;es anexadas, por exemplo, HTTP POST e PUT, este &eacute; o tipo de conte&uacute;do dos dados.</li> <li><strong><code>GATEWAY_INTERFACE</code></strong> - a revis&atilde;o da especifica&ccedil;&atilde;o CGI com a qual esse servidor &eacute; compat&iacute;vel. Formato: CGI/revis&atilde;o</li> <li><strong><code>PATH_INFO</code></strong> - informa&ccedil;&otilde;es adicionais sobre o caminho, conforme fornecidas pelo cliente. Em outras palavras, os scripts podem ser acessados por meio dos respectivos nomes de caminho virtual, seguidos de informa&ccedil;&otilde;es adicionais no final desse caminho. As informa&ccedil;&otilde;es adicionais s&atilde;o enviadas como PATH_INFO. Essas informa&ccedil;&otilde;es devem ser decodificadas pelo servidor se vierem de uma URL antes de serem passadas para o script CGI.</li> <li><strong><code>PATH_TRANSLATED</code></strong> - o servidor fornece uma vers&atilde;o convertida de PATH_INFO, que realiza quaisquer mapeamentos de virtual para f&iacute;sico no caminho.</li> <li><strong><code>QUERY_STRING</code></strong> - as informa&ccedil;&otilde;es inseridas ap&oacute;s o &quot;?&quot; na URL que fez refer&ecirc;ncia a esse script. Essas s&atilde;o as informa&ccedil;&otilde;es da consulta e n&atilde;o devem ser decodificadas. Esta vari&aacute;vel deve ser sempre definida quando houver informa&ccedil;&otilde;es da consulta, qualquer que seja a decodifica&ccedil;&atilde;o da linha de comando.</li> <li><strong><code>REMOTE_ADDR</code></strong> - o endere&ccedil;o IP do host remoto que faz o pedido.</li> <li><strong><code>REMOTE_HOST</code></strong> - o nome do host que faz o pedido. Se o servidor n&atilde;o tiver essas informa&ccedil;&otilde;es, ele define REMOTE_ADDR e n&atilde;o define esta vari&aacute;vel.</li> <li><strong><code>REMOTE_IDENT</code></strong> - se o servidor HTTP oferecer suporte &agrave; identifica&ccedil;&atilde;o RFC 931, esta vari&aacute;vel ser&aacute; definida com o nome do usu&aacute;rio remoto recuperado do servidor. O uso desta vari&aacute;vel deve ser limitado apenas &agrave; conex&atilde;o.</li> <li><strong><code>REMOTE_USER</code></strong> - se o servidor oferecer suporte &agrave; autentica&ccedil;&atilde;o de usu&aacute;rio e o script estiver protegido, este &eacute; o nome de usu&aacute;rio com o qual eles foram autenticados.</li> <li><strong><code>REQUEST_METHOD</code></strong> - o m&eacute;todo com o qual o pedido foi feito. Para HTTP, isto equivale a &quot;GET&quot;, &quot;HEAD&quot;, &quot;POST&quot; etc.</li> <li><strong><code>SCRIPT_NAME</code></strong> - um caminho virtual para o script em execu&ccedil;&atilde;o, usado em URLs auto-referentes.</li> <li><strong><code>SERVER_NAME</code></strong> - o nome do host do servidor, o alias do DNS ou o endere&ccedil;o IP como exibido em URLs auto-referentes.</li> <li><strong><code>SERVER_PORT</code></strong> - o n&uacute;mero da porta &agrave; qual o pedido foi enviado.</li> <li><strong><code>SERVER_PROTOCOL</code></strong> - o nome e a revis&atilde;o do protocolo de informa&ccedil;&otilde;es com o qual este pedido foi enviado. Formato: protocolo/revis&atilde;o</li> <li><strong><code>SERVER_SOFTWARE</code></strong> - o nome e a vers&atilde;o do software do servidor Web que responde ao pedido (e executa o gateway). Formato: nome/vers&atilde;o</li> </ul> Al&eacute;m desses, as linhas do cabe&ccedil;alho recebidas do cliente, se houver, s&atilde;o colocadas no ambiente com o prefixo <code>HTTP_</code> seguido do nome do cabe&ccedil;alho. Quaisquer caracteres <code>-</code> (h&iacute;fen) no nome do cabe&ccedil;alho s&atilde;o alterados para caracteres <code>_</code> (sublinhado). O servidor pode excluir quaisquer cabe&ccedil;alhos que j&aacute; tenha processado, por exemplo, <em>Authorization</em>, <em>Content-type</em> e <em>Content-length</em>. Se necess&aacute;rio, o servidor pode optar por excluir todos ou qualquer um desses cabe&ccedil;alhos se a inclus&atilde;o exceder algum limite do ambiente do sistema.<br /> Retorna uma string.</dd> <dt><strong><code>SAPI.Response.contenttype (string)</code></strong></dt> <dd>Envia o cabe&ccedil;alho <em>Content-type</em> para o cliente. A string fornecida est&aacute; na forma &quot;<em>tipo</em>/<em>subtipo</em>&quot;. Esta fun&ccedil;&atilde;o deve ser chamada antes que qualquer sa&iacute;da seja enviada com o uso de <code>SAPI.Response.write</code>.<br /> N&atilde;o retorna nada.</dd> <dt><strong><code>SAPI.Response.errorlog (string)</code></strong></dt> <dd>Gera uma sa&iacute;da de erro usando a string fornecida.<br /> N&atilde;o retorna nada.</dd> <dt><strong><code>SAPI.Response.header (header, value)</code></strong></dt> <dd>Envia um cabe&ccedil;alho gen&eacute;rico para o cliente. O primeiro argumento deve ser o nome do cabe&ccedil;alho, por exemplo, &quot;Set-Cookie&quot;. O segundo deve ser o valor. Esta fun&ccedil;&atilde;o n&atilde;o deve ser usada em substitui&ccedil;&atilde;o &agrave;s fun&ccedil;&otilde;es <code>SAPI.Response.contenttype</code> ou <code>SAPI.Response.redirect</code>.<br /> N&atilde;o retorna nada.</dd> <dt><strong><code>SAPI.Response.redirect (url)</code></strong></dt> <dd>Envia o cabe&ccedil;alho <em>Location</em> para o cliente. A <code>url</code> fornecida deve ser uma string.<br /> N&atilde;o retorna nada.</dd> <dt><strong><code>SAPI.Response.write (string)</code></strong></dt> <dd>Gera uma sa&iacute;da usando a string fornecida.<br /> N&atilde;o retorna nada.</dd> </dl> </div> <!-- id="content" --> </div> <!-- id="main" --> <div id="about"> <p><a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="XHTML 1.0 v&aacute;lido!" height="31" width="88" /></a></p> <p><small>$Id: sapi.html,v 1.3 2005/11/03 18:48:57 carregal Exp $</small></p> </div> <!-- id="about" --> </div> <!-- id="container" --> </body> </html>
typo3/sysext/form/Resources/Private/Partials/Default/Confirmation/FlatElements/Radio.html
webian/TYPO3.CMS
<f:if condition="{model.showElement}"> <f:if condition="{model.additionalArguments.checked} == 'checked'"> <li class="csc-form-{model.elementCounter} csc-form-element csc-form-element-{model.elementTypeLowerCase}"> <label>{model.additionalArguments.label}</label> <f:if condition="{model.additionalArguments.value}">{model.additionalArguments.value}</f:if> </li> </f:if> </f:if> <f:if condition="{model.additionalArguments.checked} == 'checked'"> <f:form.hidden class="{model.additionalArguments.class}" dir="{model.additionalArguments.dir}" id="{model.additionalArguments.id}" lang="{model.additionalArguments.lang}" style="{model.additionalArguments.style}" title="{model.additionalArguments.title}" accesskey="{model.additionalArguments.accesskey}" tabindex="{model.additionalArguments.tabindex}" onclick="{model.additionalArguments.onclick}" name="{model.additionalArguments.prefix}[{model.additionalArguments.name}]" value="<f:if condition='{model.additionalArguments.value}'><f:then>{model.additionalArguments.value}</f:then><f:else>{model.additionalArguments.name}-{model.elementCounter}</f:else></f:if>" additionalAttributes="{model.htmlAttributes}" /> </f:if>
docs/com/marginallyclever/robotOverlord/rotaryStewartPlatform3/class-use/RotaryStewartPlatform3MotionState.RotaryStewartPlatform3Arm.html
i-make-robots/Evil-Overlord
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_66) on Mon Mar 27 12:05:38 PDT 2017 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class com.marginallyclever.robotOverlord.rotaryStewartPlatform3.RotaryStewartPlatform3MotionState.RotaryStewartPlatform3Arm (Robot Overlord v1.4.2 API)</title> <meta name="date" content="2017-03-27"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class com.marginallyclever.robotOverlord.rotaryStewartPlatform3.RotaryStewartPlatform3MotionState.RotaryStewartPlatform3Arm (Robot Overlord v1.4.2 API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../com/marginallyclever/robotOverlord/rotaryStewartPlatform3/RotaryStewartPlatform3MotionState.RotaryStewartPlatform3Arm.html" title="class in com.marginallyclever.robotOverlord.rotaryStewartPlatform3">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?com/marginallyclever/robotOverlord/rotaryStewartPlatform3/class-use/RotaryStewartPlatform3MotionState.RotaryStewartPlatform3Arm.html" target="_top">Frames</a></li> <li><a href="RotaryStewartPlatform3MotionState.RotaryStewartPlatform3Arm.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class com.marginallyclever.robotOverlord.rotaryStewartPlatform3.RotaryStewartPlatform3MotionState.RotaryStewartPlatform3Arm" class="title">Uses of Class<br>com.marginallyclever.robotOverlord.rotaryStewartPlatform3.RotaryStewartPlatform3MotionState.RotaryStewartPlatform3Arm</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../com/marginallyclever/robotOverlord/rotaryStewartPlatform3/RotaryStewartPlatform3MotionState.RotaryStewartPlatform3Arm.html" title="class in com.marginallyclever.robotOverlord.rotaryStewartPlatform3">RotaryStewartPlatform3MotionState.RotaryStewartPlatform3Arm</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#com.marginallyclever.robotOverlord.rotaryStewartPlatform3">com.marginallyclever.robotOverlord.rotaryStewartPlatform3</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="com.marginallyclever.robotOverlord.rotaryStewartPlatform3"> <!-- --> </a> <h3>Uses of <a href="../../../../../com/marginallyclever/robotOverlord/rotaryStewartPlatform3/RotaryStewartPlatform3MotionState.RotaryStewartPlatform3Arm.html" title="class in com.marginallyclever.robotOverlord.rotaryStewartPlatform3">RotaryStewartPlatform3MotionState.RotaryStewartPlatform3Arm</a> in <a href="../../../../../com/marginallyclever/robotOverlord/rotaryStewartPlatform3/package-summary.html">com.marginallyclever.robotOverlord.rotaryStewartPlatform3</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation"> <caption><span>Fields in <a href="../../../../../com/marginallyclever/robotOverlord/rotaryStewartPlatform3/package-summary.html">com.marginallyclever.robotOverlord.rotaryStewartPlatform3</a> declared as <a href="../../../../../com/marginallyclever/robotOverlord/rotaryStewartPlatform3/RotaryStewartPlatform3MotionState.RotaryStewartPlatform3Arm.html" title="class in com.marginallyclever.robotOverlord.rotaryStewartPlatform3">RotaryStewartPlatform3MotionState.RotaryStewartPlatform3Arm</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Field and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>protected <a href="../../../../../com/marginallyclever/robotOverlord/rotaryStewartPlatform3/RotaryStewartPlatform3MotionState.RotaryStewartPlatform3Arm.html" title="class in com.marginallyclever.robotOverlord.rotaryStewartPlatform3">RotaryStewartPlatform3MotionState.RotaryStewartPlatform3Arm</a>[]</code></td> <td class="colLast"><span class="typeNameLabel">RotaryStewartPlatform3MotionState.</span><code><span class="memberNameLink"><a href="../../../../../com/marginallyclever/robotOverlord/rotaryStewartPlatform3/RotaryStewartPlatform3MotionState.html#arms">arms</a></span></code>&nbsp;</td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../com/marginallyclever/robotOverlord/rotaryStewartPlatform3/package-summary.html">com.marginallyclever.robotOverlord.rotaryStewartPlatform3</a> with parameters of type <a href="../../../../../com/marginallyclever/robotOverlord/rotaryStewartPlatform3/RotaryStewartPlatform3MotionState.RotaryStewartPlatform3Arm.html" title="class in com.marginallyclever.robotOverlord.rotaryStewartPlatform3">RotaryStewartPlatform3MotionState.RotaryStewartPlatform3Arm</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="typeNameLabel">RotaryStewartPlatform3MotionState.RotaryStewartPlatform3Arm.</span><code><span class="memberNameLink"><a href="../../../../../com/marginallyclever/robotOverlord/rotaryStewartPlatform3/RotaryStewartPlatform3MotionState.RotaryStewartPlatform3Arm.html#set-com.marginallyclever.robotOverlord.rotaryStewartPlatform3.RotaryStewartPlatform3MotionState.RotaryStewartPlatform3Arm-">set</a></span>(<a href="../../../../../com/marginallyclever/robotOverlord/rotaryStewartPlatform3/RotaryStewartPlatform3MotionState.RotaryStewartPlatform3Arm.html" title="class in com.marginallyclever.robotOverlord.rotaryStewartPlatform3">RotaryStewartPlatform3MotionState.RotaryStewartPlatform3Arm</a>&nbsp;other)</code>&nbsp;</td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../com/marginallyclever/robotOverlord/rotaryStewartPlatform3/RotaryStewartPlatform3MotionState.RotaryStewartPlatform3Arm.html" title="class in com.marginallyclever.robotOverlord.rotaryStewartPlatform3">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?com/marginallyclever/robotOverlord/rotaryStewartPlatform3/class-use/RotaryStewartPlatform3MotionState.RotaryStewartPlatform3Arm.html" target="_top">Frames</a></li> <li><a href="RotaryStewartPlatform3MotionState.RotaryStewartPlatform3Arm.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2017 <a href="http://www.marginallyclever.com/">Marginally Clever Robots, Limited.</a>. All rights reserved.</small></p> </body> </html>
setup_oneclick/css/cloudwatt.css
dalitun/os_image_factory
/* Style des Headings en classes */ .h1, .h2, .h3, .h4, .h5, .h6 { display: block; margin-bottom: 10px; } table { width: 100%; } /*Stick sur le coté*/ #stick-blue { padding: 5px !important; height: 70px !important; width: 120px !important; position:fixed !important; right:0 !important; top:50% !important; background: #3498db !important; z-index:9999 !important; text-align: center !important; overflow: hidden !important; color: white !important; } #stick-blue a { color: white !important; } #stick-blue i { font-size: 30px !important; } /* Popup */ #fade { display: none; background: black; position: fixed; left: 0; top: 0; width: 100%; height: 100%; opacity: .80; z-index: 9999; } .popup_block{ display: none; background: #FFFFFF; padding: 20px; float: left; position: fixed; top: 50%; left: 50%; z-index: 99999; border: 10px solid black; border-radius: 20px; } .popup_block iframe { overflow-y: scroll; -webkit-overflow-scrolling: touch; } .poplink a:link, .poplink a:visited, .poplink a, .poplink a:active { background:black; color: white !important; padding:10px 30px 10px 30px; margin: 5px 5px 5px 5px; display:block; font-size: 10px; } .poplink a:hover { background: #4d4d4d; } .seeall { background:#4d4d4d !important; } .seeall:hover { background: #000 !important; } img.btn_close { float: right; margin: -20px -20px 0px 0px; } *html #fade { position: absolute; } *html .popup_block { position: absolute; } #application hr { border: 0; height: 0; border-top: 1px solid rgba(0, 0, 0, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.3); } /*#application .post-standard, #application .post-right-container { margin-top: -30px; } */ #application #sidebar h4 { margin-bottom: 0px; } .comingsoon { padding-top: 100px; text-align: center; color: white; text-transform: uppercase; } .composants i { font-size: 40px; /*color: white;*/ background: #f6f6f6; border-radius: 50px; padding: 5px; } .composants p { margin-top: 5px; } .composants span { margin-right: 10px; margin-left: 10px; text-align: center; } /* Différentes tailles de texte */ .spanbig { font-size: 30px !important; display: block !important; } .spanmedium { font-size: 14px !important; color: black; display: block !important; } .spansmall { font-size: 11px !important; display: block !important; } .marginless { margin-top: -10px !important; margin-bottom: -10px !important; } #offregratuite { text-align: center; } #offregratuite h1, #offregratuite .h1 { margin-bottom: 0px !important; } #offregratuite h4, #offregratuite .h4 { margin-bottom: -5px !important; font-size: ; } /* Affichage du pricing */ #serveurs-cloud .tabs_style1 .tab-content { min-height: 440px !important; } .pricingtable .price { font-size: 110%; } .pricingtable .month { font-size: 70%; } .pricingtable strike { font-size: 70%; } .pricingtable { width: 100%; margin: 0 auto; } .pricingtable h1, .pricingtable .h1 { text-align: center; font-size: 140%; } .pricingtable .span2 { width: 14.2%; border: 1px solid #eee; border-top: 3px solid #4DA4DF; padding: 5px; text-align: center; transition: all 0.1s ease-in-out 0s; } .pricingtable .span2:hover { background: #eee; padding: 20px 5px 15px 5px; margin-top: -15px; border: 3px solid #4DA4DF; background-image: -webkit-linear-gradient(top, #FFFFFF, #f6f6f6); background-image: -moz-linear-gradient(top, #FFFFFF, #f6f6f6); background-image: -o-linear-gradient(top, #FFFFFF, #f6f6f6); background-image: linear-gradient(to bottom, #FFFFFF, #f6f6f6); transition: all 0.1s ease-in-out 0s; } .pricingtable .span1 { width: 12.2%; border: 1px solid #eee; border-top: 3px solid #4DA4DF; padding: 5px; text-align: center; transition: all 0.1s ease-in-out 0s; } .pricingtable .span1:hover { background: #eee; padding: 20px 5px 15px 5px; margin-top: -15px; border: 3px solid #4DA4DF; background-image: -webkit-linear-gradient(top, #FFFFFF, #f6f6f6); background-image: -moz-linear-gradient(top, #FFFFFF, #f6f6f6); background-image: -o-linear-gradient(top, #FFFFFF, #f6f6f6); background-image: linear-gradient(to bottom, #FFFFFF, #f6f6f6); transition: all 0.1s ease-in-out 0s; } .pricingtable a.button, .pricingtable a.button_default { margin-top: 15px; } .pricingtable .span4 { width: 28.5%; border: 1px solid #eee; border-top: 3px solid #4DA4DF; padding: 5px; text-align: center; } .pricingtable .span4:hover { background: #eee; padding: 20px 5px 15px 5px; margin-top: -15px; border: 3px solid #4DA4DF; background-image: -webkit-linear-gradient(top, #FFFFFF, #f6f6f6); background-image: -moz-linear-gradient(top, #FFFFFF, #f6f6f6); background-image: -o-linear-gradient(top, #FFFFFF, #f6f6f6); background-image: linear-gradient(to bottom, #FFFFFF, #f6f6f6); transition: all 0.1s ease-in-out 0s; } .pricingtable .span3 { width: 21.4%; border: 1px solid #eee; border-top: 3px solid #4DA4DF; padding: 5px; text-align: center; } .pricingtable .span3:hover { background: #eee; padding: 20px 5px 15px 5px; margin-top: -15px; border: 3px solid #4DA4DF; background-image: -webkit-linear-gradient(top, #FFFFFF, #f6f6f6); background-image: -moz-linear-gradient(top, #FFFFFF, #f6f6f6); background-image: -o-linear-gradient(top, #FFFFFF, #f6f6f6); background-image: linear-gradient(to bottom, #FFFFFF, #f6f6f6); transition: all 0.1s ease-in-out 0s; } .pricingtable .span6 { width: 42.88%; border: 1px solid #eee; border-top: 3px solid #4DA4DF; padding: 5px; text-align: center; transition: all 0.1s ease-in-out 0s; } .pricingtable .span6:hover { background: #eee; padding: 20px 5px 15px 5px; margin-top: -15px; border: 3px solid #4DA4DF; background-image: -webkit-linear-gradient(top, #FFFFFF, #f6f6f6); background-image: -moz-linear-gradient(top, #FFFFFF, #f6f6f6); background-image: -o-linear-gradient(top, #FFFFFF, #f6f6f6); background-image: linear-gradient(to bottom, #FFFFFF, #f6f6f6); transition: all 0.1s ease-in-out 0s; } .boxprice1 { padding: 39px 0px 0px 0px; width: 100px; float:left; position: relative; color: black; font-weight: bold; } .boxprice2 { background: #eee; padding: 10px; border-radius: 10px 0px 0px 10px; } a.linkblue { padding: 5px 0px 5px 0px; display:block; background: #eee; margin: 30px -5px -5px -5px; } /* Affichage des tarifs par mois et heure + Bouton switch */ #pricesperhour, #pricesperhour2 { display: none; width: 100%; } #serveurs-cloud .tabs_style1 > ul.tabs > li { width: 255px !important; } #serveurs-cloud .tabs_style1 > ul.tabs { width: 764px !important; } /*#hadoop .post-non-standard ul { margin: none !important; } */ #hadoop .tabs_style1 > ul.tabs > li { width: 382px !important; } #hadoop .tabs_style1 > ul.tabs { width: 764px !important; } .switch { position: relative; margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; height: 35px; width: 200px; background: #eee; border-radius: 3px; -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1); box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1); } .switch-label { position: relative; z-index: 2; float: left; width: 100px; line-height: 35px; font-size: 13px; color: gray; text-align: center; cursor: pointer; text-transform: uppercase; } .switch-label:active { font-weight: bold; } .switch-label-off { padding-left: 2px; } .switch-label-on { padding-right: 2px; } .switch-input { display: none; } .switch-input:checked + .switch-label { font-weight: bold; color: white; text-shadow: 0 1px rgba(255, 255, 255, 0.25); -webkit-transition: 0.15s ease-out; -moz-transition: 0.15s ease-out; -o-transition: 0.15s ease-out; transition: 0.15s ease-out; } .switch-input:checked + .switch-label-on ~ .switch-selection { left: 100px; } .switch-selection { display: block; position: absolute; z-index: 1; top: 2px; left: 2px; width: 98px; height: 33px; background: #65bd63; border-radius: 3px; background-image: -webkit-linear-gradient(top, #9dd993, #65bd63); background-image: -moz-linear-gradient(top, #9dd993, #65bd63); background-image: -o-linear-gradient(top, #9dd993, #65bd63); background-image: linear-gradient(to bottom, #9dd993, #65bd63); -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), 0 0 2px rgba(0, 0, 0, 0.2); box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), 0 0 2px rgba(0, 0, 0, 0.2); -webkit-transition: left 0.15s ease-out; -moz-transition: left 0.15s ease-out; -o-transition: left 0.15s ease-out; transition: left 0.15s ease-out; } .switch-blue .switch-selection { background: #3498DB; background-image: -webkit-linear-gradient(top, #4DA4DF, #3498DB); background-image: -moz-linear-gradient(top, #4DA4DF, #3498DB); background-image: -o-linear-gradient(top, #4DA4DF, #3498DB); background-image: linear-gradient(to bottom, #4DA4DF, #3498DB); } #cookie-banner { width: 100%; color: #747474; background-color: #f6f6f6; } #cookie-banner .container { max-width: 1600px; } #cookie-banner p + p { margin: -8px 0 12px; } #cookie-banner .title-intro-cookie { font-size: 1.5em; font-weight: bold; border-bottom: 1px solid #fff; padding: 5px 0 10px; margin-bottom: 15px; } #cookie-banner .title-intro-cookie a { font-size: 0.65em; color: #000; background: #fff url('https://www.cloudwatt.com/themes/cloudwatt/css/../img/common/sprite-1.png') no-repeat 4px 5px; border: 1px solid #c0c0bf; text-decoration: none; padding: 3px 5px 5px 22px; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; float: right; height: 27px; } /* media screen */ @media screen and (max-width: 800px) { #header { height: auto; } } @media (min-width: 768px) and (max-width: 992px) { #header { height: auto; } } @media screen and (min-width: 992px){ .only-phone{display: none;} } /* --------- */ #legacy .infield label.helper { display: block; position: static; background: #3498db; color: #FFF; font-size: 14px; width: 100%; margin: auto; height: auto; line-height: 18px; padding: 8px; margin-top: -1px; -moz-border-radius: 0 0 5px 5px; -webkit-border-radius: 0 0 5px 5px; -khtml-border-radius: 0 0 5px 5px; border-radius: 0 0 5px 5px; } #legacy .infield label.helper_error { display: block; position: static; background: #F00; color: #FFF; font-size: 14px; width: 100%; margin: auto; height: auto; line-height: 18px; padding: 8px; margin-top: -1px; -moz-border-radius: 0 0 5px 5px; -webkit-border-radius: 0 0 5px 5px; -khtml-border-radius: 0 0 5px 5px; border-radius: 0 0 5px 5px; } .invite-create{ position: absolute; top: 13px; right: 90px; } /* buttons */ a.button.button_filBleu, input[type=button].button.button_filBleu { background-color: transparent; border: 1px solid #3498db!important; color: #3498db; border-radius: 3px; box-shadow: none; opacity: 1; -moz-box-shadow: none; -webkit-box-shadow: none; -o-box-shadow: none; } a:hover.button.button_filBleu, input[type=button]:hover.button.button_filBleu { background-color: #3498db; color: white; } a.button.button_filGris, input[type=button].button.button_filGris{ background-color: transparent; border: 1px solid #aaa!important; color: #777; border-radius: 3px; box-shadow: none; opacity: 1; -moz-box-shadow: none; -webkit-box-shadow: none; -o-box-shadow: none; } a:hover.button.button_filGris, input[type=button]:hover.button.button_filGris { background-color: #aaa; color: white; } a.button.button_filBlanc, input[type=button].button.button_filBlanc{ background-color: transparent; border: 1px solid white!important; color: white; border-radius: 3px; box-shadow: none; opacity: 1; -moz-box-shadow: none; -webkit-box-shadow: none; -o-box-shadow: none; } a:hover.button.button_filBlanc, input[type=button]:hover.button.button_filBlanc { background-color: white; color: #000; } .contact-form.field-icons-yes input[type="password"] { padding-left: 60px; } /* txt */ .underline-dotted{ border-bottom: 1px dotted #fff; } .section-with-sidebar .content-without-js { padding: 70px 0 20px; } input.input-black-value { color: black!important; } .cancel-toggle-style { background-color: inherit!important; } .cancel-toggle-style:hover { background-color: inherit!important; } .cancel-toggle-style a.button, .cancel-toggle-style input[type=button].button { line-height: 1!important; color: #FFF!important; font-family: inherit!important; background: #3498db!important; display: inline-block!important; text-transform: uppercase!important; -webkit-font-smoothing: antialiased!important; font-weight: 600!important; -moz-box-shadow: 0 -3px rgba(0, 0, 0, 0.1) inset!important; -webkit-box-shadow: 0 -3px rgba(0, 0, 0, 0.1) inset!important; -o-box-shadow: 0 -3px rgba(0, 0, 0, 0.1) inset!important; opacity: 0.85!important; outline: none!important; text-align: center!important; transition: all 0.3s ease-in-out!important; border-radius: 3px!important; letter-spacing: 1px!important; text-shadow: 0 1px 0px rgba(255,255,255,0.25)!important; padding: 10px 10px!important; min-width: 80px!important; font-size: 11px!important; box-shadow: 0px 1px 0px rgba(255,255,255,0.25) inset, 0px 1px 3px rgba(0,0,0,0.2)!important; } blockquote.blockquote-form-account { margin-top: -15px; margin-left: 0; border-radius: 5px; border: 1px solid #ccc; background-color: inherit; } .no-padding { padding: 0!important; } .no-padding-left { padding-left: 0!important; } .no-padding-right { padding-right: 0!important; } .no-padding-top { padding-top: 0!important; } .no-padding-bottom { padding-bottom: 0!important; } .style-drop_zone{ margin-bottom:20px; border:#1b7fc2 2px dashed; width:100%; height:130px; background-color:#dcebf9; border-radius:3px; text-align:center; padding:25px 0px 0px 0px; } .style-drop_zone-valid h3{ color:#ffffff !important; } .style-drop_zone-valid{ margin-bottom:20px; border:#dcebf9 2px dashed; width:100%; height:130px; background-color:#1b7fc2; border-radius:3px; text-align:center; padding:25px 0px 0px 0px; } .border-hr{ width: 100%; border-top: 1px solid #ddd; padding-top:20px; padding-bottom: 5px; margin-top: 10px; } .admin-msg{ border-left: 4px solid #3498db; padding-left: 20px; margin-left: 30px; } .user-msg{ border-left: 4px solid #f5f5f5; padding-left: 20px; } .pricing-table .pricing-column .pricing-box .price{ font-size: 40px; } .pricing-table .pricing-column .pricing-box .price.blue{ font-size: 50px; color: #3498db } .block-text{ padding: 30px 10px 10px; } .block-green{ background: #dcf9de; } .block-blue{ background: #DCEBF9; } .block-grey{ background: #f5f5f5; } .btn-list li{ margin-right: 10px; border-radius: 5px; margin-top: 10px; } .resetBorder{ /*display: inline-block;*/ border-color: white!important; border: none; } .input-block-cal{ /*margin-bottom: 0px!important;*/ width: 100%!important; } .info-block-cal{ /*vertical-align: top!important;*/ margin-top: 7px; /*margin-right: 5px;*/ } .align-right{ margin-top: 20px; float: right; } .Opacitystatus{ opacity: 0.5; cursor: pointer; } #blockInstanceSelected{ opacity: 1; } .IconMiniCw{ opacity: 0.8; width: 25px!important; height: 100%!important; margin-right: 5px; } #total-Product{ margin-top: -10px; } .content-padding{ padding-left: 30px; } .list-product-widget{ height: 100%; } .buttonPointer{ cursor: pointer; } .buttonDel{ position:relative; top:-35px; color: white!important; right: 0px; } .widget-margin{ margin-bottom: 0px!important; } .btn-selected-shadows{ background: none repeat scroll 0 0 #1b66a9!important; } .generateProduct{ /*display: none;*/ } .margin-li-info{ margin-left: 15px; margin-right: 5px; } .italicStyle{ font-style: italic; } #calculator input[type="text"].error , #calculator input[type="email"].error , #calculator input[type="number"].error ,#calculator textarea.error { border-color:#e99f9f; } #calculator input[type="text"].valid , #calculator input[type="email"].valid , #calculator input[type="number"].valid ,#calculator textarea.valid { border-color:#c0da66; } #reset_btn{ display: none; } #button_style_reset{ margin-top:20px; } .button_style{ background: none repeat scroll 0 0 #3498db; border: medium none !important; border-radius: 3px; box-shadow: 0 -3px rgba(0, 0, 0, 0.1) inset; color: #fff; display: inline-block; font-family: inherit; font-size: 12px; font-weight: 600; letter-spacing: 1px; opacity: 0.85; outline: medium none !important; padding: 10px 25px 12px; text-align: center; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25); text-transform: uppercase; transition: all 0.3s ease-in-out 0s; } .button_style:disabled{ opacity: 0.5 !important; } .error-number{ color:#e92222; /*position:absolute; top:0px; right: 0px;*/ display: none; } .pointer-cursort{ cursor: pointer; } .menu-btn-form a{ margin-right: 20px; } .height-content-form{ display: none; } .form-support{ display: none; } #description-m, #description-p{ display: none; } #text-justif-m, #text-justif-p{ display: none; } .select-block{ background: none repeat scroll 0 0 #1b66a9!important; } /* Accueil */ .actus { min-height: 305px; } .section-special { background-color: #08090a; } /* Rubrique partenaire */ .post-non-standard ul { list-style: circle!important; margin-left: 40px!important; margin-bottom: 30px!important; } .post-non-standard ol { list-style: decimal!important; margin-left: 40px!important; margin-bottom: 30px!important; } .portfolio ul { list-style: none!important; } .partner_box { padding: 5px 0px 2px 140px; text-align: left; } .feature_box .blandes-icon { height: auto!important; display: block; position: absolute; left: 0px; top: 0px; } .partenaires-tabs ul li { display: block!important; } @media screen and (max-width: 800px) { .partenaires-tabs ul li { display: inline-block!important; } .sidebar10{ max-height: 620px; } .section-with-sidebar .content-without-js { padding: 10px 0 20px; } #checkSidebar { Padding-bottom: 5px!important; } } .callout .button { float: right; margin-left: 20px; } #info-legal{ display: none; } #titlebar .readmore a { color: #ffffff!important; } .tp-caption.bg-subtitle-white a.readmore { color: #fff!important; border-bottom: 1px dotted #fff; font-style: italic; } .tp-caption.bg-subtitle-white a.readmore:hover { color: #ddd!important; } .tp-caption.bg-subtitle a.readmore { color: #333!important; border-bottom: 1px dotted #333; font-style: italic; } .tp-caption.bg-subtitle a.readmore:hover { color: #444!important; } .ombre, .ombre a { text-shadow: 0px 0px 12px black; } /* Rubrique produit */ .separateur { border-top: 1px solid #ececec; display: block; height: 20px; line-height: 10px; margin: 0; width: 100%; } #sidebar h4 { margin-bottom: 10px; } .produits-tabs ul { margin-left: 0px!important; border-bottom: 1px solid #ececec; border-top: 1px solid #ececec; } .produits-tabs ul li { background-color: transparent; display: inline-block; line-height: 1; margin-left: 0px; position: relative; } .produits-tabs ul li.active a { color: #3498db; font-weight: bold; } .produits-tabs ul li a { color: #999; padding: 12px 22px 12px 5px; display: block; } .produits-tabs ul li a:hover { color: #666; } .produits-tabs { padding-bottom: 30px; } .tab-pricing { background-color: #39393d!important; font-weight: bold; font-size: 14px; } #tab-pricing table, #tab-pricing td, #tab-pricing th { border: 1px solid #39393d!important; border-collapse: collapse; padding: 10px !important; text-align: center; vertical-align: middle; } #cw-pricing table { border: none!important; } @media screen and (max-width: 640px) { #tab-pricing td:before { background-color: #f5f5f5; border-right: 1px solid #39393d; content: attr(data-headers); display: table-cell; width: 60%; } /*Stick sur le coté*/ #stick-blue { padding: 5px !important; height: 35px !important; width: 50px !important; position:fixed !important; right:0 !important; top:50% !important; background: #3498db !important; z-index:9999 !important; text-align: center !important; overflow: hidden !important; color: white !important; } #stick-blue a { color: white !important; } #stick-blue i { font-size: 25px !important; } } .tr-exeption-pricing { background-color: #f2f2f2; color: #39393d; font-weight: 500; font-family: "museo_sans_500","Lucida Sans Unicode","Lucida Grande",sans-serif; font-size: 14px; } #tab-pricing thead th { background-color: #39393d; color: #FFFFFF; font-weight: 500; font-family: "museo_sans_500","Lucida Sans Unicode","Lucida Grande",sans-serif; font-size: 14px; } #info-legal{ display: none; } .margin-list{ margin-left: 5px; }
app/femr/ui/views/partials/helpers/outputBloodPressureOrNA.scala.html
emichaux/femr
@(systolic: java.lang.String, diastolic: java.lang.String) @if(systolic == null && diastolic == null) { N/A } else { @systolic / @diastolic }
dev-plugins/node64/lib/node_modules/npm/html/doc/help.html
Desarrollo-CeSPI/meran
<!-- Meran - MERAN UNLP is a ILS (Integrated Library System) wich provides Catalog, Circulation and User's Management. It's written in Perl, and uses Apache2 Web-Server, MySQL database and Sphinx 2 indexing. Copyright (C) 2009-2013 Grupo de desarrollo de Meran CeSPI-UNLP This file is part of Meran. Meran 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 3 of the License, or (at your option) any later version. Meran 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 Meran. If not, see <http://www.gnu.org/licenses/>. --> <!doctype html> <html> <title>help</title> <meta http-equiv="content-type" value="text/html;utf-8"> <link rel="stylesheet" type="text/css" href="./style.css"> <body> <div id="wrapper"> <h1><a href="../doc/help.html">help</a></h1> <p>Get help on npm</p> <h2 id="SYNOPSIS">SYNOPSIS</h2> <pre><code>npm help &lt;topic&gt; npm help some search terms</code></pre> <h2 id="DESCRIPTION">DESCRIPTION</h2> <p>If supplied a topic, then show the appropriate documentation page.</p> <p>If the topic does not exist, or if multiple terms are provided, then run the <code>help-search</code> command to find a match. Note that, if <code>help-search</code> finds a single subject, then it will run <code>help</code> on that topic, so unique matches are equivalent to specifying a topic name.</p> <h2 id="CONFIGURATION">CONFIGURATION</h2> <h3 id="viewer">viewer</h3> <ul><li>Default: "man" on Posix, "browser" on Windows</li><li>Type: path</li></ul> <p>The program to use to view help content.</p> <p>Set to <code>"browser"</code> to view html help content in the default web browser.</p> <h2 id="SEE-ALSO">SEE ALSO</h2> <ul><li><a href="../doc/npm.html">npm(1)</a></li><li><a href="../doc/README.html">README</a></li><li><a href="../doc/faq.html">faq(1)</a></li><li><a href="../doc/folders.html">folders(1)</a></li><li><a href="../doc/config.html">config(1)</a></li><li><a href="../doc/json.html">json(1)</a></li><li><a href="../doc/help-search.html">help-search(1)</a></li><li><a href="../doc/index.html">index(1)</a></li></ul> </div> <p id="footer">help &mdash; npm@1.1.16</p> <script> ;(function () { var wrapper = document.getElementById("wrapper") var els = Array.prototype.slice.call(wrapper.getElementsByTagName("*"), 0) .filter(function (el) { return el.parentNode === wrapper && el.tagName.match(/H[1-6]/) && el.id }) var l = 2 , toc = document.createElement("ul") toc.innerHTML = els.map(function (el) { var i = el.tagName.charAt(1) , out = "" while (i > l) { out += "<ul>" l ++ } while (i < l) { out += "</ul>" l -- } out += "<li><a href='#" + el.id + "'>" + ( el.innerText || el.text || el.innerHTML) + "</a>" return out }).join("\n") toc.id = "toc" document.body.appendChild(toc) })() </script> </body></html>
wekafiles/repCache/wavelet/index.html
brsaran/SCLAP
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>Waikato Environment for Knowledge Analysis (WEKA)</title> <!-- CSS Stylesheet --> <style>body { background: #ededed; color: #666666; font: 14px Tahoma, Helvetica, sans-serif;; margin: 5px 10px 5px 10px; padding: 0px; } </style> </head> <body bgcolor="#ededed" text="#666666"> <h2>wavelet: A filter for wavelet transformation.</h2> <table> <tr><td valign=top>URL:</td><td width=50></td><td><a href="http://weka.sourceforge.net/doc.packages/wavelet">http://weka.sourceforge.net/doc.packages/wavelet</a></td></tr> <tr><td valign=top>Author:</td><td width=50></td><td>Peter Reutemann</td></tr> <tr><td valign=top>Maintainer:</td><td width=50></td><td>Weka team &#60;wekalist{[at]}list.scms.waikato.ac.nz&#62;</td></tr> </table> <p> <p>A filter for wavelet transformation.<br/><br/>For more information see:<br/><br/>Wikipedia (2004). Discrete wavelet transform.<br/><br/>Kristian Sandberg (2000). The Haar wavelet transform. University of Colorado at Boulder, USA.</p> <p>All available versions:<br> <a href="Latest.html">Latest</a><br> <a href="1.0.1.html">1.0.1</a><br> <a href="1.0.0.html">1.0.0</a><br> </body> </html>
phpBB3/adm/style/simple_header.html
DaMysterious/portalxl50_premod
<!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" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}"> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <meta http-equiv="Content-Language" content="{S_USER_LANG}" /> <meta http-equiv="imagetoolbar" content="no" /> <!-- IF META -->{META}<!-- ENDIF --> <title>{PAGE_TITLE}</title> <link href="style/admin.css" rel="stylesheet" type="text/css" media="screen" /> <script type="text/javascript"> // <![CDATA[ var jump_page = '{LA_JUMP_PAGE}:'; var on_page = '{ON_PAGE}'; var per_page = '{PER_PAGE}'; var base_url = '{A_BASE_URL}'; /** * Window popup */ function popup(url, width, height, name) { if (!name) { name = '_popup'; } window.open(url.replace(/&amp;/g, '&'), name, 'height=' + height + ',resizable=yes,scrollbars=yes, width=' + width); return false; } /** * Jump to page */ function jumpto() { var page = prompt(jump_page, on_page); if (page !== null && !isNaN(page) && page == Math.floor(page) && page > 0) { if (base_url.indexOf('?') == -1) { document.location.href = base_url + '?start=' + ((page - 1) * per_page); } else { document.location.href = base_url.replace(/&amp;/g, '&') + '&start=' + ((page - 1) * per_page); } } } /** * Set display of page element * s[-1,0,1] = hide,toggle display,show */ function dE(n, s, type) { if (!type) { type = 'block'; } var e = document.getElementById(n); if (!s) { s = (e.style.display == '') ? -1 : 1; } e.style.display = (s == 1) ? type : 'none'; } /** * Mark/unmark checkboxes * id = ID of parent container, name = name prefix, state = state [true/false] */ function marklist(id, name, state) { var parent = document.getElementById(id); if (!parent) { return; } var rb = parent.getElementsByTagName('input'); for (var r = 0; r < rb.length; r++) { if (rb[r].name.substr(0, name.length) == name) { rb[r].checked = state; } } } /** * Find a member */ function find_username(url) { popup(url, 760, 570, '_usersearch'); return false; } // ]]> </script> </head> <body class="{S_CONTENT_DIRECTION}"> <div id="page-body" class="simple-page-body">
webroot/assets/css/style-responsive.css
aisner33/shop
/* BEGIN max width 1200px */ @media (max-width: 1200px) { .header .container > .navbar-collapse { clear: both; padding-left: 0; padding-top: 20px; padding-bottom: 10px; } .header .nav > li > a { padding-top: 5px; padding-bottom: 15px; } .header .nav > li > a:first-child { padding-left: 0; } .header .navbar-nav > li.active > a, .header .navbar-nav > li > a:hover, .header .navbar-nav > li > a:focus, .header .navbar-nav > li.open > a, .header .navbar-nav > li.open > a:hover, .header .navbar-nav > li.open > a:focus { background: none; } .header .nav li.menu-search { padding-top: 0; } .header .nav li.menu-search span.sep { top: 2px; margin-right: 26px; } .header .nav li.menu-search i { top: -4px; } .steps3-col:first-child em { margin-left: 5px; } .content-form-page .control-label { padding-left: 30px; padding-bottom: 5px; } .content-form-page .col-md-offset-4 { margin-left: 15px; } .content-form-page .pull-right { float: left !important; } } /* END max width 1200px */ /* BEGIN min width 992px */ @media (min-width: 992px) { .navbar-nav > li.dropdown:hover > .dropdown-menu{ display: block; } .navbar-nav .open .dropdown-menu { position: absolute; float: left; } .navbar-nav > li > a > .fa-angle-down { display: none; } } /* END min width 992px */ /* BEGIN max width 992px */ @media (max-width: 992px) { .navbar-toggle { display: block; margin-right: 0; } .navbar-header { float: none; } .cart-block { float: none; position: absolute; top: 0; right: 60px; } .header .container { position: relative; } .header .container > .navbar-collapse { height: 0 !important; overflow: hidden !important; margin-bottom: 15px; padding-top: 0; padding-bottom: 0; } .header .container > .navbar-collapse.in { height: auto !important; overflow: inherit !important; margin-left: 15px; margin-top: 20px; } .header { min-height: 83px; } .header .navbar-nav { margin: 0 -40px 0; padding: 15px 15px 0; background: #F9F9F9; font-size: 16px; float: none; } .header .nav li { border-bottom: 1px solid #ECECEC; float: none; display: block; } .header .nav li a { padding: 7px 8px 5px !important; color: #3E4D5C !important; } .header .nav li a:hover, .header .nav li a:focus, .header .nav li.active > a, .navbar-nav .open .dropdown-menu > li > a:hover { color: #E02222 !important; background: none !important; } .header .nav li .fa-angle-down { float: right; } .navbar-nav .open .dropdown-menu { position: static; float: none; background: inherit; border: none; box-shadow: none; margin: 0 0 0 20px; display: block !important; width: auto; } .header li.dropdown > .dropdown-menu:after { border: none; } .header .dropdown-menu .fa-angle-right { display: none; } .dropdown-menu[aria-labelledby="mega-menu"], .dropdown-menu[aria-labelledby="mega-menu-catalogue"] { float: none; width: auto; } .nav-content { padding: 0; } .nav-content-col { float: none; width: 100%; } .nav-content-col > h3 { font-size: 13px; margin: 0 } .header .nav-brands { margin: 0 0 15px; padding: 0; } .header .nav-brands ul { border: 1px solid #F0F0F0; } .header .nav-brands li { max-width: 50%; display: inline-block; } .dropdown-menu[aria-labelledby="mega-menu-catalogue"] { margin-left: 10px !important; } .nav-content .product-item { margin: 10px 20px 10px 0; } .nav-content .product-item:last-child { margin-right: 0; } .header .navbar-nav > li > a:focus, .header .navbar-nav > li.open > a:focus { color: #333 !important; } .header .nav li.menu-search { padding-bottom: 10px; padding-left: 10px; border: none; } .header .nav li.menu-search span.sep { display: none; } .header .nav li.menu-search i { top: 7px; } .header .search-box { right: auto; left: 0; top: 0; position: static; } .header .search-box:after { border: none; } .sidebar-menu a:focus { color: #333 !important; text-decoration: none; } .sale-product___removed { margin-bottom: 40px; } .new-arrivals___removed { margin-left: 15px; padding-left: 0; } .two-items-bottom-items { margin-bottom: 40px; } .carousel img { width: 100%; } .steps3 { padding-bottom: 10px; } .steps3-col { border: 2px solid #FFF; margin: 0 20px 20px 15px; padding: 20px 20px 15px; min-height: auto; float: left; } .steps3-col:last-child { margin-right: 0; } .steps3 .steps3-col div { margin-left: 0; } .steps3 h2 { font-size: 25px; } .steps3 em { text-transform: inherit; } .steps3-col span, .steps3-col .fa { display: none; } .steps3-col:first-child em { margin-left: 0; } .pre-footer-subscribe-box form { width: 100%; } .sidebar-products img { float: none; margin-bottom: 5px; width: 100%; height: auto; } .sidebar-products h3, .sidebar-products .price { margin-left: 0; } .product-page-options .pull-left { margin-bottom: 10px; } .product-quantity { margin-bottom: 10px; } /* if you want to hide buttons on mobile view, uncomment this block .pi-img-wrapper div { display: none !important; }*/ .review .rateit { width: 100%; margin-bottom: 10px; } .list-view-sorting .pull-right { margin-bottom: 10px; } } /* END max width 992px */ /* BEGIN max width 767px */ @media (max-width: 767px) { .pre-header .pull-right { float: left !important; } .pre-header .pull-right li:first-child { padding-left: 0; } .navbar-toggle { margin-right: 15px; } .header .container > .navbar-collapse.in { margin-left: 0; margin-right: 0; padding: 15px 15px 0; } .sidebar { margin-bottom: 40px; } .sidebar___removed { margin-bottom: 40px; } .sidebar-menu .fa-angle-right { display: inline-block; } .pre-footer .pull-right, .footer .pull-right { float: left !important; } .pre-footer .pull-right, .footer .pull-right { padding-top: 20px; } .footer .list-inline > li { padding-left: 0; margin-right: 5px; } .steps3-col { border: 2px solid #FFF; margin: 0 15px 20px; padding: 20px 20px 15px; min-height: auto; float: none; } .steps3-col:last-child { margin-right: 15px; } .steps3 .steps3-col div { margin-left: 0; } .steps3 h2 { font-size: 43px; } .steps3 em { text-transform: uppercase; } .steps3-col span { display: none; } .steps3-col .fa { display: block; } .form-info { border-left: none; padding-left: 0; padding-top: 30px; border-top: 1px solid #E4E6E8; margin-bottom: 0; } .sidebar-products .item { float: left; width: 48%; margin-bottom: 20px; padding: 0 10px 10px; } .sidebar-products img { width: 100%; height: auto; } .list-view-sorting { /*background: #fff;*/ margin-left: 0; margin-right: 0; padding-bottom: 10px; } .list-view-sorting .col-md-10 { padding-right: 0; } .product-other-images { margin-bottom: 40px; } .product-page-options .pull-left { margin-bottom: 0; } .product-item .img-responsive { width: 100%; } .pagination { float: left !important; padding-top: 10px; } .pagination > li { margin-left: 0; margin-right: 5px; } .pre-footer .margin-bottom-40 { margin-bottom: 0; } .ls-layer3 .ls-price strong { top: -15px; } } /* END max width 767px */ /* BEGIN max width 600px */ @media (max-width: 600px) { .ls-layer3 .ls-price strong { top: -5px; } } /* END max width 600px */ /* BEGIN max width 480px */ @media (max-width: 480px) { .pre-header .list-inline li { display: block; border: none; margin-bottom: 10px; padding: 0; } .pre-header .col-md-6 { float: left; } .pre-header .additional-nav { float: right; text-align: right; } .header { min-height: 125px; } .header .container > .navbar-collapse.in { margin-top: 40px; } .cart-block { top: 50px; left: 14px; right: auto; } .cart-content-wrapper { left: 0; right: auto; } .cart-content { width: 280px; } .cart-content:after { left: 15px; } .cart-block img, .cart-block .cart-content-count { display: none; } .ls-fullwidth .ls-nav-prev, .ls-fullwidth .ls-nav-next { display: none; } .checkout-content { padding: 0 0 40px; } .checkout-page h2 a { padding: 9px 10px 8px; } .table-wrapper-responsive { overflow-x: scroll; } .shopping-cart-page .btn-default { float: right; } .shopping-cart-page .btn-primary { clear: both; margin-top: 10px; } .checkout-page .btn-default { clear: both; margin-top: 10px; margin-right: 0 !important; } } /* END max width 480px */ /* BEGIN max width 320px */ @media (max-width: 320px) { .footer img { margin-bottom: 10px; } .content-form-page .btn-default { margin-top: 10px; } .price-availability-block .availability { clear: left; float: left; } .product-page-options .pull-left { margin-bottom: 10px; } } /* END max width 320px */
tests/wpt/web-platform-tests/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/same-origin-insecure.http.html
peterjoel/servo
<!DOCTYPE html> <!-- DO NOT EDIT! Generated by referrer-policy/generic/tools/generate.py using referrer-policy/generic/template/test.release.html.template. --> <html> <head> <title>Referrer-Policy: Referrer Policy is set to 'origin-when-cross-origin'</title> <meta name="description" content="Check that cross-origin subresources get the origin portion of the referrer URL and same-origin get the stripped referrer URL."> <link rel="author" title="Kristijan Burnik" href="burnik@chromium.org"> <link rel="help" href="https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-origin-when-cross-origin"> <meta name="assert" content="The referrer URL is stripped-referrer when a document served over http requires an http sub-resource via iframe-tag using the attr-referrer delivery method with no-redirect and when the target request is same-origin."> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/common/security-features/resources/common.js"></script> <script src="/referrer-policy/generic/referrer-policy-test-case.js?pipe=sub"></script> </head> <body> <script> ReferrerPolicyTestCase( { "referrer_policy": "origin-when-cross-origin", "delivery_method": "attr-referrer", "redirection": "no-redirect", "origin": "same-origin", "source_protocol": "http", "target_protocol": "http", "subresource": "iframe-tag", "referrer_url": "stripped-referrer" }, document.querySelector("meta[name=assert]").content, new SanityChecker() ).start(); </script> <div id="log"></div> </body> </html>
layout/base/crashtests/460389-1.html
Yukarumya/Yukarum-Redfoxes
<html> <head><style id="s">div:first-letter { float: left; }</style></head> <body onload="document.getElementById('s').disabled = true;"> <div style="-moz-column-count: 2;"> &#x06CD;<div>T</div></div> </body> </html>
bedrock/firefox/templates/firefox/features/fast.html
pascalchevrel/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-protocol.html" import split with context %} {% extends "firefox/base/base-protocol.html" %} {% block page_title %}{{ ftl('features-fast-get-more-done-browse-faster') }} | {{ ftl('brand-name-firefox') }}{% endblock %} {% block page_desc %}{{ ftl('features-fast-our-new-powerful-multi-process') }}{% endblock %} {% block page_css %} {{ css_bundle('protocol-split') }} {{ css_bundle('protocol-picto') }} {{ css_bundle('firefox-features-hub-detail') }} {% endblock %} {% block body_id %}firefox-features-fast{% endblock %} {% block sub_navigation %} {% include "firefox/features/includes/subnav.html" %} {% endblock %} {% block content %} <header class="c-hero"> <div class="mzp-l-content c-hero-content"> <img class="c-hero-icon" src="{{ static('protocol/img/icons/brand/orange/speedometer.svg')}}" alt=""> <h1 class="c-hero-title">{{ ftl('features-fast-firefox-is-now-faster-and-leaner') }}</h1> <p class="c-hero-desc">{{ ftl('features-fast-weve-been-working-out-so-you') }}</p> <div class="c-hero-cta"> {{ download_firefox(dom_id='features-header-download', download_location='primary cta') }} </div> </div> </header> {% call split( image_url='img/firefox/features/thumbnails/fast/low-memory.jpg', block_class='mzp-t-split-nospace', theme_class='mzp-l-split-reversed', ) %} <h2>{{ ftl('features-fast-use-less-memory') }}</h2> <p>{{ ftl('features-fast-no-one-likes-a-computer-hog') }}</p> {% endcall %} {% call split( image_url='img/firefox/features/thumbnails/fast/multi-tabs.jpg', block_class='mzp-t-split-nospace', ) %} <h2>{{ ftl('features-fast-get-all-the-tabs-without-lags') }}</h2> <p>{{ ftl('features-fast-multi-tasking-with-multiple') }}</p> {% endcall %} {% call split( image_url='img/firefox/features/thumbnails/fast/gaming.jpg', block_class='mzp-t-split-nospace', theme_class='mzp-l-split-reversed', ) %} <h2>{{ ftl('features-fast-level-up-browser-gameplay') }}</h2> <p>{{ ftl('features-fast-we-led-the-tech-to-run-3d-games') }}</p> {% endcall %} {% include "firefox/features/includes/features-content.html" %} {% endblock %} {% block sticky_promo %} {% with non_fx_only=True %} {% include '/includes/sticky-promo.html' %} {% endwith %} {% endblock %} {% block js %} {{ js_bundle('sticky_promo') }} {% endblock %}
tests/wpt/web-platform-tests/mixed-content/allowed/meta-csp/same-host-https/audio-tag/top-level/no-redirect/allowed.https.html
pgonda/servo
<!DOCTYPE html> <!-- DO NOT EDIT! Generated by mixed-content/generic/tools/generate.py using mixed-content/generic/template/test.debug.html.template. --> <html> <head> <title>Mixed-Content: Allowed content</title> <meta charset='utf-8'> <meta name="description" content="Test behavior of allowed content."> <meta name="assert" content="opt_in_method: meta-csp origin: same-host-https source_scheme: https context_nesting: top-level redirection: no-redirect subresource: audio-tag expectation: allowed"><meta http-equiv="Content-Security-Policy" content="block-all-mixed-content"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <!-- Common global functions for mixed-content tests. --> <script src="/mixed-content/generic/common.js"></script> <!-- The original specification JSON for validating the scenario. --> <script src="/mixed-content/spec_json.js"></script> <!-- Internal checking of the tests --> <script src="/mixed-content/generic/sanity-checker.js"></script> <!-- Simple wrapper API for all mixed-content test cases. --> <script src="/mixed-content/generic/mixed-content-test-case.js?pipe=sub"></script> </head> <body> <h1>Allowed content</h1> <h2>Test behavior of allowed content.</h2> <pre>opt_in_method: meta-csp origin: same-host-https source_scheme: https context_nesting: top-level redirection: no-redirect subresource: audio-tag expectation: allowed</pre> <p>See <a href="http://www.w3.org/TR/mixed-content/" target="_blank">specification</a> details for this test.</p> <div id="log"></div> <script> MixedContentTestCase( { "opt_in_method": "meta-csp", "origin": "same-host-https", "source_scheme": "https", "context_nesting": "top-level", "redirection": "no-redirect", "subresource": "audio-tag", "expectation": "allowed" }, document.querySelector("meta[name=assert]").content, new SanityChecker() ).start(); </script> </body> </html>
webapp/play1.3.x/samples-and-tests/just-test-cases/test/finally.test.html
deanhiller/databus
#{selenium 'Test the @Finally'} open('@{UsingFinally.a()}') assertTextPresent('Youhou') // Now the @Finally open('@{UsingFinally.b()}') assertTextNotPresent('Youhou') assertTextPresent('Yop') // Now the @Finally only param open('@{UsingFinally.onlytest('waxzce')}') assertTextNotPresent('onlynotwork') assertTextPresent('onlywork') //test @Finally with or without Throwable //without error open('@{UsingFinallyWithThrowable.noError()}') open('@{UsingFinallyWithThrowable.get_results()}') assertTextPresent('true true false true') //with error open('@{UsingFinallyWithThrowable.withError()}') open('@{UsingFinallyWithThrowable.get_results()}') assertTextPresent('true true true true') #{/selenium}
view/plugins/facturacion_base/view/base_wizard.html
arielopez/temporal
{include="header"} {if="$fsc->step==2"} <script type="text/javascript" src="{$fsc->get_js_location('provincias.js')}"></script> <form name="f_empresa" action="{$fsc->page->url()}" method="post" class="form" role="form"> <div class="container"> <div class="row"> <div class="col-sm-12"> <div class="page-header"> <h1>Datos de la empresa / Autónomo</h1> <p class="help-block"> Bienvenido al asiente de instalación de facturacion_base, el plugin de FacturaScripts que integra la facturación y contabilidad básica. </p> </div> </div> </div> <div class="row"> <div class="col-sm-5"> <div class="form-group"> Nombre: <input class="form-control" type="text" name="nombre" value="{$fsc->empresa->nombre}" autocomplete="off" autofocus /> </div> </div> <div class="col-sm-3"> <div class="form-group"> Nombre Corto: <input class="form-control" type="text" name="nombrecorto" value="{$fsc->empresa->nombrecorto}" autocomplete="off"/> <p class="help-block">Para mostrar en el menú.</p> </div> </div> <div class="col-sm-4"> <div class="form-group"> {#FS_CIFNIF#}: <input class="form-control" type="text" name="cifnif" value="{$fsc->empresa->cifnif}" autocomplete="off"/> <p class="help-block"> {#FS_CIFNIF#} es el identificador fiscal. Si en tu país se llama de otra forma, puedes traducirlo más adelante. </p> </div> </div> </div> <div class="row"> <div class="col-sm-3"> <div class="form-group"> <a href="{$fsc->pais->url()}">País</a>: <select name="codpais" class="form-control"> {loop="$fsc->pais->all()"} <option value="{$value->codpais}"{if="$fsc->empresa->codpais == $value->codpais"} selected=""{/if}>{$value->nombre}</option> {/loop} </select> </div> </div> <div class="col-sm-3"> <div class="form-group"> <div class="text-capitalize">{#FS_PROVINCIA#}:</div> <input id="ac_provincia" class="form-control" type="text" name="provincia" value="{$fsc->empresa->provincia}"/> </div> </div> <div class="col-sm-3"> <div class="form-group"> Ciudad: <input class="form-control" type="text" name="ciudad" value="{$fsc->empresa->ciudad}" autocomplete="off"/> </div> </div> <div class="col-sm-3"> <div class="form-group"> Código Postal: <input class="form-control" type="text" name="codpostal" value="{$fsc->empresa->codpostal}" autocomplete="off"/> </div> </div> </div> <div class="row"> <div class="col-sm-8"> <div class="form-group"> Dirección: <input class="form-control" type="text" name="direccion" value="{$fsc->empresa->direccion}" autocomplete="off"/> </div> </div> <div class="col-sm-4"> <div class="form-group"> Administrador de la empresa: <input class="form-control" type="text" name="administrador" value="{$fsc->empresa->administrador}" autocomplete="off"/> </div> </div> </div> <div class="row"> <div class="col-sm-4"> <div class="form-group"> Teléfono: <input class="form-control" type="text" name="telefono" value="{$fsc->empresa->telefono}" autocomplete="off"/> </div> </div> <div class="col-sm-4"> <div class="form-group"> Fax: <input class="form-control" type="text" name="fax" value="{$fsc->empresa->fax}" autocomplete="off"/> </div> </div> <div class="col-sm-4"> <div class="form-group"> Web: <input class="form-control" type="text" name="web" value="{$fsc->empresa->web}" autocomplete="off"/> </div> </div> </div> <div class="row"> <div class="col-sm-12 text-right"> <button class="btn btn-sm btn-primary" type="submit" onclick="this.disabled=true;this.form.submit();"> <span class="glyphicon glyphicon-ok"></span> &nbsp; Continuar </button> </div> </div> </div> </form> {elseif="$fsc->step==3"} <form name="f_empresa" action="{$fsc->page->url()}" method="post" class="form" role="form"> <div class="container"> <div class="row"> <div class="col-sm-12"> <div class="page-header"> <h1> <span class="glyphicon glyphicon-globe"></span> Datos regionales </h1> <p class="help-block"> Ahora hay que seleccionar la moneda y traducir lo que necesites </p> </div> </div> </div> <div class="row"> <div class="col-sm-3"> <div class="form-group"> <a href="{$fsc->divisa->url()}">Divisa</a>: <select name="coddivisa" class="form-control"> {loop="$fsc->divisa->all()"} <option value="{$value->coddivisa}"{if="$fsc->empresa->coddivisa == $value->coddivisa"} selected=""{/if}>{$value->descripcion}</option> {/loop} </select> </div> </div> <div class="col-sm-3"> <div class="form-group"> Decimales: <select name="nf0" class="form-control"> {loop="$fsc->nf0()"} <option value="{$value}"{if="$value==$GLOBALS['config2']['nf0']"} selected=""{/if}>{$value}</option> {/loop} </select> </div> </div> <div class="col-sm-3"> <div class="form-group"> Separador para los Decimales: <select name="nf1" class="form-control"> {loop="$fsc->nf1()"} <option value="{$key}"{if="$key==$GLOBALS['config2']['nf1']"} selected=""{/if}>{$value}</option> {/loop} </select> </div> </div> <div class="col-sm-3"> <div class="form-group"> Separador para los Millares: <select name="nf2" class="form-control"> <option value="">(Ninguno)</option> {loop="$fsc->nf1()"} <option value="{$key}"{if="$key==$GLOBALS['config2']['nf2']"} selected=""{/if}>{$value}</option> {/loop} </select> </div> </div> </div> <div class="row"> <div class="col-sm-4"> <div class="form-group"> Posición del símbolo divisa: <select name="pos_divisa" class="form-control"> <option value="right"{if="$GLOBALS['config2']['pos_divisa']=='right'"} selected=""{/if}>123 {$fsc->simbolo_divisa()}</option> <option value="left"{if="$GLOBALS['config2']['pos_divisa']=='left'"} selected=""{/if}>{$fsc->simbolo_divisa()}123</option> </select> </div> </div> </div> <div class="row"> <div class="col-sm-12"> <h2>Traducciones:</h2> <p class="help-block"> Puedes traducir ciertos términos para adaptarlos a tu país o simplemente por comodidad. </p> <p class="help-block"> FACTURA y FACTURAS se traducen únicamente en los documentos de ventas. FACTURA_SIMPLIFICADA se utiliza en los tickets. NUMERO2 es un campo disponible en todos los documentos de ventas y que puedes usar como quieras. </p> </div> </div> <div class="row"> {loop="$fsc->traducciones()"} <div class="col-sm-3"> <div class="form-group"> <span class="text-uppercase">{$value['nombre']}:</span> <input class="form-control" type="text" name="{$value['nombre']}" value="{$value['valor']}" autocomplete="off"/> </div> </div> {/loop} </div> <div class="row"> <div class="col-sm-12 text-right"> <button class="btn btn-sm btn-primary" type="submit" onclick="this.disabled=true;this.form.submit();"> <span class="glyphicon glyphicon-ok"></span> &nbsp; Continuar </button> </div> </div> </div> </form> {elseif="$fsc->step==4"} <form name="f_empresa" action="{$fsc->page->url()}" method="post" class="form" role="form"> <div class="container"> <div class="row"> <div class="col-sm-12"> <div class="page-header"> <h1>Datos de facturación</h1> </div> </div> </div> <div class="row"> <div class="col-sm-4"> <div class="form-group"> <a href="{$fsc->ejercicio->url()}">Ejercicio contable</a>: <select name="codejercicio" class="form-control" autofocus > {loop="$fsc->ejercicio->all()"} <option value="{$value->codejercicio}"{if="$fsc->empresa->codejercicio == $value->codejercicio"} selected=""{/if}>{$value->nombre}</option> {/loop} </select> <p class="help-block">Sólo sirve para inicializar algunos campos.</p> </div> </div> <div class="col-sm-4"> <div class="form-group"> <a href="{$fsc->serie->url()}">Serie de facturación</a>: <select name="codserie" class="form-control"> {loop="$fsc->serie->all()"} <option value="{$value->codserie}"{if="$fsc->empresa->codserie == $value->codserie"} selected=""{/if}>{$value->descripcion}</option> {/loop} </select> <p class="help-block">El {#FS_IRPF#} se define en la serie.</p> </div> </div> <div class="col-sm-4"> <div class="form-group"> Algoritmo de nuevo código: <select name="new_codigo" class="form-control"> <option value="eneboo"{if="$GLOBALS['config2']['new_codigo']=='eneboo'"} selected=''{/if}>Compatible con Eneboo</option> <option value="new"{if="$GLOBALS['config2']['new_codigo']=='new'"} selected=''{/if}>TIPO + EJERCICIO + SERIE + NÚMERO</option> </select> </div> </div> </div> <div class="row"> <div class="col-sm-4"> <div class="form-group"> <a href="{$fsc->forma_pago->url()}">Forma de pago predeterminada</a>: <select name="codpago" class="form-control"> {loop="$fsc->forma_pago->all()"} <option value="{$value->codpago}"{if="$fsc->empresa->codpago == $value->codpago"} selected=""{/if}>{$value->descripcion}</option> {/loop} </select> </div> </div> <div class="col-sm-4"> <div class="form-group"> <a href="{$fsc->almacen->url()}">Almacén principal</a>: <select name="codalmacen" class="form-control"> {loop="$fsc->almacen->all()"} <option value="{$value->codalmacen}"{if="$fsc->empresa->codalmacen == $value->codalmacen"} selected=""{/if}>{$value->nombre}</option> {/loop} </select> </div> </div> </div> <div class="row"> <div class="col-sm-12"> <div class="checkbox"> <label> <input type="checkbox" name="contintegrada" value="TRUE"{if="$fsc->empresa->contintegrada"} checked="checked"{/if}/> Contabilidad integrada: conforme haces facturas se generan los asientos contables. </label> </div> {if="$fsc->empresa->codpais=='ESP' or $fsc->empresa->codpais=='ES'"} <div class="checkbox"> <label> <input type="checkbox" name="recequivalencia" value="TRUE"{if="$fsc->empresa->recequivalencia"} checked="checked"{/if}/> Aplicar recargo de equivalencia a tus compras. </label> </div> {/if} </div> </div> <div class="row"> <div class="col-sm-12 text-right"> <button class="btn btn-sm btn-primary" type="submit" onclick="this.disabled=true;this.form.submit();"> <span class="glyphicon glyphicon-ok"></span> &nbsp; Continuar </button> </div> </div> </div> </form> {elseif="$fsc->step==5"} <div class="container"> {if="$fsc->empresa->codpais=='ESP' or $fsc->empresa->codpais=='ES'"} <div class="row"> <div class="col-sm-12"> <div class="page-header"> <h1> Fin <a href="{$fsc->url()}&restart=TRUE" class="btn btn-xs btn-warning" title="Volver a empezar"> <span class="glyphicon glyphicon-lock"></span> </a> </h1> <p class="help-block"> Ya has terminado la configuración del plugin. Si quieres hacer cambios en la configuración de la empresa, puedes ir a <b>Admin &gt; Empresa</b>. </p> </div> {if="$fsc->empresa->contintegrada"} <a href="index.php?page=contabilidad_ejercicio&cod={$fsc->empresa->codejercicio}" target="_blank" class="btn btn-sm btn-block btn-info"> <span class="glyphicon glyphicon-import"></span> &nbsp; importar los datos contables </a> <p class="help-block"> Ahora es el momento de importar el plan contable, si todavía no lo has hecho. </p> {/if} </div> </div> {else} <div class="row"> <div class="col-sm-12"> <div class="page-header"> <h1> Fin <a href="{$fsc->url()}&restart=TRUE" class="btn btn-xs btn-warning" title="Volver a empezar"> <span class="glyphicon glyphicon-lock"></span> </a> </h1> <p class="help-block"> Ahora es el momento de instalar el plugin específico para tu pais. </p> </div> </div> </div> <div class="row"> <div class="col-sm-4"> <a href="index.php?page=admin_home#descargas" class="btn btn-sm btn-block btn-default"> <span class="glyphicon glyphicon-download-alt"></span> &nbsp; Argentina </a> <br/> </div> <div class="col-sm-4"> <a href="index.php?page=admin_home#descargas" class="btn btn-sm btn-block btn-default"> <span class="glyphicon glyphicon-download-alt"></span> &nbsp; Colombia </a> <br/> </div> <div class="col-sm-4"> <a href="index.php?page=admin_home#descargas" class="btn btn-sm btn-block btn-default"> <span class="glyphicon glyphicon-download-alt"></span> &nbsp; Ecuador </a> <br/> </div> <div class="col-sm-4"> <a href="index.php?page=admin_home#descargas" class="btn btn-sm btn-block btn-default"> <span class="glyphicon glyphicon-download-alt"></span> &nbsp; Panamá </a> <br/> </div> <div class="col-sm-4"> <a href="index.php?page=admin_home#descargas" class="btn btn-sm btn-block btn-default"> <span class="glyphicon glyphicon-download-alt"></span> &nbsp; Perú </a> <br/> </div> </div> {/if} <div class="row"> <div class="col-sm-6"> <h3>El menú ventas</h3> <div class="embed-responsive embed-responsive-16by9"> <iframe width="420" height="315" src="https://www.youtube.com/embed/B7o9pfF4NYA" frameborder="0" allowfullscreen></iframe> </div> <p class="help-block"> Dispones de tu catálogo de artículos, con sus familias y fabricantes, el listado de clientes y las facturas y {#FS_ALBARANES#} de venta. </p> <h3>El menú compras</h3> <div class="embed-responsive embed-responsive-16by9"> <iframe width="420" height="315" src="https://www.youtube.com/embed/PbmhKDzANkM" frameborder="0" allowfullscreen></iframe> </div> <p class="help-block"> En este menú tienes el listado de proveedores y acreedores (lo acreedores son aquellos a los que les compras servicios, por ejemplo el proveedor de Internet), además de los listados de facturas y {#FS_ALBARANES#} de compra. </p> <p class="help-block"> <b>¿No lo necesitas?</b> Puedes desactivar todo lo que quieras desde la pestaña <b>menú</b> de Admin &gt; Panel de control. </p> </div> <div class="col-sm-6"> <h3> <span class="glyphicon glyphicon-transfer"></span> ¿Necesitas copiar datos de tu antiguo software? </h3> <p class="help-block"> Muchos programas permiten exportar datos a archivos CSV o Excel, si es el caso, puedes usar el plugin <a href="https://www.facturascripts.com/store/producto/plugin-importarexportar-csv/" target="_blank"> Importar/Exportar CSV </a> para copiar esos datos a FacturaScripts. </p> <hr/> <h3> <span class="glyphicon glyphicon-envelope"></span> ¿Quieres enviar emails desde FacturaScripts? </h3> <a href="index.php?page=admin_empresa#email" target="_blank" class="btn btn-xs btn-default"> <span class="glyphicon glyphicon-envelope"></span> &nbsp; Configuración de email </a> <hr/> <h3>¿Quieres cambiar el número de factura inicial?</h3> <p> Si ya tienes facturas en otro programa y quieres empezar por un número concreto de factura, puedes modificar la numeración desde <b>Contabilidad &gt; Series</b>. Activa la <b>numeración personalizada</b> y elige el número inicial. </p> </div> </div> </div> {/if} {include="footer"}
rules/rules-rgaa3.0/src/test/resources/testcases/rgaa30/Rgaa30Rule101301/Rgaa30.Test.10.13.1-3NMI-07.html
Asqatasun/Asqatasun
<!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" lang="en" xml:lang="en"> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> <title>Rgaa30 Test.10.13.1 NMI 07</title> <style type="text/css"> #hidden-text { display : none; } </style> </head> <body> <div> <h1>Rgaa30 Test.10.13.1 NMI 07</h1> <div class="test-detail" lang="fr"> Dans chaque page Web, chaque <a href="http://references.modernisation.gouv.fr/referentiel-technique-0#mTexteCache">texte caché</a> vérifie-t-il une de ces conditions ? <ul class="ssTests"> <li>Le texte n&apos;a pas vocation à être restitué par les technologies d&apos;assistance</li> <li>Le texte est rendu visible sur action de l&apos;utilisateur sur l&apos;élément lui-même ou un élément précédant le <a href="http://references.modernisation.gouv.fr/referentiel-technique-0#mTexteCache">texte caché</a></li> <li>Le texte caché fait partie d&apos;un composant d&apos;interface piloté par l&apos;API ARIA, prenant en charge l&apos;état affiché ou masqué du contenu.</li> </ul> </div> <div class="testcase"> <div id="hidden-text"> <div id="level2"> <span>Some hidden text</span> </div> </div> </div> <div class="test-explanation"> NMI : Some text is hidden by locale style applied to a parent. </div> </div> </body> </html>
data/image/W7-9.html
40423225/2017springcd_hw
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"></meta> <title>Three.js Solvespace Mesh</title> <script src="https://threejs.org/build/three.js"></script> <script src="https://hammerjs.github.io/dist/hammer.js"></script> <style type="text/css"> body { margin: 0; overflow: hidden; } </style> </head> <body> <script> </script> <script> window.devicePixelRatio = window.devicePixelRatio || 1; SolvespaceCamera = function(renderWidth, renderHeight, scale, up, right, offset) { THREE.Camera.call(this); this.type = 'SolvespaceCamera'; this.renderWidth = renderWidth; this.renderHeight = renderHeight; this.zoomScale = scale; /* Avoid namespace collision w/ THREE.Object.scale */ this.up = up; this.right = right; this.offset = offset; this.depthBias = 0; this.updateProjectionMatrix(); }; SolvespaceCamera.prototype = Object.create(THREE.Camera.prototype); SolvespaceCamera.prototype.constructor = SolvespaceCamera; SolvespaceCamera.prototype.updateProjectionMatrix = function() { var temp = new THREE.Matrix4(); var offset = new THREE.Matrix4().makeTranslation(this.offset.x, this.offset.y, this.offset.z); // Convert to right handed- do up cross right instead. var n = new THREE.Vector3().crossVectors(this.up, this.right); var rotate = new THREE.Matrix4().makeBasis(this.right, this.up, n); rotate.transpose(); /* FIXME: At some point we ended up using row-major. THREE.js wants column major. Scale/depth correct unaffected b/c diagonal matrices remain the same when transposed. makeTranslation also makes a column-major matrix. */ /* TODO: If we want perspective, we need an additional matrix here which will modify w for perspective divide. */ var scale = new THREE.Matrix4().makeScale(2 * this.zoomScale / this.renderWidth, 2 * this.zoomScale / this.renderHeight, this.zoomScale / 30000.0); temp.multiply(scale); temp.multiply(rotate); temp.multiply(offset); this.projectionMatrix.copy(temp); }; SolvespaceCamera.prototype.NormalizeProjectionVectors = function() { /* After rotating, up and right may no longer be orthogonal. However, their cross product will produce the correct rotated plane, and we can recover an orthogonal basis. */ var n = new THREE.Vector3().crossVectors(this.right, this.up); this.up = new THREE.Vector3().crossVectors(n, this.right); this.right.normalize(); this.up.normalize(); }; SolvespaceCamera.prototype.rotate = function(right, up) { var oldRight = new THREE.Vector3().copy(this.right).normalize(); var oldUp = new THREE.Vector3().copy(this.up).normalize(); this.up.applyAxisAngle(oldRight, up); this.right.applyAxisAngle(oldUp, right); this.NormalizeProjectionVectors(); } SolvespaceCamera.prototype.offsetProj = function(right, up) { var shift = new THREE.Vector3(right * this.right.x + up * this.up.x, right * this.right.y + up * this.up.y, right * this.right.z + up * this.up.z); this.offset.add(shift); } /* Calculate the offset in terms of up and right projection vectors that will preserve the world coordinates of the current mouse position after the zoom. */ SolvespaceCamera.prototype.zoomTo = function(x, y, delta) { // Get offset components in world coordinates, in terms of up/right. var projOffsetX = this.offset.dot(this.right); var projOffsetY = this.offset.dot(this.up); /* Remove offset before scaling so, that mouse position changes proportionally to the model and independent of current offset. */ var centerRightI = x/this.zoomScale - projOffsetX; var centerUpI = y/this.zoomScale - projOffsetY; var zoomFactor; /* Zoom 20% every 100 delta. */ if(delta < 0) { zoomFactor = (-delta * 0.002 + 1); } else if(delta > 0) { zoomFactor = (delta * (-1.0/600.0) + 1) } else { return; } this.zoomScale = this.zoomScale * zoomFactor; var centerRightF = x/this.zoomScale - projOffsetX; var centerUpF = y/this.zoomScale - projOffsetY; this.offset.addScaledVector(this.right, centerRightF - centerRightI); this.offset.addScaledVector(this.up, centerUpF - centerUpI); } SolvespaceControls = function(object, domElement) { var _this = this; this.object = object; this.domElement = ( domElement !== undefined ) ? domElement : document; var threePan = new Hammer.Pan({event : 'threepan', pointers : 3, enable : false}); var panAfterTap = new Hammer.Pan({event : 'panaftertap', enable : false}); this.touchControls = new Hammer.Manager(domElement, { recognizers: [ [Hammer.Pinch, { enable: true }], [Hammer.Pan], [Hammer.Tap], ] }); this.touchControls.add(threePan); this.touchControls.add(panAfterTap); var changeEvent = { type: 'change' }; var startEvent = { type: 'start' }; var endEvent = { type: 'end' }; var _changed = false; var _mouseMoved = false; //var _touchPoints = new Array(); var _offsetPrev = new THREE.Vector2(0, 0); var _offsetCur = new THREE.Vector2(0, 0); var _rotatePrev = new THREE.Vector2(0, 0); var _rotateCur = new THREE.Vector2(0, 0); // Used during touch events. var _rotateOrig = new THREE.Vector2(0, 0); var _offsetOrig = new THREE.Vector2(0, 0); var _prevScale = 1.0; this.handleEvent = function(event) { if (typeof this[event.type] == 'function') { this[event.type](event); } } function mousedown(event) { event.preventDefault(); event.stopPropagation(); switch (event.button) { case 0: _rotateCur.set(event.screenX/window.devicePixelRatio, event.screenY/window.devicePixelRatio); _rotatePrev.copy(_rotateCur); document.addEventListener('mousemove', mousemove, false); document.addEventListener('mouseup', mouseup, false); break; case 2: _offsetCur.set(event.screenX/window.devicePixelRatio, event.screenY/window.devicePixelRatio); _offsetPrev.copy(_offsetCur); document.addEventListener('mousemove', mousemove, false); document.addEventListener('mouseup', mouseup, false); break; default: break; } } function wheel( event ) { event.preventDefault(); /* FIXME: Width and height might not be supported universally, but can be calculated? */ var box = _this.domElement.getBoundingClientRect(); object.zoomTo(event.clientX - box.width/2 - box.left, -(event.clientY - box.height/2 - box.top), event.deltaY); _changed = true; } function mousemove(event) { switch (event.button) { case 0: _rotateCur.set(event.screenX/window.devicePixelRatio, event.screenY/window.devicePixelRatio); var diff = new THREE.Vector2().subVectors(_rotateCur, _rotatePrev) .multiplyScalar(1 / object.zoomScale); object.rotate(-0.3 * Math.PI / 180 * diff.x * object.zoomScale, -0.3 * Math.PI / 180 * diff.y * object.zoomScale); _changed = true; _rotatePrev.copy(_rotateCur); break; case 2: _mouseMoved = true; _offsetCur.set(event.screenX/window.devicePixelRatio, event.screenY/window.devicePixelRatio); var diff = new THREE.Vector2().subVectors(_offsetCur, _offsetPrev) .multiplyScalar(1 / object.zoomScale); object.offsetProj(diff.x, -diff.y); _changed = true; _offsetPrev.copy(_offsetCur) break; } } function mouseup(event) { /* TODO: Opera mouse gestures will intercept this event, making it possible to have multiple mousedown events consecutively without a corresponding mouseup (so multiple viewports can be rotated/panned simultaneously). Disable mouse gestures for now. */ event.preventDefault(); event.stopPropagation(); document.removeEventListener('mousemove', mousemove); document.removeEventListener('mouseup', mouseup); _this.dispatchEvent(endEvent); } function pan(event) { /* neWcur - prev does not necessarily equal (cur + diff) - prev. Floating point is not associative. */ touchDiff = new THREE.Vector2(event.deltaX, event.deltaY); _rotateCur.addVectors(_rotateOrig, touchDiff); incDiff = new THREE.Vector2().subVectors(_rotateCur, _rotatePrev) .multiplyScalar(1 / object.zoomScale); object.rotate(-0.3 * Math.PI / 180 * incDiff.x * object.zoomScale, -0.3 * Math.PI / 180 * incDiff.y * object.zoomScale); _changed = true; _rotatePrev.copy(_rotateCur); } function panstart(event) { /* TODO: Dynamically enable pan function? */ _rotateOrig.copy(_rotateCur); } function pinchstart(event) { _prevScale = event.scale; } function pinch(event) { /* FIXME: Width and height might not be supported universally, but can be calculated? */ var box = _this.domElement.getBoundingClientRect(); /* 16.6... pixels chosen heuristically... matches my touchpad. */ if (event.scale < _prevScale) { object.zoomTo(event.center.x - box.width/2 - box.left, -(event.center.y - box.height/2 - box.top), 100/6.0); _changed = true; } else if (event.scale > _prevScale) { object.zoomTo(event.center.x - box.width/2 - box.left, -(event.center.y - box.height/2 - box.top), -100/6.0); _changed = true; } _prevScale = event.scale; } /* A tap will enable panning/disable rotate. */ function tap(event) { panAfterTap.set({enable : true}); _this.touchControls.get('pan').set({enable : false}); } function panaftertap(event) { touchDiff = new THREE.Vector2(event.deltaX, event.deltaY); _offsetCur.addVectors(_offsetOrig, touchDiff); incDiff = new THREE.Vector2().subVectors(_offsetCur, _offsetPrev) .multiplyScalar(1 / object.zoomScale); object.offsetProj(incDiff.x, -incDiff.y); _changed = true; _offsetPrev.copy(_offsetCur); } function panaftertapstart(event) { _offsetOrig.copy(_offsetCur); } function panaftertapend(event) { panAfterTap.set({enable : false}); _this.touchControls.get('pan').set({enable : true}); } function contextmenu(event) { event.preventDefault(); } this.update = function() { if (_changed) { _this.dispatchEvent(changeEvent); _changed = false; } } this.domElement.addEventListener('mousedown', mousedown, false); this.domElement.addEventListener('wheel', wheel, false); this.domElement.addEventListener('contextmenu', contextmenu, false); /* Hammer.on wraps addEventListener */ // Rotate this.touchControls.on('pan', pan); this.touchControls.on('panstart', panstart); // Zoom this.touchControls.on('pinch', pinch); this.touchControls.on('pinchstart', pinchstart); //Pan this.touchControls.on('tap', tap); this.touchControls.on('panaftertapstart', panaftertapstart); this.touchControls.on('panaftertap', panaftertap); this.touchControls.on('panaftertapend', panaftertapend); } SolvespaceControls.prototype = Object.create(THREE.EventDispatcher.prototype); SolvespaceControls.prototype.constructor = SolvespaceControls; solvespace = function(obj, params) { var scene, edgeScene, camera, edgeCamera, renderer; var geometry, controls, material, mesh, edges; var width, height; var directionalLightArray = []; if (typeof params === "undefined" || !("width" in params)) { width = window.innerWidth; } else { width = params.width; } if (typeof params === "undefined" || !("height" in params)) { height = window.innerHeight; } else { height = params.height; } width *= window.devicePixelRatio; height *= window.devicePixelRatio; domElement = init(); render(); return domElement; function init() { scene = new THREE.Scene(); edgeScene = new THREE.Scene(); camera = new SolvespaceCamera(width/window.devicePixelRatio, height/window.devicePixelRatio, 5, new THREE.Vector3(0, 1, 0), new THREE.Vector3(1, 0, 0), new THREE.Vector3(0, 0, 0)); mesh = createMesh(obj); scene.add(mesh); edges = createEdges(obj); edgeScene.add(edges); for (var i = 0; i < obj.lights.d.length; i++) { var lightColor = new THREE.Color(obj.lights.d[i].intensity, obj.lights.d[i].intensity, obj.lights.d[i].intensity); var directionalLight = new THREE.DirectionalLight(lightColor, 1); directionalLight.position.set(obj.lights.d[i].direction[0], obj.lights.d[i].direction[1], obj.lights.d[i].direction[2]); directionalLightArray.push(directionalLight); scene.add(directionalLight); } var lightColor = new THREE.Color(obj.lights.a, obj.lights.a, obj.lights.a); var ambientLight = new THREE.AmbientLight(lightColor.getHex()); scene.add(ambientLight); renderer = new THREE.WebGLRenderer({ antialias: true}); renderer.setSize(width, height); renderer.autoClear = false; renderer.domElement.style = "width:"+width/window.devicePixelRatio+"px;height:"+height/window.devicePixelRatio+"px;"; controls = new SolvespaceControls(camera, renderer.domElement); controls.addEventListener("change", render); controls.addEventListener("change", lightUpdate); animate(); return renderer.domElement; } function animate() { requestAnimationFrame(animate); controls.update(); } function render() { var context = renderer.getContext(); camera.updateProjectionMatrix(); renderer.clear(); context.depthRange(0.1, 1); renderer.render(scene, camera); context.depthRange(0.1-(2/60000.0), 1-(2/60000.0)); renderer.render(edgeScene, camera); } function lightUpdate() { var changeBasis = new THREE.Matrix4(); // The original light positions were in camera space. // Project them into standard space using camera's basis // vectors (up, target, and their cross product). n = new THREE.Vector3().crossVectors(camera.up, camera.right); changeBasis.makeBasis(camera.right, camera.up, n); for (var i = 0; i < 2; i++) { var newLightPos = changeBasis.applyToVector3Array( [obj.lights.d[i].direction[0], obj.lights.d[i].direction[1], obj.lights.d[i].direction[2]]); directionalLightArray[i].position.set(newLightPos[0], newLightPos[1], newLightPos[2]); } } function createMesh(meshObj) { var geometry = new THREE.Geometry(); var materialIndex = 0; var materialList = []; var opacitiesSeen = {}; for (var i = 0; i < meshObj.points.length; i++) { geometry.vertices.push(new THREE.Vector3(meshObj.points[i][0], meshObj.points[i][1], meshObj.points[i][2])); } for (var i = 0; i < meshObj.faces.length; i++) { var currOpacity = ((meshObj.colors[i] & 0xFF000000) >>> 24) / 255.0; if (opacitiesSeen[currOpacity] === undefined) { opacitiesSeen[currOpacity] = materialIndex; materialIndex++; materialList.push(new THREE.MeshLambertMaterial({ vertexColors: THREE.FaceColors, opacity: currOpacity, transparent: true, side: THREE.DoubleSide })); } geometry.faces.push(new THREE.Face3(meshObj.faces[i][0], meshObj.faces[i][1], meshObj.faces[i][2], [new THREE.Vector3(meshObj.normals[i][0][0], meshObj.normals[i][0][1], meshObj.normals[i][0][2]), new THREE.Vector3(meshObj.normals[i][1][0], meshObj.normals[i][1][1], meshObj.normals[i][1][2]), new THREE.Vector3(meshObj.normals[i][2][0], meshObj.normals[i][2][1], meshObj.normals[i][2][2])], new THREE.Color(meshObj.colors[i] & 0x00FFFFFF), opacitiesSeen[currOpacity])); } geometry.computeBoundingSphere(); return new THREE.Mesh(geometry, new THREE.MultiMaterial(materialList)); } function createEdges(meshObj) { var geometry = new THREE.Geometry(); var material = new THREE.LineBasicMaterial(); for (var i = 0; i < meshObj.edges.length; i++) { geometry.vertices.push(new THREE.Vector3(meshObj.edges[i][0][0], meshObj.edges[i][0][1], meshObj.edges[i][0][2]), new THREE.Vector3(meshObj.edges[i][1][0], meshObj.edges[i][1][1], meshObj.edges[i][1][2])); } geometry.computeBoundingSphere(); return new THREE.LineSegments(geometry, material); } }; var solvespace_model_W___ = { bounds: { x: 4.800000, y: 4.800000, near: 1.000000, far: 22.000000, z: 11.000000, edgeBias: 0.044000 }, lights: { d: [ { intensity: 1.000000, direction: [-1.000000, 1.000000, 0.000000] }, { intensity: 0.500000, direction: [1.000000, 0.000000, 0.000000] }, ], a: 0.300000 }, points: [ [-0.883427, 2.231492, 5.000000], [-1.697056, 1.697056, 5.000000], [0.000000, 2.400000, 5.000000], [0.883427, 2.231492, 5.000000], [-2.231492, 0.883427, 5.000000], [1.697056, 1.697056, 5.000000], [-2.400000, 0.000000, 5.000000], [2.231492, 0.883427, 5.000000], [-2.231492, -0.883427, 5.000000], [2.400000, -0.000000, 5.000000], [-1.697056, -1.697056, 5.000000], [2.231492, -0.883427, 5.000000], [-0.883427, -2.231492, 5.000000], [1.697056, -1.697056, 5.000000], [-0.000000, -2.400000, 5.000000], [0.883427, -2.231492, 5.000000], [-2.231492, 0.883427, -5.000000], [-1.697056, 1.697056, -5.000000], [-2.400000, 0.000000, -5.000000], [-2.231492, -0.883427, -5.000000], [-0.883427, 2.231492, -5.000000], [-1.697056, -1.697056, -5.000000], [0.000000, 2.400000, -5.000000], [-0.883427, -2.231492, -5.000000], [0.883427, 2.231492, -5.000000], [-0.000000, -2.400000, -5.000000], [1.697056, 1.697056, -5.000000], [0.883427, -2.231492, -5.000000], [2.231492, 0.883427, -5.000000], [1.697056, -1.697056, -5.000000], [2.400000, -0.000000, -5.000000], [2.231492, -0.883427, -5.000000], ], faces: [ [0, 1, 2], [2, 1, 3], [1, 4, 3], [3, 4, 5], [4, 6, 5], [5, 6, 7], [6, 8, 7], [7, 8, 9], [8, 10, 9], [9, 10, 11], [10, 12, 11], [11, 12, 13], [12, 14, 13], [13, 14, 15], [16, 17, 18], [18, 17, 19], [17, 20, 19], [19, 20, 21], [20, 22, 21], [21, 22, 23], [22, 24, 23], [23, 24, 25], [24, 26, 25], [25, 26, 27], [26, 28, 27], [27, 28, 29], [28, 30, 29], [29, 30, 31], [9, 11, 30], [30, 11, 31], [25, 27, 14], [14, 27, 15], [11, 13, 31], [31, 13, 29], [13, 15, 29], [29, 15, 27], [14, 12, 25], [25, 12, 23], [18, 19, 6], [6, 19, 8], [12, 10, 23], [23, 10, 21], [10, 8, 21], [21, 8, 19], [6, 4, 18], [18, 4, 16], [22, 20, 2], [2, 20, 0], [4, 1, 16], [16, 1, 17], [1, 0, 17], [17, 0, 20], [2, 3, 22], [22, 3, 24], [30, 28, 9], [9, 28, 7], [3, 5, 24], [24, 5, 26], [5, 7, 26], [26, 7, 28], ], normals: [ [[-0.000000, 0.000000, 23.040000], [0.000000, -0.000000, 23.040000], [0.000000, -0.000000, 23.040000]], [[0.000000, -0.000000, 23.040000], [0.000000, -0.000000, 23.040000], [-0.000000, 0.000000, 23.040000]], [[0.000000, -0.000000, 23.040000], [-0.000000, 0.000000, 23.040000], [-0.000000, 0.000000, 23.040000]], [[-0.000000, 0.000000, 23.040000], [-0.000000, 0.000000, 23.040000], [-0.000000, 0.000000, 23.040000]], [[-0.000000, 0.000000, 23.040000], [-0.000000, 0.000000, 23.040000], [-0.000000, 0.000000, 23.040000]], [[-0.000000, 0.000000, 23.040000], [-0.000000, 0.000000, 23.040000], [-0.000000, 0.000000, 23.040000]], [[-0.000000, 0.000000, 23.040000], [-0.000000, 0.000000, 23.040000], [-0.000000, 0.000000, 23.040000]], [[-0.000000, 0.000000, 23.040000], [-0.000000, 0.000000, 23.040000], [-0.000000, 0.000000, 23.040000]], [[-0.000000, 0.000000, 23.040000], [-0.000000, 0.000000, 23.040000], [-0.000000, 0.000000, 23.040000]], [[-0.000000, 0.000000, 23.040000], [-0.000000, 0.000000, 23.040000], [-0.000000, 0.000000, 23.040000]], [[-0.000000, 0.000000, 23.040000], [-0.000000, 0.000000, 23.040000], [-0.000000, 0.000000, 23.040000]], [[-0.000000, 0.000000, 23.040000], [-0.000000, 0.000000, 23.040000], [-0.000000, 0.000000, 23.040000]], [[-0.000000, 0.000000, 23.040000], [-0.000000, 0.000000, 23.040000], [-0.000000, 0.000000, 23.040000]], [[-0.000000, 0.000000, 23.040000], [-0.000000, 0.000000, 23.040000], [-0.000000, 0.000000, 23.040000]], [[-0.000000, -0.000000, -23.040000], [-0.000000, -0.000000, -23.040000], [-0.000000, -0.000000, -23.040000]], [[-0.000000, -0.000000, -23.040000], [-0.000000, -0.000000, -23.040000], [-0.000000, -0.000000, -23.040000]], [[-0.000000, -0.000000, -23.040000], [-0.000000, -0.000000, -23.040000], [-0.000000, -0.000000, -23.040000]], [[-0.000000, -0.000000, -23.040000], [-0.000000, -0.000000, -23.040000], [-0.000000, -0.000000, -23.040000]], [[-0.000000, -0.000000, -23.040000], [-0.000000, -0.000000, -23.040000], [-0.000000, -0.000000, -23.040000]], [[-0.000000, -0.000000, -23.040000], [-0.000000, -0.000000, -23.040000], [-0.000000, -0.000000, -23.040000]], [[-0.000000, -0.000000, -23.040000], [-0.000000, -0.000000, -23.040000], [-0.000000, -0.000000, -23.040000]], [[-0.000000, -0.000000, -23.040000], [-0.000000, -0.000000, -23.040000], [-0.000000, -0.000000, -23.040000]], [[-0.000000, -0.000000, -23.040000], [-0.000000, -0.000000, -23.040000], [-0.000000, -0.000000, -23.040000]], [[-0.000000, -0.000000, -23.040000], [-0.000000, -0.000000, -23.040000], [-0.000000, -0.000000, -23.040000]], [[-0.000000, -0.000000, -23.040000], [0.000000, 0.000000, -23.040000], [-0.000000, -0.000000, -23.040000]], [[-0.000000, -0.000000, -23.040000], [0.000000, 0.000000, -23.040000], [-0.000000, -0.000000, -23.040000]], [[0.000000, 0.000000, -23.040000], [0.000000, 0.000000, -23.040000], [-0.000000, -0.000000, -23.040000]], [[-0.000000, -0.000000, -23.040000], [0.000000, 0.000000, -23.040000], [-0.000000, -0.000000, -23.040000]], [[33.941125, -0.000000, 0.000000], [35.451922, -14.035093, 0.000000], [33.941125, -0.000000, 0.000000]], [[33.941125, -0.000000, 0.000000], [35.451922, -14.035093, 0.000000], [35.451922, -14.035093, 0.000000]], [[-0.000000, -33.941125, -0.000000], [14.035093, -35.451922, 0.000000], [-0.000000, -33.941125, -0.000000]], [[-0.000000, -33.941125, -0.000000], [14.035093, -35.451922, 0.000000], [14.035093, -35.451922, 0.000000]], [[35.451922, -14.035093, 0.000000], [28.117749, -28.117749, 0.000000], [35.451922, -14.035093, 0.000000]], [[35.451922, -14.035093, 0.000000], [28.117749, -28.117749, 0.000000], [28.117749, -28.117749, 0.000000]], [[28.117749, -28.117749, 0.000000], [14.035093, -35.451922, 0.000000], [28.117749, -28.117749, 0.000000]], [[28.117749, -28.117749, 0.000000], [14.035093, -35.451922, 0.000000], [14.035093, -35.451922, 0.000000]], [[-0.000000, -33.941125, -0.000000], [-14.035093, -35.451922, -0.000000], [-0.000000, -33.941125, -0.000000]], [[-0.000000, -33.941125, -0.000000], [-14.035093, -35.451922, -0.000000], [-14.035093, -35.451922, -0.000000]], [[-33.941125, 0.000000, 0.000000], [-35.451922, -14.035093, -0.000000], [-33.941125, 0.000000, 0.000000]], [[-33.941125, 0.000000, 0.000000], [-35.451922, -14.035093, -0.000000], [-35.451922, -14.035093, -0.000000]], [[-14.035093, -35.451922, -0.000000], [-28.117749, -28.117749, -0.000000], [-14.035093, -35.451922, -0.000000]], [[-14.035093, -35.451922, -0.000000], [-28.117749, -28.117749, -0.000000], [-28.117749, -28.117749, -0.000000]], [[-28.117749, -28.117749, -0.000000], [-35.451922, -14.035093, -0.000000], [-28.117749, -28.117749, -0.000000]], [[-28.117749, -28.117749, -0.000000], [-35.451922, -14.035093, -0.000000], [-35.451922, -14.035093, -0.000000]], [[-33.941125, 0.000000, 0.000000], [-35.451922, 14.035093, 0.000000], [-33.941125, 0.000000, 0.000000]], [[-33.941125, 0.000000, 0.000000], [-35.451922, 14.035093, 0.000000], [-35.451922, 14.035093, 0.000000]], [[-0.000000, 33.941125, 0.000000], [-14.035093, 35.451922, 0.000000], [-0.000000, 33.941125, 0.000000]], [[-0.000000, 33.941125, 0.000000], [-14.035093, 35.451922, 0.000000], [-14.035093, 35.451922, 0.000000]], [[-35.451922, 14.035093, 0.000000], [-28.117749, 28.117749, 0.000000], [-35.451922, 14.035093, 0.000000]], [[-35.451922, 14.035093, 0.000000], [-28.117749, 28.117749, 0.000000], [-28.117749, 28.117749, 0.000000]], [[-28.117749, 28.117749, 0.000000], [-14.035093, 35.451922, 0.000000], [-28.117749, 28.117749, 0.000000]], [[-28.117749, 28.117749, 0.000000], [-14.035093, 35.451922, 0.000000], [-14.035093, 35.451922, 0.000000]], [[0.000000, 33.941125, 0.000000], [14.035093, 35.451922, 0.000000], [0.000000, 33.941125, 0.000000]], [[0.000000, 33.941125, 0.000000], [14.035093, 35.451922, 0.000000], [14.035093, 35.451922, 0.000000]], [[33.941125, 0.000000, 0.000000], [35.451922, 14.035093, 0.000000], [33.941125, 0.000000, 0.000000]], [[33.941125, 0.000000, 0.000000], [35.451922, 14.035093, 0.000000], [35.451922, 14.035093, 0.000000]], [[14.035093, 35.451922, 0.000000], [28.117749, 28.117749, 0.000000], [14.035093, 35.451922, 0.000000]], [[14.035093, 35.451922, 0.000000], [28.117749, 28.117749, 0.000000], [28.117749, 28.117749, 0.000000]], [[28.117749, 28.117749, 0.000000], [35.451922, 14.035093, 0.000000], [28.117749, 28.117749, 0.000000]], [[28.117749, 28.117749, 0.000000], [35.451922, 14.035093, 0.000000], [35.451922, 14.035093, 0.000000]], ], colors: [ 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, 0xff1e1e1e, ], edges: [ [[1.697056, 1.697056, 5.000000], [0.883427, 2.231492, 5.000000]], [[-1.697056, 1.697056, 5.000000], [-2.231492, 0.883427, 5.000000]], [[1.697056, 1.697056, -5.000000], [0.883427, 2.231492, -5.000000]], [[0.883427, 2.231492, -5.000000], [0.000000, 2.400000, -5.000000]], [[0.883427, 2.231492, 5.000000], [0.000000, 2.400000, 5.000000]], [[0.000000, 2.400000, -5.000000], [-0.883427, 2.231492, -5.000000]], [[-0.883427, 2.231492, 5.000000], [0.000000, 2.400000, 5.000000]], [[-0.883427, 2.231492, 5.000000], [-1.697056, 1.697056, 5.000000]], [[1.697056, 1.697056, 5.000000], [2.231492, 0.883427, 5.000000]], [[2.231492, 0.883427, -5.000000], [1.697056, 1.697056, -5.000000]], [[-2.231492, 0.883427, 5.000000], [-2.400000, 0.000000, 5.000000]], [[2.400000, 0.000000, -5.000000], [2.231492, 0.883427, -5.000000]], [[2.231492, 0.883427, 5.000000], [2.400000, 0.000000, 5.000000]], [[-2.400000, 0.000000, 5.000000], [-2.231492, -0.883427, 5.000000]], [[2.231492, -0.883427, 5.000000], [2.400000, -0.000000, 5.000000]], [[2.231492, -0.883427, -5.000000], [2.400000, -0.000000, -5.000000]], [[-2.231492, -0.883427, 5.000000], [-1.697056, -1.697056, 5.000000]], [[1.697056, -1.697056, -5.000000], [0.883427, -2.231492, -5.000000]], [[2.231492, -0.883427, -5.000000], [1.697056, -1.697056, -5.000000]], [[0.883427, -2.231492, -5.000000], [-0.000000, -2.400000, -5.000000]], [[-0.000000, -2.400000, -5.000000], [-0.883427, -2.231492, -5.000000]], [[-0.883427, -2.231492, -5.000000], [-1.697056, -1.697056, -5.000000]], [[-1.697056, 1.697056, -5.000000], [-2.231492, 0.883427, -5.000000]], [[-0.883427, 2.231492, -5.000000], [-1.697056, 1.697056, -5.000000]], [[-2.231492, 0.883427, -5.000000], [-2.400000, 0.000000, -5.000000]], [[-2.400000, 0.000000, -5.000000], [-2.231492, -0.883427, -5.000000]], [[-1.697056, -1.697056, -5.000000], [-2.231492, -0.883427, -5.000000]], [[1.697056, -1.697056, 5.000000], [2.231492, -0.883427, 5.000000]], [[-1.697056, -1.697056, 5.000000], [-0.883427, -2.231492, 5.000000]], [[-0.883427, -2.231492, 5.000000], [-0.000000, -2.400000, 5.000000]], [[-0.000000, -2.400000, 5.000000], [0.883427, -2.231492, 5.000000]], [[0.883427, -2.231492, 5.000000], [1.697056, -1.697056, 5.000000]], ] }; document.body.appendChild(solvespace(solvespace_model_W___)); </script> </body> </html>
web/media/CodeMirror-0.94/compress.html
rossjones/ScraperWikiX
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>CodeMirror: Compression Helper</title> <link rel="stylesheet" type="text/css" href="css/docs.css"/> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <style type="text/css"> </style> </head> <body> <h1><span class="logo-braces">{ }</span> <a href="http://codemirror.net/">CodeMirror</a></h1> <pre class="grey"> <img src="css/baboon.png" class="logo" alt="logo"/>/* Script compression helper */ </pre> <p>The CodeMirror scripts, as distributed, are many, and full of comments. To optimize page loading, it is recommended to concatenate the scripts loaded in the CodeMirror frame, and compress them. This page may be useful if you intend to do this: it provides an interface to two different minifiers, <a href="http://github.com/mishoo/UglifyJS/">UglifyJS</a> and Google's <a href="http://closure-compiler.appspot.com/">Closure compiler</a>, allowing you to easily feed them CodeMirror scripts.</p> <p>You will have to compress <code>codemirror.js</code> separately, since that will be loaded into the top-level page from which you use CodeMirror. Inside the frame, the <code>parserfile</code> and <code>basefiles</code> options control which files are loaded. If you combine the parser(s) you need with the basefiles, you can set <code>basefiles</code> to point at your compressed file, and leave <code>parserfiles</code> at <code>[]</code>.</p> <p>For example, you have a page that uses CodeMirror to edit some JavaScript code. You could save a minimized version of <code>codemirror.js</code> as <code>codemirror_min.js</code>, and include that (with a <code>&lt;script></code> tag) in your page. Next, you compress all the files under "In-frame base code", plus <code>tokenizejavascript.js</code> and <code>parsejavascript.js</code> into <code>codemirror_base.js</code>, and load the editor like this:</p> <pre class="code">CodeMirror.fromTextArea("mytextarea", { basefiles: ["js/codemirror_base.js"], lineNumbers: true });</pre> <p>Clicking the "Compress with UglifyJS" button will download the compressed file. If you use Closure, that doesn't support direct downloads, so the button will take you to a file containing the compressed code. Copy-paste this into your script file. ("Save as" for that page is broken on some browsers, so be careful).</p> <form id="form" action="http://marijnhaverbeke.nl/uglifyjs" method="post"> <input type="hidden" id="download" name="download" value=""/> <p>Version: <select id="version" onchange="setVersion(this);" class="field" style="padding: 1px"> <option value="http://codemirror.net/" selected>Development head</option> <option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v0.94;f=">v0.94</option> <option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v0.93;f=">v0.93</option> <option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v0.92;f=">v0.92</option> <option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v0.91;f=">v0.91</option> <option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v0.9;f=">v0.9</option> <option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v0.8;f=">v0.8</option> <option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v0.7;f=">v0.7</option> <option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v0.67;f=">v0.67</option> </select></p> <p><input type="hidden" value="compiled_code" name="output_info" id="output"/> <select multiple="multiple" name="code_url" style="width: 40em;" class="field" id="files"> <optgroup label="CodeMirror Library"> <option value="http://codemirror.net/js/codemirror.js">codemirror.js</option> </optgroup> <optgroup label="In-frame base files"> <option value="http://codemirror.net/js/util.js">util.js</option> <option value="http://codemirror.net/js/stringstream.js">stringstream.js</option> <option value="http://codemirror.net/js/select.js">select.js</option> <option value="http://codemirror.net/js/undo.js">undo.js</option> <option value="http://codemirror.net/js/editor.js">editor.js</option> <option value="http://codemirror.net/js/tokenize.js">tokenize.js</option> </optgroup> <optgroup label="Parsers"> <option value="http://codemirror.net/js/tokenizejavascript.js">tokenizejavascript.js</option> <option value="http://codemirror.net/js/parsejavascript.js">parsejavascript.js</option> <option value="http://codemirror.net/js/parsexml.js">parsexml.js</option> <option value="http://codemirror.net/js/parsecss.js">parsecss.js</option> <option value="http://codemirror.net/js/parsesparql.js">parsesparql.js</option> <option value="http://codemirror.net/js/parsehtmlmixed.js">parsehtmlmixed.js</option> <option value="http://codemirror.net/js/parsedummy.js">parsedummy.js</option> </optgroup> <optgroup label="Contributed parsers"> <option value="http://codemirror.net/contrib/lua/js/parselua.js">parselua.js</option> <option value="http://codemirror.net/contrib/python/js/parsepython.js">parsepython.js</option> <option value="http://codemirror.net/contrib/php/js/tokenizephp.js">tokenizephp.js</option> <option value="http://codemirror.net/contrib/php/js/parsephp.js">parsephp.js</option> <option value="http://codemirror.net/contrib/php/js/parsephphtmlmixed.js">parsephphtmlmixed.js</option> <option value="http://codemirror.net/contrib/csharp/js/tokenizecsharp.js">tokenizecsharp.js</option> <option value="http://codemirror.net/contrib/csharp/js/parsecsharp.js">parsecsharp.js</option> <option value="http://codemirror.net/contrib/sql/js/parsesql.js">parsesql.js</option> <option value="http://codemirror.net/contrib/plsql/js/parseplsql.js">parseplsql.js</option> <option value="http://codemirror.net/contrib/scheme/js/tokenizescheme.js">tokenizescheme.js</option> <option value="http://codemirror.net/contrib/scheme/js/parsescheme.js">parsescheme.js</option> <option value="http://codemirror.net/contrib/ometa/js/tokenizeometa.js">tokenizeometa.js</option> <option value="http://codemirror.net/contrib/ometa/js/parseometa.js">parseometa.js</option> <option value="http://codemirror.net/contrib/xquery/js/tokenizexquery.js">tokenizexquery.js</option> <option value="http://codemirror.net/contrib/xquery/js/parsexquery.js">parsexquery.js</option> <option value="http://svn.exoplatform.org/projects/gwt/trunk/exo-gwtframework-editor/src/main/resources/org/exoplatform/gwtframework/editor/public/codemirror/js/tokenizegroovy.js">tokenizegroovy.js</option> <option value="http://svn.exoplatform.org/projects/gwt/trunk/exo-gwtframework-editor/src/main/resources/org/exoplatform/gwtframework/editor/public/codemirror/js/parsegroovy.js">parsegroovy.js</option> </optgroup> </select></p> <p> <button type="submit" onclick="uglify();">Compress</button> with <a href="http://github.com/mishoo/UglifyJS/">UglifyJS</a><br/> <button type="submit" onclick="google();">Compress</button> with <a href="http://closure-compiler.appspot.com/home">Google Closure</a><br/> <button type="submit" onclick="verify();">Check</button> for errors </p> <p>Custom code to add to the compressed file:<textarea name="js_code" style="width: 100%; height: 15em;" class="field"></textarea></p> </form> <script type="text/javascript" src="css/font.js"></script> <script type="text/javascript"> function $(name) {return document.getElementById(name);} function setVersion(ver) { var urlprefix = ver.options[ver.selectedIndex].value; console.log(urlprefix); var select = $("files"), m; for (var optgr = select.firstChild; optgr; optgr = optgr.nextSibling) for (var opt = optgr.firstChild; opt; opt = opt.nextSibling) { if (opt.nodeName != "OPTION") continue; else if (m = opt.value.match(/^http:\/\/codemirror.net\/(.*)$/)) opt.value = urlprefix + m[1]; else if (m = opt.value.match(/http:\/\/marijnhaverbeke.nl\/git\/codemirror\?a=blob_plain;hb=[^;]+;f=(.*)$/)) opt.value = urlprefix + m[1]; } } var download = $("download"); function verify() { google(); $("output").value="warnings"; } function google() { $("output").value="compiled_code"; if (download.parentNode) download.parentNode.removeChild(download); $("form").action = "http://closure-compiler.appspot.com/compile"; } function uglify() { var names = [], files = $("files"); for (var i = 0; i < files.options.length; i++) { var opt = files.options[i]; if (opt.selected) names.push(opt.text.match(/^(.*).js$/)[1]); } download.value = (names.join("-") || "codemirror") + ".js"; if (!download.parentNode) $("form").appendChild(download); $("form").action = "http://marijnhaverbeke.nl/uglifyjs"; } </script> </body> </html>
includes/index.html
nilsine/Astra-Vires
No Directory Browsing.
docs/libming/destroySWFCXform.html
pombredanne/libming
<!WARNING! THIS FILE WAS GENERATED AUTOMATICALLY BY c2man! <!DO NOT EDIT! CHANGES MADE TO THIS FILE WILL BE LOST! <header> <title>destroySWFCXform - destroys a SWFCXform instance</title> </header> <body> <h1>NAME</h1> destroySWFCXform - destroys a SWFCXform instance <h1>SYNOPSIS</h1> <pre>#include &lt;ming.h&gt; void destroySWFCXform(SWFCXform cXform); </pre> <h1>PARAMETERS</h1> <dl><dt> SWFCXform cXform<dd> Not Documented. </dl> <h1>DESCRIPTION</h1> Destroys a SWFCXform instance. </body>
document/AngularJS/source/booksource/Chapter 14/Listing 22.html
demun/FrontEndStudy
<html ng-app="exampleApp"> <head> <title>Filters</title> <script src="angular.js"></script> <link href="bootstrap.css" rel="stylesheet" /> <link href="bootstrap-theme.css" rel="stylesheet" /> <script> angular.module("exampleApp", []) .controller("defaultCtrl", function ($scope) { // ...statements omitted for brevity... }); </script> <script src="customFilters.js"></script> </head> <body ng-controller="defaultCtrl"> <div class="panel panel-default"> <div class="panel-heading"> <h3> Products <span class="label label-primary">{{products.length}}</span> </h3> </div> <div class="panel-body"> Limit: <select ng-model="limitVal" ng-options="item for item in limitRange"></select> </div> <div class="panel-body"> <table class="table table-striped table-bordered table-condensed"> <thead> <tr> <td>Name</td> <td>Category</td> <td>Expiry</td> <td class="text-right">Price</td> </tr> </thead> <tbody> <tr ng-repeat="p in products | skip:2 | limitTo: 5"> <td>{{p.name}}</td> <td>{{p.category}}</td> <td>{{p.expiry}}</td> <td class="text-right">{{p.price | currency }}</td> </tr> </tbody> </table> </div> </div> </body> </html>