path
stringlengths 5
312
| repo_name
stringlengths 5
116
| content
stringlengths 2
1.04M
|
---|---|---|
doc/html/elements/restful_form.html
|
stuart-thackray/nitrogen_core
|
<?xml version="1.0" encoding="iso-8859-1"?>
<!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>
<title>restful_form Element</title>
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/>
<meta name="title" content="restful_form Element"/>
<meta name="generator" content="Org-mode"/>
<meta name="generated" content="2014-11-12 19:50:51 CST"/>
<meta name="author" content="Steffen Panning"/>
<meta name="description" content=""/>
<meta name="keywords" content=""/>
<style type="text/css">
<!--/*--><![CDATA[/*><!--*/
html { font-family: Times, serif; font-size: 12pt; }
.title { text-align: center; }
.todo { color: red; }
.done { color: green; }
.tag { background-color: #add8e6; font-weight:normal }
.target { }
.timestamp { color: #bebebe; }
.timestamp-kwd { color: #5f9ea0; }
.right {margin-left:auto; margin-right:0px; text-align:right;}
.left {margin-left:0px; margin-right:auto; text-align:left;}
.center {margin-left:auto; margin-right:auto; text-align:center;}
p.verse { margin-left: 3% }
pre {
border: 1pt solid #AEBDCC;
background-color: #F3F5F7;
padding: 5pt;
font-family: courier, monospace;
font-size: 90%;
overflow:auto;
}
table { border-collapse: collapse; }
td, th { vertical-align: top; }
th.right { text-align:center; }
th.left { text-align:center; }
th.center { text-align:center; }
td.right { text-align:right; }
td.left { text-align:left; }
td.center { text-align:center; }
dt { font-weight: bold; }
div.figure { padding: 0.5em; }
div.figure p { text-align: center; }
div.inlinetask {
padding:10px;
border:2px solid gray;
margin:10px;
background: #ffffcc;
}
textarea { overflow-x: auto; }
.linenr { font-size:smaller }
.code-highlighted {background-color:#ffff00;}
.org-info-js_info-navigation { border-style:none; }
#org-info-js_console-label { font-size:10px; font-weight:bold;
white-space:nowrap; }
.org-info-js_search-highlight {background-color:#ffff00; color:#000000;
font-weight:bold; }
/*]]>*/-->
</style>
<LINK href='../stylesheet.css' rel='stylesheet' type='text/css' />
<script type="text/javascript">
<!--/*--><![CDATA[/*><!--*/
function CodeHighlightOn(elem, id)
{
var target = document.getElementById(id);
if(null != target) {
elem.cacheClassElem = elem.className;
elem.cacheClassTarget = target.className;
target.className = "code-highlighted";
elem.className = "code-highlighted";
}
}
function CodeHighlightOff(elem, id)
{
var target = document.getElementById(id);
if(elem.cacheClassElem)
elem.className = elem.cacheClassElem;
if(elem.cacheClassTarget)
target.className = elem.cacheClassTarget;
}
/*]]>*///-->
</script>
</head>
<body>
<div id="preamble">
</div>
<div id="content">
<h1 class="title">restful_form Element</h1>
<p><a href="http://nitrogenproject.com">Home</a> | <a href="../index.html">Getting Started</a> | <a href="../api.html">API</a> | <a href="../elements.html"><b>Elements</b></a> | <a href="../actions.html">Actions</a> | <a href="../validators.html">Validators</a> | <a href="../handlers.html">Handlers</a> | <a href="../config.html">Configuration Options</a> | <a href="../advanced.html">Advanced Guides</a> | <a href="../troubleshooting.html">Troubleshooting</a> | <a href="../about.html">About</a>
</p>
<div id="table-of-contents">
<h2>Table of Contents</h2>
<div id="text-table-of-contents">
<ul>
<li><a href="#sec-1">1 RESTful Form Element - #restful_form {}</a></li>
</ul>
</div>
</div>
<div id="outline-container-1" class="outline-2">
<h2 id="sec-1"><span class="section-number-2">1</span> RESTful Form Element - #restful_form {}</h2>
<div class="outline-text-2" id="text-1">
<p>
The #restful_form{} element produces an HTML form element.
The form element is necessary if your website has to work without
javascript. It is <span style="text-decoration:underline;">not</span> necessary for a pure ajax/javascript driven
website.
</p>
</div>
<div id="outline-container-1-1" class="outline-3">
<h3 id="sec-1-1"><span class="section-number-3"></span> Usage</h3>
<div class="outline-text-3" id="text-1-1">
<pre class="src src-erlang">#<span class="org-type">restful_form</span> {
method=post|get,
action=<span class="org-string">"/formdest"</span>,
enctype=<span class="org-string">"multipart/form-data"</span>,
body=<span class="org-variable-name">FormElements</span>
}
</pre>
</div>
</div>
<div id="outline-container-1-2" class="outline-3">
<h3 id="sec-1-2"><span class="section-number-3"></span> Attributes</h3>
<div class="outline-text-3" id="text-1-2">
<dl>
<dt>method - (<i>string or atom</i>)</dt><dd>Set the HTTP request-method (typically
<code>post</code> or <code>get</code>).
</dd>
<dt>action - (<i>string</i>)</dt><dd>Set the target-url of the form submit. If
left blank, the same page module is used as
target.
</dd>
<dt>target - (<i>string or atom</i>)</dt><dd>Set the HTML <code>target</code> attribute, which can
be used for redirecting the form submission to a
new window, or to a frame. If left blank, will
just target the current window.
</dd>
<dt>enctype - (<i>string</i>)</dt><dd>Sets the encoding for the form transmission.
</dd>
<dt>body - (<i>string</i>)</dt><dd>Contains the elements of the form
</dd>
</dl>
</div>
</div>
<div id="outline-container-1-3" class="outline-3">
<h3 id="sec-1-3"><span class="section-number-3"></span> See Also</h3>
<div class="outline-text-3" id="text-1-3">
<ul>
<li><a href="./base.html">Base</a>
</li>
<li><a href="./link.html">Link</a>
</li>
<li><a href="./textbox.html">Textbox</a>
</li>
<li><a href="./password.html">Password</a>
</li>
<li><a href="./textarea.html">Textarea</a>
</li>
<li><a href="./checkbox.html">Checkbox</a>
</li>
<li><a href="./dropdown.html">Dropdown</a>
</li>
<li><a href="./option.html">Dropdown Option</a>
</li>
<li><a href="./restful_submit.html">RESTful Submit</a>
</li>
<li><a href="./restful_reset.html">RESTful Reset</a>
</li>
<li><a href="./restful_upload.html">RESTful Upload</a>
</li>
<li><a href="http://nitrogenproject.com/demos/restful">RESTful Forms Demo</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="postamble">
<p class="date">Date: 2014-11-12 19:50:51 CST</p>
<p class="author">Author: Steffen Panning</p>
<p class="creator">Org version 7.8.02 with Emacs version 23</p>
<a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a>
</div><h2>Comments</h2>
<b>Note:</b><!-- Disqus does not currently support Erlang for its syntax highlighting, so t-->To specify <!--Erlang--> code blocks, just use the generic code block syntax: <pre><b><pre><code>your code here</code></pre></b></pre>
<br />
<br />
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'nitrogenproject'; // required: replace example with your forum shortname
var disqus_identifier = 'html/elements/restful_form.html'; //This will be replaced with the path part of the url
/* * * DON'T EDIT BELOW THIS LINE * * */
(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">comments powered by <span class="logo-disqus">Disqus</span></a>
</body>
</html>
|
docs/_includes/color/grey-darker.html
|
planswell/bulma
|
<span class="color" style="background: hsl(0, 0%, 21%);"></span>
<code>hsl(0, 0%, 21%)</code>
|
public/css/datatable.css
|
bgegham/BrandsAndBusinessConference
|
table.table-control {
margin-top: 10px !important;
margin-bottom: 25px !important;
}
.dataTables_scroll{
margin-bottom: 8px;
}
.table-control thead{
background: #828282!important;
border: none;
color: white;
}
.table-control thead th{
outline: none!important;
border-bottom: none!important;
}
table.table-control thead .sorting_desc:after {
color: #4b102a;
opacity: 1;
}
table.table-control thead thead .sorting_asc:after {
color: #4b102a;
opacity: 1;
}
table.table-control thead .sorting_asc:after {
color: #4b102a;
opacity: 1;
}
table.table-control thead .sorting:after {
color: #4b102a;
opacity: 1;
}
table.table-control thead .heading-group th{
text-align: center;
padding: 14px;
background: #eaeaea;
color: #4b102a;
font-size: 18px;
border-right: solid 1px #adadad;
}
table.table-control thead tr th i{
color: #f5d809;
}
table.table-control tbody .shadow-right-columns{
background: #f1f1f1;
padding: 0!important;
border: none!important;
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=6, Direction=0, Color=#000000)";/*IE 8*/
-moz-box-shadow: -10px 0 6px -10px rgba(0,0,0,0.5) inset;/*FF 3.5+*/
-webkit-box-shadow: -10px 0 6px -10px rgba(0,0,0,0.5) inset;/*Saf3-4, Chrome, iOS 4.0.2-4.2, Android 2.3+*/
box-shadow: -10px 0 6px -10px rgba(0,0,0,0.5) inset;/* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=6, Direction=135, Color=#000000); /*IE 5.5-7*/
}
table.table-control tbody .shadow-right-columns a{
color: #4b102a;
position: relative;
width: 100%;
display: none;
padding: 3px 0!important;
}
table.table-control tbody .shadow-right-columns:hover a{
display: block;
}
table.table-control tbody .shadow-left-columns{
background: #f1f1f1;
padding: 0!important;
border-top: none!important;
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=6, Direction=169, Color=#000000)";/*IE 8*/
-moz-box-shadow: 10px 2px 6px -10px rgba(0,0,0,0.5) inset;/*FF 3.5+*/
-webkit-box-shadow: 10px 2px 6px -10px rgba(0,0,0,0.5) inset;/*Saf3-4, Chrome, iOS 4.0.2-4.2, Android 2.3+*/
box-shadow: 10px 2px 6px -10px rgba(0,0,0,0.5) inset;/* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=6, Direction=135, Color=#000000); /*IE 5.5-7*/
}
table.table-control tbody .shadow-left-columns a{
color: #4b102a;
display: none;
padding: 3px 0!important;
position: relative;
width: 100%;
}
table.table-control tbody .shadow-left-columns:hover a{
display: block;
}
table.table-control tbody tr.selected{
background: #DDDDDD;
}
|
lib/lwjgl-docs-2.9.1/javadoc/org/lwjgl/opengles/class-use/EXTTextureCompressionDXT1.html
|
RobbertJongeling/ld29
|
<!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_17) on Mon Dec 02 20:33:04 CET 2013 -->
<title>Uses of Class org.lwjgl.opengles.EXTTextureCompressionDXT1 (LWJGL API)</title>
<meta name="date" content="2013-12-02">
<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.lwjgl.opengles.EXTTextureCompressionDXT1 (LWJGL 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/lwjgl/opengles/EXTTextureCompressionDXT1.html" title="class in org.lwjgl.opengles">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/lwjgl/opengles/class-use/EXTTextureCompressionDXT1.html" target="_top">Frames</a></li>
<li><a href="EXTTextureCompressionDXT1.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.lwjgl.opengles.EXTTextureCompressionDXT1" class="title">Uses of Class<br>org.lwjgl.opengles.EXTTextureCompressionDXT1</h2>
</div>
<div class="classUseContainer">No usage of org.lwjgl.opengles.EXTTextureCompressionDXT1</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/lwjgl/opengles/EXTTextureCompressionDXT1.html" title="class in org.lwjgl.opengles">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/lwjgl/opengles/class-use/EXTTextureCompressionDXT1.html" target="_top">Frames</a></li>
<li><a href="EXTTextureCompressionDXT1.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small><i>Copyright © 2002-2009 lwjgl.org. All Rights Reserved.</i></small></p>
</body>
</html>
|
api/v0.10.0/dash/graphics/adapters/win32gl/OpenGL.normalRenderTexture.html
|
Circular-Studios/Dash-Docs
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/><!-- using block title in layout.dt--><!-- using block ddox.defs in ddox.layout.dt--><!-- using block ddox.title in ddox.layout.dt-->
<title>OpenGL.normalRenderTexture - multiple declarations</title>
<link rel="stylesheet" type="text/css" href="../../../../styles/ddox.css"/>
<link rel="stylesheet" href="../../../../prettify/prettify.css" type="text/css"/>
<script type="text/javascript" src="../../../../scripts/jquery.js">/**/</script>
<script type="text/javascript" src="../../../../prettify/prettify.js">/**/</script>
<script type="text/javascript" src="../../../../scripts/ddox.js">/**/</script>
</head>
<body onload="prettyPrint(); setupDdox();">
<nav id="main-nav"><!-- using block navigation in layout.dt-->
<ul class="tree-view">
<li class=" tree-view">
<a href="#" class="package">dash</a>
<ul class="tree-view">
<li class="collapsed tree-view">
<a href="#" class="package">components</a>
<ul class="tree-view">
<li>
<a href="../../../../dash/components/animation.html" class=" module">animation</a>
</li>
<li>
<a href="../../../../dash/components/assets.html" class=" module">assets</a>
</li>
<li>
<a href="../../../../dash/components/camera.html" class=" module">camera</a>
</li>
<li>
<a href="../../../../dash/components/component.html" class=" module">component</a>
</li>
<li>
<a href="../../../../dash/components/lights.html" class=" module">lights</a>
</li>
<li>
<a href="../../../../dash/components/material.html" class=" module">material</a>
</li>
<li>
<a href="../../../../dash/components/mesh.html" class=" module">mesh</a>
</li>
<li>
<a href="../../../../dash/components/userinterface.html" class=" module">userinterface</a>
</li>
</ul>
</li>
<li class="collapsed tree-view">
<a href="#" class="package">core</a>
<ul class="tree-view">
<li>
<a href="../../../../dash/core/dgame.html" class=" module">dgame</a>
</li>
<li>
<a href="../../../../dash/core/gameobject.html" class=" module">gameobject</a>
</li>
<li>
<a href="../../../../dash/core/prefabs.html" class=" module">prefabs</a>
</li>
<li>
<a href="../../../../dash/core/properties.html" class=" module">properties</a>
</li>
<li>
<a href="../../../../dash/core/scene.html" class=" module">scene</a>
</li>
</ul>
</li>
<li class="collapsed tree-view">
<a href="#" class="package">editor</a>
<ul class="tree-view">
<li>
<a href="../../../../dash/editor/editor.html" class=" module">editor</a>
</li>
<li>
<a href="../../../../dash/editor/websockets.html" class=" module">websockets</a>
</li>
</ul>
</li>
<li class=" tree-view">
<a href="#" class="package">graphics</a>
<ul class="tree-view">
<li class=" tree-view">
<a href="#" class="package">adapters</a>
<ul class="tree-view">
<li>
<a href="../../../../dash/graphics/adapters/adapter.html" class=" module">adapter</a>
</li>
<li>
<a href="../../../../dash/graphics/adapters/gl.html" class=" module">gl</a>
</li>
<li>
<a href="../../../../dash/graphics/adapters/linux.html" class=" module">linux</a>
</li>
<li>
<a href="../../../../dash/graphics/adapters/win32gl.html" class="selected module">win32gl</a>
</li>
</ul>
</li>
<li class="collapsed tree-view">
<a href="#" class="package">shaders</a>
<ul class="tree-view">
<li class="collapsed tree-view">
<a href="#" class="package">glsl</a>
<ul class="tree-view">
<li>
<a href="../../../../dash/graphics/shaders/glsl/ambientlight.html" class=" module">ambientlight</a>
</li>
<li>
<a href="../../../../dash/graphics/shaders/glsl/animatedgeometry.html" class=" module">animatedgeometry</a>
</li>
<li>
<a href="../../../../dash/graphics/shaders/glsl/directionallight.html" class=" module">directionallight</a>
</li>
<li>
<a href="../../../../dash/graphics/shaders/glsl/geometry.html" class=" module">geometry</a>
</li>
<li>
<a href="../../../../dash/graphics/shaders/glsl/pointlight.html" class=" module">pointlight</a>
</li>
<li>
<a href="../../../../dash/graphics/shaders/glsl/shadowmap.html" class=" module">shadowmap</a>
</li>
<li>
<a href="../../../../dash/graphics/shaders/glsl/userinterface.html" class=" module">userinterface</a>
</li>
</ul>
</li>
<li>
<a href="../../../../dash/graphics/shaders/glsl.html" class=" module">glsl</a>
</li>
<li>
<a href="../../../../dash/graphics/shaders/shaders.html" class=" module">shaders</a>
</li>
</ul>
</li>
<li>
<a href="../../../../dash/graphics/adapters.html" class=" module">adapters</a>
</li>
<li>
<a href="../../../../dash/graphics/graphics.html" class=" module">graphics</a>
</li>
<li>
<a href="../../../../dash/graphics/shaders.html" class=" module">shaders</a>
</li>
</ul>
</li>
<li class="collapsed tree-view">
<a href="#" class="package">net</a>
<ul class="tree-view">
<li>
<a href="../../../../dash/net/connection.html" class=" module">connection</a>
</li>
<li>
<a href="../../../../dash/net/connectionmanager.html" class=" module">connectionmanager</a>
</li>
<li>
<a href="../../../../dash/net/packets.html" class=" module">packets</a>
</li>
<li>
<a href="../../../../dash/net/webconnection.html" class=" module">webconnection</a>
</li>
</ul>
</li>
<li class="collapsed tree-view">
<a href="#" class="package">utility</a>
<ul class="tree-view">
<li>
<a href="../../../../dash/utility/awesomium.html" class=" module">awesomium</a>
</li>
<li>
<a href="../../../../dash/utility/concurrency.html" class=" module">concurrency</a>
</li>
<li>
<a href="../../../../dash/utility/config.html" class=" module">config</a>
</li>
<li>
<a href="../../../../dash/utility/input.html" class=" module">input</a>
</li>
<li>
<a href="../../../../dash/utility/output.html" class=" module">output</a>
</li>
<li>
<a href="../../../../dash/utility/resources.html" class=" module">resources</a>
</li>
<li>
<a href="../../../../dash/utility/soloud.html" class=" module">soloud</a>
</li>
<li>
<a href="../../../../dash/utility/string.html" class=" module">string</a>
</li>
<li>
<a href="../../../../dash/utility/tasks.html" class=" module">tasks</a>
</li>
<li>
<a href="../../../../dash/utility/time.html" class=" module">time</a>
</li>
</ul>
</li>
<li>
<a href="../../../../dash/components.html" class=" module">components</a>
</li>
<li>
<a href="../../../../dash/core.html" class=" module">core</a>
</li>
<li>
<a href="../../../../dash/editor.html" class=" module">editor</a>
</li>
<li>
<a href="../../../../dash/graphics.html" class=" module">graphics</a>
</li>
<li>
<a href="../../../../dash/net.html" class=" module">net</a>
</li>
<li>
<a href="../../../../dash/utility.html" class=" module">utility</a>
</li>
</ul>
</li>
<li>
<a href="../../../../dash.html" class=" module">dash</a>
</li>
</ul>
<noscript>
<p style="color: red">The search functionality needs JavaScript enabled</p>
</noscript>
<div id="symbolSearchPane" style="display: none">
<p>
<input id="symbolSearch" type="text" placeholder="Search for symbols" onchange="performSymbolSearch(24);" onkeypress="this.onchange();" onpaste="this.onchange();" oninput="this.onchange();"/>
</p>
<ul id="symbolSearchResults" style="display: none"></ul>
<script type="application/javascript" src="../../../../symbols.js"></script>
<script type="application/javascript">
//<![CDATA[
var symbolSearchRootDir = "../../../../"; $('#symbolSearchPane').show();
//]]>
</script>
</div>
<script type="text/javascript" src="../../../../scripts/mousetrap.js"></script>
<script type="text/javascript">
//<![CDATA[
$(document).ready(function() {
Mousetrap.bind('s', function(e) {
$("#symbolSearch").focus();
return false;
});
});
//]]>
</script>
</nav>
<div id="main-contents">
<h1>OpenGL.normalRenderTexture - multiple declarations</h1><!-- using block body in layout.dt--><!-- Default block ddox.description in ddox.layout.dt--><!-- Default block ddox.sections in ddox.layout.dt--><!-- using block ddox.members in ddox.layout.dt-->
<ul>
<li>Function OpenGL.normalRenderTexture</li>
<li>Function OpenGL.normalRenderTexture</li>
</ul>
<section>
<h2>Function OpenGL.normalRenderTexture</h2>
<p></p>
<section>
<h3>Prototype</h3>
<pre class="code prettyprint lang-d prototype">
uint normalRenderTexture() pure nothrow @property @safe auto final;</pre>
</section>
</section>
<section>
<h2>Function OpenGL.normalRenderTexture</h2>
<p></p>
<section>
<h3>Prototype</h3>
<pre class="code prettyprint lang-d prototype">
void normalRenderTexture(
uint newVal
) pure nothrow @property @safe final;</pre>
</section>
</section>
<section>
<h2>Authors</h2><!-- using block ddox.authors in ddox.layout.dt-->
</section>
<section>
<h2>Copyright</h2><!-- using block ddox.copyright in ddox.layout.dt-->
</section>
<section>
<h2>License</h2><!-- using block ddox.license in ddox.layout.dt-->
</section>
</div>
</body>
</html>
|
guide/195/remotectl.8.html
|
cockpit-project/cockpit-project.github.io
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>remotectl</title>
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
<link rel="home" href="index.html" title="Cockpit Guide">
<link rel="up" href="cockpit-manual.html" title="Manual pages">
<link rel="prev" href="cockpit-desktop.1.html" title="cockpit-desktop">
<link rel="next" href="cockpit-bridge.1.html" title="cockpit-bridge">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
<td><a accesskey="p" href="cockpit-desktop.1.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
<td><a accesskey="u" href="cockpit-manual.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
<th width="100%" align="center">Cockpit Guide</th>
<td><a accesskey="n" href="cockpit-bridge.1.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
</tr></table>
<div class="refentry">
<a name="remotectl.8"></a><div class="titlepage"></div>
<div class="refnamediv"><table width="100%"><tr>
<td valign="top">
<h2><span class="refentrytitle">remotectl</span></h2>
<p>remotectl — Remote Access Configuration</p>
</td>
<td valign="top" align="right"></td>
</tr></table></div>
<div class="refsynopsisdiv">
<h2>Synopsis</h2>
<div class="cmdsynopsis"><p><code class="command">remotectl</code> {COMMAND} [OPTIONS...]</p></div>
</div>
<div class="refsect1">
<a name="remotectl-description"></a><h2>DESCRIPTION</h2>
<p>The <span class="command"><strong>remotectl</strong></span> program will configure remote access to the system. Currently it manages cockpit's SSL certificate.</p>
</div>
<div class="refsect1">
<a name="remotectl-commands"></a><h2>Commands</h2>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><span class="command"><strong>certificate</strong></span></span></p></td>
<td>
<p>Manage Cockpit's SSL certificate. If used without options will check if cockpit has a valid certificate without making any changes.</p>
<p>
<code class="option">--ensure</code> Ensure that a certificate exists and can be loaded. Certificate will be created if it does not already exist.
</p>
<p>
<code class="option">--user username</code> The unix user that should own the certificate. Only takes effect if used with <code class="option">--ensure</code>.
</p>
<p>
<code class="option">--group groupname</code> The unix group that should read the certificate. Only takes effect if used with <code class="option">--ensure</code>.
</p>
<p>
If any additional arguments are given, they are treated as files that should be combined to create a certificate file. If the combined files validate, they will be saved in the appropriate location using the name of the first file given with the extension changed to .cert. For example:
</p>
<p><span class="command"><strong>remotectl certificate server.pem chain.pem key.pem</strong></span></p>
<p>will result in <code class="literal">server.cert</code>. If <code class="literal">server.cert</code> already exists it will be overwritten.
</p>
</td>
</tr></tbody>
</table></div>
</div>
<div class="refsect1">
<a name="remotectl-options"></a><h2>OPTIONS</h2>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><code class="option">--help</code></span></p></td>
<td><p>
Show help options.
</p></td>
</tr>
<tr>
<td><p><span class="term"><code class="option">--verbose</code></span></p></td>
<td><p>Print verbose messages about the task</p></td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect1">
<a name="remotectl-bugs"></a><h2>BUGS</h2>
<p>
Please send bug reports to either the distribution bug tracker or the
<a class="ulink" href="https://github.com/cockpit-project/cockpit/issues/new" target="_top">upstream bug tracker</a>.
</p>
</div>
<div class="refsect1">
<a name="remotectl-author"></a><h2>AUTHOR</h2>
<p>Cockpit has been written by many
<a class="ulink" href="https://github.com/cockpit-project/cockpit/" target="_top">contributors</a>.</p>
</div>
<div class="refsect1">
<a name="remotectl-see-also"></a><h2>SEE ALSO</h2>
<p>
<span class="citerefentry"><span class="refentrytitle">cockpit-ws</span>(8)</span>
</p>
</div>
</div>
<div class="footer"><hr></div>
</body>
</html>
|
web/bundles/app/js/ckeditor/samples/index.html
|
razzaghi/MessageCenter
|
<!DOCTYPE html>
<!--
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
-->
<html>
<head>
<meta charset="utf-8">
<title>CKEditor Samples</title>
<link rel="stylesheet" href="sample.css">
</head>
<body>
<h1 class="samples">
CKEditor Samples
</h1>
<div class="twoColumns">
<div class="twoColumnsLeft">
<h2 class="samples">
Basic Samples
</h2>
<dl class="samples">
<dt><a class="samples" href="replacebyclass.html">Replace textarea elements by class name</a></dt>
<dd>Automatic replacement of all textarea elements of a given class with a CKEditor instance.</dd>
<dt><a class="samples" href="replacebycode.html">Replace textarea elements by code</a></dt>
<dd>Replacement of textarea elements with CKEditor instances by using a JavaScript call.</dd>
<dt><a class="samples" href="jquery.html">Create editors with jQuery</a></dt>
<dd>Creating standard and inline CKEditor instances with jQuery adapter.</dd>
</dl>
<h2 class="samples">
Basic Customization
</h2>
<dl class="samples">
<dt><a class="samples" href="uicolor.html">User Interface color</a></dt>
<dd>Changing CKEditor User Interface color and adding a toolbar button that lets the user set the UI color.</dd>
<dt><a class="samples" href="uilanguages.html">User Interface languages</a></dt>
<dd>Changing CKEditor User Interface language and adding a drop-down list that lets the user choose the UI language.</dd>
</dl>
</div>
<div class="twoColumnsRight">
<h2 class="samples">
Inline Editing
</h2>
<dl class="samples">
<dt><a class="samples" href="inlineall.html">Massive inline editor creation</a></dt>
<dd>Turn all elements with <code>contentEditable = true</code> attribute into inline editors.</dd>
<dt><a class="samples" href="inlinebycode.html">Convert element into an inline editor by code</a></dt>
<dd>Conversion of DOM elements into inline CKEditor instances by using a JavaScript call.</dd>
<dt><a class="samples" href="inlinetextarea.html">Replace textarea with inline editor</a> <span class="new">New!</span></dt>
<dd>A form with a textarea that is replaced by an inline editor at runtime.</dd>
</dl>
<h2 class="samples">
Advanced Samples
</h2>
<dl class="samples">
<dt><a class="samples" href="datafiltering.html">Data filtering and features activation</a> <span class="new">New!</span></dt>
<dd>Data filtering and automatic features activation basing on configuration.</dd>
<dt><a class="samples" href="divreplace.html">Replace DIV elements on the fly</a></dt>
<dd>Transforming a <code>div</code> element into an instance of CKEditor with a mouse click.</dd>
<dt><a class="samples" href="appendto.html">Append editor instances</a></dt>
<dd>Appending editor instances to existing DOM elements.</dd>
<dt><a class="samples" href="ajax.html">Create and destroy editor instances for Ajax applications</a></dt>
<dd>Creating and destroying CKEditor instances on the fly and saving the contents entered into the editor window.</dd>
<dt><a class="samples" href="api.html">Basic usage of the API</a></dt>
<dd>Using the CKEditor JavaScript API to interact with the editor at runtime.</dd>
<dt><a class="samples" href="xhtmlstyle.html">XHTML-compliant style</a></dt>
<dd>Configuring CKEditor to produce XHTML 1.1 compliant attributes and styles.</dd>
<dt><a class="samples" href="readonly.html">Read-only mode</a></dt>
<dd>Using the readOnly API to block introducing changes to the editor contents.</dd>
<dt><a class="samples" href="tabindex.html">"Tab" key-based navigation</a></dt>
<dd>Navigating among editor instances with tab key.</dd>
<dt><a class="samples" href="plugins/dialog/dialog.html">Using the JavaScript API to customize dialog windows</a></dt>
<dd>Using the dialog windows API to customize dialog windows without changing the original editor code.</dd>
<dt><a class="samples" href="plugins/divarea/divarea.html">Replace Textarea with a "DIV-based" editor</a></dt>
<dd>Using <code>div</code> instead of <code>iframe</code> for rich editing.</dd>
<dt><a class="samples" href="plugins/enterkey/enterkey.html">Using the "Enter" key in CKEditor</a></dt>
<dd>Configuring the behavior of <em>Enter</em> and <em>Shift+Enter</em> keys.</dd>
<dt><a class="samples" href="plugins/toolbar/toolbar.html">Toolbar Configurations</a></dt>
<dd>Configuring CKEditor to display full or custom toolbar layout.</dd>
</dl>
</div>
</div>
<div id="footer">
<hr>
<p>
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2014, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved.
</p>
</div>
</body>
</html>
|
dist/index.html
|
Fishrock123/ParkyParkPark
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Parky Park Park</title>
<meta charset="utf-8">
<script src="https://cdnjs.cloudflare.com/ajax/libs/pixi.js/3.0.8/pixi.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p2.js/0.7.1/p2.min.js"></script>
</head>
<body>
<script src="js/bundle.js"></script>
</body>
</html>
|
libs/Jena/javadoc-core/org/apache/jena/graph/class-use/Node_ANY.html
|
manonsys/MVC
|
<!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-internal) on Tue Dec 08 09:26:31 GMT 2015 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.apache.jena.graph.Node_ANY (Apache Jena)</title>
<meta name="date" content="2015-12-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.jena.graph.Node_ANY (Apache Jena)";
}
}
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/jena/graph/Node_ANY.html" title="class in org.apache.jena.graph">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/jena/graph/class-use/Node_ANY.html" target="_top">Frames</a></li>
<li><a href="Node_ANY.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.jena.graph.Node_ANY" class="title">Uses of Class<br>org.apache.jena.graph.Node_ANY</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/jena/graph/Node_ANY.html" title="class in org.apache.jena.graph">Node_ANY</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#org.apache.jena.graph">org.apache.jena.graph</a></td>
<td class="colLast">
<div class="block">This package defines the Graph and Node family of classes, which
form the underlying datatypes of the Jena system.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.apache.jena.graph">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../org/apache/jena/graph/Node_ANY.html" title="class in org.apache.jena.graph">Node_ANY</a> in <a href="../../../../../org/apache/jena/graph/package-summary.html">org.apache.jena.graph</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/jena/graph/package-summary.html">org.apache.jena.graph</a> with parameters of type <a href="../../../../../org/apache/jena/graph/Node_ANY.html" title="class in org.apache.jena.graph">Node_ANY</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></td>
<td class="colLast"><span class="typeNameLabel">NodeVisitor.</span><code><span class="memberNameLink"><a href="../../../../../org/apache/jena/graph/NodeVisitor.html#visitAny-org.apache.jena.graph.Node_ANY-">visitAny</a></span>(<a href="../../../../../org/apache/jena/graph/Node_ANY.html" title="class in org.apache.jena.graph">Node_ANY</a> it)</code> </td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../org/apache/jena/graph/Node_ANY.html" title="class in org.apache.jena.graph">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/jena/graph/class-use/Node_ANY.html" target="_top">Frames</a></li>
<li><a href="Node_ANY.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Licenced under the Apache License, Version 2.0</small></p>
</body>
</html>
|
docs/api/zh/core/Geometry.html
|
Itee/three.js
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<base href="../../../" />
<script src="list.js"></script>
<script src="page.js"></script>
<link type="text/css" rel="stylesheet" href="page.css" />
</head>
<body>
<h1>[name]</h1>
<div class="desc">
<p>
Geometry 是一个便于用户使用的 [page:BufferGeometry] 的替代品。Geometry 利用 [page:Vector3]
或 [page:Color] 存储了几何体的相关 attributes(如顶点位置,面信息,颜色等)比起 BufferGeometry
更容易读写,但是运行效率不如有类型的队列。
</p>
<p>
对于大型工程或正式工程,推荐采用 [page:BufferGeometry]。
</p>
</div>
<h2>示例</h2>
<div>[example:webgl_geometry_minecraft WebGL / geometry / minecraft ]</div>
<div>[example:webgl_geometry_minecraft_ao WebGL / geometry / minecraft / ao ]</div>
<div>[example:webgl_geometry_nurbs WebGL / geometry / nurbs ]</div>
<div>[example:webgl_geometry_spline_editor WebGL / geometry / spline / editor ]</div>
<div>[example:webgl_interactive_cubes_gpu WebGL / interactive / cubes / gpu ]</div>
<div>[example:webgl_interactive_lines WebGL / interactive / lines ]</div>
<div>[example:webgl_interactive_raycasting_points WebGL / interactive / raycasting / points ]</div>
<div>[example:webgl_interactive_voxelpainter WebGL / interactive / voxelpainter ]</div>
<div>[example:webgl_morphnormals WebGL / morphNormals ]</div>
<code>var geometry = new THREE.Geometry();
geometry.vertices.push(
new THREE.Vector3( -10, 10, 0 ),
new THREE.Vector3( -10, -10, 0 ),
new THREE.Vector3( 10, -10, 0 )
);
geometry.faces.push( new THREE.Face3( 0, 1, 2 ) );
geometry.computeBoundingSphere();
</code>
<h2>构造函数</h2>
<h3>[name]()</h3>
<p>
构造函数没有任何参数。
</p>
<h2>属性</h2>
<h3>[property:Box3 boundingBox]</h3>
<p>
Geometry 的外边界矩形,可以通过 [page:.computeBoundingBox]() 进行计算,默认值是 *null*。
</p>
<h3>[property:Sphere boundingSphere]</h3>
<p>
Geometry 的外边界球形,可以通过 [page:.computeBoundingSphere]() 进行计算,默认值是 *null*。
</p>
<h3>[property:Array colors]</h3>
<p>
顶点 [page:Color colors] 队列,与顶点数量和顺序保持一致。<br /><br />
该属性用于 [page:Points] 、 [page:Line] 或派生自 [page:LineSegments] 的类。
对于 [page:Mesh Meshes],请使用 [page:Face3.vertexColors] 函数。<br /><br />
如果要标记队列中的数据已经更新,[page:Geometry Geometry.colorsNeedUpdate] 值需要被设置为 true。
</p>
<h3>[property:Array faces]</h3>
<p>
[page:Face3 faces] 队列。<br />
描述每个顶点之间如何组成模型面的面队列。同时该队列保存面和顶点的法向量和颜色信息。<br /><br />
如果要标记队列中的数据已经更新,[page:Geometry Geometry.elementsNeedUpdate] 值需要被设置为 true。
</p>
<h3>[property:Array faceVertexUvs]</h3>
<p>
面的 [link:https://en.wikipedia.org/wiki/UV_mapping UV] 层的队列,该队列用于将纹理和几何信息进行映射。<br />
每个 UV 层都是一个 [page:UV] 的队列,顺序和数量同面中的顶点相对用。<br /><br />
如果要标记队列中的数据已经更新,[page:Geometry Geometry.uvsNeedUpdate] 值需要被设置为 true。
</p>
<h3>[property:Integer id]</h3>
<p>当前 geometry 实例的唯一标识符的数。</p>
<h3>[property:array lineDistances]</h3>
<p>
用于保存线型几何体中每个顶点间距离的。在正确渲染 [page:LineDashedMaterial] 时,需要用到该数据。
</p>
<h3>[property:Array morphTargets]</h3>
<p>
[link:https://en.wikipedia.org/wiki/Morph_target_animation morph targets] 的队列。每个
morph target 都是一个如下的 javascript 对象:
<code>{ name: "targetName", vertices: [ new THREE.Vector3(), ... ] }</code>
Morph 顶点和几何体原始顶点在数量和顺序上需要一一对应。
</p>
<h3>[property:Array morphNormals]</h3>
<p>
一个 morph 法向量的数组。Morph 法向量和 morph target 有类似的结构,每个法向量都是一个如下的 Javascript 对象:
<code>morphNormal = { name: "NormalName", normals: [ new THREE.Vector3(), ... ] }</code>
示例详见 [example:webgl_morphnormals WebGL / morphNormals]。
</p>
<h3>[property:String name]</h3>
<p>当前几何的可选别名。默认值是一个空字符串。</p>
<h3>[property:Array skinWeights]</h3>
<p>
当在处理一个 [page:SkinnedMesh] 时,每个顶点最多可以有 4 个相关的 [page:Bone bones] 来影响它。
skinWeights 属性是一个权重队列,顺序同几何体中的顶点保持一致。因而,队列中的第一个 skinWeight
就对应几何体中的第一个顶点。由于每个顶点可以被 4 个 [page:Bone bones] 营销,因而每个顶点的 skinWeights
就采用一个 [page:Vector4] 表示。
</p>
<p>
skinWeight 矢量中每个元素的取值范围应该在 0 到 1 之间。例如,当设置为 0,骨骼对该顶点的位置没有影响。当设置为 0.5,
则对顶点的影响为 50%。 当设置为 100% 则对顶点的影响是 100%。如果矢量中只有一个骨骼与顶点相关联,则你只需要关注矢量中的第一个元素,
剩余的元素可以忽略,他们的值可以都设置为 0。
</p>
<h3>[property:Array skinIndices]</h3>
<p>
就如同 skinWeights 属性一样。skinWeights 的值也是与几何体的顶点相对应。每个顶点可以最多有 4 个骨骼与之相关联。
因而第一个 skinIndex 就与几何体的第一个顶点相关联,skinIndex 的值就指明了影响该顶点的骨骼是哪个。例如,第一个顶点的值是
<strong>( 10.05, 30.10, 12.12 )</strong>,第一个 skinIndex 的值是<strong>( 10, 2, 0, 0 )</strong>,第一个 skinWeight
的值是 <strong>( 0.8, 0.2, 0, 0 )</strong>。上述值表明第一个顶点受到<strong>mesh.bones[10]</strong>骨骼的影响有 80%,
受到 <strong>skeleton.bones[2]</strong> 的影响是 20%,由于另外两个 skinWeight 的值是 0,因而他们对顶点没有任何影响。
</p>
<p>
下面以代码的形式展示示例:
<code>
// 例如
geometry.skinIndices[15] = new THREE.Vector4( 0, 5, 9, 10 );
geometry.skinWeights[15] = new THREE.Vector4( 0.2, 0.5, 0.3, 0 );
// 与该顶点相关
geometry.vertices[15];
// 相应骨骼可以这样被调用:
skeleton.bones[0]; // weight of 0.2
skeleton.bones[5]; // weight of 0.5
skeleton.bones[9]; // weight of 0.3
skeleton.bones[10]; // weight of 0
</code>
</p>
<h3>[property:String uuid]</h3>
<p>
当前对象实例的 [link:http://en.wikipedia.org/wiki/Universally_unique_identifier UUID]。
该值会被自动分配,请不要修改它。
</p>
<h3>[property:Array vertices]</h3>
<p>
[page:Vector3 vertices] 的队列。<br />
顶点的队列,保存了模型中每个顶点的位置信息。<br />
如果要标记队列中的数据已经更新,[page:.verticesNeedUpdate] 值需要被设置为 true。
</p>
<h3>[property:Boolean verticesNeedUpdate]</h3>
<p> 如果顶点队列中的数据被修改,该值需要被设置为 *true*。</p>
<h3>[property:Boolean elementsNeedUpdate]</h3>
<p> 如果面队列中的数据被修改,该值需要被设置为 *true*。</p>
<h3>[property:Boolean uvsNeedUpdate]</h3>
<p> 如果 UV 队列中的数据被修改,该值需要被设置为 *true*。</p>
<h3>[property:Boolean normalsNeedUpdate]</h3>
<p> 如果法向量队列中的数据被修改,该值需要被设置为 *true*。</p>
<h3>[property:Boolean colorsNeedUpdate]</h3>
<p> 如果颜色队列或 face3 的颜色数据被修改,该值需要被设置为 *true*。</p>
<h3>[property:Boolean groupsNeedUpdate]</h3>
<p> 如果 face3 的 materialIndex 被修改,该值需要被设置为 *true*。</p>
<h3>[property:Boolean lineDistancesNeedUpdate]</h3>
<p> 如果 linedistances 队列中的数据被修改,该值需要被设置为 *true*。</p>
<h2>方法</h2>
<h3>[page:EventDispatcher EventDispatcher] 该类中可用的函数。</h3>
<h3>[method:null applyMatrix4]( [param:Matrix4 matrix] )</h3>
<p> 将矩阵信息直接应用于几何体顶点坐标。</p>
<h3>[method:Geometry center] ()</h3>
<p> 基于外边界矩形将几何体居中。</p>
<h3>[method:Geometry clone]()</h3>
<p>克隆当前几何体。<br /><br />
该方法除几何体的顶点、面信息和 UV 外不会复制其他属性。
</p>
<h3>[method:null computeBoundingBox]()</h3>
<p> 计算当前几何体的外边界矩形。该方法会更新 [page:Geometry Geometry.boundingBox] 属性值。</p>
<h3>[method:null computeBoundingSphere]()</h3>
<p> 计算当前几何体的外边界球。该方法会更新 [page:Geometry Geometry.boundingSphere] 属性值。</p>
<p>
计算外边界矩形或外边界球并不是默认会自动调用的方法,这两个函数需要被显示的调用才能天得到相应属性值,否则对应属性值保持默认值 *null*。
</p>
<h3>[method:null computeFaceNormals]()</h3>
<p> 计算 [page:Face3.normal face normals] 值。</p>
<h3>[method:null computeFlatVertexNormals]()</h3>
<p> 计算 flat [page:Face3.vertexNormals vertex normals] 值。
该方法会将顶点法向量的值赋值为相应面的法向量值。</p>
<h3>[method:null computeMorphNormals]()</h3>
<p> 计算 [page:.morphNormals] 值。</p>
<h3>[method:null computeVertexNormals]( [param:Boolean areaWeighted] )</h3>
<p>
areaWeighted - 如果该值设置为 true,则每个面的法向量对顶点法向量的影响按照面的面积大小来计算。默认值为 true.<br /><br />
通过周围面的法向量计算顶点的法向量。
</p>
<h3>[method:Geometry copy]( [param:Geometry geometry] )</h3>
<p>
将参数代表的几何体的顶点、面和 UV 复制到当前几何体。该方法不会复制除此以外的别的属性值。
</p>
<h3>[method:null dispose]()</h3>
<p>
将对象从内存中删除。 <br />
在你删除一个几何体时,不要忘记调用该方法,否则会造成内存泄漏。
</p>
<h3>[method:Geometry fromBufferGeometry]( [param:BufferGeometry geometry] )</h3>
<p> 将一个 [page:BufferGeometry] 对象,转换成一个 Geometry 对象。</p>
<h3>[method:Geometry lookAt] ( [param:Vector3 vector] )</h3>
<p>
vector - 当前几何体朝向的世界坐标。<br /><br />
该方法将几何体进行旋转,是的几何体朝向参数指定的世界坐标。该方法一般在一次处理中完成,但不在渲染过程中执行。<br>
一般使用 [page:Object3D.lookAt] 方法进行实时更改。
</p>
<h3>[method:null merge]( [param:Geometry geometry], [param:Matrix4 matrix], [param:Integer materialIndexOffset] )</h3>
<p> 将两个几何体,或一个几何体和一个从对象中通过变换获得的几何体进行合并。</p>
<h3>[method:null mergeMesh]( [param:Mesh mesh] )</h3>
<p> 将参数指定的面片信息与当前几何体进行合并。同样会使用到参数 mesh 的变换。</p>
<h3>[method:null mergeVertices]()</h3>
<p>
通过 hashmap 检查重复的顶点。<br />
重复的顶点将会被移除,面的顶点信息会被更新。
</p>
<h3>[method:null normalize]()</h3>
<p>
将当前几何体归一化。 <br />
将当前几何体居中,并且使得该几何体的外边界球半径为 *1.0*。
</p>
<h3>[method:Geometry rotateX] ( [param:Float radians] )</h3>
<p>
将几何体绕 X 轴旋转参数指定度数。该操作通常在一次处理中完成,但不会在渲染过程中处理。<br>
使用 [page:Object3D.rotation] 对模型面片进行实时旋转处理。
</p>
<h3>[method:Geometry rotateY] ( [param:Float radians] )</h3>
<p>
将几何体绕 Y 轴旋转参数指定度数。该操作通常在一次处理中完成,但不会在渲染过程中处理。<br>
使用 [page:Object3D.rotation] 对模型面片进行实时旋转处理。
</p>
<h3>[method:Geometry rotateZ] ( [param:Float radians] )</h3>
<p>
将几何体绕 Z 轴旋转参数指定度数。该操作通常在一次处理中完成,但不会在渲染过程中处理。<br>
使用 [page:Object3D.rotation] 对模型面片进行实时旋转处理。
</p>
<h3>[method:Geometry setFromPoints] ( [param:Array points] )</h3>
<p>通过点队列设置一个 Geometry 中的顶点。</p>
<h3>[method:null sortFacesByMaterialIndex] ( )</h3>
<p>
通过材质索引对面队列进行排序。对于复杂且有多个材质的几何体,该操作可以有效减少 draw call 从而提升性能。
</p>
<h3>[method:Geometry scale] ( [param:Float x], [param:Float y], [param:Float z] )</h3>
<p>
缩放几何体大小。该操作通常在一次处理中完成,但不会在渲染过程中处理。<br>
使用 [page:Object3D.scale] 对模型面片进行实时缩放处理。
</p>
<h3>[method:JSON toJSON] ( )</h3>
<p> 将 Geometry 对象转为 JSON 格式。<br />
将几何体转换为 three.js [link:https://github.com/mrdoob/three.js/wiki/JSON-Object-Scene-format-4 JSON Object/Scene format](three.js JSON 物体/场景格式)。
</p>
<h3>[method:Geometry translate] ( [param:Float x], [param:Float y], [param:Float z] )</h3>
<p>
移动当前几何体。该操作通常在一次处理中完成,但不会在渲染过程中处理。<br>
使用 [page:Object3D.position] 对模型面片进行实时移动处理。
</p>
<h2>源代码</h2>
<p>
[link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
</p>
</body>
</html>
|
lib/xerces-2_11_0/docs/javadocs/xerces2/org/apache/xerces/impl/XMLDocumentScannerImpl.ContentDispatcher.html
|
jsalla/jatintest
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN""http://www.w3.org/TR/REC-html40/frameset.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc on Fri Nov 26 15:39:24 EST 2010 -->
<TITLE>
Xerces2 Implementation: Class XMLDocumentScannerImpl.ContentDispatcher
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
</HEAD>
<BODY BGCOLOR="white">
<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_top"><!-- --></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <A HREF="#main"><FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../serialized-form.html"><FONT CLASS="NavBarFont1"><B>Serialized</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../org/apache/xerces/impl/XMLDocumentScannerImpl.html"><B>PREV CLASS</B></A>
<A HREF="../../../../org/apache/xerces/impl/XMLDocumentScannerImpl.DTDDispatcher.html"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html" TARGET="_top"><B>FRAMES</B></A>
<A HREF="XMLDocumentScannerImpl.ContentDispatcher.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: INNER | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<!-- =========== END OF NAVBAR =========== -->
<HR>
<A NAME="main"></A>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
org.apache.xerces.impl</FONT>
<BR>
Class XMLDocumentScannerImpl.ContentDispatcher</H2>
<PRE>
java.lang.Object
|
+--<A HREF="../../../../org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.FragmentContentDispatcher.html">org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.FragmentContentDispatcher</A>
|
+--<B>org.apache.xerces.impl.XMLDocumentScannerImpl.ContentDispatcher</B>
</PRE>
<DL>
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../../org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.Dispatcher.html">XMLDocumentFragmentScannerImpl.Dispatcher</A></DD>
</DL>
<DL>
<DT><B>Direct Known Subclasses:</B> <DD><A HREF="../../../../org/apache/xerces/impl/XML11NSDocumentScannerImpl.NS11ContentDispatcher.html">XML11NSDocumentScannerImpl.NS11ContentDispatcher</A>, <A HREF="../../../../org/apache/xerces/impl/XMLNSDocumentScannerImpl.NSContentDispatcher.html">XMLNSDocumentScannerImpl.NSContentDispatcher</A></DD>
</DL>
<DL>
<DT><B>Enclosing class: </B><DD><A HREF="../../../../org/apache/xerces/impl/XMLDocumentScannerImpl.html">XMLDocumentScannerImpl</A></DD>
</DL>
<HR>
<DL>
<DT>protected class <B>XMLDocumentScannerImpl.ContentDispatcher</B><DT>extends <A HREF="../../../../org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.FragmentContentDispatcher.html">XMLDocumentFragmentScannerImpl.FragmentContentDispatcher</A></DL>
<P>
Dispatcher to handle content scanning.
<P>
<DL>
<DT><B>Author: </B><DD>Andy Clark, IBM, Eric Ye, IBM</DD>
</DL>
<HR>
<P>
<!-- ======== INNER CLASS SUMMARY ======== -->
<!-- =========== FIELD SUMMARY =========== -->
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN=2><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected </CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/xerces/impl/XMLDocumentScannerImpl.ContentDispatcher.html#XMLDocumentScannerImpl.ContentDispatcher(org.apache.xerces.impl.XMLDocumentScannerImpl)">XMLDocumentScannerImpl.ContentDispatcher</A></B>()</CODE>
<BR>
</TD>
</TR>
</TABLE>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN=2><FONT SIZE="+2">
<B>Method Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/xerces/impl/XMLDocumentScannerImpl.ContentDispatcher.html#elementDepthIsZeroHook()">elementDepthIsZeroHook</A></B>()</CODE>
<BR>
Element depth iz zero.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/xerces/impl/XMLDocumentScannerImpl.ContentDispatcher.html#endOfFileHook(java.io.EOFException)">endOfFileHook</A></B>(java.io.EOFException e)</CODE>
<BR>
End of file hook.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/xerces/impl/XMLDocumentScannerImpl.ContentDispatcher.html#resolveExternalSubsetAndRead()">resolveExternalSubsetAndRead</A></B>()</CODE>
<BR>
Attempt to locate an external subset for a document that does not otherwise
have one.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/xerces/impl/XMLDocumentScannerImpl.ContentDispatcher.html#scanForDoctypeHook()">scanForDoctypeHook</A></B>()</CODE>
<BR>
Scan for DOCTYPE hook.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/xerces/impl/XMLDocumentScannerImpl.ContentDispatcher.html#scanRootElementHook()">scanRootElementHook</A></B>()</CODE>
<BR>
Scan for root element hook.</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.FragmentContentDispatcher"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class org.apache.xerces.impl.<A HREF="../../../../org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.FragmentContentDispatcher.html">XMLDocumentFragmentScannerImpl.FragmentContentDispatcher</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../../org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.FragmentContentDispatcher.html#dispatch(boolean)">dispatch</A></CODE></TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ============ FIELD DETAIL =========== -->
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="XMLDocumentScannerImpl.ContentDispatcher(org.apache.xerces.impl.XMLDocumentScannerImpl)"><!-- --></A><H3>
XMLDocumentScannerImpl.ContentDispatcher</H3>
<PRE>
protected <B>XMLDocumentScannerImpl.ContentDispatcher</B>()</PRE>
<DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Method Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="scanForDoctypeHook()"><!-- --></A><H3>
scanForDoctypeHook</H3>
<PRE>
protected boolean <B>scanForDoctypeHook</B>()
throws java.io.IOException,
org.apache.xerces.xni.XNIException</PRE>
<DL>
<DD>Scan for DOCTYPE hook. This method is a hook for subclasses
to add code to handle scanning for a the "DOCTYPE" string
after the string "<!" has been scanned.<DD><DL>
<DT><B>Overrides:</B><DD><CODE><A HREF="../../../../org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.FragmentContentDispatcher.html#scanForDoctypeHook()">scanForDoctypeHook</A></CODE> in class <CODE><A HREF="../../../../org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.FragmentContentDispatcher.html">XMLDocumentFragmentScannerImpl.FragmentContentDispatcher</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>True if the "DOCTYPE" was scanned; false if "DOCTYPE"
was not scanned.</DL>
</DD>
</DL>
<HR>
<A NAME="elementDepthIsZeroHook()"><!-- --></A><H3>
elementDepthIsZeroHook</H3>
<PRE>
protected boolean <B>elementDepthIsZeroHook</B>()
throws java.io.IOException,
org.apache.xerces.xni.XNIException</PRE>
<DL>
<DD>Element depth iz zero. This methos is a hook for subclasses
to add code to handle when the element depth hits zero. When
scanning a document fragment, an element depth of zero is
normal. However, when scanning a full XML document, the
scanner must handle the trailing miscellanous section of
the document after the end of the document's root element.<DD><DL>
<DT><B>Overrides:</B><DD><CODE><A HREF="../../../../org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.FragmentContentDispatcher.html#elementDepthIsZeroHook()">elementDepthIsZeroHook</A></CODE> in class <CODE><A HREF="../../../../org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.FragmentContentDispatcher.html">XMLDocumentFragmentScannerImpl.FragmentContentDispatcher</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>True if the caller should stop and return true which
allows the scanner to switch to a new scanning
dispatcher. A return value of false indicates that
the content dispatcher should continue as normal.</DL>
</DD>
</DL>
<HR>
<A NAME="scanRootElementHook()"><!-- --></A><H3>
scanRootElementHook</H3>
<PRE>
protected boolean <B>scanRootElementHook</B>()
throws java.io.IOException,
org.apache.xerces.xni.XNIException</PRE>
<DL>
<DD>Scan for root element hook. This method is a hook for
subclasses to add code that handles scanning for the root
element. When scanning a document fragment, there is no
"root" element. However, when scanning a full XML document,
the scanner must handle the root element specially.<DD><DL>
<DT><B>Overrides:</B><DD><CODE><A HREF="../../../../org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.FragmentContentDispatcher.html#scanRootElementHook()">scanRootElementHook</A></CODE> in class <CODE><A HREF="../../../../org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.FragmentContentDispatcher.html">XMLDocumentFragmentScannerImpl.FragmentContentDispatcher</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>True if the caller should stop and return true which
allows the scanner to switch to a new scanning
dispatcher. A return value of false indicates that
the content dispatcher should continue as normal.</DL>
</DD>
</DL>
<HR>
<A NAME="endOfFileHook(java.io.EOFException)"><!-- --></A><H3>
endOfFileHook</H3>
<PRE>
protected void <B>endOfFileHook</B>(java.io.EOFException e)
throws java.io.IOException,
org.apache.xerces.xni.XNIException</PRE>
<DL>
<DD>End of file hook. This method is a hook for subclasses to
add code that handles the end of file. The end of file in
a document fragment is OK if the markup depth is zero.
However, when scanning a full XML document, an end of file
is always premature.<DD><DL>
<DT><B>Overrides:</B><DD><CODE><A HREF="../../../../org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.FragmentContentDispatcher.html#endOfFileHook(java.io.EOFException)">endOfFileHook</A></CODE> in class <CODE><A HREF="../../../../org/apache/xerces/impl/XMLDocumentFragmentScannerImpl.FragmentContentDispatcher.html">XMLDocumentFragmentScannerImpl.FragmentContentDispatcher</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="resolveExternalSubsetAndRead()"><!-- --></A><H3>
resolveExternalSubsetAndRead</H3>
<PRE>
protected void <B>resolveExternalSubsetAndRead</B>()
throws java.io.IOException,
org.apache.xerces.xni.XNIException</PRE>
<DL>
<DD><p>Attempt to locate an external subset for a document that does not otherwise
have one. If an external subset is located, then it is scanned.</p></DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_bottom"><!-- --></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <A HREF="#main"><FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../serialized-form.html"><FONT CLASS="NavBarFont1"><B>Serialized</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../org/apache/xerces/impl/XMLDocumentScannerImpl.html"><B>PREV CLASS</B></A>
<A HREF="../../../../org/apache/xerces/impl/XMLDocumentScannerImpl.DTDDispatcher.html"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html" TARGET="_top"><B>FRAMES</B></A>
<A HREF="XMLDocumentScannerImpl.ContentDispatcher.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: INNER | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<!-- =========== END OF NAVBAR =========== -->
<HR>
Copyright © 1999-2010 The Apache Software Foundation. All Rights Reserved.
</BODY>
</HTML>
|
css/fusioncss.blue.pink.css
|
fusionCSS/fusionCSS
|
/**
* Copyright (c) 2013 - 2019 fusionCSS. All rights reserved.
* @link http://fusionCSS.com
* @version 3.2.0
*/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
line-height: 1.5;
font-size: 1rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin-top: .5rem;
margin-bottom: 1rem;
font-weight: 500;
}
h1 {
font-size: 2.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.75rem;
}
h4 {
font-size: 1.5rem;
}
h5 {
font-size: 1.25rem;
}
h6 {
font-size: 1rem;
}
p {
margin-top: 0;
margin-bottom: 1rem;
}
pre {
font-size: 1rem;
white-space: pre-wrap;
}
hr {
border: none;
border-top: 1px solid rgba(0, 0, 0, 0.26);
margin: 1rem 0;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
.text-justify {
text-align: justify;
}
.text-nowrap {
white-space: nowrap;
}
.pull-left {
float: left !important;
}
.pull-right {
float: right !important;
}
@media (max-width: 767px) {
.pull-left-t {
float: left !important;
}
.pull-right-t {
float: right !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.pull-left-s {
float: left !important;
}
.pull-right-s {
float: right !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.pull-left-m {
float: left !important;
}
.pull-right-m {
float: right !important;
}
}
@media (min-width: 1200px) {
.pull-left-l {
float: left !important;
}
.pull-right-l {
float: right !important;
}
}
ul,
ol {
margin: 0 0 1rem 2rem;
}
dt {
font-weight: bold;
}
dd {
margin-bottom: 1rem;
}
blockquote {
border-left: 6px solid #FF4081;
padding: .25rem 0 .25rem 1rem;
margin: 1rem 0;
}
blockquote p:last-child {
margin-bottom: 0;
}
blockquote cite:before {
font-size: .85rem;
content: '\2014';
margin-right: .5rem;
color: rgba(0, 0, 0, 0.54);
}
blockquote cite {
display: block;
font-size: .85rem;
color: rgba(0, 0, 0, 0.54);
}
.row {
clear: both;
}
.row .row {
margin-left: -0.75rem;
margin-right: -0.75rem;
}
.row [class*="span-"] {
display: block;
min-height: 1px;
padding-left: 0.75rem;
padding-right: 0.75rem;
}
.row [class*="span-"].no-left-gutter {
padding-left: 0;
}
.row [class*="span-"].no-right-gutter {
padding-right: 0;
}
.row [class*="span-"].no-gutter {
padding-left: 0;
padding-right: 0;
}
.row [class*="span-t"] {
float: left;
position: relative;
}
.row [class*="span-"].left-gutter-t {
padding-left: 0.75rem;
}
.row [class*="span-"].no-left-gutter-t {
padding-left: 0;
}
.row [class*="span-"].right-gutter-t {
padding-right: 0.75rem;
}
.row [class*="span-"].no-right-gutter-t {
padding-right: 0;
}
.row [class*="span-"].gutter-t {
padding-left: 0.75rem;
padding-right: 0.75rem;
}
.row [class*="span-"].no-gutter-t {
padding-left: 0;
padding-right: 0;
}
.row .span-t-push0 {
left: inherit;
}
.row .span-t-pull0 {
right: inherit;
}
.row .span-t12 {
width: 100%;
}
.row .offset-t12 {
margin-left: 100%;
}
.row .span-t-push12 {
left: 100%;
}
.row .span-t-pull12 {
right: 100%;
}
.row .span-t11 {
width: 91.66666667%;
}
.row .offset-t11 {
margin-left: 91.66666667%;
}
.row .span-t-push11 {
left: 91.66666667%;
}
.row .span-t-pull11 {
right: 91.66666667%;
}
.row .span-t10 {
width: 83.33333333%;
}
.row .offset-t10 {
margin-left: 83.33333333%;
}
.row .span-t-push10 {
left: 83.33333333%;
}
.row .span-t-pull10 {
right: 83.33333333%;
}
.row .span-t9 {
width: 75%;
}
.row .offset-t9 {
margin-left: 75%;
}
.row .span-t-push9 {
left: 75%;
}
.row .span-t-pull9 {
right: 75%;
}
.row .span-t8 {
width: 66.66666667%;
}
.row .offset-t8 {
margin-left: 66.66666667%;
}
.row .span-t-push8 {
left: 66.66666667%;
}
.row .span-t-pull8 {
right: 66.66666667%;
}
.row .span-t7 {
width: 58.33333333%;
}
.row .offset-t7 {
margin-left: 58.33333333%;
}
.row .span-t-push7 {
left: 58.33333333%;
}
.row .span-t-pull7 {
right: 58.33333333%;
}
.row .span-t6 {
width: 50%;
}
.row .offset-t6 {
margin-left: 50%;
}
.row .span-t-push6 {
left: 50%;
}
.row .span-t-pull6 {
right: 50%;
}
.row .span-t5 {
width: 41.66666667%;
}
.row .offset-t5 {
margin-left: 41.66666667%;
}
.row .span-t-push5 {
left: 41.66666667%;
}
.row .span-t-pull5 {
right: 41.66666667%;
}
.row .span-t4 {
width: 33.33333333%;
}
.row .offset-t4 {
margin-left: 33.33333333%;
}
.row .span-t-push4 {
left: 33.33333333%;
}
.row .span-t-pull4 {
right: 33.33333333%;
}
.row .span-t3 {
width: 25%;
}
.row .offset-t3 {
margin-left: 25%;
}
.row .span-t-push3 {
left: 25%;
}
.row .span-t-pull3 {
right: 25%;
}
.row .span-t2 {
width: 16.66666667%;
}
.row .offset-t2 {
margin-left: 16.66666667%;
}
.row .span-t-push2 {
left: 16.66666667%;
}
.row .span-t-pull2 {
right: 16.66666667%;
}
.row .span-t1 {
width: 8.33333333%;
}
.row .offset-t1 {
margin-left: 8.33333333%;
}
.row .span-t-push1 {
left: 8.33333333%;
}
.row .span-t-pull1 {
right: 8.33333333%;
}
@media (min-width: 768px) {
.row [class*="span-s"] {
float: left;
position: relative;
}
.row [class*="span-"].left-gutter-s {
padding-left: 0.75rem;
}
.row [class*="span-"].no-left-gutter-s {
padding-left: 0;
}
.row [class*="span-"].right-gutter-s {
padding-right: 0.75rem;
}
.row [class*="span-"].no-right-gutter-s {
padding-right: 0;
}
.row [class*="span-"].gutter-s {
padding-left: 0.75rem;
padding-right: 0.75rem;
}
.row [class*="span-"].no-gutter-s {
padding-left: 0;
padding-right: 0;
}
.row .span-s-push0 {
left: inherit;
}
.row .span-s-pull0 {
right: inherit;
}
.row .span-s12 {
width: 100%;
}
.row .offset-s12 {
margin-left: 100%;
}
.row .span-s-push12 {
left: 100%;
}
.row .span-s-pull12 {
right: 100%;
}
.row .span-s11 {
width: 91.66666667%;
}
.row .offset-s11 {
margin-left: 91.66666667%;
}
.row .span-s-push11 {
left: 91.66666667%;
}
.row .span-s-pull11 {
right: 91.66666667%;
}
.row .span-s10 {
width: 83.33333333%;
}
.row .offset-s10 {
margin-left: 83.33333333%;
}
.row .span-s-push10 {
left: 83.33333333%;
}
.row .span-s-pull10 {
right: 83.33333333%;
}
.row .span-s9 {
width: 75%;
}
.row .offset-s9 {
margin-left: 75%;
}
.row .span-s-push9 {
left: 75%;
}
.row .span-s-pull9 {
right: 75%;
}
.row .span-s8 {
width: 66.66666667%;
}
.row .offset-s8 {
margin-left: 66.66666667%;
}
.row .span-s-push8 {
left: 66.66666667%;
}
.row .span-s-pull8 {
right: 66.66666667%;
}
.row .span-s7 {
width: 58.33333333%;
}
.row .offset-s7 {
margin-left: 58.33333333%;
}
.row .span-s-push7 {
left: 58.33333333%;
}
.row .span-s-pull7 {
right: 58.33333333%;
}
.row .span-s6 {
width: 50%;
}
.row .offset-s6 {
margin-left: 50%;
}
.row .span-s-push6 {
left: 50%;
}
.row .span-s-pull6 {
right: 50%;
}
.row .span-s5 {
width: 41.66666667%;
}
.row .offset-s5 {
margin-left: 41.66666667%;
}
.row .span-s-push5 {
left: 41.66666667%;
}
.row .span-s-pull5 {
right: 41.66666667%;
}
.row .span-s4 {
width: 33.33333333%;
}
.row .offset-s4 {
margin-left: 33.33333333%;
}
.row .span-s-push4 {
left: 33.33333333%;
}
.row .span-s-pull4 {
right: 33.33333333%;
}
.row .span-s3 {
width: 25%;
}
.row .offset-s3 {
margin-left: 25%;
}
.row .span-s-push3 {
left: 25%;
}
.row .span-s-pull3 {
right: 25%;
}
.row .span-s2 {
width: 16.66666667%;
}
.row .offset-s2 {
margin-left: 16.66666667%;
}
.row .span-s-push2 {
left: 16.66666667%;
}
.row .span-s-pull2 {
right: 16.66666667%;
}
.row .span-s1 {
width: 8.33333333%;
}
.row .offset-s1 {
margin-left: 8.33333333%;
}
.row .span-s-push1 {
left: 8.33333333%;
}
.row .span-s-pull1 {
right: 8.33333333%;
}
}
@media (min-width: 992px) {
.row [class*="span-m"] {
float: left;
position: relative;
}
.row [class*="span-"].left-gutter-m {
padding-left: 0.75rem;
}
.row [class*="span-"].no-left-gutter-m {
padding-left: 0;
}
.row [class*="span-"].right-gutter-m {
padding-right: 0.75rem;
}
.row [class*="span-"].no-right-gutter-m {
padding-right: 0;
}
.row [class*="span-"].gutter-m {
padding-left: 0.75rem;
padding-right: 0.75rem;
}
.row [class*="span-"].no-gutter-m {
padding-left: 0;
padding-right: 0;
}
.row .span-m-push0 {
left: inherit;
}
.row .span-m-pull0 {
right: inherit;
}
.row .span-m12 {
width: 100%;
}
.row .offset-m12 {
margin-left: 100%;
}
.row .span-m-push12 {
left: 100%;
}
.row .span-m-pull12 {
right: 100%;
}
.row .span-m11 {
width: 91.66666667%;
}
.row .offset-m11 {
margin-left: 91.66666667%;
}
.row .span-m-push11 {
left: 91.66666667%;
}
.row .span-m-pull11 {
right: 91.66666667%;
}
.row .span-m10 {
width: 83.33333333%;
}
.row .offset-m10 {
margin-left: 83.33333333%;
}
.row .span-m-push10 {
left: 83.33333333%;
}
.row .span-m-pull10 {
right: 83.33333333%;
}
.row .span-m9 {
width: 75%;
}
.row .offset-m9 {
margin-left: 75%;
}
.row .span-m-push9 {
left: 75%;
}
.row .span-m-pull9 {
right: 75%;
}
.row .span-m8 {
width: 66.66666667%;
}
.row .offset-m8 {
margin-left: 66.66666667%;
}
.row .span-m-push8 {
left: 66.66666667%;
}
.row .span-m-pull8 {
right: 66.66666667%;
}
.row .span-m7 {
width: 58.33333333%;
}
.row .offset-m7 {
margin-left: 58.33333333%;
}
.row .span-m-push7 {
left: 58.33333333%;
}
.row .span-m-pull7 {
right: 58.33333333%;
}
.row .span-m6 {
width: 50%;
}
.row .offset-m6 {
margin-left: 50%;
}
.row .span-m-push6 {
left: 50%;
}
.row .span-m-pull6 {
right: 50%;
}
.row .span-m5 {
width: 41.66666667%;
}
.row .offset-m5 {
margin-left: 41.66666667%;
}
.row .span-m-push5 {
left: 41.66666667%;
}
.row .span-m-pull5 {
right: 41.66666667%;
}
.row .span-m4 {
width: 33.33333333%;
}
.row .offset-m4 {
margin-left: 33.33333333%;
}
.row .span-m-push4 {
left: 33.33333333%;
}
.row .span-m-pull4 {
right: 33.33333333%;
}
.row .span-m3 {
width: 25%;
}
.row .offset-m3 {
margin-left: 25%;
}
.row .span-m-push3 {
left: 25%;
}
.row .span-m-pull3 {
right: 25%;
}
.row .span-m2 {
width: 16.66666667%;
}
.row .offset-m2 {
margin-left: 16.66666667%;
}
.row .span-m-push2 {
left: 16.66666667%;
}
.row .span-m-pull2 {
right: 16.66666667%;
}
.row .span-m1 {
width: 8.33333333%;
}
.row .offset-m1 {
margin-left: 8.33333333%;
}
.row .span-m-push1 {
left: 8.33333333%;
}
.row .span-m-pull1 {
right: 8.33333333%;
}
}
@media (min-width: 1200px) {
.row [class*="span-l"] {
float: left;
position: relative;
}
.row [class*="span-"].left-gutter-l {
padding-left: 0.75rem;
}
.row [class*="span-"].no-left-gutter-l {
padding-left: 0;
}
.row [class*="span-"].right-gutter-l {
padding-right: 0.75rem;
}
.row [class*="span-"].no-right-gutter-l {
padding-right: 0;
}
.row [class*="span-"].gutter-l {
padding-left: 0.75rem;
padding-right: 0.75rem;
}
.row [class*="span-"].no-gutter-l {
padding-left: 0;
padding-right: 0;
}
.row .span-l-push0 {
left: inherit;
}
.row .span-l-pull0 {
right: inherit;
}
.row .span-l12 {
width: 100%;
}
.row .offset-l12 {
margin-left: 100%;
}
.row .span-l-push12 {
left: 100%;
}
.row .span-l-pull12 {
right: 100%;
}
.row .span-l11 {
width: 91.66666667%;
}
.row .offset-l11 {
margin-left: 91.66666667%;
}
.row .span-l-push11 {
left: 91.66666667%;
}
.row .span-l-pull11 {
right: 91.66666667%;
}
.row .span-l10 {
width: 83.33333333%;
}
.row .offset-l10 {
margin-left: 83.33333333%;
}
.row .span-l-push10 {
left: 83.33333333%;
}
.row .span-l-pull10 {
right: 83.33333333%;
}
.row .span-l9 {
width: 75%;
}
.row .offset-l9 {
margin-left: 75%;
}
.row .span-l-push9 {
left: 75%;
}
.row .span-l-pull9 {
right: 75%;
}
.row .span-l8 {
width: 66.66666667%;
}
.row .offset-l8 {
margin-left: 66.66666667%;
}
.row .span-l-push8 {
left: 66.66666667%;
}
.row .span-l-pull8 {
right: 66.66666667%;
}
.row .span-l7 {
width: 58.33333333%;
}
.row .offset-l7 {
margin-left: 58.33333333%;
}
.row .span-l-push7 {
left: 58.33333333%;
}
.row .span-l-pull7 {
right: 58.33333333%;
}
.row .span-l6 {
width: 50%;
}
.row .offset-l6 {
margin-left: 50%;
}
.row .span-l-push6 {
left: 50%;
}
.row .span-l-pull6 {
right: 50%;
}
.row .span-l5 {
width: 41.66666667%;
}
.row .offset-l5 {
margin-left: 41.66666667%;
}
.row .span-l-push5 {
left: 41.66666667%;
}
.row .span-l-pull5 {
right: 41.66666667%;
}
.row .span-l4 {
width: 33.33333333%;
}
.row .offset-l4 {
margin-left: 33.33333333%;
}
.row .span-l-push4 {
left: 33.33333333%;
}
.row .span-l-pull4 {
right: 33.33333333%;
}
.row .span-l3 {
width: 25%;
}
.row .offset-l3 {
margin-left: 25%;
}
.row .span-l-push3 {
left: 25%;
}
.row .span-l-pull3 {
right: 25%;
}
.row .span-l2 {
width: 16.66666667%;
}
.row .offset-l2 {
margin-left: 16.66666667%;
}
.row .span-l-push2 {
left: 16.66666667%;
}
.row .span-l-pull2 {
right: 16.66666667%;
}
.row .span-l1 {
width: 8.33333333%;
}
.row .offset-l1 {
margin-left: 8.33333333%;
}
.row .span-l-push1 {
left: 8.33333333%;
}
.row .span-l-pull1 {
right: 8.33333333%;
}
}
@media (min-width: 1600px) {
.row [class*="span-x"] {
float: left;
position: relative;
}
.row [class*="span-"].left-gutter-x {
padding-left: 0.75rem;
}
.row [class*="span-"].no-left-gutter-x {
padding-left: 0;
}
.row [class*="span-"].right-gutter-x {
padding-right: 0.75rem;
}
.row [class*="span-"].no-right-gutter-x {
padding-right: 0;
}
.row [class*="span-"].gutter-x {
padding-left: 0.75rem;
padding-right: 0.75rem;
}
.row [class*="span-"].no-gutter-x {
padding-left: 0;
padding-right: 0;
}
.row .span-x-push0 {
left: inherit;
}
.row .span-x-pull0 {
right: inherit;
}
.row .span-x12 {
width: 100%;
}
.row .offset-x12 {
margin-left: 100%;
}
.row .span-x-push12 {
left: 100%;
}
.row .span-x-pull12 {
right: 100%;
}
.row .span-x11 {
width: 91.66666667%;
}
.row .offset-x11 {
margin-left: 91.66666667%;
}
.row .span-x-push11 {
left: 91.66666667%;
}
.row .span-x-pull11 {
right: 91.66666667%;
}
.row .span-x10 {
width: 83.33333333%;
}
.row .offset-x10 {
margin-left: 83.33333333%;
}
.row .span-x-push10 {
left: 83.33333333%;
}
.row .span-x-pull10 {
right: 83.33333333%;
}
.row .span-x9 {
width: 75%;
}
.row .offset-x9 {
margin-left: 75%;
}
.row .span-x-push9 {
left: 75%;
}
.row .span-x-pull9 {
right: 75%;
}
.row .span-x8 {
width: 66.66666667%;
}
.row .offset-x8 {
margin-left: 66.66666667%;
}
.row .span-x-push8 {
left: 66.66666667%;
}
.row .span-x-pull8 {
right: 66.66666667%;
}
.row .span-x7 {
width: 58.33333333%;
}
.row .offset-x7 {
margin-left: 58.33333333%;
}
.row .span-x-push7 {
left: 58.33333333%;
}
.row .span-x-pull7 {
right: 58.33333333%;
}
.row .span-x6 {
width: 50%;
}
.row .offset-x6 {
margin-left: 50%;
}
.row .span-x-push6 {
left: 50%;
}
.row .span-x-pull6 {
right: 50%;
}
.row .span-x5 {
width: 41.66666667%;
}
.row .offset-x5 {
margin-left: 41.66666667%;
}
.row .span-x-push5 {
left: 41.66666667%;
}
.row .span-x-pull5 {
right: 41.66666667%;
}
.row .span-x4 {
width: 33.33333333%;
}
.row .offset-x4 {
margin-left: 33.33333333%;
}
.row .span-x-push4 {
left: 33.33333333%;
}
.row .span-x-pull4 {
right: 33.33333333%;
}
.row .span-x3 {
width: 25%;
}
.row .offset-x3 {
margin-left: 25%;
}
.row .span-x-push3 {
left: 25%;
}
.row .span-x-pull3 {
right: 25%;
}
.row .span-x2 {
width: 16.66666667%;
}
.row .offset-x2 {
margin-left: 16.66666667%;
}
.row .span-x-push2 {
left: 16.66666667%;
}
.row .span-x-pull2 {
right: 16.66666667%;
}
.row .span-x1 {
width: 8.33333333%;
}
.row .offset-x1 {
margin-left: 8.33333333%;
}
.row .span-x-push1 {
left: 8.33333333%;
}
.row .span-x-pull1 {
right: 8.33333333%;
}
}
.sr-only {
position: absolute !important;
clip: rect(1px, 1px, 1px, 1px);
width: 1px;
height: 1px;
overflow: hidden;
padding: 0;
margin: -1;
}
@-ms-viewport {
width: device-width;
}
.clear,
.row:after,
.hnav:after,
.vnav:after,
form:after,
.tabs:after,
.tabpanels > li:after,
.appbar:after {
content: " ";
display: block;
height: 0;
line-height: 0;
clear: both;
visibility: hidden;
}
img {
max-width: 100%;
height: auto;
border: none;
-ms-interpolation-mode: bicubic;
vertical-align: middle;
}
.embed-responsive,
.flex-video {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
}
.embed-responsive.responsive-16by9,
.flex-video.responsive-16by9 {
padding-bottom: 56.25%;
}
.embed-responsive.responsive-4by3,
.flex-video.responsive-4by3 {
padding-bottom: 75%;
}
.embed-responsive iframe,
.flex-video iframe,
.embed-responsive object,
.flex-video object,
.embed-responsive embed,
.flex-video embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.text-color {
color: rgba(0, 0, 0, 0.87);
}
.primary {
color: #2196F3;
}
.primary-light {
color: #BBDEFB;
}
.primary-dark {
color: #1976D2;
}
.primary-bg {
background-color: #2196F3;
}
.primary-bg-light {
background-color: #BBDEFB;
}
.primary-bg-dark {
background-color: #1976D2;
}
.accent {
color: #FF4081;
}
.accent-bg {
background-color: #FF4081;
}
.block-center {
position: relative;
left: 50%;
transform: translateX(-50%);
}
table {
margin: 1rem 0;
width: 100%;
border-spacing: 0;
border-collapse: collapse;
}
table th {
color: rgba(0, 0, 0, 0.54);
font-weight: normal;
border-bottom: 2px solid rgba(0, 0, 0, 0.12);
}
table td,
table th {
text-align: left;
padding: .25rem .5rem;
vertical-align: middle;
}
table.striped tr td {
background-color: rgba(0, 0, 0, 0.05);
}
table.striped tr:nth-child(even) td {
background-color: transparent;
}
table.rowhover tr td {
transition: all 150ms linear;
}
table.rowhover tr:hover td {
background-color: #E0E0E0;
}
table.bordered td {
border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
table.centered td,
table.centered th {
text-align: center;
}
table.valigntop td,
table.valigntop th {
vertical-align: top;
}
table.valignbottom td,
table.valignbottom th {
vertical-align: bottom;
}
table.responsive {
margin: 0;
width: 100%;
}
div.responsiveTableWrapper {
width: 100%;
margin: 1rem 0;
}
div.responsiveTableWrapperInner {
position: relative;
overflow: auto;
overflow-y: hidden;
-ms-overflow-style: -ms-autohiding-scrollbar;
-webkit-overflow-scrolling: touch;
}
.paginationwidget {
display: table;
margin: 0 auto;
list-style: none;
text-align: center;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.paginationwidget li {
display: inline-block;
margin-right: .2rem;
}
.paginationwidget li:last-child {
margin-right: 0;
}
.paginationwidget li span,
.paginationwidget li a {
display: inline-block;
text-decoration: none;
padding: .2rem .75rem;
color: rgba(0, 0, 0, 0.87);
border-radius: 3px;
}
.paginationwidget li span {
color: #ffffff;
background-color: #FF4081;
}
.paginationwidget li a:hover {
background-color: #EEEEEE;
}
.breadcrumbwidget {
list-style: none;
margin: .5rem 0;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.breadcrumbwidget li {
display: inline-block;
margin-right: .25rem;
color: rgba(0, 0, 0, 0.87);
}
.breadcrumbwidget li:last-child {
font-weight: 600;
}
.breadcrumbwidget a {
text-decoration: none;
color: rgba(0, 0, 0, 0.87);
border: 1px solid transparent;
padding: .25rem;
}
.breadcrumbwidget a:hover {
color: rgba(0, 0, 0, 0.87);
border-color: rgba(0, 0, 0, 0.26);
text-decoration: none;
}
.breadcrumbwidget li + li:before {
content: " >";
font-weight: bold;
margin-right: .25rem;
}
.breadcrumbwidget.path li + li:before {
content: " /";
}
.breadcrumbwidget.section li + li:before {
content: " |";
}
.breadcrumbwidget.flat {
text-align: center;
display: inline-block;
overflow: hidden;
background-color: #ffffff;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
border-radius: 3px;
}
.breadcrumbwidget.flat li {
display: block;
float: left;
text-decoration: none;
outline: none;
line-height: 2rem;
position: relative;
margin: 0;
}
.breadcrumbwidget.flat li + li:before {
display: none;
}
.breadcrumbwidget.flat li:first-child {
border-radius: 3px 0 0 3px;
}
.breadcrumbwidget.flat li:first-child a,
.breadcrumbwidget.flat li:first-child span {
padding-left: 1.5rem;
}
.breadcrumbwidget.flat li:last-child {
border-radius: 0 3px 3px 0;
}
.breadcrumbwidget.flat li:last-child a,
.breadcrumbwidget.flat li:last-child span {
padding-right: 1.5rem;
}
.breadcrumbwidget.flat li:last-child a:after,
.breadcrumbwidget.flat li:last-child span:after {
content: none;
}
.breadcrumbwidget.flat li span {
padding: 0 1rem 0 2rem;
}
.breadcrumbwidget.flat li a {
color: rgba(0, 0, 0, 0.87);
background-color: transparent;
display: block;
padding: 0 1rem 0 2rem;
border: none;
transition: all 0.25s linear;
}
.breadcrumbwidget.flat li a:after {
content: '';
position: absolute;
top: 0;
right: -0.925rem;
width: 2rem;
height: 2rem;
z-index: 1;
background-color: #ffffff;
transform: rotate(45deg) scale(0.65) skew(0deg) translate(0, 0);
box-shadow: 2px -2px 0 2px #FF4081;
border-radius: 0 3px 0 100%;
transition: all 0.25s linear;
}
.breadcrumbwidget.flat li a:hover {
color: #ffffff;
background-color: #FF4081;
}
.breadcrumbwidget.flat li a:hover:after {
background-color: #FF4081;
}
.hnav,
.vnav {
background-color: #2196F3;
list-style: none;
margin: 0;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.hnav li a,
.vnav li a {
padding: .5rem 1rem;
display: block;
color: #ffffff;
text-decoration: none;
}
.hnav li a:hover,
.vnav li a:hover {
background-color: #39a1f4;
}
.hnav .active a,
.vnav .active a {
background-color: #39a1f4;
}
.hnav.pill,
.vnav.pill {
background-color: transparent;
}
.hnav.pill a,
.vnav.pill a {
border-radius: 3px;
background-color: #2196F3;
}
.hnav.pill li,
.vnav.pill li {
margin-right: .5rem;
}
.hnav li {
float: left;
}
.alert {
text-align: left;
padding: .5rem;
overflow: hidden;
margin: 1rem 0;
}
.alert a {
text-decoration: underline;
}
.alert a:hover {
text-decoration: none;
}
.alert.success {
color: #ffffff;
background-color: #7CB342;
}
.alert.success a {
color: #ffffff;
}
.alert.error {
color: #ffffff;
background-color: #E53935;
}
.alert.error a {
color: #ffffff;
}
.alert.warning {
color: #ffffff;
background-color: #FFA000;
}
.alert.warning a {
color: #ffffff;
}
.alert.info {
color: #ffffff;
background-color: #1976D2;
}
.alert.info a {
color: #ffffff;
}
.show {
display: inherit !important;
}
.hide {
display: none !important;
}
.visible-t,
.visible-phone,
.visible-t-block,
.visible-t-inline,
.visible-t-inline-block,
.visible-s,
.visible-tablet,
.visible-s-block,
.visible-s-inline,
.visible-s-inline-block,
.visible-m,
.visible-desktop,
.visible-m-block,
.visible-m-inline,
.visible-m-inline-block,
.visible-l,
.visible-l-block,
.visible-l-inline,
.visible-l-inline-block,
.visible-x,
.visible-x-block,
.visible-x-inline,
.visible-x-inline-block {
display: none !important;
}
@media (max-width: 767px) {
.visible-t,
.visible-phone {
display: inherit !important;
}
.hidden-t,
.hidden-phone {
display: none !important;
}
.visible-t-block {
display: block !important;
}
.visible-t-inline {
display: inline !important;
}
.visible-t-inline-block {
display: inline-block !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.visible-s,
.visible-tablet {
display: inherit !important;
}
.hidden-s,
.hidden-tablet {
display: none !important;
}
.visible-s-block {
display: block !important;
}
.visible-s-inline {
display: inline !important;
}
.visible-s-inline-block {
display: inline-block !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.visible-m,
.visible-desktop {
display: inherit !important;
}
.hidden-m,
.hidden-desktop {
display: none !important;
}
.visible-m-block {
display: block !important;
}
.visible-m-inline {
display: inline !important;
}
.visible-m-inline-block {
display: inline-block !important;
}
}
@media (min-width: 1200px) {
.visible-l,
.visible-desktop {
display: inherit !important;
}
.hidden-l,
.hidden-desktop {
display: none !important;
}
.visible-l-block {
display: block !important;
}
.visible-l-inline {
display: inline !important;
}
.visible-l-inline-block {
display: inline-block !important;
}
}
@media (min-width: 1600px) {
.visible-x,
.visible-desktop {
display: inherit !important;
}
.hidden-x,
.hidden-desktop {
display: none !important;
}
.visible-x-block {
display: block !important;
}
.visible-x-inline {
display: inline !important;
}
.visible-x-inline-block {
display: inline-block !important;
}
}
.card {
color: rgba(0, 0, 0, 0.87);
background-color: #ffffff;
margin-bottom: 1rem;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.card .header {
padding: .5rem 1rem;
border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.card .content {
padding: 1rem;
}
.card .footer {
padding: .5rem 1rem;
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
textarea {
resize: vertical;
}
form {
margin: 0 auto;
}
form fieldset {
border: 1px solid rgba(0, 0, 0, 0.12);
margin: 1rem 0;
padding: 1rem;
border-radius: 3px;
min-width: 0;
}
form legend {
padding: 0 .5rem;
border: 1px solid rgba(0, 0, 0, 0.12);
border-radius: 3px;
}
form label {
display: block;
position: relative;
font-weight: 500;
font-size: 1rem;
color: rgba(0, 0, 0, 0.54);
top: 0;
transition: all 150ms linear;
}
form label em {
font-size: .85rem;
font-style: normal;
color: rgba(244, 67, 54, 0.87);
}
form label.validationError span:first-child {
display: none;
}
form label.focused {
color: #2196F3;
}
form .description {
clear: both;
padding: .25rem 0 0 0;
font-size: .85rem;
color: rgba(0, 0, 0, 0.54);
}
form .validation {
color: #F44336;
display: none;
}
form .validation strong {
font-weight: normal;
display: block;
}
form .ok,
form .failed,
form .ajax {
display: block;
}
form input[disabled] {
cursor: not-allowed;
opacity: .5;
}
form input[type="text"],
form input[type="number"],
form input[type="email"],
form input[type="tel"],
form input[type="url"],
form input[type="password"],
form input[type="search"],
form select,
form textarea {
outline: none;
font-family: inherit;
font-size: 1rem;
width: 100%;
padding: .5rem .25rem;
border: 1px solid rgba(0, 0, 0, 0.12);
color: rgba(0, 0, 0, 0.87);
background-color: transparent;
transition: all 150ms linear;
-webkit-appearance: none;
border-radius: 0;
}
form input[type="text"]:focus,
form input[type="number"]:focus,
form input[type="email"]:focus,
form input[type="tel"]:focus,
form input[type="url"]:focus,
form input[type="password"]:focus,
form input[type="search"]:focus,
form select:focus,
form textarea:focus {
border: 1px solid #2196F3;
}
form input[type="text"].validationError,
form input[type="number"].validationError,
form input[type="email"].validationError,
form input[type="tel"].validationError,
form input[type="url"].validationError,
form input[type="password"].validationError,
form input[type="search"].validationError,
form select.validationError,
form textarea.validationError {
border-color: #F44336;
}
form .selectControl select {
padding-right: 2.5rem;
}
form option {
color: rgba(0, 0, 0, 0.87);
}
form dt {
position: relative;
}
form input[type="file"] {
font-size: 1rem;
width: auto;
}
form .radiogroup {
margin: 0;
padding: 0;
list-style: none;
}
form .radiogroup li {
padding: .25rem 0;
margin: 0;
}
form .radiogroup input {
margin-right: .5rem;
}
form .radiogroup label {
color: rgba(0, 0, 0, 0.87);
font-size: 1rem;
}
form .checklist {
padding: .25rem;
margin: 0;
list-style: none;
overflow: auto;
border: 1px solid rgba(0, 0, 0, 0.12);
border-radius: 3px;
}
form .checklist li {
padding: .25rem;
margin: 0;
background-color: transparent;
transition: all 150ms linear;
}
form .checklist li.default {
background-color: #FFF9C4;
}
form .checklist li.selected {
background-color: #EEEEEE;
}
form .checklist li.default.selected {
background-color: #FFF59D;
}
form .checklist li:hover {
background-color: #E0E0E0;
}
form .checklist li:hover.default,
form .checklist li:hover.default.selected {
background-color: #FFF176;
}
form .checklist li label {
display: block;
font-weight: normal;
color: rgba(0, 0, 0, 0.87);
font-size: 1rem;
cursor: pointer;
}
form .checklist input {
margin-right: .25rem;
}
form dd:last-child {
margin-bottom: 0;
}
form .selectControl {
position: relative;
z-index: 1;
cursor: pointer;
}
form .selectControl select {
cursor: pointer;
z-index: 4;
position: relative;
}
form .selectControl:after {
content: ' ';
display: block;
z-index: 2;
width: 0;
height: 0;
border-style: solid;
border-width: .5rem .5rem 0 .5rem;
border-color: #2196F3 transparent transparent transparent;
position: absolute;
top: 50%;
right: 1rem;
transform: translateY(-50%);
}
.appFormStyle form input[type="text"],
.appFormStyle form input[type="number"],
.appFormStyle form input[type="email"],
.appFormStyle form input[type="tel"],
.appFormStyle form input[type="url"],
.appFormStyle form input[type="password"],
.appFormStyle form input[type="search"],
.appFormStyle form select,
.appFormStyle form textarea {
padding: .5rem 0;
border: none;
border-bottom: 2px solid rgba(0, 0, 0, 0.12);
}
.appFormStyle form input[type="text"]:focus,
.appFormStyle form input[type="number"]:focus,
.appFormStyle form input[type="email"]:focus,
.appFormStyle form input[type="tel"]:focus,
.appFormStyle form input[type="url"]:focus,
.appFormStyle form input[type="password"]:focus,
.appFormStyle form input[type="search"]:focus,
.appFormStyle form select:focus,
.appFormStyle form textarea:focus {
border: none;
border-bottom: 2px solid #2196F3;
}
.appFormStyle form input[type="text"].validationError,
.appFormStyle form input[type="number"].validationError,
.appFormStyle form input[type="email"].validationError,
.appFormStyle form input[type="tel"].validationError,
.appFormStyle form input[type="url"].validationError,
.appFormStyle form input[type="password"].validationError,
.appFormStyle form input[type="search"].validationError,
.appFormStyle form select.validationError,
.appFormStyle form textarea.validationError {
border: none;
border-bottom: 2px solid #F44336;
}
.floatingLabels label {
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.floatingLabels label.floatUp {
color: rgba(0, 0, 0, 0.54);
position: absolute;
top: .25rem;
left: .25rem;
font-size: .75rem;
}
.floatingLabels label.floatUp.focused {
color: #2196F3;
}
.floatingLabels label.floatDown {
color: rgba(0, 0, 0, 0.54);
position: absolute;
top: 1rem;
left: .25rem;
cursor: text;
}
.floatingLabels label.floatDown.focused {
color: #2196F3;
}
.floatingLabels form input[type="text"],
.floatingLabels form input[type="number"],
.floatingLabels form input[type="email"],
.floatingLabels form input[type="tel"],
.floatingLabels form input[type="url"],
.floatingLabels form input[type="password"],
.floatingLabels form input[type="search"] {
padding: 1.5rem .25rem .5rem .25rem;
}
.floatingLabels form textarea.hasFloatingLabel {
margin-top: .5rem;
padding: .5rem .25rem .5rem .25rem;
}
.floatingLabels form .selectControl select {
padding: 1.5rem 2.5rem .5rem .25rem;
margin: 0;
outline: none;
border-radius: 0;
-webkit-appearance: none;
-moz-appearance: none;
}
.floatingLabels form .selectControl select:-moz-focusring {
color: transparent;
text-shadow: 0 0 0 #000;
}
.floatingLabels form .selectControl select:disabled {
cursor: not-allowed;
}
.floatingLabels form .selectControl select::-ms-expand {
display: none;
}
.floatingLabels .floatTextarea.floatUp {
left: 0;
top: -0.75rem;
}
.floatingLabels .floatTextarea.floatDown {
top: .75rem;
}
.floatingLabels.appFormStyle label.floatUp,
.floatingLabels .appFormStyle label.floatUp,
.floatingLabels.appFormStyle label.floatDown,
.floatingLabels .appFormStyle label.floatDown {
left: 0;
}
.floatingLabels.appFormStyle textarea.hasFloatingLabel,
.floatingLabels .appFormStyle textarea.hasFloatingLabel {
padding-left: 0;
padding-right: 0;
}
.floatingLabels.appFormStyle input[type="text"],
.floatingLabels .appFormStyle input[type="text"],
.floatingLabels.appFormStyle input[type="number"],
.floatingLabels .appFormStyle input[type="number"],
.floatingLabels.appFormStyle input[type="email"],
.floatingLabels .appFormStyle input[type="email"],
.floatingLabels.appFormStyle input[type="tel"],
.floatingLabels .appFormStyle input[type="tel"],
.floatingLabels.appFormStyle input[type="url"],
.floatingLabels .appFormStyle input[type="url"],
.floatingLabels.appFormStyle input[type="password"],
.floatingLabels .appFormStyle input[type="password"],
.floatingLabels.appFormStyle input[type="search"],
.floatingLabels .appFormStyle input[type="search"],
.floatingLabels.appFormStyle .selectControl select,
.floatingLabels .appFormStyle .selectControl select {
padding: 1.5rem 0 .5rem 0;
}
.floatingLabels.appFormStyle .selectControl select,
.floatingLabels .appFormStyle .selectControl select {
padding-right: 2.5rem;
}
.floatingLabels.appFormStyle .selectControl:after,
.floatingLabels .appFormStyle .selectControl:after {
transform: none;
}
form input[type="submit"],
form button,
button,
form .button,
.button {
font-size: 1rem;
}
.hform form dt,
form.hform dt {
float: left;
clear: both;
width: 28%;
margin-right: 2%;
}
.hform form dt label,
form.hform dt label {
text-align: right;
padding: .4rem 0 .5rem 0;
color: rgba(0, 0, 0, 0.87);
}
.hform form dd,
form.hform dd {
float: right;
width: 70%;
}
.hform form .radiogroup li:first-child,
form.hform .radiogroup li:first-child {
padding-top: 0;
}
.hform form input[type="text"],
form.hform input[type="text"],
.hform form input[type="number"],
form.hform input[type="number"],
.hform form input[type="email"],
form.hform input[type="email"],
.hform form input[type="tel"],
form.hform input[type="tel"],
.hform form input[type="url"],
form.hform input[type="url"],
.hform form input[type="password"],
form.hform input[type="password"],
.hform form input[type="search"],
form.hform input[type="search"],
.hform form .selectControl select,
form.hform .selectControl select {
padding: .5rem .25rem !important;
}
.hform form .selectControl select,
form.hform .selectControl select {
padding-right: 2.5rem !important;
}
form #submit-list {
clear: both;
}
form #submit-list dt {
display: none;
}
form #submit-list dd {
float: none;
width: auto;
display: inline;
}
form #submit-list dd input,
form #submit-list dd button,
form #submit-list dd .button {
margin-left: 2px;
margin-right: 2px;
}
.hform #submit-list {
float: right;
width: 70%;
}
@media (max-width: 767px) {
.hform #submit-list {
float: none;
width: 100%;
}
.hform form dt,
form.hform dt,
.hform form dd,
form.hform dd {
float: none;
width: 100%;
}
.hform form dt label,
form.hform dt label {
text-align: left;
font-size: .85rem;
color: rgba(0, 0, 0, 0.54);
}
.hform form .validation,
form.hform .validation {
width: auto;
left: 40%;
bottom: -0.5rem;
}
}
.uploadButton,
input[type="submit"],
button,
.button {
color: rgba(0, 0, 0, 0.87);
background-color: transparent;
font-weight: 400;
text-transform: uppercase;
padding: .5rem 1rem;
cursor: pointer;
outline: none;
border: none;
display: inline-block;
margin-bottom: .5rem;
border-radius: 3px;
text-decoration: none;
-webkit-appearance: none;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
transition: all 150ms linear;
}
.uploadButton.full-width,
input[type="submit"].full-width,
button.full-width,
.button.full-width {
width: 100%;
}
.uploadButton:hover,
input[type="submit"]:hover,
button:hover,
.button:hover {
text-decoration: none;
background-color: rgba(13, 13, 13, 0);
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.uploadButton.disabled,
input[type="submit"].disabled,
button.disabled,
.uploadButton:disabled,
input[type="submit"]:disabled,
button:disabled,
.button.disabled,
.button:disabled {
box-shadow: none;
cursor: default;
opacity: 0.6;
}
.uploadButton.primary,
input[type="submit"].primary,
button.primary,
.button.primary {
color: #ffffff;
background-color: #2196F3;
}
.uploadButton.primary:hover,
input[type="submit"].primary:hover,
button.primary:hover,
.button.primary:hover {
background-color: #39a1f4;
}
.uploadButton.primary.disabled,
input[type="submit"].primary.disabled,
button.primary.disabled,
.uploadButton.primary:disabled,
input[type="submit"].primary:disabled,
button.primary:disabled,
.button.primary.disabled,
.button.primary:disabled {
background-color: #2196F3;
}
.uploadButton.accent,
input[type="submit"].accent,
button.accent,
.button.accent {
color: #ffffff;
background-color: #FF4081;
}
.uploadButton.accent:hover,
input[type="submit"].accent:hover,
button.accent:hover,
.button.accent:hover {
background-color: #ff5a92;
}
.uploadButton.accent.disabled,
input[type="submit"].accent.disabled,
button.accent.disabled,
.uploadButton.accent:disabled,
input[type="submit"].accent:disabled,
button.accent:disabled,
.button.accent.disabled,
.button.accent:disabled {
background-color: #FF4081;
}
.uploadButton.alert,
input[type="submit"].alert,
button.alert,
.uploadButton.danger,
input[type="submit"].danger,
button.danger,
.button.alert,
.button.danger {
color: #ffffff;
background-color: #F44336;
}
.uploadButton.alert:hover,
input[type="submit"].alert:hover,
button.alert:hover,
.uploadButton.danger:hover,
input[type="submit"].danger:hover,
button.danger:hover,
.button.alert:hover,
.button.danger:hover {
background-color: #f55a4e;
}
.uploadButton.alert.disabled,
input[type="submit"].alert.disabled,
button.alert.disabled,
.uploadButton.danger.disabled,
input[type="submit"].danger.disabled,
button.danger.disabled,
.uploadButton.alert:disabled,
input[type="submit"].alert:disabled,
button.alert:disabled,
.uploadButton.danger:disabled,
input[type="submit"].danger:disabled,
button.danger:disabled,
.button.alert.disabled,
.button.danger.disabled,
.button.alert:disabled,
.button.danger:disabled {
background-color: #F44336;
}
.uploadButton.outline,
input[type="submit"].outline,
button.outline,
.uploadButton.flat,
input[type="submit"].flat,
button.flat,
.button.outline,
.button.flat {
color: rgba(0, 0, 0, 0.87);
background-color: transparent;
}
.uploadButton.outline:hover,
input[type="submit"].outline:hover,
button.outline:hover,
.uploadButton.flat:hover,
input[type="submit"].flat:hover,
button.flat:hover,
.button.outline:hover,
.button.flat:hover {
background-color: #EEEEEE;
box-shadow: none;
}
.uploadButton.outline.disabled,
input[type="submit"].outline.disabled,
button.outline.disabled,
.uploadButton.flat.disabled,
input[type="submit"].flat.disabled,
button.flat.disabled,
.uploadButton.outline:disabled,
input[type="submit"].outline:disabled,
button.outline:disabled,
.uploadButton.flat:disabled,
input[type="submit"].flat:disabled,
button.flat:disabled,
.button.outline.disabled,
.button.flat.disabled,
.button.outline:disabled,
.button.flat:disabled {
background-color: transparent;
}
.uploadButton.outline.primary,
input[type="submit"].outline.primary,
button.outline.primary,
.uploadButton.flat.primary,
input[type="submit"].flat.primary,
button.flat.primary,
.button.outline.primary,
.button.flat.primary {
color: #2196F3;
}
.uploadButton.outline.accent,
input[type="submit"].outline.accent,
button.outline.accent,
.uploadButton.flat.accent,
input[type="submit"].flat.accent,
button.flat.accent,
.button.outline.accent,
.button.flat.accent {
color: #FF4081;
}
.uploadButton.outline.alert,
input[type="submit"].outline.alert,
button.outline.alert,
.uploadButton.flat.alert,
input[type="submit"].flat.alert,
button.flat.alert,
.uploadButton.outline.danger,
input[type="submit"].outline.danger,
button.outline.danger,
.uploadButton.flat.danger,
input[type="submit"].flat.danger,
button.flat.danger,
.button.outline.alert,
.button.flat.alert,
.button.outline.danger,
.button.flat.danger {
color: #F44336;
}
.uploadButton.outline,
input[type="submit"].outline,
button.outline,
.button.outline {
border: 1px solid rgba(0, 0, 0, 0.87);
}
.uploadButton.outline:hover,
input[type="submit"].outline:hover,
button.outline:hover,
.button.outline:hover {
color: #ffffff;
background-color: rgba(0, 0, 0, 0.87);
}
.uploadButton.outline.primary,
input[type="submit"].outline.primary,
button.outline.primary,
.button.outline.primary {
border-color: #2196F3;
}
.uploadButton.outline.primary:hover,
input[type="submit"].outline.primary:hover,
button.outline.primary:hover,
.button.outline.primary:hover {
background-color: #2196F3;
}
.uploadButton.outline.accent,
input[type="submit"].outline.accent,
button.outline.accent,
.button.outline.accent {
border-color: #FF4081;
}
.uploadButton.outline.accent:hover,
input[type="submit"].outline.accent:hover,
button.outline.accent:hover,
.button.outline.accent:hover {
background-color: #FF4081;
}
.uploadButton.outline.alert,
input[type="submit"].outline.alert,
button.outline.alert,
.uploadButton.outline.danger,
input[type="submit"].outline.danger,
button.outline.danger,
.button.outline.alert,
.button.outline.danger {
border-color: #F44336;
}
.uploadButton.outline.alert:hover,
input[type="submit"].outline.alert:hover,
button.outline.alert:hover,
.uploadButton.outline.danger:hover,
input[type="submit"].outline.danger:hover,
button.outline.danger:hover,
.button.outline.alert:hover,
.button.outline.danger:hover {
background-color: #F44336;
}
.uploadButton.raised,
input[type="submit"].raised,
button.raised,
.button.raised {
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.uploadButton.raised:hover,
input[type="submit"].raised:hover,
button.raised:hover,
.button.raised:hover {
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.uploadButton.raised.disabled,
input[type="submit"].raised.disabled,
button.raised.disabled,
.uploadButton.raised:disabled,
input[type="submit"].raised:disabled,
button.raised:disabled,
.button.raised.disabled,
.button.raised:disabled {
box-shadow: none;
}
.uploadButton.floating,
input[type="submit"].floating,
button.floating,
.button.floating {
display: inline-block;
border-radius: 50%;
width: 3.5rem;
height: 3.5rem;
font-size: 1.6rem;
line-height: 3.5rem;
text-align: center;
padding: 0;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.uploadButton.floating i,
input[type="submit"].floating i,
button.floating i,
.button.floating i {
line-height: 3.5rem;
}
.uploadButton.floating.mini,
input[type="submit"].floating.mini,
button.floating.mini,
.button.floating.mini {
font-size: 1rem;
width: 2.5rem;
height: 2.5rem;
line-height: 2.5rem;
}
.uploadButton.floating.mini i,
input[type="submit"].floating.mini i,
button.floating.mini i,
.button.floating.mini i {
line-height: 2.5rem;
}
.uploadButton {
position: relative;
overflow: hidden;
display: inline-block;
}
.uploadButton input[type="file"] {
position: absolute;
top: 0;
right: 0;
margin: 0;
padding: 0;
font-size: 40px;
cursor: pointer;
opacity: 0;
}
#slideInMenuOverlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.26);
cursor: pointer;
z-index: 9010;
}
#slideInMenuOverlay.slideInMenuShow {
display: block;
}
#slideInMenu {
position: fixed;
top: 0;
left: 0;
width: 0;
max-width: 16rem;
height: 100%;
overflow-y: auto;
background-color: #ffffff;
z-index: 9020;
display: block;
transition: all 150ms linear;
opacity: 0;
padding-bottom: 1.5rem;
}
#slideInMenu.slideInMenuShow {
opacity: 1;
width: 80%;
box-shadow: 3px 0 6px rgba(0, 0, 0, 0.16), 3px 0 6px rgba(0, 0, 0, 0.23);
}
#slideInMenu a {
color: rgba(0, 0, 0, 0.87);
padding: .75rem 1rem;
display: block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-decoration: none;
}
#slideInMenu a:hover {
background-color: #EEEEEE;
}
#slideInMenu ul {
margin: 0;
padding: 1rem 0 0 0;
list-style: none;
}
#slideInMenu ul + ul {
margin-top: .5rem;
padding-top: .5rem;
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
#slideInMenu li {
padding: 0;
}
#slideInMenu li li a {
padding-left: 2rem;
}
body.disableScroll {
height: 100%;
overflow: hidden;
}
#toast {
color: #ffffff;
background-color: #212121;
position: fixed;
z-index: 9008;
bottom: -100px;
left: 50%;
margin-left: -45%;
padding: .5rem 1rem;
text-align: left;
width: 90%;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
transition: all 300ms linear;
opacity: 0;
}
#toast a {
float: right;
display: inline-block;
margin-left: 1.5rem;
color: #ffffff;
text-transform: uppercase;
}
#toast a:hover {
text-decoration: underline;
}
#toast.exposed {
opacity: 1;
bottom: 1rem;
}
@media (min-width: 768px) {
#toast {
margin-left: -25%;
width: 50%;
}
}
#toast.success {
color: #ffffff;
background-color: #7CB342;
}
#toast.error {
color: #ffffff;
background-color: #E53935;
}
#toast.warning {
color: #ffffff;
background-color: #FFA000;
}
#toast.primary {
color: #ffffff;
background-color: #2196F3;
}
#toast.accent {
color: #ffffff;
background-color: #FF4081;
}
.tabs {
list-style: none;
margin: 0 0 .5rem 0;
padding: 0;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.tabs > li {
float: left;
display: block;
cursor: pointer;
outline: none;
padding: .5rem 1rem;
margin: 0 0 -0.5rem 0;
border-bottom: 2px solid transparent;
transition: all 250ms linear;
}
.tabs > li:hover {
border-bottom-color: #BBDEFB;
}
.tabs > li.active {
border-bottom-color: #2196F3;
}
.tabs > li a {
color: rgba(0, 0, 0, 0.87);
}
.tabs > li.tabsMenu {
position: relative;
}
.tabs > li.tabsMenu:after {
content: ' ';
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: .5rem .5rem 0 .5rem;
border-color: #2196F3 transparent transparent transparent;
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
}
.tabs > li.tabsMenu ul {
position: absolute;
right: 0;
padding: 0;
min-width: 10rem;
background-color: #ffffff;
list-style: none;
margin-left: 0;
z-index: 2;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.tabs > li.tabsMenu ul li {
white-space: nowrap;
padding: .5rem 1rem;
}
.tabs > li.tabsMenu ul li:hover {
background-color: rgba(0, 0, 0, 0.12);
}
.tabpanels {
list-style: none;
margin-left: 0;
border-top: 1px solid rgba(0, 0, 0, 0.12);
padding-top: 1rem;
}
.tabpanels > li {
margin: 0 1rem;
}
.tabpanels .tabhidepanel {
visibility: hidden;
overflow: hidden;
height: 0;
}
@media (min-width: 768px) {
.tabwidget.vtabs {
position: relative;
}
.tabwidget.vtabs > .tabs {
position: absolute;
width: 20%;
height: 100%;
}
.tabwidget.vtabs > .tabs li {
float: none;
margin-right: 0;
width: 100%;
border-right: 2px solid transparent;
border-bottom: none;
}
.tabwidget.vtabs > .tabs li:hover {
border-right-color: #BBDEFB;
}
.tabwidget.vtabs > .tabs li.active {
border-right-color: #2196F3;
}
.tabwidget.vtabs > .tabpanels {
position: relative;
left: 20%;
width: 80%;
border-left: 1px solid rgba(0, 0, 0, 0.12);
border-top: none;
padding-top: 0;
}
}
.chips,
.chipContainer {
list-style: none;
margin-left: 0;
font-size: 0;
}
.chips li,
.chip {
background-color: #E0E0E0;
display: inline-block;
border-radius: 2rem;
line-height: 2rem;
padding: 0 .75rem;
white-space: nowrap;
margin-bottom: .5rem;
margin-right: .25rem;
font-size: 1rem;
}
.chips li:last-child,
.chip:last-child {
margin-right: 0;
}
.chips li i,
.chip i {
border-radius: 100%;
color: #E0E0E0;
background-color: #9E9E9E;
width: 1.4rem;
height: 1.4rem;
line-height: 1.4rem;
display: inline-block;
text-align: center;
font-style: normal;
margin-left: .25rem;
margin-right: -0.5rem;
margin-top: -0.3rem;
cursor: pointer;
}
.chips li i:hover,
.chip i:hover {
background-color: #BDBDBD;
}
.chips li img,
.chip img {
border-radius: 100%;
width: 2rem;
height: 2em;
display: inline-block;
margin-right: .25rem;
margin-left: -0.75rem;
max-width: inherit;
}
.chips li b,
.chip b {
border-radius: 100%;
width: 2rem;
height: 2rem;
display: inline-block;
margin-right: .25rem;
margin-left: -0.75rem;
font-weight: normal;
text-align: center;
}
.chips li .primary,
.chip .primary {
color: #ffffff;
background-color: #2196F3;
}
.chips li .accent,
.chip .accent {
color: #ffffff;
background-color: #FF4081;
}
.appbar {
color: #ffffff;
background-color: #2196F3;
font-size: 1.3rem;
padding: .5rem 1rem;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 9005;
}
.appbar.unfix {
position: relative;
}
.appbar a,
.appbar a:hover {
color: #ffffff;
margin-bottom: 1rem;
}
.appbar ul {
margin: 0;
}
.appbar li {
display: inline-block;
margin-right: .75rem;
}
.appbar li:last-child {
margin-right: 0;
}
.fam {
position: relative;
display: inline-block;
z-index: 9000;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.fam ul {
position: absolute;
top: .35rem;
left: 4rem;
list-style: none;
margin-left: 0;
margin-bottom: 0;
width: 23.5rem;
opacity: 0;
visibility: hidden;
transition: all 250ms linear;
}
.fam ul.alwaysOpen,
.fam ul.exposed {
opacity: 1;
visibility: visible;
}
.fam ul.alwaysOpen {
position: static;
}
.fam li {
display: inline-block;
margin-right: .5rem;
}
.fam li:last-child {
margin-right: 0;
}
.fam.left ul {
left: inherit;
right: 4rem;
text-align: right;
}
.fam.vertical ul {
top: 4rem;
left: .5rem;
width: 2.5rem;
}
.fam.vertical li {
margin-right: 0;
}
.fam.vertical.up ul {
top: inherit;
bottom: 4rem;
}
.z-depth0 {
box-shadow: none;
}
.z-depth1 {
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.z-depth2 {
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.z-depth3 {
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.z-depth4 {
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.z-depth5 {
box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}
.tagInputWidget {
border: 1px solid rgba(0, 0, 0, 0.12);
padding: .5rem .5rem 0 .5rem;
width: 100%;
overflow-y: auto;
}
.tagInputWidget input.tagInput {
display: inline-block;
font-size: 1rem;
line-height: 2rem;
padding: 0 .75rem 1px .75rem;
margin-bottom: .5rem;
margin-right: .5rem;
border: none;
border-radius: 2rem;
outline: none;
width: 10rem;
background-color: transparent;
}
.tagInputWidget input.tagInput.invalidTag {
background-color: #FFCDD2;
color: #B71C1C;
}
|
_includes/sidebar.html
|
pureexe/pureapp-jekyll
|
<div class="sidebar">
{% include widget-facebook-pages-iframe.html %}
{% if jekyll.environment == "production" %}{% include widget-postlist.html %}{% endif %}
</div>
|
doc/api/files/__/__/__/__/usr/local/share/gems/gems/actionpack-4_1_8/lib/action_dispatch/journey/parser_extras_rb.html
|
delta/DalalStreet
|
<?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" xml:lang="en" lang="en">
<head>
<title>parser_extras.rb</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="../../../../../../../../../../../../../../css/reset.css" type="text/css" media="screen" />
<link rel="stylesheet" href="../../../../../../../../../../../../../../css/main.css" type="text/css" media="screen" />
<link rel="stylesheet" href="../../../../../../../../../../../../../../css/github.css" type="text/css" media="screen" />
<script src="../../../../../../../../../../../../../../js/jquery-1.3.2.min.js" type="text/javascript" charset="utf-8"></script>
<script src="../../../../../../../../../../../../../../js/jquery-effect.js" type="text/javascript" charset="utf-8"></script>
<script src="../../../../../../../../../../../../../../js/main.js" type="text/javascript" charset="utf-8"></script>
<script src="../../../../../../../../../../../../../../js/highlight.pack.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div class="banner">
<span>Ruby on Rails 4.1.8</span><br />
<h1>
parser_extras.rb
</h1>
<ul class="files">
<li>
../../../../usr/local/share/gems/gems/actionpack-4.1.8/lib/action_dispatch/journey/parser_extras.rb
</li>
<li>Last modified: 2014-11-25 22:16:16 +0530</li>
</ul>
</div>
<div id="bodyContent">
<div id="content">
<!-- File only: requires -->
<div class="sectiontitle">Required Files</div>
<ul>
<li>action_dispatch/journey/scanner</li>
<li>action_dispatch/journey/nodes/node</li>
</ul>
<!-- Namespace -->
<div class="sectiontitle">Namespace</div>
<ul>
<li>
<span class="type">MODULE</span>
<a href="../../../../../../../../../../../../../../classes/ActionDispatch.html">ActionDispatch</a>
</li>
</ul>
<!-- Methods -->
</div>
</div>
</body>
</html>
|
Backup/wsb4784301808/colorschemes/colorscheme6/colorscheme.css
|
Jamtis/TTC
|
/*** Normalized ***/
#main_body {
background-color: #7e6223;
}
#container {
background-color: #ffffff;
}
#top_container {
background-image: url(images/static/bg_top_container.gif);
}
#header {
background-image: url(images/static/bg_header.gif);
}
#main_container {
background-image: url(images/static/bg_main_container.gif);
}
#footer_text {
background-image: url(images/static/bg_footer.gif);
}
/* Begin Content */
.content {
color: #000000;
}
.content table {
border-color: #cea54b;
}
.content th {
background-color: #cea54b;
border-color: #cea54b;
color: #ffffff;
}
.content td {
border-color: #cea54b;
}
.content tr.odd {
background-color: #f9f9f9;
}
.content tr.even {
background-color: #f8f2e5;
}
.content textarea {
background-color: #ffffff;
border-color: #e4ce9d;
}
.content input {
background-color: #ffffff;
border-color: #e4ce9d;
}
.content button {
background-color: #ffffff;
border-color: #e4ce9d;
background-color: #faf6ee;
color: #000000;
}
|
lib/highcharts.com/samples/mapdata/countries/kv/kv-all/demo.html
|
Oxyless/highcharts-export-image
|
<script src="http://code.highcharts.com/maps/highmaps.js"></script>
<script src="http://code.highcharts.com/maps/modules/exporting.js"></script>
<script src="http://code.highcharts.com/mapdata/countries/kv/kv-all.js"></script>
<div id="container"></div>
|
btt/templates/add_transaction.html
|
gregcowell/PFT
|
{% extends "base.html" %}
{% import "bootstrap/wtf.html" as wtf %}
{% block title %}BTT{% endblock %}
{% block page_content %}
<h2>Add Transaction: </h2>
<div class="row">
<div class="col-md-3">
{{ wtf.quick_form(form) }}
</div>
</div>
{% endblock %}
|
ABLIRC/bin/ReportParserTools/theme/report/assets/css/zTreeStyle.css
|
ablifedev/ABLIRC
|
/*-------------------------------------
zTree Style
version: 3.4
author: Hunter.z
email: hunter.z@263.net
website: http://code.google.com/p/jquerytree/
-------------------------------------*/
.ztree * {padding:0; margin:0; font-size:12px; font-family: Verdana, Arial, Helvetica, AppleGothic, sans-serif}
.ztree {margin:0; padding:5px; color:#333}
.ztree li{padding:0; margin:0; list-style:none; line-height:14px; text-align:left; white-space:nowrap; outline:0}
.ztree li ul{ margin:0; padding:0 0 0 18px}
.ztree li ul.line{ background:url(./img/line_conn.gif) 0 0 repeat-y;}
.ztree li a {padding:1px 3px 0 0; margin:0; cursor:pointer; height:17px; color:#333; background-color: transparent;
text-decoration:none; vertical-align:top; display: inline-block}
.ztree li a:hover {text-decoration:underline}
.ztree li a.curSelectedNode {padding-top:0px; background-color:#c2d5f2; color:black; height:16px; opacity:0.8;}
.ztree li a.curSelectedNode_Edit {padding-top:0px; background-color:#FFE6B0; color:black; height:16px; border:1px #FFB951 solid; opacity:0.8;}
.ztree li a.tmpTargetNode_inner {padding-top:0px; background-color:#316AC5; color:white; height:16px; border:1px #316AC5 solid;
opacity:0.8; filter:alpha(opacity=80)}
.ztree li a.tmpTargetNode_prev {}
.ztree li a.tmpTargetNode_next {}
.ztree li a input.rename {height:14px; width:80px; padding:0; margin:0;
font-size:12px; border:1px #7EC4CC solid; *border:0px}
.ztree li span {line-height:16px; margin-right:2px}
.ztree li span.button {line-height:0; margin:0; width:16px; height:16px; display: inline-block; vertical-align:middle;
border:0 none; cursor: pointer;outline:none;
background-color:transparent; background-repeat:no-repeat; background-attachment: scroll;
background-image:url("./img/zTreeStandard.png"); *background-image:url("./img/zTreeStandard.gif")}
.ztree li span.button.chk {width:13px; height:13px; margin:0 3px 0 0; cursor: auto}
.ztree li span.button.chk.checkbox_false_full {background-position:0 0}
.ztree li span.button.chk.checkbox_false_full_focus {background-position:0 -14px}
.ztree li span.button.chk.checkbox_false_part {background-position:0 -28px}
.ztree li span.button.chk.checkbox_false_part_focus {background-position:0 -42px}
.ztree li span.button.chk.checkbox_false_disable {background-position:0 -56px}
.ztree li span.button.chk.checkbox_true_full {background-position:-14px 0}
.ztree li span.button.chk.checkbox_true_full_focus {background-position:-14px -14px}
.ztree li span.button.chk.checkbox_true_part {background-position:-14px -28px}
.ztree li span.button.chk.checkbox_true_part_focus {background-position:-14px -42px}
.ztree li span.button.chk.checkbox_true_disable {background-position:-14px -56px}
.ztree li span.button.chk.radio_false_full {background-position:-28px 0}
.ztree li span.button.chk.radio_false_full_focus {background-position:-28px -14px}
.ztree li span.button.chk.radio_false_part {background-position:-28px -28px}
.ztree li span.button.chk.radio_false_part_focus {background-position:-28px -42px}
.ztree li span.button.chk.radio_false_disable {background-position:-28px -56px}
.ztree li span.button.chk.radio_true_full {background-position:-42px 0}
.ztree li span.button.chk.radio_true_full_focus {background-position:-42px -14px}
.ztree li span.button.chk.radio_true_part {background-position:-42px -28px}
.ztree li span.button.chk.radio_true_part_focus {background-position:-42px -42px}
.ztree li span.button.chk.radio_true_disable {background-position:-42px -56px}
.ztree li span.button.switch {width:18px; height:18px}
.ztree li span.button.root_open{background-position:-92px -54px}
.ztree li span.button.root_close{background-position:-74px -54px}
.ztree li span.button.roots_open{background-position:-92px 0}
.ztree li span.button.roots_close{background-position:-74px 0}
.ztree li span.button.center_open{background-position:-92px -18px}
.ztree li span.button.center_close{background-position:-74px -18px}
.ztree li span.button.bottom_open{background-position:-92px -36px}
.ztree li span.button.bottom_close{background-position:-74px -36px}
.ztree li span.button.noline_open{background-position:-92px -72px}
.ztree li span.button.noline_close{background-position:-74px -72px}
.ztree li span.button.root_docu{ background:none;}
.ztree li span.button.roots_docu{background-position:-56px 0}
.ztree li span.button.center_docu{background-position:-56px -18px}
.ztree li span.button.bottom_docu{background-position:-56px -36px}
.ztree li span.button.noline_docu{ background:none;}
.ztree li span.button.ico_open{margin-right:2px; background-position:-110px -16px; vertical-align:top; *vertical-align:middle}
.ztree li span.button.ico_close{margin-right:2px; background-position:-110px 0; vertical-align:top; *vertical-align:middle}
.ztree li span.button.ico_docu{margin-right:2px; background-position:-110px -32px; vertical-align:top; *vertical-align:middle}
.ztree li span.button.edit {margin-right:2px; background-position:-110px -48px; vertical-align:top; *vertical-align:middle}
.ztree li span.button.remove {margin-right:2px; background-position:-110px -64px; vertical-align:top; *vertical-align:middle}
.ztree li span.button.ico_loading{margin-right:2px; background:url(./img/loading.gif) no-repeat scroll 0 0 transparent; vertical-align:top; *vertical-align:middle}
ul.tmpTargetzTree {background-color:#FFE6B0; opacity:0.8; filter:alpha(opacity=80)}
span.tmpzTreeMove_arrow {width:16px; height:16px; display: inline-block; padding:0; margin:2px 0 0 1px; border:0 none; position:absolute;
background-color:transparent; background-repeat:no-repeat; background-attachment: scroll;
background-position:-110px -80px; background-image:url("./img/zTreeStandard.png"); *background-image:url("./img/zTreeStandard.gif")}
ul.ztree.zTreeDragUL {margin:0; padding:0; position:absolute; width:auto; height:auto;overflow:hidden; background-color:#cfcfcf; border:1px #00B83F dotted; opacity:0.8; filter:alpha(opacity=80)}
.zTreeMask {z-index:10000; background-color:#cfcfcf; opacity:0.0; filter:alpha(opacity=0); position:absolute}
/* level style*/
/*.ztree li span.button.level0 {
display:none;
}
.ztree li ul.level0 {
padding:0;
background:none;
}*/
|
thirdParty/solrSrc/docs/solr-core/org/apache/solr/search/class-use/BoostQParserPlugin.html
|
knittledan/solr_lxml_Example
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Fri Jun 20 06:34:21 EDT 2014 -->
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<title>Uses of Class org.apache.solr.search.BoostQParserPlugin (Solr 4.9.0 API)</title>
<meta name="date" content="2014-06-20">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.solr.search.BoostQParserPlugin (Solr 4.9.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/solr/search/BoostQParserPlugin.html" title="class in org.apache.solr.search">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/solr/search/class-use/BoostQParserPlugin.html" target="_top">Frames</a></li>
<li><a href="BoostQParserPlugin.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class org.apache.solr.search.BoostQParserPlugin" class="title">Uses of Class<br>org.apache.solr.search.BoostQParserPlugin</h2>
</div>
<div class="classUseContainer">No usage of org.apache.solr.search.BoostQParserPlugin</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../org/apache/solr/search/BoostQParserPlugin.html" title="class in org.apache.solr.search">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/solr/search/class-use/BoostQParserPlugin.html" target="_top">Frames</a></li>
<li><a href="BoostQParserPlugin.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>
<i>Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.</i>
<script src='../../../../../prettify.js' type='text/javascript'></script>
<script type='text/javascript'>
(function(){
var oldonload = window.onload;
if (typeof oldonload != 'function') {
window.onload = prettyPrint;
} else {
window.onload = function() {
oldonload();
prettyPrint();
}
}
})();
</script>
</small></p>
</body>
</html>
|
target/doc/libc/constant.MAP_LOCKED.html
|
ssgrn/Rust-Matrix-Computations
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="rustdoc">
<meta name="description" content="API documentation for the Rust `MAP_LOCKED` constant in crate `libc`.">
<meta name="keywords" content="rust, rustlang, rust-lang, MAP_LOCKED">
<title>libc::MAP_LOCKED - Rust</title>
<link rel="stylesheet" type="text/css" href="../main.css">
<link rel="shortcut icon" href="https://doc.rust-lang.org/favicon.ico">
</head>
<body class="rustdoc">
<!--[if lte IE 8]>
<div class="warning">
This old browser is unsupported and will most likely display funky
things.
</div>
<![endif]-->
<nav class="sidebar">
<a href='../libc/index.html'><img src='https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png' alt='' width='100'></a>
<p class='location'><a href='index.html'>libc</a></p><script>window.sidebarCurrent = {name: 'MAP_LOCKED', ty: 'constant', relpath: ''};</script><script defer src="sidebar-items.js"></script>
</nav>
<nav class="sub">
<form class="search-form js-only">
<div class="search-container">
<input class="search-input" name="search"
autocomplete="off"
placeholder="Click or press ‘S’ to search, ‘?’ for more options…"
type="search">
</div>
</form>
</nav>
<section id='main' class="content constant">
<h1 class='fqn'><span class='in-band'><a href='index.html'>libc</a>::<wbr><a class='constant' href=''>MAP_LOCKED</a></span><span class='out-of-band'><span id='render-detail'>
<a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">
[<span class='inner'>−</span>]
</a>
</span><a id='src-1607' class='srclink' href='../src/libc/unix/notbsd/linux/notmips/mod.rs.html#47' title='goto source code'>[src]</a></span></h1>
<pre class='rust const'>pub const MAP_LOCKED: <a class='type' href='../libc/type.c_int.html' title='libc::c_int'>c_int</a><code> = </code><code>0x02000</code></pre></section>
<section id='search' class="content hidden"></section>
<section class="footer"></section>
<aside id="help" class="hidden">
<div>
<h1 class="hidden">Help</h1>
<div class="shortcuts">
<h2>Keyboard Shortcuts</h2>
<dl>
<dt>?</dt>
<dd>Show this help dialog</dd>
<dt>S</dt>
<dd>Focus the search field</dd>
<dt>⇤</dt>
<dd>Move up in search results</dd>
<dt>⇥</dt>
<dd>Move down in search results</dd>
<dt>⏎</dt>
<dd>Go to active search result</dd>
</dl>
</div>
<div class="infos">
<h2>Search Tricks</h2>
<p>
Prefix searches with a type followed by a colon (e.g.
<code>fn:</code>) to restrict the search to a given type.
</p>
<p>
Accepted types are: <code>fn</code>, <code>mod</code>,
<code>struct</code>, <code>enum</code>,
<code>trait</code>, <code>type</code>, <code>macro</code>,
and <code>const</code>.
</p>
<p>
Search functions by type signature (e.g.
<code>vec -> usize</code>)
</p>
</div>
</div>
</aside>
<script>
window.rootPath = "../";
window.currentCrate = "libc";
window.playgroundUrl = "";
</script>
<script src="../jquery.js"></script>
<script src="../main.js"></script>
<script async src="../search-index.js"></script>
</body>
</html>
|
dist/app/modules/home/home.view.html
|
dmusev/goaloflife
|
<grid></grid>
|
QtEsrc/qt-everywhere-opensource-src-4.8.5/doc/html/network-bearermonitor-sessionwidget-cpp.html
|
stephaneAG/PengPod700
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Qt 4.8: sessionwidget.cpp Example File (network/bearermonitor/sessionwidget.cpp)</title>
<link rel="stylesheet" type="text/css" href="style/style.css" />
<script src="scripts/jquery.js" type="text/javascript"></script>
<script src="scripts/functions.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="style/superfish.css" />
<link rel="stylesheet" type="text/css" href="style/narrow.css" />
<!--[if IE]>
<meta name="MSSmartTagsPreventParsing" content="true">
<meta http-equiv="imagetoolbar" content="no">
<![endif]-->
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" href="style/style_ie6.css">
<![endif]-->
<!--[if IE 7]>
<link rel="stylesheet" type="text/css" href="style/style_ie7.css">
<![endif]-->
<!--[if IE 8]>
<link rel="stylesheet" type="text/css" href="style/style_ie8.css">
<![endif]-->
<script src="scripts/superfish.js" type="text/javascript"></script>
<script src="scripts/narrow.js" type="text/javascript"></script>
</head>
<body class="" onload="CheckEmptyAndLoadList();">
<div class="header" id="qtdocheader">
<div class="content">
<div id="nav-logo">
<a href="index.html">Home</a></div>
<a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a>
<div id="narrowsearch"></div>
<div id="nav-topright">
<ul>
<li class="nav-topright-home"><a href="http://qt.digia.com/">Qt HOME</a></li>
<li class="nav-topright-dev"><a href="http://qt-project.org/">DEV</a></li>
<li class="nav-topright-doc nav-topright-doc-active"><a href="http://qt-project.org/doc/">
DOC</a></li>
<li class="nav-topright-blog"><a href="http://blog.qt.digia.com/">BLOG</a></li>
</ul>
</div>
<div id="shortCut">
<ul>
<li class="shortCut-topleft-inactive"><span><a href="index.html">Qt 4.8</a></span></li>
<li class="shortCut-topleft-active"><a href="http://qt-project.org/doc/">ALL VERSIONS </a></li>
</ul>
</div>
<ul class="sf-menu" id="narrowmenu">
<li><a href="#">API Lookup</a>
<ul>
<li><a href="classes.html">Class index</a></li>
<li><a href="functions.html">Function index</a></li>
<li><a href="modules.html">Modules</a></li>
<li><a href="namespaces.html">Namespaces</a></li>
<li><a href="qtglobal.html">Global Declarations</a></li>
<li><a href="qdeclarativeelements.html">QML elements</a></li>
</ul>
</li>
<li><a href="#">Qt Topics</a>
<ul>
<li><a href="qt-basic-concepts.html">Programming with Qt</a></li>
<li><a href="qtquick.html">Device UIs & Qt Quick</a></li>
<li><a href="qt-gui-concepts.html">UI Design with Qt</a></li>
<li><a href="supported-platforms.html">Supported Platforms</a></li>
<li><a href="technology-apis.html">Qt and Key Technologies</a></li>
<li><a href="best-practices.html">How-To's and Best Practices</a></li>
</ul>
</li>
<li><a href="#">Examples</a>
<ul>
<li><a href="all-examples.html">Examples</a></li>
<li><a href="tutorials.html">Tutorials</a></li>
<li><a href="demos.html">Demos</a></li>
<li><a href="qdeclarativeexamples.html">QML Examples</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="wrapper">
<div class="hd">
<span></span>
</div>
<div class="bd group">
<div class="sidebar">
<div class="searchlabel">
Search index:</div>
<div class="search" id="sidebarsearch">
<form id="qtdocsearch" action="" onsubmit="return false;">
<fieldset>
<input type="text" name="searchstring" id="pageType" value="" />
<div id="resultdialog">
<a href="#" id="resultclose">Close</a>
<p id="resultlinks" class="all"><a href="#" id="showallresults">All</a> | <a href="#" id="showapiresults">API</a> | <a href="#" id="showarticleresults">Articles</a> | <a href="#" id="showexampleresults">Examples</a></p>
<p id="searchcount" class="all"><span id="resultcount"></span><span id="apicount"></span><span id="articlecount"></span><span id="examplecount"></span> results:</p>
<ul id="resultlist" class="all">
</ul>
</div>
</fieldset>
</form>
</div>
<div class="box first bottombar" id="lookup">
<h2 title="API Lookup"><span></span>
API Lookup</h2>
<div id="list001" class="list">
<ul id="ul001" >
<li class="defaultLink"><a href="classes.html">Class index</a></li>
<li class="defaultLink"><a href="functions.html">Function index</a></li>
<li class="defaultLink"><a href="modules.html">Modules</a></li>
<li class="defaultLink"><a href="namespaces.html">Namespaces</a></li>
<li class="defaultLink"><a href="qtglobal.html">Global Declarations</a></li>
<li class="defaultLink"><a href="qdeclarativeelements.html">QML elements</a></li>
</ul>
</div>
</div>
<div class="box bottombar" id="topics">
<h2 title="Qt Topics"><span></span>
Qt Topics</h2>
<div id="list002" class="list">
<ul id="ul002" >
<li class="defaultLink"><a href="qt-basic-concepts.html">Programming with Qt</a></li>
<li class="defaultLink"><a href="qtquick.html">Device UIs & Qt Quick</a></li>
<li class="defaultLink"><a href="qt-gui-concepts.html">UI Design with Qt</a></li>
<li class="defaultLink"><a href="supported-platforms.html">Supported Platforms</a></li>
<li class="defaultLink"><a href="technology-apis.html">Qt and Key Technologies</a></li>
<li class="defaultLink"><a href="best-practices.html">How-To's and Best Practices</a></li>
</ul>
</div>
</div>
<div class="box" id="examples">
<h2 title="Examples"><span></span>
Examples</h2>
<div id="list003" class="list">
<ul id="ul003">
<li class="defaultLink"><a href="all-examples.html">Examples</a></li>
<li class="defaultLink"><a href="tutorials.html">Tutorials</a></li>
<li class="defaultLink"><a href="demos.html">Demos</a></li>
<li class="defaultLink"><a href="qdeclarativeexamples.html">QML Examples</a></li>
</ul>
</div>
</div>
</div>
<div class="wrap">
<div class="toolbar">
<div class="breadcrumb toolblock">
<ul>
<li class="first"><a href="index.html">Home</a></li>
<!-- Breadcrumbs go here -->
</ul>
</div>
<div class="toolbuttons toolblock">
<ul>
<li id="smallA" class="t_button">A</li>
<li id="medA" class="t_button active">A</li>
<li id="bigA" class="t_button">A</li>
<li id="print" class="t_button"><a href="javascript:this.print();">
<span>Print</span></a></li>
</ul>
</div>
</div>
<div class="content mainContent">
<h1 class="title">sessionwidget.cpp Example File</h1>
<span class="small-subtitle">network/bearermonitor/sessionwidget.cpp</span>
<!-- $$$network/bearermonitor/sessionwidget.cpp-description -->
<div class="descr"> <a name="details"></a>
<pre class="cpp"> <span class="comment">/****************************************************************************
**
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the examples of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:BSD$
** You may use this file under the terms of the BSD license as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
** met:
** * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in
** the documentation and/or other materials provided with the
** distribution.
** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
** of its contributors may be used to endorse or promote products derived
** from this software without specific prior written permission.
**
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
**
** $QT_END_LICENSE$
**
****************************************************************************/</span>
<span class="preprocessor">#include "sessionwidget.h"</span>
<span class="preprocessor">#include "qnetworkconfigmanager.h"</span>
SessionWidget<span class="operator">::</span>SessionWidget(<span class="keyword">const</span> <span class="type"><a href="qnetworkconfiguration.html">QNetworkConfiguration</a></span> <span class="operator">&</span>config<span class="operator">,</span> <span class="type"><a href="qwidget.html">QWidget</a></span> <span class="operator">*</span>parent)
: <span class="type"><a href="qwidget.html">QWidget</a></span>(parent)<span class="operator">,</span> statsTimer(<span class="operator">-</span><span class="number">1</span>)
{
setupUi(<span class="keyword">this</span>);
<span class="preprocessor">#ifdef QT_NO_NETWORKINTERFACE</span>
interfaceName<span class="operator">-</span><span class="operator">></span>setVisible(<span class="keyword">false</span>);
interfaceNameLabel<span class="operator">-</span><span class="operator">></span>setVisible(<span class="keyword">false</span>);
interfaceGuid<span class="operator">-</span><span class="operator">></span>setVisible(<span class="keyword">false</span>);
interfaceGuidLabel<span class="operator">-</span><span class="operator">></span>setVisible(<span class="keyword">false</span>);
<span class="preprocessor">#endif</span>
session <span class="operator">=</span> <span class="keyword">new</span> <span class="type"><a href="qnetworksession.html">QNetworkSession</a></span>(config<span class="operator">,</span> <span class="keyword">this</span>);
connect(session<span class="operator">,</span> SIGNAL(stateChanged(<span class="type"><a href="qnetworksession.html">QNetworkSession</a></span><span class="operator">::</span>State))<span class="operator">,</span>
<span class="keyword">this</span><span class="operator">,</span> SLOT(updateSession()));
connect(session<span class="operator">,</span> SIGNAL(error(<span class="type"><a href="qnetworksession.html">QNetworkSession</a></span><span class="operator">::</span>SessionError))<span class="operator">,</span>
<span class="keyword">this</span><span class="operator">,</span> SLOT(updateSessionError(<span class="type"><a href="qnetworksession.html">QNetworkSession</a></span><span class="operator">::</span>SessionError)));
updateSession();
sessionId<span class="operator">-</span><span class="operator">></span>setText(<span class="type"><a href="qstring.html">QString</a></span>(<span class="string">"0x%1"</span>)<span class="operator">.</span>arg(<span class="type"><a href="qtglobal.html#qulonglong-typedef">qulonglong</a></span>(session)<span class="operator">,</span> <span class="number">8</span><span class="operator">,</span> <span class="number">16</span><span class="operator">,</span> <span class="type"><a href="qchar.html">QChar</a></span>(<span class="char">'0'</span>)));
configuration<span class="operator">-</span><span class="operator">></span>setText(session<span class="operator">-</span><span class="operator">></span>configuration()<span class="operator">.</span>name());
connect(openSessionButton<span class="operator">,</span> SIGNAL(clicked())<span class="operator">,</span>
<span class="keyword">this</span><span class="operator">,</span> SLOT(openSession()));
connect(openSyncSessionButton<span class="operator">,</span> SIGNAL(clicked())<span class="operator">,</span>
<span class="keyword">this</span><span class="operator">,</span> SLOT(openSyncSession()));
connect(closeSessionButton<span class="operator">,</span> SIGNAL(clicked())<span class="operator">,</span>
<span class="keyword">this</span><span class="operator">,</span> SLOT(closeSession()));
connect(stopSessionButton<span class="operator">,</span> SIGNAL(clicked())<span class="operator">,</span>
<span class="keyword">this</span><span class="operator">,</span> SLOT(stopSession()));
<span class="preprocessor">#ifdef MAEMO_UI</span>
connect(deleteSessionButton<span class="operator">,</span> SIGNAL(clicked())<span class="operator">,</span>
<span class="keyword">this</span><span class="operator">,</span> SLOT(deleteSession()));
<span class="preprocessor">#endif</span>
}
SessionWidget<span class="operator">::</span><span class="operator">~</span>SessionWidget()
{
<span class="keyword">delete</span> session;
}
<span class="type">void</span> SessionWidget<span class="operator">::</span>timerEvent(<span class="type"><a href="qtimerevent.html">QTimerEvent</a></span> <span class="operator">*</span>e)
{
<span class="keyword">if</span> (e<span class="operator">-</span><span class="operator">></span>timerId() <span class="operator">=</span><span class="operator">=</span> statsTimer) {
rxData<span class="operator">-</span><span class="operator">></span>setText(<span class="type"><a href="qstring.html">QString</a></span><span class="operator">::</span>number(session<span class="operator">-</span><span class="operator">></span>bytesReceived()));
txData<span class="operator">-</span><span class="operator">></span>setText(<span class="type"><a href="qstring.html">QString</a></span><span class="operator">::</span>number(session<span class="operator">-</span><span class="operator">></span>bytesWritten()));
activeTime<span class="operator">-</span><span class="operator">></span>setText(<span class="type"><a href="qstring.html">QString</a></span><span class="operator">::</span>number(session<span class="operator">-</span><span class="operator">></span>activeTime()));
}
}
<span class="preprocessor">#ifdef MAEMO_UI</span>
<span class="type">void</span> SessionWidget<span class="operator">::</span>deleteSession()
{
<span class="keyword">delete</span> <span class="keyword">this</span>;
}
<span class="preprocessor">#endif</span>
<span class="type">void</span> SessionWidget<span class="operator">::</span>updateSession()
{
updateSessionState(session<span class="operator">-</span><span class="operator">></span>state());
<span class="keyword">if</span> (session<span class="operator">-</span><span class="operator">></span>state() <span class="operator">=</span><span class="operator">=</span> <span class="type"><a href="qnetworksession.html">QNetworkSession</a></span><span class="operator">::</span>Connected)
statsTimer <span class="operator">=</span> startTimer(<span class="number">1000</span>);
<span class="keyword">else</span> <span class="keyword">if</span> (statsTimer <span class="operator">!</span><span class="operator">=</span> <span class="operator">-</span><span class="number">1</span>)
killTimer(statsTimer);
<span class="keyword">if</span> (session<span class="operator">-</span><span class="operator">></span>configuration()<span class="operator">.</span>type() <span class="operator">=</span><span class="operator">=</span> <span class="type"><a href="qnetworkconfiguration.html">QNetworkConfiguration</a></span><span class="operator">::</span>InternetAccessPoint)
bearer<span class="operator">-</span><span class="operator">></span>setText(session<span class="operator">-</span><span class="operator">></span>configuration()<span class="operator">.</span>bearerTypeName());
<span class="keyword">else</span> {
<span class="type"><a href="qnetworkconfigurationmanager.html">QNetworkConfigurationManager</a></span> mgr;
<span class="type"><a href="qnetworkconfiguration.html">QNetworkConfiguration</a></span> c <span class="operator">=</span> mgr<span class="operator">.</span>configurationFromIdentifier(session<span class="operator">-</span><span class="operator">></span>sessionProperty(<span class="string">"ActiveConfiguration"</span>)<span class="operator">.</span>toString());
bearer<span class="operator">-</span><span class="operator">></span>setText(c<span class="operator">.</span>bearerTypeName());
}
<span class="preprocessor">#ifndef QT_NO_NETWORKINTERFACE</span>
interfaceName<span class="operator">-</span><span class="operator">></span>setText(session<span class="operator">-</span><span class="operator">></span>interface()<span class="operator">.</span>humanReadableName());
interfaceGuid<span class="operator">-</span><span class="operator">></span>setText(session<span class="operator">-</span><span class="operator">></span>interface()<span class="operator">.</span>name());
<span class="preprocessor">#endif</span>
}
<span class="type">void</span> SessionWidget<span class="operator">::</span>openSession()
{
clearError();
session<span class="operator">-</span><span class="operator">></span>open();
updateSession();
}
<span class="type">void</span> SessionWidget<span class="operator">::</span>openSyncSession()
{
clearError();
session<span class="operator">-</span><span class="operator">></span>open();
session<span class="operator">-</span><span class="operator">></span>waitForOpened();
updateSession();
}
<span class="type">void</span> SessionWidget<span class="operator">::</span>closeSession()
{
clearError();
session<span class="operator">-</span><span class="operator">></span>close();
updateSession();
}
<span class="type">void</span> SessionWidget<span class="operator">::</span>stopSession()
{
clearError();
session<span class="operator">-</span><span class="operator">></span>stop();
updateSession();
}
<span class="type">void</span> SessionWidget<span class="operator">::</span>updateSessionState(<span class="type"><a href="qnetworksession.html">QNetworkSession</a></span><span class="operator">::</span>State state)
{
<span class="type"><a href="qstring.html">QString</a></span> s <span class="operator">=</span> tr(<span class="string">"%1 (%2)"</span>);
<span class="keyword">switch</span> (state) {
<span class="keyword">case</span> <span class="type"><a href="qnetworksession.html">QNetworkSession</a></span><span class="operator">::</span>Invalid:
s <span class="operator">=</span> s<span class="operator">.</span>arg(tr(<span class="string">"Invalid"</span>));
<span class="keyword">break</span>;
<span class="keyword">case</span> <span class="type"><a href="qnetworksession.html">QNetworkSession</a></span><span class="operator">::</span>NotAvailable:
s <span class="operator">=</span> s<span class="operator">.</span>arg(tr(<span class="string">"Not Available"</span>));
<span class="keyword">break</span>;
<span class="keyword">case</span> <span class="type"><a href="qnetworksession.html">QNetworkSession</a></span><span class="operator">::</span>Connecting:
s <span class="operator">=</span> s<span class="operator">.</span>arg(tr(<span class="string">"Connecting"</span>));
<span class="keyword">break</span>;
<span class="keyword">case</span> <span class="type"><a href="qnetworksession.html">QNetworkSession</a></span><span class="operator">::</span>Connected:
s <span class="operator">=</span> s<span class="operator">.</span>arg(tr(<span class="string">"Connected"</span>));
<span class="keyword">break</span>;
<span class="keyword">case</span> <span class="type"><a href="qnetworksession.html">QNetworkSession</a></span><span class="operator">::</span>Closing:
s <span class="operator">=</span> s<span class="operator">.</span>arg(tr(<span class="string">"Closing"</span>));
<span class="keyword">break</span>;
<span class="keyword">case</span> <span class="type"><a href="qnetworksession.html">QNetworkSession</a></span><span class="operator">::</span>Disconnected:
s <span class="operator">=</span> s<span class="operator">.</span>arg(tr(<span class="string">"Disconnected"</span>));
<span class="keyword">break</span>;
<span class="keyword">case</span> <span class="type"><a href="qnetworksession.html">QNetworkSession</a></span><span class="operator">::</span>Roaming:
s <span class="operator">=</span> s<span class="operator">.</span>arg(tr(<span class="string">"Roaming"</span>));
<span class="keyword">break</span>;
<span class="keyword">default</span>:
s <span class="operator">=</span> s<span class="operator">.</span>arg(tr(<span class="string">"Unknown"</span>));
}
<span class="keyword">if</span> (session<span class="operator">-</span><span class="operator">></span>isOpen())
s <span class="operator">=</span> s<span class="operator">.</span>arg(tr(<span class="string">"Open"</span>));
<span class="keyword">else</span>
s <span class="operator">=</span> s<span class="operator">.</span>arg(tr(<span class="string">"Closed"</span>));
sessionState<span class="operator">-</span><span class="operator">></span>setText(s);
}
<span class="type">void</span> SessionWidget<span class="operator">::</span>updateSessionError(<span class="type"><a href="qnetworksession.html">QNetworkSession</a></span><span class="operator">::</span>SessionError error)
{
lastError<span class="operator">-</span><span class="operator">></span>setText(<span class="type"><a href="qstring.html">QString</a></span><span class="operator">::</span>number(error));
errorString<span class="operator">-</span><span class="operator">></span>setText(session<span class="operator">-</span><span class="operator">></span>errorString());
}
<span class="type">void</span> SessionWidget<span class="operator">::</span>clearError()
{
lastError<span class="operator">-</span><span class="operator">></span>clear();
errorString<span class="operator">-</span><span class="operator">></span>clear();
}</pre>
</div>
<!-- @@@network/bearermonitor/sessionwidget.cpp -->
</div>
</div>
</div>
<div class="ft">
<span></span>
</div>
</div>
<div class="footer">
<p>
<acronym title="Copyright">©</acronym> 2013 Digia Plc and/or its
subsidiaries. Documentation contributions included herein are the copyrights of
their respective owners.</p>
<br />
<p>
The documentation provided herein is licensed under the terms of the
<a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation
License version 1.3</a> as published by the Free Software Foundation.</p>
<p>
Documentation sources may be obtained from <a href="http://www.qt-project.org">
www.qt-project.org</a>.</p>
<br />
<p>
Digia, Qt and their respective logos are trademarks of Digia Plc
in Finland and/or other countries worldwide. All other trademarks are property
of their respective owners. <a title="Privacy Policy"
href="http://en.gitorious.org/privacy_policy/">Privacy Policy</a></p>
</div>
<script src="scripts/functions.js" type="text/javascript"></script>
</body>
</html>
|
public/js/templates/navbar.html
|
antirek/ryocdr
|
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Меню</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Ryo CDR</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav js-list">
</ul>
</div>
</div>
|
doc/Neptune/Appscale-rdoc/classes/NeptuneJobData.src/M000020.html
|
dcere/pfc
|
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>to_s (NeptuneJobData)</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
</head>
<body class="standalone-code">
<pre><span class="ruby-comment cmt"># File neptune_job_data.rb, line 28</span>
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">to_s</span>
<span class="ruby-node">"#{@name}::#{@num_nodes}::#{Base64.encode64(@start_time._dump).chomp}::#{Base64.encode64(@end_time._dump).chomp}::#{total_time}::#{cost}"</span>
<span class="ruby-keyword kw">end</span></pre>
</body>
</html>
|
bower_components/angular-material/modules/js/switch/switch.css
|
kimsrung/AngularJs
|
/*!
* Angular Material Design
* https://github.com/angular/material
* @license MIT
* v0.11.2-master-7b91b60
*/
md-switch {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
margin: 15px;
white-space: nowrap;
cursor: pointer;
outline: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
md-switch .md-container {
cursor: -webkit-grab;
cursor: grab;
width: 36px;
height: 24px;
position: relative;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
margin-right: 8px; }
md-switch:not([disabled]) .md-dragging, md-switch:not([disabled]).md-dragging .md-container {
cursor: -webkit-grabbing;
cursor: grabbing; }
md-switch.md-focused:not([disabled]) .md-thumb:before {
left: -8px;
top: -8px;
right: -8px;
bottom: -8px; }
md-switch.md-focused:not([disabled]):not(.md-checked) .md-thumb:before {
background-color: rgba(0, 0, 0, 0.12); }
md-switch .md-label {
border-color: transparent;
border-width: 0; }
md-switch .md-bar {
left: 1px;
width: 34px;
top: 5px;
height: 14px;
border-radius: 8px;
position: absolute; }
md-switch .md-thumb-container {
top: 2px;
left: 0;
width: 16px;
position: absolute;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
z-index: 1; }
md-switch.md-checked .md-thumb-container {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0); }
md-switch .md-thumb {
position: absolute;
margin: 0;
left: 0;
top: 0;
outline: none;
height: 20px;
width: 20px;
border-radius: 50%;
box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 2px 1px -1px rgba(0, 0, 0, 0.12); }
md-switch .md-thumb:before {
background-color: transparent;
border-radius: 50%;
content: '';
position: absolute;
display: block;
height: auto;
left: 0;
top: 0;
right: 0;
bottom: 0;
transition: all 0.5s;
width: auto; }
md-switch .md-thumb .md-ripple-container {
position: absolute;
display: block;
width: auto;
height: auto;
left: -20px;
top: -20px;
right: -20px;
bottom: -20px; }
md-switch:not(.md-dragging) .md-bar, md-switch:not(.md-dragging) .md-thumb-container, md-switch:not(.md-dragging) .md-thumb {
transition: all 0.5s cubic-bezier(0.35, 0, 0.25, 1);
transition-property: -webkit-transform, background-color;
transition-property: transform, background-color; }
md-switch:not(.md-dragging) .md-bar, md-switch:not(.md-dragging) .md-thumb {
transition-delay: 0.05s; }
@media screen and (-ms-high-contrast: active) {
md-switch.md-default-theme .md-bar {
background-color: #666; }
md-switch.md-default-theme.md-checked .md-bar {
background-color: #9E9E9E; }
md-switch.md-default-theme .md-thumb {
background-color: #fff; } }
|
dutika_inaicta/asset/singlepage.html
|
mochamadghany/dutika
|
<!--
Author: W3layouts
Author URL: http://w3layouts.com
License: Creative Commons Attribution 3.0 Unported
License URL: http://creativecommons.org/licenses/by/3.0/
-->
<!DOCTYPE HTML>
<html>
<head>
<title>Business_Blog a Blogging Category Flat Bootstrap Responsive Website Template | Singlepage :: w3layouts</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="keywords" content="Business_Blog Responsive web template, Bootstrap Web Templates, Flat Web Templates, Android Compatible web template,
Smartphone Compatible web template, free webdesigns for Nokia, Samsung, LG, SonyErricsson, Motorola web design" />
<script type="applijewelleryion/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); } </script>
<link href="css/bootstrap.css" rel='stylesheet' type='text/css' />
<!-- Custom Theme files -->
<link href='//fonts.googleapis.com/css?family=Roboto+Condensed:400,700' rel='stylesheet' type='text/css'>
<link href='//fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link href="css/style.css" rel='stylesheet' type='text/css' />
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<!--start-main-->
<div class="header">
<div class="header-top">
<div class="container">
<div class="logo">
<a href="index.html"><h1>BUSINESS BLOG</h1></a>
</div>
<div class="search">
<form>
<input type="text" value="Search" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Search';}">
<input type="submit" value="">
</form>
</div>
<div class="social">
<ul>
<li><a href="#" class="facebook"> </a></li>
<li><a href="#" class="facebook twitter"> </a></li>
<li><a href="#" class="facebook chrome"> </a></li>
<li><a href="#" class="facebook in"> </a></li>
<li><a href="#" class="facebook beh"> </a></li>
<li><a href="#" class="facebook vem"> </a></li>
<li><a href="#" class="facebook yout"> </a></li>
</ul>
</div>
<div class="clearfix"></div>
</div>
</div>
<!--head-bottom-->
<div class="head-bottom">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li><a href="videos.html">Videos</a></li>
<li><a href="reviews.html">Reviews</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Tech <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="tech.html">Action</a></li>
<li><a href="tech.html">Action</a></li>
<li><a href="tech.html">Action</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Culture <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="singlepage.html">Action</a></li>
<li><a href="singlepage.html">Action</a></li>
<li><a href="singlepage.html">Action</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Science <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="singlepage.html">Action</a></li>
<li><a href="singlepage.html">Action</a></li>
<li><a href="singlepage.html">Action</a></li>
</ul>
</li>
<li><a href="design.html">Design</a></li>
<li><a href="business.html">Business</a></li>
<li><a href="world.html">World</a></li>
<li><a href="forum.html">Forum</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
</div>
<!--head-bottom-->
</div>
<!-- banner -->
<div class="banner1">
</div>
<!-- technology -->
<div class="technology-1">
<div class="container">
<div class="col-md-9 technology-left">
<div class="business">
<div class=" blog-grid2">
<img src="images/1.jpg" class="img-responsive" alt="">
<div class="blog-text">
<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit</h5>
<p>Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Maecenas tristique orci ac sem. Duis ultricies pharetra magna. Donec accumsan malesuada orci. Donec sit amet eros. Lorem ipsum dolor sit amet, con sectetuer adipiscing elit. Mauris fermentum dictum magna. </p>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable.</p>
</div>
</div>
<div class="comment-top">
<h2>Comment</h2>
<div class="media-left">
<a href="#">
<img src="images/si.png" alt="">
</a>
</div>
<div class="media-body">
<h4 class="media-heading">Richard Spark</h4>
<p>Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis.</p>
<!-- Nested media object -->
<div class="media">
<div class="media-left">
<a href="#">
<img src="images/si.png" alt="">
</a>
</div>
<div class="media-body">
<h4 class="media-heading">Joseph Goh</h4>
<p>Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis.</p>
<!-- Nested media object -->
<div class="media">
<div class="media-left">
<a href="#">
<img src="images/si.png" alt="">
</a>
</div>
<div class="media-body">
<h4 class="media-heading">Melinda Dee</h4>
<p>Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis.</p>
</div>
</div>
</div>
</div>
<!-- Nested media object -->
<div class="media">
<div class="media-left">
<a href="#">
<img src="images/si.png" alt="">
</a>
</div>
<div class="media-body">
<h4 class="media-heading">Rackham</h4>
<p>Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis.</p>
</div>
</div>
</div>
</div>
<div class="comment">
<h3>Leave a Comment</h3>
<div class=" comment-bottom">
<form>
<input type="text" placeholder="Name">
<input type="text" placeholder="Email">
<input type="text" placeholder="Subject">
<textarea placeholder="Message" required=""></textarea>
<input type="submit" value="Send">
</form>
</div>
</div>
</div>
</div>
<!-- technology-right -->
<div class="col-md-3 technology-right-1">
<div class="blo-top">
<div class="tech-btm">
<img src="images/banner1.jpg" class="img-responsive" alt=""/>
</div>
</div>
<div class="blo-top">
<div class="tech-btm">
<h4>Sign up to our newsletter</h4>
<p>Pellentesque dui, non felis. Maecenas male</p>
<div class="name">
<form>
<input type="text" placeholder="Email" required="">
</form>
</div>
<div class="button">
<form>
<input type="submit" value="Subscribe">
</form>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div class="blo-top1">
<div class="tech-btm">
<h4>Top stories of the week </h4>
<div class="blog-grids">
<div class="blog-grid-left">
<a href="singlepage.html"><img src="images/6.jpg" class="img-responsive" alt=""/></a>
</div>
<div class="blog-grid-right">
<h5><a href="singlepage.html">Pellentesque dui, non felis. Maecenas male</a> </h5>
</div>
<div class="clearfix"> </div>
</div>
<div class="blog-grids">
<div class="blog-grid-left">
<a href="singlepage.html"><img src="images/7.jpg" class="img-responsive" alt=""/></a>
</div>
<div class="blog-grid-right">
<h5><a href="singlepage.html">Pellentesque dui, non felis. Maecenas male</a> </h5>
</div>
<div class="clearfix"> </div>
</div>
<div class="blog-grids">
<div class="blog-grid-left">
<a href="singlepage.html"><img src="images/11.jpg" class="img-responsive" alt=""/></a>
</div>
<div class="blog-grid-right">
<h5><a href="singlepage.html">Pellentesque dui, non felis. Maecenas male</a> </h5>
</div>
<div class="clearfix"> </div>
</div>
<div class="blog-grids">
<div class="blog-grid-left">
<a href="singlepage.html"><img src="images/9.jpg" class="img-responsive" alt=""/></a>
</div>
<div class="blog-grid-right">
<h5><a href="singlepage.html">Pellentesque dui, non felis. Maecenas male</a> </h5>
</div>
<div class="clearfix"> </div>
</div>
<div class="blog-grids">
<div class="blog-grid-left">
<a href="singlepage.html"><img src="images/10.jpg" class="img-responsive" alt=""/></a>
</div>
<div class="blog-grid-right">
<h5><a href="singlepage.html">Pellentesque dui, non felis. Maecenas male</a> </h5>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
</div>
<div class="clearfix"></div>
<!-- technology-right -->
</div>
</div>
<!-- technology -->
<!-- footer -->
<div class="footer">
<div class="container">
<div class="col-md-4 footer-left">
<h6>THIS LOOKS GREAT</h6>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt consectetur adipisicing elit,</p>
</div>
<div class="col-md-4 footer-middle">
<h4>Twitter Feed</h4>
<div class="mid-btm">
<p>Consectetur adipisicing</p>
<p>Sed do eiusmod tempor</p>
<a href="https://w3layouts.com/">https://w3layouts.com/</a>
</div>
<p>Consectetur adipisicing</p>
<p>Sed do eiusmod tempor</p>
<a href="https://w3layouts.com/">https://w3layouts.com/</a>
</div>
<div class="col-md-4 footer-right">
<h4>Quick Links</h4>
<li><a href="#">Eiusmod tempor</a></li>
<li><a href="#">Consectetur </a></li>
<li><a href="#">Adipisicing elit</a></li>
<li><a href="#">Eiusmod tempor</a></li>
<li><a href="#">Consectetur </a></li>
<li><a href="#">Adipisicing elit</a></li>
</div>
<div class="clearfix"></div>
</div>
</div>
<!-- footer -->
<!-- footer-bottom -->
<div class="foot-nav">
<div class="container">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="videos.html">Videos</a></li>
<li><a href="reviews.html">Reviews</a></li>
<li><a href="tech.html">Tech</a></li>
<li><a href="singlepage.html">Culture</a></li>
<li><a href="singlepage.html">Science</a></li>
<li><a href="design.html">Design</a></li>
<li><a href="business.html">Business</a></li>
<li><a href="world.html">World</a></li>
<li><a href="forum.html">Forum</a></li>
<li><a href="contact.html">Contact</a></li>
<div class="clearfix"></div>
</ul>
</div>
</div>
<!-- footer-bottom -->
<div class="copyright">
<div class="container">
<p>© 2016 Business_Blog. All rights reserved | Template by <a href="http://w3layouts.com/">W3layouts</a></p>
</div>
</div>
</body>
</html>
|
lib/slf4j-1.6.0/site/xref-test/org/slf4j/MultiBindingAssertionTest.html
|
virtix/mut4j
|
<!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=ISO-8859-1" />
<title>MultiBindingAssertionTest xref</title>
<link type="text/css" rel="stylesheet" href="../../stylesheet.css" />
</head>
<body>
<pre>
<a name="1" href="#1">1</a> <em class="jxr_comment">/*<em class="jxr_comment"> </em></em>
<a name="2" href="#2">2</a> <em class="jxr_comment"> * Copyright (c) 2004-2009 QOS.ch</em>
<a name="3" href="#3">3</a> <em class="jxr_comment"> * All rights reserved.</em>
<a name="4" href="#4">4</a> <em class="jxr_comment"> * </em>
<a name="5" href="#5">5</a> <em class="jxr_comment"> * Permission is hereby granted, free of charge, to any person obtaining</em>
<a name="6" href="#6">6</a> <em class="jxr_comment"> * a copy of this software and associated documentation files (the</em>
<a name="7" href="#7">7</a> <em class="jxr_comment"> * "Software"), to deal in the Software without restriction, including</em>
<a name="8" href="#8">8</a> <em class="jxr_comment"> * without limitation the rights to use, copy, modify, merge, publish,</em>
<a name="9" href="#9">9</a> <em class="jxr_comment"> * distribute, sublicense, and/or sell copies of the Software, and to</em>
<a name="10" href="#10">10</a> <em class="jxr_comment"> * permit persons to whom the Software is furnished to do so, subject to</em>
<a name="11" href="#11">11</a> <em class="jxr_comment"> * the following conditions:</em>
<a name="12" href="#12">12</a> <em class="jxr_comment"> * </em>
<a name="13" href="#13">13</a> <em class="jxr_comment"> * The above copyright notice and this permission notice shall be</em>
<a name="14" href="#14">14</a> <em class="jxr_comment"> * included in all copies or substantial portions of the Software.</em>
<a name="15" href="#15">15</a> <em class="jxr_comment"> * </em>
<a name="16" href="#16">16</a> <em class="jxr_comment"> * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,</em>
<a name="17" href="#17">17</a> <em class="jxr_comment"> * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF</em>
<a name="18" href="#18">18</a> <em class="jxr_comment"> * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND</em>
<a name="19" href="#19">19</a> <em class="jxr_comment"> * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE</em>
<a name="20" href="#20">20</a> <em class="jxr_comment"> * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION</em>
<a name="21" href="#21">21</a> <em class="jxr_comment"> * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION</em>
<a name="22" href="#22">22</a> <em class="jxr_comment"> * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</em>
<a name="23" href="#23">23</a> <em class="jxr_comment"> */</em>
<a name="24" href="#24">24</a>
<a name="25" href="#25">25</a> <strong class="jxr_keyword">package</strong> org.slf4j;
<a name="26" href="#26">26</a>
<a name="27" href="#27">27</a> <strong class="jxr_keyword">import</strong> java.io.PrintStream;
<a name="28" href="#28">28</a> <strong class="jxr_keyword">import</strong> java.util.List;
<a name="29" href="#29">29</a> <strong class="jxr_keyword">import</strong> java.util.Random;
<a name="30" href="#30">30</a>
<a name="31" href="#31">31</a> <strong class="jxr_keyword">import</strong> junit.framework.TestCase;
<a name="32" href="#32">32</a>
<a name="33" href="#33">33</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../org/slf4j/MultiBindingAssertionTest.html">MultiBindingAssertionTest</a> <strong class="jxr_keyword">extends</strong> TestCase {
<a name="34" href="#34">34</a>
<a name="35" href="#35">35</a> <a href="../../org/slf4j/StringPrintStream.html">StringPrintStream</a> sps = <strong class="jxr_keyword">new</strong> <a href="../../org/slf4j/StringPrintStream.html">StringPrintStream</a>(System.err);
<a name="36" href="#36">36</a> PrintStream old = System.err;
<a name="37" href="#37">37</a> <strong class="jxr_keyword">int</strong> diff = 1024 + <strong class="jxr_keyword">new</strong> Random().nextInt(10000);
<a name="38" href="#38">38</a>
<a name="39" href="#39">39</a> <strong class="jxr_keyword">public</strong> <a href="../../org/slf4j/MultiBindingAssertionTest.html">MultiBindingAssertionTest</a>(String name) {
<a name="40" href="#40">40</a> <strong class="jxr_keyword">super</strong>(name);
<a name="41" href="#41">41</a> }
<a name="42" href="#42">42</a>
<a name="43" href="#43">43</a> <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">void</strong> setUp() <strong class="jxr_keyword">throws</strong> Exception {
<a name="44" href="#44">44</a> <strong class="jxr_keyword">super</strong>.setUp();
<a name="45" href="#45">45</a> System.setErr(sps);
<a name="46" href="#46">46</a> }
<a name="47" href="#47">47</a>
<a name="48" href="#48">48</a> <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">void</strong> tearDown() <strong class="jxr_keyword">throws</strong> Exception {
<a name="49" href="#49">49</a> <strong class="jxr_keyword">super</strong>.tearDown();
<a name="50" href="#50">50</a> System.setErr(old);
<a name="51" href="#51">51</a> }
<a name="52" href="#52">52</a>
<a name="53" href="#53">53</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> test() <strong class="jxr_keyword">throws</strong> Exception {
<a name="54" href="#54">54</a> <strong class="jxr_keyword">try</strong> {
<a name="55" href="#55">55</a> Logger logger = LoggerFactory.getLogger(<strong class="jxr_keyword">this</strong>.getClass());
<a name="56" href="#56">56</a> String msg = <span class="jxr_string">"hello world "</span> + diff;
<a name="57" href="#57">57</a> logger.info(msg);
<a name="58" href="#58">58</a> fail(<span class="jxr_string">"was expecting NoSuchMethodError"</span>);
<a name="59" href="#59">59</a> } <strong class="jxr_keyword">catch</strong> (NoSuchMethodError e) {
<a name="60" href="#60">60</a> }
<a name="61" href="#61">61</a> List list = sps.stringList;
<a name="62" href="#62">62</a> assertMsgContains(list, 0, <span class="jxr_string">"Class path contains multiple SLF4J bindings."</span>);
<a name="63" href="#63">63</a> assertMsgContains(list, 1, <span class="jxr_string">"Found binding in"</span>);
<a name="64" href="#64">64</a> assertMsgContains(list, 2, <span class="jxr_string">"Found binding in"</span>);
<a name="65" href="#65">65</a> assertMsgContains(list, 3, <span class="jxr_string">"See http://www.slf4j.org/codes.html"</span>);
<a name="66" href="#66">66</a> assertMsgContains(list, 4,
<a name="67" href="#67">67</a> <span class="jxr_string">"slf4j-api 1.6.x (or later) is incompatible with this binding"</span>);
<a name="68" href="#68">68</a> assertMsgContains(list, 5, <span class="jxr_string">"Your binding is version 1.5.5 or earlier."</span>);
<a name="69" href="#69">69</a>
<a name="70" href="#70">70</a> }
<a name="71" href="#71">71</a>
<a name="72" href="#72">72</a> <strong class="jxr_keyword">void</strong> assertMsgContains(List strList, <strong class="jxr_keyword">int</strong> index, String msg) {
<a name="73" href="#73">73</a> assertTrue(((String) strList.get(index)).contains(msg));
<a name="74" href="#74">74</a> }
<a name="75" href="#75">75</a> }
</pre>
<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
</html>
|
css/main.css
|
marcinbiegun/marcinbiegun.com
|
@import url(uno.css);
@import url(monokai.css);
/* Modifications */
pre.highlight,
.highlight pre {
padding: 10px;
}
pre.highlight code,
.highlight pre code {
white-space: pre-wrap;
}
.btn,
.navigation__item a {
margin: 5px 0;
white-space: nowrap;
}
.pagination__page-number {
display: inline-block;
padding: 10px;
}
.categories a,
.tags a {
border: 1px solid #e25440;
border-radius: 20px;
color: #e25440;
display: inline-block;
font-size: 12px;
margin: 5px 0;
padding: 5px 10px;
text-shadow: none;
white-space: nowrap;
}
.post-meta__tags {
font-size: 12px;
padding: 0 5px;
}
.footer__copyright {
margin: 0 20px 10px;
}
.user-image {
margin-bottom: 1.2em;
position: relative;
width: 100px;
height: 100px;
border: 3px solid #fff;
border-radius:100%;
}
.post-list img, .post img {
max-width: 640px;
}
|
ogre/ogre_src_v1-8-1/Docs/api/html/OgreSingleton_8h.html
|
jjenki11/blaze-chem-rendering
|
<html>
<head>
<title>OgreSingleton.h File Reference - OGRE Documentation</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link type="text/css" rel="stylesheet" href="doxygen.css">
<link type="text/css" rel="stylesheet" href="tabs.css">
</head>
<body>
<!-- Generated by Doxygen 1.7.6.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="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="dirs.html"><span>Directories</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File List</span></a></li>
<li><a href="globals.html"><span>File Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="dir_8388db04747d7625d426abbcac0905dd.html">OgreMain</a> </li>
<li class="navelem"><a class="el" href="dir_697e021d2615ffc0898007e3a5fb29f4.html">include</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#nested-classes">Classes</a> |
<a href="#namespaces">Namespaces</a> </div>
<div class="headertitle">
<div class="title">OgreSingleton.h File Reference</div> </div>
</div><!--header-->
<div class="contents">
<div class="textblock"><code>#include "<a class="el" href="OgrePrerequisites_8h_source.html">OgrePrerequisites.h</a>"</code><br/>
<code>#include "<a class="el" href="OgreHeaderPrefix_8h_source.html">OgreHeaderPrefix.h</a>"</code><br/>
<code>#include "<a class="el" href="OgreHeaderSuffix_8h_source.html">OgreHeaderSuffix.h</a>"</code><br/>
</div>
<p><a href="OgreSingleton_8h_source.html">Go to the source code of this file.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classOgre_1_1Singleton.html">Ogre::Singleton< T ></a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Template class for creating single-instance global classes. <a href="classOgre_1_1Singleton.html#details">More...</a><br/></td></tr>
<tr><td colspan="2"><h2><a name="namespaces"></a>
Namespaces</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceOgre.html">Ogre</a></td></tr>
</table>
</div><!-- contents -->
<hr>
<p>
Copyright © 2012 Torus Knot Software Ltd<br />
<!--Creative Commons License--><a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-sa/3.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-ShareAlike 3.0 Unported License</a>.<br/>
<!--/Creative Commons License--><!-- <rdf:RDF xmlns="http://web.resource.org/cc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<Work rdf:about="">
<license rdf:resource="http://creativecommons.org/licenses/by-sa/2.5/" />
<dc:type rdf:resource="http://purl.org/dc/dcmitype/Text" />
</Work>
<License rdf:about="http://creativecommons.org/licenses/by-sa/2.5/"><permits rdf:resource="http://web.resource.org/cc/Reproduction"/><permits rdf:resource="http://web.resource.org/cc/Distribution"/><requires rdf:resource="http://web.resource.org/cc/Notice"/><requires rdf:resource="http://web.resource.org/cc/Attribution"/><permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/><requires rdf:resource="http://web.resource.org/cc/ShareAlike"/></License></rdf:RDF> -->
Last modified Sun Sep 2 2012 07:27:25
</p>
</body>
</html>
|
tools/google-closure-library/closure/goog/docs/closure_goog_editor_plugins_basictextformatter.js.html
|
yesudeep/puppy
|
<!doctype html>
<html>
<head>
<link rel="shortcut icon" href="static/images/favicon.ico" type="image/x-icon">
<title>basictextformatter.js (Closure Library API Documentation - JavaScript)</title>
<link rel="stylesheet" href="static/css/base.css">
<link rel="stylesheet" href="static/css/doc.css">
<link rel="stylesheet" href="static/css/sidetree.css">
<link rel="stylesheet" href="static/css/prettify.css">
<script>
var _staticFilePath = "static/";
</script>
<script src="static/js/doc.js">
</script>
<meta charset="utf8">
</head>
<body onload="prettyPrint()">
<div id="header">
<div class="g-section g-tpl-50-50 g-split">
<div class="g-unit g-first">
<a id="logo" href="index.html">Closure Library API Documentation</a>
</div>
<div class="g-unit">
<div class="g-c">
<strong>Go to class or file:</strong>
<input type="text" id="ac">
</div>
</div>
</div>
</div>
<div class="colmask rightmenu">
<div class="colleft">
<div class="col1">
<!-- Column 1 start -->
<div id="title">
<span class="fn">basictextformatter.js</span>
</div>
<div class="g-section g-tpl-75-25">
<div class="g-unit g-first" id="description">
Functions to style text.
</div>
<div class="g-unit" id="useful-links">
<div class="title">Useful links</div>
<ol>
<li><a href="closure_goog_editor_plugins_basictextformatter.js.source.html"><span class='source-code-link'>Source Code</span></a></li>
</ol>
</div>
</div>
<h2 class="g-first">File Location</h2>
<div class="g-section g-tpl-20-80">
<div class="g-unit g-first">
<div class="g-c-cell code-label">editor/plugins/basictextformatter.js</div>
</div>
</div>
<hr/>
<h2>Classes</h2>
<div class="fn-constructor">
<a href="class_goog_editor_plugins_BasicTextFormatter.html">
goog.editor.plugins.BasicTextFormatter</a><br/>
<div class="class-details">Functions to style text (e.g. underline, make bold, etc.)</div>
</div>
<br/>
<div class="legend">
<span class="key publickey"></span><span>Public</span>
<span class="key protectedkey"></span><span>Protected</span>
<span class="key privatekey"></span><span>Private</span>
</div>
<h2>Global Functions</h2>
<div class="section">
<table class="horiz-rule">
<tr class="even entry private">
<td class="access"></td>
<td>
<a name="goog.editor.plugins.BasicTextFormatter.BR_REGEXP_"></a>
<div class="arg">
<img align="left" src="static/images/blank.gif">
<span class="entryNamespace">goog.editor.plugins.BasicTextFormatter.</span><span class="entryName">BR_REGEXP_<span class="args">()</span>
</span>
</div>
<div class="entryOverview">
Regular expression to match BRs in HTML. Saves the BRs' attributes in $1 for
use with replace(). In non-IE browsers, does not match BRs adjacent to an
opening or closing DIV or P tag, since nonrendered BR elements can occur at
the end of block level containers in those browsers' editors.
</div>
</td>
<td class="view-code">
<a href="closure_goog_editor_plugins_basictextformatter.js.source.html#line499">code »</a>
</td>
</tr>
<tr class="odd entry private">
<td class="access"></td>
<td>
<a name="goog.editor.plugins.BasicTextFormatter.convertContainerToTextAlign_"></a>
<div class="arg">
<img align="left" src="static/images/blank.gif">
<span class="entryNamespace">goog.editor.plugins.BasicTextFormatter.</span><span class="entryName">convertContainerToTextAlign_<span class="args">(<span class="arg">node</span>)</span>
</span>
</div>
<div class="entryOverview">
Converts the block element containing the given node to use CSS text-align
instead of the align property.
</div>
<! -- Method details -->
<div class="entryDetails">
<div class="detailsSection">
<b>Arguments: </b>
<table class="horiz-rule">
<tr class="even">
<td>
<span class="entryName">node</span>
: <div class="fullType"><span class="type"><a href="http://www.google.com/url?sa=D&q=https://developer.mozilla.org/en/DOM/Node">Node</a></span></div>
<div class="entryOverview">The node to convert the container of.</div>
</td>
</tr>
</table>
</div>
</div>
</td>
<td class="view-code">
<a href="closure_goog_editor_plugins_basictextformatter.js.source.html#line665">code »</a>
</td>
</tr>
<tr class="even entry private">
<td class="access"></td>
<td>
<a name="goog.editor.plugins.BasicTextFormatter.convertParagraphToDiv_"></a>
<div class="arg">
<img align="left" src="static/images/blank.gif">
<span class="entryNamespace">goog.editor.plugins.BasicTextFormatter.</span><span class="entryName">convertParagraphToDiv_<span class="args">(<span class="arg">paragraph</span>, <span class="arg">opt_convertBrs</span>)</span>
</span>
</div>
<div class="entryOverview">
Convert the given paragraph to being a div. This clobbers the
passed-in node!
This is only intended to be used in IE and Opera.
</div>
<! -- Method details -->
<div class="entryDetails">
<div class="detailsSection">
<b>Arguments: </b>
<table class="horiz-rule">
<tr class="even">
<td>
<span class="entryName">paragraph</span>
: <div class="fullType"><span class="type"><a href="http://www.google.com/url?sa=D&q=https://developer.mozilla.org/en/DOM/Node">Node</a></span></div>
<div class="entryOverview">Paragragh to convert to a div.</div>
</td>
</tr>
<tr class="odd">
<td>
<span class="entryName">opt_convertBrs</span>
: <div class="fullType"><span class="type"><a href="http://www.google.com/url?sa=D&q=https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Boolean">boolean</a></span></div>
<div class="entryOverview">If true, also convert BRs to divs.</div>
</td>
</tr>
</table>
</div>
</div>
</td>
<td class="view-code">
<a href="closure_goog_editor_plugins_basictextformatter.js.source.html#line587">code »</a>
</td>
</tr>
<tr class="odd entry private">
<td class="access"></td>
<td>
<a name="goog.editor.plugins.BasicTextFormatter.convertToRealExecCommand_"></a>
<div class="arg">
<img align="left" src="static/images/blank.gif">
<span class="entryNamespace">goog.editor.plugins.BasicTextFormatter.</span><span class="entryName">convertToRealExecCommand_<span class="args">(<span class="arg">command</span>)</span>
</span>
⇒ <div class="fullType"><span class="type"><a href="http://www.google.com/url?sa=D&q=https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/String">string</a></span></div>
</div>
<div class="entryOverview">
If this is a goog.editor.plugins.BasicTextFormatter.COMMAND,
convert it to something that we can pass into execCommand,
queryCommandState, etc.
TODO: Consider doing away with the + and converter completely.
</div>
<! -- Method details -->
<div class="entryDetails">
<div class="detailsSection">
<b>Arguments: </b>
<table class="horiz-rule">
<tr class="even">
<td>
<span class="entryName">command</span>
: <div class="fullType"><span class="type">goog.editor.plugins.BasicTextFormatter.COMMAND</span><span> | </span><span class="type"><a href="http://www.google.com/url?sa=D&q=https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/String">string</a></span></div>
<div class="entryOverview">A command key.</div>
</td>
</tr>
</table>
</div>
<div class="detailsSection">
<b>Returns:</b> <div class="fullType"><span class="type"><a href="http://www.google.com/url?sa=D&q=https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/String">string</a></span></div>
The equivalent execCommand command.
</div>
</div>
</td>
<td class="view-code">
<a href="closure_goog_editor_plugins_basictextformatter.js.source.html#line620">code »</a>
</td>
</tr>
<tr class="even entry private">
<td class="access"></td>
<td>
<a name="goog.editor.plugins.BasicTextFormatter.getNodeJustification_"></a>
<div class="arg">
<img align="left" src="static/images/blank.gif">
<span class="entryNamespace">goog.editor.plugins.BasicTextFormatter.</span><span class="entryName">getNodeJustification_<span class="args">(<span class="arg">element</span>)</span>
</span>
⇒ <div class="fullType"><span class="type"><a href="http://www.google.com/url?sa=D&q=https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/String">string</a></span></div>
</div>
<div class="entryOverview">
Determines the justification for a given block-level element.
</div>
<! -- Method details -->
<div class="entryDetails">
<div class="detailsSection">
<b>Arguments: </b>
<table class="horiz-rule">
<tr class="even">
<td>
<span class="entryName">element</span>
: <div class="fullType"><span class="type"><a href="http://www.google.com/url?sa=D&q=https://developer.mozilla.org/en/DOM/Element">Element</a></span></div>
<div class="entryOverview">The node to get justification for.</div>
</td>
</tr>
</table>
</div>
<div class="detailsSection">
<b>Returns:</b> <div class="fullType"><span class="type"><a href="http://www.google.com/url?sa=D&q=https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/String">string</a></span></div>
The justification for a given block-level node.
</div>
</div>
</td>
<td class="view-code">
<a href="closure_goog_editor_plugins_basictextformatter.js.source.html#line1458">code »</a>
</td>
</tr>
</table>
</div>
<h2>Global Properties</h2>
<div class="section">
<table class="horiz-rule">
<tr class="even entry private">
<td class="access"></td>
<a name="goog.editor.plugins.BasicTextFormatter.SUPPORTED_COMMANDS_"></a>
<td>
<div class="arg">
<img align="left" src="static/images/blank.gif">
<span class="entryNamespace">goog.editor.plugins.BasicTextFormatter.</span><span class="entryName">SUPPORTED_COMMANDS_</span>
: <div class="fullType"><span class="type"><a href="http://www.google.com/url?sa=D&q=https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Object">Object</a></span></div>
</div>
<div class="entryOverview">
Inverse map of execCommand strings to
goog.editor.plugins.BasicTextFormatter.COMMAND constants. Used to
determine whether a string corresponds to a command this plugin
handles in O(1) time.
</div>
</td>
<td class="view-code">
<a href="closure_goog_editor_plugins_basictextformatter.js.source.html#line105">Code »</a>
</td>
</tr>
<tr class="odd entry private">
<td class="access"></td>
<a name="goog.editor.plugins.BasicTextFormatter.SUPPORTED_JUSTIFICATIONS_"></a>
<td>
<div class="arg">
<img align="left" src="static/images/blank.gif">
<span class="entryNamespace">goog.editor.plugins.BasicTextFormatter.</span><span class="entryName">SUPPORTED_JUSTIFICATIONS_</span>
: <div class="fullType"><span class="type"><a href="http://www.google.com/url?sa=D&q=https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Object">Object</a></span></div>
</div>
<div class="entryOverview">
Hash of suppoted justifications.
</div>
</td>
<td class="view-code">
<a href="closure_goog_editor_plugins_basictextformatter.js.source.html#line1383">Code »</a>
</td>
</tr>
</table>
</div>
<!-- Column 1 end -->
</div>
<div class="col2">
<!-- Column 2 start -->
<div class="col2-c">
<h2 id="ref-head">Directory plugins</h2>
<div id="localView"></div>
</div>
<div class="col2-c">
<h2 id="ref-head">File Reference</h2>
<div id="sideFileIndex" rootPath="closure/goog" current="editor/plugins/basictextformatter.js"></div>
</div>
<!-- Column 2 end -->
</div>
</div>
</div>
</body>
</html>
|
src/AdminUI/html/AdminFrontPage.html
|
bhavanaananda/DataStage
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>ADMIRAL: ADMIRAL User Administration</title>
<!-- TODO: move to separate CSS file -->
<style>
td {
background-color: #FFE;
}
</style>
<link rel="stylesheet" href="./../css/AdminUI.css" type="text/css" />
<!-- Import jQuery framework -->
<script type="text/javascript" src="../../jQuery/js/jquery-1.4.2.js"></script>
<!-- Import jQuery additional libraries -->
<script type="text/javascript" src="../../jQuery/jquery.json-2.2.js"></script>
<!-- Import MochiKit modules: require MochiKit library functions to be fully qualified -->
<script type="text/javascript">MochiKit = {__export__: false};</script>
<script type="text/javascript" src="../../MochiKit/Base.js"></script>
<script type="text/javascript" src="../../MochiKit/Iter.js"></script>
<script type="text/javascript" src="../../MochiKit/Logging.js"></script>
<!-- Import generic code from the dataset utils package -->
<script type="text/javascript" src="../../DatasetUtils/js/DatasetTree.js"></script>
<!-- Import Admiral functions -->
<script type="text/javascript" src="../../Admiral/admiral-base.js"></script>
<script type="text/javascript" src="../../Admiral/Error.js"></script>
<script type="text/javascript" src="../../Admiral/AsyncComputation.js"></script>
<script type="text/javascript" src="./../js/AdminFrontPage.js"></script>
<script type="text/javascript" src="./../js/AdmiralListUsers.js"></script>
<script>
// Use jQuery via jQuery(...)
jQuery.noConflict();
</script>
</head>
<body>
<div>
<span id="logo"><a href="/"><img alt="site_logo" src="../../images/Admiral-logo-284x100.png" border="0"/></a></span>
</div>
<h1>ADMIRAL User Administration</h1>
<h2></h2>
<form id="adminForm" name="adminForm" action="" method="post">
<div class=" outer">
<div class="box">
<span class="label">
<span class="mainlabel">
Add ADMIRAL User :
</span>
</span>
<span class="labelvalue">
<span class="sublabelvalue">
<!-- <input name="userAdd" id="userAdd" type="text" value="" size="20" /> -->
<input name="userAddButton" id="userAddButton" type="submit" value="Add"/>
</span>
</span>
</div>
<div class="box">
<span class="label">
<span class="mainlabel">
Delete / Modify
</span>
<span class="mainlabel">
ADMIRAL User :
</span>
</span>
<span class="labelvalue">
<span class="sublabelvalue">
<input name="selectedUser" id="selectedUser" type="text" value="" size="20" />
<input name="userModifyButton" id="userModifyButton" type="submit" value="Modify"/>
<input name="userDelButton" id="userDelButton" type="submit" value="Delete"/>
</span>
<span class="sublabelvalue">
<select name="userList" id="userList" size="4" >
<option value="user1" class='userListItem'>User1</option>
<option value="user2" class='userListItem'>User2</option>
<option value="user3" class='userListItem'>User3</option>
<option value="user4" class='userListItem'>User4</option>
</select>
<!--<button type="button" name="userModifyButton" id="userModifyButton">Modify</button> -->
</span>
</span>
</div>
<div class="box">
<span class="labelvalue">
<input name="cancel" id="cancel" type="submit" value="Home"/>
</span>
</div>
</div>
</form>
</body>
</html>
|
lib/NUnit-2.6.3/doc/parameterizedTests.html
|
primeinc/superputty
|
<!-- saved from url=(0014)about:internet --><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html>
<!-- Standard Head Part -->
<head>
<title>NUnit - ParameterizedTests</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta http-equiv="Content-Language" content="en-US">
<meta name="norton-safeweb-site-verification" content="tb6xj01p4hgo5x-8wscsmq633y11-e6nhk-bnb5d987bseanyp6p0uew-pec8j963qlzj32k5x9h3r2q7wh-vmy8bbhek5lnpp5w4p8hocouuq39e09jrkihdtaeknua" />
<link rel="stylesheet" type="text/css" href="nunit.css">
<link rel="shortcut icon" href="favicon.ico">
</head>
<!-- End Standard Head Part -->
<body>
<!-- Standard Header for NUnit.org -->
<div id="header">
<a id="logo" href="http://www.nunit.org"><img src="img/logo.gif" alt="NUnit.org" title="NUnit.org"></a>
<div id="nav">
<a href="http://www.nunit.org">NUnit</a>
<a class="active" href="index.html">Documentation</a>
</div>
</div>
<!-- End of Header -->
<div id="content">
<h2>Parameterized Tests</h2>
<p>NUnit 2.5 supports parameterized tests. Test methods
may have parameters and various attributes are available
to indicate what arguments should be supplied by NUnit.
<p>Multiple sets of arguments cause the creation of multiple
tests. All arguments are created at the point of loading the
tests, so the individual test cases are available for
display and selection in the Gui, if desired.
<p>Some attributes allow you to specify arguments inline - directly on
the attribute - while others use a separate method, property or field
to hold the arguments. In addition, some attributes identify complete test cases,
including all the necessary arguments, while others only provide data
for a single argument. This gives rise to four groups of attributes,
as shown in the following table.
<table class="nunit">
<tr><th></th><th>Complete Test Cases</th><th>Data for One Argument</th></tr>
<tr><th>Inline</th>
<td><a href="testCase.html">TestCaseAttribute</a></td>
<td><a href="random.html">RandomAttribute</a><br>
<a href="range.html">RangeAttribute</a><br>
<a href="values.html">ValuesAttribute</a></td></tr>
<tr><th>Separate</th>
<td><a href="testCaseSource.html">TestCaseSourceAttribute</a></td>
<td><a href="valueSource.html">ValueSourceAttribute</a></td></tr>
</table>
<p>In addition, when data is specified for individual arguments, special attributes
may be added to the test method itself in order to tell NUnit how
to go about combining the arguments. Currently, the following attributes
are provided:
<ul>
<li><a href="combinatorial.html">CombinatorialAttribute</a> (default)
<li><a href="pairwise.html">PairwiseAttribute</a><li><a href="sequential.html">SequentialAttribute</a></ul>
<h3>Order of Execution</h3>
<p>In NUnit 2.5, individual test cases are sorted alphabetically and executed in
that order. With NUnit 2.5.1, the individual cases are not sorted, but are
executed in the order in which NUnit discovers them. This order does <b>not</b>
follow the lexical order of the attributes and will often vary between different
compilers or different versions of the CLR.
<p>The following specific rules for ordering apply:
<ol>
<li>If all arguments are specified in a <b>single TestCaseSource</b> attribute,
the ordering of the cases provided will be maintained.
<li>If each parameter has a <b>single Values</b>, <b>ValueSource</b> or
<b>Range</b> attribute and the <b>Sequential</b> combining strategy
is used - or there is only one argument - the ordering will be maintained.
<li>In all other cases, including using multiple <b>TestCase</b> attributes
or a combination of different types of attributes, the ordering of the
test cases is undefined.
</ol>
</div>
<!-- Submenu -->
<div id="subnav">
<ul>
<li><a href="index.html">NUnit 2.6.3</a></li>
<ul>
<li><a href="getStarted.html">Getting Started</a></li>
<li><a href="writingTests.html">Writing Tests</a></li>
<ul>
<li><a href="assertions.html">Assertions</a></li>
<li><a href="attributes.html">Attributes</a></li>
<ul>
<li><a href="actionAttributes.html">Action Attributes</a></li>
<li><a href="category.html">Category</a></li>
<li><a href="combinatorial.html">Combinatorial</a></li>
<li><a href="culture.html">Culture</a></li>
<li><a href="datapoint.html">Datapoint(s)</a></li>
<li><a href="description.html">Description</a></li>
<li><a href="exception.html">Exception</a></li>
<li><a href="explicit.html">Explicit</a></li>
<li><a href="ignore.html">Ignore</a></li>
<li><a href="maxtime.html">Maxtime</a></li>
<li><a href="pairwise.html">Pairwise</a></li>
<li><a href="platform.html">Platform</a></li>
<li><a href="property.html">Property</a></li>
<li><a href="random.html">Random</a></li>
<li><a href="range.html">Range</a></li>
<li><a href="repeat.html">Repeat</a></li>
<li><a href="requiredAddin.html">RequiredAddin</a></li>
<li><a href="requiresMTA.html">Requires MTA</a></li>
<li><a href="requiresSTA.html">Requires STA</a></li>
<li><a href="requiresThread.html">Requires Thread</a></li>
<li><a href="sequential.html">Sequential</a></li>
<li><a href="setCulture.html">SetCulture</a></li>
<li><a href="setUICulture.html">SetUICulture</a></li>
<li><a href="setup.html">Setup</a></li>
<li><a href="setupFixture.html">SetupFixture</a></li>
<li><a href="suite.html">Suite</a></li>
<li><a href="teardown.html">Teardown</a></li>
<li><a href="test.html">Test</a></li>
<ul>
<li id="current"><a href="parameterizedTests.html">Parameterized Tests</a></li>
</ul>
<li><a href="testCase.html">TestCase</a></li>
<li><a href="testCaseSource.html">TestCaseSource</a></li>
<li><a href="testFixture.html">TestFixture</a></li>
<li><a href="fixtureSetup.html">TestFixtureSetUp</a></li>
<li><a href="fixtureTeardown.html">TestFixtureTearDown</a></li>
<li><a href="theory.html">Theory</a></li>
<li><a href="timeout.html">Timeout</a></li>
<li><a href="values.html">Values</a></li>
<li><a href="valueSource.html">ValueSource</a></li>
</ul>
<li><a href="testContext.html">Test Context</a></li>
</ul>
<li><a href="runningTests.html">Running Tests</a></li>
<li><a href="extensibility.html">Extensibility</a></li>
<li><a href="releaseNotes.html">Release Notes</a></li>
<li><a href="samples.html">Samples</a></li>
<li><a href="license.html">License</a></li>
</ul>
<li><a href="vsTestAdapter.html">NUnit Test Adapter</a></li>
<ul>
<li><a href="vsTestAdapterLicense.html">License</a></li>
<li><a href="vsTestAdapterReleaseNotes.html">Release Notes</a></li>
</ul>
<li><a href="&r=2.6.3.html"></a></li>
<li><a href="&r=2.6.3.html"></a></li>
</ul>
</div>
<!-- End of Submenu -->
<!-- Standard Footer for NUnit.org -->
<div id="footer">
Copyright © 2012 Charlie Poole. All Rights Reserved.
</div>
<!-- End of Footer -->
</body>
</html>
|
resources/web/default.css
|
samuelnp/motion-hybrid
|
#motion_hybrid_bridge {
display: none;
}
|
QtEsrc/qt-everywhere-opensource-src-4.8.5/doc/html/qdialog-members.html
|
stephaneAG/PengPod700
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- qdialog.cpp -->
<title>Qt 4.8: List of All Members for QDialog</title>
<link rel="stylesheet" type="text/css" href="style/style.css" />
<script src="scripts/jquery.js" type="text/javascript"></script>
<script src="scripts/functions.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="style/superfish.css" />
<link rel="stylesheet" type="text/css" href="style/narrow.css" />
<!--[if IE]>
<meta name="MSSmartTagsPreventParsing" content="true">
<meta http-equiv="imagetoolbar" content="no">
<![endif]-->
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" href="style/style_ie6.css">
<![endif]-->
<!--[if IE 7]>
<link rel="stylesheet" type="text/css" href="style/style_ie7.css">
<![endif]-->
<!--[if IE 8]>
<link rel="stylesheet" type="text/css" href="style/style_ie8.css">
<![endif]-->
<script src="scripts/superfish.js" type="text/javascript"></script>
<script src="scripts/narrow.js" type="text/javascript"></script>
</head>
<body class="" onload="CheckEmptyAndLoadList();">
<div class="header" id="qtdocheader">
<div class="content">
<div id="nav-logo">
<a href="index.html">Home</a></div>
<a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a>
<div id="narrowsearch"></div>
<div id="nav-topright">
<ul>
<li class="nav-topright-home"><a href="http://qt.digia.com/">Qt HOME</a></li>
<li class="nav-topright-dev"><a href="http://qt-project.org/">DEV</a></li>
<li class="nav-topright-doc nav-topright-doc-active"><a href="http://qt-project.org/doc/">
DOC</a></li>
<li class="nav-topright-blog"><a href="http://blog.qt.digia.com/">BLOG</a></li>
</ul>
</div>
<div id="shortCut">
<ul>
<li class="shortCut-topleft-inactive"><span><a href="index.html">Qt 4.8</a></span></li>
<li class="shortCut-topleft-active"><a href="http://qt-project.org/doc/">ALL VERSIONS </a></li>
</ul>
</div>
<ul class="sf-menu" id="narrowmenu">
<li><a href="#">API Lookup</a>
<ul>
<li><a href="classes.html">Class index</a></li>
<li><a href="functions.html">Function index</a></li>
<li><a href="modules.html">Modules</a></li>
<li><a href="namespaces.html">Namespaces</a></li>
<li><a href="qtglobal.html">Global Declarations</a></li>
<li><a href="qdeclarativeelements.html">QML elements</a></li>
</ul>
</li>
<li><a href="#">Qt Topics</a>
<ul>
<li><a href="qt-basic-concepts.html">Programming with Qt</a></li>
<li><a href="qtquick.html">Device UIs & Qt Quick</a></li>
<li><a href="qt-gui-concepts.html">UI Design with Qt</a></li>
<li><a href="supported-platforms.html">Supported Platforms</a></li>
<li><a href="technology-apis.html">Qt and Key Technologies</a></li>
<li><a href="best-practices.html">How-To's and Best Practices</a></li>
</ul>
</li>
<li><a href="#">Examples</a>
<ul>
<li><a href="all-examples.html">Examples</a></li>
<li><a href="tutorials.html">Tutorials</a></li>
<li><a href="demos.html">Demos</a></li>
<li><a href="qdeclarativeexamples.html">QML Examples</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="wrapper">
<div class="hd">
<span></span>
</div>
<div class="bd group">
<div class="sidebar">
<div class="searchlabel">
Search index:</div>
<div class="search" id="sidebarsearch">
<form id="qtdocsearch" action="" onsubmit="return false;">
<fieldset>
<input type="text" name="searchstring" id="pageType" value="" />
<div id="resultdialog">
<a href="#" id="resultclose">Close</a>
<p id="resultlinks" class="all"><a href="#" id="showallresults">All</a> | <a href="#" id="showapiresults">API</a> | <a href="#" id="showarticleresults">Articles</a> | <a href="#" id="showexampleresults">Examples</a></p>
<p id="searchcount" class="all"><span id="resultcount"></span><span id="apicount"></span><span id="articlecount"></span><span id="examplecount"></span> results:</p>
<ul id="resultlist" class="all">
</ul>
</div>
</fieldset>
</form>
</div>
<div class="box first bottombar" id="lookup">
<h2 title="API Lookup"><span></span>
API Lookup</h2>
<div id="list001" class="list">
<ul id="ul001" >
<li class="defaultLink"><a href="classes.html">Class index</a></li>
<li class="defaultLink"><a href="functions.html">Function index</a></li>
<li class="defaultLink"><a href="modules.html">Modules</a></li>
<li class="defaultLink"><a href="namespaces.html">Namespaces</a></li>
<li class="defaultLink"><a href="qtglobal.html">Global Declarations</a></li>
<li class="defaultLink"><a href="qdeclarativeelements.html">QML elements</a></li>
</ul>
</div>
</div>
<div class="box bottombar" id="topics">
<h2 title="Qt Topics"><span></span>
Qt Topics</h2>
<div id="list002" class="list">
<ul id="ul002" >
<li class="defaultLink"><a href="qt-basic-concepts.html">Programming with Qt</a></li>
<li class="defaultLink"><a href="qtquick.html">Device UIs & Qt Quick</a></li>
<li class="defaultLink"><a href="qt-gui-concepts.html">UI Design with Qt</a></li>
<li class="defaultLink"><a href="supported-platforms.html">Supported Platforms</a></li>
<li class="defaultLink"><a href="technology-apis.html">Qt and Key Technologies</a></li>
<li class="defaultLink"><a href="best-practices.html">How-To's and Best Practices</a></li>
</ul>
</div>
</div>
<div class="box" id="examples">
<h2 title="Examples"><span></span>
Examples</h2>
<div id="list003" class="list">
<ul id="ul003">
<li class="defaultLink"><a href="all-examples.html">Examples</a></li>
<li class="defaultLink"><a href="tutorials.html">Tutorials</a></li>
<li class="defaultLink"><a href="demos.html">Demos</a></li>
<li class="defaultLink"><a href="qdeclarativeexamples.html">QML Examples</a></li>
</ul>
</div>
</div>
</div>
<div class="wrap">
<div class="toolbar">
<div class="breadcrumb toolblock">
<ul>
<li class="first"><a href="index.html">Home</a></li>
<!-- Breadcrumbs go here -->
<li><a href="modules.html">Modules</a></li>
<li><a href="qtgui.html">QtGui</a></li>
<li>QDialog</li>
</ul>
</div>
<div class="toolbuttons toolblock">
<ul>
<li id="smallA" class="t_button">A</li>
<li id="medA" class="t_button active">A</li>
<li id="bigA" class="t_button">A</li>
<li id="print" class="t_button"><a href="javascript:this.print();">
<span>Print</span></a></li>
</ul>
</div>
</div>
<div class="content mainContent">
<h1 class="title">List of All Members for QDialog</h1>
<p>This is the complete list of members for <a href="qdialog.html">QDialog</a>, including inherited members.</p>
<table class="propsummary">
<tr><td class="topAlign"><ul>
<li class="fn">enum <span class="name"><b><a href="qdialog.html#DialogCode-enum">DialogCode</a></b></span></li>
<li class="fn">enum <span class="name"><b><a href="qpaintdevice.html#PaintDeviceMetric-enum">PaintDeviceMetric</a></b></span></li>
<li class="fn">enum <span class="name"><b><a href="qwidget.html#RenderFlag-enum">RenderFlag</a></b></span></li>
<li class="fn">flags <span class="name"><b><a href="qwidget.html#RenderFlag-enum">RenderFlags</a></b></span></li>
<li class="fn"><span class="name"><b><a href="qdialog.html#QDialog">QDialog</a></b></span> ( QWidget *, Qt::WindowFlags )</li>
<li class="fn"><span class="name"><b><a href="qdialog.html#dtor.QDialog">~QDialog</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qdialog.html#accept">accept</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#acceptDrops-prop">acceptDrops</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qdialog.html#accepted">accepted</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#accessibleDescription-prop">accessibleDescription</a></b></span> () const : QString</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#accessibleName-prop">accessibleName</a></b></span> () const : QString</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#actionEvent">actionEvent</a></b></span> ( QActionEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#actions">actions</a></b></span> () const : QList<QAction *></li>
<li class="fn"><span class="name"><b><a href="qwidget.html#activateWindow">activateWindow</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#addAction">addAction</a></b></span> ( QAction * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#addActions">addActions</a></b></span> ( QList<QAction *> )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#adjustSize">adjustSize</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#autoFillBackground-prop">autoFillBackground</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#backgroundRole">backgroundRole</a></b></span> () const : QPalette::ColorRole</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#baseSize-prop">baseSize</a></b></span> () const : QSize</li>
<li class="fn"><span class="name"><b><a href="qobject.html#blockSignals">blockSignals</a></b></span> ( bool ) : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#changeEvent">changeEvent</a></b></span> ( QEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#childAt">childAt</a></b></span> ( int, int ) const : QWidget *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#childAt-4">childAt</a></b></span> ( const QPoint & ) const : QWidget *</li>
<li class="fn"><span class="name"><b><a href="qobject.html#childEvent">childEvent</a></b></span> ( QChildEvent * )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#children">children</a></b></span> () const : const QObjectList &</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#childrenRect-prop">childrenRect</a></b></span> () const : QRect</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#childrenRegion-prop">childrenRegion</a></b></span> () const : QRegion</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#clearFocus">clearFocus</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#clearMask">clearMask</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#close">close</a></b></span> () : bool</li>
<li class="fn"><span class="name"><b><a href="qdialog.html#closeEvent">closeEvent</a></b></span> ( QCloseEvent * )</li>
<li class="fn"><span class="name"><b><a href="qpaintdevice.html#colorCount">colorCount</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qobject.html#connect">connect</a></b></span> ( const QObject *, const char *, const QObject *, const char *, Qt::ConnectionType ) : bool</li>
<li class="fn"><span class="name"><b><a href="qobject.html#connect-2">connect</a></b></span> ( const QObject *, const QMetaMethod &, const QObject *, const QMetaMethod &, Qt::ConnectionType ) : bool</li>
<li class="fn"><span class="name"><b><a href="qobject.html#connect-3">connect</a></b></span> ( const QObject *, const char *, const char *, Qt::ConnectionType ) const : bool</li>
<li class="fn"><span class="name"><b><a href="qobject.html#connectNotify">connectNotify</a></b></span> ( const char * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#contentsMargins">contentsMargins</a></b></span> () const : QMargins</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#contentsRect">contentsRect</a></b></span> () const : QRect</li>
<li class="fn"><span class="name"><b><a href="qdialog.html#contextMenuEvent">contextMenuEvent</a></b></span> ( QContextMenuEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#contextMenuPolicy-prop">contextMenuPolicy</a></b></span> () const : Qt::ContextMenuPolicy</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#create">create</a></b></span> ( WId, bool, bool )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#cursor-prop">cursor</a></b></span> () const : QCursor</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#customContextMenuRequested">customContextMenuRequested</a></b></span> ( const QPoint & )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#customEvent">customEvent</a></b></span> ( QEvent * )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#d_ptr-var">d_ptr</a></b></span> : QScopedPointer<QObjectData></li>
<li class="fn"><span class="name"><b><a href="qobject.html#deleteLater">deleteLater</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qpaintdevice.html#depth">depth</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#destroy">destroy</a></b></span> ( bool, bool )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#destroyed">destroyed</a></b></span> ( QObject * )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#disconnect">disconnect</a></b></span> ( const QObject *, const char *, const QObject *, const char * ) : bool</li>
<li class="fn"><span class="name"><b><a href="qobject.html#disconnect-2">disconnect</a></b></span> ( const QObject *, const QMetaMethod &, const QObject *, const QMetaMethod & ) : bool</li>
<li class="fn"><span class="name"><b><a href="qobject.html#disconnect-3">disconnect</a></b></span> ( const char *, const QObject *, const char * ) : bool</li>
<li class="fn"><span class="name"><b><a href="qobject.html#disconnect-4">disconnect</a></b></span> ( const QObject *, const char * ) : bool</li>
<li class="fn"><span class="name"><b><a href="qobject.html#disconnectNotify">disconnectNotify</a></b></span> ( const char * )</li>
<li class="fn"><span class="name"><b><a href="qdialog.html#done">done</a></b></span> ( int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#dragEnterEvent">dragEnterEvent</a></b></span> ( QDragEnterEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#dragLeaveEvent">dragLeaveEvent</a></b></span> ( QDragLeaveEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#dragMoveEvent">dragMoveEvent</a></b></span> ( QDragMoveEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#dropEvent">dropEvent</a></b></span> ( QDropEvent * )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#dumpObjectInfo">dumpObjectInfo</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qobject.html#dumpObjectTree">dumpObjectTree</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qobject.html#dynamicPropertyNames">dynamicPropertyNames</a></b></span> () const : QList<QByteArray></li>
<li class="fn"><span class="name"><b><a href="qwidget.html#effectiveWinId">effectiveWinId</a></b></span> () const : WId</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#ensurePolished">ensurePolished</a></b></span> () const</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#enterEvent">enterEvent</a></b></span> ( QEvent * )</li>
<li class="fn"><span class="name"><b><a href="qdialog.html#event">event</a></b></span> ( QEvent * ) : bool</li>
<li class="fn"><span class="name"><b><a href="qdialog.html#eventFilter">eventFilter</a></b></span> ( QObject *, QEvent * ) : bool</li>
<li class="fn"><span class="name"><b><a href="qdialog.html#exec">exec</a></b></span> () : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#find">find</a></b></span> ( WId ) : QWidget *</li>
<li class="fn"><span class="name"><b><a href="qobject.html#findChild">findChild</a></b></span> ( const QString & ) const : T</li>
<li class="fn"><span class="name"><b><a href="qobject.html#findChildren">findChildren</a></b></span> ( const QString & ) const : QList<T></li>
<li class="fn"><span class="name"><b><a href="qobject.html#findChildren-2">findChildren</a></b></span> ( const QRegExp & ) const : QList<T></li>
<li class="fn"><span class="name"><b><a href="qdialog.html#finished">finished</a></b></span> ( int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#focusInEvent">focusInEvent</a></b></span> ( QFocusEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#focusNextChild">focusNextChild</a></b></span> () : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#focusNextPrevChild">focusNextPrevChild</a></b></span> ( bool ) : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#focusOutEvent">focusOutEvent</a></b></span> ( QFocusEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#focusPolicy-prop">focusPolicy</a></b></span> () const : Qt::FocusPolicy</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#focusPreviousChild">focusPreviousChild</a></b></span> () : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#focusProxy">focusProxy</a></b></span> () const : QWidget *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#focusWidget">focusWidget</a></b></span> () const : QWidget *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#font-prop">font</a></b></span> () const : const QFont &</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#fontInfo">fontInfo</a></b></span> () const : QFontInfo</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#fontMetrics">fontMetrics</a></b></span> () const : QFontMetrics</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#foregroundRole">foregroundRole</a></b></span> () const : QPalette::ColorRole</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#frameGeometry-prop">frameGeometry</a></b></span> () const : QRect</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#frameSize-prop">frameSize</a></b></span> () const : QSize</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#geometry-prop">geometry</a></b></span> () const : const QRect &</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#getContentsMargins">getContentsMargins</a></b></span> ( int *, int *, int *, int * ) const</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#getDC">getDC</a></b></span> () const : HDC</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#grabGesture">grabGesture</a></b></span> ( Qt::GestureType, Qt::GestureFlags )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#grabKeyboard">grabKeyboard</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#grabMouse">grabMouse</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#grabMouse-2">grabMouse</a></b></span> ( const QCursor & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#grabShortcut">grabShortcut</a></b></span> ( const QKeySequence &, Qt::ShortcutContext ) : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#graphicsEffect">graphicsEffect</a></b></span> () const : QGraphicsEffect *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#graphicsProxyWidget">graphicsProxyWidget</a></b></span> () const : QGraphicsProxyWidget *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#hasEditFocus">hasEditFocus</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#focus-prop">hasFocus</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mouseTracking-prop">hasMouseTracking</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#height-prop">height</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#heightForWidth">heightForWidth</a></b></span> ( int ) const : int</li>
<li class="fn"><span class="name"><b><a href="qpaintdevice.html#heightMM">heightMM</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#hide">hide</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#hideEvent">hideEvent</a></b></span> ( QHideEvent * )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#inherits">inherits</a></b></span> ( const char * ) const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#inputContext">inputContext</a></b></span> () : QInputContext *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#inputMethodEvent">inputMethodEvent</a></b></span> ( QInputMethodEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#inputMethodHints-prop">inputMethodHints</a></b></span> () const : Qt::InputMethodHints</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#inputMethodQuery">inputMethodQuery</a></b></span> ( Qt::InputMethodQuery ) const : QVariant</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#insertAction">insertAction</a></b></span> ( QAction *, QAction * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#insertActions">insertActions</a></b></span> ( QAction *, QList<QAction *> )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#installEventFilter">installEventFilter</a></b></span> ( QObject * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#isActiveWindow-prop">isActiveWindow</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#isAncestorOf">isAncestorOf</a></b></span> ( const QWidget * ) const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#enabled-prop">isEnabled</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#isEnabledTo">isEnabledTo</a></b></span> ( QWidget * ) const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#fullScreen-prop">isFullScreen</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#isHidden">isHidden</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#maximized-prop">isMaximized</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#minimized-prop">isMinimized</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#modal-prop">isModal</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qdialog.html#sizeGripEnabled-prop">isSizeGripEnabled</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#visible-prop">isVisible</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#isVisibleTo">isVisibleTo</a></b></span> ( QWidget * ) const : bool</li>
<li class="fn"><span class="name"><b><a href="qobject.html#isWidgetType">isWidgetType</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#isWindow">isWindow</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowModified-prop">isWindowModified</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qdialog.html#keyPressEvent">keyPressEvent</a></b></span> ( QKeyEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#keyReleaseEvent">keyReleaseEvent</a></b></span> ( QKeyEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#keyboardGrabber">keyboardGrabber</a></b></span> () : QWidget *</li>
<li class="fn"><span class="name"><b><a href="qobject.html#killTimer">killTimer</a></b></span> ( int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#layout">layout</a></b></span> () const : QLayout *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#layoutDirection-prop">layoutDirection</a></b></span> () const : Qt::LayoutDirection</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#leaveEvent">leaveEvent</a></b></span> ( QEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#locale-prop">locale</a></b></span> () const : QLocale</li>
<li class="fn"><span class="name"><b><a href="qpaintdevice.html#logicalDpiX">logicalDpiX</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qpaintdevice.html#logicalDpiY">logicalDpiY</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#lower">lower</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#macCGHandle">macCGHandle</a></b></span> () const : Qt::HANDLE</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#macEvent">macEvent</a></b></span> ( EventHandlerCallRef, EventRef ) : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#macQDHandle">macQDHandle</a></b></span> () const : Qt::HANDLE</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mapFrom">mapFrom</a></b></span> ( QWidget *, const QPoint & ) const : QPoint</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mapFromGlobal">mapFromGlobal</a></b></span> ( const QPoint & ) const : QPoint</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mapFromParent">mapFromParent</a></b></span> ( const QPoint & ) const : QPoint</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mapTo">mapTo</a></b></span> ( QWidget *, const QPoint & ) const : QPoint</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mapToGlobal">mapToGlobal</a></b></span> ( const QPoint & ) const : QPoint</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mapToParent">mapToParent</a></b></span> ( const QPoint & ) const : QPoint</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mask">mask</a></b></span> () const : QRegion</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#maximumHeight-prop">maximumHeight</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#maximumSize-prop">maximumSize</a></b></span> () const : QSize</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#maximumWidth-prop">maximumWidth</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qobject.html#metaObject">metaObject</a></b></span> () const : const QMetaObject *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#metric">metric</a></b></span> ( PaintDeviceMetric ) const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#minimumHeight-prop">minimumHeight</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#minimumSize-prop">minimumSize</a></b></span> () const : QSize</li>
<li class="fn"><span class="name"><b><a href="qdialog.html#minimumSizeHint">minimumSizeHint</a></b></span> () const : QSize</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#minimumWidth-prop">minimumWidth</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mouseDoubleClickEvent">mouseDoubleClickEvent</a></b></span> ( QMouseEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mouseGrabber">mouseGrabber</a></b></span> () : QWidget *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mouseMoveEvent">mouseMoveEvent</a></b></span> ( QMouseEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mousePressEvent">mousePressEvent</a></b></span> ( QMouseEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mouseReleaseEvent">mouseReleaseEvent</a></b></span> ( QMouseEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#pos-prop">move</a></b></span> ( const QPoint & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#pos-prop">move</a></b></span> ( int, int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#moveEvent">moveEvent</a></b></span> ( QMoveEvent * )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#moveToThread">moveToThread</a></b></span> ( QThread * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#nativeParentWidget">nativeParentWidget</a></b></span> () const : QWidget *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#nextInFocusChain">nextInFocusChain</a></b></span> () const : QWidget *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#normalGeometry-prop">normalGeometry</a></b></span> () const : QRect</li>
<li class="fn"><span class="name"><b><a href="qpaintdevice.html#numColors">numColors</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qobject.html#objectName-prop">objectName</a></b></span> () const : QString</li>
<li class="fn"><span class="name"><b><a href="qdialog.html#open">open</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#overrideWindowFlags">overrideWindowFlags</a></b></span> ( Qt::WindowFlags )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#paintEngine">paintEngine</a></b></span> () const : QPaintEngine *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#paintEvent">paintEvent</a></b></span> ( QPaintEvent * )</li>
<li class="fn"><span class="name"><b><a href="qpaintdevice.html#painters-var">painters</a></b></span> : ushort</li>
<li class="fn"><span class="name"><b><a href="qpaintdevice.html#paintingActive">paintingActive</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#palette-prop">palette</a></b></span> () const : const QPalette &</li>
</ul></td><td class="topAlign"><ul>
<li class="fn"><span class="name"><b><a href="qobject.html#parent">parent</a></b></span> () const : QObject *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#parentWidget">parentWidget</a></b></span> () const : QWidget *</li>
<li class="fn"><span class="name"><b><a href="qpaintdevice.html#physicalDpiX">physicalDpiX</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qpaintdevice.html#physicalDpiY">physicalDpiY</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#platformWindow">platformWindow</a></b></span> () const : QPlatformWindow *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#platformWindowFormat">platformWindowFormat</a></b></span> () const : QPlatformWindowFormat</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#pos-prop">pos</a></b></span> () const : QPoint</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#previousInFocusChain">previousInFocusChain</a></b></span> () const : QWidget *</li>
<li class="fn"><span class="name"><b><a href="qobject.html#property">property</a></b></span> ( const char * ) const : QVariant</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#qwsEvent">qwsEvent</a></b></span> ( QWSEvent * ) : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#raise">raise</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qobject.html#receivers">receivers</a></b></span> ( const char * ) const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#rect-prop">rect</a></b></span> () const : QRect</li>
<li class="fn"><span class="name"><b><a href="qdialog.html#reject">reject</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qdialog.html#rejected">rejected</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#releaseDC">releaseDC</a></b></span> ( HDC ) const</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#releaseKeyboard">releaseKeyboard</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#releaseMouse">releaseMouse</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#releaseShortcut">releaseShortcut</a></b></span> ( int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#removeAction">removeAction</a></b></span> ( QAction * )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#removeEventFilter">removeEventFilter</a></b></span> ( QObject * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#render">render</a></b></span> ( QPaintDevice *, const QPoint &, const QRegion &, RenderFlags )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#render-2">render</a></b></span> ( QPainter *, const QPoint &, const QRegion &, RenderFlags )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#repaint">repaint</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#repaint-6">repaint</a></b></span> ( int, int, int, int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#repaint-7">repaint</a></b></span> ( const QRect & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#repaint-8">repaint</a></b></span> ( const QRegion & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#size-prop">resize</a></b></span> ( const QSize & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#size-prop">resize</a></b></span> ( int, int )</li>
<li class="fn"><span class="name"><b><a href="qdialog.html#resizeEvent">resizeEvent</a></b></span> ( QResizeEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#restoreGeometry">restoreGeometry</a></b></span> ( const QByteArray & ) : bool</li>
<li class="fn"><span class="name"><b><a href="qdialog.html#result">result</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#saveGeometry">saveGeometry</a></b></span> () const : QByteArray</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#scroll">scroll</a></b></span> ( int, int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#scroll-2">scroll</a></b></span> ( int, int, const QRect & )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#sender">sender</a></b></span> () const : QObject *</li>
<li class="fn"><span class="name"><b><a href="qobject.html#senderSignalIndex">senderSignalIndex</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#acceptDrops-prop">setAcceptDrops</a></b></span> ( bool )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#accessibleDescription-prop">setAccessibleDescription</a></b></span> ( const QString & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#accessibleName-prop">setAccessibleName</a></b></span> ( const QString & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setAttribute">setAttribute</a></b></span> ( Qt::WidgetAttribute, bool )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#autoFillBackground-prop">setAutoFillBackground</a></b></span> ( bool )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setBackgroundRole">setBackgroundRole</a></b></span> ( QPalette::ColorRole )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#baseSize-prop">setBaseSize</a></b></span> ( const QSize & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#baseSize-prop">setBaseSize</a></b></span> ( int, int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setContentsMargins">setContentsMargins</a></b></span> ( int, int, int, int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setContentsMargins-2">setContentsMargins</a></b></span> ( const QMargins & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#contextMenuPolicy-prop">setContextMenuPolicy</a></b></span> ( Qt::ContextMenuPolicy )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#cursor-prop">setCursor</a></b></span> ( const QCursor & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setDisabled">setDisabled</a></b></span> ( bool )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setEditFocus">setEditFocus</a></b></span> ( bool )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#enabled-prop">setEnabled</a></b></span> ( bool )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setFixedHeight">setFixedHeight</a></b></span> ( int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setFixedSize">setFixedSize</a></b></span> ( const QSize & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setFixedSize-2">setFixedSize</a></b></span> ( int, int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setFixedWidth">setFixedWidth</a></b></span> ( int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setFocus">setFocus</a></b></span> ( Qt::FocusReason )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setFocus-2">setFocus</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#focusPolicy-prop">setFocusPolicy</a></b></span> ( Qt::FocusPolicy )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setFocusProxy">setFocusProxy</a></b></span> ( QWidget * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#font-prop">setFont</a></b></span> ( const QFont & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setForegroundRole">setForegroundRole</a></b></span> ( QPalette::ColorRole )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#geometry-prop">setGeometry</a></b></span> ( const QRect & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#geometry-prop">setGeometry</a></b></span> ( int, int, int, int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setGraphicsEffect">setGraphicsEffect</a></b></span> ( QGraphicsEffect * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setHidden">setHidden</a></b></span> ( bool )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setInputContext">setInputContext</a></b></span> ( QInputContext * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#inputMethodHints-prop">setInputMethodHints</a></b></span> ( Qt::InputMethodHints )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setLayout">setLayout</a></b></span> ( QLayout * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#layoutDirection-prop">setLayoutDirection</a></b></span> ( Qt::LayoutDirection )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#locale-prop">setLocale</a></b></span> ( const QLocale & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setMask">setMask</a></b></span> ( const QBitmap & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setMask-2">setMask</a></b></span> ( const QRegion & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#maximumHeight-prop">setMaximumHeight</a></b></span> ( int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#maximumSize-prop">setMaximumSize</a></b></span> ( const QSize & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#maximumSize-prop">setMaximumSize</a></b></span> ( int, int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#maximumWidth-prop">setMaximumWidth</a></b></span> ( int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#minimumHeight-prop">setMinimumHeight</a></b></span> ( int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#minimumSize-prop">setMinimumSize</a></b></span> ( const QSize & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#minimumSize-prop">setMinimumSize</a></b></span> ( int, int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#minimumWidth-prop">setMinimumWidth</a></b></span> ( int )</li>
<li class="fn"><span class="name"><b><a href="qdialog.html#modal-prop">setModal</a></b></span> ( bool )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#mouseTracking-prop">setMouseTracking</a></b></span> ( bool )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#objectName-prop">setObjectName</a></b></span> ( const QString & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#palette-prop">setPalette</a></b></span> ( const QPalette & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setParent">setParent</a></b></span> ( QWidget * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setParent-2">setParent</a></b></span> ( QWidget *, Qt::WindowFlags )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setPlatformWindow">setPlatformWindow</a></b></span> ( QPlatformWindow * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setPlatformWindowFormat">setPlatformWindowFormat</a></b></span> ( const QPlatformWindowFormat & )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#setProperty">setProperty</a></b></span> ( const char *, const QVariant & ) : bool</li>
<li class="fn"><span class="name"><b><a href="qdialog.html#setResult">setResult</a></b></span> ( int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setShortcutAutoRepeat">setShortcutAutoRepeat</a></b></span> ( int, bool )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setShortcutEnabled">setShortcutEnabled</a></b></span> ( int, bool )</li>
<li class="fn"><span class="name"><b><a href="qdialog.html#sizeGripEnabled-prop">setSizeGripEnabled</a></b></span> ( bool )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#sizeIncrement-prop">setSizeIncrement</a></b></span> ( const QSize & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#sizeIncrement-prop">setSizeIncrement</a></b></span> ( int, int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#sizePolicy-prop">setSizePolicy</a></b></span> ( QSizePolicy )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#sizePolicy-prop">setSizePolicy</a></b></span> ( QSizePolicy::Policy, QSizePolicy::Policy )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#statusTip-prop">setStatusTip</a></b></span> ( const QString & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setStyle">setStyle</a></b></span> ( QStyle * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#styleSheet-prop">setStyleSheet</a></b></span> ( const QString & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setTabOrder">setTabOrder</a></b></span> ( QWidget *, QWidget * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#toolTip-prop">setToolTip</a></b></span> ( const QString & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#updatesEnabled-prop">setUpdatesEnabled</a></b></span> ( bool )</li>
<li class="fn"><span class="name"><b><a href="qdialog.html#setVisible">setVisible</a></b></span> ( bool )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#whatsThis-prop">setWhatsThis</a></b></span> ( const QString & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowFilePath-prop">setWindowFilePath</a></b></span> ( const QString & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowFlags-prop">setWindowFlags</a></b></span> ( Qt::WindowFlags )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowIcon-prop">setWindowIcon</a></b></span> ( const QIcon & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowIconText-prop">setWindowIconText</a></b></span> ( const QString & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowModality-prop">setWindowModality</a></b></span> ( Qt::WindowModality )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowModified-prop">setWindowModified</a></b></span> ( bool )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowOpacity-prop">setWindowOpacity</a></b></span> ( qreal )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setWindowRole">setWindowRole</a></b></span> ( const QString & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setWindowState">setWindowState</a></b></span> ( Qt::WindowStates )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setWindowSurface">setWindowSurface</a></b></span> ( QWindowSurface * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowTitle-prop">setWindowTitle</a></b></span> ( const QString & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#setupUi">setupUi</a></b></span> ( QWidget * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#show">show</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qdialog.html#showEvent">showEvent</a></b></span> ( QShowEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#showFullScreen">showFullScreen</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#showMaximized">showMaximized</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#showMinimized">showMinimized</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#showNormal">showNormal</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qobject.html#signalsBlocked">signalsBlocked</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#size-prop">size</a></b></span> () const : QSize</li>
<li class="fn"><span class="name"><b><a href="qdialog.html#sizeHint">sizeHint</a></b></span> () const : QSize</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#sizeIncrement-prop">sizeIncrement</a></b></span> () const : QSize</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#sizePolicy-prop">sizePolicy</a></b></span> () const : QSizePolicy</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#stackUnder">stackUnder</a></b></span> ( QWidget * )</li>
<li class="fn"><span class="name"><b><a href="qobject.html#startTimer">startTimer</a></b></span> ( int ) : int</li>
<li class="fn"><span class="name"><b><a href="qobject.html#staticMetaObject-var">staticMetaObject</a></b></span> : const QMetaObject</li>
<li class="fn"><span class="name"><b><a href="qobject.html#staticQtMetaObject-var">staticQtMetaObject</a></b></span> : const QMetaObject</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#statusTip-prop">statusTip</a></b></span> () const : QString</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#style">style</a></b></span> () const : QStyle *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#styleSheet-prop">styleSheet</a></b></span> () const : QString</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#tabletEvent">tabletEvent</a></b></span> ( QTabletEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#testAttribute">testAttribute</a></b></span> ( Qt::WidgetAttribute ) const : bool</li>
<li class="fn"><span class="name"><b><a href="qobject.html#thread">thread</a></b></span> () const : QThread *</li>
<li class="fn"><span class="name"><b><a href="qobject.html#timerEvent">timerEvent</a></b></span> ( QTimerEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#toolTip-prop">toolTip</a></b></span> () const : QString</li>
<li class="fn"><span class="name"><b><a href="qobject.html#tr">tr</a></b></span> ( const char *, const char *, int ) : QString</li>
<li class="fn"><span class="name"><b><a href="qobject.html#trUtf8">trUtf8</a></b></span> ( const char *, const char *, int ) : QString</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#underMouse">underMouse</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#ungrabGesture">ungrabGesture</a></b></span> ( Qt::GestureType )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#cursor-prop">unsetCursor</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#layoutDirection-prop">unsetLayoutDirection</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#locale-prop">unsetLocale</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#update">update</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#update-2">update</a></b></span> ( int, int, int, int )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#update-3">update</a></b></span> ( const QRect & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#update-4">update</a></b></span> ( const QRegion & )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#updateGeometry">updateGeometry</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#updateMicroFocus">updateMicroFocus</a></b></span> ()</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#updatesEnabled-prop">updatesEnabled</a></b></span> () const : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#visibleRegion">visibleRegion</a></b></span> () const : QRegion</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#whatsThis-prop">whatsThis</a></b></span> () const : QString</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#wheelEvent">wheelEvent</a></b></span> ( QWheelEvent * )</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#width-prop">width</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qpaintdevice.html#widthMM">widthMM</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#winEvent">winEvent</a></b></span> ( MSG *, long * ) : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#winId">winId</a></b></span> () const : WId</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#window">window</a></b></span> () const : QWidget *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowFilePath-prop">windowFilePath</a></b></span> () const : QString</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowFlags-prop">windowFlags</a></b></span> () const : Qt::WindowFlags</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowIcon-prop">windowIcon</a></b></span> () const : QIcon</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowIconText-prop">windowIconText</a></b></span> () const : QString</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowModality-prop">windowModality</a></b></span> () const : Qt::WindowModality</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowOpacity-prop">windowOpacity</a></b></span> () const : qreal</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowRole">windowRole</a></b></span> () const : QString</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowState">windowState</a></b></span> () const : Qt::WindowStates</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowSurface">windowSurface</a></b></span> () const : QWindowSurface *</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowTitle-prop">windowTitle</a></b></span> () const : QString</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#windowType">windowType</a></b></span> () const : Qt::WindowType</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#x-prop">x</a></b></span> () const : int</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#x11Event">x11Event</a></b></span> ( XEvent * ) : bool</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#x11Info">x11Info</a></b></span> () const : const QX11Info &</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#x11PictureHandle">x11PictureHandle</a></b></span> () const : Qt::HANDLE</li>
<li class="fn"><span class="name"><b><a href="qwidget.html#y-prop">y</a></b></span> () const : int</li>
</ul>
</td></tr>
</table>
</div>
</div>
</div>
<div class="ft">
<span></span>
</div>
</div>
<div class="footer">
<p>
<acronym title="Copyright">©</acronym> 2013 Digia Plc and/or its
subsidiaries. Documentation contributions included herein are the copyrights of
their respective owners.</p>
<br />
<p>
The documentation provided herein is licensed under the terms of the
<a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation
License version 1.3</a> as published by the Free Software Foundation.</p>
<p>
Documentation sources may be obtained from <a href="http://www.qt-project.org">
www.qt-project.org</a>.</p>
<br />
<p>
Digia, Qt and their respective logos are trademarks of Digia Plc
in Finland and/or other countries worldwide. All other trademarks are property
of their respective owners. <a title="Privacy Policy"
href="http://en.gitorious.org/privacy_policy/">Privacy Policy</a></p>
</div>
<script src="scripts/functions.js" type="text/javascript"></script>
</body>
</html>
|
static/css/_text.css
|
PersonalGenomesOrg/open-humans
|
/* Text, links, and header styles
-------------------------------------------------- */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
font-family: $heading-font;
font-weight: 300;
color: $oh-gray-verydark;
}
body {
font-family: $main-font;
}
a {
color: $oh-teal-dark;
&:hover, &:focus {
color: $oh-teal-verydark;
}
}
h6.section-header {
margin-top: 15px;
margin-bottom: 0;
}
hr.section-header {
margin-top: 0;
margin-bottom: 10px;
}
.profile-text {
font-family: $user-input-font;
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
font-family: $user-input-font;
}
h1, .h1, h2, .h2, h3, .h3 {
margin-top: 10px;
margin-bottom: 5px;
font-weight: 700;
}
h1, .h1 {
font-size: 24px;
}
h2, .h2 {
font-size: 21px;
}
h3, .h3 {
font-size: 18px;
}
h4, .h5 {
font-size: 15px;
}
h5, .h5 {
font-size: 12px;
}
h6, .h6 {
font-size: 9px;
}
}
.bigger-text {
font-size: 18px;
}
|
wks/2015/bios/205_kmendoza.html
|
ameliachu/nycaasc
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="The Official Website of the New York City Asian American Student Conference">
<meta name="author" content="Amelia Chu">
<link rel="icon" href="/assets/favicon.ico">
<title>New York City Asian American Student Conference</title>
<!-- Bootstrap core CSS -->
<link href="/assets/css/bootstrap.min.css" rel="stylesheet">
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<link href="/assets/css/ie10-viewport-bug-workaround.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="/assets/css/navbar-fixed-top.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="/assets/css/nycaasc-custom.css" rel="stylesheet">
<!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
<!--[if lt IE 9]><script src="..//assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<script src="/assets/js/ie-emulation-modes-warning.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Fixed navbar -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/index.html">NYC<font color = "#cf3537">AA</font>SC</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="/index.html">Home</a></li>
<li class="dropdown">
<a href="/index.html#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Conference <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="/theme.html">Theme</a></li>
<li><a href="/index.html#featuredperformances">Featured Performances + Keynote</a></li>
<li><a href="/index.html#schedule">Schedule</a></li>
<li><a href="https://www.eventbrite.com/e/10th-annual-nycaasc-registration-22417219507">Registration</a></li>
<li role="separator" class="divider"></li>
<li class="dropdown-header">Support the Conference</li>
<li><a href="/partners.html">Community Partnerships</a></li>
<li><a href="/sponsorship.html">Sponsorship Opportunities</a></li>
</ul>
</li>
<li><a href="/events.html">Satellite Events</a></li>
<li><a href="/hslprogram.html">High School Liaison 2017</a></li>
<li class="dropdown">
<a href="/index.html#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">About Us <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="/mission.html">Mission + History</a></li>
<li><a href="/currentboard.html">Current Board</a></li>
<li role="separator" class="divider"></li>
<li class="dropdown-header">Join Us!</li>
<li><a href="/apply.html">Apply for Membership</a></li>
<li><a href="/hslprogram.html">High School Liason Program</a></li>
</ul>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="social-menu--link"><a href="https://www.facebook.com/nycaascpage"><img src="/assets/img/fb.svg" height="16" width="16" alt="Facebook"></a></li>
<li class="social-menu--link"><a href="https://twitter.com/nycaasc"><img src="/assets/img/tw.svg" height="16" width="16" alt="Twitter"></a></li>
<li class="social-menu--link"><a href="https://www.instagram.com/nycaasc"><img src="/assets/img/in.svg" height="16" width="16" alt="Instagram"></a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="container">
<div class="jumbotron" style="background-image:url('/assets/img/network.svg');background-position:right bottom;background-repeat: no-repeat;">
<h2>Workshop Presenters</h2>
<p>Track 2: Noncompliant Bodies</p>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-6">
<img src="/assets/img/wks/2015/205_kmendoza.jpg" height="200" width="319" alt="Kalaya'an Mendoza">
<br>
<h4>Kalaya'an Mendoza</h4>
<br>
<p>Kalaya'an Mendoza currently serves as Amnesty International USA's Field Director. In his role he has coordinated Human Rights Delegations to Ferguson, trained activists across the country around nonviolent direct action and integrated anti-oppression and decolonization work into human rights activism. He's a loud and proud Queer Pin@y from the Left Coast and is an accomplished Earthbender.</p>
</div>
<div class="col-md-3"></div>
<div class="col-md-3"></div>
</div>
</div> <!-- /container -->
<footer class="footer">
<div class="container">
<br><p class="text-muted">The New York City Asian American Student Conference 2016.</p>
</div>
</footer>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-68409586-1', 'auto');
ga('send', 'pageview');
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="assets/js/vendor/jquery.min.js"><\/script>')</script>
<script src="assets/js/bootstrap.min.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="assets/js/ie10-viewport-bug-workaround.js"></script>
</body>
</html>
|
docs/v2/_themes/eclipse-help/layout.html
|
boniatillo-com/PhaserEditor
|
{# TEMPLATE VAR SETTINGS #}
{%- set url_root = pathto('', 1) %}
{%- if url_root == '#' %}{% set url_root = '' %}{% endif %}
{%- if not embedded and docstitle %}
{%- set titlesuffix = " — "|safe + docstitle|e %}
{%- else %}
{%- set titlesuffix = "" %}
{%- endif %}
<!DOCTYPE html>
<!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
<head>
<meta charset="utf-8">
{{ metatags }}
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% block htmltitle %}
<title>{{ title|striptags|e }}{{ titlesuffix }}</title>
{% endblock %}
{# FAVICON #}
{% if favicon %}
<link rel="shortcut icon" href="{{ pathto('_static/' + favicon, 1) }}"/>
{% endif %}
{# CANONICAL URL #}
{% if theme_canonical_url %}
<link rel="canonical" href="{{ theme_canonical_url }}{{ pagename }}.html"/>
{% endif %}
{# CSS #}
{# RTD hosts this file, so just load on non RTD builds #}
{% if not READTHEDOCS %}
<link rel="stylesheet" href="{{ pathto('_static/' + style, 1) }}" type="text/css" />
{% endif %}
{% for cssfile in css_files %}
<link rel="stylesheet" href="{{ pathto(cssfile, 1) }}" type="text/css" />
{% endfor %}
<link rel="stylesheet" href="{{ pathto('_static/pygments.css', 1) }}" type="text/css" />
{% for cssfile in extra_css_files %}
<link rel="stylesheet" href="{{ pathto(cssfile, 1) }}" type="text/css" />
{% endfor %}
{%- block extrahead %} {% endblock %}
{# Keep modernizr in head - http://modernizr.com/docs/#installing #}
<script src="{{ pathto('_static/js/modernizr.min.js', 1) }}"></script>
</head>
<body role="document" style="background:white;font-family: serif;color:black;">
{% block extrabody %} {% endblock %}
<section data-toggle="" class="">
{# PAGE CONTENT #}
<div class="" style="padding:1em">
<div class="rst-content">
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
<div itemprop="articleBody">
{% block body %}{% endblock %}
</div>
<div class="articleComments">
{% block comments %}{% endblock %}
</div>
</div>
{% include "footer.html" %}
</div>
</div>
</section>
</div>
{% include "versions.html" %}
{% if not embedded %}
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'{{ url_root }}',
VERSION:'{{ release|e }}',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'{{ '' if no_search_suffix else file_suffix }}',
HAS_SOURCE: {{ has_source|lower }},
SOURCELINK_SUFFIX: '{{ sourcelink_suffix }}'
};
</script>
{%- for scriptfile in script_files %}
<script type="text/javascript" src="{{ pathto(scriptfile, 1) }}"></script>
{%- endfor %}
{% endif %}
{# RTD hosts this file, so just load on non RTD builds #}
{% if not READTHEDOCS %}
<script type="text/javascript" src="{{ pathto('_static/js/theme.js', 1) }}"></script>
{% endif %}
{%- block footer %} {% endblock %}
</body>
</html>
|
css/silverwolf-rtl/dialogs.css
|
KwaMoja/KwaMoja
|
#mask {
display:none;
position:fixed;
top:0;
right:0;
bottom:0;
left:0;
background-color: rgba(26, 26, 26, 0.5);
backdrop-filter: blur(2px);
z-index:2;
}
#dialog {
min-width:10%;
max-width:50%;
display:inline-block;
background:#fff;
z-index:99;
border:solid #000 1px;
border-radius:7px;
position:fixed;
top:50%;
right:50%;
margin-top:-9em;
margin-right:-15em;
box-shadow:0 0 5px #16187A;
padding:2px 2px 5px;
}
#dialog #dialog_header {
background:lightgray;
width:auto;
border-radius:4px;
font-size:130%;
text-align:right;
padding-right:5px;
color:#000;
margin:2px;
}
#dialog .dialog_image {
vertical-align:middle;
}
#dialog #dialog_main {
background:#FFF;
width:auto;
border-radius:4px;
text-align:right;
padding-left:5px;
padding-right:5px;
font-style:italic;
font-size:130%;
color:#565141;
margin:3% 2px;
}
#dialog #dialog_buttons {
text-align:left;
}
#dialog .okButton {
display:inline-block;
background-color:lightgray;
border:thin;
color:#000;
border-radius:3px;
cursor:pointer;
font-style:normal;
box-shadow:2px 2px 3px;
width:20%;
border-color:#CCC;
margin:2px 0px 5px 15px;
padding:2px;
}
#dialog .okButton:active {
box-shadow:0 0 0;
border:thin;
border-color:#CCC;
padding:2px;
}
#dialog .okButton:hover {
background-color:lightgray;
box-shadow:2px 2px 3px;
border:thin;
border-color:#CCC;
padding:2px;
}
|
templates/rt_modulus_j16/css/joomla-rtl.css
|
shatilov/snipebaby
|
/**
* @package Modulus Template - RocketTheme
* @version 1.6.5 December 12, 2011
* @author RocketTheme http://www.rockettheme.com
* @copyright Copyright (C) 2007 - 2011 RocketTheme, LLC
* @license http://www.rockettheme.com/legal/license.php RocketTheme Proprietary Use License
*/
/* Article */
body.rtl .component-content ol {margin-left: 0;margin-right: 5px;}
body.rtl #more-articles span {float: none;padding: 0 0 0 20px;}
body.rtl #more-articles.spinner {background-position: 100% 50%;background-repeat: no-repeat;}
body.rtl .component-content .rt-author, body.rtl .component-content .rt-date-posted, body.rtl .component-content .rt-date-modified {z-index: 30;position: relative;margin-right: 0;margin-left: 15px;}
body.rtl .component-content .rt-articleinfo-text {float: right;background-position: 100% 0;}
body.rtl .component-content .rt-articleinfo-text2 {padding: 0 25px 0 0;}
/* Column Layout */
body.rtl .component-content .rt-article {margin: 0 0 15px 0;}
body.rtl .component-content .first .rt-article {margin-left: 15px;}
body.rtl .component-content .last .rt-article {margin: 0 15px 15px 0;}
body.rtl .component-content .float-left {float: right;}
body.rtl .component-content .float-right {float: left;}
/* Typography */
body.rtl .component-content .rt-article-icons {margin-left: 0;margin-right: 5px;float: left;}
body.rtl .component-content ul li a {float: right;}
body.rtl .component-content .rt-article-icons .edit-icon {margin-left: 0;margin-right: 4px;}
body.rtl .component-content .rt-description img {margin-right: 0;margin-left: 15px;}
body.rtl .component-content .my-pagenav {float: right;margin-left: 0;margin-right: 10px;}
body.rtl #form-login ul li a, body.rtl #com-form-login ul li a, body.rtl ul.rt-more-articles li a, body.rtl .rt-section-list ul li a, body.rtl ul.mostread li a, body.rtl ul.latestnews li a, body.rtl .weblinks ul li a {padding-left: 0;padding-right: 16px;background-position: 100% -812px;}
body.rtl #form-login ul li a:hover, body.rtl #com-form-login ul li a:hover, body.rtl ul.rt-more-articles li a:hover, body.rtl .rt-section-list ul li a:hover, body.rtl ul.mostread li a:hover, body.rtl ul.latestnews li a:hover, body.rtl .weblinks ul li a:hover, body.rtl #rt-popuplogin ul li a:hover {background-position: 100% -1144px;}
body.rtl .rt-pollbuttons {overflow: visible;}
body.rtl .rt-pollbuttons .readon {float: right !important;}
body.rtl .readonstyle-link .module-content .rt-poll .readon {float: right !important;margin-right: 0;margin-left: 20px;}
body.rtl .rt-pollrow {direction: ltr;text-align: right;}
body.rtl .rt-comment-block {float: left;}
body.rtl .component-content .search_result label {margin-right: 0;margin-left: 10px;}
body.rtl .component-content .search_result fieldset.word label {float: right;}
body.rtl .component-content .label-left {float: right;}
body.rtl .rt-date-posted span {line-height: 24px;}
body.rtl .component-content .contact .image {float:left;}
body.rtl pre {direction: ltr;text-align: right;}
body.rtl ul.pagination {text-align: right;}
body.rtl ul.pagination li {text-align: right;}
body.rtl .component-content .search_result select#ordering.inputbox {margin-right: 0;margin-left: 10px;}
body.rtl #rt-main-surround ul, body.rtl #rt-main-surround ol {padding-left: 0;padding-right: 25px;}
body.rtl .search .button {margin-left: 0;margin-right: 10px;padding-left: 0;padding-right: 30px;}
/* Editing */
body.rtl .button2-left, body.rtl .button2-right, body.rtl .button2-left div, body.rtl .button2-right div {float: right;}
body.rtl #editor-xtd-buttons {float: right;}
body.rtl .edit-article fieldset table {float: right;}
body.rtl .component-content .save .readon {margin-left: 0;margin-right: 5px;}
body.rtl .component-content .save {margin-left: 25px;}
|
BoxBranding/remotes/xcore3/remote.html
|
dvbchampion/branding-module
|
<img border='0' src='static/remotes/xcore3/rc.png' usemap='#map' >
<map name="map">
<area shape="circle" coords="26,28,12" alt="Power" onclick="pressMenuRemote('116');">
<area shape="circle" coords="28,71,12" alt="1" onclick="pressMenuRemote('2');">
<area shape="circle" coords="68,72,12" alt="2" onclick="pressMenuRemote('3');">
<area shape="circle" coords="106,73,12" alt="3" onclick="pressMenuRemote('4');">
<area shape="circle" coords="32,92,12" alt="4" onclick="pressMenuRemote('5');">
<area shape="circle" coords="69,91,12" alt="5" onclick="pressMenuRemote('6');">
<area shape="circle" coords="105,91,12" alt="6" onclick="pressMenuRemote('7');">
<area shape="circle" coords="32,111,12" alt="7" onclick="pressMenuRemote('8');">
<area shape="circle" coords="68,109,12" alt="8" onclick="pressMenuRemote('9');">
<area shape="circle" coords="105,111,12" alt="9" onclick="pressMenuRemote('10');">
<area shape="circle" coords="31,128,12" alt="previous" onclick="pressMenuRemote('412');">
<area shape="circle" coords="69,126,12" alt="0" onclick="pressMenuRemote('11');">
<area shape="circle" coords="105,128,12" alt="next" onclick="pressMenuRemote('407');">
<area shape="circle" coords="109,175,10" alt="info" onclick="pressMenuRemote('358');">
<area shape="circle" coords="27,259,14" alt="exit" onclick="pressMenuRemote('174');">
<area shape="circle" coords="110,260,10" alt="epg" onclick="pressMenuRemote('365');">
<area shape="circle" coords="68,186,12" alt="up" onclick="pressMenuRemote('103');">
<area shape="circle" coords="68,246,12" alt="down" onclick="pressMenuRemote('108');">
<area shape="circle" coords="38,216,12" alt="left" onclick="pressMenuRemote('105');">
<area shape="circle" coords="97,216,12" alt="right" onclick="pressMenuRemote('106');">
<area shape="circle" coords="68,216,15" alt="OK" onclick="pressMenuRemote('352');">
<area shape="circle" coords="26,174,10" alt="menu" onclick="pressMenuRemote('139');">
<!-- <area shape="circle" coords="66,299,12" alt="portal" onclick="pressMenuRemote('156');"> -->
<area shape="circle" coords="69,349,12" alt="filelist" onclick="pressMenuRemote('393');">
<area shape="circle" coords="32,318,15" alt="volume up" onclick="pressMenuRemote('115');">
<area shape="circle" coords="35,345,15" alt="volume down" onclick="pressMenuRemote('114');">
<area shape="circle" coords="67,320,10" alt="mute" onclick="pressMenuRemote('113');">
<area shape="circle" coords="103,318,10" alt="channel up" onclick="pressMenuRemote('402');">
<area shape="circle" coords="101,345,10" alt="channel down" onclick="pressMenuRemote('403');">
<area shape="circle" coords="28,287,10" alt="red" onclick="pressMenuRemote('398');">
<area shape="circle" coords="53,293,10" alt="green" onclick="pressMenuRemote('399');">
<area shape="circle" coords="82,292,10" alt="yellow" onclick="pressMenuRemote('400');">
<area shape="circle" coords="107,287,10" alt="blue" onclick="pressMenuRemote('401');">
<area shape="circle" coords="99,410,12" alt="record" onclick="pressMenuRemote('167');">
<area shape="circle" coords="37,410,12" alt="stop" onclick="pressMenuRemote('128');">
<area shape="circle" coords="67,389,12" alt="play" onclick="pressMenuRemote('207');">
<area shape="circle" coords="67,410,12" alt="pause" onclick="pressMenuRemote('119');">
<area shape="circle" coords="110,150,12" alt="timer" onclick="pressMenuRemote('362');">
<area shape="circle" coords="37,389,12" alt="rewind" onclick="pressMenuRemote('168');">
<area shape="circle" coords="98,389,12" alt="forward" onclick="pressMenuRemote('208');">
<area shape="circle" coords="68,369,12" alt="text" onclick="pressMenuRemote('388');">
<area shape="circle" coords="35,368,12" alt="audio" onclick="pressMenuRemote('392');">
<area shape="circle" coords="100,368,12" alt="subtitle" onclick="pressMenuRemote('370');">
<area shape="circle" coords="25,150,12" alt="help" onclick="pressMenuRemote('138');">
<area shape="circle" coords="52,270,12" alt="tv" onclick="pressMenuRemote('377');">
<area shape="circle" coords="84,270,12" alt="radio" onclick="pressMenuRemote('385');">
</map>
|
public/mdb.kralenconfig/Content/angular-1.5.11/angular-1.5.11/docs/partials/api/ng/function/angular.isString.html
|
timedelaar/beadconfig
|
<a href='https://github.com/angular/angular.js/edit/v1.5.x/src/Angular.js?message=docs(angular.isString)%3A%20describe%20your%20change...#L545' class='improve-docs btn btn-primary'><i class="glyphicon glyphicon-edit"> </i>Improve this Doc</a>
<a href='https://github.com/angular/angular.js/tree/v1.5.11/src/Angular.js#L545' class='view-source pull-right btn btn-primary'>
<i class="glyphicon glyphicon-zoom-in"> </i>View Source
</a>
<header class="api-profile-header">
<h1 class="api-profile-header-heading">angular.isString</h1>
<ol class="api-profile-header-structure naked-list step-list">
<li>
- function in module <a href="api/ng">ng</a>
</li>
</ol>
</header>
<div class="api-profile-description">
<p>Determines if a reference is a <code>String</code>.</p>
</div>
<div>
<h2 id="usage">Usage</h2>
<p><code>angular.isString(value);</code></p>
<section class="api-section">
<h3>Arguments</h3>
<table class="variables-matrix input-arguments">
<thead>
<tr>
<th>Param</th>
<th>Type</th>
<th>Details</th>
</tr>
</thead>
<tbody>
<tr>
<td>
value
</td>
<td>
<a href="" class="label type-hint type-hint-object">*</a>
</td>
<td>
<p>Reference to check.</p>
</td>
</tr>
</tbody>
</table>
</section>
<h3>Returns</h3>
<table class="variables-matrix return-arguments">
<tr>
<td><a href="" class="label type-hint type-hint-boolean">boolean</a></td>
<td><p>True if <code>value</code> is a <code>String</code>.</p>
</td>
</tr>
</table>
</div>
|
src/main/webapp/BenchmarkTest01332.html
|
andresriancho/Benchmark
|
<!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=ISO-8859-1">
<script src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/js.cookie.js"></script>
<title>BenchmarkTest01332</title>
</head>
<body>
<form action="/benchmark/BenchmarkTest01332" method="POST" id="FormBenchmarkTest01332">
<p>Please make your car selection, and edit the value to be sent [value]:</p>
<select name="vector" multiple>
<option value="bar" selected>Audi. [bar]</option>
<option value="Ford">Ford. [Ford]</option>
<option value="Opel">Opel. [Opel]</option>
<option value="Subaru">Subaru. [Subaru]</option>
</select><br/><br/>
<input type="submit" value="Submit">
</form>
</body>
</html>
|
mingw64/share/doc/git-doc/technical/api-tree-walking.html
|
arpitdwivedi/testproject
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge"><![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="Asciidoctor 1.5.4">
<title>tree walking API</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic%7CNoto+Serif:400,400italic,700,700italic%7CDroid+Sans+Mono:400,700">
<style>
/* Asciidoctor default stylesheet | MIT License | http://asciidoctor.org */
/* Remove comment around @import statement below when using as a custom stylesheet */
/*@import "https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic%7CNoto+Serif:400,400italic,700,700italic%7CDroid+Sans+Mono:400,700";*/
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}
audio,canvas,video{display:inline-block}
audio:not([controls]){display:none;height:0}
[hidden],template{display:none}
script{display:none!important}
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}
body{margin:0}
a{background:transparent}
a:focus{outline:thin dotted}
a:active,a:hover{outline:0}
h1{font-size:2em;margin:.67em 0}
abbr[title]{border-bottom:1px dotted}
b,strong{font-weight:bold}
dfn{font-style:italic}
hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}
mark{background:#ff0;color:#000}
code,kbd,pre,samp{font-family:monospace;font-size:1em}
pre{white-space:pre-wrap}
q{quotes:"\201C" "\201D" "\2018" "\2019"}
small{font-size:80%}
sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
sup{top:-.5em}
sub{bottom:-.25em}
img{border:0}
svg:not(:root){overflow:hidden}
figure{margin:0}
fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}
legend{border:0;padding:0}
button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}
button,input{line-height:normal}
button,select{text-transform:none}
button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}
button[disabled],html input[disabled]{cursor:default}
input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}
input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}
input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}
button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}
textarea{overflow:auto;vertical-align:top}
table{border-collapse:collapse;border-spacing:0}
*,*:before,*:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}
html,body{font-size:100%}
body{background:#fff;color:rgba(0,0,0,.8);padding:0;margin:0;font-family:"Noto Serif","DejaVu Serif",serif;font-weight:400;font-style:normal;line-height:1;position:relative;cursor:auto}
a:hover{cursor:pointer}
img,object,embed{max-width:100%;height:auto}
object,embed{height:100%}
img{-ms-interpolation-mode:bicubic}
.left{float:left!important}
.right{float:right!important}
.text-left{text-align:left!important}
.text-right{text-align:right!important}
.text-center{text-align:center!important}
.text-justify{text-align:justify!important}
.hide{display:none}
body{-webkit-font-smoothing:antialiased}
img,object,svg{display:inline-block;vertical-align:middle}
textarea{height:auto;min-height:50px}
select{width:100%}
.center{margin-left:auto;margin-right:auto}
.spread{width:100%}
p.lead,.paragraph.lead>p,#preamble>.sectionbody>.paragraph:first-of-type p{font-size:1.21875em;line-height:1.6}
.subheader,.admonitionblock td.content>.title,.audioblock>.title,.exampleblock>.title,.imageblock>.title,.listingblock>.title,.literalblock>.title,.stemblock>.title,.openblock>.title,.paragraph>.title,.quoteblock>.title,table.tableblock>.title,.verseblock>.title,.videoblock>.title,.dlist>.title,.olist>.title,.ulist>.title,.qlist>.title,.hdlist>.title{line-height:1.45;color:#7a2518;font-weight:400;margin-top:0;margin-bottom:.25em}
div,dl,dt,dd,ul,ol,li,h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6,pre,form,p,blockquote,th,td{margin:0;padding:0;direction:ltr}
a{color:#2156a5;text-decoration:underline;line-height:inherit}
a:hover,a:focus{color:#1d4b8f}
a img{border:none}
p{font-family:inherit;font-weight:400;font-size:1em;line-height:1.6;margin-bottom:1.25em;text-rendering:optimizeLegibility}
p aside{font-size:.875em;line-height:1.35;font-style:italic}
h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6{font-family:"Open Sans","DejaVu Sans",sans-serif;font-weight:300;font-style:normal;color:#ba3925;text-rendering:optimizeLegibility;margin-top:1em;margin-bottom:.5em;line-height:1.0125em}
h1 small,h2 small,h3 small,#toctitle small,.sidebarblock>.content>.title small,h4 small,h5 small,h6 small{font-size:60%;color:#e99b8f;line-height:0}
h1{font-size:2.125em}
h2{font-size:1.6875em}
h3,#toctitle,.sidebarblock>.content>.title{font-size:1.375em}
h4,h5{font-size:1.125em}
h6{font-size:1em}
hr{border:solid #ddddd8;border-width:1px 0 0;clear:both;margin:1.25em 0 1.1875em;height:0}
em,i{font-style:italic;line-height:inherit}
strong,b{font-weight:bold;line-height:inherit}
small{font-size:60%;line-height:inherit}
code{font-family:"Droid Sans Mono","DejaVu Sans Mono",monospace;font-weight:400;color:rgba(0,0,0,.9)}
ul,ol,dl{font-size:1em;line-height:1.6;margin-bottom:1.25em;list-style-position:outside;font-family:inherit}
ul,ol,ul.no-bullet,ol.no-bullet{margin-left:1.5em}
ul li ul,ul li ol{margin-left:1.25em;margin-bottom:0;font-size:1em}
ul.square li ul,ul.circle li ul,ul.disc li ul{list-style:inherit}
ul.square{list-style-type:square}
ul.circle{list-style-type:circle}
ul.disc{list-style-type:disc}
ul.no-bullet{list-style:none}
ol li ul,ol li ol{margin-left:1.25em;margin-bottom:0}
dl dt{margin-bottom:.3125em;font-weight:bold}
dl dd{margin-bottom:1.25em}
abbr,acronym{text-transform:uppercase;font-size:90%;color:rgba(0,0,0,.8);border-bottom:1px dotted #ddd;cursor:help}
abbr{text-transform:none}
blockquote{margin:0 0 1.25em;padding:.5625em 1.25em 0 1.1875em;border-left:1px solid #ddd}
blockquote cite{display:block;font-size:.9375em;color:rgba(0,0,0,.6)}
blockquote cite:before{content:"\2014 \0020"}
blockquote cite a,blockquote cite a:visited{color:rgba(0,0,0,.6)}
blockquote,blockquote p{line-height:1.6;color:rgba(0,0,0,.85)}
@media only screen and (min-width:768px){h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6{line-height:1.2}
h1{font-size:2.75em}
h2{font-size:2.3125em}
h3,#toctitle,.sidebarblock>.content>.title{font-size:1.6875em}
h4{font-size:1.4375em}}
table{background:#fff;margin-bottom:1.25em;border:solid 1px #dedede}
table thead,table tfoot{background:#f7f8f7;font-weight:bold}
table thead tr th,table thead tr td,table tfoot tr th,table tfoot tr td{padding:.5em .625em .625em;font-size:inherit;color:rgba(0,0,0,.8);text-align:left}
table tr th,table tr td{padding:.5625em .625em;font-size:inherit;color:rgba(0,0,0,.8)}
table tr.even,table tr.alt,table tr:nth-of-type(even){background:#f8f8f7}
table thead tr th,table tfoot tr th,table tbody tr td,table tr td,table tfoot tr td{display:table-cell;line-height:1.6}
body{tab-size:4}
h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6{line-height:1.2;word-spacing:-.05em}
h1 strong,h2 strong,h3 strong,#toctitle strong,.sidebarblock>.content>.title strong,h4 strong,h5 strong,h6 strong{font-weight:400}
.clearfix:before,.clearfix:after,.float-group:before,.float-group:after{content:" ";display:table}
.clearfix:after,.float-group:after{clear:both}
*:not(pre)>code{font-size:.9375em;font-style:normal!important;letter-spacing:0;padding:.1em .5ex;word-spacing:-.15em;background-color:#f7f7f8;-webkit-border-radius:4px;border-radius:4px;line-height:1.45;text-rendering:optimizeSpeed}
pre,pre>code{line-height:1.45;color:rgba(0,0,0,.9);font-family:"Droid Sans Mono","DejaVu Sans Mono",monospace;font-weight:400;text-rendering:optimizeSpeed}
.keyseq{color:rgba(51,51,51,.8)}
kbd{font-family:"Droid Sans Mono","DejaVu Sans Mono",monospace;display:inline-block;color:rgba(0,0,0,.8);font-size:.65em;line-height:1.45;background-color:#f7f7f7;border:1px solid #ccc;-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,.2),0 0 0 .1em white inset;box-shadow:0 1px 0 rgba(0,0,0,.2),0 0 0 .1em #fff inset;margin:0 .15em;padding:.2em .5em;vertical-align:middle;position:relative;top:-.1em;white-space:nowrap}
.keyseq kbd:first-child{margin-left:0}
.keyseq kbd:last-child{margin-right:0}
.menuseq,.menu{color:rgba(0,0,0,.8)}
b.button:before,b.button:after{position:relative;top:-1px;font-weight:400}
b.button:before{content:"[";padding:0 3px 0 2px}
b.button:after{content:"]";padding:0 2px 0 3px}
p a>code:hover{color:rgba(0,0,0,.9)}
#header,#content,#footnotes,#footer{width:100%;margin-left:auto;margin-right:auto;margin-top:0;margin-bottom:0;max-width:62.5em;*zoom:1;position:relative;padding-left:.9375em;padding-right:.9375em}
#header:before,#header:after,#content:before,#content:after,#footnotes:before,#footnotes:after,#footer:before,#footer:after{content:" ";display:table}
#header:after,#content:after,#footnotes:after,#footer:after{clear:both}
#content{margin-top:1.25em}
#content:before{content:none}
#header>h1:first-child{color:rgba(0,0,0,.85);margin-top:2.25rem;margin-bottom:0}
#header>h1:first-child+#toc{margin-top:8px;border-top:1px solid #ddddd8}
#header>h1:only-child,body.toc2 #header>h1:nth-last-child(2){border-bottom:1px solid #ddddd8;padding-bottom:8px}
#header .details{border-bottom:1px solid #ddddd8;line-height:1.45;padding-top:.25em;padding-bottom:.25em;padding-left:.25em;color:rgba(0,0,0,.6);display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-flow:row wrap;-webkit-flex-flow:row wrap;flex-flow:row wrap}
#header .details span:first-child{margin-left:-.125em}
#header .details span.email a{color:rgba(0,0,0,.85)}
#header .details br{display:none}
#header .details br+span:before{content:"\00a0\2013\00a0"}
#header .details br+span.author:before{content:"\00a0\22c5\00a0";color:rgba(0,0,0,.85)}
#header .details br+span#revremark:before{content:"\00a0|\00a0"}
#header #revnumber{text-transform:capitalize}
#header #revnumber:after{content:"\00a0"}
#content>h1:first-child:not([class]){color:rgba(0,0,0,.85);border-bottom:1px solid #ddddd8;padding-bottom:8px;margin-top:0;padding-top:1rem;margin-bottom:1.25rem}
#toc{border-bottom:1px solid #efefed;padding-bottom:.5em}
#toc>ul{margin-left:.125em}
#toc ul.sectlevel0>li>a{font-style:italic}
#toc ul.sectlevel0 ul.sectlevel1{margin:.5em 0}
#toc ul{font-family:"Open Sans","DejaVu Sans",sans-serif;list-style-type:none}
#toc li{line-height:1.3334;margin-top:.3334em}
#toc a{text-decoration:none}
#toc a:active{text-decoration:underline}
#toctitle{color:#7a2518;font-size:1.2em}
@media only screen and (min-width:768px){#toctitle{font-size:1.375em}
body.toc2{padding-left:15em;padding-right:0}
#toc.toc2{margin-top:0!important;background-color:#f8f8f7;position:fixed;width:15em;left:0;top:0;border-right:1px solid #efefed;border-top-width:0!important;border-bottom-width:0!important;z-index:1000;padding:1.25em 1em;height:100%;overflow:auto}
#toc.toc2 #toctitle{margin-top:0;margin-bottom:.8rem;font-size:1.2em}
#toc.toc2>ul{font-size:.9em;margin-bottom:0}
#toc.toc2 ul ul{margin-left:0;padding-left:1em}
#toc.toc2 ul.sectlevel0 ul.sectlevel1{padding-left:0;margin-top:.5em;margin-bottom:.5em}
body.toc2.toc-right{padding-left:0;padding-right:15em}
body.toc2.toc-right #toc.toc2{border-right-width:0;border-left:1px solid #efefed;left:auto;right:0}}
@media only screen and (min-width:1280px){body.toc2{padding-left:20em;padding-right:0}
#toc.toc2{width:20em}
#toc.toc2 #toctitle{font-size:1.375em}
#toc.toc2>ul{font-size:.95em}
#toc.toc2 ul ul{padding-left:1.25em}
body.toc2.toc-right{padding-left:0;padding-right:20em}}
#content #toc{border-style:solid;border-width:1px;border-color:#e0e0dc;margin-bottom:1.25em;padding:1.25em;background:#f8f8f7;-webkit-border-radius:4px;border-radius:4px}
#content #toc>:first-child{margin-top:0}
#content #toc>:last-child{margin-bottom:0}
#footer{max-width:100%;background-color:rgba(0,0,0,.8);padding:1.25em}
#footer-text{color:rgba(255,255,255,.8);line-height:1.44}
.sect1{padding-bottom:.625em}
@media only screen and (min-width:768px){.sect1{padding-bottom:1.25em}}
.sect1+.sect1{border-top:1px solid #efefed}
#content h1>a.anchor,h2>a.anchor,h3>a.anchor,#toctitle>a.anchor,.sidebarblock>.content>.title>a.anchor,h4>a.anchor,h5>a.anchor,h6>a.anchor{position:absolute;z-index:1001;width:1.5ex;margin-left:-1.5ex;display:block;text-decoration:none!important;visibility:hidden;text-align:center;font-weight:400}
#content h1>a.anchor:before,h2>a.anchor:before,h3>a.anchor:before,#toctitle>a.anchor:before,.sidebarblock>.content>.title>a.anchor:before,h4>a.anchor:before,h5>a.anchor:before,h6>a.anchor:before{content:"\00A7";font-size:.85em;display:block;padding-top:.1em}
#content h1:hover>a.anchor,#content h1>a.anchor:hover,h2:hover>a.anchor,h2>a.anchor:hover,h3:hover>a.anchor,#toctitle:hover>a.anchor,.sidebarblock>.content>.title:hover>a.anchor,h3>a.anchor:hover,#toctitle>a.anchor:hover,.sidebarblock>.content>.title>a.anchor:hover,h4:hover>a.anchor,h4>a.anchor:hover,h5:hover>a.anchor,h5>a.anchor:hover,h6:hover>a.anchor,h6>a.anchor:hover{visibility:visible}
#content h1>a.link,h2>a.link,h3>a.link,#toctitle>a.link,.sidebarblock>.content>.title>a.link,h4>a.link,h5>a.link,h6>a.link{color:#ba3925;text-decoration:none}
#content h1>a.link:hover,h2>a.link:hover,h3>a.link:hover,#toctitle>a.link:hover,.sidebarblock>.content>.title>a.link:hover,h4>a.link:hover,h5>a.link:hover,h6>a.link:hover{color:#a53221}
.audioblock,.imageblock,.literalblock,.listingblock,.stemblock,.videoblock{margin-bottom:1.25em}
.admonitionblock td.content>.title,.audioblock>.title,.exampleblock>.title,.imageblock>.title,.listingblock>.title,.literalblock>.title,.stemblock>.title,.openblock>.title,.paragraph>.title,.quoteblock>.title,table.tableblock>.title,.verseblock>.title,.videoblock>.title,.dlist>.title,.olist>.title,.ulist>.title,.qlist>.title,.hdlist>.title{text-rendering:optimizeLegibility;text-align:left;font-family:"Noto Serif","DejaVu Serif",serif;font-size:1rem;font-style:italic}
table.tableblock>caption.title{white-space:nowrap;overflow:visible;max-width:0}
.paragraph.lead>p,#preamble>.sectionbody>.paragraph:first-of-type p{color:rgba(0,0,0,.85)}
table.tableblock #preamble>.sectionbody>.paragraph:first-of-type p{font-size:inherit}
.admonitionblock>table{border-collapse:separate;border:0;background:none;width:100%}
.admonitionblock>table td.icon{text-align:center;width:80px}
.admonitionblock>table td.icon img{max-width:none}
.admonitionblock>table td.icon .title{font-weight:bold;font-family:"Open Sans","DejaVu Sans",sans-serif;text-transform:uppercase}
.admonitionblock>table td.content{padding-left:1.125em;padding-right:1.25em;border-left:1px solid #ddddd8;color:rgba(0,0,0,.6)}
.admonitionblock>table td.content>:last-child>:last-child{margin-bottom:0}
.exampleblock>.content{border-style:solid;border-width:1px;border-color:#e6e6e6;margin-bottom:1.25em;padding:1.25em;background:#fff;-webkit-border-radius:4px;border-radius:4px}
.exampleblock>.content>:first-child{margin-top:0}
.exampleblock>.content>:last-child{margin-bottom:0}
.sidebarblock{border-style:solid;border-width:1px;border-color:#e0e0dc;margin-bottom:1.25em;padding:1.25em;background:#f8f8f7;-webkit-border-radius:4px;border-radius:4px}
.sidebarblock>:first-child{margin-top:0}
.sidebarblock>:last-child{margin-bottom:0}
.sidebarblock>.content>.title{color:#7a2518;margin-top:0;text-align:center}
.exampleblock>.content>:last-child>:last-child,.exampleblock>.content .olist>ol>li:last-child>:last-child,.exampleblock>.content .ulist>ul>li:last-child>:last-child,.exampleblock>.content .qlist>ol>li:last-child>:last-child,.sidebarblock>.content>:last-child>:last-child,.sidebarblock>.content .olist>ol>li:last-child>:last-child,.sidebarblock>.content .ulist>ul>li:last-child>:last-child,.sidebarblock>.content .qlist>ol>li:last-child>:last-child{margin-bottom:0}
.literalblock pre,.listingblock pre:not(.highlight),.listingblock pre[class="highlight"],.listingblock pre[class^="highlight "],.listingblock pre.CodeRay,.listingblock pre.prettyprint{background:#f7f7f8}
.sidebarblock .literalblock pre,.sidebarblock .listingblock pre:not(.highlight),.sidebarblock .listingblock pre[class="highlight"],.sidebarblock .listingblock pre[class^="highlight "],.sidebarblock .listingblock pre.CodeRay,.sidebarblock .listingblock pre.prettyprint{background:#f2f1f1}
.literalblock pre,.literalblock pre[class],.listingblock pre,.listingblock pre[class]{-webkit-border-radius:4px;border-radius:4px;word-wrap:break-word;padding:1em;font-size:.8125em}
.literalblock pre.nowrap,.literalblock pre[class].nowrap,.listingblock pre.nowrap,.listingblock pre[class].nowrap{overflow-x:auto;white-space:pre;word-wrap:normal}
@media only screen and (min-width:768px){.literalblock pre,.literalblock pre[class],.listingblock pre,.listingblock pre[class]{font-size:.90625em}}
@media only screen and (min-width:1280px){.literalblock pre,.literalblock pre[class],.listingblock pre,.listingblock pre[class]{font-size:1em}}
.literalblock.output pre{color:#f7f7f8;background-color:rgba(0,0,0,.9)}
.listingblock pre.highlightjs{padding:0}
.listingblock pre.highlightjs>code{padding:1em;-webkit-border-radius:4px;border-radius:4px}
.listingblock pre.prettyprint{border-width:0}
.listingblock>.content{position:relative}
.listingblock code[data-lang]:before{display:none;content:attr(data-lang);position:absolute;font-size:.75em;top:.425rem;right:.5rem;line-height:1;text-transform:uppercase;color:#999}
.listingblock:hover code[data-lang]:before{display:block}
.listingblock.terminal pre .command:before{content:attr(data-prompt);padding-right:.5em;color:#999}
.listingblock.terminal pre .command:not([data-prompt]):before{content:"$"}
table.pyhltable{border-collapse:separate;border:0;margin-bottom:0;background:none}
table.pyhltable td{vertical-align:top;padding-top:0;padding-bottom:0;line-height:1.45}
table.pyhltable td.code{padding-left:.75em;padding-right:0}
pre.pygments .lineno,table.pyhltable td:not(.code){color:#999;padding-left:0;padding-right:.5em;border-right:1px solid #ddddd8}
pre.pygments .lineno{display:inline-block;margin-right:.25em}
table.pyhltable .linenodiv{background:none!important;padding-right:0!important}
.quoteblock{margin:0 1em 1.25em 1.5em;display:table}
.quoteblock>.title{margin-left:-1.5em;margin-bottom:.75em}
.quoteblock blockquote,.quoteblock blockquote p{color:rgba(0,0,0,.85);font-size:1.15rem;line-height:1.75;word-spacing:.1em;letter-spacing:0;font-style:italic;text-align:justify}
.quoteblock blockquote{margin:0;padding:0;border:0}
.quoteblock blockquote:before{content:"\201c";float:left;font-size:2.75em;font-weight:bold;line-height:.6em;margin-left:-.6em;color:#7a2518;text-shadow:0 1px 2px rgba(0,0,0,.1)}
.quoteblock blockquote>.paragraph:last-child p{margin-bottom:0}
.quoteblock .attribution{margin-top:.5em;margin-right:.5ex;text-align:right}
.quoteblock .quoteblock{margin-left:0;margin-right:0;padding:.5em 0;border-left:3px solid rgba(0,0,0,.6)}
.quoteblock .quoteblock blockquote{padding:0 0 0 .75em}
.quoteblock .quoteblock blockquote:before{display:none}
.verseblock{margin:0 1em 1.25em 1em}
.verseblock pre{font-family:"Open Sans","DejaVu Sans",sans;font-size:1.15rem;color:rgba(0,0,0,.85);font-weight:300;text-rendering:optimizeLegibility}
.verseblock pre strong{font-weight:400}
.verseblock .attribution{margin-top:1.25rem;margin-left:.5ex}
.quoteblock .attribution,.verseblock .attribution{font-size:.9375em;line-height:1.45;font-style:italic}
.quoteblock .attribution br,.verseblock .attribution br{display:none}
.quoteblock .attribution cite,.verseblock .attribution cite{display:block;letter-spacing:-.025em;color:rgba(0,0,0,.6)}
.quoteblock.abstract{margin:0 0 1.25em 0;display:block}
.quoteblock.abstract blockquote,.quoteblock.abstract blockquote p{text-align:left;word-spacing:0}
.quoteblock.abstract blockquote:before,.quoteblock.abstract blockquote p:first-of-type:before{display:none}
table.tableblock{max-width:100%;border-collapse:separate}
table.tableblock td>.paragraph:last-child p>p:last-child,table.tableblock th>p:last-child,table.tableblock td>p:last-child{margin-bottom:0}
table.tableblock,th.tableblock,td.tableblock{border:0 solid #dedede}
table.grid-all th.tableblock,table.grid-all td.tableblock{border-width:0 1px 1px 0}
table.grid-all tfoot>tr>th.tableblock,table.grid-all tfoot>tr>td.tableblock{border-width:1px 1px 0 0}
table.grid-cols th.tableblock,table.grid-cols td.tableblock{border-width:0 1px 0 0}
table.grid-all *>tr>.tableblock:last-child,table.grid-cols *>tr>.tableblock:last-child{border-right-width:0}
table.grid-rows th.tableblock,table.grid-rows td.tableblock{border-width:0 0 1px 0}
table.grid-all tbody>tr:last-child>th.tableblock,table.grid-all tbody>tr:last-child>td.tableblock,table.grid-all thead:last-child>tr>th.tableblock,table.grid-rows tbody>tr:last-child>th.tableblock,table.grid-rows tbody>tr:last-child>td.tableblock,table.grid-rows thead:last-child>tr>th.tableblock{border-bottom-width:0}
table.grid-rows tfoot>tr>th.tableblock,table.grid-rows tfoot>tr>td.tableblock{border-width:1px 0 0 0}
table.frame-all{border-width:1px}
table.frame-sides{border-width:0 1px}
table.frame-topbot{border-width:1px 0}
th.halign-left,td.halign-left{text-align:left}
th.halign-right,td.halign-right{text-align:right}
th.halign-center,td.halign-center{text-align:center}
th.valign-top,td.valign-top{vertical-align:top}
th.valign-bottom,td.valign-bottom{vertical-align:bottom}
th.valign-middle,td.valign-middle{vertical-align:middle}
table thead th,table tfoot th{font-weight:bold}
tbody tr th{display:table-cell;line-height:1.6;background:#f7f8f7}
tbody tr th,tbody tr th p,tfoot tr th,tfoot tr th p{color:rgba(0,0,0,.8);font-weight:bold}
p.tableblock>code:only-child{background:none;padding:0}
p.tableblock{font-size:1em}
td>div.verse{white-space:pre}
ol{margin-left:1.75em}
ul li ol{margin-left:1.5em}
dl dd{margin-left:1.125em}
dl dd:last-child,dl dd:last-child>:last-child{margin-bottom:0}
ol>li p,ul>li p,ul dd,ol dd,.olist .olist,.ulist .ulist,.ulist .olist,.olist .ulist{margin-bottom:.625em}
ul.unstyled,ol.unnumbered,ul.checklist,ul.none{list-style-type:none}
ul.unstyled,ol.unnumbered,ul.checklist{margin-left:.625em}
ul.checklist li>p:first-child>.fa-square-o:first-child,ul.checklist li>p:first-child>.fa-check-square-o:first-child{width:1em;font-size:.85em}
ul.checklist li>p:first-child>input[type="checkbox"]:first-child{width:1em;position:relative;top:1px}
ul.inline{margin:0 auto .625em auto;margin-left:-1.375em;margin-right:0;padding:0;list-style:none;overflow:hidden}
ul.inline>li{list-style:none;float:left;margin-left:1.375em;display:block}
ul.inline>li>*{display:block}
.unstyled dl dt{font-weight:400;font-style:normal}
ol.arabic{list-style-type:decimal}
ol.decimal{list-style-type:decimal-leading-zero}
ol.loweralpha{list-style-type:lower-alpha}
ol.upperalpha{list-style-type:upper-alpha}
ol.lowerroman{list-style-type:lower-roman}
ol.upperroman{list-style-type:upper-roman}
ol.lowergreek{list-style-type:lower-greek}
.hdlist>table,.colist>table{border:0;background:none}
.hdlist>table>tbody>tr,.colist>table>tbody>tr{background:none}
td.hdlist1,td.hdlist2{vertical-align:top;padding:0 .625em}
td.hdlist1{font-weight:bold;padding-bottom:1.25em}
.literalblock+.colist,.listingblock+.colist{margin-top:-.5em}
.colist>table tr>td:first-of-type{padding:0 .75em;line-height:1}
.colist>table tr>td:last-of-type{padding:.25em 0}
.thumb,.th{line-height:0;display:inline-block;border:solid 4px #fff;-webkit-box-shadow:0 0 0 1px #ddd;box-shadow:0 0 0 1px #ddd}
.imageblock.left,.imageblock[style*="float: left"]{margin:.25em .625em 1.25em 0}
.imageblock.right,.imageblock[style*="float: right"]{margin:.25em 0 1.25em .625em}
.imageblock>.title{margin-bottom:0}
.imageblock.thumb,.imageblock.th{border-width:6px}
.imageblock.thumb>.title,.imageblock.th>.title{padding:0 .125em}
.image.left,.image.right{margin-top:.25em;margin-bottom:.25em;display:inline-block;line-height:0}
.image.left{margin-right:.625em}
.image.right{margin-left:.625em}
a.image{text-decoration:none;display:inline-block}
a.image object{pointer-events:none}
sup.footnote,sup.footnoteref{font-size:.875em;position:static;vertical-align:super}
sup.footnote a,sup.footnoteref a{text-decoration:none}
sup.footnote a:active,sup.footnoteref a:active{text-decoration:underline}
#footnotes{padding-top:.75em;padding-bottom:.75em;margin-bottom:.625em}
#footnotes hr{width:20%;min-width:6.25em;margin:-.25em 0 .75em 0;border-width:1px 0 0 0}
#footnotes .footnote{padding:0 .375em 0 .225em;line-height:1.3334;font-size:.875em;margin-left:1.2em;text-indent:-1.05em;margin-bottom:.2em}
#footnotes .footnote a:first-of-type{font-weight:bold;text-decoration:none}
#footnotes .footnote:last-of-type{margin-bottom:0}
#content #footnotes{margin-top:-.625em;margin-bottom:0;padding:.75em 0}
.gist .file-data>table{border:0;background:#fff;width:100%;margin-bottom:0}
.gist .file-data>table td.line-data{width:99%}
div.unbreakable{page-break-inside:avoid}
.big{font-size:larger}
.small{font-size:smaller}
.underline{text-decoration:underline}
.overline{text-decoration:overline}
.line-through{text-decoration:line-through}
.aqua{color:#00bfbf}
.aqua-background{background-color:#00fafa}
.black{color:#000}
.black-background{background-color:#000}
.blue{color:#0000bf}
.blue-background{background-color:#0000fa}
.fuchsia{color:#bf00bf}
.fuchsia-background{background-color:#fa00fa}
.gray{color:#606060}
.gray-background{background-color:#7d7d7d}
.green{color:#006000}
.green-background{background-color:#007d00}
.lime{color:#00bf00}
.lime-background{background-color:#00fa00}
.maroon{color:#600000}
.maroon-background{background-color:#7d0000}
.navy{color:#000060}
.navy-background{background-color:#00007d}
.olive{color:#606000}
.olive-background{background-color:#7d7d00}
.purple{color:#600060}
.purple-background{background-color:#7d007d}
.red{color:#bf0000}
.red-background{background-color:#fa0000}
.silver{color:#909090}
.silver-background{background-color:#bcbcbc}
.teal{color:#006060}
.teal-background{background-color:#007d7d}
.white{color:#bfbfbf}
.white-background{background-color:#fafafa}
.yellow{color:#bfbf00}
.yellow-background{background-color:#fafa00}
span.icon>.fa{cursor:default}
.admonitionblock td.icon [class^="fa icon-"]{font-size:2.5em;text-shadow:1px 1px 2px rgba(0,0,0,.5);cursor:default}
.admonitionblock td.icon .icon-note:before{content:"\f05a";color:#19407c}
.admonitionblock td.icon .icon-tip:before{content:"\f0eb";text-shadow:1px 1px 2px rgba(155,155,0,.8);color:#111}
.admonitionblock td.icon .icon-warning:before{content:"\f071";color:#bf6900}
.admonitionblock td.icon .icon-caution:before{content:"\f06d";color:#bf3400}
.admonitionblock td.icon .icon-important:before{content:"\f06a";color:#bf0000}
.conum[data-value]{display:inline-block;color:#fff!important;background-color:rgba(0,0,0,.8);-webkit-border-radius:100px;border-radius:100px;text-align:center;font-size:.75em;width:1.67em;height:1.67em;line-height:1.67em;font-family:"Open Sans","DejaVu Sans",sans-serif;font-style:normal;font-weight:bold}
.conum[data-value] *{color:#fff!important}
.conum[data-value]+b{display:none}
.conum[data-value]:after{content:attr(data-value)}
pre .conum[data-value]{position:relative;top:-.125em}
b.conum *{color:inherit!important}
.conum:not([data-value]):empty{display:none}
dt,th.tableblock,td.content,div.footnote{text-rendering:optimizeLegibility}
h1,h2,p,td.content,span.alt{letter-spacing:-.01em}
p strong,td.content strong,div.footnote strong{letter-spacing:-.005em}
p,blockquote,dt,td.content,span.alt{font-size:1.0625rem}
p{margin-bottom:1.25rem}
.sidebarblock p,.sidebarblock dt,.sidebarblock td.content,p.tableblock{font-size:1em}
.exampleblock>.content{background-color:#fffef7;border-color:#e0e0dc;-webkit-box-shadow:0 1px 4px #e0e0dc;box-shadow:0 1px 4px #e0e0dc}
.print-only{display:none!important}
@media print{@page{margin:1.25cm .75cm}
*{-webkit-box-shadow:none!important;box-shadow:none!important;text-shadow:none!important}
a{color:inherit!important;text-decoration:underline!important}
a.bare,a[href^="#"],a[href^="mailto:"]{text-decoration:none!important}
a[href^="http:"]:not(.bare):after,a[href^="https:"]:not(.bare):after{content:"(" attr(href) ")";display:inline-block;font-size:.875em;padding-left:.25em}
abbr[title]:after{content:" (" attr(title) ")"}
pre,blockquote,tr,img,object,svg{page-break-inside:avoid}
thead{display:table-header-group}
svg{max-width:100%}
p,blockquote,dt,td.content{font-size:1em;orphans:3;widows:3}
h2,h3,#toctitle,.sidebarblock>.content>.title{page-break-after:avoid}
#toc,.sidebarblock,.exampleblock>.content{background:none!important}
#toc{border-bottom:1px solid #ddddd8!important;padding-bottom:0!important}
.sect1{padding-bottom:0!important}
.sect1+.sect1{border:0!important}
#header>h1:first-child{margin-top:1.25rem}
body.book #header{text-align:center}
body.book #header>h1:first-child{border:0!important;margin:2.5em 0 1em 0}
body.book #header .details{border:0!important;display:block;padding:0!important}
body.book #header .details span:first-child{margin-left:0!important}
body.book #header .details br{display:block}
body.book #header .details br+span:before{content:none!important}
body.book #toc{border:0!important;text-align:left!important;padding:0!important;margin:0!important}
body.book #toc,body.book #preamble,body.book h1.sect0,body.book .sect1>h2{page-break-before:always}
.listingblock code[data-lang]:before{display:block}
#footer{background:none!important;padding:0 .9375em}
#footer-text{color:rgba(0,0,0,.6)!important;font-size:.9em}
.hide-on-print{display:none!important}
.print-only{display:block!important}
.hide-for-print{display:none!important}
.show-for-print{display:inherit!important}}
</style>
</head>
<body class="article">
<div id="header">
<h1>tree walking API</h1>
</div>
<div id="content">
<div id="preamble">
<div class="sectionbody">
<div class="paragraph">
<p>The tree walking API is used to traverse and inspect trees.</p>
</div>
</div>
</div>
<div class="sect1">
<h2 id="_data_structures">Data Structures</h2>
<div class="sectionbody">
<div class="dlist">
<dl>
<dt class="hdlist1"><code>struct name_entry</code></dt>
<dd>
<p>An entry in a tree. Each entry has a sha1 identifier, pathname, and
mode.</p>
</dd>
<dt class="hdlist1"><code>struct tree_desc</code></dt>
<dd>
<p>A semi-opaque data structure used to maintain the current state of the
walk.</p>
<div class="ulist">
<ul>
<li>
<p><code>buffer</code> is a pointer into the memory representation of the tree. It always
points at the current entry being visited.</p>
</li>
<li>
<p><code>size</code> counts the number of bytes left in the <code>buffer</code>.</p>
</li>
<li>
<p><code>entry</code> points to the current entry being visited.</p>
</li>
</ul>
</div>
</dd>
<dt class="hdlist1"><code>struct traverse_info</code></dt>
<dd>
<p>A structure used to maintain the state of a traversal.</p>
<div class="ulist">
<ul>
<li>
<p><code>prev</code> points to the traverse_info which was used to descend into the
current tree. If this is the top-level tree <code>prev</code> will point to
a dummy traverse_info.</p>
</li>
<li>
<p><code>name</code> is the entry for the current tree (if the tree is a subtree).</p>
</li>
<li>
<p><code>pathlen</code> is the length of the full path for the current tree.</p>
</li>
<li>
<p><code>conflicts</code> can be used by callbacks to maintain directory-file conflicts.</p>
</li>
<li>
<p><code>fn</code> is a callback called for each entry in the tree. See Traversing for more
information.</p>
</li>
<li>
<p><code>data</code> can be anything the <code>fn</code> callback would want to use.</p>
</li>
<li>
<p><code>show_all_errors</code> tells whether to stop at the first error or not.</p>
</li>
</ul>
</div>
</dd>
</dl>
</div>
</div>
</div>
<div class="sect1">
<h2 id="_initializing">Initializing</h2>
<div class="sectionbody">
<div class="dlist">
<dl>
<dt class="hdlist1"><code>init_tree_desc</code></dt>
<dd>
<p>Initialize a <code>tree_desc</code> and decode its first entry. The buffer and
size parameters are assumed to be the same as the buffer and size
members of <code>struct tree</code>.</p>
</dd>
<dt class="hdlist1"><code>fill_tree_descriptor</code></dt>
<dd>
<p>Initialize a <code>tree_desc</code> and decode its first entry given the sha1 of
a tree. Returns the <code>buffer</code> member if the sha1 is a valid tree
identifier and NULL otherwise.</p>
</dd>
<dt class="hdlist1"><code>setup_traverse_info</code></dt>
<dd>
<p>Initialize a <code>traverse_info</code> given the pathname of the tree to start
traversing from. The <code>base</code> argument is assumed to be the <code>path</code>
member of the <code>name_entry</code> being recursed into unless the tree is a
top-level tree in which case the empty string ("") is used.</p>
</dd>
</dl>
</div>
</div>
</div>
<div class="sect1">
<h2 id="_walking">Walking</h2>
<div class="sectionbody">
<div class="dlist">
<dl>
<dt class="hdlist1"><code>tree_entry</code></dt>
<dd>
<p>Visit the next entry in a tree. Returns 1 when there are more entries
left to visit and 0 when all entries have been visited. This is
commonly used in the test of a while loop.</p>
</dd>
<dt class="hdlist1"><code>tree_entry_len</code></dt>
<dd>
<p>Calculate the length of a tree entry’s pathname. This utilizes the
memory structure of a tree entry to avoid the overhead of using a
generic strlen().</p>
</dd>
<dt class="hdlist1"><code>update_tree_entry</code></dt>
<dd>
<p>Walk to the next entry in a tree. This is commonly used in conjunction
with <code>tree_entry_extract</code> to inspect the current entry.</p>
</dd>
<dt class="hdlist1"><code>tree_entry_extract</code></dt>
<dd>
<p>Decode the entry currently being visited (the one pointed to by
<code>tree_desc's</code> <code>entry</code> member) and return the sha1 of the entry. The
<code>pathp</code> and <code>modep</code> arguments are set to the entry’s pathname and mode
respectively.</p>
</dd>
<dt class="hdlist1"><code>get_tree_entry</code></dt>
<dd>
<p>Find an entry in a tree given a pathname and the sha1 of a tree to
search. Returns 0 if the entry is found and -1 otherwise. The third
and fourth parameters are set to the entry’s sha1 and mode
respectively.</p>
</dd>
</dl>
</div>
</div>
</div>
<div class="sect1">
<h2 id="_traversing">Traversing</h2>
<div class="sectionbody">
<div class="dlist">
<dl>
<dt class="hdlist1"><code>traverse_trees</code></dt>
<dd>
<p>Traverse <code>n</code> number of trees in parallel. The <code>fn</code> callback member of
<code>traverse_info</code> is called once for each tree entry.</p>
</dd>
<dt class="hdlist1"><code>traverse_callback_t</code></dt>
<dd>
<p>The arguments passed to the traverse callback are as follows:</p>
<div class="ulist">
<ul>
<li>
<p><code>n</code> counts the number of trees being traversed.</p>
</li>
<li>
<p><code>mask</code> has its nth bit set if something exists in the nth entry.</p>
</li>
<li>
<p><code>dirmask</code> has its nth bit set if the nth tree’s entry is a directory.</p>
</li>
<li>
<p><code>entry</code> is an array of size <code>n</code> where the nth entry is from the nth tree.</p>
</li>
<li>
<p><code>info</code> maintains the state of the traversal.</p>
</li>
</ul>
</div>
<div class="paragraph">
<p>Returning a negative value will terminate the traversal. Otherwise the
return value is treated as an update mask. If the nth bit is set the nth tree
will be updated and if the bit is not set the nth tree entry will be the
same in the next callback invocation.</p>
</div>
</dd>
<dt class="hdlist1"><code>make_traverse_path</code></dt>
<dd>
<p>Generate the full pathname of a tree entry based from the root of the
traversal. For example, if the traversal has recursed into another
tree named "bar" the pathname of an entry "baz" in the "bar"
tree would be "bar/baz".</p>
</dd>
<dt class="hdlist1"><code>traverse_path_len</code></dt>
<dd>
<p>Calculate the length of a pathname returned by <code>make_traverse_path</code>.
This utilizes the memory structure of a tree entry to avoid the
overhead of using a generic strlen().</p>
</dd>
</dl>
</div>
</div>
</div>
<div class="sect1">
<h2 id="_authors">Authors</h2>
<div class="sectionbody">
<div class="paragraph">
<p>Written by Junio C Hamano <<a href="mailto:gitster@pobox.com">gitster@pobox.com</a>> and Linus Torvalds
<<a href="mailto:torvalds@linux-foundation.org">torvalds@linux-foundation.org</a>></p>
</div>
</div>
</div>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2016-11-02 12:15:33 W. Europe Standard Time
</div>
</div>
</body>
</html>
|
src/backend/home.html
|
ricardosiri68/patchcap
|
<html>
<head>
<script src="/static/scripts/jquery.js"></script>
<script src="/static/scripts/socket.io.js"></script>
<script name="javascript">
function connect() {
WEB_SOCKET_SWF_LOCATION = "/static/WebSocketMain.swf";
WEB_SOCKET_DEBUG = true;
// connect to the websocket
var socket = io.connect('/log');
socket.emit('register', true);
$(window).bind("beforeunload", function() {
socket.disconnect();
});
socket.on("refresh", function(deviceId, data) {
console.log('recibiendo para '+deviceId);
console.log(data.log);
$('#data').append(JSON.stringify(data.log));
});
}
$(function(){
connect();
});
</script>
</head>
<body>
<div id="data">
</div>
</body>
</html>
|
app/findmygame/public/css/me-theme-preset1.css
|
bstumbo/FMG
|
/*----------------------------------------------------------------------
# Package - JM Template
# ----------------------------------------------------------------------
# Author - JoomlaMan http://www.joomlaman.com
# Copyright Copyright under commercial licence (C) 2012 - 2013 JoomlaMan
# License http://www.gnu.org/licenses/gpl-3.0.html GNU/GPLv3
-----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
# Package - JM Template
# ----------------------------------------------------------------------
# Author - JoomlaMan http://www.joomlaman.com
# Copyright Copyright under commercial licence (C) 2012 - 2013 JoomlaMan
# License http://www.gnu.org/licenses/gpl-3.0.html GNU/GPLv3
-----------------------------------------------------------------------*/
/* Dropcap */
/*----------------------------------------------------------------------
# Package - JM Template
# ----------------------------------------------------------------------
# Author - JoomlaMan http://www.joomlaman.com
# Copyright Copyright under commercial licence (C) 2012 - 2013 JoomlaMan
# License http://www.gnu.org/licenses/gpl-3.0.html GNU/GPLv3
-----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
# Package - JM Template
# ----------------------------------------------------------------------
# Author - JoomlaMan http://www.joomlaman.com
# Copyright Copyright under commercial licence (C) 2012 - 2013 JoomlaMan
# License http://www.gnu.org/licenses/gpl-3.0.html GNU/GPLv3
-----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
# Package - JM Template
# ----------------------------------------------------------------------
# Author - JoomlaMan http://www.joomlaman.com
# Copyright Copyright under commercial licence (C) 2012 - 2013 JoomlaMan
# License http://www.gnu.org/licenses/gpl-3.0.html GNU/GPLv3
-----------------------------------------------------------------------*/
.clearfix {
*zoom: 1;
}
.clearfix:before, .clearfix:after {
display: table;
content: "";
line-height: 0;
}
.clearfix:after {
clear: both;
}
.btn {
border: none !important;
}
.btn, .button, button {
display: inline-block;
/* IE7 inline-block hack */
*display: inline;
*zoom: 1;
padding: 4px 14px;
margin-bottom: 0;
font-size: 14px;
line-height: 20px;
*line-height: 20px;
text-align: center;
vertical-align: middle;
cursor: pointer;
color: #333;
text-shadow: 0 1px 1px rgba(255, 255, 255, .75);
background-image: -moz-linear-gradient(top, #fff, #e6e6e6);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#e6e6e6));
background-image: -webkit-linear-gradient(top, #fff, #e6e6e6);
background-image: -o-linear-gradient(top, #fff, #e6e6e6);
background-image: linear-gradient(to bottom, #fff, #e6e6e6);
background-repeat: repeat-x;
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb($startColor),argb($endColor)));
border-color: #e6e6e6 #e6e6e6 #bfbfbf;
border-color: rgba(0, 0, 0, .1) rgba(0, 0, 0, .1) fadein(rgba(0, 0, 0, .1), 15%);
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
*background-color: #e6e6e6;
filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
*margin-left: 0.3em;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
font-family: 'MuseoSlab';
}
.btn:hover, .button:hover, button:hover, .btn:active, .button:active, button:active, .btn.active, .button.active, button.active, .btn.disabled, .button.disabled, button.disabled, .btn[disabled], .button[disabled], button[disabled] {
color: #333;
background-color: #e6e6e6;
*background-color: #d9d9d9;
}
.btn:active, .button:active, button:active, .btn.active, .button.active, button.active {
background-color: #ccc e("\9");
}
.btn:first-child, .button:first-child, button:first-child {
*margin-left: 0;
}
.btn:hover, .button:hover, button:hover {
color: #333;
text-decoration: none;
background-color: #e6e6e6;
/* Buttons in IE7 don't get borders, so darken on hover */
*background-color: #d9d9d9;
-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;
}
.btn:focus, .button:focus, button:focus {
outline: thin dotted #333;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
.btn.active, .button.active, button.active, .btn:active, .button:active, button:active {
background-color: #e6e6e6;
background-color: #d9d9d9 e("\9");
background-image: none;
outline: 0;
-webkit-box-shadow: "none";
-moz-box-shadow: "none";
box-shadow: "none";
}
.btn.disabled, .button.disabled, button.disabled, .btn[disabled], .button[disabled], button[disabled] {
cursor: default;
background-color: #e6e6e6;
background-image: none;
opacity: 0.65;
filter: "alpha(opacity=${opacity})";
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.jm-btn {
line-height: 30px;
margin: 0 10px;
}
.btn-large {
padding: 6px 22px;
font-size: 16px;
line-height: normal;
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
}
.btn-large [class^="fa fa-"] {
margin-top: 2px;
}
.btn-small {
padding: 3px 15px;
font-size: 12px;
line-height: 18px;
}
.btn-small [class^="fa fa-"] {
margin-top: 0;
}
.btn-mini {
padding: 3px 9px;
font-size: 11px;
line-height: 16px;
}
.btn-block {
display: block;
width: 100%;
padding-left: 0;
padding-right: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.btn-block + .btn-block {
margin-top: 5px;
}
.btn-primary.active, .btn-warning.active, .btn-danger.active, .btn-success.active, .btn-info.active, .btn-inverse.active {
color: rgba(255, 255, 255, .75);
}
.btn, .button {
border-color: #c5c5c5;
border-color: rgba(0, 0, 0, .15) rgba(0, 0, 0, .15) rgba(0, 0, 0, .25);
}
.btn-primary, .button {
color: #fff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
background-image: -moz-linear-gradient(top, #29bcb8, #298fbc);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#29bcb8), to(#298fbc));
background-image: -webkit-linear-gradient(top, #29bcb8, #298fbc);
background-image: -o-linear-gradient(top, #29bcb8, #298fbc);
background-image: linear-gradient(to bottom, #29bcb8, #298fbc);
background-repeat: repeat-x;
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb($startColor),argb($endColor)));
border-color: #298fbc #298fbc #1b5f7d;
border-color: rgba(0, 0, 0, .1) rgba(0, 0, 0, .1) fadein(rgba(0, 0, 0, .1), 15%);
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
*background-color: #298fbc;
filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
}
.btn-primary:hover, .button:hover, .btn-primary:active, .button:active, .btn-primary.active, .button.active, .btn-primary.disabled, .button.disabled, .btn-primary[disabled], .button[disabled] {
color: #fff;
background-color: #298fbc;
*background-color: #247fa7;
}
.btn-primary:active, .button:active, .btn-primary.active, .button.active {
background-color: #206f92 e("\9");
}
.btn-warning {
color: #fff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
background-image: -moz-linear-gradient(top, #fbb450, #f89406);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
background-image: -o-linear-gradient(top, #fbb450, #f89406);
background-image: linear-gradient(to bottom, #fbb450, #f89406);
background-repeat: repeat-x;
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb($startColor),argb($endColor)));
border-color: #f89406 #f89406 #ad6704;
border-color: rgba(0, 0, 0, .1) rgba(0, 0, 0, .1) fadein(rgba(0, 0, 0, .1), 15%);
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
*background-color: #f89406;
filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
}
.btn-warning:hover, .btn-warning:active, .btn-warning.active, .btn-warning.disabled, .btn-warning[disabled] {
color: #fff;
background-color: #f89406;
*background-color: #df8505;
}
.btn-warning:active, .btn-warning.active {
background-color: #c67605 e("\9");
}
.btn-danger {
color: #fff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
background-repeat: repeat-x;
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb($startColor),argb($endColor)));
border-color: #bd362f #bd362f #802420;
border-color: rgba(0, 0, 0, .1) rgba(0, 0, 0, .1) fadein(rgba(0, 0, 0, .1), 15%);
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
*background-color: #bd362f;
filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
}
.btn-danger:hover, .btn-danger:active, .btn-danger.active, .btn-danger.disabled, .btn-danger[disabled] {
color: #fff;
background-color: #bd362f;
*background-color: #a9302a;
}
.btn-danger:active, .btn-danger.active {
background-color: #942a25 e("\9");
}
.btn-success {
color: #fff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
background-image: -moz-linear-gradient(top, #62c462, #51a351);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
background-image: -webkit-linear-gradient(top, #62c462, #51a351);
background-image: -o-linear-gradient(top, #62c462, #51a351);
background-image: linear-gradient(to bottom, #62c462, #51a351);
background-repeat: repeat-x;
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb($startColor),argb($endColor)));
border-color: #51a351 #51a351 #387038;
border-color: rgba(0, 0, 0, .1) rgba(0, 0, 0, .1) fadein(rgba(0, 0, 0, .1), 15%);
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
*background-color: #51a351;
filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
}
.btn-success:hover, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] {
color: #fff;
background-color: #51a351;
*background-color: #499249;
}
.btn-success:active, .btn-success.active {
background-color: #408140 e("\9");
}
.btn-info {
color: #fff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
background-repeat: repeat-x;
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb($startColor),argb($endColor)));
border-color: #2f96b4 #2f96b4 #1f6377;
border-color: rgba(0, 0, 0, .1) rgba(0, 0, 0, .1) fadein(rgba(0, 0, 0, .1), 15%);
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
*background-color: #2f96b4;
filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
}
.btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
color: #fff;
background-color: #2f96b4;
*background-color: #2a85a0;
}
.btn-info:active, .btn-info.active {
background-color: #24748c e("\9");
}
.btn-inverse {
color: #fff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
background-image: -moz-linear-gradient(top, #444, #222);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444), to(#222));
background-image: -webkit-linear-gradient(top, #444, #222);
background-image: -o-linear-gradient(top, #444, #222);
background-image: linear-gradient(to bottom, #444, #222);
background-repeat: repeat-x;
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb($startColor),argb($endColor)));
border-color: #222 #222 #000;
border-color: rgba(0, 0, 0, .1) rgba(0, 0, 0, .1) fadein(rgba(0, 0, 0, .1), 15%);
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
*background-color: #222;
filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
}
.btn-inverse:hover, .btn-inverse:active, .btn-inverse.active, .btn-inverse.disabled, .btn-inverse[disabled] {
color: #fff;
background-color: #222;
*background-color: #151515;
}
.btn-inverse:active, .btn-inverse.active {
background-color: #090909 e("\9");
}
button.btn, input[type="submit"].btn {
*padding-top: 3px;
*padding-bottom: 3px;
}
button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
padding: 0;
border: 0;
}
button.btn.btn-large, input[type="submit"].btn.btn-large {
*padding-top: 7px;
*padding-bottom: 7px;
}
button.btn.btn-small, input[type="submit"].btn.btn-small {
*padding-top: 3px;
*padding-bottom: 3px;
}
button.btn.btn-mini, input[type="submit"].btn.btn-mini {
*padding-top: 1px;
*padding-bottom: 1px;
}
.btn-link, .btn-link:active {
background-color: transparent;
background-image: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.btn-link {
border-color: transparent;
cursor: pointer;
color: #29bcb8;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.btn-link:hover {
color: #1b7d7b;
text-decoration: underline;
background-color: transparent;
}
.btn-default {
background: #29bcb8;
color: #fff !important;
text-shadow: none;
border-top: 1px solid #29bcb8 !important;
border-bottom: 3px solid #26afac !important;
}
.btn-default:hover, .btn-default:focus, .btn-default:active {
background: #26afac !important;
border: none;
border-top: 1px solid #26afac;
border-bottom: 3px solid #26afac;
color: #fff !important;
}
.btn-primary, .button, button {
background: rgba(41, 188, 184, 0.1);
border: 2px solid #29bcb8 !important;
color: #29bcb8;
text-shadow: none;
}
.btn-primary:hover, .button:hover, button:hover, .btn-primary:focus, .button:focus, button:focus, .btn-primary:active, .button:active, button:active {
background: rgba(41, 188, 184, 0.5) !important;
border: 2px solid #29bcb8;
color: #29bcb8;
}
.block {
margin-top: 30px;
}
.block:first-child, .block.block-system {
margin-top: 0;
}
.block .block-title {
font-size: 20px;
font-weight: 400;
line-height: normal;
text-transform: uppercase;
margin: 0 0 20px;
}
.region-sidebar-first .block-title, .region-sidebar-second .block-title {
font-size: 16px;
margin: 0 0 10px;
}
.from-the-block .views-row {
clear: both;
margin: 15px 0 0;
padding: 0 0 15px;
}
.from-the-block .views-row .blog-info {
width: 15%;
}
.from-the-block .views-row .blog-info img {
width: 50px;
height: auto;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
margin: 2px 0 5px;
border: 4px solid #efefef;
}
.from-the-block .views-row .blog-info .date {
color: #29bcb8;
font-size: 11px;
font-weight: normal;
text-transform: lowercase;
}
.from-the-block .views-row .blog-info .month {
color: #29bcb8;
font-family: 'MuseoSlab';
font-size: 14px;
text-transform: uppercase;
}
.from-the-block .views-row .blog-content {
width: 82%;
}
.from-the-block .views-row .blog-content .from-the-block-read-more {
font-size: 11px;
font-style: italic;
}
.sp-tweet .sp-avatar {
margin-right: 5px;
}
.me-team .slide-item-wrap {
padding: 15px;
margin-bottom: 50px;
}
.me-team .slide-item-wrap .slide-item-image {
position: relative;
}
.me-team .slide-item-wrap img {
border-radius: 50%;
display: block;
margin: 0 auto;
max-width: 100%;
transition: all 0.18s linear 0s;
}
.me-team .slide-item-wrap .circle-border {
background: none repeat scroll 0 0 transparent;
border: 1px solid #ecebe9;
left: 0px;
position: absolute;
top: 0px;
-webkit-transition-duration: 225ms;
-moz-transition-duration: 225ms;
-ms-transition-duration: 225ms;
-o-transition-duration: 225ms;
transition-duration: 225ms;
-webkit-transition-property: all;
-moz-transition-property: all;
-ms-transition-property: all;
-o-transition-property: all;
transition-property: all;
-webkit-transition-timing-function: cubic-bezier(0.5, -0.7, 0.67, 0.7);
-moz-transition-timing-function: cubic-bezier(0.5, -0.7, 0.67, 0.7);
-ms-transition-timing-function: cubic-bezier(0.5, -0.7, 0.67, 0.7);
-o-transition-timing-function: cubic-bezier(0.5, -0.7, 0.67, 0.7);
transition-timing-function: cubic-bezier(0.5, -0.7, 0.67, 0.7);
width: 99%;
height: 99%;
border-radius: 50%;
z-index: -1;
}
.me-team .slide-item-wrap:hover .circle-border {
border: 1px solid #29bcb8;
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1);
-webkit-transition-timing-function: cubic-bezier(0.4, 0.25, 0.14, 1.73);
-moz-transition-timing-function: cubic-bezier(0.4, 0.25, 0.14, 1.73);
-ms-transition-timing-function: cubic-bezier(0.4, 0.25, 0.14, 1.73);
-o-transition-timing-function: cubic-bezier(0.4, 0.25, 0.14, 1.73);
transition-timing-function: cubic-bezier(0.4, 0.25, 0.14, 1.73);
}
.me-team .slide-item-wrap .slide-item-title {
padding: 20px 0 15px;
}
.me-team .slide-item-wrap .slide-item-title .name {
display: block;
font-family: 'MuseoSlab';
font-size: 20px;
text-align: center;
}
.me-team .slide-item-wrap .slide-item-title .position {
color: #999;
display: block;
text-align: center;
}
.me-team .slide-item-wrap .slide-item-desc {
border-bottom: 1px solid #e6e6e6;
border-top: 1px solid #e6e6e6;
padding: 15px 0;
}
.me-team .slide-item-wrap .user-social {
font-size: 12px;
padding: 15px 0;
text-align: center;
}
.me-team .slide-item-wrap .user-social span:before {
content: "/";
padding: 0 5px 0 0;
}
.me-team .slide-item-wrap .user-social span:first-child:before {
display: none;
}
.region-sidebar-first .list-style1 .item-list ul, .region-sidebar-second .list-style1 .item-list ul {
list-style: none;
}
.region-sidebar-first .list-style1 .item-list ul li, .region-sidebar-second .list-style1 .item-list ul li {
margin: 0 0 5px;
padding: 0;
}
.region-sidebar-first .list-style1 .item-list ul li a, .region-sidebar-second .list-style1 .item-list ul li a {
font-family: 'Open Sans', Helvetica, Arial, sans-serif;
background: #f1f1f1;
color: #4c5357;
display: block;
padding: 10px;
}
.region-sidebar-first .list-style1 .item-list ul li a:before, .region-sidebar-second .list-style1 .item-list ul li a:before {
color: #29bcb8;
content: "\f105";
font-family: fontawesome;
padding: 10px;
}
.region-sidebar-first .list-style1 .item-list ul li a:hover, .region-sidebar-second .list-style1 .item-list ul li a:hover {
background: #29bcb8;
color: #fff;
}
.region-sidebar-first .list-style1 .item-list ul li a:hover:before, .region-sidebar-second .list-style1 .item-list ul li a:hover:before {
color: #fff;
}
.top-menu ul {
list-style: none;
padding: 0;
margin: 0;
}
.top-menu ul li {
padding: 0;
margin: 0;
float: right;
list-style: none;
}
.top-menu ul li a {
display: block;
padding: 4px 5px;
}
.rtl .top-menu ul li {
float: left;
}
.sh-dropcap {
overflow: hidden;
}
.sh-dropcap:first-letter {
color: #666;
display: block;
float: left;
font-size: 50px;
line-height: 40px;
padding: 4px 8px 0 0;
}
.testimonial {
margin: 40px 0 20px;
}
.testimonial .testimonial-author {
margin: -1px 0 0 0;
padding: 15px 0 15px 60px;
background: url(/sites/all/themes/me/images/bg-testimonial.png) no-repeat 20px 0px;
}
.testimonial .testimonial-author strong {
font-weight: normal;
color: #000;
}
.testimonial .testimonial-content {
border: #efefef 1px solid;
padding: 10px;
background: #fff;
}
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
background: #29bcb8;
}
.tab-content .tab-pane {
margin-top: 20px;
}
.btn-mini {
font-size: 11px;
line-height: 16px;
padding: 3px 9px;
}
.panel-default > .panel-heading {
background: none;
border-color: #e5e5e5;
/*Unordered Lists*/
}
.panel-default > .panel-heading .panel-title {
font-size: 13px;
}
ul.arrow, ul.arrow-double, ul.tick, ul.cross, ul.star, ul.rss {
list-style: none;
padding: 0;
margin: 0;
}
ul.arrow li::before, ul.arrow-double li::before, ul.tick li::before, ul.cross li::before, ul.star li::before, ul.rss li::before, ul.arrow li::after, ul.arrow-double li::after, ul.tick li::after, ul.cross li::after, ul.star li::after, ul.rss li::after {
font-family: FontAwesome;
font-size: 11px;
}
.ltr ul.arrow li::before, .ltr ul.arrow-double li::before, .ltr ul.tick li::before, .ltr ul.cross li::before, .ltr ul.star li::before, .ltr ul.rss li::before {
margin-right: 5px;
}
.ltr ul.arrow li::before {
content: "\f105";
}
.ltr ul.arrow-double li::before {
content: "\f101";
}
.ltr ul.tick li::before {
content: "\f00c";
}
.ltr ul.cross li::before {
content: "\f00d";
}
.ltr ul.star li::before {
content: "\f006";
}
.ltr ul.rss li::before {
content: "\f09e";
}
.rtl ul.arrow li::after, .rtl ul.arrow-double li::after, .rtl ul.tick li::after, .rtl ul.cross li::after, .rtl ul.star li::after, .rtl ul.rss li::after {
margin-left: 5px;
}
.rtl ul.arrow li::after {
content: "\f104";
}
.rtl ul.arrow-double li::after {
content: "\f100";
}
.rtl ul.tick li::after {
content: "\f00c";
}
.rtl ul.cross li::after {
content: "\f00d";
}
.rtl ul.star li::after {
content: "\f006";
}
.rtl ul.rss li::after {
content: "\f09e";
}
img.pull-left, .pull-left > img {
margin-right: 15px;
}
img.pull-right, .pull-right > img {
margin-left: 15px;
}
.rtl {
/* Block number */
}
.rtl img.pull-left, .rtl .pull-left > img {
margin-left: 15px;
}
.rtl img.pull-right, .rtl .pull-right > img {
margin-right: 15px;
}
.sh-blocknumber {
position: relative;
min-height: 45px;
}
.sh-blocknumber span {
font-weight: bold;
width: 48px;
height: 48px;
line-height: 48px;
display: block;
text-align: center;
position: absolute;
top: 0;
}
.sh-blocknumber span.rounded {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.sh-blocknumber span.circle {
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
}
.ltr .sh-blocknumber {
padding: 5px 0 5px 60px;
}
.ltr .sh-blocknumber span {
left: 0;
}
.rtl {
/* Block */
}
.rtl .sh-blocknumber {
padding: 5px 60px 5px 0;
}
.rtl .sh-blocknumber span {
right: 0;
}
.sh-block.rounded {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.sh-bubble {
position: relative;
margin-bottom: 40px;
}
.sh-bubble cite {
display: block;
height: 30px;
line-height: 36px;
position: absolute;
bottom: -30px;
}
.sh-bubble cite span {
content: ' ';
position: absolute;
top: 0;
display: block;
width: 0;
height: 0;
border-bottom-color: transparent !important;
}
.ltr .sh-bubble cite {
left: 15px;
padding-left: 40px;
}
.ltr .sh-bubble cite span {
left: 0;
border-left-color: transparent !important;
}
.rtl .sh-bubble cite {
right: 15px;
padding-right: 40px;
}
.rtl .sh-bubble cite span {
right: 0;
border-right-color: transparent !important;
}
.ltr [class^="icon-"].pull-left, .ltr [class*=" icon-"].pull-left {
margin-right: 0.3em;
}
.ltr [class^="icon-"].pull-right, .ltr [class*=" icon-"].pull-right {
margin-left: 0.3em;
}
.rtl [class^="icon-"].pull-left, .rtl [class*=" icon-"].pull-left {
margin-left: 0.3em;
}
.rtl [class^="icon-"].pull-right, .rtl [class*=" icon-"].pull-right {
margin-right: 0.3em;
}
.block-contents .view-blog-categories .cat-title {
background: #29bcb8;
color: #fff;
padding: 0 10px;
}
.block-contents .view-blog-categories .cat-title a {
color: #fff;
display: block;
font-size: 17px;
font-weight: normal;
padding-right: 20px;
position: relative;
text-transform: uppercase;
}
.block-contents .view-blog-categories .cat-image {
margin-bottom: 10px;
}
.block-contents .view-blog-categories .cat-image img {
width: 100%;
height: auto;
}
.sh-blog {
border-bottom: 1px solid #dadbde;
padding-bottom: 20px;
margin-bottom: 20px;
}
.sh-blog .blog-content-tile {
font-size: 20px;
text-transform: uppercase;
color: #222;
padding: 0;
margin: 0 0 20px;
color: #222;
}
.sh-blog .blog-content-tile a {
color: #222;
}
.sh-blog .field-name-field-tags {
display: inline-block;
}
.sh-blog .blog-image {
position: relative;
}
.sh-blog .blog-image img {
width: 100%;
height: auto;
}
.sh-blog .blog-image .image-overlay {
border-color: #e1e1e1;
background: none repeat scroll 0 0 #fff;
position: absolute;
z-index: 500;
display: block;
height: 100%;
left: 0;
-webkit-transition: all 0.5s ease-in-out 0s;
-moz-transition: all 0.5s ease-in-out 0s;
-o-transition: all 0.5s ease-in-out 0s;
transition: all 0.5s ease-in-out 0s;
top: 0;
opacity: 0;
filter: "alpha(opacity=${opacity})";
width: 100%;
-moz-box-sizing: border-box;
border: 0 solid rgba(0, 0, 0, 0.7);
overflow: visible;
}
.sh-blog .blog-image .image-overlay:hover {
opacity: 0.7;
filter: "alpha(opacity=${opacity})";
background: rgba(0, 0, 0, 0.7);
}
.sh-blog .blog-image .image-overlay:hover .image-overlay-inside:before {
height: 80px;
width: 80px;
line-height: 80px;
-webkit-transition: all 400ms;
-moz-transition: all 400ms;
-o-transition: all 400ms;
transition: all 400ms;
font-size: 18px;
margin: -40px 0 0 -40px;
background: #29bcb8;
color: #fff;
}
.sh-blog .blog-image .image-overlay .image-overlay-inside {
border-color: #c3512f;
color: #fff;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
.sh-blog .blog-image .image-overlay .image-overlay-inside:before {
content: "\f064";
font-family: FontAwesome;
font-size: 14px;
font-weight: normal;
border-radius: 50px 50px 50px 50px;
color: #fff;
height: 40px;
left: 50%;
line-height: 40px;
margin: -20px 0 0 -20px;
position: absolute;
text-align: center;
top: 50%;
width: 40px;
z-index: 500;
}
.sh-blog .article-info {
border-bottom: 1px solid #dadbde;
font-size: 11px;
margin: 0 0 15px;
padding: 10px 0;
}
.sh-blog .article-info .username, .sh-blog .article-info .cdate {
color: #222;
font-size: 12px;
font-weight: bold;
}
.sh-blog ul.links.inline li:first-child {
padding: 0;
}
.sh-lastest-news .blog-content-tile {
padding: 10px 0 7px;
}
.sh-lastest-news .blog-content {
border-bottom: 1px solid #efefef;
border-top: 1px solid #efefef;
padding: 15px 0;
margin-bottom: 15px;
}
.sh-lastest-news .bx-wrapper .bx-controls-direction a {
top: 60px;
}
.sh-lastest-news .bx-wrapper .bx-controls-direction a.bx-prev {
left: -55px;
}
.sh-lastest-news .bx-wrapper .bx-controls-direction a.bx-next {
right: -55px;
}
ul.pagination li a:not(.btn) {
border: 1px solid #dedfe2;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
color: #222;
cursor: pointer;
font-size: 12px;
font-weight: normal;
margin: 0 2px;
padding: 3px 10px;
}
ul.pagination li.active a {
background: #29bcb8;
color: #fff;
border: 1px solid #29bcb8;
}
ul.pagination li.active a:hover, ul.pagination li.active a:focus {
background: #29bcb8 !important;
}
.superhero-mobile-menu-toggle {
display: none;
}
@media (min-width: 993px) {
.superhero-dropdown > ul {
float: right;
}
.superhero-dropdown > ul > li {
transition: all 200ms ease 0s;
list-style: none;
display: inline-block;
margin: 0 3px;
padding: 0;
position: relative;
}
.superhero-dropdown > ul > li:hover {
background: url(/sites/all/themes/me/images/bg-menu-over.png) repeat 0 0;
}
.superhero-dropdown > ul > li > a {
color: #fff;
display: inline-block;
font-family: 'MuseoSlab';
font-size: 13px;
margin: 0;
padding: 0 14px;
text-transform: uppercase;
border-bottom: 4px solid transparent;
}
.superhero-dropdown > ul > li > a:hover, .superhero-dropdown > ul > li > a.active {
color: #29bcb8;
border-bottom: 4px solid #29bcb8;
}
.superhero-dropdown > ul ul {
background: #fff;
-webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.125);
-moz-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.125);
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.125);
margin: 30px 0 0 0;
padding: 0;
overflow: hidden;
-webkit-transition: margin-top 0.3s;
-moz-transition: margin-top 0.3s;
-o-transition: margin-top 0.3s;
transition: margin-top 0.3s;
z-index: 999;
}
.superhero-dropdown > ul ul li {
border-bottom: 1px solid #eee;
}
.superhero-dropdown > ul ul li a {
padding: 0 15px;
}
.superhero-dropdown > ul ul li a:not(.btn) {
color: #999;
}
.superhero-dropdown > ul ul li a.active {
background: #f5f5f5;
}
.superhero-dropdown .menu-arrow {
display: none;
}
}
@media (max-width: 992px) {
.superhero-mobile-menu-toggle {
display: block;
}
a.superhero-mobile-menu-toggle {
padding: 5px 10px;
position: absolute;
right: 10px;
top: -37px;
border: 1px solid;
}
.region-menu {
padding: 0;
}
.superhero-dropdown {
background: #34373e;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
}
.superhero-dropdown.open {
border-top: 1px solid #eee;
}
.superhero-dropdown ul li a {
padding: 0 15px;
color: #fff !important;
}
.superhero-dropdown ul li a:hover {
color: #29bcb8 !important;
}
.superhero-dropdown ul li a.active {
color: #29bcb8 !important;
}
.superhero-dropdown .menu-arrow {
right: 15px;
}
}
@font-face {
font-family: 'MuseoSlab';
src: url('/sites/all/themes/me/fonts/MuseoSlab.eot');
src: url('/sites/all/themes/me/fonts/MuseoSlab.eot?#iefix') format('embedded-opentype'), url('/sites/all/themes/me/fonts/MuseoSlab.woff') format('woff'), url('/sites/all/themes/me/fonts/MuseoSlab.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
a {
-webkit-transition: all 200ms;
-moz-transition: all 200ms;
-o-transition: all 200ms;
transition: all 200ms;
}
.unstyled {
margin: 0;
padding: 0;
list-style: none;
}
.unstyled i {
margin: 0 10px 0 0;
}
.center {
text-align: center;
}
.center th, .center tr, .center td {
text-align: center;
}
.left {
float: left;
}
.right {
float: right;
}
.rtl .left {
float: right;
}
.rtl .right {
float: left;
}
.rtl ul.pagenav .pagenav-prev {
float: right;
}
.rtl ul.pagenav .pagenav-next {
float: left;
}
.title-center.module h3.header {
text-align: center !important;
}
.title-left.module h3.header {
text-align: left !important;
}
.title-right.module h3.header {
text-align: right !important;
}
.rtl .title-left.module h3.header {
text-align: right !important;
}
.rtl .title-right.module h3.header {
text-align: left !important;
}
.read-more:after {
content: "\f105";
font-family: FontAwesome;
padding: 0 5px;
}
.icontop [class^="fa fa-"]:before, .icontop [class*="fa fa-"]:before {
display: block;
font-size: 38px;
font-style: normal;
font-variant: normal;
font-weight: normal;
line-height: 100px;
text-transform: none;
}
.icontop [class^="fa fa-"]:after, .icontop [class*="fa fa-"]:after {
-moz-box-sizing: content-box;
border-radius: 50%;
box-shadow: 0 0 0 6px #efefef;
content: "";
height: 100%;
left: 0;
padding: 0;
pointer-events: none;
position: absolute;
top: 0;
transition: box-shadow 0.4s ease 0s;
width: 100%;
}
.icontop [class^="fa fa-"], .icontop [class*="fa fa-"] {
color: #29bcb8;
border-radius: 50%;
cursor: pointer;
display: inline-block;
font-size: 0;
height: 100px;
margin: 15px 30px;
position: relative;
text-align: center;
width: 100px;
z-index: 1;
}
.icontop:hover [class^="fa fa-"]:after, .icontop:hover [class*="fa fa-"]:after {
box-shadow: 0 0 0 6px #29bcb8;
}
.icontop:hover [class^="fa fa-"], .icontop:hover [class*="fa fa-"] {
color: #34373e;
}
.icontop h3.block-title {
margin-top: 5px;
}
.icontop-style2 [class^="fa fa-"], .icontop-style2 > [class*=" fa fa-"] {
-webkit-transition: box-shadow 0.2s ease 0s;
-moz-transition: box-shadow 0.2s ease 0s;
-o-transition: box-shadow 0.2s ease 0s;
transition: box-shadow 0.2s ease 0s;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
cursor: pointer;
display: inline-block;
font-size: 0;
height: 100px;
margin: 15px 30px;
position: relative;
text-align: center;
width: 100px;
z-index: 1;
background: #29bcb8;
color: #fff;
}
.icontop-style2 [class^="fa fa-"]:before, .icontop-style2 > [class*=" fa fa-"]:before {
display: block;
font-size: 38px;
font-style: normal;
font-variant: normal;
font-weight: normal;
line-height: 100px;
text-transform: none;
}
.icontop-style2 [class^="fa fa-"]:after, .icontop-style2 > [class*=" fa fa-"]:after {
-webkit-box-shadow: 0 0 0 6px #efefef;
-moz-box-shadow: 0 0 0 6px #efefef;
box-shadow: 0 0 0 6px #efefef;
left: 0;
padding: 0;
top: 0;
-webkit-transition: transform 0.2s ease 0s;
-moz-transition: transform 0.2s ease 0s;
-o-transition: transform 0.2s ease 0s;
transition: transform 0.2s ease 0s;
-webkit-transition: box-shadow 0.4s ease 0s;
-moz-transition: box-shadow 0.4s ease 0s;
-o-transition: box-shadow 0.4s ease 0s;
transition: box-shadow 0.4s ease 0s;
-moz-box-sizing: content-box;
-webkit-border-radius: 50% 50% 50% 50%;
-moz-border-radius: 50% 50% 50% 50%;
border-radius: 50% 50% 50% 50%;
content: "";
height: 100%;
pointer-events: none;
position: absolute;
width: 100%;
}
.icontop-style2:hover [class^="fa fa-"]:after, .icontop-style2:hover > [class*=" fa fa-"]:after {
-webkit-box-shadow: 0 0 0 6px #29bcb8;
-moz-box-shadow: 0 0 0 6px #29bcb8;
box-shadow: 0 0 0 6px #29bcb8;
opacity: 1;
filter: "alpha(opacity=${opacity})";
-webkit-transform: scale(0.95);
-moz-transform: scale(0.95);
-ms-transform: scale(0.95);
-o-transform: scale(0.95);
transform: scale(0.95);
}
.icontop-style2:hover [class^="fa fa-"], .icontop-style2:hover > [class*=" fa fa-"] {
color: #29bcb8;
background: #efefef;
}
.icontop-style3 .fa {
font-size: 28px;
color: #29bcb8;
}
.icontop-style3 h3.title {
font-size: 20px;
font-weight: 400;
line-height: normal;
margin: 0 0 10px;
}
.icontop-style3 h3 {
font-size: 16px;
margin: 0 0 10px;
text-transform: uppercase;
}
.white-text {
color: #fff;
}
.white-text .block-title {
color: #fff;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'MuseoSlab';
color: #34373e;
font-weight: normal;
line-height: 1.2em;
}
.sh-container {
padding-left: 15px;
padding-right: 15px;
}
.sh-container [class*="col-md-"], .sh-container [class^="col-md-"], .sh-container [class*="col-xs-"], .sh-container [class^="col-xs-"], .sh-container [class*="col-sm-"], .sh-container [class^="col-sm-"], .sh-container [class*="col-lg-"], .sh-container [class^="col-lg-"] {
padding-left: 0;
padding-right: 0;
}
body {
font-size: 12px;
color: #595959;
line-height: 20px;
}
.body-innerwrapper {
overflow-x: hidden;
overflow-y: auto;
position: relative;
}
h2#page-title {
border-bottom: 1px solid #e8e8e8;
margin: 0 0 30px;
padding: 10px 0;
text-transform: uppercase;
}
h2#page-title:after {
content: ".";
color: #29bcb8;
}
img {
height: auto;
max-width: 100%;
}
select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
background: #f2f2f2;
border-color: #e8e8e8 #e8e8e8 #fff;
border-image: none;
border-radius: 0;
border-style: solid;
border-width: 1px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) inset;
color: #595959;
font-family: 'Open Sans', sans-serif;
font-size: 12px;
margin: 0;
padding: 5px 10px;
}
input:focus:invalid:focus, textarea:focus:invalid:focus, select:focus:invalid:focus {
border-color: #e9322d;
box-shadow: 0 0 6px #f8b9b7;
}
.element-invisible {
display: none;
}
.p-style {
font-family: 'MuseoSlab';
font-size: 13px;
color: #29bcb8;
}
.block-title-h4 .block-title {
font-size: 17.5px;
text-transform: capitalize;
}
#section-top {
padding: 3px 0;
background: #f5f5f5;
}
#section-top a {
color: #aaa;
}
#section-top a:hover {
color: #29bcb8;
}
#section-top #block-search-form .form-item-search-block-form {
margin: 0;
}
#section-top #block-search-form #edit-actions {
display: none;
}
#section-top #block-search-form #edit-search-block-form--2 {
padding: 2px 5px;
width: 200px;
}
#section-top .contac-top p {
margin: 0;
padding: 4px 0;
}
#section-header {
background: #34373e;
width: 100%;
}
#section-header .superhero-dropdown > ul > li > a, #section-header .site-logo a {
color: #fff;
line-height: 80px;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
#section-header.fixed-transition .superhero-dropdown > ul > li > a, #section-header.fixed-transition .site-logo a {
line-height: 50px;
}
.front.header-overlay .sticky-wrapper {
padding: 0 !important;
position: absolute !important;
top: 0;
width: 100%;
z-index: 999;
}
.front.header-overlay .sticky-wrapper .section-header {
background: none !important;
}
.front.header-overlay .sticky-wrapper .section-header .container {
background: url("/sites/all/themes/me/images/bg-menu-over.png") repeat-x left bottom;
}
.header-white #section-header {
background-color: #fff;
background-image: url("/sites/all/themes/me//sites/all/themes/me/images/white-bg.jpg") !important;
background-repeat: repeat-x;
border-bottom: 1px solid #ccc;
}
.header-white #section-header .superhero-dropdown > ul > li > a, .header-white #section-header #section-header .site-logo a {
color: #000;
border: none !important;
}
.header-white #section-header .superhero-dropdown > ul > li > a:hover, .header-white #section-header #section-header .site-logo a:hover, .header-white #section-header .superhero-dropdown > ul > li > a.active, .header-white #section-header #section-header .site-logo a.active {
color: #29bcb8;
}
#section-banner {
clear: both;
}
#section-users {
padding: 30px 0;
}
#section-feature {
padding: 30px 0;
border-bottom: 1px solid #efefef;
border-top: 1px solid #efefef;
}
#section-feature [class*="region-feature-"] {
border-left: 1px solid #efefef;
}
#section-feature .region-feature-first {
border-left: none;
}
#section-feature ul {
padding: 0;
margin: 0;
list-style: none;
}
#section-feature ul li {
padding: 5px 0;
}
#section-feature ul li::before {
content: "";
font-family: fontawesome;
font-size: 7px;
line-height: 100%;
padding: 0 10px;
color: #29bcb8;
}
#section-showcase {
padding: 30px 0;
background-color: #f5f5f5;
}
#section-content {
padding: 30px 0;
}
#section-breadcrumb {
background: #dadbde;
color: #4c5357;
font-family: 'MuseoSlab';
}
#section-breadcrumb .breadcrumb {
margin: 0;
padding: 15px;
background: none;
}
#section-breadcrumb .breadcrumb a {
color: #4c5357;
}
#section-breadcrumb .breadcrumb a:hover {
color: #29bcb8;
}
#section-breadcrumb .breadcrumb .divider {
display: inline-block;
font-size: 0;
line-height: normal;
padding: 0 10px;
}
#section-breadcrumb .breadcrumb .divider:before {
content: "\f105";
font-family: 'FontAwesome';
font-size: 13px;
color: #29bcb8;
}
#section-team {
padding: 30px 0;
background-color: #f5f5f5;
}
#section-postcontent {
color: #fff;
}
#section-postcontent h3 {
color: #fff;
text-transform: uppercase;
}
#section-postcontent p {
font-size: 18px;
}
#section-topls {
padding: 40px 0;
}
#section-topls .view-id-testimonial .views-field-body {
border: #efefef 1px solid;
padding: 10px;
background: #fff;
}
#section-topls .view-id-testimonial .views-field-field-job-title {
background: url(/sites/all/themes/me/images/bg-testimonial.png) no-repeat 20px 0px;
padding: 5px 0 0 60px;
margin-top: -1px;
}
#section-topls .view-id-testimonial .views-field-field-job-title .client_name {
font-weight: bold;
}
#section-callus {
background-color: #29bcb8;
padding: 40px 0;
color: #fff;
}
#section-callus h3 {
color: #fff;
font-size: 24px;
margin: 0;
font-weight: 400;
line-height: normal;
}
#section-callus a {
color: #34373e;
}
#section-bottom {
background: #34373e;
color: #fff;
padding: 30px 0;
}
#section-bottom h3.block-title {
color: #fff;
text-transform: inherit;
}
#section-bottom .gettouch li {
margin-bottom: 10px;
}
#section-bottom .gettouch li i {
color: #494c54;
font-size: 15px;
}
#section-footer {
background: #34373e;
color: #fff;
}
#section-footer .container {
border-top: 1px solid #4b4d52;
padding: 30px 0;
}
#section-footer ul {
list-style: none;
margin: 0;
padding: 0;
text-align: center;
}
#section-footer ul li {
display: inline-block;
margin: 0 3px;
}
#section-strapline .container {
border-bottom: thin solid #f5f5f5;
padding-top: 30px;
padding-bottom: 30px;
}
#section-strapline .container .span {
color: #29bcb8;
}
.portfolio-filters {
margin-bottom: 20px;
}
.superhero-gallery-item.isotope-item {
margin-bottom: 30px;
}
.field-name-superhero-portfolio-image img {
width: 100%;
margin-bottom: 20px;
}
.bx-wrapper .bx-controls-direction a {
background: none !important;
text-indent: 0 !important;
}
.bx-wrapper .bx-controls-direction a i {
font-size: 50px;
}
.view-superhero-portfolio .supcolumns3 .slide-item-desc, .view-superhero-portfolio .supcolumns4 .slide-item-desc {
display: none;
}
.view-superhero-portfolio .supcolumns4 .slide-item-title {
display: none;
}
.view-id-latest_work .bx-wrapper .bx-prev, .view-id-latest_work .bx-wrapper .bx-next {
cursor: pointer;
display: block;
overflow: hidden;
position: absolute;
font-size: 60px;
vertical-align: middle;
font-weight: normal;
padding: 50px 20px;
line-height: 22px;
width: 600px;
margin-top: -60px;
height: auto !important;
background: #dadbde !important;
}
.view-id-latest_work .bx-wrapper .bx-prev:hover, .view-id-latest_work .bx-wrapper .bx-next:hover {
background: #29bcb8 !important;
color: #fff;
}
.view-id-latest_work .bx-wrapper .bx-prev {
left: -660px;
text-align: right;
}
.view-id-latest_work .bx-wrapper .bx-next {
right: -660px;
text-align: left;
}
.view-id-latest_work .bx-wrapper {
position: relative;
margin: 0 auto 0;
padding: 0;
*zoom: 1;
}
.portfolio-filters ul#filters {
list-style: none;
padding: 0;
margin: 0;
}
.portfolio-filters ul#filters li {
border: 0px solid #bdbdbd;
cursor: pointer;
display: inline-block;
margin: 0 0 4px 0 !important;
padding: 0 !important;
font-family: 'Open Sans', sans-serif;
font-size: 12px;
}
.portfolio-filters ul#filters li a {
padding: 4px 14px !important;
line-height: 20px;
display: block;
color: #fff;
background: #ccc;
}
.portfolio-filters ul#filters li a:hover, .portfolio-filters ul#filters li a.active {
background: #29bcb8;
}
.portfolio-container {
padding: 20px 0;
}
.jm-portfolio {
color: #e5e5e5;
}
.jm-portfolio .slide-item-title a {
font-size: 20px;
font-family: 'MuseoSlab';
font-weight: normal;
text-transform: uppercase;
}
.jm-portfolio .slide-item-title a.main-color {
color: #29bcb8;
}
.jm-portfolio .slide-item-readmore a, .jm-portfolio .slide-item-zoom a {
border: 1px solid #29bcb8;
border-radius: 1px 1px 1px 1px;
color: #29bcb8;
display: inline-block;
font-size: 13px;
font-weight: normal;
line-height: 10px;
padding: 10px;
text-align: center;
}
.jm-portfolio .slide-item-readmore a:hover, .jm-portfolio .slide-item-zoom a:hover {
background: #29bcb8;
color: #fff;
}
.jm-portfolio span.slide-item-readmore a {
margin-right: 10px;
}
.jm-portfolio .doublelines {
margin-bottom: 5px;
position: relative;
}
.jm-portfolio .doublelines .slide-item-title {
font-weight: bold;
margin: 10px 0;
}
.jm-portfolio .doublelines .paddding {
padding: 20px;
}
.jm-portfolio .doublelines .slide-item-title a {
color: #fff;
}
.jm-portfolio .doublelines span.slide-item-readmore, .jm-portfolio .doublelines span.slide-item-zoom {
display: inline-block;
}
.jm-portfolio .doublelines .slide-item-desc {
font-size: 12px;
padding: 10px;
}
.jm-portfolio .doublelines .slide-item-desc-warp {
height: 100%;
left: 0;
overflow: hidden;
position: absolute;
top: 0;
width: 100%;
}
.jm-portfolio .slide-item-wrap {
position: relative;
/** CSS3 effect
===================================*/
}
.jm-portfolio .doublelines .slide-item-wrap-item img {
-webkit-transition: all 0.2s ease-in;
-moz-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
transition: all 0.2s ease-in;
}
.jm-portfolio .doublelines .slide-item-wrap-item .slide-item-desc-warp {
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
background: none repeat scroll 0 0 rgba(30, 30, 30, 0.8);
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.jm-portfolio .doublelines .slide-item-wrap-item .slide-item-title {
background: transparent;
margin: 50px 5px 20px 5px;
-webkit-transform: translate(0, -200px);
-moz-transform: translate(0, -200px);
-ms-transform: translate(0, -200px);
-o-transform: translate(0, -200px);
transform: translate(0, -200px);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.jm-portfolio .doublelines .slide-item-wrap-item .slide-item-desc {
-webkit-transform: translate(-200px, 200px);
-moz-transform: translate(-200px, 200px);
-ms-transform: translate(-200px, 200px);
-o-transform: translate(-200px, 200px);
transform: translate(-200px, 200px);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.jm-portfolio .doublelines .slide-item-wrap-item .slide-item-readmore {
-webkit-transform: translate(-200px, 0);
-moz-transform: translate(-200px, 0);
-ms-transform: translate(-200px, 0);
-o-transform: translate(-200px, 0);
transform: translate(-200px, 0);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.jm-portfolio .doublelines .slide-item-wrap-item .slide-item-zoom {
-webkit-transform: translate(200px, 0);
-moz-transform: translate(200px, 0);
-ms-transform: translate(200px, 0);
-o-transform: translate(200px, 0);
transform: translate(200px, 0);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.jm-portfolio .doublelines .slide-item-wrap-item:hover .slide-item-desc-warp {
text-align: center;
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
}
.jm-portfolio .doublelines .slide-item-wrap-item:hover .slide-item-title, .jm-portfolio .doublelines .slide-item-wrap-item:hover .slide-item-desc, .jm-portfolio .doublelines .slide-item-wrap-item:hover .slide-item-readmore, .jm-portfolio .doublelines .slide-item-wrap-item:hover .slide-item-zoom {
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
-webkit-transform: translateY(0px);
-moz-transform: translateY(0px);
-o-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px);
}
.jm-portfolio .doublelines .slide-item-wrap-item:hover .slide-item-desc {
-webkit-transition-delay: 0.1s;
-moz-transition-delay: 0.1s;
-o-transition-delay: 0.1s;
-ms-transition-delay: 0.1s;
transition-delay: 0.1s;
}
.jm-portfolio .doublelines .slide-item-wrap-item:hover .slide-item-readmore a {
-webkit-transition-delay: 0.2s;
-moz-transition-delay: 0.2s;
-o-transition-delay: 0.2s;
-ms-transition-delay: 0.2s;
transition-delay: 0.2s;
/** THEME
===================================*/
}
.jm-portfolio .portfolio .jmnewsprohover {
background: rgba(30, 30, 30, 0.8);
bottom: 0;
color: #e5e5e5;
left: 0;
position: absolute;
right: 0;
text-align: center;
top: 0;
}
.jm-portfolio .portfolio .paddding {
padding: 20px;
}
.jm-portfolio .portfolio .jmnewspro.portfolio img:hover {
-webkit-transform: scale(1.1) rotateZ(-3deg);
-moz-transform: scale(1.1) rotateZ(-3deg);
-ms-transform: scale(1.1) rotateZ(-3deg);
-o-transform: scale(1.1) rotateZ(-3deg);
transform: scale(1.1) rotateZ(-3deg);
}
.jm-portfolio .portfolio .slide-lightbox-wrap a {
color: #ffc92b;
font-size: 16px;
}
.jm-portfolio .portfolio .slide-lightbox-wrap {
margin-top: 10px;
}
.jm-portfolio .portfolio .slide-item-wrap-item {
position: relative;
overflow: hidden;
}
.jm-portfolio .portfolio .jmnewsprohover .slide-inner .padding {
padding: 0 8px !important;
}
.jm-portfolio .portfolio .slide-item-wrap-item .slide-item-readmore {
-webkit-transform: translate(-200px, 0);
-moz-transform: translate(-200px, 0);
-o-transform: translate(-200px, 0);
-ms-transform: translate(-200px, 0);
transform: translate(-200px, 0);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.jm-portfolio .portfolio .slide-item-wrap-item .slide-item-zoom {
-webkit-transform: translate(200px, 0);
-moz-transform: translate(200px, 0);
-o-transform: translate(200px, 0);
-ms-transform: translate(200px, 0);
transform: translate(200px, 0);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.jm-portfolio .portfolio .slide-item-wrap-item img {
-webkit-transition: all 0.2s ease-in;
-moz-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
-ms-transition: all 0.2s ease-in;
transition: all 0.2s ease-in;
}
.jm-portfolio .portfolio .slide-item-wrap-item .slide-item-desc-warp {
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
background: none repeat scroll 0 0 rgba(30, 30, 30, 0.8);
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.jm-portfolio .portfolio .slide-item-wrap-item .slide-item-title {
background: transparent;
margin: 20% 5px 0px 5px;
-webkit-transform: translate(0, -200px);
-moz-transform: translate(0, -200px);
-o-transform: translate(0, -200px);
-ms-transform: translate(0, -200px);
transform: translate(0, -200px);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.jm-portfolio .portfolio .slide-item-wrap-item .slide-item-desc {
-webkit-transform: translate(0px, -200px);
-moz-transform: translate(0px, -200px);
-o-transform: translate(0px, -200px);
-ms-transform: translate(0px, -200px);
transform: translate(0px, -200px);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.jm-portfolio .portfolio .slide-item-wrap-item .slide-item-readmore {
display: inline-block;
-webkit-transform: translate(-250px, 0);
-moz-transform: translate(-250px, 0);
-o-transform: translate(-250px, 0);
-ms-transform: translate(-250px, 0);
transform: translate(-250px, 0);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.jm-portfolio .portfolio .slide-item-wrap-item .slide-item-zoom {
display: inline-block;
-webkit-transform: translate(250px, 0);
-moz-transform: translate(250px, 0);
-o-transform: translate(250px, 0);
-ms-transform: translate(250px, 0);
transform: translate(250px, 0);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.jm-portfolio .portfolio .slide-item-wrap-item:hover .slide-item-desc-warp {
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
}
.jm-portfolio .portfolio .slide-item-wrap-item:hover .slide-item-title, .jm-portfolio .portfolio .slide-item-wrap-item:hover .slide-item-desc, .jm-portfolio .portfolio .slide-item-wrap-item:hover .slide-item-readmore, .jm-portfolio .portfolio .slide-item-wrap-item:hover .slide-item-zoom {
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
-webkit-transform: translateY(0px);
-moz-transform: translateY(0px);
-o-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px);
}
.jm-portfolio .portfolio .slide-item-wrap-item:hover .slide-item-readmore a {
margin-right: 10px;
}
.jm-portfolio .portfolio .slide-item-wrap .view .slide-item-desc-warp {
width: 98%;
height: 96.5%;
margin: 3px;
}
.jm-portfolio #jmnewspro-173.portfolio .slide-item-wrap-item .slide-item-title {
margin: 32px 0 20px 0;
}
.jm-portfolio #jmnewspro-173.portfolio .jmnewsprohover .slide-inner {
padding: 12px 5px;
}
.jm-portfolio .portfolio .slider {
position: relative;
clear: both;
margin-top: 15px;
}
.jm-portfolio .portfolio .slide-item {
transform: scale(1);
-ms-transform: scale(1);
-webkit-transform: scale(1);
-moz-transition: 0.8s;
-webkit-transition: 0.8s;
}
.jm-portfolio .portfolio .slide-item.jmhidden {
transform: scale(0);
-ms-transform: scale(0);
-webkit-transform: scale(0);
}
.supcolumns4 .paddding {
padding: 60px 20px !important;
}
.contact-social ul {
list-style: none;
padding: 0;
margin: 0;
}
.contact-social ul li {
float: left;
margin: 0 12px;
}
.contact-social ul li i {
border: 1px solid;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
display: block;
font-size: 24px;
height: 40px;
line-height: 40px;
text-align: center;
width: 40px;
}
.contact-social ul li i.fa.fa-facebook {
color: #3b5998;
}
.contact-social ul li i.fa.fa-twitter {
color: #04b4eb;
}
.contact-social ul li i.fa.fa-flickr {
color: #e842a4;
}
.contact-social ul li i.fa.fa-google-plus {
color: #da5834;
}
.contact-social ul li i:hover.fa.fa-facebook {
color: #fff;
background: #3b5998;
}
.contact-social ul li i:hover.fa.fa-twitter {
color: #fff;
background: #04b4eb;
}
.contact-social ul li i:hover.fa.fa-flickr {
color: #fff;
background: #e842a4;
}
.contact-social ul li i:hover.fa.fa-google-plus {
color: #fff;
background: #da5834;
}
.rtl {
direction: rtl;
}
.rtlbody > * {
direction: rtl;
}
.rtl .col-lg-1, .rtl .col-lg-2, .rtl .col-lg-3, .rtl .col-lg-4, .rtl .col-lg-5, .rtl .col-lg-6, .rtl .col-lg-7, .rtl .col-lg-8, .rtl .col-lg-9, .rtl .col-lg-10, .rtl .col-lg-11, .rtl .col-lg-12 {
float: right;
}
.rtl .unstyled i {
margin: 0 0 0 10px;
}
.rtl .region-menu .superhero-dropdown > ul {
float: left;
}
.rtl .sp-tweet .sp-avatar {
margin: 0 0 0 5px;
}
.rtl #section-topls .view-id-testimonial .views-field-field-job-title {
background: url(/sites/all/themes/me/images/bg-testimonial-rtl.png) no-repeat 165px 0px;
padding: 5px 60px 0 0;
}
.rtl .fa-angle-left:before {
content: "\f105";
}
.rtl .fa-angle-right:before {
content: "\f104";
}
.rtl .view-latest-work, .rtl .view-clients, .rtl .view-testimonial, .rtl .view-team {
direction: ltr;
}
.rtl .view-latest-work .fa-angle-left:before, .rtl .view-clients .fa-angle-left:before, .rtl .view-testimonial .fa-angle-left:before, .rtl .view-team .fa-angle-left:before {
content: "\f104";
}
.rtl .view-latest-work .fa-angle-right:before, .rtl .view-clients .fa-angle-right:before, .rtl .view-testimonial .fa-angle-right:before, .rtl .view-team .fa-angle-right:before {
content: "\f105";
}
.rtl .view-testimonial {
text-align: right;
}
.shPriceTable:after {
clear: both;
content: "";
display: table;
}
.shPriceTable {
padding: 60px 0 48px;
text-align: center;
}
.shCentered {
clear: both;
text-align: center;
}
.shPriceTable dl {
background: #fff;
display: block;
}
.shPriceTable dl dd {
margin: 0;
display: block;
line-height: 1.6;
padding: 10px;
}
.shPriceTable dl dd.odd {
background: #f8f8f8;
}
.shPriceTable.col4 dl {
float: left;
width: 25%;
padding-bottom: 20px;
box-shadow: 1px 1px 5px 1px #ddd;
-webkit-box-shadow: 1px 1px 5px 1px #ddd;
-moz-box-shadow: 1px 1px 5px 1px #ddd;
}
.shPriceTable dl.shPremium {
position: relative;
z-index: 1;
margin-top: -20px;
}
.shPriceTable dl.shPremium dt small {
display: block;
clear: both;
font-size: 12px;
line-height: 1;
text-transform: uppercase;
color: #fff;
padding: 5px;
}
.shPriceTable dd small {
font-size: 12px;
display: block;
clear: both;
}
.shPriceTable dl.shPremium dt {
color: #fff;
border-bottom: 1px solid #ddd;
}
.shPriceTable dt {
border-bottom: 1px solid #ddd;
display: block;
font-family: 'MuseoSlab';
font-size: 24px;
font-weight: 400;
line-height: 1.5;
padding: 10px;
text-transform: uppercase;
}
.shPriceTable dl.shPremium dt {
border-bottom: 1px solid #ddd;
}
.shPriceTable dd.shPrice {
color: #333;
font-size: 68px;
line-height: 1.2;
font-weight: 600;
}
.shPriceTable dd.shPrice small {
color: #999;
font-size: 16px;
font-weight: 300;
}
.shPriceTable dl.shPremium dt {
background: #29bcb8;
}
.page-contact .form-checkbox {
margin-left: 0 !important;
}
@media (max-width: 979px) {
.container {
width: auto;
}
#section-header .superhero-dropdown > ul > li > a, #section-header .site-logo a {
line-height: 45px !important;
}
#section-feature img, #section-topls img, #section-latest img {
height: auto !important;
}
}
|
leJOS_NXJ_0.9.1beta-3/docs/nxt/javax/microedition/sensor/package-frame.html
|
gusDuarte/enchanting-usb3
|
<!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_22) on Tue May 29 00:11:55 CEST 2012 -->
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<TITLE>
javax.microedition.sensor (leJOS NXJ API documentation)
</TITLE>
<META NAME="keywords" CONTENT="javax.microedition.sensor package">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
</HEAD>
<BODY BGCOLOR="white">
<FONT size="+1" CLASS="FrameTitleFont">
<A HREF="../../../javax/microedition/sensor/package-summary.html" target="classFrame">javax.microedition.sensor</A></FONT>
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
<TR>
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
Interfaces</FONT>
<FONT CLASS="FrameItemFont">
<BR>
<A HREF="Channel.html" title="interface in javax.microedition.sensor" target="classFrame"><I>Channel</I></A>
<BR>
<A HREF="ChannelInfo.html" title="interface in javax.microedition.sensor" target="classFrame"><I>ChannelInfo</I></A>
<BR>
<A HREF="Condition.html" title="interface in javax.microedition.sensor" target="classFrame"><I>Condition</I></A>
<BR>
<A HREF="ConditionListener.html" title="interface in javax.microedition.sensor" target="classFrame"><I>ConditionListener</I></A>
<BR>
<A HREF="Data.html" title="interface in javax.microedition.sensor" target="classFrame"><I>Data</I></A>
<BR>
<A HREF="DataListener.html" title="interface in javax.microedition.sensor" target="classFrame"><I>DataListener</I></A>
<BR>
<A HREF="SensorConnection.html" title="interface in javax.microedition.sensor" target="classFrame"><I>SensorConnection</I></A>
<BR>
<A HREF="SensorInfo.html" title="interface in javax.microedition.sensor" target="classFrame"><I>SensorInfo</I></A>
<BR>
<A HREF="SensorListener.html" title="interface in javax.microedition.sensor" target="classFrame"><I>SensorListener</I></A></FONT></TD>
</TR>
</TABLE>
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
<TR>
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
Classes</FONT>
<FONT CLASS="FrameItemFont">
<BR>
<A HREF="AccelerationChannelInfo.html" title="class in javax.microedition.sensor" target="classFrame">AccelerationChannelInfo</A>
<BR>
<A HREF="BatteryChannelInfo.html" title="class in javax.microedition.sensor" target="classFrame">BatteryChannelInfo</A>
<BR>
<A HREF="BatterySensorInfo.html" title="class in javax.microedition.sensor" target="classFrame">BatterySensorInfo</A>
<BR>
<A HREF="ColorChannelInfo.html" title="class in javax.microedition.sensor" target="classFrame">ColorChannelInfo</A>
<BR>
<A HREF="ColorIndexChannelInfo.html" title="class in javax.microedition.sensor" target="classFrame">ColorIndexChannelInfo</A>
<BR>
<A HREF="ColorRGBChannelInfo.html" title="class in javax.microedition.sensor" target="classFrame">ColorRGBChannelInfo</A>
<BR>
<A HREF="GyroChannelInfo.html" title="class in javax.microedition.sensor" target="classFrame">GyroChannelInfo</A>
<BR>
<A HREF="HeadingChannelInfo.html" title="class in javax.microedition.sensor" target="classFrame">HeadingChannelInfo</A>
<BR>
<A HREF="HiTechnicColorSensorInfo.html" title="class in javax.microedition.sensor" target="classFrame">HiTechnicColorSensorInfo</A>
<BR>
<A HREF="HiTechnicCompassSensorInfo.html" title="class in javax.microedition.sensor" target="classFrame">HiTechnicCompassSensorInfo</A>
<BR>
<A HREF="HiTechnicGyroSensorInfo.html" title="class in javax.microedition.sensor" target="classFrame">HiTechnicGyroSensorInfo</A>
<BR>
<A HREF="LightChannelInfo.html" title="class in javax.microedition.sensor" target="classFrame">LightChannelInfo</A>
<BR>
<A HREF="LightSensorInfo.html" title="class in javax.microedition.sensor" target="classFrame">LightSensorInfo</A>
<BR>
<A HREF="LimitCondition.html" title="class in javax.microedition.sensor" target="classFrame">LimitCondition</A>
<BR>
<A HREF="MeasurementRange.html" title="class in javax.microedition.sensor" target="classFrame">MeasurementRange</A>
<BR>
<A HREF="MindsensorsAccelerationSensorInfo.html" title="class in javax.microedition.sensor" target="classFrame">MindsensorsAccelerationSensorInfo</A>
<BR>
<A HREF="NXTActiveCondition.html" title="class in javax.microedition.sensor" target="classFrame">NXTActiveCondition</A>
<BR>
<A HREF="NXTActiveData.html" title="class in javax.microedition.sensor" target="classFrame">NXTActiveData</A>
<BR>
<A HREF="NXTADSensorInfo.html" title="class in javax.microedition.sensor" target="classFrame">NXTADSensorInfo</A>
<BR>
<A HREF="NXTChannel.html" title="class in javax.microedition.sensor" target="classFrame">NXTChannel</A>
<BR>
<A HREF="NXTChannelInfo.html" title="class in javax.microedition.sensor" target="classFrame">NXTChannelInfo</A>
<BR>
<A HREF="NXTData.html" title="class in javax.microedition.sensor" target="classFrame">NXTData</A>
<BR>
<A HREF="NXTSensorConnection.html" title="class in javax.microedition.sensor" target="classFrame">NXTSensorConnection</A>
<BR>
<A HREF="NXTSensorInfo.html" title="class in javax.microedition.sensor" target="classFrame">NXTSensorInfo</A>
<BR>
<A HREF="ObjectCondition.html" title="class in javax.microedition.sensor" target="classFrame">ObjectCondition</A>
<BR>
<A HREF="OperatorTest.html" title="class in javax.microedition.sensor" target="classFrame">OperatorTest</A>
<BR>
<A HREF="RangeCondition.html" title="class in javax.microedition.sensor" target="classFrame">RangeCondition</A>
<BR>
<A HREF="RCXLightSensorInfo.html" title="class in javax.microedition.sensor" target="classFrame">RCXLightSensorInfo</A>
<BR>
<A HREF="RCXTemperatureSensorInfo.html" title="class in javax.microedition.sensor" target="classFrame">RCXTemperatureSensorInfo</A>
<BR>
<A HREF="SensorManager.html" title="class in javax.microedition.sensor" target="classFrame">SensorManager</A>
<BR>
<A HREF="SensorURL.html" title="class in javax.microedition.sensor" target="classFrame">SensorURL</A>
<BR>
<A HREF="SoundChannelInfo.html" title="class in javax.microedition.sensor" target="classFrame">SoundChannelInfo</A>
<BR>
<A HREF="SoundSensorInfo.html" title="class in javax.microedition.sensor" target="classFrame">SoundSensorInfo</A>
<BR>
<A HREF="TemperatureChannelInfo.html" title="class in javax.microedition.sensor" target="classFrame">TemperatureChannelInfo</A>
<BR>
<A HREF="TiltChannelInfo.html" title="class in javax.microedition.sensor" target="classFrame">TiltChannelInfo</A>
<BR>
<A HREF="TouchChannelInfo.html" title="class in javax.microedition.sensor" target="classFrame">TouchChannelInfo</A>
<BR>
<A HREF="TouchSensorInfo.html" title="class in javax.microedition.sensor" target="classFrame">TouchSensorInfo</A>
<BR>
<A HREF="UltrasonicChannelInfo.html" title="class in javax.microedition.sensor" target="classFrame">UltrasonicChannelInfo</A>
<BR>
<A HREF="UltrasonicSensorInfo.html" title="class in javax.microedition.sensor" target="classFrame">UltrasonicSensorInfo</A>
<BR>
<A HREF="Unit.html" title="class in javax.microedition.sensor" target="classFrame">Unit</A></FONT></TD>
</TR>
</TABLE>
</BODY>
</HTML>
|
init/InitAckWithMultiAddrType.html
|
jijianwen/SCTP-Conformance-Test-Suite-Project
|
<?xml version="1.0" ?>
<!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">
<head>
<title>InitAckWithMultiAddrType.seq - INIT-ACK is received chunk with Both IPv4 and IPv6 addresses</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rev="made" href="mailto:root@localhost" />
</head>
<body style="background-color: white">
<p><a name="__index__"></a></p>
<!-- INDEX BEGIN -->
<!--
<ul>
<li><a href="#name">NAME</a></li>
<li><a href="#purpose">PURPOSE</a></li>
<li><a href="#synopsis">SYNOPSIS</a></li>
<li><a href="#pretest_condition">PRE-TEST CONDITION</a></li>
<li><a href="#test_procedure">TEST PROCEDURE</a></li>
<li><a href="#note">NOTE</a></li>
<li><a href="#reference">REFERENCE</a></li>
</ul>
-->
<!-- INDEX END -->
<p>
</p>
<h1><a name="name">NAME</a></h1>
<pre>
InitAckWithMultiAddrType.seq - INIT-ACK is received chunk with Both IPv4 and IPv6 addresses</pre>
<p>
</p>
<hr />
<h1><a name="purpose">PURPOSE</a></h1>
<pre>
To check that if there are more transport addresses are received in INIT-ACK
message then one of these IP address plus the IP address from where INIT-ACK
comes combined with the SCTP source port number is used as the destination
transport address.</pre>
<p>
</p>
<hr />
<h1><a name="synopsis">SYNOPSIS</a></h1>
<PRE>
<A HREF="./InitAckWithMultiAddrType.seq">./InitAckWithMultiAddrType.seq</A> [-tooloption ...] -pkt <A HREF="./InitAckWithMultiAddrType.def">./InitAckWithMultiAddrType.def</A>
-tooloption : v6eval tool option
See Also: <A HREF="../common/STD_PKT_COMMON.def">../common/STD_PKT_COMMON.def</A>
<A HREF="../common/SCTP_COMMON.def">../common/SCTP_COMMON.def</A>
</PRE><p>
</p>
<hr />
<h1><a name="pretest_condition">PRE-TEST CONDITION</a></h1>
<pre>
Association is not established between endpoint A and B. Arrange the
data in endpoint A such that INIT-ACK message with both IPv4 and IPv6
addresses is sent to endpoint B.</pre>
<p>
</p>
<hr />
<h1><a name="test_procedure">TEST PROCEDURE</a></h1>
<pre>
Endpoint A Endpoint B ULP
(CLOSED) (CLOSED)</pre>
<pre>
<----- Associate
<----------------- INIT</pre>
<pre>
INIT-ACK ----------------->
(Transport Address = IPv4, IPv6)
<----------------- COOKIE-ECHO</pre>
<pre>
COOKIE-ACK -----------------></pre>
<pre>
TEST DESCRIPTION:</pre>
<pre>
1. Attempt to make an association from endpoint B to endpoint A. Send
INIT-ACK message containing both IPv4 addresse and IPv6 addresse.
2. Check A: INIT-ACK message is accepted.
3. Check B: COOKIE-ECHO is sent at the transport addresses from where
INIT-ACK message was received.
4. Check C: Was the message sequence as above.</pre>
<p>
</p>
<hr />
<h1><a name="note">NOTE</a></h1>
<pre>
None</pre>
<p>
</p>
<hr />
<h1><a name="reference">REFERENCE</a></h1>
<pre>
RFC 4960</pre>
<pre>
5.1.2. Handle Address Parameters</pre>
<PRE>
<B>C) If there are only IPv4/IPv6 addresses present in the received INIT
or INIT ACK chunk, the receiver MUST derive and record all the
transport addresses from the received chunk AND the source IP
address that sent the INIT or INIT ACK. The transport addresses
are derived by the combination of SCTP source port (from the
common header) and the IP Address parameter(s) carried in the INIT
or INIT ACK chunk and the source IP address of the IP datagram.
The receiver should use only these transport addresses as
destination transport addresses when sending subsequent packets to
its peer.</B>
</PRE><pre>
D) An INIT or INIT ACK chunk MUST be treated as belonging to an
already established association (or one in the process of being
established) if the use of any of the valid address parameters
contained within the chunk would identify an existing TCB.</pre>
</body>
</html>
|
third_party/ext-js/css/theme-gray/tabs.css
|
viglesiasce/testlink
|
/*!
* Ext JS Library 3.2.1
* Copyright(c) 2006-2010 Ext JS, Inc.
* licensing@extjs.com
* http://www.extjs.com/license
*/
.x-tab-panel-header, .x-tab-panel-footer {
background-color: #eaeaea;
border-color:#d0d0d0;
overflow:hidden;
zoom:1;
}
.x-tab-panel-header, .x-tab-panel-footer {
border-color:#d0d0d0;
}
ul.x-tab-strip-top{
background-color:#dbdbdb;
background-image: url(../images/gray/tabs/tab-strip-bg.gif);
border-bottom-color:#d0d0d0;
}
ul.x-tab-strip-bottom{
background-color:#dbdbdb;
background-image: url(../images/gray/tabs/tab-strip-btm-bg.gif);
border-top-color:#d0d0d0;
}
.x-tab-panel-header-plain .x-tab-strip-spacer,
.x-tab-panel-footer-plain .x-tab-strip-spacer {
border-color:#d0d0d0;
background-color: #eaeaea;
}
.x-tab-strip span.x-tab-strip-text {
font:normal 11px tahoma,arial,helvetica;
color:#333;
}
.x-tab-strip-over span.x-tab-strip-text {
color:#111;
}
.x-tab-strip-active span.x-tab-strip-text {
color:#333;
font-weight:bold;
}
.x-tab-strip-disabled .x-tabs-text {
color:#aaaaaa;
}
.x-tab-strip-top .x-tab-right, .x-tab-strip-top .x-tab-left, .x-tab-strip-top .x-tab-strip-inner{
background-image: url(../images/gray/tabs/tabs-sprite.gif);
}
.x-tab-strip-bottom .x-tab-right {
background-image: url(../images/gray/tabs/tab-btm-inactive-right-bg.gif);
}
.x-tab-strip-bottom .x-tab-left {
background-image: url(../images/gray/tabs/tab-btm-inactive-left-bg.gif);
}
.x-tab-strip-bottom .x-tab-strip-over .x-tab-left {
background-image: url(../images/gray/tabs/tab-btm-over-left-bg.gif);
}
.x-tab-strip-bottom .x-tab-strip-over .x-tab-right {
background-image: url(../images/gray/tabs/tab-btm-over-right-bg.gif);
}
.x-tab-strip-bottom .x-tab-strip-active .x-tab-right {
background-image: url(../images/gray/tabs/tab-btm-right-bg.gif);
}
.x-tab-strip-bottom .x-tab-strip-active .x-tab-left {
background-image: url(../images/gray/tabs/tab-btm-left-bg.gif);
}
.x-tab-strip .x-tab-strip-closable a.x-tab-strip-close {
background-image:url(../images/gray/tabs/tab-close.gif);
}
.x-tab-strip .x-tab-strip-closable a.x-tab-strip-close:hover{
background-image:url(../images/gray/tabs/tab-close.gif);
}
.x-tab-panel-body {
border-color:#d0d0d0;
background-color:#fff;
}
.x-tab-panel-body-top {
border-top: 0 none;
}
.x-tab-panel-body-bottom {
border-bottom: 0 none;
}
.x-tab-scroller-left {
background-image:url(../images/gray/tabs/scroll-left.gif);
border-bottom-color:#d0d0d0;
}
.x-tab-scroller-left-over {
background-position: 0 0;
}
.x-tab-scroller-left-disabled {
background-position: -18px 0;
opacity:.5;
-moz-opacity:.5;
filter:alpha(opacity=50);
cursor:default;
}
.x-tab-scroller-right {
background-image:url(../images/gray/tabs/scroll-right.gif);
border-bottom-color:#d0d0d0;
}
.x-tab-panel-bbar .x-toolbar, .x-tab-panel-tbar .x-toolbar {
border-color:#d0d0d0;
}
|
test/test.html
|
3050860/jquery-jsoncookie
|
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>jQuery JSON Cookie Test Suite</title>
<link rel="stylesheet" href="../external/qunit.css">
<script src="../external/json2.js"></script>
<script src="jquery.js"></script>
<script src="../jquery.jsoncookie.js"></script>
<script src="../external/qunit.js"></script>
<script src="unit.js"></script>
</head>
<body>
<h1 id="qunit-header">jQuery JSON Cookie Test Suite</h1>
<h2 id="qunit-banner"></h2>
<div id="qunit-testrunner-toolbar"></div>
<h2 id="qunit-userAgent"></h2>
<ol id="qunit-tests"></ol>
</body>
</html>
|
administrator/components/com_eventlist/help/en-GB/el.editcss.html
|
jotweh/svaegirtriathlon
|
<!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">
<head>
<meta name="generator" content="HTML Tidy, see www.w3.org" />
<title>CSS-Editor</title>
<link href="../css/help.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>CSS-Editor</h1>
<h3>Description</h3>
<p>
<img src="../../assets/images/icon-48-cssedit.png" alt="description" width="48" height="48" align="left" /> Edit in this screen the CSS file of EventList.</p>
<br /><br/>
<div class="attentionheader">Attention</div>
<div class="attention">Don't change anything if you don't know exactly what you do. Read the comments carefully and backup this file before you alter it.</div>
<br />
<h3>Navigation</h3>
<p>
To access this screen use: <strong>Components</strong> -> <strong>EventList</strong> -> <strong>Edit CSS</strong></p>
<h3>User Access Level</h3>
<p><img src="../images/super_administrator.gif" alt="superadministrator" /> Super Administrator</p>
<h3>Toolbar Icons</h3>
<p><img src="toolbars/asch.png" alt="toolbar" width="260" height="51" /></p>
<p><strong>Apply:</strong> Saves the css file and returns to this screen. </p>
<p><strong>Save:</strong> Saves the css file and returns to the EventList screen.</p>
<p><strong>Cancel:</strong> Go Back to the EventList screen.</p>
<p><strong>Help:</strong> Shows this Help screen. </p>
<br />
<div align="center" style="margin-top: 30px; margin-bottom: 30px;">
<a href="#" onclick="javascript:window.close();"><span class="small">Close Window</span></a>
</div>
</body>
</html>
|
sites/all/libraries/openlayers/apidoc/gmlformat.js.html
|
goergeBerg/drupal
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>OpenLayers 3 API Documentation - Source: src/ol/format/gmlformat.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<script src="scripts/jquery.min.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/bootstrap.min.css">
<link type="text/css" rel="stylesheet" href="styles/jaguar.css">
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="/"><img src="../resources/logo.png" width="40"> OpenLayers 3</a>
<a class="brand" href="index.html">API Documentation</a>
<label id="stability">
<input type="checkbox" id="stability-toggle" checked> Stable Only
</label>
</div>
</div>
</div>
<div id="wrap" class="clearfix">
<div class="navigation">
<div class="search">
<input id="search" type="text" class="form-control input-sm" placeholder="Search Documentation">
</div>
<ul class="list">
<li class="item" data-name="ol">
<span class="title">
<a href="ol.html">ol</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.CanvasFunctionType" class="unstable">
<a href="ol.html#CanvasFunctionType">CanvasFunctionType</a>
</li>
<li data-name="ol.Color" class="unstable">
<a href="ol.html#Color">Color</a>
</li>
<li data-name="ol.Coordinate" class="">
<a href="ol.html#Coordinate">Coordinate</a>
</li>
<li data-name="ol.CoordinateFormatType" class="">
<a href="ol.html#CoordinateFormatType">CoordinateFormatType</a>
</li>
<li data-name="ol.Extent" class="">
<a href="ol.html#Extent">Extent</a>
</li>
<li data-name="ol.OverlayPositioning" class="">
<a href="ol.html#OverlayPositioning">OverlayPositioning</a>
</li>
<li data-name="ol.Pixel" class="">
<a href="ol.html#Pixel">Pixel</a>
</li>
<li data-name="ol.PreRenderFunction" class="unstable">
<a href="ol.html#PreRenderFunction">PreRenderFunction</a>
</li>
<li data-name="ol.RendererType" class="">
<a href="ol.html#RendererType">RendererType</a>
</li>
<li data-name="ol.Size" class="">
<a href="ol.html#Size">Size</a>
</li>
<li data-name="ol.TileCoord" class="unstable">
<a href="ol.html#TileCoord">TileCoord</a>
</li>
<li data-name="ol.TileLoadFunctionType" class="unstable">
<a href="ol.html#TileLoadFunctionType">TileLoadFunctionType</a>
</li>
<li data-name="ol.TileUrlFunctionType" class="unstable">
<a href="ol.html#TileUrlFunctionType">TileUrlFunctionType</a>
</li>
<li data-name="ol.TransformFunction" class="">
<a href="ol.html#TransformFunction">TransformFunction</a>
</li>
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.inherits" class="unstable">
<a href="ol.html#inherits">inherits</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.Attribution">
<span class="title">
<a href="ol.Attribution.html">ol.Attribution</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Attribution#getHTML" class="">
<a href="ol.Attribution.html#getHTML">getHTML</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.Collection">
<span class="title">
<a href="ol.Collection.html">ol.Collection</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Collection#bindTo" class="unstable">
<a href="ol.Collection.html#bindTo">bindTo</a>
</li>
<li data-name="ol.Collection#clear" class="">
<a href="ol.Collection.html#clear">clear</a>
</li>
<li data-name="ol.Collection#dispatchChangeEvent" class="unstable">
<a href="ol.Collection.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.Collection#extend" class="">
<a href="ol.Collection.html#extend">extend</a>
</li>
<li data-name="ol.Collection#forEach" class="">
<a href="ol.Collection.html#forEach">forEach</a>
</li>
<li data-name="ol.Collection#get" class="unstable">
<a href="ol.Collection.html#get">get</a>
</li>
<li data-name="ol.Collection#getArray" class="">
<a href="ol.Collection.html#getArray">getArray</a>
</li>
<li data-name="ol.Collection#getKeys" class="unstable">
<a href="ol.Collection.html#getKeys">getKeys</a>
</li>
<li data-name="ol.Collection#getLength" class="">
<a href="ol.Collection.html#getLength">getLength</a>
</li>
<li data-name="ol.Collection#getProperties" class="unstable">
<a href="ol.Collection.html#getProperties">getProperties</a>
</li>
<li data-name="ol.Collection#getRevision" class="unstable">
<a href="ol.Collection.html#getRevision">getRevision</a>
</li>
<li data-name="ol.Collection#insertAt" class="">
<a href="ol.Collection.html#insertAt">insertAt</a>
</li>
<li data-name="ol.Collection#item" class="">
<a href="ol.Collection.html#item">item</a>
</li>
<li data-name="ol.Collection#on" class="">
<a href="ol.Collection.html#on">on</a>
</li>
<li data-name="ol.Collection#once" class="">
<a href="ol.Collection.html#once">once</a>
</li>
<li data-name="ol.Collection#pop" class="">
<a href="ol.Collection.html#pop">pop</a>
</li>
<li data-name="ol.Collection#push" class="">
<a href="ol.Collection.html#push">push</a>
</li>
<li data-name="ol.Collection#remove" class="">
<a href="ol.Collection.html#remove">remove</a>
</li>
<li data-name="ol.Collection#removeAt" class="">
<a href="ol.Collection.html#removeAt">removeAt</a>
</li>
<li data-name="ol.Collection#set" class="unstable">
<a href="ol.Collection.html#set">set</a>
</li>
<li data-name="ol.Collection#setAt" class="">
<a href="ol.Collection.html#setAt">setAt</a>
</li>
<li data-name="ol.Collection#setProperties" class="unstable">
<a href="ol.Collection.html#setProperties">setProperties</a>
</li>
<li data-name="ol.Collection#un" class="">
<a href="ol.Collection.html#un">un</a>
</li>
<li data-name="ol.Collection#unbind" class="unstable">
<a href="ol.Collection.html#unbind">unbind</a>
</li>
<li data-name="ol.Collection#unbindAll" class="unstable">
<a href="ol.Collection.html#unbindAll">unbindAll</a>
</li>
<li data-name="ol.Collection#unByKey" class="">
<a href="ol.Collection.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.CollectionEvent">
<span class="title">
<a href="ol.CollectionEvent.html">ol.CollectionEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.CollectionEvent#element"><a href="ol.CollectionEvent.html#element">element</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.DeviceOrientation">
<span class="title">
<a href="ol.DeviceOrientation.html">ol.DeviceOrientation</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.DeviceOrientation#bindTo" class="unstable">
<a href="ol.DeviceOrientation.html#bindTo">bindTo</a>
</li>
<li data-name="ol.DeviceOrientation#dispatchChangeEvent" class="unstable">
<a href="ol.DeviceOrientation.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.DeviceOrientation#get" class="unstable">
<a href="ol.DeviceOrientation.html#get">get</a>
</li>
<li data-name="ol.DeviceOrientation#getAlpha" class="unstable">
<a href="ol.DeviceOrientation.html#getAlpha">getAlpha</a>
</li>
<li data-name="ol.DeviceOrientation#getBeta" class="unstable">
<a href="ol.DeviceOrientation.html#getBeta">getBeta</a>
</li>
<li data-name="ol.DeviceOrientation#getGamma" class="unstable">
<a href="ol.DeviceOrientation.html#getGamma">getGamma</a>
</li>
<li data-name="ol.DeviceOrientation#getHeading" class="unstable">
<a href="ol.DeviceOrientation.html#getHeading">getHeading</a>
</li>
<li data-name="ol.DeviceOrientation#getKeys" class="unstable">
<a href="ol.DeviceOrientation.html#getKeys">getKeys</a>
</li>
<li data-name="ol.DeviceOrientation#getProperties" class="unstable">
<a href="ol.DeviceOrientation.html#getProperties">getProperties</a>
</li>
<li data-name="ol.DeviceOrientation#getRevision" class="unstable">
<a href="ol.DeviceOrientation.html#getRevision">getRevision</a>
</li>
<li data-name="ol.DeviceOrientation#getTracking" class="unstable">
<a href="ol.DeviceOrientation.html#getTracking">getTracking</a>
</li>
<li data-name="ol.DeviceOrientation#on" class="">
<a href="ol.DeviceOrientation.html#on">on</a>
</li>
<li data-name="ol.DeviceOrientation#once" class="">
<a href="ol.DeviceOrientation.html#once">once</a>
</li>
<li data-name="ol.DeviceOrientation#set" class="unstable">
<a href="ol.DeviceOrientation.html#set">set</a>
</li>
<li data-name="ol.DeviceOrientation#setProperties" class="unstable">
<a href="ol.DeviceOrientation.html#setProperties">setProperties</a>
</li>
<li data-name="ol.DeviceOrientation#setTracking" class="unstable">
<a href="ol.DeviceOrientation.html#setTracking">setTracking</a>
</li>
<li data-name="ol.DeviceOrientation#un" class="">
<a href="ol.DeviceOrientation.html#un">un</a>
</li>
<li data-name="ol.DeviceOrientation#unbind" class="unstable">
<a href="ol.DeviceOrientation.html#unbind">unbind</a>
</li>
<li data-name="ol.DeviceOrientation#unbindAll" class="unstable">
<a href="ol.DeviceOrientation.html#unbindAll">unbindAll</a>
</li>
<li data-name="ol.DeviceOrientation#unByKey" class="">
<a href="ol.DeviceOrientation.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.DragBoxEvent">
<span class="title">
<a href="ol.DragBoxEvent.html">ol.DragBoxEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.DragBoxEvent#coordinate"><a href="ol.DragBoxEvent.html#coordinate">coordinate</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.DrawEvent">
<span class="title">
<a href="ol.DrawEvent.html">ol.DrawEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.DrawEvent#feature"><a href="ol.DrawEvent.html#feature">feature</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.Feature">
<span class="title">
<a href="ol.Feature.html">ol.Feature</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Feature#bindTo" class="unstable">
<a href="ol.Feature.html#bindTo">bindTo</a>
</li>
<li data-name="ol.Feature#clone" class="">
<a href="ol.Feature.html#clone">clone</a>
</li>
<li data-name="ol.Feature#dispatchChangeEvent" class="unstable">
<a href="ol.Feature.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.Feature#get" class="unstable">
<a href="ol.Feature.html#get">get</a>
</li>
<li data-name="ol.Feature#getGeometry" class="">
<a href="ol.Feature.html#getGeometry">getGeometry</a>
</li>
<li data-name="ol.Feature#getGeometryName" class="">
<a href="ol.Feature.html#getGeometryName">getGeometryName</a>
</li>
<li data-name="ol.Feature#getId" class="">
<a href="ol.Feature.html#getId">getId</a>
</li>
<li data-name="ol.Feature#getKeys" class="unstable">
<a href="ol.Feature.html#getKeys">getKeys</a>
</li>
<li data-name="ol.Feature#getProperties" class="unstable">
<a href="ol.Feature.html#getProperties">getProperties</a>
</li>
<li data-name="ol.Feature#getRevision" class="unstable">
<a href="ol.Feature.html#getRevision">getRevision</a>
</li>
<li data-name="ol.Feature#getStyle" class="">
<a href="ol.Feature.html#getStyle">getStyle</a>
</li>
<li data-name="ol.Feature#getStyleFunction" class="">
<a href="ol.Feature.html#getStyleFunction">getStyleFunction</a>
</li>
<li data-name="ol.Feature#on" class="">
<a href="ol.Feature.html#on">on</a>
</li>
<li data-name="ol.Feature#once" class="">
<a href="ol.Feature.html#once">once</a>
</li>
<li data-name="ol.Feature#set" class="unstable">
<a href="ol.Feature.html#set">set</a>
</li>
<li data-name="ol.Feature#setGeometry" class="">
<a href="ol.Feature.html#setGeometry">setGeometry</a>
</li>
<li data-name="ol.Feature#setGeometryName" class="">
<a href="ol.Feature.html#setGeometryName">setGeometryName</a>
</li>
<li data-name="ol.Feature#setId" class="">
<a href="ol.Feature.html#setId">setId</a>
</li>
<li data-name="ol.Feature#setProperties" class="unstable">
<a href="ol.Feature.html#setProperties">setProperties</a>
</li>
<li data-name="ol.Feature#setStyle" class="">
<a href="ol.Feature.html#setStyle">setStyle</a>
</li>
<li data-name="ol.Feature#un" class="">
<a href="ol.Feature.html#un">un</a>
</li>
<li data-name="ol.Feature#unbind" class="unstable">
<a href="ol.Feature.html#unbind">unbind</a>
</li>
<li data-name="ol.Feature#unbindAll" class="unstable">
<a href="ol.Feature.html#unbindAll">unbindAll</a>
</li>
<li data-name="ol.Feature#unByKey" class="">
<a href="ol.Feature.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.FeatureOverlay">
<span class="title">
<a href="ol.FeatureOverlay.html">ol.FeatureOverlay</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.FeatureOverlay#addFeature" class="unstable">
<a href="ol.FeatureOverlay.html#addFeature">addFeature</a>
</li>
<li data-name="ol.FeatureOverlay#getFeatures" class="unstable">
<a href="ol.FeatureOverlay.html#getFeatures">getFeatures</a>
</li>
<li data-name="ol.FeatureOverlay#getStyle" class="unstable">
<a href="ol.FeatureOverlay.html#getStyle">getStyle</a>
</li>
<li data-name="ol.FeatureOverlay#getStyleFunction" class="unstable">
<a href="ol.FeatureOverlay.html#getStyleFunction">getStyleFunction</a>
</li>
<li data-name="ol.FeatureOverlay#removeFeature" class="unstable">
<a href="ol.FeatureOverlay.html#removeFeature">removeFeature</a>
</li>
<li data-name="ol.FeatureOverlay#setFeatures" class="unstable">
<a href="ol.FeatureOverlay.html#setFeatures">setFeatures</a>
</li>
<li data-name="ol.FeatureOverlay#setMap" class="unstable">
<a href="ol.FeatureOverlay.html#setMap">setMap</a>
</li>
<li data-name="ol.FeatureOverlay#setStyle" class="unstable">
<a href="ol.FeatureOverlay.html#setStyle">setStyle</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.Geolocation">
<span class="title">
<a href="ol.Geolocation.html">ol.Geolocation</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Geolocation#bindTo" class="unstable">
<a href="ol.Geolocation.html#bindTo">bindTo</a>
</li>
<li data-name="ol.Geolocation#dispatchChangeEvent" class="unstable">
<a href="ol.Geolocation.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.Geolocation#get" class="unstable">
<a href="ol.Geolocation.html#get">get</a>
</li>
<li data-name="ol.Geolocation#getAccuracy" class="">
<a href="ol.Geolocation.html#getAccuracy">getAccuracy</a>
</li>
<li data-name="ol.Geolocation#getAccuracyGeometry" class="">
<a href="ol.Geolocation.html#getAccuracyGeometry">getAccuracyGeometry</a>
</li>
<li data-name="ol.Geolocation#getAltitude" class="">
<a href="ol.Geolocation.html#getAltitude">getAltitude</a>
</li>
<li data-name="ol.Geolocation#getAltitudeAccuracy" class="">
<a href="ol.Geolocation.html#getAltitudeAccuracy">getAltitudeAccuracy</a>
</li>
<li data-name="ol.Geolocation#getHeading" class="">
<a href="ol.Geolocation.html#getHeading">getHeading</a>
</li>
<li data-name="ol.Geolocation#getKeys" class="unstable">
<a href="ol.Geolocation.html#getKeys">getKeys</a>
</li>
<li data-name="ol.Geolocation#getPosition" class="">
<a href="ol.Geolocation.html#getPosition">getPosition</a>
</li>
<li data-name="ol.Geolocation#getProjection" class="">
<a href="ol.Geolocation.html#getProjection">getProjection</a>
</li>
<li data-name="ol.Geolocation#getProperties" class="unstable">
<a href="ol.Geolocation.html#getProperties">getProperties</a>
</li>
<li data-name="ol.Geolocation#getRevision" class="unstable">
<a href="ol.Geolocation.html#getRevision">getRevision</a>
</li>
<li data-name="ol.Geolocation#getSpeed" class="">
<a href="ol.Geolocation.html#getSpeed">getSpeed</a>
</li>
<li data-name="ol.Geolocation#getTracking" class="">
<a href="ol.Geolocation.html#getTracking">getTracking</a>
</li>
<li data-name="ol.Geolocation#getTrackingOptions" class="">
<a href="ol.Geolocation.html#getTrackingOptions">getTrackingOptions</a>
</li>
<li data-name="ol.Geolocation#on" class="">
<a href="ol.Geolocation.html#on">on</a>
</li>
<li data-name="ol.Geolocation#once" class="">
<a href="ol.Geolocation.html#once">once</a>
</li>
<li data-name="ol.Geolocation#set" class="unstable">
<a href="ol.Geolocation.html#set">set</a>
</li>
<li data-name="ol.Geolocation#setProjection" class="">
<a href="ol.Geolocation.html#setProjection">setProjection</a>
</li>
<li data-name="ol.Geolocation#setProperties" class="unstable">
<a href="ol.Geolocation.html#setProperties">setProperties</a>
</li>
<li data-name="ol.Geolocation#setTracking" class="">
<a href="ol.Geolocation.html#setTracking">setTracking</a>
</li>
<li data-name="ol.Geolocation#setTrackingOptions" class="">
<a href="ol.Geolocation.html#setTrackingOptions">setTrackingOptions</a>
</li>
<li data-name="ol.Geolocation#un" class="">
<a href="ol.Geolocation.html#un">un</a>
</li>
<li data-name="ol.Geolocation#unbind" class="unstable">
<a href="ol.Geolocation.html#unbind">unbind</a>
</li>
<li data-name="ol.Geolocation#unbindAll" class="unstable">
<a href="ol.Geolocation.html#unbindAll">unbindAll</a>
</li>
<li data-name="ol.Geolocation#unByKey" class="">
<a href="ol.Geolocation.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.Graticule">
<span class="title">
<a href="ol.Graticule.html">ol.Graticule</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Graticule#getMap" class="unstable">
<a href="ol.Graticule.html#getMap">getMap</a>
</li>
<li data-name="ol.Graticule#getMeridians" class="unstable">
<a href="ol.Graticule.html#getMeridians">getMeridians</a>
</li>
<li data-name="ol.Graticule#getParallels" class="unstable">
<a href="ol.Graticule.html#getParallels">getParallels</a>
</li>
<li data-name="ol.Graticule#setMap" class="unstable">
<a href="ol.Graticule.html#setMap">setMap</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.ImageTile">
<span class="title">
<a href="ol.ImageTile.html">ol.ImageTile</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.ImageTile#getImage" class="unstable">
<a href="ol.ImageTile.html#getImage">getImage</a>
</li>
<li data-name="ol.ImageTile#getTileCoord" class="unstable">
<a href="ol.ImageTile.html#getTileCoord">getTileCoord</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.Kinetic">
<span class="title">
<a href="ol.Kinetic.html">ol.Kinetic</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.Map">
<span class="title">
<a href="ol.Map.html">ol.Map</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Map#addControl" class="">
<a href="ol.Map.html#addControl">addControl</a>
</li>
<li data-name="ol.Map#addInteraction" class="">
<a href="ol.Map.html#addInteraction">addInteraction</a>
</li>
<li data-name="ol.Map#addLayer" class="">
<a href="ol.Map.html#addLayer">addLayer</a>
</li>
<li data-name="ol.Map#addOverlay" class="">
<a href="ol.Map.html#addOverlay">addOverlay</a>
</li>
<li data-name="ol.Map#beforeRender" class="unstable">
<a href="ol.Map.html#beforeRender">beforeRender</a>
</li>
<li data-name="ol.Map#bindTo" class="unstable">
<a href="ol.Map.html#bindTo">bindTo</a>
</li>
<li data-name="ol.Map#dispatchChangeEvent" class="unstable">
<a href="ol.Map.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.Map#forEachFeatureAtPixel" class="">
<a href="ol.Map.html#forEachFeatureAtPixel">forEachFeatureAtPixel</a>
</li>
<li data-name="ol.Map#get" class="unstable">
<a href="ol.Map.html#get">get</a>
</li>
<li data-name="ol.Map#getControls" class="">
<a href="ol.Map.html#getControls">getControls</a>
</li>
<li data-name="ol.Map#getCoordinateFromPixel" class="">
<a href="ol.Map.html#getCoordinateFromPixel">getCoordinateFromPixel</a>
</li>
<li data-name="ol.Map#getEventCoordinate" class="">
<a href="ol.Map.html#getEventCoordinate">getEventCoordinate</a>
</li>
<li data-name="ol.Map#getEventPixel" class="">
<a href="ol.Map.html#getEventPixel">getEventPixel</a>
</li>
<li data-name="ol.Map#getInteractions" class="">
<a href="ol.Map.html#getInteractions">getInteractions</a>
</li>
<li data-name="ol.Map#getKeys" class="unstable">
<a href="ol.Map.html#getKeys">getKeys</a>
</li>
<li data-name="ol.Map#getLayerGroup" class="">
<a href="ol.Map.html#getLayerGroup">getLayerGroup</a>
</li>
<li data-name="ol.Map#getLayers" class="">
<a href="ol.Map.html#getLayers">getLayers</a>
</li>
<li data-name="ol.Map#getOverlays" class="">
<a href="ol.Map.html#getOverlays">getOverlays</a>
</li>
<li data-name="ol.Map#getPixelFromCoordinate" class="">
<a href="ol.Map.html#getPixelFromCoordinate">getPixelFromCoordinate</a>
</li>
<li data-name="ol.Map#getProperties" class="unstable">
<a href="ol.Map.html#getProperties">getProperties</a>
</li>
<li data-name="ol.Map#getRevision" class="unstable">
<a href="ol.Map.html#getRevision">getRevision</a>
</li>
<li data-name="ol.Map#getSize" class="">
<a href="ol.Map.html#getSize">getSize</a>
</li>
<li data-name="ol.Map#getTarget" class="">
<a href="ol.Map.html#getTarget">getTarget</a>
</li>
<li data-name="ol.Map#getView" class="">
<a href="ol.Map.html#getView">getView</a>
</li>
<li data-name="ol.Map#getViewport" class="">
<a href="ol.Map.html#getViewport">getViewport</a>
</li>
<li data-name="ol.Map#on" class="">
<a href="ol.Map.html#on">on</a>
</li>
<li data-name="ol.Map#once" class="">
<a href="ol.Map.html#once">once</a>
</li>
<li data-name="ol.Map#removeControl" class="">
<a href="ol.Map.html#removeControl">removeControl</a>
</li>
<li data-name="ol.Map#removeInteraction" class="">
<a href="ol.Map.html#removeInteraction">removeInteraction</a>
</li>
<li data-name="ol.Map#removeLayer" class="">
<a href="ol.Map.html#removeLayer">removeLayer</a>
</li>
<li data-name="ol.Map#removeOverlay" class="">
<a href="ol.Map.html#removeOverlay">removeOverlay</a>
</li>
<li data-name="ol.Map#render" class="">
<a href="ol.Map.html#render">render</a>
</li>
<li data-name="ol.Map#renderSync" class="">
<a href="ol.Map.html#renderSync">renderSync</a>
</li>
<li data-name="ol.Map#set" class="unstable">
<a href="ol.Map.html#set">set</a>
</li>
<li data-name="ol.Map#setLayerGroup" class="">
<a href="ol.Map.html#setLayerGroup">setLayerGroup</a>
</li>
<li data-name="ol.Map#setProperties" class="unstable">
<a href="ol.Map.html#setProperties">setProperties</a>
</li>
<li data-name="ol.Map#setSize" class="unstable">
<a href="ol.Map.html#setSize">setSize</a>
</li>
<li data-name="ol.Map#setTarget" class="">
<a href="ol.Map.html#setTarget">setTarget</a>
</li>
<li data-name="ol.Map#setView" class="">
<a href="ol.Map.html#setView">setView</a>
</li>
<li data-name="ol.Map#un" class="">
<a href="ol.Map.html#un">un</a>
</li>
<li data-name="ol.Map#unbind" class="unstable">
<a href="ol.Map.html#unbind">unbind</a>
</li>
<li data-name="ol.Map#unbindAll" class="unstable">
<a href="ol.Map.html#unbindAll">unbindAll</a>
</li>
<li data-name="ol.Map#unByKey" class="">
<a href="ol.Map.html#unByKey">unByKey</a>
</li>
<li data-name="ol.Map#updateSize" class="">
<a href="ol.Map.html#updateSize">updateSize</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.MapBrowserEvent">
<span class="title">
<a href="ol.MapBrowserEvent.html">ol.MapBrowserEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.MapBrowserEvent#coordinate"><a href="ol.MapBrowserEvent.html#coordinate">coordinate</a></li>
<li data-name="ol.MapBrowserEvent#frameState"><a href="ol.MapBrowserEvent.html#frameState">frameState</a></li>
<li data-name="ol.MapBrowserEvent#map"><a href="ol.MapBrowserEvent.html#map">map</a></li>
<li data-name="ol.MapBrowserEvent#originalEvent"><a href="ol.MapBrowserEvent.html#originalEvent">originalEvent</a></li>
<li data-name="ol.MapBrowserEvent#pixel"><a href="ol.MapBrowserEvent.html#pixel">pixel</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.MapBrowserEvent#preventDefault" class="">
<a href="ol.MapBrowserEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.MapBrowserEvent#stopPropagation" class="">
<a href="ol.MapBrowserEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.MapEvent">
<span class="title">
<a href="ol.MapEvent.html">ol.MapEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.MapEvent#frameState"><a href="ol.MapEvent.html#frameState">frameState</a></li>
<li data-name="ol.MapEvent#map"><a href="ol.MapEvent.html#map">map</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.Object">
<span class="title">
<a href="ol.Object.html">ol.Object</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Object#bindTo" class="unstable">
<a href="ol.Object.html#bindTo">bindTo</a>
</li>
<li data-name="ol.Object#dispatchChangeEvent" class="unstable">
<a href="ol.Object.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.Object#get" class="unstable">
<a href="ol.Object.html#get">get</a>
</li>
<li data-name="ol.Object#getKeys" class="unstable">
<a href="ol.Object.html#getKeys">getKeys</a>
</li>
<li data-name="ol.Object#getProperties" class="unstable">
<a href="ol.Object.html#getProperties">getProperties</a>
</li>
<li data-name="ol.Object#getRevision" class="unstable">
<a href="ol.Object.html#getRevision">getRevision</a>
</li>
<li data-name="ol.Object#on" class="">
<a href="ol.Object.html#on">on</a>
</li>
<li data-name="ol.Object#once" class="">
<a href="ol.Object.html#once">once</a>
</li>
<li data-name="ol.Object#set" class="unstable">
<a href="ol.Object.html#set">set</a>
</li>
<li data-name="ol.Object#setProperties" class="unstable">
<a href="ol.Object.html#setProperties">setProperties</a>
</li>
<li data-name="ol.Object#un" class="">
<a href="ol.Object.html#un">un</a>
</li>
<li data-name="ol.Object#unbind" class="unstable">
<a href="ol.Object.html#unbind">unbind</a>
</li>
<li data-name="ol.Object#unbindAll" class="unstable">
<a href="ol.Object.html#unbindAll">unbindAll</a>
</li>
<li data-name="ol.Object#unByKey" class="">
<a href="ol.Object.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.ObjectAccessor">
<span class="title">
<a href="ol.ObjectAccessor.html">ol.ObjectAccessor</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.ObjectAccessor#transform" class="unstable">
<a href="ol.ObjectAccessor.html#transform">transform</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.ObjectEvent">
<span class="title">
<a href="ol.ObjectEvent.html">ol.ObjectEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.ObjectEvent#key"><a href="ol.ObjectEvent.html#key">key</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.Observable">
<span class="title">
<a href="ol.Observable.html">ol.Observable</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Observable#dispatchChangeEvent" class="unstable">
<a href="ol.Observable.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.Observable#getRevision" class="unstable">
<a href="ol.Observable.html#getRevision">getRevision</a>
</li>
<li data-name="ol.Observable#on" class="">
<a href="ol.Observable.html#on">on</a>
</li>
<li data-name="ol.Observable#once" class="">
<a href="ol.Observable.html#once">once</a>
</li>
<li data-name="ol.Observable#un" class="">
<a href="ol.Observable.html#un">un</a>
</li>
<li data-name="ol.Observable#unByKey" class="">
<a href="ol.Observable.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.Overlay">
<span class="title">
<a href="ol.Overlay.html">ol.Overlay</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Overlay#bindTo" class="unstable">
<a href="ol.Overlay.html#bindTo">bindTo</a>
</li>
<li data-name="ol.Overlay#dispatchChangeEvent" class="unstable">
<a href="ol.Overlay.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.Overlay#get" class="unstable">
<a href="ol.Overlay.html#get">get</a>
</li>
<li data-name="ol.Overlay#getElement" class="">
<a href="ol.Overlay.html#getElement">getElement</a>
</li>
<li data-name="ol.Overlay#getKeys" class="unstable">
<a href="ol.Overlay.html#getKeys">getKeys</a>
</li>
<li data-name="ol.Overlay#getMap" class="">
<a href="ol.Overlay.html#getMap">getMap</a>
</li>
<li data-name="ol.Overlay#getOffset" class="">
<a href="ol.Overlay.html#getOffset">getOffset</a>
</li>
<li data-name="ol.Overlay#getPosition" class="">
<a href="ol.Overlay.html#getPosition">getPosition</a>
</li>
<li data-name="ol.Overlay#getPositioning" class="">
<a href="ol.Overlay.html#getPositioning">getPositioning</a>
</li>
<li data-name="ol.Overlay#getProperties" class="unstable">
<a href="ol.Overlay.html#getProperties">getProperties</a>
</li>
<li data-name="ol.Overlay#getRevision" class="unstable">
<a href="ol.Overlay.html#getRevision">getRevision</a>
</li>
<li data-name="ol.Overlay#on" class="">
<a href="ol.Overlay.html#on">on</a>
</li>
<li data-name="ol.Overlay#once" class="">
<a href="ol.Overlay.html#once">once</a>
</li>
<li data-name="ol.Overlay#set" class="unstable">
<a href="ol.Overlay.html#set">set</a>
</li>
<li data-name="ol.Overlay#setElement" class="">
<a href="ol.Overlay.html#setElement">setElement</a>
</li>
<li data-name="ol.Overlay#setMap" class="">
<a href="ol.Overlay.html#setMap">setMap</a>
</li>
<li data-name="ol.Overlay#setOffset" class="">
<a href="ol.Overlay.html#setOffset">setOffset</a>
</li>
<li data-name="ol.Overlay#setPosition" class="">
<a href="ol.Overlay.html#setPosition">setPosition</a>
</li>
<li data-name="ol.Overlay#setPositioning" class="">
<a href="ol.Overlay.html#setPositioning">setPositioning</a>
</li>
<li data-name="ol.Overlay#setProperties" class="unstable">
<a href="ol.Overlay.html#setProperties">setProperties</a>
</li>
<li data-name="ol.Overlay#un" class="">
<a href="ol.Overlay.html#un">un</a>
</li>
<li data-name="ol.Overlay#unbind" class="unstable">
<a href="ol.Overlay.html#unbind">unbind</a>
</li>
<li data-name="ol.Overlay#unbindAll" class="unstable">
<a href="ol.Overlay.html#unbindAll">unbindAll</a>
</li>
<li data-name="ol.Overlay#unByKey" class="">
<a href="ol.Overlay.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.Sphere">
<span class="title">
<a href="ol.Sphere.html">ol.Sphere</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.Tile">
<span class="title">
<a href="ol.Tile.html">ol.Tile</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Tile#getTileCoord" class="unstable">
<a href="ol.Tile.html#getTileCoord">getTileCoord</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.View">
<span class="title">
<a href="ol.View.html">ol.View</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.View#bindTo" class="unstable">
<a href="ol.View.html#bindTo">bindTo</a>
</li>
<li data-name="ol.View#calculateExtent" class="unstable">
<a href="ol.View.html#calculateExtent">calculateExtent</a>
</li>
<li data-name="ol.View#centerOn" class="unstable">
<a href="ol.View.html#centerOn">centerOn</a>
</li>
<li data-name="ol.View#constrainCenter" class="unstable">
<a href="ol.View.html#constrainCenter">constrainCenter</a>
</li>
<li data-name="ol.View#constrainResolution" class="unstable">
<a href="ol.View.html#constrainResolution">constrainResolution</a>
</li>
<li data-name="ol.View#constrainRotation" class="unstable">
<a href="ol.View.html#constrainRotation">constrainRotation</a>
</li>
<li data-name="ol.View#dispatchChangeEvent" class="unstable">
<a href="ol.View.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.View#fitExtent" class="unstable">
<a href="ol.View.html#fitExtent">fitExtent</a>
</li>
<li data-name="ol.View#fitGeometry" class="unstable">
<a href="ol.View.html#fitGeometry">fitGeometry</a>
</li>
<li data-name="ol.View#get" class="unstable">
<a href="ol.View.html#get">get</a>
</li>
<li data-name="ol.View#getCenter" class="">
<a href="ol.View.html#getCenter">getCenter</a>
</li>
<li data-name="ol.View#getKeys" class="unstable">
<a href="ol.View.html#getKeys">getKeys</a>
</li>
<li data-name="ol.View#getProjection" class="">
<a href="ol.View.html#getProjection">getProjection</a>
</li>
<li data-name="ol.View#getProperties" class="unstable">
<a href="ol.View.html#getProperties">getProperties</a>
</li>
<li data-name="ol.View#getResolution" class="">
<a href="ol.View.html#getResolution">getResolution</a>
</li>
<li data-name="ol.View#getResolutionForExtent" class="unstable">
<a href="ol.View.html#getResolutionForExtent">getResolutionForExtent</a>
</li>
<li data-name="ol.View#getRevision" class="unstable">
<a href="ol.View.html#getRevision">getRevision</a>
</li>
<li data-name="ol.View#getRotation" class="">
<a href="ol.View.html#getRotation">getRotation</a>
</li>
<li data-name="ol.View#getZoom" class="">
<a href="ol.View.html#getZoom">getZoom</a>
</li>
<li data-name="ol.View#on" class="">
<a href="ol.View.html#on">on</a>
</li>
<li data-name="ol.View#once" class="">
<a href="ol.View.html#once">once</a>
</li>
<li data-name="ol.View#rotate" class="">
<a href="ol.View.html#rotate">rotate</a>
</li>
<li data-name="ol.View#set" class="unstable">
<a href="ol.View.html#set">set</a>
</li>
<li data-name="ol.View#setCenter" class="">
<a href="ol.View.html#setCenter">setCenter</a>
</li>
<li data-name="ol.View#setProperties" class="unstable">
<a href="ol.View.html#setProperties">setProperties</a>
</li>
<li data-name="ol.View#setResolution" class="">
<a href="ol.View.html#setResolution">setResolution</a>
</li>
<li data-name="ol.View#setRotation" class="">
<a href="ol.View.html#setRotation">setRotation</a>
</li>
<li data-name="ol.View#setZoom" class="">
<a href="ol.View.html#setZoom">setZoom</a>
</li>
<li data-name="ol.View#un" class="">
<a href="ol.View.html#un">un</a>
</li>
<li data-name="ol.View#unbind" class="unstable">
<a href="ol.View.html#unbind">unbind</a>
</li>
<li data-name="ol.View#unbindAll" class="unstable">
<a href="ol.View.html#unbindAll">unbindAll</a>
</li>
<li data-name="ol.View#unByKey" class="">
<a href="ol.View.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.animation">
<span class="title">
<a href="ol.animation.html">ol.animation</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.animation.bounce" class="unstable">
<a href="ol.animation.html#bounce">bounce</a>
</li>
<li data-name="ol.animation.pan" class="unstable">
<a href="ol.animation.html#pan">pan</a>
</li>
<li data-name="ol.animation.rotate" class="unstable">
<a href="ol.animation.html#rotate">rotate</a>
</li>
<li data-name="ol.animation.zoom" class="unstable">
<a href="ol.animation.html#zoom">zoom</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.color">
<span class="title">
<a href="ol.color.html">ol.color</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.color.asArray" class="unstable">
<a href="ol.color.html#asArray">asArray</a>
</li>
<li data-name="ol.color.asString" class="unstable">
<a href="ol.color.html#asString">asString</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control">
<span class="title">
<a href="ol.control.html">ol.control</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.control.ScaleLineUnits" class="">
<a href="ol.control.html#ScaleLineUnits">ScaleLineUnits</a>
</li>
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.defaults" class="">
<a href="ol.control.html#defaults">defaults</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.Attribution">
<span class="title">
<a href="ol.control.Attribution.html">ol.control.Attribution</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.Attribution#bindTo" class="unstable">
<a href="ol.control.Attribution.html#bindTo">bindTo</a>
</li>
<li data-name="ol.control.Attribution#dispatchChangeEvent" class="unstable">
<a href="ol.control.Attribution.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.control.Attribution#get" class="unstable">
<a href="ol.control.Attribution.html#get">get</a>
</li>
<li data-name="ol.control.Attribution#getCollapsed" class="">
<a href="ol.control.Attribution.html#getCollapsed">getCollapsed</a>
</li>
<li data-name="ol.control.Attribution#getCollapsible" class="">
<a href="ol.control.Attribution.html#getCollapsible">getCollapsible</a>
</li>
<li data-name="ol.control.Attribution#getKeys" class="unstable">
<a href="ol.control.Attribution.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.Attribution#getMap" class="">
<a href="ol.control.Attribution.html#getMap">getMap</a>
</li>
<li data-name="ol.control.Attribution#getProperties" class="unstable">
<a href="ol.control.Attribution.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.Attribution#getRevision" class="unstable">
<a href="ol.control.Attribution.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.Attribution#on" class="">
<a href="ol.control.Attribution.html#on">on</a>
</li>
<li data-name="ol.control.Attribution#once" class="">
<a href="ol.control.Attribution.html#once">once</a>
</li>
<li data-name="ol.control.Attribution#set" class="unstable">
<a href="ol.control.Attribution.html#set">set</a>
</li>
<li data-name="ol.control.Attribution#setCollapsed" class="">
<a href="ol.control.Attribution.html#setCollapsed">setCollapsed</a>
</li>
<li data-name="ol.control.Attribution#setCollapsible" class="">
<a href="ol.control.Attribution.html#setCollapsible">setCollapsible</a>
</li>
<li data-name="ol.control.Attribution#setMap" class="">
<a href="ol.control.Attribution.html#setMap">setMap</a>
</li>
<li data-name="ol.control.Attribution#setProperties" class="unstable">
<a href="ol.control.Attribution.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.Attribution#un" class="">
<a href="ol.control.Attribution.html#un">un</a>
</li>
<li data-name="ol.control.Attribution#unbind" class="unstable">
<a href="ol.control.Attribution.html#unbind">unbind</a>
</li>
<li data-name="ol.control.Attribution#unbindAll" class="unstable">
<a href="ol.control.Attribution.html#unbindAll">unbindAll</a>
</li>
<li data-name="ol.control.Attribution#unByKey" class="">
<a href="ol.control.Attribution.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.Control">
<span class="title">
<a href="ol.control.Control.html">ol.control.Control</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.Control#bindTo" class="unstable">
<a href="ol.control.Control.html#bindTo">bindTo</a>
</li>
<li data-name="ol.control.Control#dispatchChangeEvent" class="unstable">
<a href="ol.control.Control.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.control.Control#get" class="unstable">
<a href="ol.control.Control.html#get">get</a>
</li>
<li data-name="ol.control.Control#getKeys" class="unstable">
<a href="ol.control.Control.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.Control#getMap" class="">
<a href="ol.control.Control.html#getMap">getMap</a>
</li>
<li data-name="ol.control.Control#getProperties" class="unstable">
<a href="ol.control.Control.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.Control#getRevision" class="unstable">
<a href="ol.control.Control.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.Control#on" class="">
<a href="ol.control.Control.html#on">on</a>
</li>
<li data-name="ol.control.Control#once" class="">
<a href="ol.control.Control.html#once">once</a>
</li>
<li data-name="ol.control.Control#set" class="unstable">
<a href="ol.control.Control.html#set">set</a>
</li>
<li data-name="ol.control.Control#setMap" class="">
<a href="ol.control.Control.html#setMap">setMap</a>
</li>
<li data-name="ol.control.Control#setProperties" class="unstable">
<a href="ol.control.Control.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.Control#un" class="">
<a href="ol.control.Control.html#un">un</a>
</li>
<li data-name="ol.control.Control#unbind" class="unstable">
<a href="ol.control.Control.html#unbind">unbind</a>
</li>
<li data-name="ol.control.Control#unbindAll" class="unstable">
<a href="ol.control.Control.html#unbindAll">unbindAll</a>
</li>
<li data-name="ol.control.Control#unByKey" class="">
<a href="ol.control.Control.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.FullScreen">
<span class="title">
<a href="ol.control.FullScreen.html">ol.control.FullScreen</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.FullScreen#bindTo" class="unstable">
<a href="ol.control.FullScreen.html#bindTo">bindTo</a>
</li>
<li data-name="ol.control.FullScreen#dispatchChangeEvent" class="unstable">
<a href="ol.control.FullScreen.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.control.FullScreen#get" class="unstable">
<a href="ol.control.FullScreen.html#get">get</a>
</li>
<li data-name="ol.control.FullScreen#getKeys" class="unstable">
<a href="ol.control.FullScreen.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.FullScreen#getMap" class="">
<a href="ol.control.FullScreen.html#getMap">getMap</a>
</li>
<li data-name="ol.control.FullScreen#getProperties" class="unstable">
<a href="ol.control.FullScreen.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.FullScreen#getRevision" class="unstable">
<a href="ol.control.FullScreen.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.FullScreen#on" class="">
<a href="ol.control.FullScreen.html#on">on</a>
</li>
<li data-name="ol.control.FullScreen#once" class="">
<a href="ol.control.FullScreen.html#once">once</a>
</li>
<li data-name="ol.control.FullScreen#set" class="unstable">
<a href="ol.control.FullScreen.html#set">set</a>
</li>
<li data-name="ol.control.FullScreen#setMap" class="">
<a href="ol.control.FullScreen.html#setMap">setMap</a>
</li>
<li data-name="ol.control.FullScreen#setProperties" class="unstable">
<a href="ol.control.FullScreen.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.FullScreen#un" class="">
<a href="ol.control.FullScreen.html#un">un</a>
</li>
<li data-name="ol.control.FullScreen#unbind" class="unstable">
<a href="ol.control.FullScreen.html#unbind">unbind</a>
</li>
<li data-name="ol.control.FullScreen#unbindAll" class="unstable">
<a href="ol.control.FullScreen.html#unbindAll">unbindAll</a>
</li>
<li data-name="ol.control.FullScreen#unByKey" class="">
<a href="ol.control.FullScreen.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.MousePosition">
<span class="title">
<a href="ol.control.MousePosition.html">ol.control.MousePosition</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.MousePosition#bindTo" class="unstable">
<a href="ol.control.MousePosition.html#bindTo">bindTo</a>
</li>
<li data-name="ol.control.MousePosition#dispatchChangeEvent" class="unstable">
<a href="ol.control.MousePosition.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.control.MousePosition#get" class="unstable">
<a href="ol.control.MousePosition.html#get">get</a>
</li>
<li data-name="ol.control.MousePosition#getCoordinateFormat" class="">
<a href="ol.control.MousePosition.html#getCoordinateFormat">getCoordinateFormat</a>
</li>
<li data-name="ol.control.MousePosition#getKeys" class="unstable">
<a href="ol.control.MousePosition.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.MousePosition#getMap" class="">
<a href="ol.control.MousePosition.html#getMap">getMap</a>
</li>
<li data-name="ol.control.MousePosition#getProjection" class="">
<a href="ol.control.MousePosition.html#getProjection">getProjection</a>
</li>
<li data-name="ol.control.MousePosition#getProperties" class="unstable">
<a href="ol.control.MousePosition.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.MousePosition#getRevision" class="unstable">
<a href="ol.control.MousePosition.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.MousePosition#on" class="">
<a href="ol.control.MousePosition.html#on">on</a>
</li>
<li data-name="ol.control.MousePosition#once" class="">
<a href="ol.control.MousePosition.html#once">once</a>
</li>
<li data-name="ol.control.MousePosition#set" class="unstable">
<a href="ol.control.MousePosition.html#set">set</a>
</li>
<li data-name="ol.control.MousePosition#setCoordinateFormat" class="">
<a href="ol.control.MousePosition.html#setCoordinateFormat">setCoordinateFormat</a>
</li>
<li data-name="ol.control.MousePosition#setMap" class="">
<a href="ol.control.MousePosition.html#setMap">setMap</a>
</li>
<li data-name="ol.control.MousePosition#setProjection" class="">
<a href="ol.control.MousePosition.html#setProjection">setProjection</a>
</li>
<li data-name="ol.control.MousePosition#setProperties" class="unstable">
<a href="ol.control.MousePosition.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.MousePosition#un" class="">
<a href="ol.control.MousePosition.html#un">un</a>
</li>
<li data-name="ol.control.MousePosition#unbind" class="unstable">
<a href="ol.control.MousePosition.html#unbind">unbind</a>
</li>
<li data-name="ol.control.MousePosition#unbindAll" class="unstable">
<a href="ol.control.MousePosition.html#unbindAll">unbindAll</a>
</li>
<li data-name="ol.control.MousePosition#unByKey" class="">
<a href="ol.control.MousePosition.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.Rotate">
<span class="title">
<a href="ol.control.Rotate.html">ol.control.Rotate</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.Rotate#bindTo" class="unstable">
<a href="ol.control.Rotate.html#bindTo">bindTo</a>
</li>
<li data-name="ol.control.Rotate#dispatchChangeEvent" class="unstable">
<a href="ol.control.Rotate.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.control.Rotate#get" class="unstable">
<a href="ol.control.Rotate.html#get">get</a>
</li>
<li data-name="ol.control.Rotate#getKeys" class="unstable">
<a href="ol.control.Rotate.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.Rotate#getMap" class="">
<a href="ol.control.Rotate.html#getMap">getMap</a>
</li>
<li data-name="ol.control.Rotate#getProperties" class="unstable">
<a href="ol.control.Rotate.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.Rotate#getRevision" class="unstable">
<a href="ol.control.Rotate.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.Rotate#on" class="">
<a href="ol.control.Rotate.html#on">on</a>
</li>
<li data-name="ol.control.Rotate#once" class="">
<a href="ol.control.Rotate.html#once">once</a>
</li>
<li data-name="ol.control.Rotate#set" class="unstable">
<a href="ol.control.Rotate.html#set">set</a>
</li>
<li data-name="ol.control.Rotate#setMap" class="">
<a href="ol.control.Rotate.html#setMap">setMap</a>
</li>
<li data-name="ol.control.Rotate#setProperties" class="unstable">
<a href="ol.control.Rotate.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.Rotate#un" class="">
<a href="ol.control.Rotate.html#un">un</a>
</li>
<li data-name="ol.control.Rotate#unbind" class="unstable">
<a href="ol.control.Rotate.html#unbind">unbind</a>
</li>
<li data-name="ol.control.Rotate#unbindAll" class="unstable">
<a href="ol.control.Rotate.html#unbindAll">unbindAll</a>
</li>
<li data-name="ol.control.Rotate#unByKey" class="">
<a href="ol.control.Rotate.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.ScaleLine">
<span class="title">
<a href="ol.control.ScaleLine.html">ol.control.ScaleLine</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.ScaleLine#bindTo" class="unstable">
<a href="ol.control.ScaleLine.html#bindTo">bindTo</a>
</li>
<li data-name="ol.control.ScaleLine#dispatchChangeEvent" class="unstable">
<a href="ol.control.ScaleLine.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.control.ScaleLine#get" class="unstable">
<a href="ol.control.ScaleLine.html#get">get</a>
</li>
<li data-name="ol.control.ScaleLine#getKeys" class="unstable">
<a href="ol.control.ScaleLine.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.ScaleLine#getMap" class="">
<a href="ol.control.ScaleLine.html#getMap">getMap</a>
</li>
<li data-name="ol.control.ScaleLine#getProperties" class="unstable">
<a href="ol.control.ScaleLine.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.ScaleLine#getRevision" class="unstable">
<a href="ol.control.ScaleLine.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.ScaleLine#getUnits" class="">
<a href="ol.control.ScaleLine.html#getUnits">getUnits</a>
</li>
<li data-name="ol.control.ScaleLine#on" class="">
<a href="ol.control.ScaleLine.html#on">on</a>
</li>
<li data-name="ol.control.ScaleLine#once" class="">
<a href="ol.control.ScaleLine.html#once">once</a>
</li>
<li data-name="ol.control.ScaleLine#set" class="unstable">
<a href="ol.control.ScaleLine.html#set">set</a>
</li>
<li data-name="ol.control.ScaleLine#setMap" class="">
<a href="ol.control.ScaleLine.html#setMap">setMap</a>
</li>
<li data-name="ol.control.ScaleLine#setProperties" class="unstable">
<a href="ol.control.ScaleLine.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.ScaleLine#setUnits" class="">
<a href="ol.control.ScaleLine.html#setUnits">setUnits</a>
</li>
<li data-name="ol.control.ScaleLine#un" class="">
<a href="ol.control.ScaleLine.html#un">un</a>
</li>
<li data-name="ol.control.ScaleLine#unbind" class="unstable">
<a href="ol.control.ScaleLine.html#unbind">unbind</a>
</li>
<li data-name="ol.control.ScaleLine#unbindAll" class="unstable">
<a href="ol.control.ScaleLine.html#unbindAll">unbindAll</a>
</li>
<li data-name="ol.control.ScaleLine#unByKey" class="">
<a href="ol.control.ScaleLine.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.Zoom">
<span class="title">
<a href="ol.control.Zoom.html">ol.control.Zoom</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.Zoom#bindTo" class="unstable">
<a href="ol.control.Zoom.html#bindTo">bindTo</a>
</li>
<li data-name="ol.control.Zoom#dispatchChangeEvent" class="unstable">
<a href="ol.control.Zoom.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.control.Zoom#get" class="unstable">
<a href="ol.control.Zoom.html#get">get</a>
</li>
<li data-name="ol.control.Zoom#getKeys" class="unstable">
<a href="ol.control.Zoom.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.Zoom#getMap" class="">
<a href="ol.control.Zoom.html#getMap">getMap</a>
</li>
<li data-name="ol.control.Zoom#getProperties" class="unstable">
<a href="ol.control.Zoom.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.Zoom#getRevision" class="unstable">
<a href="ol.control.Zoom.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.Zoom#on" class="">
<a href="ol.control.Zoom.html#on">on</a>
</li>
<li data-name="ol.control.Zoom#once" class="">
<a href="ol.control.Zoom.html#once">once</a>
</li>
<li data-name="ol.control.Zoom#set" class="unstable">
<a href="ol.control.Zoom.html#set">set</a>
</li>
<li data-name="ol.control.Zoom#setMap" class="">
<a href="ol.control.Zoom.html#setMap">setMap</a>
</li>
<li data-name="ol.control.Zoom#setProperties" class="unstable">
<a href="ol.control.Zoom.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.Zoom#un" class="">
<a href="ol.control.Zoom.html#un">un</a>
</li>
<li data-name="ol.control.Zoom#unbind" class="unstable">
<a href="ol.control.Zoom.html#unbind">unbind</a>
</li>
<li data-name="ol.control.Zoom#unbindAll" class="unstable">
<a href="ol.control.Zoom.html#unbindAll">unbindAll</a>
</li>
<li data-name="ol.control.Zoom#unByKey" class="">
<a href="ol.control.Zoom.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.ZoomSlider">
<span class="title">
<a href="ol.control.ZoomSlider.html">ol.control.ZoomSlider</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.ZoomSlider#bindTo" class="unstable">
<a href="ol.control.ZoomSlider.html#bindTo">bindTo</a>
</li>
<li data-name="ol.control.ZoomSlider#dispatchChangeEvent" class="unstable">
<a href="ol.control.ZoomSlider.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.control.ZoomSlider#get" class="unstable">
<a href="ol.control.ZoomSlider.html#get">get</a>
</li>
<li data-name="ol.control.ZoomSlider#getKeys" class="unstable">
<a href="ol.control.ZoomSlider.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.ZoomSlider#getMap" class="">
<a href="ol.control.ZoomSlider.html#getMap">getMap</a>
</li>
<li data-name="ol.control.ZoomSlider#getProperties" class="unstable">
<a href="ol.control.ZoomSlider.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.ZoomSlider#getRevision" class="unstable">
<a href="ol.control.ZoomSlider.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.ZoomSlider#on" class="">
<a href="ol.control.ZoomSlider.html#on">on</a>
</li>
<li data-name="ol.control.ZoomSlider#once" class="">
<a href="ol.control.ZoomSlider.html#once">once</a>
</li>
<li data-name="ol.control.ZoomSlider#set" class="unstable">
<a href="ol.control.ZoomSlider.html#set">set</a>
</li>
<li data-name="ol.control.ZoomSlider#setMap" class="">
<a href="ol.control.ZoomSlider.html#setMap">setMap</a>
</li>
<li data-name="ol.control.ZoomSlider#setProperties" class="unstable">
<a href="ol.control.ZoomSlider.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.ZoomSlider#un" class="">
<a href="ol.control.ZoomSlider.html#un">un</a>
</li>
<li data-name="ol.control.ZoomSlider#unbind" class="unstable">
<a href="ol.control.ZoomSlider.html#unbind">unbind</a>
</li>
<li data-name="ol.control.ZoomSlider#unbindAll" class="unstable">
<a href="ol.control.ZoomSlider.html#unbindAll">unbindAll</a>
</li>
<li data-name="ol.control.ZoomSlider#unByKey" class="">
<a href="ol.control.ZoomSlider.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.ZoomToExtent">
<span class="title">
<a href="ol.control.ZoomToExtent.html">ol.control.ZoomToExtent</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.ZoomToExtent#bindTo" class="unstable">
<a href="ol.control.ZoomToExtent.html#bindTo">bindTo</a>
</li>
<li data-name="ol.control.ZoomToExtent#dispatchChangeEvent" class="unstable">
<a href="ol.control.ZoomToExtent.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.control.ZoomToExtent#get" class="unstable">
<a href="ol.control.ZoomToExtent.html#get">get</a>
</li>
<li data-name="ol.control.ZoomToExtent#getKeys" class="unstable">
<a href="ol.control.ZoomToExtent.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.ZoomToExtent#getMap" class="">
<a href="ol.control.ZoomToExtent.html#getMap">getMap</a>
</li>
<li data-name="ol.control.ZoomToExtent#getProperties" class="unstable">
<a href="ol.control.ZoomToExtent.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.ZoomToExtent#getRevision" class="unstable">
<a href="ol.control.ZoomToExtent.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.ZoomToExtent#on" class="">
<a href="ol.control.ZoomToExtent.html#on">on</a>
</li>
<li data-name="ol.control.ZoomToExtent#once" class="">
<a href="ol.control.ZoomToExtent.html#once">once</a>
</li>
<li data-name="ol.control.ZoomToExtent#set" class="unstable">
<a href="ol.control.ZoomToExtent.html#set">set</a>
</li>
<li data-name="ol.control.ZoomToExtent#setMap" class="">
<a href="ol.control.ZoomToExtent.html#setMap">setMap</a>
</li>
<li data-name="ol.control.ZoomToExtent#setProperties" class="unstable">
<a href="ol.control.ZoomToExtent.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.ZoomToExtent#un" class="">
<a href="ol.control.ZoomToExtent.html#un">un</a>
</li>
<li data-name="ol.control.ZoomToExtent#unbind" class="unstable">
<a href="ol.control.ZoomToExtent.html#unbind">unbind</a>
</li>
<li data-name="ol.control.ZoomToExtent#unbindAll" class="unstable">
<a href="ol.control.ZoomToExtent.html#unbindAll">unbindAll</a>
</li>
<li data-name="ol.control.ZoomToExtent#unByKey" class="">
<a href="ol.control.ZoomToExtent.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.coordinate">
<span class="title">
<a href="ol.coordinate.html">ol.coordinate</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.coordinate.add" class="">
<a href="ol.coordinate.html#add">add</a>
</li>
<li data-name="ol.coordinate.createStringXY" class="">
<a href="ol.coordinate.html#createStringXY">createStringXY</a>
</li>
<li data-name="ol.coordinate.format" class="">
<a href="ol.coordinate.html#format">format</a>
</li>
<li data-name="ol.coordinate.rotate" class="">
<a href="ol.coordinate.html#rotate">rotate</a>
</li>
<li data-name="ol.coordinate.toStringHDMS" class="">
<a href="ol.coordinate.html#toStringHDMS">toStringHDMS</a>
</li>
<li data-name="ol.coordinate.toStringXY" class="">
<a href="ol.coordinate.html#toStringXY">toStringXY</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.dom.Input">
<span class="title">
<a href="ol.dom.Input.html">ol.dom.Input</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.dom.Input#bindTo" class="unstable">
<a href="ol.dom.Input.html#bindTo">bindTo</a>
</li>
<li data-name="ol.dom.Input#dispatchChangeEvent" class="unstable">
<a href="ol.dom.Input.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.dom.Input#get" class="unstable">
<a href="ol.dom.Input.html#get">get</a>
</li>
<li data-name="ol.dom.Input#getChecked" class="unstable">
<a href="ol.dom.Input.html#getChecked">getChecked</a>
</li>
<li data-name="ol.dom.Input#getKeys" class="unstable">
<a href="ol.dom.Input.html#getKeys">getKeys</a>
</li>
<li data-name="ol.dom.Input#getProperties" class="unstable">
<a href="ol.dom.Input.html#getProperties">getProperties</a>
</li>
<li data-name="ol.dom.Input#getRevision" class="unstable">
<a href="ol.dom.Input.html#getRevision">getRevision</a>
</li>
<li data-name="ol.dom.Input#getValue" class="unstable">
<a href="ol.dom.Input.html#getValue">getValue</a>
</li>
<li data-name="ol.dom.Input#on" class="">
<a href="ol.dom.Input.html#on">on</a>
</li>
<li data-name="ol.dom.Input#once" class="">
<a href="ol.dom.Input.html#once">once</a>
</li>
<li data-name="ol.dom.Input#set" class="unstable">
<a href="ol.dom.Input.html#set">set</a>
</li>
<li data-name="ol.dom.Input#setChecked" class="unstable">
<a href="ol.dom.Input.html#setChecked">setChecked</a>
</li>
<li data-name="ol.dom.Input#setProperties" class="unstable">
<a href="ol.dom.Input.html#setProperties">setProperties</a>
</li>
<li data-name="ol.dom.Input#setValue" class="unstable">
<a href="ol.dom.Input.html#setValue">setValue</a>
</li>
<li data-name="ol.dom.Input#un" class="">
<a href="ol.dom.Input.html#un">un</a>
</li>
<li data-name="ol.dom.Input#unbind" class="unstable">
<a href="ol.dom.Input.html#unbind">unbind</a>
</li>
<li data-name="ol.dom.Input#unbindAll" class="unstable">
<a href="ol.dom.Input.html#unbindAll">unbindAll</a>
</li>
<li data-name="ol.dom.Input#unByKey" class="">
<a href="ol.dom.Input.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.easing">
<span class="title">
<a href="ol.easing.html">ol.easing</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.easing.easeIn" class="unstable">
<a href="ol.easing.html#easeIn">easeIn</a>
</li>
<li data-name="ol.easing.easeOut" class="unstable">
<a href="ol.easing.html#easeOut">easeOut</a>
</li>
<li data-name="ol.easing.inAndOut" class="unstable">
<a href="ol.easing.html#inAndOut">inAndOut</a>
</li>
<li data-name="ol.easing.linear" class="unstable">
<a href="ol.easing.html#linear">linear</a>
</li>
<li data-name="ol.easing.upAndDown" class="unstable">
<a href="ol.easing.html#upAndDown">upAndDown</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.events">
<span class="title">
<a href="ol.events.html">ol.events</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.events.ConditionType" class="">
<a href="ol.events.html#ConditionType">ConditionType</a>
</li>
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.events.condition">
<span class="title">
<a href="ol.events.condition.html">ol.events.condition</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.events.condition.altKeyOnly" class="">
<a href="ol.events.condition.html#altKeyOnly">altKeyOnly</a>
</li>
<li data-name="ol.events.condition.altShiftKeysOnly" class="">
<a href="ol.events.condition.html#altShiftKeysOnly">altShiftKeysOnly</a>
</li>
<li data-name="ol.events.condition.always" class="">
<a href="ol.events.condition.html#always">always</a>
</li>
<li data-name="ol.events.condition.click" class="">
<a href="ol.events.condition.html#click">click</a>
</li>
<li data-name="ol.events.condition.mouseMove" class="unstable">
<a href="ol.events.condition.html#mouseMove">mouseMove</a>
</li>
<li data-name="ol.events.condition.mouseOnly" class="">
<a href="ol.events.condition.html#mouseOnly">mouseOnly</a>
</li>
<li data-name="ol.events.condition.never" class="">
<a href="ol.events.condition.html#never">never</a>
</li>
<li data-name="ol.events.condition.noModifierKeys" class="">
<a href="ol.events.condition.html#noModifierKeys">noModifierKeys</a>
</li>
<li data-name="ol.events.condition.platformModifierKeyOnly" class="">
<a href="ol.events.condition.html#platformModifierKeyOnly">platformModifierKeyOnly</a>
</li>
<li data-name="ol.events.condition.shiftKeyOnly" class="">
<a href="ol.events.condition.html#shiftKeyOnly">shiftKeyOnly</a>
</li>
<li data-name="ol.events.condition.singleClick" class="">
<a href="ol.events.condition.html#singleClick">singleClick</a>
</li>
<li data-name="ol.events.condition.targetNotEditable" class="unstable">
<a href="ol.events.condition.html#targetNotEditable">targetNotEditable</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.extent">
<span class="title">
<a href="ol.extent.html">ol.extent</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.extent.applyTransform" class="">
<a href="ol.extent.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.extent.boundingExtent" class="">
<a href="ol.extent.html#boundingExtent">boundingExtent</a>
</li>
<li data-name="ol.extent.buffer" class="">
<a href="ol.extent.html#buffer">buffer</a>
</li>
<li data-name="ol.extent.containsCoordinate" class="">
<a href="ol.extent.html#containsCoordinate">containsCoordinate</a>
</li>
<li data-name="ol.extent.containsExtent" class="">
<a href="ol.extent.html#containsExtent">containsExtent</a>
</li>
<li data-name="ol.extent.createEmpty" class="">
<a href="ol.extent.html#createEmpty">createEmpty</a>
</li>
<li data-name="ol.extent.equals" class="">
<a href="ol.extent.html#equals">equals</a>
</li>
<li data-name="ol.extent.extend" class="">
<a href="ol.extent.html#extend">extend</a>
</li>
<li data-name="ol.extent.getBottomLeft" class="">
<a href="ol.extent.html#getBottomLeft">getBottomLeft</a>
</li>
<li data-name="ol.extent.getBottomRight" class="">
<a href="ol.extent.html#getBottomRight">getBottomRight</a>
</li>
<li data-name="ol.extent.getCenter" class="">
<a href="ol.extent.html#getCenter">getCenter</a>
</li>
<li data-name="ol.extent.getHeight" class="">
<a href="ol.extent.html#getHeight">getHeight</a>
</li>
<li data-name="ol.extent.getSize" class="">
<a href="ol.extent.html#getSize">getSize</a>
</li>
<li data-name="ol.extent.getTopLeft" class="">
<a href="ol.extent.html#getTopLeft">getTopLeft</a>
</li>
<li data-name="ol.extent.getTopRight" class="">
<a href="ol.extent.html#getTopRight">getTopRight</a>
</li>
<li data-name="ol.extent.getWidth" class="">
<a href="ol.extent.html#getWidth">getWidth</a>
</li>
<li data-name="ol.extent.intersects" class="">
<a href="ol.extent.html#intersects">intersects</a>
</li>
<li data-name="ol.extent.isEmpty" class="">
<a href="ol.extent.html#isEmpty">isEmpty</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.feature">
<span class="title">
<a href="ol.feature_.html">ol.feature</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.feature.FeatureStyleFunction" class="">
<a href="ol.feature_.html#FeatureStyleFunction">FeatureStyleFunction</a>
</li>
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format">
<span class="title">
<a href="ol.format.html">ol.format</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.format.IGCZ" class="unstable">
<a href="ol.format.html#IGCZ">IGCZ</a>
</li>
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.Feature">
<span class="title">
<a href="ol.format.Feature.html">ol.format.Feature</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.GML">
<span class="title">
<a href="ol.format.GML.html">ol.format.GML</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.GML#readFeatures" class="">
<a href="ol.format.GML.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.GML#writeFeatures" class="">
<a href="ol.format.GML.html#writeFeatures">writeFeatures</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.format.GPX">
<span class="title">
<a href="ol.format.GPX.html">ol.format.GPX</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.GPX#readFeature" class="">
<a href="ol.format.GPX.html#readFeature">readFeature</a>
</li>
<li data-name="ol.format.GPX#readFeatures" class="">
<a href="ol.format.GPX.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.GPX#readProjection" class="">
<a href="ol.format.GPX.html#readProjection">readProjection</a>
</li>
<li data-name="ol.format.GPX#writeFeatures" class="">
<a href="ol.format.GPX.html#writeFeatures">writeFeatures</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.format.GeoJSON">
<span class="title">
<a href="ol.format.GeoJSON.html">ol.format.GeoJSON</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.GeoJSON#readFeature" class="">
<a href="ol.format.GeoJSON.html#readFeature">readFeature</a>
</li>
<li data-name="ol.format.GeoJSON#readFeatures" class="">
<a href="ol.format.GeoJSON.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.GeoJSON#readGeometry" class="">
<a href="ol.format.GeoJSON.html#readGeometry">readGeometry</a>
</li>
<li data-name="ol.format.GeoJSON#readProjection" class="">
<a href="ol.format.GeoJSON.html#readProjection">readProjection</a>
</li>
<li data-name="ol.format.GeoJSON#writeFeature" class="">
<a href="ol.format.GeoJSON.html#writeFeature">writeFeature</a>
</li>
<li data-name="ol.format.GeoJSON#writeFeatures" class="">
<a href="ol.format.GeoJSON.html#writeFeatures">writeFeatures</a>
</li>
<li data-name="ol.format.GeoJSON#writeGeometry" class="">
<a href="ol.format.GeoJSON.html#writeGeometry">writeGeometry</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.format.IGC">
<span class="title">
<a href="ol.format.IGC.html">ol.format.IGC</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.IGC#readFeature" class="unstable">
<a href="ol.format.IGC.html#readFeature">readFeature</a>
</li>
<li data-name="ol.format.IGC#readFeatures" class="unstable">
<a href="ol.format.IGC.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.IGC#readProjection" class="unstable">
<a href="ol.format.IGC.html#readProjection">readProjection</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.format.JSONFeature">
<span class="title">
<a href="ol.format.JSONFeature.html">ol.format.JSONFeature</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.KML">
<span class="title">
<a href="ol.format.KML.html">ol.format.KML</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.KML#readFeature" class="">
<a href="ol.format.KML.html#readFeature">readFeature</a>
</li>
<li data-name="ol.format.KML#readFeatures" class="">
<a href="ol.format.KML.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.KML#readName" class="">
<a href="ol.format.KML.html#readName">readName</a>
</li>
<li data-name="ol.format.KML#readProjection" class="">
<a href="ol.format.KML.html#readProjection">readProjection</a>
</li>
<li data-name="ol.format.KML#writeFeatures" class="">
<a href="ol.format.KML.html#writeFeatures">writeFeatures</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.format.OSMXML">
<span class="title">
<a href="ol.format.OSMXML.html">ol.format.OSMXML</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.OSMXML#readFeatures" class="">
<a href="ol.format.OSMXML.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.OSMXML#readProjection" class="">
<a href="ol.format.OSMXML.html#readProjection">readProjection</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.format.Polyline">
<span class="title">
<a href="ol.format.Polyline.html">ol.format.Polyline</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.Polyline.decodeDeltas" class="unstable">
<a href="ol.format.Polyline.html#decodeDeltas">decodeDeltas</a>
</li>
<li data-name="ol.format.Polyline.decodeFloats" class="unstable">
<a href="ol.format.Polyline.html#decodeFloats">decodeFloats</a>
</li>
<li data-name="ol.format.Polyline.encodeDeltas" class="unstable">
<a href="ol.format.Polyline.html#encodeDeltas">encodeDeltas</a>
</li>
<li data-name="ol.format.Polyline.encodeFloats" class="unstable">
<a href="ol.format.Polyline.html#encodeFloats">encodeFloats</a>
</li>
<li data-name="ol.format.Polyline#readFeature" class="">
<a href="ol.format.Polyline.html#readFeature">readFeature</a>
</li>
<li data-name="ol.format.Polyline#readFeatures" class="">
<a href="ol.format.Polyline.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.Polyline#readGeometry" class="">
<a href="ol.format.Polyline.html#readGeometry">readGeometry</a>
</li>
<li data-name="ol.format.Polyline#readProjection" class="">
<a href="ol.format.Polyline.html#readProjection">readProjection</a>
</li>
<li data-name="ol.format.Polyline#writeGeometry" class="">
<a href="ol.format.Polyline.html#writeGeometry">writeGeometry</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.format.TextFeature">
<span class="title">
<a href="ol.format.TextFeature.html">ol.format.TextFeature</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.TopoJSON">
<span class="title">
<a href="ol.format.TopoJSON.html">ol.format.TopoJSON</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.TopoJSON#readFeatures" class="">
<a href="ol.format.TopoJSON.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.TopoJSON#readProjection" class="">
<a href="ol.format.TopoJSON.html#readProjection">readProjection</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.format.WFS">
<span class="title">
<a href="ol.format.WFS.html">ol.format.WFS</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.format.WFS.FeatureCollectionMetadata" class="">
<a href="ol.format.WFS.html#FeatureCollectionMetadata">FeatureCollectionMetadata</a>
</li>
<li data-name="ol.format.WFS.TransactionResponse" class="">
<a href="ol.format.WFS.html#TransactionResponse">TransactionResponse</a>
</li>
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.WFS#readFeatureCollectionMetadata" class="">
<a href="ol.format.WFS.html#readFeatureCollectionMetadata">readFeatureCollectionMetadata</a>
</li>
<li data-name="ol.format.WFS#readFeatures" class="">
<a href="ol.format.WFS.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.WFS#readProjection" class="">
<a href="ol.format.WFS.html#readProjection">readProjection</a>
</li>
<li data-name="ol.format.WFS#readTransactionResponse" class="">
<a href="ol.format.WFS.html#readTransactionResponse">readTransactionResponse</a>
</li>
<li data-name="ol.format.WFS#writeGetFeature" class="">
<a href="ol.format.WFS.html#writeGetFeature">writeGetFeature</a>
</li>
<li data-name="ol.format.WFS#writeTransaction" class="">
<a href="ol.format.WFS.html#writeTransaction">writeTransaction</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.format.WKT">
<span class="title">
<a href="ol.format.WKT.html">ol.format.WKT</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.WKT#readFeature" class="">
<a href="ol.format.WKT.html#readFeature">readFeature</a>
</li>
<li data-name="ol.format.WKT#readFeatures" class="">
<a href="ol.format.WKT.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.WKT#readGeometry" class="">
<a href="ol.format.WKT.html#readGeometry">readGeometry</a>
</li>
<li data-name="ol.format.WKT#writeFeature" class="">
<a href="ol.format.WKT.html#writeFeature">writeFeature</a>
</li>
<li data-name="ol.format.WKT#writeFeatures" class="">
<a href="ol.format.WKT.html#writeFeatures">writeFeatures</a>
</li>
<li data-name="ol.format.WKT#writeGeometry" class="">
<a href="ol.format.WKT.html#writeGeometry">writeGeometry</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.format.WMSCapabilities">
<span class="title">
<a href="ol.format.WMSCapabilities.html">ol.format.WMSCapabilities</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.WMSCapabilities#read" class="unstable">
<a href="ol.format.WMSCapabilities.html#read">read</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.format.XML">
<span class="title">
<a href="ol.format.XML.html">ol.format.XML</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.XMLFeature">
<span class="title">
<a href="ol.format.XMLFeature.html">ol.format.XMLFeature</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.geom">
<span class="title">
<a href="ol.geom.html">ol.geom</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.geom.GeometryLayout" class="">
<a href="ol.geom.html#GeometryLayout">GeometryLayout</a>
</li>
<li data-name="ol.geom.GeometryType" class="">
<a href="ol.geom.html#GeometryType">GeometryType</a>
</li>
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.geom.Circle">
<span class="title">
<a href="ol.geom.Circle.html">ol.geom.Circle</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.Circle#applyTransform" class="">
<a href="ol.geom.Circle.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.Circle#clone" class="unstable">
<a href="ol.geom.Circle.html#clone">clone</a>
</li>
<li data-name="ol.geom.Circle#dispatchChangeEvent" class="unstable">
<a href="ol.geom.Circle.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.geom.Circle#getCenter" class="unstable">
<a href="ol.geom.Circle.html#getCenter">getCenter</a>
</li>
<li data-name="ol.geom.Circle#getClosestPoint" class="">
<a href="ol.geom.Circle.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.Circle#getExtent" class="">
<a href="ol.geom.Circle.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.Circle#getFirstCoordinate" class="">
<a href="ol.geom.Circle.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.Circle#getLastCoordinate" class="">
<a href="ol.geom.Circle.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.Circle#getLayout" class="">
<a href="ol.geom.Circle.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.Circle#getRadius" class="unstable">
<a href="ol.geom.Circle.html#getRadius">getRadius</a>
</li>
<li data-name="ol.geom.Circle#getRevision" class="unstable">
<a href="ol.geom.Circle.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.Circle#getType" class="">
<a href="ol.geom.Circle.html#getType">getType</a>
</li>
<li data-name="ol.geom.Circle#on" class="">
<a href="ol.geom.Circle.html#on">on</a>
</li>
<li data-name="ol.geom.Circle#once" class="">
<a href="ol.geom.Circle.html#once">once</a>
</li>
<li data-name="ol.geom.Circle#setCenter" class="unstable">
<a href="ol.geom.Circle.html#setCenter">setCenter</a>
</li>
<li data-name="ol.geom.Circle#setCenterAndRadius" class="unstable">
<a href="ol.geom.Circle.html#setCenterAndRadius">setCenterAndRadius</a>
</li>
<li data-name="ol.geom.Circle#setRadius" class="unstable">
<a href="ol.geom.Circle.html#setRadius">setRadius</a>
</li>
<li data-name="ol.geom.Circle#transform" class="">
<a href="ol.geom.Circle.html#transform">transform</a>
</li>
<li data-name="ol.geom.Circle#un" class="">
<a href="ol.geom.Circle.html#un">un</a>
</li>
<li data-name="ol.geom.Circle#unByKey" class="">
<a href="ol.geom.Circle.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.Geometry">
<span class="title">
<a href="ol.geom.Geometry.html">ol.geom.Geometry</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.Geometry#applyTransform" class="">
<a href="ol.geom.Geometry.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.Geometry#clone" class="">
<a href="ol.geom.Geometry.html#clone">clone</a>
</li>
<li data-name="ol.geom.Geometry#dispatchChangeEvent" class="unstable">
<a href="ol.geom.Geometry.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.geom.Geometry#getClosestPoint" class="">
<a href="ol.geom.Geometry.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.Geometry#getExtent" class="">
<a href="ol.geom.Geometry.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.Geometry#getRevision" class="unstable">
<a href="ol.geom.Geometry.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.Geometry#getType" class="">
<a href="ol.geom.Geometry.html#getType">getType</a>
</li>
<li data-name="ol.geom.Geometry#on" class="">
<a href="ol.geom.Geometry.html#on">on</a>
</li>
<li data-name="ol.geom.Geometry#once" class="">
<a href="ol.geom.Geometry.html#once">once</a>
</li>
<li data-name="ol.geom.Geometry#transform" class="">
<a href="ol.geom.Geometry.html#transform">transform</a>
</li>
<li data-name="ol.geom.Geometry#un" class="">
<a href="ol.geom.Geometry.html#un">un</a>
</li>
<li data-name="ol.geom.Geometry#unByKey" class="">
<a href="ol.geom.Geometry.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.GeometryCollection">
<span class="title">
<a href="ol.geom.GeometryCollection.html">ol.geom.GeometryCollection</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.GeometryCollection#applyTransform" class="">
<a href="ol.geom.GeometryCollection.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.GeometryCollection#clone" class="">
<a href="ol.geom.GeometryCollection.html#clone">clone</a>
</li>
<li data-name="ol.geom.GeometryCollection#dispatchChangeEvent" class="unstable">
<a href="ol.geom.GeometryCollection.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.geom.GeometryCollection#getClosestPoint" class="">
<a href="ol.geom.GeometryCollection.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.GeometryCollection#getExtent" class="">
<a href="ol.geom.GeometryCollection.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.GeometryCollection#getGeometries" class="">
<a href="ol.geom.GeometryCollection.html#getGeometries">getGeometries</a>
</li>
<li data-name="ol.geom.GeometryCollection#getRevision" class="unstable">
<a href="ol.geom.GeometryCollection.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.GeometryCollection#getType" class="">
<a href="ol.geom.GeometryCollection.html#getType">getType</a>
</li>
<li data-name="ol.geom.GeometryCollection#on" class="">
<a href="ol.geom.GeometryCollection.html#on">on</a>
</li>
<li data-name="ol.geom.GeometryCollection#once" class="">
<a href="ol.geom.GeometryCollection.html#once">once</a>
</li>
<li data-name="ol.geom.GeometryCollection#setGeometries" class="">
<a href="ol.geom.GeometryCollection.html#setGeometries">setGeometries</a>
</li>
<li data-name="ol.geom.GeometryCollection#transform" class="">
<a href="ol.geom.GeometryCollection.html#transform">transform</a>
</li>
<li data-name="ol.geom.GeometryCollection#un" class="">
<a href="ol.geom.GeometryCollection.html#un">un</a>
</li>
<li data-name="ol.geom.GeometryCollection#unByKey" class="">
<a href="ol.geom.GeometryCollection.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.LineString">
<span class="title">
<a href="ol.geom.LineString.html">ol.geom.LineString</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.LineString#appendCoordinate" class="">
<a href="ol.geom.LineString.html#appendCoordinate">appendCoordinate</a>
</li>
<li data-name="ol.geom.LineString#applyTransform" class="">
<a href="ol.geom.LineString.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.LineString#clone" class="">
<a href="ol.geom.LineString.html#clone">clone</a>
</li>
<li data-name="ol.geom.LineString#dispatchChangeEvent" class="unstable">
<a href="ol.geom.LineString.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.geom.LineString#getClosestPoint" class="">
<a href="ol.geom.LineString.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.LineString#getCoordinateAtM" class="">
<a href="ol.geom.LineString.html#getCoordinateAtM">getCoordinateAtM</a>
</li>
<li data-name="ol.geom.LineString#getCoordinates" class="">
<a href="ol.geom.LineString.html#getCoordinates">getCoordinates</a>
</li>
<li data-name="ol.geom.LineString#getExtent" class="">
<a href="ol.geom.LineString.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.LineString#getFirstCoordinate" class="">
<a href="ol.geom.LineString.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.LineString#getLastCoordinate" class="">
<a href="ol.geom.LineString.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.LineString#getLayout" class="">
<a href="ol.geom.LineString.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.LineString#getLength" class="">
<a href="ol.geom.LineString.html#getLength">getLength</a>
</li>
<li data-name="ol.geom.LineString#getRevision" class="unstable">
<a href="ol.geom.LineString.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.LineString#getType" class="">
<a href="ol.geom.LineString.html#getType">getType</a>
</li>
<li data-name="ol.geom.LineString#on" class="">
<a href="ol.geom.LineString.html#on">on</a>
</li>
<li data-name="ol.geom.LineString#once" class="">
<a href="ol.geom.LineString.html#once">once</a>
</li>
<li data-name="ol.geom.LineString#setCoordinates" class="">
<a href="ol.geom.LineString.html#setCoordinates">setCoordinates</a>
</li>
<li data-name="ol.geom.LineString#transform" class="">
<a href="ol.geom.LineString.html#transform">transform</a>
</li>
<li data-name="ol.geom.LineString#un" class="">
<a href="ol.geom.LineString.html#un">un</a>
</li>
<li data-name="ol.geom.LineString#unByKey" class="">
<a href="ol.geom.LineString.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.LinearRing">
<span class="title">
<a href="ol.geom.LinearRing.html">ol.geom.LinearRing</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.LinearRing#applyTransform" class="">
<a href="ol.geom.LinearRing.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.LinearRing#clone" class="">
<a href="ol.geom.LinearRing.html#clone">clone</a>
</li>
<li data-name="ol.geom.LinearRing#dispatchChangeEvent" class="unstable">
<a href="ol.geom.LinearRing.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.geom.LinearRing#getArea" class="">
<a href="ol.geom.LinearRing.html#getArea">getArea</a>
</li>
<li data-name="ol.geom.LinearRing#getClosestPoint" class="">
<a href="ol.geom.LinearRing.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.LinearRing#getCoordinates" class="">
<a href="ol.geom.LinearRing.html#getCoordinates">getCoordinates</a>
</li>
<li data-name="ol.geom.LinearRing#getExtent" class="">
<a href="ol.geom.LinearRing.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.LinearRing#getFirstCoordinate" class="">
<a href="ol.geom.LinearRing.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.LinearRing#getLastCoordinate" class="">
<a href="ol.geom.LinearRing.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.LinearRing#getLayout" class="">
<a href="ol.geom.LinearRing.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.LinearRing#getRevision" class="unstable">
<a href="ol.geom.LinearRing.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.LinearRing#getType" class="">
<a href="ol.geom.LinearRing.html#getType">getType</a>
</li>
<li data-name="ol.geom.LinearRing#on" class="">
<a href="ol.geom.LinearRing.html#on">on</a>
</li>
<li data-name="ol.geom.LinearRing#once" class="">
<a href="ol.geom.LinearRing.html#once">once</a>
</li>
<li data-name="ol.geom.LinearRing#setCoordinates" class="">
<a href="ol.geom.LinearRing.html#setCoordinates">setCoordinates</a>
</li>
<li data-name="ol.geom.LinearRing#transform" class="">
<a href="ol.geom.LinearRing.html#transform">transform</a>
</li>
<li data-name="ol.geom.LinearRing#un" class="">
<a href="ol.geom.LinearRing.html#un">un</a>
</li>
<li data-name="ol.geom.LinearRing#unByKey" class="">
<a href="ol.geom.LinearRing.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.MultiLineString">
<span class="title">
<a href="ol.geom.MultiLineString.html">ol.geom.MultiLineString</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.MultiLineString#appendLineString" class="">
<a href="ol.geom.MultiLineString.html#appendLineString">appendLineString</a>
</li>
<li data-name="ol.geom.MultiLineString#applyTransform" class="">
<a href="ol.geom.MultiLineString.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.MultiLineString#clone" class="">
<a href="ol.geom.MultiLineString.html#clone">clone</a>
</li>
<li data-name="ol.geom.MultiLineString#dispatchChangeEvent" class="unstable">
<a href="ol.geom.MultiLineString.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.geom.MultiLineString#getClosestPoint" class="">
<a href="ol.geom.MultiLineString.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.MultiLineString#getCoordinateAtM" class="">
<a href="ol.geom.MultiLineString.html#getCoordinateAtM">getCoordinateAtM</a>
</li>
<li data-name="ol.geom.MultiLineString#getCoordinates" class="">
<a href="ol.geom.MultiLineString.html#getCoordinates">getCoordinates</a>
</li>
<li data-name="ol.geom.MultiLineString#getExtent" class="">
<a href="ol.geom.MultiLineString.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.MultiLineString#getFirstCoordinate" class="">
<a href="ol.geom.MultiLineString.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.MultiLineString#getLastCoordinate" class="">
<a href="ol.geom.MultiLineString.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.MultiLineString#getLayout" class="">
<a href="ol.geom.MultiLineString.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.MultiLineString#getLineString" class="">
<a href="ol.geom.MultiLineString.html#getLineString">getLineString</a>
</li>
<li data-name="ol.geom.MultiLineString#getLineStrings" class="">
<a href="ol.geom.MultiLineString.html#getLineStrings">getLineStrings</a>
</li>
<li data-name="ol.geom.MultiLineString#getRevision" class="unstable">
<a href="ol.geom.MultiLineString.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.MultiLineString#getType" class="">
<a href="ol.geom.MultiLineString.html#getType">getType</a>
</li>
<li data-name="ol.geom.MultiLineString#on" class="">
<a href="ol.geom.MultiLineString.html#on">on</a>
</li>
<li data-name="ol.geom.MultiLineString#once" class="">
<a href="ol.geom.MultiLineString.html#once">once</a>
</li>
<li data-name="ol.geom.MultiLineString#setCoordinates" class="">
<a href="ol.geom.MultiLineString.html#setCoordinates">setCoordinates</a>
</li>
<li data-name="ol.geom.MultiLineString#transform" class="">
<a href="ol.geom.MultiLineString.html#transform">transform</a>
</li>
<li data-name="ol.geom.MultiLineString#un" class="">
<a href="ol.geom.MultiLineString.html#un">un</a>
</li>
<li data-name="ol.geom.MultiLineString#unByKey" class="">
<a href="ol.geom.MultiLineString.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.MultiPoint">
<span class="title">
<a href="ol.geom.MultiPoint.html">ol.geom.MultiPoint</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.MultiPoint#appendPoint" class="">
<a href="ol.geom.MultiPoint.html#appendPoint">appendPoint</a>
</li>
<li data-name="ol.geom.MultiPoint#applyTransform" class="">
<a href="ol.geom.MultiPoint.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.MultiPoint#clone" class="">
<a href="ol.geom.MultiPoint.html#clone">clone</a>
</li>
<li data-name="ol.geom.MultiPoint#dispatchChangeEvent" class="unstable">
<a href="ol.geom.MultiPoint.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.geom.MultiPoint#getClosestPoint" class="">
<a href="ol.geom.MultiPoint.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.MultiPoint#getCoordinates" class="">
<a href="ol.geom.MultiPoint.html#getCoordinates">getCoordinates</a>
</li>
<li data-name="ol.geom.MultiPoint#getExtent" class="">
<a href="ol.geom.MultiPoint.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.MultiPoint#getFirstCoordinate" class="">
<a href="ol.geom.MultiPoint.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.MultiPoint#getLastCoordinate" class="">
<a href="ol.geom.MultiPoint.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.MultiPoint#getLayout" class="">
<a href="ol.geom.MultiPoint.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.MultiPoint#getPoint" class="">
<a href="ol.geom.MultiPoint.html#getPoint">getPoint</a>
</li>
<li data-name="ol.geom.MultiPoint#getPoints" class="">
<a href="ol.geom.MultiPoint.html#getPoints">getPoints</a>
</li>
<li data-name="ol.geom.MultiPoint#getRevision" class="unstable">
<a href="ol.geom.MultiPoint.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.MultiPoint#getType" class="">
<a href="ol.geom.MultiPoint.html#getType">getType</a>
</li>
<li data-name="ol.geom.MultiPoint#on" class="">
<a href="ol.geom.MultiPoint.html#on">on</a>
</li>
<li data-name="ol.geom.MultiPoint#once" class="">
<a href="ol.geom.MultiPoint.html#once">once</a>
</li>
<li data-name="ol.geom.MultiPoint#setCoordinates" class="">
<a href="ol.geom.MultiPoint.html#setCoordinates">setCoordinates</a>
</li>
<li data-name="ol.geom.MultiPoint#transform" class="">
<a href="ol.geom.MultiPoint.html#transform">transform</a>
</li>
<li data-name="ol.geom.MultiPoint#un" class="">
<a href="ol.geom.MultiPoint.html#un">un</a>
</li>
<li data-name="ol.geom.MultiPoint#unByKey" class="">
<a href="ol.geom.MultiPoint.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.MultiPolygon">
<span class="title">
<a href="ol.geom.MultiPolygon.html">ol.geom.MultiPolygon</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.MultiPolygon#appendPolygon" class="">
<a href="ol.geom.MultiPolygon.html#appendPolygon">appendPolygon</a>
</li>
<li data-name="ol.geom.MultiPolygon#applyTransform" class="">
<a href="ol.geom.MultiPolygon.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.MultiPolygon#clone" class="">
<a href="ol.geom.MultiPolygon.html#clone">clone</a>
</li>
<li data-name="ol.geom.MultiPolygon#dispatchChangeEvent" class="unstable">
<a href="ol.geom.MultiPolygon.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.geom.MultiPolygon#getArea" class="">
<a href="ol.geom.MultiPolygon.html#getArea">getArea</a>
</li>
<li data-name="ol.geom.MultiPolygon#getClosestPoint" class="">
<a href="ol.geom.MultiPolygon.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.MultiPolygon#getCoordinates" class="">
<a href="ol.geom.MultiPolygon.html#getCoordinates">getCoordinates</a>
</li>
<li data-name="ol.geom.MultiPolygon#getExtent" class="">
<a href="ol.geom.MultiPolygon.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.MultiPolygon#getFirstCoordinate" class="">
<a href="ol.geom.MultiPolygon.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.MultiPolygon#getInteriorPoints" class="">
<a href="ol.geom.MultiPolygon.html#getInteriorPoints">getInteriorPoints</a>
</li>
<li data-name="ol.geom.MultiPolygon#getLastCoordinate" class="">
<a href="ol.geom.MultiPolygon.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.MultiPolygon#getLayout" class="">
<a href="ol.geom.MultiPolygon.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.MultiPolygon#getPolygon" class="">
<a href="ol.geom.MultiPolygon.html#getPolygon">getPolygon</a>
</li>
<li data-name="ol.geom.MultiPolygon#getPolygons" class="">
<a href="ol.geom.MultiPolygon.html#getPolygons">getPolygons</a>
</li>
<li data-name="ol.geom.MultiPolygon#getRevision" class="unstable">
<a href="ol.geom.MultiPolygon.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.MultiPolygon#getType" class="">
<a href="ol.geom.MultiPolygon.html#getType">getType</a>
</li>
<li data-name="ol.geom.MultiPolygon#on" class="">
<a href="ol.geom.MultiPolygon.html#on">on</a>
</li>
<li data-name="ol.geom.MultiPolygon#once" class="">
<a href="ol.geom.MultiPolygon.html#once">once</a>
</li>
<li data-name="ol.geom.MultiPolygon#setCoordinates" class="">
<a href="ol.geom.MultiPolygon.html#setCoordinates">setCoordinates</a>
</li>
<li data-name="ol.geom.MultiPolygon#transform" class="">
<a href="ol.geom.MultiPolygon.html#transform">transform</a>
</li>
<li data-name="ol.geom.MultiPolygon#un" class="">
<a href="ol.geom.MultiPolygon.html#un">un</a>
</li>
<li data-name="ol.geom.MultiPolygon#unByKey" class="">
<a href="ol.geom.MultiPolygon.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.Point">
<span class="title">
<a href="ol.geom.Point.html">ol.geom.Point</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.Point#applyTransform" class="">
<a href="ol.geom.Point.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.Point#clone" class="">
<a href="ol.geom.Point.html#clone">clone</a>
</li>
<li data-name="ol.geom.Point#dispatchChangeEvent" class="unstable">
<a href="ol.geom.Point.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.geom.Point#getClosestPoint" class="">
<a href="ol.geom.Point.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.Point#getCoordinates" class="">
<a href="ol.geom.Point.html#getCoordinates">getCoordinates</a>
</li>
<li data-name="ol.geom.Point#getExtent" class="">
<a href="ol.geom.Point.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.Point#getFirstCoordinate" class="">
<a href="ol.geom.Point.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.Point#getLastCoordinate" class="">
<a href="ol.geom.Point.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.Point#getLayout" class="">
<a href="ol.geom.Point.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.Point#getRevision" class="unstable">
<a href="ol.geom.Point.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.Point#getType" class="">
<a href="ol.geom.Point.html#getType">getType</a>
</li>
<li data-name="ol.geom.Point#on" class="">
<a href="ol.geom.Point.html#on">on</a>
</li>
<li data-name="ol.geom.Point#once" class="">
<a href="ol.geom.Point.html#once">once</a>
</li>
<li data-name="ol.geom.Point#setCoordinates" class="">
<a href="ol.geom.Point.html#setCoordinates">setCoordinates</a>
</li>
<li data-name="ol.geom.Point#transform" class="">
<a href="ol.geom.Point.html#transform">transform</a>
</li>
<li data-name="ol.geom.Point#un" class="">
<a href="ol.geom.Point.html#un">un</a>
</li>
<li data-name="ol.geom.Point#unByKey" class="">
<a href="ol.geom.Point.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.Polygon">
<span class="title">
<a href="ol.geom.Polygon.html">ol.geom.Polygon</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.Polygon.circular" class="">
<a href="ol.geom.Polygon.html#circular">circular</a>
</li>
<li data-name="ol.geom.Polygon#appendLinearRing" class="">
<a href="ol.geom.Polygon.html#appendLinearRing">appendLinearRing</a>
</li>
<li data-name="ol.geom.Polygon#applyTransform" class="">
<a href="ol.geom.Polygon.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.Polygon#clone" class="">
<a href="ol.geom.Polygon.html#clone">clone</a>
</li>
<li data-name="ol.geom.Polygon#dispatchChangeEvent" class="unstable">
<a href="ol.geom.Polygon.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.geom.Polygon#getArea" class="">
<a href="ol.geom.Polygon.html#getArea">getArea</a>
</li>
<li data-name="ol.geom.Polygon#getClosestPoint" class="">
<a href="ol.geom.Polygon.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.Polygon#getCoordinates" class="">
<a href="ol.geom.Polygon.html#getCoordinates">getCoordinates</a>
</li>
<li data-name="ol.geom.Polygon#getExtent" class="">
<a href="ol.geom.Polygon.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.Polygon#getFirstCoordinate" class="">
<a href="ol.geom.Polygon.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.Polygon#getInteriorPoint" class="">
<a href="ol.geom.Polygon.html#getInteriorPoint">getInteriorPoint</a>
</li>
<li data-name="ol.geom.Polygon#getLastCoordinate" class="">
<a href="ol.geom.Polygon.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.Polygon#getLayout" class="">
<a href="ol.geom.Polygon.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.Polygon#getLinearRing" class="">
<a href="ol.geom.Polygon.html#getLinearRing">getLinearRing</a>
</li>
<li data-name="ol.geom.Polygon#getLinearRings" class="">
<a href="ol.geom.Polygon.html#getLinearRings">getLinearRings</a>
</li>
<li data-name="ol.geom.Polygon#getRevision" class="unstable">
<a href="ol.geom.Polygon.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.Polygon#getType" class="">
<a href="ol.geom.Polygon.html#getType">getType</a>
</li>
<li data-name="ol.geom.Polygon#on" class="">
<a href="ol.geom.Polygon.html#on">on</a>
</li>
<li data-name="ol.geom.Polygon#once" class="">
<a href="ol.geom.Polygon.html#once">once</a>
</li>
<li data-name="ol.geom.Polygon#setCoordinates" class="">
<a href="ol.geom.Polygon.html#setCoordinates">setCoordinates</a>
</li>
<li data-name="ol.geom.Polygon#transform" class="">
<a href="ol.geom.Polygon.html#transform">transform</a>
</li>
<li data-name="ol.geom.Polygon#un" class="">
<a href="ol.geom.Polygon.html#un">un</a>
</li>
<li data-name="ol.geom.Polygon#unByKey" class="">
<a href="ol.geom.Polygon.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.SimpleGeometry">
<span class="title">
<a href="ol.geom.SimpleGeometry.html">ol.geom.SimpleGeometry</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.SimpleGeometry#applyTransform" class="">
<a href="ol.geom.SimpleGeometry.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.SimpleGeometry#clone" class="">
<a href="ol.geom.SimpleGeometry.html#clone">clone</a>
</li>
<li data-name="ol.geom.SimpleGeometry#dispatchChangeEvent" class="unstable">
<a href="ol.geom.SimpleGeometry.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.geom.SimpleGeometry#getClosestPoint" class="">
<a href="ol.geom.SimpleGeometry.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.SimpleGeometry#getExtent" class="">
<a href="ol.geom.SimpleGeometry.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.SimpleGeometry#getFirstCoordinate" class="">
<a href="ol.geom.SimpleGeometry.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.SimpleGeometry#getLastCoordinate" class="">
<a href="ol.geom.SimpleGeometry.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.SimpleGeometry#getLayout" class="">
<a href="ol.geom.SimpleGeometry.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.SimpleGeometry#getRevision" class="unstable">
<a href="ol.geom.SimpleGeometry.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.SimpleGeometry#getType" class="">
<a href="ol.geom.SimpleGeometry.html#getType">getType</a>
</li>
<li data-name="ol.geom.SimpleGeometry#on" class="">
<a href="ol.geom.SimpleGeometry.html#on">on</a>
</li>
<li data-name="ol.geom.SimpleGeometry#once" class="">
<a href="ol.geom.SimpleGeometry.html#once">once</a>
</li>
<li data-name="ol.geom.SimpleGeometry#transform" class="">
<a href="ol.geom.SimpleGeometry.html#transform">transform</a>
</li>
<li data-name="ol.geom.SimpleGeometry#un" class="">
<a href="ol.geom.SimpleGeometry.html#un">un</a>
</li>
<li data-name="ol.geom.SimpleGeometry#unByKey" class="">
<a href="ol.geom.SimpleGeometry.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.has">
<span class="title">
<a href="ol.has.html">ol.has</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.has.CANVAS"><a href="ol.has.html#CANVAS">CANVAS</a></li>
<li data-name="ol.has.DEVICE_ORIENTATION"><a href="ol.has.html#DEVICE_ORIENTATION">DEVICE_ORIENTATION</a></li>
<li data-name="ol.has.DEVICE_PIXEL_RATIO"><a href="ol.has.html#DEVICE_PIXEL_RATIO">DEVICE_PIXEL_RATIO</a></li>
<li data-name="ol.has.GEOLOCATION"><a href="ol.has.html#GEOLOCATION">GEOLOCATION</a></li>
<li data-name="ol.has.TOUCH"><a href="ol.has.html#TOUCH">TOUCH</a></li>
<li data-name="ol.has.WEBGL"><a href="ol.has.html#WEBGL">WEBGL</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.interaction">
<span class="title">
<a href="ol.interaction.html">ol.interaction</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.defaults" class="">
<a href="ol.interaction.html#defaults">defaults</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.DoubleClickZoom">
<span class="title">
<a href="ol.interaction.DoubleClickZoom.html">ol.interaction.DoubleClickZoom</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.DoubleClickZoom#dispatchChangeEvent" class="unstable">
<a href="ol.interaction.DoubleClickZoom.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#getRevision" class="unstable">
<a href="ol.interaction.DoubleClickZoom.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#on" class="">
<a href="ol.interaction.DoubleClickZoom.html#on">on</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#once" class="">
<a href="ol.interaction.DoubleClickZoom.html#once">once</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#un" class="">
<a href="ol.interaction.DoubleClickZoom.html#un">un</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#unByKey" class="">
<a href="ol.interaction.DoubleClickZoom.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.DragAndDrop">
<span class="title">
<a href="ol.interaction.DragAndDrop.html">ol.interaction.DragAndDrop</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.DragAndDrop#dispatchChangeEvent" class="unstable">
<a href="ol.interaction.DragAndDrop.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.interaction.DragAndDrop#getRevision" class="unstable">
<a href="ol.interaction.DragAndDrop.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.DragAndDrop#on" class="">
<a href="ol.interaction.DragAndDrop.html#on">on</a>
</li>
<li data-name="ol.interaction.DragAndDrop#once" class="">
<a href="ol.interaction.DragAndDrop.html#once">once</a>
</li>
<li data-name="ol.interaction.DragAndDrop#un" class="">
<a href="ol.interaction.DragAndDrop.html#un">un</a>
</li>
<li data-name="ol.interaction.DragAndDrop#unByKey" class="">
<a href="ol.interaction.DragAndDrop.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.DragAndDropEvent">
<span class="title">
<a href="ol.interaction.DragAndDropEvent.html">ol.interaction.DragAndDropEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.interaction.DragAndDropEvent#features"><a href="ol.interaction.DragAndDropEvent.html#features">features</a></li>
<li data-name="ol.interaction.DragAndDropEvent#file"><a href="ol.interaction.DragAndDropEvent.html#file">file</a></li>
<li data-name="ol.interaction.DragAndDropEvent#projection"><a href="ol.interaction.DragAndDropEvent.html#projection">projection</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.interaction.DragBox">
<span class="title">
<a href="ol.interaction.DragBox.html">ol.interaction.DragBox</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.DragBox#dispatchChangeEvent" class="unstable">
<a href="ol.interaction.DragBox.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.interaction.DragBox#getGeometry" class="">
<a href="ol.interaction.DragBox.html#getGeometry">getGeometry</a>
</li>
<li data-name="ol.interaction.DragBox#getRevision" class="unstable">
<a href="ol.interaction.DragBox.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.DragBox#on" class="">
<a href="ol.interaction.DragBox.html#on">on</a>
</li>
<li data-name="ol.interaction.DragBox#once" class="">
<a href="ol.interaction.DragBox.html#once">once</a>
</li>
<li data-name="ol.interaction.DragBox#un" class="">
<a href="ol.interaction.DragBox.html#un">un</a>
</li>
<li data-name="ol.interaction.DragBox#unByKey" class="">
<a href="ol.interaction.DragBox.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.DragPan">
<span class="title">
<a href="ol.interaction.DragPan.html">ol.interaction.DragPan</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.DragPan#dispatchChangeEvent" class="unstable">
<a href="ol.interaction.DragPan.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.interaction.DragPan#getRevision" class="unstable">
<a href="ol.interaction.DragPan.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.DragPan#on" class="">
<a href="ol.interaction.DragPan.html#on">on</a>
</li>
<li data-name="ol.interaction.DragPan#once" class="">
<a href="ol.interaction.DragPan.html#once">once</a>
</li>
<li data-name="ol.interaction.DragPan#un" class="">
<a href="ol.interaction.DragPan.html#un">un</a>
</li>
<li data-name="ol.interaction.DragPan#unByKey" class="">
<a href="ol.interaction.DragPan.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.DragRotate">
<span class="title">
<a href="ol.interaction.DragRotate.html">ol.interaction.DragRotate</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.DragRotate#dispatchChangeEvent" class="unstable">
<a href="ol.interaction.DragRotate.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.interaction.DragRotate#getRevision" class="unstable">
<a href="ol.interaction.DragRotate.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.DragRotate#on" class="">
<a href="ol.interaction.DragRotate.html#on">on</a>
</li>
<li data-name="ol.interaction.DragRotate#once" class="">
<a href="ol.interaction.DragRotate.html#once">once</a>
</li>
<li data-name="ol.interaction.DragRotate#un" class="">
<a href="ol.interaction.DragRotate.html#un">un</a>
</li>
<li data-name="ol.interaction.DragRotate#unByKey" class="">
<a href="ol.interaction.DragRotate.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.DragRotateAndZoom">
<span class="title">
<a href="ol.interaction.DragRotateAndZoom.html">ol.interaction.DragRotateAndZoom</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.DragRotateAndZoom#dispatchChangeEvent" class="unstable">
<a href="ol.interaction.DragRotateAndZoom.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#getRevision" class="unstable">
<a href="ol.interaction.DragRotateAndZoom.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#on" class="">
<a href="ol.interaction.DragRotateAndZoom.html#on">on</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#once" class="">
<a href="ol.interaction.DragRotateAndZoom.html#once">once</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#un" class="">
<a href="ol.interaction.DragRotateAndZoom.html#un">un</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#unByKey" class="">
<a href="ol.interaction.DragRotateAndZoom.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.DragZoom">
<span class="title">
<a href="ol.interaction.DragZoom.html">ol.interaction.DragZoom</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.DragZoom#dispatchChangeEvent" class="unstable">
<a href="ol.interaction.DragZoom.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.interaction.DragZoom#getGeometry" class="">
<a href="ol.interaction.DragZoom.html#getGeometry">getGeometry</a>
</li>
<li data-name="ol.interaction.DragZoom#getRevision" class="unstable">
<a href="ol.interaction.DragZoom.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.DragZoom#on" class="">
<a href="ol.interaction.DragZoom.html#on">on</a>
</li>
<li data-name="ol.interaction.DragZoom#once" class="">
<a href="ol.interaction.DragZoom.html#once">once</a>
</li>
<li data-name="ol.interaction.DragZoom#un" class="">
<a href="ol.interaction.DragZoom.html#un">un</a>
</li>
<li data-name="ol.interaction.DragZoom#unByKey" class="">
<a href="ol.interaction.DragZoom.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.Draw">
<span class="title">
<a href="ol.interaction.Draw.html">ol.interaction.Draw</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.Draw#dispatchChangeEvent" class="unstable">
<a href="ol.interaction.Draw.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.interaction.Draw#getRevision" class="unstable">
<a href="ol.interaction.Draw.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.Draw#on" class="">
<a href="ol.interaction.Draw.html#on">on</a>
</li>
<li data-name="ol.interaction.Draw#once" class="">
<a href="ol.interaction.Draw.html#once">once</a>
</li>
<li data-name="ol.interaction.Draw#un" class="">
<a href="ol.interaction.Draw.html#un">un</a>
</li>
<li data-name="ol.interaction.Draw#unByKey" class="">
<a href="ol.interaction.Draw.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.Interaction">
<span class="title">
<a href="ol.interaction.Interaction.html">ol.interaction.Interaction</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.Interaction#dispatchChangeEvent" class="unstable">
<a href="ol.interaction.Interaction.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.interaction.Interaction#getRevision" class="unstable">
<a href="ol.interaction.Interaction.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.Interaction#on" class="">
<a href="ol.interaction.Interaction.html#on">on</a>
</li>
<li data-name="ol.interaction.Interaction#once" class="">
<a href="ol.interaction.Interaction.html#once">once</a>
</li>
<li data-name="ol.interaction.Interaction#un" class="">
<a href="ol.interaction.Interaction.html#un">un</a>
</li>
<li data-name="ol.interaction.Interaction#unByKey" class="">
<a href="ol.interaction.Interaction.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.KeyboardPan">
<span class="title">
<a href="ol.interaction.KeyboardPan.html">ol.interaction.KeyboardPan</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.KeyboardPan#dispatchChangeEvent" class="unstable">
<a href="ol.interaction.KeyboardPan.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.interaction.KeyboardPan#getRevision" class="unstable">
<a href="ol.interaction.KeyboardPan.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.KeyboardPan#on" class="">
<a href="ol.interaction.KeyboardPan.html#on">on</a>
</li>
<li data-name="ol.interaction.KeyboardPan#once" class="">
<a href="ol.interaction.KeyboardPan.html#once">once</a>
</li>
<li data-name="ol.interaction.KeyboardPan#un" class="">
<a href="ol.interaction.KeyboardPan.html#un">un</a>
</li>
<li data-name="ol.interaction.KeyboardPan#unByKey" class="">
<a href="ol.interaction.KeyboardPan.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.KeyboardZoom">
<span class="title">
<a href="ol.interaction.KeyboardZoom.html">ol.interaction.KeyboardZoom</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.KeyboardZoom#dispatchChangeEvent" class="unstable">
<a href="ol.interaction.KeyboardZoom.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#getRevision" class="unstable">
<a href="ol.interaction.KeyboardZoom.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#on" class="">
<a href="ol.interaction.KeyboardZoom.html#on">on</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#once" class="">
<a href="ol.interaction.KeyboardZoom.html#once">once</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#un" class="">
<a href="ol.interaction.KeyboardZoom.html#un">un</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#unByKey" class="">
<a href="ol.interaction.KeyboardZoom.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.Modify">
<span class="title">
<a href="ol.interaction.Modify.html">ol.interaction.Modify</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.Modify#dispatchChangeEvent" class="unstable">
<a href="ol.interaction.Modify.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.interaction.Modify#getRevision" class="unstable">
<a href="ol.interaction.Modify.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.Modify#on" class="">
<a href="ol.interaction.Modify.html#on">on</a>
</li>
<li data-name="ol.interaction.Modify#once" class="">
<a href="ol.interaction.Modify.html#once">once</a>
</li>
<li data-name="ol.interaction.Modify#un" class="">
<a href="ol.interaction.Modify.html#un">un</a>
</li>
<li data-name="ol.interaction.Modify#unByKey" class="">
<a href="ol.interaction.Modify.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.MouseWheelZoom">
<span class="title">
<a href="ol.interaction.MouseWheelZoom.html">ol.interaction.MouseWheelZoom</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.MouseWheelZoom#dispatchChangeEvent" class="unstable">
<a href="ol.interaction.MouseWheelZoom.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#getRevision" class="unstable">
<a href="ol.interaction.MouseWheelZoom.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#on" class="">
<a href="ol.interaction.MouseWheelZoom.html#on">on</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#once" class="">
<a href="ol.interaction.MouseWheelZoom.html#once">once</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#un" class="">
<a href="ol.interaction.MouseWheelZoom.html#un">un</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#unByKey" class="">
<a href="ol.interaction.MouseWheelZoom.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.PinchRotate">
<span class="title">
<a href="ol.interaction.PinchRotate.html">ol.interaction.PinchRotate</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.PinchRotate#dispatchChangeEvent" class="unstable">
<a href="ol.interaction.PinchRotate.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.interaction.PinchRotate#getRevision" class="unstable">
<a href="ol.interaction.PinchRotate.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.PinchRotate#on" class="">
<a href="ol.interaction.PinchRotate.html#on">on</a>
</li>
<li data-name="ol.interaction.PinchRotate#once" class="">
<a href="ol.interaction.PinchRotate.html#once">once</a>
</li>
<li data-name="ol.interaction.PinchRotate#un" class="">
<a href="ol.interaction.PinchRotate.html#un">un</a>
</li>
<li data-name="ol.interaction.PinchRotate#unByKey" class="">
<a href="ol.interaction.PinchRotate.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.PinchZoom">
<span class="title">
<a href="ol.interaction.PinchZoom.html">ol.interaction.PinchZoom</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.PinchZoom#dispatchChangeEvent" class="unstable">
<a href="ol.interaction.PinchZoom.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.interaction.PinchZoom#getRevision" class="unstable">
<a href="ol.interaction.PinchZoom.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.PinchZoom#on" class="">
<a href="ol.interaction.PinchZoom.html#on">on</a>
</li>
<li data-name="ol.interaction.PinchZoom#once" class="">
<a href="ol.interaction.PinchZoom.html#once">once</a>
</li>
<li data-name="ol.interaction.PinchZoom#un" class="">
<a href="ol.interaction.PinchZoom.html#un">un</a>
</li>
<li data-name="ol.interaction.PinchZoom#unByKey" class="">
<a href="ol.interaction.PinchZoom.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.Pointer">
<span class="title">
<a href="ol.interaction.Pointer.html">ol.interaction.Pointer</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.Pointer#dispatchChangeEvent" class="unstable">
<a href="ol.interaction.Pointer.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.interaction.Pointer#getRevision" class="unstable">
<a href="ol.interaction.Pointer.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.Pointer#on" class="">
<a href="ol.interaction.Pointer.html#on">on</a>
</li>
<li data-name="ol.interaction.Pointer#once" class="">
<a href="ol.interaction.Pointer.html#once">once</a>
</li>
<li data-name="ol.interaction.Pointer#un" class="">
<a href="ol.interaction.Pointer.html#un">un</a>
</li>
<li data-name="ol.interaction.Pointer#unByKey" class="">
<a href="ol.interaction.Pointer.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.Select">
<span class="title">
<a href="ol.interaction.Select.html">ol.interaction.Select</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.Select#dispatchChangeEvent" class="unstable">
<a href="ol.interaction.Select.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.interaction.Select#getFeatures" class="">
<a href="ol.interaction.Select.html#getFeatures">getFeatures</a>
</li>
<li data-name="ol.interaction.Select#getRevision" class="unstable">
<a href="ol.interaction.Select.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.Select#on" class="">
<a href="ol.interaction.Select.html#on">on</a>
</li>
<li data-name="ol.interaction.Select#once" class="">
<a href="ol.interaction.Select.html#once">once</a>
</li>
<li data-name="ol.interaction.Select#setMap" class="">
<a href="ol.interaction.Select.html#setMap">setMap</a>
</li>
<li data-name="ol.interaction.Select#un" class="">
<a href="ol.interaction.Select.html#un">un</a>
</li>
<li data-name="ol.interaction.Select#unByKey" class="">
<a href="ol.interaction.Select.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.layer">
<span class="title">
<a href="ol.layer.html">ol.layer</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.layer.Base">
<span class="title">
<a href="ol.layer.Base.html">ol.layer.Base</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.layer.Base#bindTo" class="unstable">
<a href="ol.layer.Base.html#bindTo">bindTo</a>
</li>
<li data-name="ol.layer.Base#dispatchChangeEvent" class="unstable">
<a href="ol.layer.Base.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.layer.Base#get" class="unstable">
<a href="ol.layer.Base.html#get">get</a>
</li>
<li data-name="ol.layer.Base#getBrightness" class="unstable">
<a href="ol.layer.Base.html#getBrightness">getBrightness</a>
</li>
<li data-name="ol.layer.Base#getContrast" class="unstable">
<a href="ol.layer.Base.html#getContrast">getContrast</a>
</li>
<li data-name="ol.layer.Base#getExtent" class="">
<a href="ol.layer.Base.html#getExtent">getExtent</a>
</li>
<li data-name="ol.layer.Base#getHue" class="unstable">
<a href="ol.layer.Base.html#getHue">getHue</a>
</li>
<li data-name="ol.layer.Base#getKeys" class="unstable">
<a href="ol.layer.Base.html#getKeys">getKeys</a>
</li>
<li data-name="ol.layer.Base#getMaxResolution" class="">
<a href="ol.layer.Base.html#getMaxResolution">getMaxResolution</a>
</li>
<li data-name="ol.layer.Base#getMinResolution" class="">
<a href="ol.layer.Base.html#getMinResolution">getMinResolution</a>
</li>
<li data-name="ol.layer.Base#getOpacity" class="">
<a href="ol.layer.Base.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.layer.Base#getProperties" class="unstable">
<a href="ol.layer.Base.html#getProperties">getProperties</a>
</li>
<li data-name="ol.layer.Base#getRevision" class="unstable">
<a href="ol.layer.Base.html#getRevision">getRevision</a>
</li>
<li data-name="ol.layer.Base#getSaturation" class="unstable">
<a href="ol.layer.Base.html#getSaturation">getSaturation</a>
</li>
<li data-name="ol.layer.Base#getVisible" class="">
<a href="ol.layer.Base.html#getVisible">getVisible</a>
</li>
<li data-name="ol.layer.Base#on" class="">
<a href="ol.layer.Base.html#on">on</a>
</li>
<li data-name="ol.layer.Base#once" class="">
<a href="ol.layer.Base.html#once">once</a>
</li>
<li data-name="ol.layer.Base#set" class="unstable">
<a href="ol.layer.Base.html#set">set</a>
</li>
<li data-name="ol.layer.Base#setBrightness" class="unstable">
<a href="ol.layer.Base.html#setBrightness">setBrightness</a>
</li>
<li data-name="ol.layer.Base#setContrast" class="unstable">
<a href="ol.layer.Base.html#setContrast">setContrast</a>
</li>
<li data-name="ol.layer.Base#setExtent" class="">
<a href="ol.layer.Base.html#setExtent">setExtent</a>
</li>
<li data-name="ol.layer.Base#setHue" class="unstable">
<a href="ol.layer.Base.html#setHue">setHue</a>
</li>
<li data-name="ol.layer.Base#setMaxResolution" class="">
<a href="ol.layer.Base.html#setMaxResolution">setMaxResolution</a>
</li>
<li data-name="ol.layer.Base#setMinResolution" class="">
<a href="ol.layer.Base.html#setMinResolution">setMinResolution</a>
</li>
<li data-name="ol.layer.Base#setOpacity" class="">
<a href="ol.layer.Base.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.layer.Base#setProperties" class="unstable">
<a href="ol.layer.Base.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.Base#setSaturation" class="unstable">
<a href="ol.layer.Base.html#setSaturation">setSaturation</a>
</li>
<li data-name="ol.layer.Base#setVisible" class="">
<a href="ol.layer.Base.html#setVisible">setVisible</a>
</li>
<li data-name="ol.layer.Base#un" class="">
<a href="ol.layer.Base.html#un">un</a>
</li>
<li data-name="ol.layer.Base#unbind" class="unstable">
<a href="ol.layer.Base.html#unbind">unbind</a>
</li>
<li data-name="ol.layer.Base#unbindAll" class="unstable">
<a href="ol.layer.Base.html#unbindAll">unbindAll</a>
</li>
<li data-name="ol.layer.Base#unByKey" class="">
<a href="ol.layer.Base.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.layer.Group">
<span class="title">
<a href="ol.layer.Group.html">ol.layer.Group</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.layer.Group#bindTo" class="unstable">
<a href="ol.layer.Group.html#bindTo">bindTo</a>
</li>
<li data-name="ol.layer.Group#dispatchChangeEvent" class="unstable">
<a href="ol.layer.Group.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.layer.Group#get" class="unstable">
<a href="ol.layer.Group.html#get">get</a>
</li>
<li data-name="ol.layer.Group#getBrightness" class="unstable">
<a href="ol.layer.Group.html#getBrightness">getBrightness</a>
</li>
<li data-name="ol.layer.Group#getContrast" class="unstable">
<a href="ol.layer.Group.html#getContrast">getContrast</a>
</li>
<li data-name="ol.layer.Group#getExtent" class="">
<a href="ol.layer.Group.html#getExtent">getExtent</a>
</li>
<li data-name="ol.layer.Group#getHue" class="unstable">
<a href="ol.layer.Group.html#getHue">getHue</a>
</li>
<li data-name="ol.layer.Group#getKeys" class="unstable">
<a href="ol.layer.Group.html#getKeys">getKeys</a>
</li>
<li data-name="ol.layer.Group#getLayers" class="">
<a href="ol.layer.Group.html#getLayers">getLayers</a>
</li>
<li data-name="ol.layer.Group#getMaxResolution" class="">
<a href="ol.layer.Group.html#getMaxResolution">getMaxResolution</a>
</li>
<li data-name="ol.layer.Group#getMinResolution" class="">
<a href="ol.layer.Group.html#getMinResolution">getMinResolution</a>
</li>
<li data-name="ol.layer.Group#getOpacity" class="">
<a href="ol.layer.Group.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.layer.Group#getProperties" class="unstable">
<a href="ol.layer.Group.html#getProperties">getProperties</a>
</li>
<li data-name="ol.layer.Group#getRevision" class="unstable">
<a href="ol.layer.Group.html#getRevision">getRevision</a>
</li>
<li data-name="ol.layer.Group#getSaturation" class="unstable">
<a href="ol.layer.Group.html#getSaturation">getSaturation</a>
</li>
<li data-name="ol.layer.Group#getVisible" class="">
<a href="ol.layer.Group.html#getVisible">getVisible</a>
</li>
<li data-name="ol.layer.Group#on" class="">
<a href="ol.layer.Group.html#on">on</a>
</li>
<li data-name="ol.layer.Group#once" class="">
<a href="ol.layer.Group.html#once">once</a>
</li>
<li data-name="ol.layer.Group#set" class="unstable">
<a href="ol.layer.Group.html#set">set</a>
</li>
<li data-name="ol.layer.Group#setBrightness" class="unstable">
<a href="ol.layer.Group.html#setBrightness">setBrightness</a>
</li>
<li data-name="ol.layer.Group#setContrast" class="unstable">
<a href="ol.layer.Group.html#setContrast">setContrast</a>
</li>
<li data-name="ol.layer.Group#setExtent" class="">
<a href="ol.layer.Group.html#setExtent">setExtent</a>
</li>
<li data-name="ol.layer.Group#setHue" class="unstable">
<a href="ol.layer.Group.html#setHue">setHue</a>
</li>
<li data-name="ol.layer.Group#setLayers" class="">
<a href="ol.layer.Group.html#setLayers">setLayers</a>
</li>
<li data-name="ol.layer.Group#setMaxResolution" class="">
<a href="ol.layer.Group.html#setMaxResolution">setMaxResolution</a>
</li>
<li data-name="ol.layer.Group#setMinResolution" class="">
<a href="ol.layer.Group.html#setMinResolution">setMinResolution</a>
</li>
<li data-name="ol.layer.Group#setOpacity" class="">
<a href="ol.layer.Group.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.layer.Group#setProperties" class="unstable">
<a href="ol.layer.Group.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.Group#setSaturation" class="unstable">
<a href="ol.layer.Group.html#setSaturation">setSaturation</a>
</li>
<li data-name="ol.layer.Group#setVisible" class="">
<a href="ol.layer.Group.html#setVisible">setVisible</a>
</li>
<li data-name="ol.layer.Group#un" class="">
<a href="ol.layer.Group.html#un">un</a>
</li>
<li data-name="ol.layer.Group#unbind" class="unstable">
<a href="ol.layer.Group.html#unbind">unbind</a>
</li>
<li data-name="ol.layer.Group#unbindAll" class="unstable">
<a href="ol.layer.Group.html#unbindAll">unbindAll</a>
</li>
<li data-name="ol.layer.Group#unByKey" class="">
<a href="ol.layer.Group.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.layer.Heatmap">
<span class="title">
<a href="ol.layer.Heatmap.html">ol.layer.Heatmap</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.layer.Heatmap#bindTo" class="unstable">
<a href="ol.layer.Heatmap.html#bindTo">bindTo</a>
</li>
<li data-name="ol.layer.Heatmap#dispatchChangeEvent" class="unstable">
<a href="ol.layer.Heatmap.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.layer.Heatmap#get" class="unstable">
<a href="ol.layer.Heatmap.html#get">get</a>
</li>
<li data-name="ol.layer.Heatmap#getBrightness" class="unstable">
<a href="ol.layer.Heatmap.html#getBrightness">getBrightness</a>
</li>
<li data-name="ol.layer.Heatmap#getContrast" class="unstable">
<a href="ol.layer.Heatmap.html#getContrast">getContrast</a>
</li>
<li data-name="ol.layer.Heatmap#getExtent" class="">
<a href="ol.layer.Heatmap.html#getExtent">getExtent</a>
</li>
<li data-name="ol.layer.Heatmap#getGradient" class="unstable">
<a href="ol.layer.Heatmap.html#getGradient">getGradient</a>
</li>
<li data-name="ol.layer.Heatmap#getHue" class="unstable">
<a href="ol.layer.Heatmap.html#getHue">getHue</a>
</li>
<li data-name="ol.layer.Heatmap#getKeys" class="unstable">
<a href="ol.layer.Heatmap.html#getKeys">getKeys</a>
</li>
<li data-name="ol.layer.Heatmap#getMaxResolution" class="">
<a href="ol.layer.Heatmap.html#getMaxResolution">getMaxResolution</a>
</li>
<li data-name="ol.layer.Heatmap#getMinResolution" class="">
<a href="ol.layer.Heatmap.html#getMinResolution">getMinResolution</a>
</li>
<li data-name="ol.layer.Heatmap#getOpacity" class="">
<a href="ol.layer.Heatmap.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.layer.Heatmap#getProperties" class="unstable">
<a href="ol.layer.Heatmap.html#getProperties">getProperties</a>
</li>
<li data-name="ol.layer.Heatmap#getRevision" class="unstable">
<a href="ol.layer.Heatmap.html#getRevision">getRevision</a>
</li>
<li data-name="ol.layer.Heatmap#getSaturation" class="unstable">
<a href="ol.layer.Heatmap.html#getSaturation">getSaturation</a>
</li>
<li data-name="ol.layer.Heatmap#getSource" class="">
<a href="ol.layer.Heatmap.html#getSource">getSource</a>
</li>
<li data-name="ol.layer.Heatmap#getStyle" class="">
<a href="ol.layer.Heatmap.html#getStyle">getStyle</a>
</li>
<li data-name="ol.layer.Heatmap#getStyleFunction" class="">
<a href="ol.layer.Heatmap.html#getStyleFunction">getStyleFunction</a>
</li>
<li data-name="ol.layer.Heatmap#getVisible" class="">
<a href="ol.layer.Heatmap.html#getVisible">getVisible</a>
</li>
<li data-name="ol.layer.Heatmap#on" class="">
<a href="ol.layer.Heatmap.html#on">on</a>
</li>
<li data-name="ol.layer.Heatmap#once" class="">
<a href="ol.layer.Heatmap.html#once">once</a>
</li>
<li data-name="ol.layer.Heatmap#set" class="unstable">
<a href="ol.layer.Heatmap.html#set">set</a>
</li>
<li data-name="ol.layer.Heatmap#setBrightness" class="unstable">
<a href="ol.layer.Heatmap.html#setBrightness">setBrightness</a>
</li>
<li data-name="ol.layer.Heatmap#setContrast" class="unstable">
<a href="ol.layer.Heatmap.html#setContrast">setContrast</a>
</li>
<li data-name="ol.layer.Heatmap#setExtent" class="">
<a href="ol.layer.Heatmap.html#setExtent">setExtent</a>
</li>
<li data-name="ol.layer.Heatmap#setGradient" class="unstable">
<a href="ol.layer.Heatmap.html#setGradient">setGradient</a>
</li>
<li data-name="ol.layer.Heatmap#setHue" class="unstable">
<a href="ol.layer.Heatmap.html#setHue">setHue</a>
</li>
<li data-name="ol.layer.Heatmap#setMaxResolution" class="">
<a href="ol.layer.Heatmap.html#setMaxResolution">setMaxResolution</a>
</li>
<li data-name="ol.layer.Heatmap#setMinResolution" class="">
<a href="ol.layer.Heatmap.html#setMinResolution">setMinResolution</a>
</li>
<li data-name="ol.layer.Heatmap#setOpacity" class="">
<a href="ol.layer.Heatmap.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.layer.Heatmap#setProperties" class="unstable">
<a href="ol.layer.Heatmap.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.Heatmap#setSaturation" class="unstable">
<a href="ol.layer.Heatmap.html#setSaturation">setSaturation</a>
</li>
<li data-name="ol.layer.Heatmap#setStyle" class="">
<a href="ol.layer.Heatmap.html#setStyle">setStyle</a>
</li>
<li data-name="ol.layer.Heatmap#setVisible" class="">
<a href="ol.layer.Heatmap.html#setVisible">setVisible</a>
</li>
<li data-name="ol.layer.Heatmap#un" class="">
<a href="ol.layer.Heatmap.html#un">un</a>
</li>
<li data-name="ol.layer.Heatmap#unbind" class="unstable">
<a href="ol.layer.Heatmap.html#unbind">unbind</a>
</li>
<li data-name="ol.layer.Heatmap#unbindAll" class="unstable">
<a href="ol.layer.Heatmap.html#unbindAll">unbindAll</a>
</li>
<li data-name="ol.layer.Heatmap#unByKey" class="">
<a href="ol.layer.Heatmap.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.layer.Image">
<span class="title">
<a href="ol.layer.Image.html">ol.layer.Image</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.layer.Image#bindTo" class="unstable">
<a href="ol.layer.Image.html#bindTo">bindTo</a>
</li>
<li data-name="ol.layer.Image#dispatchChangeEvent" class="unstable">
<a href="ol.layer.Image.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.layer.Image#get" class="unstable">
<a href="ol.layer.Image.html#get">get</a>
</li>
<li data-name="ol.layer.Image#getBrightness" class="unstable">
<a href="ol.layer.Image.html#getBrightness">getBrightness</a>
</li>
<li data-name="ol.layer.Image#getContrast" class="unstable">
<a href="ol.layer.Image.html#getContrast">getContrast</a>
</li>
<li data-name="ol.layer.Image#getExtent" class="">
<a href="ol.layer.Image.html#getExtent">getExtent</a>
</li>
<li data-name="ol.layer.Image#getHue" class="unstable">
<a href="ol.layer.Image.html#getHue">getHue</a>
</li>
<li data-name="ol.layer.Image#getKeys" class="unstable">
<a href="ol.layer.Image.html#getKeys">getKeys</a>
</li>
<li data-name="ol.layer.Image#getMaxResolution" class="">
<a href="ol.layer.Image.html#getMaxResolution">getMaxResolution</a>
</li>
<li data-name="ol.layer.Image#getMinResolution" class="">
<a href="ol.layer.Image.html#getMinResolution">getMinResolution</a>
</li>
<li data-name="ol.layer.Image#getOpacity" class="">
<a href="ol.layer.Image.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.layer.Image#getProperties" class="unstable">
<a href="ol.layer.Image.html#getProperties">getProperties</a>
</li>
<li data-name="ol.layer.Image#getRevision" class="unstable">
<a href="ol.layer.Image.html#getRevision">getRevision</a>
</li>
<li data-name="ol.layer.Image#getSaturation" class="unstable">
<a href="ol.layer.Image.html#getSaturation">getSaturation</a>
</li>
<li data-name="ol.layer.Image#getSource" class="">
<a href="ol.layer.Image.html#getSource">getSource</a>
</li>
<li data-name="ol.layer.Image#getVisible" class="">
<a href="ol.layer.Image.html#getVisible">getVisible</a>
</li>
<li data-name="ol.layer.Image#on" class="">
<a href="ol.layer.Image.html#on">on</a>
</li>
<li data-name="ol.layer.Image#once" class="">
<a href="ol.layer.Image.html#once">once</a>
</li>
<li data-name="ol.layer.Image#set" class="unstable">
<a href="ol.layer.Image.html#set">set</a>
</li>
<li data-name="ol.layer.Image#setBrightness" class="unstable">
<a href="ol.layer.Image.html#setBrightness">setBrightness</a>
</li>
<li data-name="ol.layer.Image#setContrast" class="unstable">
<a href="ol.layer.Image.html#setContrast">setContrast</a>
</li>
<li data-name="ol.layer.Image#setExtent" class="">
<a href="ol.layer.Image.html#setExtent">setExtent</a>
</li>
<li data-name="ol.layer.Image#setHue" class="unstable">
<a href="ol.layer.Image.html#setHue">setHue</a>
</li>
<li data-name="ol.layer.Image#setMaxResolution" class="">
<a href="ol.layer.Image.html#setMaxResolution">setMaxResolution</a>
</li>
<li data-name="ol.layer.Image#setMinResolution" class="">
<a href="ol.layer.Image.html#setMinResolution">setMinResolution</a>
</li>
<li data-name="ol.layer.Image#setOpacity" class="">
<a href="ol.layer.Image.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.layer.Image#setProperties" class="unstable">
<a href="ol.layer.Image.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.Image#setSaturation" class="unstable">
<a href="ol.layer.Image.html#setSaturation">setSaturation</a>
</li>
<li data-name="ol.layer.Image#setVisible" class="">
<a href="ol.layer.Image.html#setVisible">setVisible</a>
</li>
<li data-name="ol.layer.Image#un" class="">
<a href="ol.layer.Image.html#un">un</a>
</li>
<li data-name="ol.layer.Image#unbind" class="unstable">
<a href="ol.layer.Image.html#unbind">unbind</a>
</li>
<li data-name="ol.layer.Image#unbindAll" class="unstable">
<a href="ol.layer.Image.html#unbindAll">unbindAll</a>
</li>
<li data-name="ol.layer.Image#unByKey" class="">
<a href="ol.layer.Image.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.layer.Layer">
<span class="title">
<a href="ol.layer.Layer.html">ol.layer.Layer</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.layer.Layer#bindTo" class="unstable">
<a href="ol.layer.Layer.html#bindTo">bindTo</a>
</li>
<li data-name="ol.layer.Layer#dispatchChangeEvent" class="unstable">
<a href="ol.layer.Layer.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.layer.Layer#get" class="unstable">
<a href="ol.layer.Layer.html#get">get</a>
</li>
<li data-name="ol.layer.Layer#getBrightness" class="unstable">
<a href="ol.layer.Layer.html#getBrightness">getBrightness</a>
</li>
<li data-name="ol.layer.Layer#getContrast" class="unstable">
<a href="ol.layer.Layer.html#getContrast">getContrast</a>
</li>
<li data-name="ol.layer.Layer#getExtent" class="">
<a href="ol.layer.Layer.html#getExtent">getExtent</a>
</li>
<li data-name="ol.layer.Layer#getHue" class="unstable">
<a href="ol.layer.Layer.html#getHue">getHue</a>
</li>
<li data-name="ol.layer.Layer#getKeys" class="unstable">
<a href="ol.layer.Layer.html#getKeys">getKeys</a>
</li>
<li data-name="ol.layer.Layer#getMaxResolution" class="">
<a href="ol.layer.Layer.html#getMaxResolution">getMaxResolution</a>
</li>
<li data-name="ol.layer.Layer#getMinResolution" class="">
<a href="ol.layer.Layer.html#getMinResolution">getMinResolution</a>
</li>
<li data-name="ol.layer.Layer#getOpacity" class="">
<a href="ol.layer.Layer.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.layer.Layer#getProperties" class="unstable">
<a href="ol.layer.Layer.html#getProperties">getProperties</a>
</li>
<li data-name="ol.layer.Layer#getRevision" class="unstable">
<a href="ol.layer.Layer.html#getRevision">getRevision</a>
</li>
<li data-name="ol.layer.Layer#getSaturation" class="unstable">
<a href="ol.layer.Layer.html#getSaturation">getSaturation</a>
</li>
<li data-name="ol.layer.Layer#getSource" class="">
<a href="ol.layer.Layer.html#getSource">getSource</a>
</li>
<li data-name="ol.layer.Layer#getVisible" class="">
<a href="ol.layer.Layer.html#getVisible">getVisible</a>
</li>
<li data-name="ol.layer.Layer#on" class="">
<a href="ol.layer.Layer.html#on">on</a>
</li>
<li data-name="ol.layer.Layer#once" class="">
<a href="ol.layer.Layer.html#once">once</a>
</li>
<li data-name="ol.layer.Layer#set" class="unstable">
<a href="ol.layer.Layer.html#set">set</a>
</li>
<li data-name="ol.layer.Layer#setBrightness" class="unstable">
<a href="ol.layer.Layer.html#setBrightness">setBrightness</a>
</li>
<li data-name="ol.layer.Layer#setContrast" class="unstable">
<a href="ol.layer.Layer.html#setContrast">setContrast</a>
</li>
<li data-name="ol.layer.Layer#setExtent" class="">
<a href="ol.layer.Layer.html#setExtent">setExtent</a>
</li>
<li data-name="ol.layer.Layer#setHue" class="unstable">
<a href="ol.layer.Layer.html#setHue">setHue</a>
</li>
<li data-name="ol.layer.Layer#setMaxResolution" class="">
<a href="ol.layer.Layer.html#setMaxResolution">setMaxResolution</a>
</li>
<li data-name="ol.layer.Layer#setMinResolution" class="">
<a href="ol.layer.Layer.html#setMinResolution">setMinResolution</a>
</li>
<li data-name="ol.layer.Layer#setOpacity" class="">
<a href="ol.layer.Layer.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.layer.Layer#setProperties" class="unstable">
<a href="ol.layer.Layer.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.Layer#setSaturation" class="unstable">
<a href="ol.layer.Layer.html#setSaturation">setSaturation</a>
</li>
<li data-name="ol.layer.Layer#setVisible" class="">
<a href="ol.layer.Layer.html#setVisible">setVisible</a>
</li>
<li data-name="ol.layer.Layer#un" class="">
<a href="ol.layer.Layer.html#un">un</a>
</li>
<li data-name="ol.layer.Layer#unbind" class="unstable">
<a href="ol.layer.Layer.html#unbind">unbind</a>
</li>
<li data-name="ol.layer.Layer#unbindAll" class="unstable">
<a href="ol.layer.Layer.html#unbindAll">unbindAll</a>
</li>
<li data-name="ol.layer.Layer#unByKey" class="">
<a href="ol.layer.Layer.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.layer.Tile">
<span class="title">
<a href="ol.layer.Tile.html">ol.layer.Tile</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.layer.Tile#bindTo" class="unstable">
<a href="ol.layer.Tile.html#bindTo">bindTo</a>
</li>
<li data-name="ol.layer.Tile#dispatchChangeEvent" class="unstable">
<a href="ol.layer.Tile.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.layer.Tile#get" class="unstable">
<a href="ol.layer.Tile.html#get">get</a>
</li>
<li data-name="ol.layer.Tile#getBrightness" class="unstable">
<a href="ol.layer.Tile.html#getBrightness">getBrightness</a>
</li>
<li data-name="ol.layer.Tile#getContrast" class="unstable">
<a href="ol.layer.Tile.html#getContrast">getContrast</a>
</li>
<li data-name="ol.layer.Tile#getExtent" class="">
<a href="ol.layer.Tile.html#getExtent">getExtent</a>
</li>
<li data-name="ol.layer.Tile#getHue" class="unstable">
<a href="ol.layer.Tile.html#getHue">getHue</a>
</li>
<li data-name="ol.layer.Tile#getKeys" class="unstable">
<a href="ol.layer.Tile.html#getKeys">getKeys</a>
</li>
<li data-name="ol.layer.Tile#getMaxResolution" class="">
<a href="ol.layer.Tile.html#getMaxResolution">getMaxResolution</a>
</li>
<li data-name="ol.layer.Tile#getMinResolution" class="">
<a href="ol.layer.Tile.html#getMinResolution">getMinResolution</a>
</li>
<li data-name="ol.layer.Tile#getOpacity" class="">
<a href="ol.layer.Tile.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.layer.Tile#getPreload" class="unstable">
<a href="ol.layer.Tile.html#getPreload">getPreload</a>
</li>
<li data-name="ol.layer.Tile#getProperties" class="unstable">
<a href="ol.layer.Tile.html#getProperties">getProperties</a>
</li>
<li data-name="ol.layer.Tile#getRevision" class="unstable">
<a href="ol.layer.Tile.html#getRevision">getRevision</a>
</li>
<li data-name="ol.layer.Tile#getSaturation" class="unstable">
<a href="ol.layer.Tile.html#getSaturation">getSaturation</a>
</li>
<li data-name="ol.layer.Tile#getSource" class="">
<a href="ol.layer.Tile.html#getSource">getSource</a>
</li>
<li data-name="ol.layer.Tile#getUseInterimTilesOnError" class="unstable">
<a href="ol.layer.Tile.html#getUseInterimTilesOnError">getUseInterimTilesOnError</a>
</li>
<li data-name="ol.layer.Tile#getVisible" class="">
<a href="ol.layer.Tile.html#getVisible">getVisible</a>
</li>
<li data-name="ol.layer.Tile#on" class="">
<a href="ol.layer.Tile.html#on">on</a>
</li>
<li data-name="ol.layer.Tile#once" class="">
<a href="ol.layer.Tile.html#once">once</a>
</li>
<li data-name="ol.layer.Tile#set" class="unstable">
<a href="ol.layer.Tile.html#set">set</a>
</li>
<li data-name="ol.layer.Tile#setBrightness" class="unstable">
<a href="ol.layer.Tile.html#setBrightness">setBrightness</a>
</li>
<li data-name="ol.layer.Tile#setContrast" class="unstable">
<a href="ol.layer.Tile.html#setContrast">setContrast</a>
</li>
<li data-name="ol.layer.Tile#setExtent" class="">
<a href="ol.layer.Tile.html#setExtent">setExtent</a>
</li>
<li data-name="ol.layer.Tile#setHue" class="unstable">
<a href="ol.layer.Tile.html#setHue">setHue</a>
</li>
<li data-name="ol.layer.Tile#setMaxResolution" class="">
<a href="ol.layer.Tile.html#setMaxResolution">setMaxResolution</a>
</li>
<li data-name="ol.layer.Tile#setMinResolution" class="">
<a href="ol.layer.Tile.html#setMinResolution">setMinResolution</a>
</li>
<li data-name="ol.layer.Tile#setOpacity" class="">
<a href="ol.layer.Tile.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.layer.Tile#setPreload" class="unstable">
<a href="ol.layer.Tile.html#setPreload">setPreload</a>
</li>
<li data-name="ol.layer.Tile#setProperties" class="unstable">
<a href="ol.layer.Tile.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.Tile#setSaturation" class="unstable">
<a href="ol.layer.Tile.html#setSaturation">setSaturation</a>
</li>
<li data-name="ol.layer.Tile#setUseInterimTilesOnError" class="unstable">
<a href="ol.layer.Tile.html#setUseInterimTilesOnError">setUseInterimTilesOnError</a>
</li>
<li data-name="ol.layer.Tile#setVisible" class="">
<a href="ol.layer.Tile.html#setVisible">setVisible</a>
</li>
<li data-name="ol.layer.Tile#un" class="">
<a href="ol.layer.Tile.html#un">un</a>
</li>
<li data-name="ol.layer.Tile#unbind" class="unstable">
<a href="ol.layer.Tile.html#unbind">unbind</a>
</li>
<li data-name="ol.layer.Tile#unbindAll" class="unstable">
<a href="ol.layer.Tile.html#unbindAll">unbindAll</a>
</li>
<li data-name="ol.layer.Tile#unByKey" class="">
<a href="ol.layer.Tile.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.layer.Vector">
<span class="title">
<a href="ol.layer.Vector.html">ol.layer.Vector</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.layer.Vector#bindTo" class="unstable">
<a href="ol.layer.Vector.html#bindTo">bindTo</a>
</li>
<li data-name="ol.layer.Vector#dispatchChangeEvent" class="unstable">
<a href="ol.layer.Vector.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.layer.Vector#get" class="unstable">
<a href="ol.layer.Vector.html#get">get</a>
</li>
<li data-name="ol.layer.Vector#getBrightness" class="unstable">
<a href="ol.layer.Vector.html#getBrightness">getBrightness</a>
</li>
<li data-name="ol.layer.Vector#getContrast" class="unstable">
<a href="ol.layer.Vector.html#getContrast">getContrast</a>
</li>
<li data-name="ol.layer.Vector#getExtent" class="">
<a href="ol.layer.Vector.html#getExtent">getExtent</a>
</li>
<li data-name="ol.layer.Vector#getHue" class="unstable">
<a href="ol.layer.Vector.html#getHue">getHue</a>
</li>
<li data-name="ol.layer.Vector#getKeys" class="unstable">
<a href="ol.layer.Vector.html#getKeys">getKeys</a>
</li>
<li data-name="ol.layer.Vector#getMaxResolution" class="">
<a href="ol.layer.Vector.html#getMaxResolution">getMaxResolution</a>
</li>
<li data-name="ol.layer.Vector#getMinResolution" class="">
<a href="ol.layer.Vector.html#getMinResolution">getMinResolution</a>
</li>
<li data-name="ol.layer.Vector#getOpacity" class="">
<a href="ol.layer.Vector.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.layer.Vector#getProperties" class="unstable">
<a href="ol.layer.Vector.html#getProperties">getProperties</a>
</li>
<li data-name="ol.layer.Vector#getRevision" class="unstable">
<a href="ol.layer.Vector.html#getRevision">getRevision</a>
</li>
<li data-name="ol.layer.Vector#getSaturation" class="unstable">
<a href="ol.layer.Vector.html#getSaturation">getSaturation</a>
</li>
<li data-name="ol.layer.Vector#getSource" class="">
<a href="ol.layer.Vector.html#getSource">getSource</a>
</li>
<li data-name="ol.layer.Vector#getStyle" class="">
<a href="ol.layer.Vector.html#getStyle">getStyle</a>
</li>
<li data-name="ol.layer.Vector#getStyleFunction" class="">
<a href="ol.layer.Vector.html#getStyleFunction">getStyleFunction</a>
</li>
<li data-name="ol.layer.Vector#getVisible" class="">
<a href="ol.layer.Vector.html#getVisible">getVisible</a>
</li>
<li data-name="ol.layer.Vector#on" class="">
<a href="ol.layer.Vector.html#on">on</a>
</li>
<li data-name="ol.layer.Vector#once" class="">
<a href="ol.layer.Vector.html#once">once</a>
</li>
<li data-name="ol.layer.Vector#set" class="unstable">
<a href="ol.layer.Vector.html#set">set</a>
</li>
<li data-name="ol.layer.Vector#setBrightness" class="unstable">
<a href="ol.layer.Vector.html#setBrightness">setBrightness</a>
</li>
<li data-name="ol.layer.Vector#setContrast" class="unstable">
<a href="ol.layer.Vector.html#setContrast">setContrast</a>
</li>
<li data-name="ol.layer.Vector#setExtent" class="">
<a href="ol.layer.Vector.html#setExtent">setExtent</a>
</li>
<li data-name="ol.layer.Vector#setHue" class="unstable">
<a href="ol.layer.Vector.html#setHue">setHue</a>
</li>
<li data-name="ol.layer.Vector#setMaxResolution" class="">
<a href="ol.layer.Vector.html#setMaxResolution">setMaxResolution</a>
</li>
<li data-name="ol.layer.Vector#setMinResolution" class="">
<a href="ol.layer.Vector.html#setMinResolution">setMinResolution</a>
</li>
<li data-name="ol.layer.Vector#setOpacity" class="">
<a href="ol.layer.Vector.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.layer.Vector#setProperties" class="unstable">
<a href="ol.layer.Vector.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.Vector#setSaturation" class="unstable">
<a href="ol.layer.Vector.html#setSaturation">setSaturation</a>
</li>
<li data-name="ol.layer.Vector#setStyle" class="">
<a href="ol.layer.Vector.html#setStyle">setStyle</a>
</li>
<li data-name="ol.layer.Vector#setVisible" class="">
<a href="ol.layer.Vector.html#setVisible">setVisible</a>
</li>
<li data-name="ol.layer.Vector#un" class="">
<a href="ol.layer.Vector.html#un">un</a>
</li>
<li data-name="ol.layer.Vector#unbind" class="unstable">
<a href="ol.layer.Vector.html#unbind">unbind</a>
</li>
<li data-name="ol.layer.Vector#unbindAll" class="unstable">
<a href="ol.layer.Vector.html#unbindAll">unbindAll</a>
</li>
<li data-name="ol.layer.Vector#unByKey" class="">
<a href="ol.layer.Vector.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.loadingstrategy">
<span class="title">
<a href="ol.loadingstrategy.html">ol.loadingstrategy</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.loadingstrategy.all" class="unstable">
<a href="ol.loadingstrategy.html#all">all</a>
</li>
<li data-name="ol.loadingstrategy.bbox" class="unstable">
<a href="ol.loadingstrategy.html#bbox">bbox</a>
</li>
<li data-name="ol.loadingstrategy.createTile" class="unstable">
<a href="ol.loadingstrategy.html#createTile">createTile</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.proj">
<span class="title">
<a href="ol.proj.html">ol.proj</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.proj.METERS_PER_UNIT"><a href="ol.proj.html#METERS_PER_UNIT">METERS_PER_UNIT</a></li>
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.proj.ProjectionLike" class="">
<a href="ol.proj.html#ProjectionLike">ProjectionLike</a>
</li>
<li data-name="ol.proj.Units" class="">
<a href="ol.proj.html#Units">Units</a>
</li>
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.proj.addCoordinateTransforms" class="">
<a href="ol.proj.html#addCoordinateTransforms">addCoordinateTransforms</a>
</li>
<li data-name="ol.proj.addEquivalentProjections" class="unstable">
<a href="ol.proj.html#addEquivalentProjections">addEquivalentProjections</a>
</li>
<li data-name="ol.proj.addProjection" class="">
<a href="ol.proj.html#addProjection">addProjection</a>
</li>
<li data-name="ol.proj.get" class="">
<a href="ol.proj.html#get">get</a>
</li>
<li data-name="ol.proj.getTransform" class="">
<a href="ol.proj.html#getTransform">getTransform</a>
</li>
<li data-name="ol.proj.transform" class="">
<a href="ol.proj.html#transform">transform</a>
</li>
<li data-name="ol.proj.transformExtent" class="">
<a href="ol.proj.html#transformExtent">transformExtent</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.proj.Projection">
<span class="title">
<a href="ol.proj.Projection.html">ol.proj.Projection</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.proj.Projection#getCode" class="">
<a href="ol.proj.Projection.html#getCode">getCode</a>
</li>
<li data-name="ol.proj.Projection#getExtent" class="">
<a href="ol.proj.Projection.html#getExtent">getExtent</a>
</li>
<li data-name="ol.proj.Projection#getMetersPerUnit" class="">
<a href="ol.proj.Projection.html#getMetersPerUnit">getMetersPerUnit</a>
</li>
<li data-name="ol.proj.Projection#getUnits" class="">
<a href="ol.proj.Projection.html#getUnits">getUnits</a>
</li>
<li data-name="ol.proj.Projection#getWorldExtent" class="unstable">
<a href="ol.proj.Projection.html#getWorldExtent">getWorldExtent</a>
</li>
<li data-name="ol.proj.Projection#isGlobal" class="">
<a href="ol.proj.Projection.html#isGlobal">isGlobal</a>
</li>
<li data-name="ol.proj.Projection#setExtent" class="">
<a href="ol.proj.Projection.html#setExtent">setExtent</a>
</li>
<li data-name="ol.proj.Projection#setWorldExtent" class="unstable">
<a href="ol.proj.Projection.html#setWorldExtent">setWorldExtent</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.render">
<span class="title">
<a href="ol.render.html">ol.render</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.render.Event">
<span class="title">
<a href="ol.render.Event.html">ol.render.Event</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.render.Event#context"><a href="ol.render.Event.html#context">context</a></li>
<li data-name="ol.render.Event#frameState"><a href="ol.render.Event.html#frameState">frameState</a></li>
<li data-name="ol.render.Event#glContext"><a href="ol.render.Event.html#glContext">glContext</a></li>
<li data-name="ol.render.Event#vectorContext"><a href="ol.render.Event.html#vectorContext">vectorContext</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.render.canvas">
<span class="title">
<a href="ol.render.canvas.html">ol.render.canvas</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.render.canvas.Immediate">
<span class="title">
<a href="ol.render.canvas.Immediate.html">ol.render.canvas.Immediate</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.render.canvas.Immediate#drawAsync" class="unstable">
<a href="ol.render.canvas.Immediate.html#drawAsync">drawAsync</a>
</li>
<li data-name="ol.render.canvas.Immediate#drawCircleGeometry" class="unstable">
<a href="ol.render.canvas.Immediate.html#drawCircleGeometry">drawCircleGeometry</a>
</li>
<li data-name="ol.render.canvas.Immediate#drawFeature" class="unstable">
<a href="ol.render.canvas.Immediate.html#drawFeature">drawFeature</a>
</li>
<li data-name="ol.render.canvas.Immediate#drawLineStringGeometry" class="unstable">
<a href="ol.render.canvas.Immediate.html#drawLineStringGeometry">drawLineStringGeometry</a>
</li>
<li data-name="ol.render.canvas.Immediate#drawMultiLineStringGeometry" class="unstable">
<a href="ol.render.canvas.Immediate.html#drawMultiLineStringGeometry">drawMultiLineStringGeometry</a>
</li>
<li data-name="ol.render.canvas.Immediate#drawMultiPointGeometry" class="unstable">
<a href="ol.render.canvas.Immediate.html#drawMultiPointGeometry">drawMultiPointGeometry</a>
</li>
<li data-name="ol.render.canvas.Immediate#drawMultiPolygonGeometry" class="unstable">
<a href="ol.render.canvas.Immediate.html#drawMultiPolygonGeometry">drawMultiPolygonGeometry</a>
</li>
<li data-name="ol.render.canvas.Immediate#drawPointGeometry" class="unstable">
<a href="ol.render.canvas.Immediate.html#drawPointGeometry">drawPointGeometry</a>
</li>
<li data-name="ol.render.canvas.Immediate#drawPolygonGeometry" class="unstable">
<a href="ol.render.canvas.Immediate.html#drawPolygonGeometry">drawPolygonGeometry</a>
</li>
<li data-name="ol.render.canvas.Immediate#setFillStrokeStyle" class="unstable">
<a href="ol.render.canvas.Immediate.html#setFillStrokeStyle">setFillStrokeStyle</a>
</li>
<li data-name="ol.render.canvas.Immediate#setImageStyle" class="unstable">
<a href="ol.render.canvas.Immediate.html#setImageStyle">setImageStyle</a>
</li>
<li data-name="ol.render.canvas.Immediate#setTextStyle" class="unstable">
<a href="ol.render.canvas.Immediate.html#setTextStyle">setTextStyle</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source">
<span class="title">
<a href="ol.source.html">ol.source</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.source.State" class="unstable">
<a href="ol.source.html#State">State</a>
</li>
<li data-name="ol.source.WMTSRequestEncoding" class="unstable">
<a href="ol.source.html#WMTSRequestEncoding">WMTSRequestEncoding</a>
</li>
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.source.BingMaps">
<span class="title">
<a href="ol.source.BingMaps.html">ol.source.BingMaps</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.source.BingMaps.TOS_ATTRIBUTION"><a href="ol.source.BingMaps.html#TOS_ATTRIBUTION">TOS_ATTRIBUTION</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.BingMaps#dispatchChangeEvent" class="unstable">
<a href="ol.source.BingMaps.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.BingMaps#getAttributions" class="">
<a href="ol.source.BingMaps.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.BingMaps#getLogo" class="">
<a href="ol.source.BingMaps.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.BingMaps#getProjection" class="unstable">
<a href="ol.source.BingMaps.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.BingMaps#getRevision" class="unstable">
<a href="ol.source.BingMaps.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.BingMaps#getState" class="unstable">
<a href="ol.source.BingMaps.html#getState">getState</a>
</li>
<li data-name="ol.source.BingMaps#getTileGrid" class="">
<a href="ol.source.BingMaps.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.BingMaps#getTileLoadFunction" class="unstable">
<a href="ol.source.BingMaps.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.BingMaps#getTileUrlFunction" class="unstable">
<a href="ol.source.BingMaps.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.BingMaps#on" class="">
<a href="ol.source.BingMaps.html#on">on</a>
</li>
<li data-name="ol.source.BingMaps#once" class="">
<a href="ol.source.BingMaps.html#once">once</a>
</li>
<li data-name="ol.source.BingMaps#setTileLoadFunction" class="unstable">
<a href="ol.source.BingMaps.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.BingMaps#setTileUrlFunction" class="unstable">
<a href="ol.source.BingMaps.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.BingMaps#un" class="">
<a href="ol.source.BingMaps.html#un">un</a>
</li>
<li data-name="ol.source.BingMaps#unByKey" class="">
<a href="ol.source.BingMaps.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.Cluster">
<span class="title">
<a href="ol.source.Cluster.html">ol.source.Cluster</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.Cluster#addFeature" class="">
<a href="ol.source.Cluster.html#addFeature">addFeature</a>
</li>
<li data-name="ol.source.Cluster#addFeatures" class="">
<a href="ol.source.Cluster.html#addFeatures">addFeatures</a>
</li>
<li data-name="ol.source.Cluster#clear" class="">
<a href="ol.source.Cluster.html#clear">clear</a>
</li>
<li data-name="ol.source.Cluster#dispatchChangeEvent" class="unstable">
<a href="ol.source.Cluster.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.Cluster#forEachFeature" class="">
<a href="ol.source.Cluster.html#forEachFeature">forEachFeature</a>
</li>
<li data-name="ol.source.Cluster#forEachFeatureInExtent" class="unstable">
<a href="ol.source.Cluster.html#forEachFeatureInExtent">forEachFeatureInExtent</a>
</li>
<li data-name="ol.source.Cluster#getAttributions" class="">
<a href="ol.source.Cluster.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.Cluster#getClosestFeatureToCoordinate" class="">
<a href="ol.source.Cluster.html#getClosestFeatureToCoordinate">getClosestFeatureToCoordinate</a>
</li>
<li data-name="ol.source.Cluster#getExtent" class="">
<a href="ol.source.Cluster.html#getExtent">getExtent</a>
</li>
<li data-name="ol.source.Cluster#getFeatureById" class="">
<a href="ol.source.Cluster.html#getFeatureById">getFeatureById</a>
</li>
<li data-name="ol.source.Cluster#getFeatures" class="">
<a href="ol.source.Cluster.html#getFeatures">getFeatures</a>
</li>
<li data-name="ol.source.Cluster#getFeaturesAtCoordinate" class="">
<a href="ol.source.Cluster.html#getFeaturesAtCoordinate">getFeaturesAtCoordinate</a>
</li>
<li data-name="ol.source.Cluster#getLogo" class="">
<a href="ol.source.Cluster.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.Cluster#getProjection" class="unstable">
<a href="ol.source.Cluster.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.Cluster#getRevision" class="unstable">
<a href="ol.source.Cluster.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.Cluster#getState" class="unstable">
<a href="ol.source.Cluster.html#getState">getState</a>
</li>
<li data-name="ol.source.Cluster#on" class="">
<a href="ol.source.Cluster.html#on">on</a>
</li>
<li data-name="ol.source.Cluster#once" class="">
<a href="ol.source.Cluster.html#once">once</a>
</li>
<li data-name="ol.source.Cluster#removeFeature" class="">
<a href="ol.source.Cluster.html#removeFeature">removeFeature</a>
</li>
<li data-name="ol.source.Cluster#un" class="">
<a href="ol.source.Cluster.html#un">un</a>
</li>
<li data-name="ol.source.Cluster#unByKey" class="">
<a href="ol.source.Cluster.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.FormatVector">
<span class="title">
<a href="ol.source.FormatVector.html">ol.source.FormatVector</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.FormatVector#addFeature" class="">
<a href="ol.source.FormatVector.html#addFeature">addFeature</a>
</li>
<li data-name="ol.source.FormatVector#addFeatures" class="">
<a href="ol.source.FormatVector.html#addFeatures">addFeatures</a>
</li>
<li data-name="ol.source.FormatVector#clear" class="">
<a href="ol.source.FormatVector.html#clear">clear</a>
</li>
<li data-name="ol.source.FormatVector#dispatchChangeEvent" class="unstable">
<a href="ol.source.FormatVector.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.FormatVector#forEachFeature" class="">
<a href="ol.source.FormatVector.html#forEachFeature">forEachFeature</a>
</li>
<li data-name="ol.source.FormatVector#forEachFeatureInExtent" class="unstable">
<a href="ol.source.FormatVector.html#forEachFeatureInExtent">forEachFeatureInExtent</a>
</li>
<li data-name="ol.source.FormatVector#getAttributions" class="">
<a href="ol.source.FormatVector.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.FormatVector#getClosestFeatureToCoordinate" class="">
<a href="ol.source.FormatVector.html#getClosestFeatureToCoordinate">getClosestFeatureToCoordinate</a>
</li>
<li data-name="ol.source.FormatVector#getExtent" class="">
<a href="ol.source.FormatVector.html#getExtent">getExtent</a>
</li>
<li data-name="ol.source.FormatVector#getFeatureById" class="">
<a href="ol.source.FormatVector.html#getFeatureById">getFeatureById</a>
</li>
<li data-name="ol.source.FormatVector#getFeatures" class="">
<a href="ol.source.FormatVector.html#getFeatures">getFeatures</a>
</li>
<li data-name="ol.source.FormatVector#getFeaturesAtCoordinate" class="">
<a href="ol.source.FormatVector.html#getFeaturesAtCoordinate">getFeaturesAtCoordinate</a>
</li>
<li data-name="ol.source.FormatVector#getLogo" class="">
<a href="ol.source.FormatVector.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.FormatVector#getProjection" class="unstable">
<a href="ol.source.FormatVector.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.FormatVector#getRevision" class="unstable">
<a href="ol.source.FormatVector.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.FormatVector#getState" class="unstable">
<a href="ol.source.FormatVector.html#getState">getState</a>
</li>
<li data-name="ol.source.FormatVector#on" class="">
<a href="ol.source.FormatVector.html#on">on</a>
</li>
<li data-name="ol.source.FormatVector#once" class="">
<a href="ol.source.FormatVector.html#once">once</a>
</li>
<li data-name="ol.source.FormatVector#readFeatures" class="unstable">
<a href="ol.source.FormatVector.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.source.FormatVector#removeFeature" class="">
<a href="ol.source.FormatVector.html#removeFeature">removeFeature</a>
</li>
<li data-name="ol.source.FormatVector#un" class="">
<a href="ol.source.FormatVector.html#un">un</a>
</li>
<li data-name="ol.source.FormatVector#unByKey" class="">
<a href="ol.source.FormatVector.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.GPX">
<span class="title">
<a href="ol.source.GPX.html">ol.source.GPX</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.GPX#addFeature" class="">
<a href="ol.source.GPX.html#addFeature">addFeature</a>
</li>
<li data-name="ol.source.GPX#addFeatures" class="">
<a href="ol.source.GPX.html#addFeatures">addFeatures</a>
</li>
<li data-name="ol.source.GPX#clear" class="">
<a href="ol.source.GPX.html#clear">clear</a>
</li>
<li data-name="ol.source.GPX#dispatchChangeEvent" class="unstable">
<a href="ol.source.GPX.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.GPX#forEachFeature" class="">
<a href="ol.source.GPX.html#forEachFeature">forEachFeature</a>
</li>
<li data-name="ol.source.GPX#forEachFeatureInExtent" class="unstable">
<a href="ol.source.GPX.html#forEachFeatureInExtent">forEachFeatureInExtent</a>
</li>
<li data-name="ol.source.GPX#getAttributions" class="">
<a href="ol.source.GPX.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.GPX#getClosestFeatureToCoordinate" class="">
<a href="ol.source.GPX.html#getClosestFeatureToCoordinate">getClosestFeatureToCoordinate</a>
</li>
<li data-name="ol.source.GPX#getExtent" class="">
<a href="ol.source.GPX.html#getExtent">getExtent</a>
</li>
<li data-name="ol.source.GPX#getFeatureById" class="">
<a href="ol.source.GPX.html#getFeatureById">getFeatureById</a>
</li>
<li data-name="ol.source.GPX#getFeatures" class="">
<a href="ol.source.GPX.html#getFeatures">getFeatures</a>
</li>
<li data-name="ol.source.GPX#getFeaturesAtCoordinate" class="">
<a href="ol.source.GPX.html#getFeaturesAtCoordinate">getFeaturesAtCoordinate</a>
</li>
<li data-name="ol.source.GPX#getLogo" class="">
<a href="ol.source.GPX.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.GPX#getProjection" class="unstable">
<a href="ol.source.GPX.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.GPX#getRevision" class="unstable">
<a href="ol.source.GPX.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.GPX#getState" class="unstable">
<a href="ol.source.GPX.html#getState">getState</a>
</li>
<li data-name="ol.source.GPX#on" class="">
<a href="ol.source.GPX.html#on">on</a>
</li>
<li data-name="ol.source.GPX#once" class="">
<a href="ol.source.GPX.html#once">once</a>
</li>
<li data-name="ol.source.GPX#readFeatures" class="unstable">
<a href="ol.source.GPX.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.source.GPX#removeFeature" class="">
<a href="ol.source.GPX.html#removeFeature">removeFeature</a>
</li>
<li data-name="ol.source.GPX#un" class="">
<a href="ol.source.GPX.html#un">un</a>
</li>
<li data-name="ol.source.GPX#unByKey" class="">
<a href="ol.source.GPX.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.GeoJSON">
<span class="title">
<a href="ol.source.GeoJSON.html">ol.source.GeoJSON</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.GeoJSON#addFeature" class="">
<a href="ol.source.GeoJSON.html#addFeature">addFeature</a>
</li>
<li data-name="ol.source.GeoJSON#addFeatures" class="">
<a href="ol.source.GeoJSON.html#addFeatures">addFeatures</a>
</li>
<li data-name="ol.source.GeoJSON#clear" class="">
<a href="ol.source.GeoJSON.html#clear">clear</a>
</li>
<li data-name="ol.source.GeoJSON#dispatchChangeEvent" class="unstable">
<a href="ol.source.GeoJSON.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.GeoJSON#forEachFeature" class="">
<a href="ol.source.GeoJSON.html#forEachFeature">forEachFeature</a>
</li>
<li data-name="ol.source.GeoJSON#forEachFeatureInExtent" class="unstable">
<a href="ol.source.GeoJSON.html#forEachFeatureInExtent">forEachFeatureInExtent</a>
</li>
<li data-name="ol.source.GeoJSON#getAttributions" class="">
<a href="ol.source.GeoJSON.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.GeoJSON#getClosestFeatureToCoordinate" class="">
<a href="ol.source.GeoJSON.html#getClosestFeatureToCoordinate">getClosestFeatureToCoordinate</a>
</li>
<li data-name="ol.source.GeoJSON#getExtent" class="">
<a href="ol.source.GeoJSON.html#getExtent">getExtent</a>
</li>
<li data-name="ol.source.GeoJSON#getFeatureById" class="">
<a href="ol.source.GeoJSON.html#getFeatureById">getFeatureById</a>
</li>
<li data-name="ol.source.GeoJSON#getFeatures" class="">
<a href="ol.source.GeoJSON.html#getFeatures">getFeatures</a>
</li>
<li data-name="ol.source.GeoJSON#getFeaturesAtCoordinate" class="">
<a href="ol.source.GeoJSON.html#getFeaturesAtCoordinate">getFeaturesAtCoordinate</a>
</li>
<li data-name="ol.source.GeoJSON#getLogo" class="">
<a href="ol.source.GeoJSON.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.GeoJSON#getProjection" class="unstable">
<a href="ol.source.GeoJSON.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.GeoJSON#getRevision" class="unstable">
<a href="ol.source.GeoJSON.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.GeoJSON#getState" class="unstable">
<a href="ol.source.GeoJSON.html#getState">getState</a>
</li>
<li data-name="ol.source.GeoJSON#on" class="">
<a href="ol.source.GeoJSON.html#on">on</a>
</li>
<li data-name="ol.source.GeoJSON#once" class="">
<a href="ol.source.GeoJSON.html#once">once</a>
</li>
<li data-name="ol.source.GeoJSON#readFeatures" class="unstable">
<a href="ol.source.GeoJSON.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.source.GeoJSON#removeFeature" class="">
<a href="ol.source.GeoJSON.html#removeFeature">removeFeature</a>
</li>
<li data-name="ol.source.GeoJSON#un" class="">
<a href="ol.source.GeoJSON.html#un">un</a>
</li>
<li data-name="ol.source.GeoJSON#unByKey" class="">
<a href="ol.source.GeoJSON.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.IGC">
<span class="title">
<a href="ol.source.IGC.html">ol.source.IGC</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.IGC#addFeature" class="">
<a href="ol.source.IGC.html#addFeature">addFeature</a>
</li>
<li data-name="ol.source.IGC#addFeatures" class="">
<a href="ol.source.IGC.html#addFeatures">addFeatures</a>
</li>
<li data-name="ol.source.IGC#clear" class="">
<a href="ol.source.IGC.html#clear">clear</a>
</li>
<li data-name="ol.source.IGC#dispatchChangeEvent" class="unstable">
<a href="ol.source.IGC.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.IGC#forEachFeature" class="">
<a href="ol.source.IGC.html#forEachFeature">forEachFeature</a>
</li>
<li data-name="ol.source.IGC#forEachFeatureInExtent" class="unstable">
<a href="ol.source.IGC.html#forEachFeatureInExtent">forEachFeatureInExtent</a>
</li>
<li data-name="ol.source.IGC#getAttributions" class="">
<a href="ol.source.IGC.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.IGC#getClosestFeatureToCoordinate" class="">
<a href="ol.source.IGC.html#getClosestFeatureToCoordinate">getClosestFeatureToCoordinate</a>
</li>
<li data-name="ol.source.IGC#getExtent" class="">
<a href="ol.source.IGC.html#getExtent">getExtent</a>
</li>
<li data-name="ol.source.IGC#getFeatureById" class="">
<a href="ol.source.IGC.html#getFeatureById">getFeatureById</a>
</li>
<li data-name="ol.source.IGC#getFeatures" class="">
<a href="ol.source.IGC.html#getFeatures">getFeatures</a>
</li>
<li data-name="ol.source.IGC#getFeaturesAtCoordinate" class="">
<a href="ol.source.IGC.html#getFeaturesAtCoordinate">getFeaturesAtCoordinate</a>
</li>
<li data-name="ol.source.IGC#getLogo" class="">
<a href="ol.source.IGC.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.IGC#getProjection" class="unstable">
<a href="ol.source.IGC.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.IGC#getRevision" class="unstable">
<a href="ol.source.IGC.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.IGC#getState" class="unstable">
<a href="ol.source.IGC.html#getState">getState</a>
</li>
<li data-name="ol.source.IGC#on" class="">
<a href="ol.source.IGC.html#on">on</a>
</li>
<li data-name="ol.source.IGC#once" class="">
<a href="ol.source.IGC.html#once">once</a>
</li>
<li data-name="ol.source.IGC#readFeatures" class="unstable">
<a href="ol.source.IGC.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.source.IGC#removeFeature" class="">
<a href="ol.source.IGC.html#removeFeature">removeFeature</a>
</li>
<li data-name="ol.source.IGC#un" class="">
<a href="ol.source.IGC.html#un">un</a>
</li>
<li data-name="ol.source.IGC#unByKey" class="">
<a href="ol.source.IGC.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.Image">
<span class="title">
<a href="ol.source.Image.html">ol.source.Image</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.Image#dispatchChangeEvent" class="unstable">
<a href="ol.source.Image.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.Image#getAttributions" class="">
<a href="ol.source.Image.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.Image#getLogo" class="">
<a href="ol.source.Image.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.Image#getProjection" class="unstable">
<a href="ol.source.Image.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.Image#getRevision" class="unstable">
<a href="ol.source.Image.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.Image#getState" class="unstable">
<a href="ol.source.Image.html#getState">getState</a>
</li>
<li data-name="ol.source.Image#on" class="">
<a href="ol.source.Image.html#on">on</a>
</li>
<li data-name="ol.source.Image#once" class="">
<a href="ol.source.Image.html#once">once</a>
</li>
<li data-name="ol.source.Image#un" class="">
<a href="ol.source.Image.html#un">un</a>
</li>
<li data-name="ol.source.Image#unByKey" class="">
<a href="ol.source.Image.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.ImageCanvas">
<span class="title">
<a href="ol.source.ImageCanvas.html">ol.source.ImageCanvas</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.ImageCanvas#dispatchChangeEvent" class="unstable">
<a href="ol.source.ImageCanvas.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.ImageCanvas#getAttributions" class="">
<a href="ol.source.ImageCanvas.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.ImageCanvas#getLogo" class="">
<a href="ol.source.ImageCanvas.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.ImageCanvas#getProjection" class="unstable">
<a href="ol.source.ImageCanvas.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.ImageCanvas#getRevision" class="unstable">
<a href="ol.source.ImageCanvas.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.ImageCanvas#getState" class="unstable">
<a href="ol.source.ImageCanvas.html#getState">getState</a>
</li>
<li data-name="ol.source.ImageCanvas#on" class="">
<a href="ol.source.ImageCanvas.html#on">on</a>
</li>
<li data-name="ol.source.ImageCanvas#once" class="">
<a href="ol.source.ImageCanvas.html#once">once</a>
</li>
<li data-name="ol.source.ImageCanvas#un" class="">
<a href="ol.source.ImageCanvas.html#un">un</a>
</li>
<li data-name="ol.source.ImageCanvas#unByKey" class="">
<a href="ol.source.ImageCanvas.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.ImageMapGuide">
<span class="title">
<a href="ol.source.ImageMapGuide.html">ol.source.ImageMapGuide</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.ImageMapGuide#dispatchChangeEvent" class="unstable">
<a href="ol.source.ImageMapGuide.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.ImageMapGuide#getAttributions" class="">
<a href="ol.source.ImageMapGuide.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.ImageMapGuide#getLogo" class="">
<a href="ol.source.ImageMapGuide.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.ImageMapGuide#getParams" class="">
<a href="ol.source.ImageMapGuide.html#getParams">getParams</a>
</li>
<li data-name="ol.source.ImageMapGuide#getProjection" class="unstable">
<a href="ol.source.ImageMapGuide.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.ImageMapGuide#getRevision" class="unstable">
<a href="ol.source.ImageMapGuide.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.ImageMapGuide#getState" class="unstable">
<a href="ol.source.ImageMapGuide.html#getState">getState</a>
</li>
<li data-name="ol.source.ImageMapGuide#on" class="">
<a href="ol.source.ImageMapGuide.html#on">on</a>
</li>
<li data-name="ol.source.ImageMapGuide#once" class="">
<a href="ol.source.ImageMapGuide.html#once">once</a>
</li>
<li data-name="ol.source.ImageMapGuide#un" class="">
<a href="ol.source.ImageMapGuide.html#un">un</a>
</li>
<li data-name="ol.source.ImageMapGuide#unByKey" class="">
<a href="ol.source.ImageMapGuide.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.ImageMapGuide#updateParams" class="">
<a href="ol.source.ImageMapGuide.html#updateParams">updateParams</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.ImageStatic">
<span class="title">
<a href="ol.source.ImageStatic.html">ol.source.ImageStatic</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.ImageStatic#dispatchChangeEvent" class="unstable">
<a href="ol.source.ImageStatic.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.ImageStatic#getAttributions" class="">
<a href="ol.source.ImageStatic.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.ImageStatic#getLogo" class="">
<a href="ol.source.ImageStatic.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.ImageStatic#getProjection" class="unstable">
<a href="ol.source.ImageStatic.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.ImageStatic#getRevision" class="unstable">
<a href="ol.source.ImageStatic.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.ImageStatic#getState" class="unstable">
<a href="ol.source.ImageStatic.html#getState">getState</a>
</li>
<li data-name="ol.source.ImageStatic#on" class="">
<a href="ol.source.ImageStatic.html#on">on</a>
</li>
<li data-name="ol.source.ImageStatic#once" class="">
<a href="ol.source.ImageStatic.html#once">once</a>
</li>
<li data-name="ol.source.ImageStatic#un" class="">
<a href="ol.source.ImageStatic.html#un">un</a>
</li>
<li data-name="ol.source.ImageStatic#unByKey" class="">
<a href="ol.source.ImageStatic.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.ImageVector">
<span class="title">
<a href="ol.source.ImageVector.html">ol.source.ImageVector</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.ImageVector#dispatchChangeEvent" class="unstable">
<a href="ol.source.ImageVector.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.ImageVector#getAttributions" class="">
<a href="ol.source.ImageVector.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.ImageVector#getLogo" class="">
<a href="ol.source.ImageVector.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.ImageVector#getProjection" class="unstable">
<a href="ol.source.ImageVector.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.ImageVector#getRevision" class="unstable">
<a href="ol.source.ImageVector.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.ImageVector#getSource" class="unstable">
<a href="ol.source.ImageVector.html#getSource">getSource</a>
</li>
<li data-name="ol.source.ImageVector#getState" class="unstable">
<a href="ol.source.ImageVector.html#getState">getState</a>
</li>
<li data-name="ol.source.ImageVector#on" class="">
<a href="ol.source.ImageVector.html#on">on</a>
</li>
<li data-name="ol.source.ImageVector#once" class="">
<a href="ol.source.ImageVector.html#once">once</a>
</li>
<li data-name="ol.source.ImageVector#un" class="">
<a href="ol.source.ImageVector.html#un">un</a>
</li>
<li data-name="ol.source.ImageVector#unByKey" class="">
<a href="ol.source.ImageVector.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.ImageWMS">
<span class="title">
<a href="ol.source.ImageWMS.html">ol.source.ImageWMS</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.ImageWMS#dispatchChangeEvent" class="unstable">
<a href="ol.source.ImageWMS.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.ImageWMS#getAttributions" class="">
<a href="ol.source.ImageWMS.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.ImageWMS#getGetFeatureInfoUrl" class="">
<a href="ol.source.ImageWMS.html#getGetFeatureInfoUrl">getGetFeatureInfoUrl</a>
</li>
<li data-name="ol.source.ImageWMS#getLogo" class="">
<a href="ol.source.ImageWMS.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.ImageWMS#getParams" class="">
<a href="ol.source.ImageWMS.html#getParams">getParams</a>
</li>
<li data-name="ol.source.ImageWMS#getProjection" class="unstable">
<a href="ol.source.ImageWMS.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.ImageWMS#getRevision" class="unstable">
<a href="ol.source.ImageWMS.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.ImageWMS#getState" class="unstable">
<a href="ol.source.ImageWMS.html#getState">getState</a>
</li>
<li data-name="ol.source.ImageWMS#getUrl" class="">
<a href="ol.source.ImageWMS.html#getUrl">getUrl</a>
</li>
<li data-name="ol.source.ImageWMS#on" class="">
<a href="ol.source.ImageWMS.html#on">on</a>
</li>
<li data-name="ol.source.ImageWMS#once" class="">
<a href="ol.source.ImageWMS.html#once">once</a>
</li>
<li data-name="ol.source.ImageWMS#setUrl" class="">
<a href="ol.source.ImageWMS.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.ImageWMS#un" class="">
<a href="ol.source.ImageWMS.html#un">un</a>
</li>
<li data-name="ol.source.ImageWMS#unByKey" class="">
<a href="ol.source.ImageWMS.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.ImageWMS#updateParams" class="">
<a href="ol.source.ImageWMS.html#updateParams">updateParams</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.KML">
<span class="title">
<a href="ol.source.KML.html">ol.source.KML</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.KML#addFeature" class="">
<a href="ol.source.KML.html#addFeature">addFeature</a>
</li>
<li data-name="ol.source.KML#addFeatures" class="">
<a href="ol.source.KML.html#addFeatures">addFeatures</a>
</li>
<li data-name="ol.source.KML#clear" class="">
<a href="ol.source.KML.html#clear">clear</a>
</li>
<li data-name="ol.source.KML#dispatchChangeEvent" class="unstable">
<a href="ol.source.KML.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.KML#forEachFeature" class="">
<a href="ol.source.KML.html#forEachFeature">forEachFeature</a>
</li>
<li data-name="ol.source.KML#forEachFeatureInExtent" class="unstable">
<a href="ol.source.KML.html#forEachFeatureInExtent">forEachFeatureInExtent</a>
</li>
<li data-name="ol.source.KML#getAttributions" class="">
<a href="ol.source.KML.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.KML#getClosestFeatureToCoordinate" class="">
<a href="ol.source.KML.html#getClosestFeatureToCoordinate">getClosestFeatureToCoordinate</a>
</li>
<li data-name="ol.source.KML#getExtent" class="">
<a href="ol.source.KML.html#getExtent">getExtent</a>
</li>
<li data-name="ol.source.KML#getFeatureById" class="">
<a href="ol.source.KML.html#getFeatureById">getFeatureById</a>
</li>
<li data-name="ol.source.KML#getFeatures" class="">
<a href="ol.source.KML.html#getFeatures">getFeatures</a>
</li>
<li data-name="ol.source.KML#getFeaturesAtCoordinate" class="">
<a href="ol.source.KML.html#getFeaturesAtCoordinate">getFeaturesAtCoordinate</a>
</li>
<li data-name="ol.source.KML#getLogo" class="">
<a href="ol.source.KML.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.KML#getProjection" class="unstable">
<a href="ol.source.KML.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.KML#getRevision" class="unstable">
<a href="ol.source.KML.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.KML#getState" class="unstable">
<a href="ol.source.KML.html#getState">getState</a>
</li>
<li data-name="ol.source.KML#on" class="">
<a href="ol.source.KML.html#on">on</a>
</li>
<li data-name="ol.source.KML#once" class="">
<a href="ol.source.KML.html#once">once</a>
</li>
<li data-name="ol.source.KML#readFeatures" class="unstable">
<a href="ol.source.KML.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.source.KML#removeFeature" class="">
<a href="ol.source.KML.html#removeFeature">removeFeature</a>
</li>
<li data-name="ol.source.KML#un" class="">
<a href="ol.source.KML.html#un">un</a>
</li>
<li data-name="ol.source.KML#unByKey" class="">
<a href="ol.source.KML.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.MapQuest">
<span class="title">
<a href="ol.source.MapQuest.html">ol.source.MapQuest</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.MapQuest#dispatchChangeEvent" class="unstable">
<a href="ol.source.MapQuest.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.MapQuest#getAttributions" class="">
<a href="ol.source.MapQuest.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.MapQuest#getLogo" class="">
<a href="ol.source.MapQuest.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.MapQuest#getProjection" class="unstable">
<a href="ol.source.MapQuest.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.MapQuest#getRevision" class="unstable">
<a href="ol.source.MapQuest.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.MapQuest#getState" class="unstable">
<a href="ol.source.MapQuest.html#getState">getState</a>
</li>
<li data-name="ol.source.MapQuest#getTileGrid" class="">
<a href="ol.source.MapQuest.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.MapQuest#getTileLoadFunction" class="unstable">
<a href="ol.source.MapQuest.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.MapQuest#getTileUrlFunction" class="unstable">
<a href="ol.source.MapQuest.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.MapQuest#on" class="">
<a href="ol.source.MapQuest.html#on">on</a>
</li>
<li data-name="ol.source.MapQuest#once" class="">
<a href="ol.source.MapQuest.html#once">once</a>
</li>
<li data-name="ol.source.MapQuest#setTileLoadFunction" class="unstable">
<a href="ol.source.MapQuest.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.MapQuest#setTileUrlFunction" class="unstable">
<a href="ol.source.MapQuest.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.MapQuest#setUrl" class="">
<a href="ol.source.MapQuest.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.MapQuest#un" class="">
<a href="ol.source.MapQuest.html#un">un</a>
</li>
<li data-name="ol.source.MapQuest#unByKey" class="">
<a href="ol.source.MapQuest.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.OSM">
<span class="title">
<a href="ol.source.OSM.html">ol.source.OSM</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.source.OSM.DATA_ATTRIBUTION"><a href="ol.source.OSM.html#DATA_ATTRIBUTION">DATA_ATTRIBUTION</a></li>
<li data-name="ol.source.OSM.TILE_ATTRIBUTION"><a href="ol.source.OSM.html#TILE_ATTRIBUTION">TILE_ATTRIBUTION</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.OSM#dispatchChangeEvent" class="unstable">
<a href="ol.source.OSM.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.OSM#getAttributions" class="">
<a href="ol.source.OSM.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.OSM#getLogo" class="">
<a href="ol.source.OSM.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.OSM#getProjection" class="unstable">
<a href="ol.source.OSM.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.OSM#getRevision" class="unstable">
<a href="ol.source.OSM.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.OSM#getState" class="unstable">
<a href="ol.source.OSM.html#getState">getState</a>
</li>
<li data-name="ol.source.OSM#getTileGrid" class="">
<a href="ol.source.OSM.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.OSM#getTileLoadFunction" class="unstable">
<a href="ol.source.OSM.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.OSM#getTileUrlFunction" class="unstable">
<a href="ol.source.OSM.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.OSM#on" class="">
<a href="ol.source.OSM.html#on">on</a>
</li>
<li data-name="ol.source.OSM#once" class="">
<a href="ol.source.OSM.html#once">once</a>
</li>
<li data-name="ol.source.OSM#setTileLoadFunction" class="unstable">
<a href="ol.source.OSM.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.OSM#setTileUrlFunction" class="unstable">
<a href="ol.source.OSM.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.OSM#setUrl" class="">
<a href="ol.source.OSM.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.OSM#un" class="">
<a href="ol.source.OSM.html#un">un</a>
</li>
<li data-name="ol.source.OSM#unByKey" class="">
<a href="ol.source.OSM.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.OSMXML">
<span class="title">
<a href="ol.source.OSMXML.html">ol.source.OSMXML</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.OSMXML#addFeature" class="">
<a href="ol.source.OSMXML.html#addFeature">addFeature</a>
</li>
<li data-name="ol.source.OSMXML#addFeatures" class="">
<a href="ol.source.OSMXML.html#addFeatures">addFeatures</a>
</li>
<li data-name="ol.source.OSMXML#clear" class="">
<a href="ol.source.OSMXML.html#clear">clear</a>
</li>
<li data-name="ol.source.OSMXML#dispatchChangeEvent" class="unstable">
<a href="ol.source.OSMXML.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.OSMXML#forEachFeature" class="">
<a href="ol.source.OSMXML.html#forEachFeature">forEachFeature</a>
</li>
<li data-name="ol.source.OSMXML#forEachFeatureInExtent" class="unstable">
<a href="ol.source.OSMXML.html#forEachFeatureInExtent">forEachFeatureInExtent</a>
</li>
<li data-name="ol.source.OSMXML#getAttributions" class="">
<a href="ol.source.OSMXML.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.OSMXML#getClosestFeatureToCoordinate" class="">
<a href="ol.source.OSMXML.html#getClosestFeatureToCoordinate">getClosestFeatureToCoordinate</a>
</li>
<li data-name="ol.source.OSMXML#getExtent" class="">
<a href="ol.source.OSMXML.html#getExtent">getExtent</a>
</li>
<li data-name="ol.source.OSMXML#getFeatureById" class="">
<a href="ol.source.OSMXML.html#getFeatureById">getFeatureById</a>
</li>
<li data-name="ol.source.OSMXML#getFeatures" class="">
<a href="ol.source.OSMXML.html#getFeatures">getFeatures</a>
</li>
<li data-name="ol.source.OSMXML#getFeaturesAtCoordinate" class="">
<a href="ol.source.OSMXML.html#getFeaturesAtCoordinate">getFeaturesAtCoordinate</a>
</li>
<li data-name="ol.source.OSMXML#getLogo" class="">
<a href="ol.source.OSMXML.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.OSMXML#getProjection" class="unstable">
<a href="ol.source.OSMXML.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.OSMXML#getRevision" class="unstable">
<a href="ol.source.OSMXML.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.OSMXML#getState" class="unstable">
<a href="ol.source.OSMXML.html#getState">getState</a>
</li>
<li data-name="ol.source.OSMXML#on" class="">
<a href="ol.source.OSMXML.html#on">on</a>
</li>
<li data-name="ol.source.OSMXML#once" class="">
<a href="ol.source.OSMXML.html#once">once</a>
</li>
<li data-name="ol.source.OSMXML#readFeatures" class="unstable">
<a href="ol.source.OSMXML.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.source.OSMXML#removeFeature" class="">
<a href="ol.source.OSMXML.html#removeFeature">removeFeature</a>
</li>
<li data-name="ol.source.OSMXML#un" class="">
<a href="ol.source.OSMXML.html#un">un</a>
</li>
<li data-name="ol.source.OSMXML#unByKey" class="">
<a href="ol.source.OSMXML.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.ServerVector">
<span class="title">
<a href="ol.source.ServerVector.html">ol.source.ServerVector</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.ServerVector#addFeature" class="">
<a href="ol.source.ServerVector.html#addFeature">addFeature</a>
</li>
<li data-name="ol.source.ServerVector#addFeatures" class="">
<a href="ol.source.ServerVector.html#addFeatures">addFeatures</a>
</li>
<li data-name="ol.source.ServerVector#clear" class="">
<a href="ol.source.ServerVector.html#clear">clear</a>
</li>
<li data-name="ol.source.ServerVector#dispatchChangeEvent" class="unstable">
<a href="ol.source.ServerVector.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.ServerVector#forEachFeature" class="">
<a href="ol.source.ServerVector.html#forEachFeature">forEachFeature</a>
</li>
<li data-name="ol.source.ServerVector#forEachFeatureInExtent" class="unstable">
<a href="ol.source.ServerVector.html#forEachFeatureInExtent">forEachFeatureInExtent</a>
</li>
<li data-name="ol.source.ServerVector#getAttributions" class="">
<a href="ol.source.ServerVector.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.ServerVector#getClosestFeatureToCoordinate" class="">
<a href="ol.source.ServerVector.html#getClosestFeatureToCoordinate">getClosestFeatureToCoordinate</a>
</li>
<li data-name="ol.source.ServerVector#getExtent" class="">
<a href="ol.source.ServerVector.html#getExtent">getExtent</a>
</li>
<li data-name="ol.source.ServerVector#getFeatureById" class="">
<a href="ol.source.ServerVector.html#getFeatureById">getFeatureById</a>
</li>
<li data-name="ol.source.ServerVector#getFeatures" class="">
<a href="ol.source.ServerVector.html#getFeatures">getFeatures</a>
</li>
<li data-name="ol.source.ServerVector#getFeaturesAtCoordinate" class="">
<a href="ol.source.ServerVector.html#getFeaturesAtCoordinate">getFeaturesAtCoordinate</a>
</li>
<li data-name="ol.source.ServerVector#getLogo" class="">
<a href="ol.source.ServerVector.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.ServerVector#getProjection" class="unstable">
<a href="ol.source.ServerVector.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.ServerVector#getRevision" class="unstable">
<a href="ol.source.ServerVector.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.ServerVector#getState" class="unstable">
<a href="ol.source.ServerVector.html#getState">getState</a>
</li>
<li data-name="ol.source.ServerVector#on" class="">
<a href="ol.source.ServerVector.html#on">on</a>
</li>
<li data-name="ol.source.ServerVector#once" class="">
<a href="ol.source.ServerVector.html#once">once</a>
</li>
<li data-name="ol.source.ServerVector#readFeatures" class="unstable">
<a href="ol.source.ServerVector.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.source.ServerVector#removeFeature" class="">
<a href="ol.source.ServerVector.html#removeFeature">removeFeature</a>
</li>
<li data-name="ol.source.ServerVector#un" class="">
<a href="ol.source.ServerVector.html#un">un</a>
</li>
<li data-name="ol.source.ServerVector#unByKey" class="">
<a href="ol.source.ServerVector.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.Source">
<span class="title">
<a href="ol.source.Source.html">ol.source.Source</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.Source#dispatchChangeEvent" class="unstable">
<a href="ol.source.Source.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.Source#getAttributions" class="">
<a href="ol.source.Source.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.Source#getLogo" class="">
<a href="ol.source.Source.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.Source#getProjection" class="unstable">
<a href="ol.source.Source.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.Source#getRevision" class="unstable">
<a href="ol.source.Source.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.Source#getState" class="unstable">
<a href="ol.source.Source.html#getState">getState</a>
</li>
<li data-name="ol.source.Source#on" class="">
<a href="ol.source.Source.html#on">on</a>
</li>
<li data-name="ol.source.Source#once" class="">
<a href="ol.source.Source.html#once">once</a>
</li>
<li data-name="ol.source.Source#un" class="">
<a href="ol.source.Source.html#un">un</a>
</li>
<li data-name="ol.source.Source#unByKey" class="">
<a href="ol.source.Source.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.Stamen">
<span class="title">
<a href="ol.source.Stamen.html">ol.source.Stamen</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.Stamen#dispatchChangeEvent" class="unstable">
<a href="ol.source.Stamen.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.Stamen#getAttributions" class="">
<a href="ol.source.Stamen.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.Stamen#getLogo" class="">
<a href="ol.source.Stamen.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.Stamen#getProjection" class="unstable">
<a href="ol.source.Stamen.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.Stamen#getRevision" class="unstable">
<a href="ol.source.Stamen.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.Stamen#getState" class="unstable">
<a href="ol.source.Stamen.html#getState">getState</a>
</li>
<li data-name="ol.source.Stamen#getTileGrid" class="">
<a href="ol.source.Stamen.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.Stamen#getTileLoadFunction" class="unstable">
<a href="ol.source.Stamen.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.Stamen#getTileUrlFunction" class="unstable">
<a href="ol.source.Stamen.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.Stamen#on" class="">
<a href="ol.source.Stamen.html#on">on</a>
</li>
<li data-name="ol.source.Stamen#once" class="">
<a href="ol.source.Stamen.html#once">once</a>
</li>
<li data-name="ol.source.Stamen#setTileLoadFunction" class="unstable">
<a href="ol.source.Stamen.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.Stamen#setTileUrlFunction" class="unstable">
<a href="ol.source.Stamen.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.Stamen#setUrl" class="">
<a href="ol.source.Stamen.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.Stamen#un" class="">
<a href="ol.source.Stamen.html#un">un</a>
</li>
<li data-name="ol.source.Stamen#unByKey" class="">
<a href="ol.source.Stamen.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.StaticVector">
<span class="title">
<a href="ol.source.StaticVector.html">ol.source.StaticVector</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.StaticVector#addFeature" class="">
<a href="ol.source.StaticVector.html#addFeature">addFeature</a>
</li>
<li data-name="ol.source.StaticVector#addFeatures" class="">
<a href="ol.source.StaticVector.html#addFeatures">addFeatures</a>
</li>
<li data-name="ol.source.StaticVector#clear" class="">
<a href="ol.source.StaticVector.html#clear">clear</a>
</li>
<li data-name="ol.source.StaticVector#dispatchChangeEvent" class="unstable">
<a href="ol.source.StaticVector.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.StaticVector#forEachFeature" class="">
<a href="ol.source.StaticVector.html#forEachFeature">forEachFeature</a>
</li>
<li data-name="ol.source.StaticVector#forEachFeatureInExtent" class="unstable">
<a href="ol.source.StaticVector.html#forEachFeatureInExtent">forEachFeatureInExtent</a>
</li>
<li data-name="ol.source.StaticVector#getAttributions" class="">
<a href="ol.source.StaticVector.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.StaticVector#getClosestFeatureToCoordinate" class="">
<a href="ol.source.StaticVector.html#getClosestFeatureToCoordinate">getClosestFeatureToCoordinate</a>
</li>
<li data-name="ol.source.StaticVector#getExtent" class="">
<a href="ol.source.StaticVector.html#getExtent">getExtent</a>
</li>
<li data-name="ol.source.StaticVector#getFeatureById" class="">
<a href="ol.source.StaticVector.html#getFeatureById">getFeatureById</a>
</li>
<li data-name="ol.source.StaticVector#getFeatures" class="">
<a href="ol.source.StaticVector.html#getFeatures">getFeatures</a>
</li>
<li data-name="ol.source.StaticVector#getFeaturesAtCoordinate" class="">
<a href="ol.source.StaticVector.html#getFeaturesAtCoordinate">getFeaturesAtCoordinate</a>
</li>
<li data-name="ol.source.StaticVector#getLogo" class="">
<a href="ol.source.StaticVector.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.StaticVector#getProjection" class="unstable">
<a href="ol.source.StaticVector.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.StaticVector#getRevision" class="unstable">
<a href="ol.source.StaticVector.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.StaticVector#getState" class="unstable">
<a href="ol.source.StaticVector.html#getState">getState</a>
</li>
<li data-name="ol.source.StaticVector#on" class="">
<a href="ol.source.StaticVector.html#on">on</a>
</li>
<li data-name="ol.source.StaticVector#once" class="">
<a href="ol.source.StaticVector.html#once">once</a>
</li>
<li data-name="ol.source.StaticVector#readFeatures" class="unstable">
<a href="ol.source.StaticVector.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.source.StaticVector#removeFeature" class="">
<a href="ol.source.StaticVector.html#removeFeature">removeFeature</a>
</li>
<li data-name="ol.source.StaticVector#un" class="">
<a href="ol.source.StaticVector.html#un">un</a>
</li>
<li data-name="ol.source.StaticVector#unByKey" class="">
<a href="ol.source.StaticVector.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.Tile">
<span class="title">
<a href="ol.source.Tile.html">ol.source.Tile</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.Tile#dispatchChangeEvent" class="unstable">
<a href="ol.source.Tile.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.Tile#getAttributions" class="">
<a href="ol.source.Tile.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.Tile#getLogo" class="">
<a href="ol.source.Tile.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.Tile#getProjection" class="unstable">
<a href="ol.source.Tile.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.Tile#getRevision" class="unstable">
<a href="ol.source.Tile.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.Tile#getState" class="unstable">
<a href="ol.source.Tile.html#getState">getState</a>
</li>
<li data-name="ol.source.Tile#getTileGrid" class="">
<a href="ol.source.Tile.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.Tile#on" class="">
<a href="ol.source.Tile.html#on">on</a>
</li>
<li data-name="ol.source.Tile#once" class="">
<a href="ol.source.Tile.html#once">once</a>
</li>
<li data-name="ol.source.Tile#un" class="">
<a href="ol.source.Tile.html#un">un</a>
</li>
<li data-name="ol.source.Tile#unByKey" class="">
<a href="ol.source.Tile.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.TileDebug">
<span class="title">
<a href="ol.source.TileDebug.html">ol.source.TileDebug</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.TileDebug#dispatchChangeEvent" class="unstable">
<a href="ol.source.TileDebug.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.TileDebug#getAttributions" class="">
<a href="ol.source.TileDebug.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.TileDebug#getLogo" class="">
<a href="ol.source.TileDebug.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.TileDebug#getProjection" class="unstable">
<a href="ol.source.TileDebug.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.TileDebug#getRevision" class="unstable">
<a href="ol.source.TileDebug.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.TileDebug#getState" class="unstable">
<a href="ol.source.TileDebug.html#getState">getState</a>
</li>
<li data-name="ol.source.TileDebug#getTileGrid" class="">
<a href="ol.source.TileDebug.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.TileDebug#on" class="">
<a href="ol.source.TileDebug.html#on">on</a>
</li>
<li data-name="ol.source.TileDebug#once" class="">
<a href="ol.source.TileDebug.html#once">once</a>
</li>
<li data-name="ol.source.TileDebug#un" class="">
<a href="ol.source.TileDebug.html#un">un</a>
</li>
<li data-name="ol.source.TileDebug#unByKey" class="">
<a href="ol.source.TileDebug.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.TileImage">
<span class="title">
<a href="ol.source.TileImage.html">ol.source.TileImage</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.TileImage#dispatchChangeEvent" class="unstable">
<a href="ol.source.TileImage.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.TileImage#getAttributions" class="">
<a href="ol.source.TileImage.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.TileImage#getLogo" class="">
<a href="ol.source.TileImage.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.TileImage#getProjection" class="unstable">
<a href="ol.source.TileImage.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.TileImage#getRevision" class="unstable">
<a href="ol.source.TileImage.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.TileImage#getState" class="unstable">
<a href="ol.source.TileImage.html#getState">getState</a>
</li>
<li data-name="ol.source.TileImage#getTileGrid" class="">
<a href="ol.source.TileImage.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.TileImage#getTileLoadFunction" class="unstable">
<a href="ol.source.TileImage.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.TileImage#getTileUrlFunction" class="unstable">
<a href="ol.source.TileImage.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.TileImage#on" class="">
<a href="ol.source.TileImage.html#on">on</a>
</li>
<li data-name="ol.source.TileImage#once" class="">
<a href="ol.source.TileImage.html#once">once</a>
</li>
<li data-name="ol.source.TileImage#setTileLoadFunction" class="unstable">
<a href="ol.source.TileImage.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.TileImage#setTileUrlFunction" class="unstable">
<a href="ol.source.TileImage.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.TileImage#un" class="">
<a href="ol.source.TileImage.html#un">un</a>
</li>
<li data-name="ol.source.TileImage#unByKey" class="">
<a href="ol.source.TileImage.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.TileJSON">
<span class="title">
<a href="ol.source.TileJSON.html">ol.source.TileJSON</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.TileJSON#dispatchChangeEvent" class="unstable">
<a href="ol.source.TileJSON.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.TileJSON#getAttributions" class="">
<a href="ol.source.TileJSON.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.TileJSON#getLogo" class="">
<a href="ol.source.TileJSON.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.TileJSON#getProjection" class="unstable">
<a href="ol.source.TileJSON.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.TileJSON#getRevision" class="unstable">
<a href="ol.source.TileJSON.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.TileJSON#getState" class="unstable">
<a href="ol.source.TileJSON.html#getState">getState</a>
</li>
<li data-name="ol.source.TileJSON#getTileGrid" class="">
<a href="ol.source.TileJSON.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.TileJSON#getTileLoadFunction" class="unstable">
<a href="ol.source.TileJSON.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.TileJSON#getTileUrlFunction" class="unstable">
<a href="ol.source.TileJSON.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.TileJSON#on" class="">
<a href="ol.source.TileJSON.html#on">on</a>
</li>
<li data-name="ol.source.TileJSON#once" class="">
<a href="ol.source.TileJSON.html#once">once</a>
</li>
<li data-name="ol.source.TileJSON#setTileLoadFunction" class="unstable">
<a href="ol.source.TileJSON.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.TileJSON#setTileUrlFunction" class="unstable">
<a href="ol.source.TileJSON.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.TileJSON#un" class="">
<a href="ol.source.TileJSON.html#un">un</a>
</li>
<li data-name="ol.source.TileJSON#unByKey" class="">
<a href="ol.source.TileJSON.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.TileVector">
<span class="title">
<a href="ol.source.TileVector.html">ol.source.TileVector</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.TileVector#addFeature" class="">
<a href="ol.source.TileVector.html#addFeature">addFeature</a>
</li>
<li data-name="ol.source.TileVector#addFeatures" class="">
<a href="ol.source.TileVector.html#addFeatures">addFeatures</a>
</li>
<li data-name="ol.source.TileVector#clear" class="">
<a href="ol.source.TileVector.html#clear">clear</a>
</li>
<li data-name="ol.source.TileVector#dispatchChangeEvent" class="unstable">
<a href="ol.source.TileVector.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.TileVector#forEachFeature" class="">
<a href="ol.source.TileVector.html#forEachFeature">forEachFeature</a>
</li>
<li data-name="ol.source.TileVector#forEachFeatureInExtent" class="unstable">
<a href="ol.source.TileVector.html#forEachFeatureInExtent">forEachFeatureInExtent</a>
</li>
<li data-name="ol.source.TileVector#getAttributions" class="">
<a href="ol.source.TileVector.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.TileVector#getClosestFeatureToCoordinate" class="">
<a href="ol.source.TileVector.html#getClosestFeatureToCoordinate">getClosestFeatureToCoordinate</a>
</li>
<li data-name="ol.source.TileVector#getExtent" class="">
<a href="ol.source.TileVector.html#getExtent">getExtent</a>
</li>
<li data-name="ol.source.TileVector#getFeatureById" class="">
<a href="ol.source.TileVector.html#getFeatureById">getFeatureById</a>
</li>
<li data-name="ol.source.TileVector#getFeatures" class="">
<a href="ol.source.TileVector.html#getFeatures">getFeatures</a>
</li>
<li data-name="ol.source.TileVector#getFeaturesAtCoordinate" class="">
<a href="ol.source.TileVector.html#getFeaturesAtCoordinate">getFeaturesAtCoordinate</a>
</li>
<li data-name="ol.source.TileVector#getLogo" class="">
<a href="ol.source.TileVector.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.TileVector#getProjection" class="unstable">
<a href="ol.source.TileVector.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.TileVector#getRevision" class="unstable">
<a href="ol.source.TileVector.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.TileVector#getState" class="unstable">
<a href="ol.source.TileVector.html#getState">getState</a>
</li>
<li data-name="ol.source.TileVector#on" class="">
<a href="ol.source.TileVector.html#on">on</a>
</li>
<li data-name="ol.source.TileVector#once" class="">
<a href="ol.source.TileVector.html#once">once</a>
</li>
<li data-name="ol.source.TileVector#readFeatures" class="unstable">
<a href="ol.source.TileVector.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.source.TileVector#removeFeature" class="">
<a href="ol.source.TileVector.html#removeFeature">removeFeature</a>
</li>
<li data-name="ol.source.TileVector#un" class="">
<a href="ol.source.TileVector.html#un">un</a>
</li>
<li data-name="ol.source.TileVector#unByKey" class="">
<a href="ol.source.TileVector.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.TileWMS">
<span class="title">
<a href="ol.source.TileWMS.html">ol.source.TileWMS</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.TileWMS#dispatchChangeEvent" class="unstable">
<a href="ol.source.TileWMS.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.TileWMS#getAttributions" class="">
<a href="ol.source.TileWMS.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.TileWMS#getGetFeatureInfoUrl" class="">
<a href="ol.source.TileWMS.html#getGetFeatureInfoUrl">getGetFeatureInfoUrl</a>
</li>
<li data-name="ol.source.TileWMS#getLogo" class="">
<a href="ol.source.TileWMS.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.TileWMS#getParams" class="">
<a href="ol.source.TileWMS.html#getParams">getParams</a>
</li>
<li data-name="ol.source.TileWMS#getProjection" class="unstable">
<a href="ol.source.TileWMS.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.TileWMS#getRevision" class="unstable">
<a href="ol.source.TileWMS.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.TileWMS#getState" class="unstable">
<a href="ol.source.TileWMS.html#getState">getState</a>
</li>
<li data-name="ol.source.TileWMS#getTileGrid" class="">
<a href="ol.source.TileWMS.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.TileWMS#getTileLoadFunction" class="unstable">
<a href="ol.source.TileWMS.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.TileWMS#getTileUrlFunction" class="unstable">
<a href="ol.source.TileWMS.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.TileWMS#getUrls" class="">
<a href="ol.source.TileWMS.html#getUrls">getUrls</a>
</li>
<li data-name="ol.source.TileWMS#on" class="">
<a href="ol.source.TileWMS.html#on">on</a>
</li>
<li data-name="ol.source.TileWMS#once" class="">
<a href="ol.source.TileWMS.html#once">once</a>
</li>
<li data-name="ol.source.TileWMS#setTileLoadFunction" class="unstable">
<a href="ol.source.TileWMS.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.TileWMS#setTileUrlFunction" class="unstable">
<a href="ol.source.TileWMS.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.TileWMS#setUrl" class="">
<a href="ol.source.TileWMS.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.TileWMS#setUrls" class="">
<a href="ol.source.TileWMS.html#setUrls">setUrls</a>
</li>
<li data-name="ol.source.TileWMS#un" class="">
<a href="ol.source.TileWMS.html#un">un</a>
</li>
<li data-name="ol.source.TileWMS#unByKey" class="">
<a href="ol.source.TileWMS.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.TileWMS#updateParams" class="">
<a href="ol.source.TileWMS.html#updateParams">updateParams</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.TopoJSON">
<span class="title">
<a href="ol.source.TopoJSON.html">ol.source.TopoJSON</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.TopoJSON#addFeature" class="">
<a href="ol.source.TopoJSON.html#addFeature">addFeature</a>
</li>
<li data-name="ol.source.TopoJSON#addFeatures" class="">
<a href="ol.source.TopoJSON.html#addFeatures">addFeatures</a>
</li>
<li data-name="ol.source.TopoJSON#clear" class="">
<a href="ol.source.TopoJSON.html#clear">clear</a>
</li>
<li data-name="ol.source.TopoJSON#dispatchChangeEvent" class="unstable">
<a href="ol.source.TopoJSON.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.TopoJSON#forEachFeature" class="">
<a href="ol.source.TopoJSON.html#forEachFeature">forEachFeature</a>
</li>
<li data-name="ol.source.TopoJSON#forEachFeatureInExtent" class="unstable">
<a href="ol.source.TopoJSON.html#forEachFeatureInExtent">forEachFeatureInExtent</a>
</li>
<li data-name="ol.source.TopoJSON#getAttributions" class="">
<a href="ol.source.TopoJSON.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.TopoJSON#getClosestFeatureToCoordinate" class="">
<a href="ol.source.TopoJSON.html#getClosestFeatureToCoordinate">getClosestFeatureToCoordinate</a>
</li>
<li data-name="ol.source.TopoJSON#getExtent" class="">
<a href="ol.source.TopoJSON.html#getExtent">getExtent</a>
</li>
<li data-name="ol.source.TopoJSON#getFeatureById" class="">
<a href="ol.source.TopoJSON.html#getFeatureById">getFeatureById</a>
</li>
<li data-name="ol.source.TopoJSON#getFeatures" class="">
<a href="ol.source.TopoJSON.html#getFeatures">getFeatures</a>
</li>
<li data-name="ol.source.TopoJSON#getFeaturesAtCoordinate" class="">
<a href="ol.source.TopoJSON.html#getFeaturesAtCoordinate">getFeaturesAtCoordinate</a>
</li>
<li data-name="ol.source.TopoJSON#getLogo" class="">
<a href="ol.source.TopoJSON.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.TopoJSON#getProjection" class="unstable">
<a href="ol.source.TopoJSON.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.TopoJSON#getRevision" class="unstable">
<a href="ol.source.TopoJSON.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.TopoJSON#getState" class="unstable">
<a href="ol.source.TopoJSON.html#getState">getState</a>
</li>
<li data-name="ol.source.TopoJSON#on" class="">
<a href="ol.source.TopoJSON.html#on">on</a>
</li>
<li data-name="ol.source.TopoJSON#once" class="">
<a href="ol.source.TopoJSON.html#once">once</a>
</li>
<li data-name="ol.source.TopoJSON#readFeatures" class="unstable">
<a href="ol.source.TopoJSON.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.source.TopoJSON#removeFeature" class="">
<a href="ol.source.TopoJSON.html#removeFeature">removeFeature</a>
</li>
<li data-name="ol.source.TopoJSON#un" class="">
<a href="ol.source.TopoJSON.html#un">un</a>
</li>
<li data-name="ol.source.TopoJSON#unByKey" class="">
<a href="ol.source.TopoJSON.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.Vector">
<span class="title">
<a href="ol.source.Vector.html">ol.source.Vector</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.Vector#addFeature" class="">
<a href="ol.source.Vector.html#addFeature">addFeature</a>
</li>
<li data-name="ol.source.Vector#addFeatures" class="">
<a href="ol.source.Vector.html#addFeatures">addFeatures</a>
</li>
<li data-name="ol.source.Vector#clear" class="">
<a href="ol.source.Vector.html#clear">clear</a>
</li>
<li data-name="ol.source.Vector#dispatchChangeEvent" class="unstable">
<a href="ol.source.Vector.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.Vector#forEachFeature" class="">
<a href="ol.source.Vector.html#forEachFeature">forEachFeature</a>
</li>
<li data-name="ol.source.Vector#forEachFeatureInExtent" class="unstable">
<a href="ol.source.Vector.html#forEachFeatureInExtent">forEachFeatureInExtent</a>
</li>
<li data-name="ol.source.Vector#getAttributions" class="">
<a href="ol.source.Vector.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.Vector#getClosestFeatureToCoordinate" class="">
<a href="ol.source.Vector.html#getClosestFeatureToCoordinate">getClosestFeatureToCoordinate</a>
</li>
<li data-name="ol.source.Vector#getExtent" class="">
<a href="ol.source.Vector.html#getExtent">getExtent</a>
</li>
<li data-name="ol.source.Vector#getFeatureById" class="">
<a href="ol.source.Vector.html#getFeatureById">getFeatureById</a>
</li>
<li data-name="ol.source.Vector#getFeatures" class="">
<a href="ol.source.Vector.html#getFeatures">getFeatures</a>
</li>
<li data-name="ol.source.Vector#getFeaturesAtCoordinate" class="">
<a href="ol.source.Vector.html#getFeaturesAtCoordinate">getFeaturesAtCoordinate</a>
</li>
<li data-name="ol.source.Vector#getLogo" class="">
<a href="ol.source.Vector.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.Vector#getProjection" class="unstable">
<a href="ol.source.Vector.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.Vector#getRevision" class="unstable">
<a href="ol.source.Vector.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.Vector#getState" class="unstable">
<a href="ol.source.Vector.html#getState">getState</a>
</li>
<li data-name="ol.source.Vector#on" class="">
<a href="ol.source.Vector.html#on">on</a>
</li>
<li data-name="ol.source.Vector#once" class="">
<a href="ol.source.Vector.html#once">once</a>
</li>
<li data-name="ol.source.Vector#removeFeature" class="">
<a href="ol.source.Vector.html#removeFeature">removeFeature</a>
</li>
<li data-name="ol.source.Vector#un" class="">
<a href="ol.source.Vector.html#un">un</a>
</li>
<li data-name="ol.source.Vector#unByKey" class="">
<a href="ol.source.Vector.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.VectorEvent">
<span class="title">
<a href="ol.source.VectorEvent.html">ol.source.VectorEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.source.VectorEvent#feature"><a href="ol.source.VectorEvent.html#feature">feature</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.source.WMTS">
<span class="title">
<a href="ol.source.WMTS.html">ol.source.WMTS</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.WMTS#dispatchChangeEvent" class="unstable">
<a href="ol.source.WMTS.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.WMTS#getAttributions" class="">
<a href="ol.source.WMTS.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.WMTS#getDimensions" class="unstable">
<a href="ol.source.WMTS.html#getDimensions">getDimensions</a>
</li>
<li data-name="ol.source.WMTS#getLogo" class="">
<a href="ol.source.WMTS.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.WMTS#getProjection" class="unstable">
<a href="ol.source.WMTS.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.WMTS#getRevision" class="unstable">
<a href="ol.source.WMTS.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.WMTS#getState" class="unstable">
<a href="ol.source.WMTS.html#getState">getState</a>
</li>
<li data-name="ol.source.WMTS#getTileGrid" class="">
<a href="ol.source.WMTS.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.WMTS#getTileLoadFunction" class="unstable">
<a href="ol.source.WMTS.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.WMTS#getTileUrlFunction" class="unstable">
<a href="ol.source.WMTS.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.WMTS#on" class="">
<a href="ol.source.WMTS.html#on">on</a>
</li>
<li data-name="ol.source.WMTS#once" class="">
<a href="ol.source.WMTS.html#once">once</a>
</li>
<li data-name="ol.source.WMTS#setTileLoadFunction" class="unstable">
<a href="ol.source.WMTS.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.WMTS#setTileUrlFunction" class="unstable">
<a href="ol.source.WMTS.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.WMTS#un" class="">
<a href="ol.source.WMTS.html#un">un</a>
</li>
<li data-name="ol.source.WMTS#unByKey" class="">
<a href="ol.source.WMTS.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.WMTS#updateDimensions" class="unstable">
<a href="ol.source.WMTS.html#updateDimensions">updateDimensions</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.XYZ">
<span class="title">
<a href="ol.source.XYZ.html">ol.source.XYZ</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.XYZ#dispatchChangeEvent" class="unstable">
<a href="ol.source.XYZ.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.XYZ#getAttributions" class="">
<a href="ol.source.XYZ.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.XYZ#getLogo" class="">
<a href="ol.source.XYZ.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.XYZ#getProjection" class="unstable">
<a href="ol.source.XYZ.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.XYZ#getRevision" class="unstable">
<a href="ol.source.XYZ.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.XYZ#getState" class="unstable">
<a href="ol.source.XYZ.html#getState">getState</a>
</li>
<li data-name="ol.source.XYZ#getTileGrid" class="">
<a href="ol.source.XYZ.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.XYZ#getTileLoadFunction" class="unstable">
<a href="ol.source.XYZ.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.XYZ#getTileUrlFunction" class="unstable">
<a href="ol.source.XYZ.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.XYZ#on" class="">
<a href="ol.source.XYZ.html#on">on</a>
</li>
<li data-name="ol.source.XYZ#once" class="">
<a href="ol.source.XYZ.html#once">once</a>
</li>
<li data-name="ol.source.XYZ#setTileLoadFunction" class="unstable">
<a href="ol.source.XYZ.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.XYZ#setTileUrlFunction" class="unstable">
<a href="ol.source.XYZ.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.XYZ#setUrl" class="">
<a href="ol.source.XYZ.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.XYZ#un" class="">
<a href="ol.source.XYZ.html#un">un</a>
</li>
<li data-name="ol.source.XYZ#unByKey" class="">
<a href="ol.source.XYZ.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.Zoomify">
<span class="title">
<a href="ol.source.Zoomify.html">ol.source.Zoomify</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.Zoomify#dispatchChangeEvent" class="unstable">
<a href="ol.source.Zoomify.html#dispatchChangeEvent">dispatchChangeEvent</a>
</li>
<li data-name="ol.source.Zoomify#getAttributions" class="">
<a href="ol.source.Zoomify.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.Zoomify#getLogo" class="">
<a href="ol.source.Zoomify.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.Zoomify#getProjection" class="unstable">
<a href="ol.source.Zoomify.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.Zoomify#getRevision" class="unstable">
<a href="ol.source.Zoomify.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.Zoomify#getState" class="unstable">
<a href="ol.source.Zoomify.html#getState">getState</a>
</li>
<li data-name="ol.source.Zoomify#getTileGrid" class="">
<a href="ol.source.Zoomify.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.Zoomify#getTileLoadFunction" class="unstable">
<a href="ol.source.Zoomify.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.Zoomify#getTileUrlFunction" class="unstable">
<a href="ol.source.Zoomify.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.Zoomify#on" class="">
<a href="ol.source.Zoomify.html#on">on</a>
</li>
<li data-name="ol.source.Zoomify#once" class="">
<a href="ol.source.Zoomify.html#once">once</a>
</li>
<li data-name="ol.source.Zoomify#setTileLoadFunction" class="unstable">
<a href="ol.source.Zoomify.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.Zoomify#setTileUrlFunction" class="unstable">
<a href="ol.source.Zoomify.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.Zoomify#un" class="">
<a href="ol.source.Zoomify.html#un">un</a>
</li>
<li data-name="ol.source.Zoomify#unByKey" class="">
<a href="ol.source.Zoomify.html#unByKey">unByKey</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.wms">
<span class="title">
<a href="ol.source.wms.html">ol.source.wms</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.source.wms.ServerType" class="unstable">
<a href="ol.source.wms.html#ServerType">ServerType</a>
</li>
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.style">
<span class="title">
<a href="ol.style.html">ol.style</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.style.IconAnchorUnits" class="unstable">
<a href="ol.style.html#IconAnchorUnits">IconAnchorUnits</a>
</li>
<li data-name="ol.style.IconOrigin" class="unstable">
<a href="ol.style.html#IconOrigin">IconOrigin</a>
</li>
<li data-name="ol.style.StyleFunction" class="unstable">
<a href="ol.style.html#StyleFunction">StyleFunction</a>
</li>
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.style.Circle">
<span class="title">
<a href="ol.style.Circle.html">ol.style.Circle</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.style.Circle#getAnchor" class="unstable">
<a href="ol.style.Circle.html#getAnchor">getAnchor</a>
</li>
<li data-name="ol.style.Circle#getFill" class="unstable">
<a href="ol.style.Circle.html#getFill">getFill</a>
</li>
<li data-name="ol.style.Circle#getImage" class="unstable">
<a href="ol.style.Circle.html#getImage">getImage</a>
</li>
<li data-name="ol.style.Circle#getOrigin" class="unstable">
<a href="ol.style.Circle.html#getOrigin">getOrigin</a>
</li>
<li data-name="ol.style.Circle#getRadius" class="unstable">
<a href="ol.style.Circle.html#getRadius">getRadius</a>
</li>
<li data-name="ol.style.Circle#getRotation" class="unstable">
<a href="ol.style.Circle.html#getRotation">getRotation</a>
</li>
<li data-name="ol.style.Circle#getScale" class="unstable">
<a href="ol.style.Circle.html#getScale">getScale</a>
</li>
<li data-name="ol.style.Circle#getSize" class="unstable">
<a href="ol.style.Circle.html#getSize">getSize</a>
</li>
<li data-name="ol.style.Circle#getStroke" class="unstable">
<a href="ol.style.Circle.html#getStroke">getStroke</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.style.Fill">
<span class="title">
<a href="ol.style.Fill.html">ol.style.Fill</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.style.Fill#getColor" class="unstable">
<a href="ol.style.Fill.html#getColor">getColor</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.style.Icon">
<span class="title">
<a href="ol.style.Icon.html">ol.style.Icon</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.style.Icon#getAnchor" class="unstable">
<a href="ol.style.Icon.html#getAnchor">getAnchor</a>
</li>
<li data-name="ol.style.Icon#getImage" class="unstable">
<a href="ol.style.Icon.html#getImage">getImage</a>
</li>
<li data-name="ol.style.Icon#getOrigin" class="unstable">
<a href="ol.style.Icon.html#getOrigin">getOrigin</a>
</li>
<li data-name="ol.style.Icon#getRotation" class="unstable">
<a href="ol.style.Icon.html#getRotation">getRotation</a>
</li>
<li data-name="ol.style.Icon#getScale" class="unstable">
<a href="ol.style.Icon.html#getScale">getScale</a>
</li>
<li data-name="ol.style.Icon#getSize" class="unstable">
<a href="ol.style.Icon.html#getSize">getSize</a>
</li>
<li data-name="ol.style.Icon#getSrc" class="unstable">
<a href="ol.style.Icon.html#getSrc">getSrc</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.style.Image">
<span class="title">
<a href="ol.style.Image.html">ol.style.Image</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.style.Image#getRotation" class="unstable">
<a href="ol.style.Image.html#getRotation">getRotation</a>
</li>
<li data-name="ol.style.Image#getScale" class="unstable">
<a href="ol.style.Image.html#getScale">getScale</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.style.Stroke">
<span class="title">
<a href="ol.style.Stroke.html">ol.style.Stroke</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.style.Stroke#getColor" class="unstable">
<a href="ol.style.Stroke.html#getColor">getColor</a>
</li>
<li data-name="ol.style.Stroke#getLineCap" class="unstable">
<a href="ol.style.Stroke.html#getLineCap">getLineCap</a>
</li>
<li data-name="ol.style.Stroke#getLineDash" class="unstable">
<a href="ol.style.Stroke.html#getLineDash">getLineDash</a>
</li>
<li data-name="ol.style.Stroke#getLineJoin" class="unstable">
<a href="ol.style.Stroke.html#getLineJoin">getLineJoin</a>
</li>
<li data-name="ol.style.Stroke#getMiterLimit" class="unstable">
<a href="ol.style.Stroke.html#getMiterLimit">getMiterLimit</a>
</li>
<li data-name="ol.style.Stroke#getWidth" class="unstable">
<a href="ol.style.Stroke.html#getWidth">getWidth</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.style.Style">
<span class="title">
<a href="ol.style.Style.html">ol.style.Style</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.style.Style#getFill" class="unstable">
<a href="ol.style.Style.html#getFill">getFill</a>
</li>
<li data-name="ol.style.Style#getImage" class="unstable">
<a href="ol.style.Style.html#getImage">getImage</a>
</li>
<li data-name="ol.style.Style#getStroke" class="unstable">
<a href="ol.style.Style.html#getStroke">getStroke</a>
</li>
<li data-name="ol.style.Style#getText" class="unstable">
<a href="ol.style.Style.html#getText">getText</a>
</li>
<li data-name="ol.style.Style#getZIndex" class="unstable">
<a href="ol.style.Style.html#getZIndex">getZIndex</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.style.Text">
<span class="title">
<a href="ol.style.Text.html">ol.style.Text</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.style.Text#getFill" class="unstable">
<a href="ol.style.Text.html#getFill">getFill</a>
</li>
<li data-name="ol.style.Text#getFont" class="unstable">
<a href="ol.style.Text.html#getFont">getFont</a>
</li>
<li data-name="ol.style.Text#getRotation" class="unstable">
<a href="ol.style.Text.html#getRotation">getRotation</a>
</li>
<li data-name="ol.style.Text#getScale" class="unstable">
<a href="ol.style.Text.html#getScale">getScale</a>
</li>
<li data-name="ol.style.Text#getStroke" class="unstable">
<a href="ol.style.Text.html#getStroke">getStroke</a>
</li>
<li data-name="ol.style.Text#getText" class="unstable">
<a href="ol.style.Text.html#getText">getText</a>
</li>
<li data-name="ol.style.Text#getTextAlign" class="unstable">
<a href="ol.style.Text.html#getTextAlign">getTextAlign</a>
</li>
<li data-name="ol.style.Text#getTextBaseline" class="unstable">
<a href="ol.style.Text.html#getTextBaseline">getTextBaseline</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.tilegrid">
<span class="title">
<a href="ol.tilegrid.html">ol.tilegrid</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
</li>
<li class="item" data-name="ol.tilegrid.TileGrid">
<span class="title">
<a href="ol.tilegrid.TileGrid.html">ol.tilegrid.TileGrid</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.tilegrid.TileGrid#getMaxZoom" class="unstable">
<a href="ol.tilegrid.TileGrid.html#getMaxZoom">getMaxZoom</a>
</li>
<li data-name="ol.tilegrid.TileGrid#getMinZoom" class="unstable">
<a href="ol.tilegrid.TileGrid.html#getMinZoom">getMinZoom</a>
</li>
<li data-name="ol.tilegrid.TileGrid#getOrigin" class="">
<a href="ol.tilegrid.TileGrid.html#getOrigin">getOrigin</a>
</li>
<li data-name="ol.tilegrid.TileGrid#getResolution" class="">
<a href="ol.tilegrid.TileGrid.html#getResolution">getResolution</a>
</li>
<li data-name="ol.tilegrid.TileGrid#getResolutions" class="">
<a href="ol.tilegrid.TileGrid.html#getResolutions">getResolutions</a>
</li>
<li data-name="ol.tilegrid.TileGrid#getTileSize" class="">
<a href="ol.tilegrid.TileGrid.html#getTileSize">getTileSize</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.tilegrid.WMTS">
<span class="title">
<a href="ol.tilegrid.WMTS.html">ol.tilegrid.WMTS</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.tilegrid.WMTS#getMatrixIds" class="unstable">
<a href="ol.tilegrid.WMTS.html#getMatrixIds">getMatrixIds</a>
</li>
<li data-name="ol.tilegrid.WMTS#getMaxZoom" class="unstable">
<a href="ol.tilegrid.WMTS.html#getMaxZoom">getMaxZoom</a>
</li>
<li data-name="ol.tilegrid.WMTS#getMinZoom" class="unstable">
<a href="ol.tilegrid.WMTS.html#getMinZoom">getMinZoom</a>
</li>
<li data-name="ol.tilegrid.WMTS#getOrigin" class="">
<a href="ol.tilegrid.WMTS.html#getOrigin">getOrigin</a>
</li>
<li data-name="ol.tilegrid.WMTS#getResolution" class="">
<a href="ol.tilegrid.WMTS.html#getResolution">getResolution</a>
</li>
<li data-name="ol.tilegrid.WMTS#getResolutions" class="">
<a href="ol.tilegrid.WMTS.html#getResolutions">getResolutions</a>
</li>
<li data-name="ol.tilegrid.WMTS#getTileSize" class="">
<a href="ol.tilegrid.WMTS.html#getTileSize">getTileSize</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.tilegrid.XYZ">
<span class="title">
<a href="ol.tilegrid.XYZ.html">ol.tilegrid.XYZ</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.tilegrid.XYZ#getMaxZoom" class="unstable">
<a href="ol.tilegrid.XYZ.html#getMaxZoom">getMaxZoom</a>
</li>
<li data-name="ol.tilegrid.XYZ#getMinZoom" class="unstable">
<a href="ol.tilegrid.XYZ.html#getMinZoom">getMinZoom</a>
</li>
<li data-name="ol.tilegrid.XYZ#getOrigin" class="">
<a href="ol.tilegrid.XYZ.html#getOrigin">getOrigin</a>
</li>
<li data-name="ol.tilegrid.XYZ#getResolution" class="">
<a href="ol.tilegrid.XYZ.html#getResolution">getResolution</a>
</li>
<li data-name="ol.tilegrid.XYZ#getResolutions" class="">
<a href="ol.tilegrid.XYZ.html#getResolutions">getResolutions</a>
</li>
<li data-name="ol.tilegrid.XYZ#getTileSize" class="">
<a href="ol.tilegrid.XYZ.html#getTileSize">getTileSize</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.tilegrid.Zoomify">
<span class="title">
<a href="ol.tilegrid.Zoomify.html">ol.tilegrid.Zoomify</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.tilegrid.Zoomify#getMaxZoom" class="unstable">
<a href="ol.tilegrid.Zoomify.html#getMaxZoom">getMaxZoom</a>
</li>
<li data-name="ol.tilegrid.Zoomify#getMinZoom" class="unstable">
<a href="ol.tilegrid.Zoomify.html#getMinZoom">getMinZoom</a>
</li>
<li data-name="ol.tilegrid.Zoomify#getOrigin" class="">
<a href="ol.tilegrid.Zoomify.html#getOrigin">getOrigin</a>
</li>
<li data-name="ol.tilegrid.Zoomify#getResolution" class="">
<a href="ol.tilegrid.Zoomify.html#getResolution">getResolution</a>
</li>
<li data-name="ol.tilegrid.Zoomify#getResolutions" class="">
<a href="ol.tilegrid.Zoomify.html#getResolutions">getResolutions</a>
</li>
<li data-name="ol.tilegrid.Zoomify#getTileSize" class="">
<a href="ol.tilegrid.Zoomify.html#getTileSize">getTileSize</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.webgl.Context">
<span class="title">
<a href="ol.webgl.Context.html">ol.webgl.Context</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.webgl.Context#getGL" class="unstable">
<a href="ol.webgl.Context.html#getGL">getGL</a>
</li>
<li data-name="ol.webgl.Context#useProgram" class="unstable">
<a href="ol.webgl.Context.html#useProgram">useProgram</a>
</li>
</ul>
</li>
</ul>
</div>
<div class="main">
<h1 class="page-title" data-filename="gmlformat.js.html">Source: src/ol/format/gmlformat.js</h1>
<section>
<article>
<pre class="prettyprint source"><code>// FIXME Envelopes should not be treated as geometries! readEnvelope_ is part
// of GEOMETRY_PARSERS_ and methods using GEOMETRY_PARSERS_ do not expect
// envelopes/extents, only geometries!
goog.provide('ol.format.GML');
goog.require('goog.asserts');
goog.require('goog.dom');
goog.require('goog.dom.NodeType');
goog.require('goog.object');
goog.require('goog.string');
goog.require('ol.Feature');
goog.require('ol.array');
goog.require('ol.extent');
goog.require('ol.format.Feature');
goog.require('ol.format.XMLFeature');
goog.require('ol.format.XSD');
goog.require('ol.geom.Geometry');
goog.require('ol.geom.LineString');
goog.require('ol.geom.LinearRing');
goog.require('ol.geom.MultiLineString');
goog.require('ol.geom.MultiPoint');
goog.require('ol.geom.MultiPolygon');
goog.require('ol.geom.Point');
goog.require('ol.geom.Polygon');
goog.require('ol.proj');
goog.require('ol.xml');
/**
* @classdesc
* Feature format for reading and writing data in the GML format.
* Currently only supports GML 3.1.1 Simple Features profile.
*
* @constructor
* @param {olx.format.GMLOptions=} opt_options
* Optional configuration object.
* @extends {ol.format.XMLFeature}
* @api stable
*/
ol.format.GML = function(opt_options) {
var options = /** @type {olx.format.GMLOptions} */
(goog.isDef(opt_options) ? opt_options : {});
/**
* @private
* @type {string}
*/
this.featureType_ = options.featureType;
/**
* @private
* @type {string}
*/
this.featureNS_ = options.featureNS;
/**
* @private
* @type {string}
*/
this.srsName_ = options.srsName;
/**
* @private
* @type {boolean}
*/
this.surface_ = goog.isDef(options.surface) ?
options.surface : false;
/**
* @private
* @type {boolean}
*/
this.curve_ = goog.isDef(options.curve) ?
options.curve : false;
/**
* @private
* @type {boolean}
*/
this.multiCurve_ = goog.isDef(options.multiCurve) ?
options.multiCurve : true;
/**
* @private
* @type {boolean}
*/
this.multiSurface_ = goog.isDef(options.multiSurface) ?
options.multiSurface : true;
/**
* @private
* @type {string}
*/
this.schemaLocation_ = goog.isDef(options.schemaLocation) ?
options.schemaLocation : ol.format.GML.schemaLocation_;
goog.base(this);
};
goog.inherits(ol.format.GML, ol.format.XMLFeature);
/**
* @const
* @type {string}
* @private
*/
ol.format.GML.schemaLocation_ = 'http://www.opengis.net/gml ' +
'http://schemas.opengis.net/gml/3.1.1/profiles/gmlsfProfile/' +
'1.0.0/gmlsf.xsd';
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @return {Array.<ol.Feature>} Features.
* @private
*/
ol.format.GML.readFeatures_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
var localName = ol.xml.getLocalName(node);
var context = objectStack[0];
goog.asserts.assert(goog.isObject(context));
var featureType = goog.object.get(context, 'featureType');
var features;
if (localName == 'FeatureCollection') {
features = ol.xml.pushParseAndPop(null,
ol.format.GML.FEATURE_COLLECTION_PARSERS, node, objectStack);
} else if (localName == 'featureMembers' || localName == 'featureMember') {
var parsers = {};
var parsersNS = {};
parsers[featureType] = (localName == 'featureMembers') ?
ol.xml.makeArrayPusher(ol.format.GML.readFeature_) :
ol.xml.makeReplacer(ol.format.GML.readFeature_);
parsersNS[goog.object.get(context, 'featureNS')] = parsers;
features = ol.xml.pushParseAndPop([], parsersNS, node, objectStack);
}
if (!goog.isDef(features)) {
features = [];
}
return features;
};
/**
* @type {Object.<string, Object.<string, Object>>}
*/
ol.format.GML.FEATURE_COLLECTION_PARSERS = {
'http://www.opengis.net/gml': {
'featureMember': ol.xml.makeArrayPusher(ol.format.GML.readFeatures_),
'featureMembers': ol.xml.makeReplacer(ol.format.GML.readFeatures_)
}
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @return {ol.geom.Geometry|undefined} Geometry.
*/
ol.format.GML.readGeometry = function(node, objectStack) {
var context = objectStack[0];
goog.asserts.assert(goog.isObject(context));
goog.object.set(context, 'srsName',
node.firstElementChild.getAttribute('srsName'));
var geometry = ol.xml.pushParseAndPop(/** @type {ol.geom.Geometry} */(null),
ol.format.GML.GEOMETRY_PARSERS_, node, objectStack);
if (goog.isDefAndNotNull(geometry)) {
return /** @type {ol.geom.Geometry} */ (
ol.format.Feature.transformWithOptions(geometry, false, context));
} else {
return undefined;
}
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @return {ol.Feature} Feature.
* @private
*/
ol.format.GML.readFeature_ = function(node, objectStack) {
var n;
var fid = node.getAttribute('fid') ||
ol.xml.getAttributeNS(node, 'http://www.opengis.net/gml', 'id');
var values = {}, geometryName;
for (n = node.firstElementChild; !goog.isNull(n);
n = n.nextElementSibling) {
// Assume attribute elements have one child node and that the child
// is a text node. Otherwise assume it is a geometry node.
if (n.childNodes.length === 0 ||
(n.childNodes.length === 1 &&
n.firstChild.nodeType === 3)) {
var value = ol.xml.getAllTextContent(n, false);
if (goog.string.isEmpty(value)) {
value = undefined;
}
values[ol.xml.getLocalName(n)] = value;
} else {
geometryName = ol.xml.getLocalName(n);
values[geometryName] = ol.format.GML.readGeometry(n, objectStack);
}
}
var feature = new ol.Feature(values);
if (goog.isDef(geometryName)) {
feature.setGeometryName(geometryName);
}
if (fid) {
feature.setId(fid);
}
return feature;
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
* @return {ol.geom.Point|undefined} Point.
*/
ol.format.GML.readPoint_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
goog.asserts.assert(node.localName == 'Point');
var flatCoordinates =
ol.format.GML.readFlatCoordinatesFromNode_(node, objectStack);
if (goog.isDefAndNotNull(flatCoordinates)) {
var point = new ol.geom.Point(null);
goog.asserts.assert(flatCoordinates.length == 3);
point.setFlatCoordinates(ol.geom.GeometryLayout.XYZ, flatCoordinates);
return point;
}
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
* @return {ol.geom.MultiPoint|undefined} MultiPoint.
*/
ol.format.GML.readMultiPoint_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
goog.asserts.assert(node.localName == 'MultiPoint');
var coordinates = ol.xml.pushParseAndPop(
/** @type {Array.<Array.<number>>} */ ([]),
ol.format.GML.MULTIPOINT_PARSERS_, node, objectStack);
if (goog.isDef(coordinates)) {
return new ol.geom.MultiPoint(coordinates);
} else {
return undefined;
}
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
* @return {ol.geom.MultiLineString|undefined} MultiLineString.
*/
ol.format.GML.readMultiLineString_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
goog.asserts.assert(node.localName == 'MultiLineString');
var lineStrings = ol.xml.pushParseAndPop(
/** @type {Array.<ol.geom.LineString>} */ ([]),
ol.format.GML.MULTILINESTRING_PARSERS_, node, objectStack);
if (goog.isDef(lineStrings)) {
var multiLineString = new ol.geom.MultiLineString(null);
multiLineString.setLineStrings(lineStrings);
return multiLineString;
} else {
return undefined;
}
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
* @return {ol.geom.MultiLineString|undefined} MultiLineString.
*/
ol.format.GML.readMultiCurve_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
goog.asserts.assert(node.localName == 'MultiCurve');
var lineStrings = ol.xml.pushParseAndPop(
/** @type {Array.<ol.geom.LineString>} */ ([]),
ol.format.GML.MULTICURVE_PARSERS_, node, objectStack);
if (goog.isDef(lineStrings)) {
var multiLineString = new ol.geom.MultiLineString(null);
multiLineString.setLineStrings(lineStrings);
return multiLineString;
} else {
return undefined;
}
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
* @return {ol.geom.MultiPolygon|undefined} MultiPolygon.
*/
ol.format.GML.readMultiSurface_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
goog.asserts.assert(node.localName == 'MultiSurface');
var polygons = ol.xml.pushParseAndPop(
/** @type {Array.<ol.geom.Polygon>} */ ([]),
ol.format.GML.MULTISURFACE_PARSERS_, node, objectStack);
if (goog.isDef(polygons)) {
var multiPolygon = new ol.geom.MultiPolygon(null);
multiPolygon.setPolygons(polygons);
return multiPolygon;
} else {
return undefined;
}
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
* @return {ol.geom.MultiPolygon|undefined} MultiPolygon.
*/
ol.format.GML.readMultiPolygon_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
goog.asserts.assert(node.localName == 'MultiPolygon');
var polygons = ol.xml.pushParseAndPop(
/** @type {Array.<ol.geom.Polygon>} */ ([]),
ol.format.GML.MULTIPOLYGON_PARSERS_, node, objectStack);
if (goog.isDef(polygons)) {
var multiPolygon = new ol.geom.MultiPolygon(null);
multiPolygon.setPolygons(polygons);
return multiPolygon;
} else {
return undefined;
}
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
*/
ol.format.GML.pointMemberParser_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
goog.asserts.assert(node.localName == 'pointMember' ||
node.localName == 'pointMembers');
ol.xml.parse(ol.format.GML.POINTMEMBER_PARSERS_, node, objectStack);
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
*/
ol.format.GML.lineStringMemberParser_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
goog.asserts.assert(node.localName == 'lineStringMember' ||
node.localName == 'lineStringMembers');
ol.xml.parse(ol.format.GML.LINESTRINGMEMBER_PARSERS_, node, objectStack);
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
*/
ol.format.GML.curveMemberParser_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
goog.asserts.assert(node.localName == 'curveMember' ||
node.localName == 'curveMembers');
ol.xml.parse(ol.format.GML.CURVEMEMBER_PARSERS_, node, objectStack);
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
*/
ol.format.GML.surfaceMemberParser_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
goog.asserts.assert(node.localName == 'surfaceMember' ||
node.localName == 'surfaceMembers');
ol.xml.parse(ol.format.GML.SURFACEMEMBER_PARSERS_, node, objectStack);
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
*/
ol.format.GML.polygonMemberParser_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
goog.asserts.assert(node.localName == 'polygonMember' ||
node.localName == 'polygonMembers');
ol.xml.parse(ol.format.GML.POLYGONMEMBER_PARSERS_, node, objectStack);
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
* @return {ol.geom.LineString|undefined} LineString.
*/
ol.format.GML.readLineString_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
goog.asserts.assert(node.localName == 'LineString');
var flatCoordinates =
ol.format.GML.readFlatCoordinatesFromNode_(node, objectStack);
if (goog.isDefAndNotNull(flatCoordinates)) {
var lineString = new ol.geom.LineString(null);
lineString.setFlatCoordinates(ol.geom.GeometryLayout.XYZ, flatCoordinates);
return lineString;
} else {
return undefined;
}
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
* @return {Array.<(Array.<number>)>|undefined} flat coordinates.
*/
ol.format.GML.readPatch_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
goog.asserts.assert(node.localName == 'patches');
return ol.xml.pushParseAndPop(
/** @type {Array.<Array.<number>>} */ ([null]),
ol.format.GML.PATCHES_PARSERS_, node, objectStack);
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
* @return {Array.<number>|undefined} flat coordinates.
*/
ol.format.GML.readSegment_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
goog.asserts.assert(node.localName == 'segments');
return ol.xml.pushParseAndPop(
/** @type {Array.<number>} */ ([null]),
ol.format.GML.SEGMENTS_PARSERS_, node, objectStack);
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
* @return {Array.<(Array.<number>)>|undefined} flat coordinates.
*/
ol.format.GML.readPolygonPatch_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
goog.asserts.assert(node.localName == 'PolygonPatch');
return ol.xml.pushParseAndPop(
/** @type {Array.<Array.<number>>} */ ([null]),
ol.format.GML.FLAT_LINEAR_RINGS_PARSERS_, node, objectStack);
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
* @return {Array.<number>|undefined} flat coordinates.
*/
ol.format.GML.readLineStringSegment_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
goog.asserts.assert(node.localName == 'LineStringSegment');
return ol.xml.pushParseAndPop(
/** @type {Array.<number>} */ ([null]),
ol.format.GML.GEOMETRY_FLAT_COORDINATES_PARSERS_, node, objectStack);
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
*/
ol.format.GML.interiorParser_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
goog.asserts.assert(node.localName == 'interior');
var flatLinearRing = ol.xml.pushParseAndPop(
/** @type {Array.<number>|undefined} */ (undefined),
ol.format.GML.RING_PARSERS_, node, objectStack);
if (goog.isDef(flatLinearRing)) {
var flatLinearRings = /** @type {Array.<Array.<number>>} */
(objectStack[objectStack.length - 1]);
goog.asserts.assert(goog.isArray(flatLinearRings));
goog.asserts.assert(flatLinearRings.length > 0);
flatLinearRings.push(flatLinearRing);
}
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
*/
ol.format.GML.exteriorParser_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
goog.asserts.assert(node.localName == 'exterior');
var flatLinearRing = ol.xml.pushParseAndPop(
/** @type {Array.<number>|undefined} */ (undefined),
ol.format.GML.RING_PARSERS_, node, objectStack);
if (goog.isDef(flatLinearRing)) {
var flatLinearRings = /** @type {Array.<Array.<number>>} */
(objectStack[objectStack.length - 1]);
goog.asserts.assert(goog.isArray(flatLinearRings));
goog.asserts.assert(flatLinearRings.length > 0);
flatLinearRings[0] = flatLinearRing;
}
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
* @return {Array.<number>|undefined} LinearRing flat coordinates.
*/
ol.format.GML.readFlatLinearRing_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
goog.asserts.assert(node.localName == 'LinearRing');
var ring = ol.xml.pushParseAndPop(/** @type {Array.<number>} */(null),
ol.format.GML.GEOMETRY_FLAT_COORDINATES_PARSERS_, node, objectStack);
if (goog.isDefAndNotNull(ring)) {
return ring;
} else {
return undefined;
}
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
* @return {ol.geom.LinearRing|undefined} LinearRing.
*/
ol.format.GML.readLinearRing_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
goog.asserts.assert(node.localName == 'LinearRing');
var flatCoordinates =
ol.format.GML.readFlatCoordinatesFromNode_(node, objectStack);
if (goog.isDef(flatCoordinates)) {
var ring = new ol.geom.LinearRing(null);
ring.setFlatCoordinates(ol.geom.GeometryLayout.XYZ, flatCoordinates);
return ring;
} else {
return undefined;
}
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
* @return {ol.geom.Polygon|undefined} Polygon.
*/
ol.format.GML.readPolygon_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
goog.asserts.assert(node.localName == 'Polygon');
var flatLinearRings = ol.xml.pushParseAndPop(
/** @type {Array.<Array.<number>>} */ ([null]),
ol.format.GML.FLAT_LINEAR_RINGS_PARSERS_, node, objectStack);
if (goog.isDef(flatLinearRings) &&
!goog.isNull(flatLinearRings[0])) {
var polygon = new ol.geom.Polygon(null);
var flatCoordinates = flatLinearRings[0];
var ends = [flatCoordinates.length];
var i, ii;
for (i = 1, ii = flatLinearRings.length; i < ii; ++i) {
ol.array.safeExtend(flatCoordinates, flatLinearRings[i]);
ends.push(flatCoordinates.length);
}
polygon.setFlatCoordinates(
ol.geom.GeometryLayout.XYZ, flatCoordinates, ends);
return polygon;
} else {
return undefined;
}
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
* @return {ol.geom.Polygon|undefined} Polygon.
*/
ol.format.GML.readSurface_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
goog.asserts.assert(node.localName == 'Surface');
var flatLinearRings = ol.xml.pushParseAndPop(
/** @type {Array.<Array.<number>>} */ ([null]),
ol.format.GML.SURFACE_PARSERS_, node, objectStack);
if (goog.isDef(flatLinearRings) &&
!goog.isNull(flatLinearRings[0])) {
var polygon = new ol.geom.Polygon(null);
var flatCoordinates = flatLinearRings[0];
var ends = [flatCoordinates.length];
var i, ii;
for (i = 1, ii = flatLinearRings.length; i < ii; ++i) {
ol.array.safeExtend(flatCoordinates, flatLinearRings[i]);
ends.push(flatCoordinates.length);
}
polygon.setFlatCoordinates(
ol.geom.GeometryLayout.XYZ, flatCoordinates, ends);
return polygon;
} else {
return undefined;
}
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
* @return {ol.geom.LineString|undefined} LineString.
*/
ol.format.GML.readCurve_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
goog.asserts.assert(node.localName == 'Curve');
var flatCoordinates = ol.xml.pushParseAndPop(
/** @type {Array.<number>} */ ([null]),
ol.format.GML.CURVE_PARSERS_, node, objectStack);
if (goog.isDef(flatCoordinates)) {
var lineString = new ol.geom.LineString(null);
lineString.setFlatCoordinates(ol.geom.GeometryLayout.XYZ, flatCoordinates);
return lineString;
} else {
return undefined;
}
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
* @return {ol.Extent|undefined} Envelope.
*/
ol.format.GML.readEnvelope_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
goog.asserts.assert(node.localName == 'Envelope');
var flatCoordinates = ol.xml.pushParseAndPop(
/** @type {Array.<number>} */ ([null]),
ol.format.GML.ENVELOPE_PARSERS_, node, objectStack);
return ol.extent.createOrUpdate(flatCoordinates[1][0],
flatCoordinates[1][1], flatCoordinates[2][0],
flatCoordinates[2][1]);
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
* @return {Array.<number>} Flat coordinates.
*/
ol.format.GML.readFlatCoordinatesFromNode_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
return /** @type {Array.<number>} */ (ol.xml.pushParseAndPop(
null,
ol.format.GML.GEOMETRY_FLAT_COORDINATES_PARSERS_, node, objectStack));
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
* @return {Array.<number>|undefined} Flat coordinates.
*/
ol.format.GML.readFlatPos_ = function(node, objectStack) {
var s = ol.xml.getAllTextContent(node, false);
var re = /^\s*([+\-]?\d*\.?\d+(?:e[+\-]?\d+)?)\s*/;
/** @type {Array.<number>} */
var flatCoordinates = [];
var m;
while ((m = re.exec(s))) {
flatCoordinates.push(parseFloat(m[1]));
s = s.substr(m[0].length);
}
if (s !== '') {
return undefined;
}
var context = objectStack[0];
goog.asserts.assert(goog.isObject(context));
var containerSrs = goog.object.get(context, 'srsName');
var axisOrientation = 'enu';
if (!goog.isNull(containerSrs)) {
var proj = ol.proj.get(containerSrs);
axisOrientation = proj.getAxisOrientation();
}
if (axisOrientation === 'neu') {
var i, ii;
for (i = 0, ii = flatCoordinates.length; i < ii; i += 3) {
var y = flatCoordinates[i];
var x = flatCoordinates[i + 1];
flatCoordinates[i] = x;
flatCoordinates[i + 1] = y;
}
}
var len = flatCoordinates.length;
if (len == 2) {
flatCoordinates.push(0);
}
if (len === 0) {
return undefined;
}
return flatCoordinates;
};
/**
* @param {Node} node Node.
* @param {Array.<*>} objectStack Object stack.
* @private
* @return {Array.<number>|undefined} Flat coordinates.
*/
ol.format.GML.readFlatPosList_ = function(node, objectStack) {
var s = ol.xml.getAllTextContent(node, false).replace(/^\s*|\s*$/g, '');
var context = objectStack[0];
goog.asserts.assert(goog.isObject(context));
var containerSrs = goog.object.get(context, 'srsName');
var containerDimension = node.parentNode.getAttribute('srsDimension');
var axisOrientation = 'enu';
if (!goog.isNull(containerSrs)) {
var proj = ol.proj.get(containerSrs);
axisOrientation = proj.getAxisOrientation();
}
var coords = s.split(/\s+/);
// The "dimension" attribute is from the GML 3.0.1 spec.
var dim = 2;
if (!goog.isNull(node.getAttribute('srsDimension'))) {
dim = ol.format.XSD.readNonNegativeIntegerString(
node.getAttribute('srsDimension'));
} else if (!goog.isNull(node.getAttribute('dimension'))) {
dim = ol.format.XSD.readNonNegativeIntegerString(
node.getAttribute('dimension'));
} else if (!goog.isNull(containerDimension)) {
dim = ol.format.XSD.readNonNegativeIntegerString(containerDimension);
}
var x, y, z;
var flatCoordinates = [];
for (var i = 0, ii = coords.length; i < ii; i += dim) {
x = parseFloat(coords[i]);
y = parseFloat(coords[i + 1]);
z = (dim === 3) ? parseFloat(coords[i + 2]) : 0;
if (axisOrientation.substr(0, 2) === 'en') {
flatCoordinates.push(x, y, z);
} else {
flatCoordinates.push(y, x, z);
}
}
return flatCoordinates;
};
/**
* @const
* @type {Object.<string, Object.<string, ol.xml.Parser>>}
* @private
*/
ol.format.GML.GEOMETRY_PARSERS_ = {
'http://www.opengis.net/gml' : {
'Point': ol.xml.makeReplacer(ol.format.GML.readPoint_),
'MultiPoint': ol.xml.makeReplacer(ol.format.GML.readMultiPoint_),
'LineString': ol.xml.makeReplacer(ol.format.GML.readLineString_),
'MultiLineString': ol.xml.makeReplacer(
ol.format.GML.readMultiLineString_),
'LinearRing' : ol.xml.makeReplacer(ol.format.GML.readLinearRing_),
'Polygon': ol.xml.makeReplacer(ol.format.GML.readPolygon_),
'MultiPolygon': ol.xml.makeReplacer(ol.format.GML.readMultiPolygon_),
'Surface': ol.xml.makeReplacer(ol.format.GML.readSurface_),
'MultiSurface': ol.xml.makeReplacer(ol.format.GML.readMultiSurface_),
'Curve': ol.xml.makeReplacer(ol.format.GML.readCurve_),
'MultiCurve': ol.xml.makeReplacer(ol.format.GML.readMultiCurve_),
'Envelope': ol.xml.makeReplacer(ol.format.GML.readEnvelope_)
}
};
/**
* @const
* @type {Object.<string, Object.<string, ol.xml.Parser>>}
* @private
*/
ol.format.GML.GEOMETRY_FLAT_COORDINATES_PARSERS_ = {
'http://www.opengis.net/gml' : {
'pos': ol.xml.makeReplacer(ol.format.GML.readFlatPos_),
'posList': ol.xml.makeReplacer(ol.format.GML.readFlatPosList_)
}
};
/**
* @const
* @type {Object.<string, Object.<string, ol.xml.Parser>>}
* @private
*/
ol.format.GML.FLAT_LINEAR_RINGS_PARSERS_ = {
'http://www.opengis.net/gml' : {
'interior': ol.format.GML.interiorParser_,
'exterior': ol.format.GML.exteriorParser_
}
};
/**
* @const
* @type {Object.<string, Object.<string, ol.xml.Parser>>}
* @private
*/
ol.format.GML.MULTIPOINT_PARSERS_ = {
'http://www.opengis.net/gml' : {
'pointMember': ol.xml.makeArrayPusher(ol.format.GML.pointMemberParser_),
'pointMembers': ol.xml.makeArrayPusher(ol.format.GML.pointMemberParser_)
}
};
/**
* @const
* @type {Object.<string, Object.<string, ol.xml.Parser>>}
* @private
*/
ol.format.GML.MULTILINESTRING_PARSERS_ = {
'http://www.opengis.net/gml' : {
'lineStringMember': ol.xml.makeArrayPusher(
ol.format.GML.lineStringMemberParser_),
'lineStringMembers': ol.xml.makeArrayPusher(
ol.format.GML.lineStringMemberParser_)
}
};
/**
* @const
* @type {Object.<string, Object.<string, ol.xml.Parser>>}
* @private
*/
ol.format.GML.MULTICURVE_PARSERS_ = {
'http://www.opengis.net/gml' : {
'curveMember': ol.xml.makeArrayPusher(
ol.format.GML.curveMemberParser_),
'curveMembers': ol.xml.makeArrayPusher(
ol.format.GML.curveMemberParser_)
}
};
/**
* @const
* @type {Object.<string, Object.<string, ol.xml.Parser>>}
* @private
*/
ol.format.GML.MULTISURFACE_PARSERS_ = {
'http://www.opengis.net/gml' : {
'surfaceMember': ol.xml.makeArrayPusher(
ol.format.GML.surfaceMemberParser_),
'surfaceMembers': ol.xml.makeArrayPusher(
ol.format.GML.surfaceMemberParser_)
}
};
/**
* @const
* @type {Object.<string, Object.<string, ol.xml.Parser>>}
* @private
*/
ol.format.GML.MULTIPOLYGON_PARSERS_ = {
'http://www.opengis.net/gml' : {
'polygonMember': ol.xml.makeArrayPusher(
ol.format.GML.polygonMemberParser_),
'polygonMembers': ol.xml.makeArrayPusher(
ol.format.GML.polygonMemberParser_)
}
};
/**
* @const
* @type {Object.<string, Object.<string, ol.xml.Parser>>}
* @private
*/
ol.format.GML.POINTMEMBER_PARSERS_ = {
'http://www.opengis.net/gml' : {
'Point': ol.xml.makeArrayPusher(
ol.format.GML.readFlatCoordinatesFromNode_)
}
};
/**
* @const
* @type {Object.<string, Object.<string, ol.xml.Parser>>}
* @private
*/
ol.format.GML.LINESTRINGMEMBER_PARSERS_ = {
'http://www.opengis.net/gml' : {
'LineString': ol.xml.makeArrayPusher(
ol.format.GML.readLineString_)
}
};
/**
* @const
* @type {Object.<string, Object.<string, ol.xml.Parser>>}
* @private
*/
ol.format.GML.CURVEMEMBER_PARSERS_ = {
'http://www.opengis.net/gml' : {
'LineString': ol.xml.makeArrayPusher(ol.format.GML.readLineString_),
'Curve': ol.xml.makeArrayPusher(ol.format.GML.readCurve_)
}
};
/**
* @const
* @type {Object.<string, Object.<string, ol.xml.Parser>>}
* @private
*/
ol.format.GML.SURFACEMEMBER_PARSERS_ = {
'http://www.opengis.net/gml' : {
'Polygon': ol.xml.makeArrayPusher(ol.format.GML.readPolygon_),
'Surface': ol.xml.makeArrayPusher(ol.format.GML.readSurface_)
}
};
/**
* @const
* @type {Object.<string, Object.<string, ol.xml.Parser>>}
* @private
*/
ol.format.GML.POLYGONMEMBER_PARSERS_ = {
'http://www.opengis.net/gml' : {
'Polygon': ol.xml.makeArrayPusher(
ol.format.GML.readPolygon_)
}
};
/**
* @const
* @type {Object.<string, Object.<string, ol.xml.Parser>>}
* @private
*/
ol.format.GML.SURFACE_PARSERS_ = {
'http://www.opengis.net/gml' : {
'patches': ol.xml.makeReplacer(ol.format.GML.readPatch_)
}
};
/**
* @const
* @type {Object.<string, Object.<string, ol.xml.Parser>>}
* @private
*/
ol.format.GML.CURVE_PARSERS_ = {
'http://www.opengis.net/gml' : {
'segments': ol.xml.makeReplacer(ol.format.GML.readSegment_)
}
};
/**
* @const
* @type {Object.<string, Object.<string, ol.xml.Parser>>}
* @private
*/
ol.format.GML.ENVELOPE_PARSERS_ = {
'http://www.opengis.net/gml' : {
'lowerCorner': ol.xml.makeArrayPusher(ol.format.GML.readFlatPosList_),
'upperCorner': ol.xml.makeArrayPusher(ol.format.GML.readFlatPosList_)
}
};
/**
* @const
* @type {Object.<string, Object.<string, ol.xml.Parser>>}
* @private
*/
ol.format.GML.PATCHES_PARSERS_ = {
'http://www.opengis.net/gml' : {
'PolygonPatch': ol.xml.makeReplacer(ol.format.GML.readPolygonPatch_)
}
};
/**
* @const
* @type {Object.<string, Object.<string, ol.xml.Parser>>}
* @private
*/
ol.format.GML.SEGMENTS_PARSERS_ = {
'http://www.opengis.net/gml' : {
'LineStringSegment': ol.xml.makeReplacer(
ol.format.GML.readLineStringSegment_)
}
};
/**
* @const
* @type {Object.<string, Object.<string, ol.xml.Parser>>}
* @private
*/
ol.format.GML.RING_PARSERS_ = {
'http://www.opengis.net/gml' : {
'LinearRing': ol.xml.makeReplacer(ol.format.GML.readFlatLinearRing_)
}
};
/**
* @inheritDoc
*/
ol.format.GML.prototype.readGeometryFromNode = function(node, opt_options) {
var geometry = ol.format.GML.readGeometry(node,
[this.getReadOptions(node, goog.isDef(opt_options) ? opt_options : {})]);
return (goog.isDef(geometry) ? geometry : null);
};
/**
* Read all features from a GML FeatureCollection.
*
* @function
* @param {ArrayBuffer|Document|Node|Object|string} source Source.
* @param {olx.format.ReadOptions=} opt_options Options.
* @return {Array.<ol.Feature>} Features.
* @api stable
*/
ol.format.GML.prototype.readFeatures;
/**
* @inheritDoc
*/
ol.format.GML.prototype.readFeaturesFromNode = function(node, opt_options) {
var options = {
'featureType': this.featureType_,
'featureNS': this.featureNS_
};
if (goog.isDef(opt_options)) {
goog.object.extend(options, this.getReadOptions(node, opt_options));
}
return ol.format.GML.readFeatures_(node, [options]);
};
/**
* @inheritDoc
*/
ol.format.GML.prototype.readProjectionFromNode = function(node) {
return ol.proj.get(goog.isDef(this.srsName_) ? this.srsName_ :
node.firstElementChild.getAttribute('srsName'));
};
/**
* @param {Node} node Node.
* @param {ol.geom.Point} value Point geometry.
* @param {Array.<*>} objectStack Node stack.
* @private
*/
ol.format.GML.writePos_ = function(node, value, objectStack) {
var context = objectStack[objectStack.length - 1];
goog.asserts.assert(goog.isObject(context));
var srsName = goog.object.get(context, 'srsName');
var axisOrientation = 'enu';
if (goog.isDefAndNotNull(srsName)) {
axisOrientation = ol.proj.get(srsName).getAxisOrientation();
}
var point = value.getCoordinates();
var coords;
// only 2d for simple features profile
if (axisOrientation.substr(0, 2) === 'en') {
coords = (point[0] + ' ' + point[1]);
} else {
coords = (point[1] + ' ' + point[0]);
}
ol.format.XSD.writeStringTextNode(node, coords);
};
/**
* @param {Array.<number>} point Point geometry.
* @param {string=} opt_srsName Optional srsName
* @return {string}
* @private
*/
ol.format.GML.getCoords_ = function(point, opt_srsName) {
var axisOrientation = 'enu';
if (goog.isDefAndNotNull(opt_srsName)) {
axisOrientation = ol.proj.get(opt_srsName).getAxisOrientation();
}
return ((axisOrientation.substr(0, 2) === 'en') ?
point[0] + ' ' + point[1] :
point[1] + ' ' + point[0]);
};
/**
* @param {Node} node Node.
* @param {ol.geom.LineString|ol.geom.LinearRing} value Geometry.
* @param {Array.<*>} objectStack Node stack.
* @private
*/
ol.format.GML.writePosList_ = function(node, value, objectStack) {
var context = objectStack[objectStack.length - 1];
goog.asserts.assert(goog.isObject(context));
var srsName = goog.object.get(context, 'srsName');
// only 2d for simple features profile
var points = value.getCoordinates();
var len = points.length;
var parts = new Array(len);
var point;
for (var i = 0; i < len; ++i) {
point = points[i];
parts[i] = ol.format.GML.getCoords_(point, srsName);
}
ol.format.XSD.writeStringTextNode(node, parts.join(' '));
};
/**
* @param {Node} node Node.
* @param {ol.geom.Point} geometry Point geometry.
* @param {Array.<*>} objectStack Node stack.
* @private
*/
ol.format.GML.writePoint_ = function(node, geometry, objectStack) {
var context = objectStack[objectStack.length - 1];
goog.asserts.assert(goog.isObject(context));
var srsName = goog.object.get(context, 'srsName');
if (goog.isDefAndNotNull(srsName)) {
node.setAttribute('srsName', srsName);
}
var pos = ol.xml.createElementNS(node.namespaceURI, 'pos');
node.appendChild(pos);
ol.format.GML.writePos_(pos, geometry, objectStack);
};
/**
* @type {Object.<string, Object.<string, ol.xml.Serializer>>}
* @private
*/
ol.format.GML.ENVELOPE_SERIALIZERS_ = {
'http://www.opengis.net/gml': {
'lowerCorner': ol.xml.makeChildAppender(ol.format.XSD.writeStringTextNode),
'upperCorner': ol.xml.makeChildAppender(ol.format.XSD.writeStringTextNode)
}
};
/**
* @param {Node} node Node.
* @param {ol.Extent} extent Extent.
* @param {Array.<*>} objectStack Node stack.
*/
ol.format.GML.writeEnvelope = function(node, extent, objectStack) {
goog.asserts.assert(extent.length == 4);
var context = objectStack[objectStack.length - 1];
goog.asserts.assert(goog.isObject(context));
var srsName = goog.object.get(context, 'srsName');
if (goog.isDef(srsName)) {
node.setAttribute('srsName', srsName);
}
var keys = ['lowerCorner', 'upperCorner'];
var values = [extent[0] + ' ' + extent[1], extent[2] + ' ' + extent[3]];
ol.xml.pushSerializeAndPop(/** @type {ol.xml.NodeStackItem} */
({node: node}), ol.format.GML.ENVELOPE_SERIALIZERS_,
ol.xml.OBJECT_PROPERTY_NODE_FACTORY,
values,
objectStack, keys);
};
/**
* @param {Node} node Node.
* @param {ol.geom.LinearRing} geometry LinearRing geometry.
* @param {Array.<*>} objectStack Node stack.
* @private
*/
ol.format.GML.writeLinearRing_ = function(node, geometry, objectStack) {
var context = objectStack[objectStack.length - 1];
goog.asserts.assert(goog.isObject(context));
var srsName = goog.object.get(context, 'srsName');
if (goog.isDefAndNotNull(srsName)) {
node.setAttribute('srsName', srsName);
}
var posList = ol.xml.createElementNS(node.namespaceURI, 'posList');
node.appendChild(posList);
ol.format.GML.writePosList_(posList, geometry, objectStack);
};
/**
* @param {*} value Value.
* @param {Array.<*>} objectStack Object stack.
* @param {string=} opt_nodeName Node name.
* @return {Node} Node.
* @private
*/
ol.format.GML.RING_NODE_FACTORY_ = function(value, objectStack, opt_nodeName) {
var context = objectStack[objectStack.length - 1];
var parentNode = context.node;
goog.asserts.assert(goog.isObject(context));
var exteriorWritten = goog.object.get(context, 'exteriorWritten');
if (!goog.isDef(exteriorWritten)) {
goog.object.set(context, 'exteriorWritten', true);
}
return ol.xml.createElementNS(parentNode.namespaceURI,
goog.isDef(exteriorWritten) ? 'interior' : 'exterior');
};
/**
* @param {Node} node Node.
* @param {ol.geom.Polygon} geometry Polygon geometry.
* @param {Array.<*>} objectStack Node stack.
* @private
*/
ol.format.GML.writeSurfaceOrPolygon_ = function(node, geometry, objectStack) {
var context = objectStack[objectStack.length - 1];
goog.asserts.assert(goog.isObject(context));
var srsName = goog.object.get(context, 'srsName');
if (node.nodeName !== 'PolygonPatch' && goog.isDefAndNotNull(srsName)) {
node.setAttribute('srsName', srsName);
}
if (node.nodeName === 'Polygon' || node.nodeName === 'PolygonPatch') {
var rings = geometry.getLinearRings();
ol.xml.pushSerializeAndPop(
{node: node, srsName: srsName},
ol.format.GML.RING_SERIALIZERS_, ol.format.GML.RING_NODE_FACTORY_,
rings, objectStack);
} else if (node.nodeName === 'Surface') {
var patches = ol.xml.createElementNS(node.namespaceURI, 'patches');
node.appendChild(patches);
ol.format.GML.writeSurfacePatches_(patches, geometry, objectStack);
}
};
/**
* @param {Node} node Node.
* @param {ol.geom.LineString} geometry LineString geometry.
* @param {Array.<*>} objectStack Node stack.
* @private
*/
ol.format.GML.writeCurveOrLineString_ = function(node, geometry, objectStack) {
var context = objectStack[objectStack.length - 1];
goog.asserts.assert(goog.isObject(context));
var srsName = goog.object.get(context, 'srsName');
if (node.nodeName !== 'LineStringSegment' && goog.isDefAndNotNull(srsName)) {
node.setAttribute('srsName', srsName);
}
if (node.nodeName === 'LineString' || node.nodeName === 'LineStringSegment') {
var posList = ol.xml.createElementNS(node.namespaceURI, 'posList');
node.appendChild(posList);
ol.format.GML.writePosList_(posList, geometry, objectStack);
} else if (node.nodeName === 'Curve') {
var segments = ol.xml.createElementNS(node.namespaceURI, 'segments');
node.appendChild(segments);
ol.format.GML.writeCurveSegments_(segments, geometry, objectStack);
}
};
/**
* @param {Node} node Node.
* @param {ol.geom.MultiPolygon} geometry MultiPolygon geometry.
* @param {Array.<*>} objectStack Node stack.
* @private
*/
ol.format.GML.writeMultiSurfaceOrPolygon_ = function(node, geometry,
objectStack) {
var context = objectStack[objectStack.length - 1];
goog.asserts.assert(goog.isObject(context));
var srsName = goog.object.get(context, 'srsName');
var surface = goog.object.get(context, 'surface');
if (goog.isDefAndNotNull(srsName)) {
node.setAttribute('srsName', srsName);
}
var polygons = geometry.getPolygons();
ol.xml.pushSerializeAndPop({node: node, srsName: srsName, surface: surface},
ol.format.GML.SURFACEORPOLYGONMEMBER_SERIALIZERS_,
ol.format.GML.MULTIGEOMETRY_MEMBER_NODE_FACTORY_, polygons,
objectStack);
};
/**
* @param {Node} node Node.
* @param {ol.geom.MultiPoint} geometry MultiPoint geometry.
* @param {Array.<*>} objectStack Node stack.
* @private
*/
ol.format.GML.writeMultiPoint_ = function(node, geometry,
objectStack) {
var context = objectStack[objectStack.length - 1];
goog.asserts.assert(goog.isObject(context));
var srsName = goog.object.get(context, 'srsName');
if (goog.isDefAndNotNull(srsName)) {
node.setAttribute('srsName', srsName);
}
var points = geometry.getPoints();
ol.xml.pushSerializeAndPop({node: node, srsName: srsName},
ol.format.GML.POINTMEMBER_SERIALIZERS_,
ol.xml.makeSimpleNodeFactory('pointMember'), points,
objectStack);
};
/**
* @param {Node} node Node.
* @param {ol.geom.MultiLineString} geometry MultiLineString geometry.
* @param {Array.<*>} objectStack Node stack.
* @private
*/
ol.format.GML.writeMultiCurveOrLineString_ = function(node, geometry,
objectStack) {
var context = objectStack[objectStack.length - 1];
goog.asserts.assert(goog.isObject(context));
var srsName = goog.object.get(context, 'srsName');
var curve = goog.object.get(context, 'curve');
if (goog.isDefAndNotNull(srsName)) {
node.setAttribute('srsName', srsName);
}
var lines = geometry.getLineStrings();
ol.xml.pushSerializeAndPop({node: node, srsName: srsName, curve: curve},
ol.format.GML.LINESTRINGORCURVEMEMBER_SERIALIZERS_,
ol.format.GML.MULTIGEOMETRY_MEMBER_NODE_FACTORY_, lines,
objectStack);
};
/**
* @param {Node} node Node.
* @param {ol.geom.LinearRing} ring LinearRing geometry.
* @param {Array.<*>} objectStack Node stack.
* @private
*/
ol.format.GML.writeRing_ = function(node, ring, objectStack) {
var linearRing = ol.xml.createElementNS(node.namespaceURI, 'LinearRing');
node.appendChild(linearRing);
ol.format.GML.writeLinearRing_(linearRing, ring, objectStack);
};
/**
* @param {Node} node Node.
* @param {ol.geom.Polygon} polygon Polygon geometry.
* @param {Array.<*>} objectStack Node stack.
* @private
*/
ol.format.GML.writeSurfaceOrPolygonMember_ = function(node, polygon,
objectStack) {
var context = objectStack[objectStack.length - 1];
goog.asserts.assert(goog.isObject(context));
var child = ol.format.GML.GEOMETRY_NODE_FACTORY_(polygon, objectStack);
if (goog.isDef(child)) {
node.appendChild(child);
ol.format.GML.writeSurfaceOrPolygon_(child, polygon, objectStack);
}
};
/**
* @param {Node} node Node.
* @param {ol.geom.Point} point Point geometry.
* @param {Array.<*>} objectStack Node stack.
* @private
*/
ol.format.GML.writePointMember_ = function(node, point, objectStack) {
var child = ol.xml.createElementNS(node.namespaceURI, 'Point');
node.appendChild(child);
ol.format.GML.writePoint_(child, point, objectStack);
};
/**
* @param {Node} node Node.
* @param {ol.geom.LineString} line LineString geometry.
* @param {Array.<*>} objectStack Node stack.
* @private
*/
ol.format.GML.writeLineStringOrCurveMember_ = function(node, line,
objectStack) {
var context = objectStack[objectStack.length - 1];
goog.asserts.assert(goog.isObject(context));
var child = ol.format.GML.GEOMETRY_NODE_FACTORY_(line, objectStack);
if (goog.isDef(child)) {
node.appendChild(child);
ol.format.GML.writeCurveOrLineString_(child, line, objectStack);
}
};
/**
* @param {Node} node Node.
* @param {ol.geom.Polygon} polygon Polygon geometry.
* @param {Array.<*>} objectStack Node stack.
* @private
*/
ol.format.GML.writeSurfacePatches_ = function(node, polygon, objectStack) {
var child = ol.xml.createElementNS(node.namespaceURI, 'PolygonPatch');
node.appendChild(child);
ol.format.GML.writeSurfaceOrPolygon_(child, polygon, objectStack);
};
/**
* @param {Node} node Node.
* @param {ol.geom.LineString} line LineString geometry.
* @param {Array.<*>} objectStack Node stack.
* @private
*/
ol.format.GML.writeCurveSegments_ = function(node, line, objectStack) {
var child = ol.xml.createElementNS(node.namespaceURI, 'LineStringSegment');
node.appendChild(child);
ol.format.GML.writeCurveOrLineString_(child, line, objectStack);
};
/**
* @param {Node} node Node.
* @param {ol.geom.Geometry|ol.Extent} geometry Geometry.
* @param {Array.<*>} objectStack Node stack.
*/
ol.format.GML.writeGeometry = function(node, geometry, objectStack) {
var context = objectStack[objectStack.length - 1];
goog.asserts.assert(goog.isObject(context));
var item = goog.object.clone(context);
item.node = node;
var value;
if (goog.isArray(geometry)) {
if (goog.isDef(context.dataProjection)) {
value = ol.proj.transformExtent(
geometry, context.featureProjection, context.dataProjection);
} else {
value = geometry;
}
} else {
goog.asserts.assertInstanceof(geometry, ol.geom.Geometry);
value =
ol.format.Feature.transformWithOptions(geometry, true, context);
}
ol.xml.pushSerializeAndPop(/** @type {ol.xml.NodeStackItem} */
(item), ol.format.GML.GEOMETRY_SERIALIZERS_,
ol.format.GML.GEOMETRY_NODE_FACTORY_, [value], objectStack);
};
/**
* @param {Node} node Node.
* @param {ol.Feature} feature Feature.
* @param {Array.<*>} objectStack Node stack.
*/
ol.format.GML.writeFeature = function(node, feature, objectStack) {
var fid = feature.getId();
if (goog.isDef(fid)) {
node.setAttribute('fid', fid);
}
var context = objectStack[objectStack.length - 1];
goog.asserts.assert(goog.isObject(context));
var featureNS = goog.object.get(context, 'featureNS');
var geometryName = feature.getGeometryName();
if (!goog.isDef(context.serializers)) {
context.serializers = {};
context.serializers[featureNS] = {};
}
var properties = feature.getProperties();
var keys = [], values = [];
for (var key in properties) {
var value = properties[key];
if (!goog.isNull(value)) {
keys.push(key);
values.push(value);
if (key == geometryName) {
if (!(key in context.serializers[featureNS])) {
context.serializers[featureNS][key] = ol.xml.makeChildAppender(
ol.format.GML.writeGeometry);
}
} else {
if (!(key in context.serializers[featureNS])) {
context.serializers[featureNS][key] = ol.xml.makeChildAppender(
ol.format.XSD.writeStringTextNode);
}
}
}
}
var item = goog.object.clone(context);
item.node = node;
ol.xml.pushSerializeAndPop(/** @type {ol.xml.NodeStackItem} */
(item), context.serializers,
ol.xml.makeSimpleNodeFactory(undefined, featureNS),
values,
objectStack, keys);
};
/**
* @param {Node} node Node.
* @param {Array.<ol.Feature>} features Features.
* @param {Array.<*>} objectStack Node stack.
* @private
*/
ol.format.GML.writeFeatureMembers_ = function(node, features, objectStack) {
var context = objectStack[objectStack.length - 1];
goog.asserts.assert(goog.isObject(context));
var featureType = goog.object.get(context, 'featureType');
var featureNS = goog.object.get(context, 'featureNS');
var serializers = {};
serializers[featureNS] = {};
serializers[featureNS][featureType] = ol.xml.makeChildAppender(
ol.format.GML.writeFeature);
var item = goog.object.clone(context);
item.node = node;
ol.xml.pushSerializeAndPop(/** @type {ol.xml.NodeStackItem} */
(item),
serializers,
ol.xml.makeSimpleNodeFactory(featureType, featureNS), features,
objectStack);
};
/**
* @type {Object.<string, Object.<string, ol.xml.Serializer>>}
* @private
*/
ol.format.GML.SURFACEORPOLYGONMEMBER_SERIALIZERS_ = {
'http://www.opengis.net/gml': {
'surfaceMember': ol.xml.makeChildAppender(
ol.format.GML.writeSurfaceOrPolygonMember_),
'polygonMember': ol.xml.makeChildAppender(
ol.format.GML.writeSurfaceOrPolygonMember_)
}
};
/**
* @type {Object.<string, Object.<string, ol.xml.Serializer>>}
* @private
*/
ol.format.GML.POINTMEMBER_SERIALIZERS_ = {
'http://www.opengis.net/gml': {
'pointMember': ol.xml.makeChildAppender(ol.format.GML.writePointMember_)
}
};
/**
* @type {Object.<string, Object.<string, ol.xml.Serializer>>}
* @private
*/
ol.format.GML.LINESTRINGORCURVEMEMBER_SERIALIZERS_ = {
'http://www.opengis.net/gml': {
'lineStringMember': ol.xml.makeChildAppender(
ol.format.GML.writeLineStringOrCurveMember_),
'curveMember': ol.xml.makeChildAppender(
ol.format.GML.writeLineStringOrCurveMember_)
}
};
/**
* @type {Object.<string, Object.<string, ol.xml.Serializer>>}
* @private
*/
ol.format.GML.RING_SERIALIZERS_ = {
'http://www.opengis.net/gml': {
'exterior': ol.xml.makeChildAppender(ol.format.GML.writeRing_),
'interior': ol.xml.makeChildAppender(ol.format.GML.writeRing_)
}
};
/**
* @type {Object.<string, Object.<string, ol.xml.Serializer>>}
* @private
*/
ol.format.GML.GEOMETRY_SERIALIZERS_ = {
'http://www.opengis.net/gml': {
'Curve': ol.xml.makeChildAppender(ol.format.GML.writeCurveOrLineString_),
'MultiCurve': ol.xml.makeChildAppender(
ol.format.GML.writeMultiCurveOrLineString_),
'Point': ol.xml.makeChildAppender(ol.format.GML.writePoint_),
'MultiPoint': ol.xml.makeChildAppender(ol.format.GML.writeMultiPoint_),
'LineString': ol.xml.makeChildAppender(
ol.format.GML.writeCurveOrLineString_),
'MultiLineString': ol.xml.makeChildAppender(
ol.format.GML.writeMultiCurveOrLineString_),
'LinearRing': ol.xml.makeChildAppender(ol.format.GML.writeLinearRing_),
'Polygon': ol.xml.makeChildAppender(ol.format.GML.writeSurfaceOrPolygon_),
'MultiPolygon': ol.xml.makeChildAppender(
ol.format.GML.writeMultiSurfaceOrPolygon_),
'Surface': ol.xml.makeChildAppender(ol.format.GML.writeSurfaceOrPolygon_),
'MultiSurface': ol.xml.makeChildAppender(
ol.format.GML.writeMultiSurfaceOrPolygon_),
'Envelope': ol.xml.makeChildAppender(
ol.format.GML.writeEnvelope)
}
};
/**
* @const
* @type {Object.<string, string>}
* @private
*/
ol.format.GML.MULTIGEOMETRY_TO_MEMBER_NODENAME_ = {
'MultiLineString': 'lineStringMember',
'MultiCurve': 'curveMember',
'MultiPolygon': 'polygonMember',
'MultiSurface': 'surfaceMember'
};
/**
* @const
* @param {*} value Value.
* @param {Array.<*>} objectStack Object stack.
* @param {string=} opt_nodeName Node name.
* @return {Node|undefined} Node.
* @private
*/
ol.format.GML.MULTIGEOMETRY_MEMBER_NODE_FACTORY_ = function(value,
objectStack, opt_nodeName) {
var parentNode = objectStack[objectStack.length - 1].node;
goog.asserts.assert(ol.xml.isNode(parentNode));
return ol.xml.createElementNS('http://www.opengis.net/gml',
ol.format.GML.MULTIGEOMETRY_TO_MEMBER_NODENAME_[parentNode.nodeName]);
};
/**
* @const
* @param {*} value Value.
* @param {Array.<*>} objectStack Object stack.
* @param {string=} opt_nodeName Node name.
* @return {Node|undefined} Node.
* @private
*/
ol.format.GML.GEOMETRY_NODE_FACTORY_ = function(value, objectStack,
opt_nodeName) {
var context = objectStack[objectStack.length - 1];
goog.asserts.assert(goog.isObject(context));
var multiSurface = goog.object.get(context, 'multiSurface');
var surface = goog.object.get(context, 'surface');
var curve = goog.object.get(context, 'curve');
var multiCurve = goog.object.get(context, 'multiCurve');
var parentNode = objectStack[objectStack.length - 1].node;
goog.asserts.assert(ol.xml.isNode(parentNode));
var nodeName;
if (!goog.isArray(value)) {
goog.asserts.assertInstanceof(value, ol.geom.Geometry);
nodeName = value.getType();
if (nodeName === 'MultiPolygon' && multiSurface === true) {
nodeName = 'MultiSurface';
} else if (nodeName === 'Polygon' && surface === true) {
nodeName = 'Surface';
} else if (nodeName === 'LineString' && curve === true) {
nodeName = 'Curve';
} else if (nodeName === 'MultiLineString' && multiCurve === true) {
nodeName = 'MultiCurve';
}
} else {
nodeName = 'Envelope';
}
return ol.xml.createElementNS('http://www.opengis.net/gml',
nodeName);
};
/**
* @inheritDoc
*/
ol.format.GML.prototype.writeGeometryNode = function(geometry, opt_options) {
var geom = ol.xml.createElementNS('http://www.opengis.net/gml', 'geom');
var context = {node: geom, srsName: this.srsName_,
curve: this.curve_, surface: this.surface_,
multiSurface: this.multiSurface_, multiCurve: this.multiCurve_};
if (goog.isDef(opt_options)) {
goog.object.extend(context, opt_options);
}
ol.format.GML.writeGeometry(geom, geometry, [context]);
return geom;
};
/**
* Encode an array of features in GML 3.1.1 Simple Features.
*
* @function
* @param {Array.<ol.Feature>} features Features.
* @param {olx.format.WriteOptions=} opt_options Options.
* @return {Node} Result.
* @api stable
*/
ol.format.GML.prototype.writeFeatures;
/**
* @inheritDoc
*/
ol.format.GML.prototype.writeFeaturesNode = function(features, opt_options) {
var node = ol.xml.createElementNS('http://www.opengis.net/gml',
'featureMembers');
ol.xml.setAttributeNS(node, 'http://www.w3.org/2001/XMLSchema-instance',
'xsi:schemaLocation', this.schemaLocation_);
var context = {
srsName: this.srsName_,
curve: this.curve_,
surface: this.surface_,
multiSurface: this.multiSurface_,
multiCurve: this.multiCurve_,
featureNS: this.featureNS_,
featureType: this.featureType_
};
if (goog.isDef(opt_options)) {
goog.object.extend(context, opt_options);
}
ol.format.GML.writeFeatureMembers_(node, features, [context]);
return node;
};
</code></pre>
</article>
</section>
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-alpha9</a> on Fri Aug 29 2014 16:54:11 GMT+0200 (CEST)
</footer>
</div>
</div>
<script>prettyPrint();</script>
<script src="scripts/linenumber.js"></script>
<script src="scripts/main.js"></script>
</body>
</html>
|
wp-content/plugins/slideshow-gallery/css/admin.css
|
accruemarketing/DanceEnergy
|
#adminmenu .toplevel_page_slideshow-slides div.wp-menu-image:before,
.mce-i-gallery:before {
font-family: 'slideshow_dashicons' !important;
content: '\f233';
font-size: 20px;
}
@font-face {
font-family: 'slideshow_dashicons';
src: url('../fonts/slideshow_dashicons.eot'); // this is for IE
}
@font-face {
font-family: 'slideshow_dashicons';
src: url('../fonts/slideshow_dashicons.woff') format('woff'),
url('../fonts/slideshow_dashicons.ttf') format('truetype'),
url('../fonts/slideshow_dashicons.svg') format('svg');
font-weight: normal;
font-style: normal;
}
.slideshow-icon-deleete {
}
.slideshow-icon-delete:before {
font-family: 'dashicons' !important;
content: "\f158";
font-size: 20px;
vertical-align: middle;
float: right;
}
.slideshow .ui-slider {
margin: 10px 0;
background: #CCCCCC;
}
.slideshow .ui-slider-handle {
cursor: move !important;
background: #333333;
}
.slideshow .slider-value {
float: right;
font-size: 80%;
font-weight: bold;
border: 1px #000000 solid;
border-radius: 999px;
padding: 2px 5px;
vertical-align: top;
text-align: center;
background: #000000;
color: #ffffff;
}
.slideshow .iris-picker {
position: absolute;
z-index: 999;
}
.slideshow input.wp-color-picker {
margin: 0 6px 6px 0 !important;
}
img.slideshow_dropshadow,
.slideshow img.dropshadow,
a.thickbox img.slideshow,
a.colorbox img.slideshow {
box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
-moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
.galleryhelp a,
.galleryhelp a:hover,
.galleryhelp a:active {
text-decoration: none;
color: #333;
}
.galleryhelp a:before {
font-family: 'slideshow_dashicons' !important;
content: '\f223';
font-weight: 400;
font-size: 20px;
vertical-align: top;
text-decoration: none;
line-height: 100%;
height: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.ui-tooltip {
padding: 8px;
position: absolute;
z-index: 9999;
max-width: 300px;
-webkit-box-shadow: 0 0 5px #aaa;
box-shadow: 0 0 5px #aaa;
background: white;
border-width: 2px;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
.slideshow_error {
color: red;
}
.slideshow_success {
color: green;
}
/* Sortable */
ul.connectedSortable {
float: left;
width: 100%;
}
span.gallery_slides_convert_list a,
span.gallery_slides_convert_grid a{
text-decoration: none;
}
span.gallery_slides_convert_list a:before {
font-family: 'slideshow_dashicons' !important;
content: '\f228';
text-decoration: none;
font-size: 20px;
}
span.gallery_slides_convert_grid a:before {
font-family: 'slideshow_dashicons' !important;
content: '\f180';
text-decoration: none;
font-size: 20px;
}
.sortable-elements {
display:inline-block;
}
.sortable-form-table-element, .sortable-form-table-headings, .ui-sortable li.gallerylineitem {
float:left;
margin-bottom:12px;
width:100%;
padding:8px 0;
}
.ui-sortable li.gallerylineitem {
float:left;
width:30%;
min-width:30%;
clear:both;
white-space: nowrap;
overflow: hidden;
position: relative;
}
.relatedslides .ui-sortable li.gallerylineitem {
width: 80%;
}
.ui-sortable li.ui-sortable-helper {
width: 30%;
}
.ui-sortable li.gallerylineitem span.link {
right: 10px;
position: absolute;
}
.ui-sortable li.gallerylineitem span.link a {
font-size: 90%;
}
.ui-sortable li.gallerylineitem span.link a:hover {
text-decoration: none;
}
.sortable-form-table-element, .ui-sortable li.gallerylineitem {
cursor: url('https://www.google.com/intl/en_ALL/mapfiles/openhand.cur'), default !important;
background-color: #F1F1F1;
background-image: -ms-linear-gradient(top,#F9F9F9,#ECECEC);
background-image: -moz-linear-gradient(top,#F9F9F9,#ECECEC);
background-image: -o-linear-gradient(top,#F9F9F9,#ECECEC);
background-image: -webkit-gradient(linear,left top,left bottom,from(#F9F9F9),to(#ECECEC));
background-image: -webkit-linear-gradient(top,#F9F9F9,#ECECEC);
background-image: linear-gradient(top,#F9F9F9,#ECECEC);
-moz-border-radius:3px;
-webkit-border-radius:3px;
border-radius:3px;
border:1px solid #DFDFDF;
}
.ui-sortable-helper, .ui-sortable li.ui-sortable-helper {
cursor: url('https://www.google.com/intl/en_ALL/mapfiles/closedhand.cur'), default !important;
cursor: -moz-grabbing;
cursor: -webkit-grabbing;
}
#slidelist .sortable-form-table-element table, #slidelist .sortable-form-table-headings table, #slidelist.ui-sortable {
/*float:left;*/
width:100%;
border-spacing:0;
}
.gallery_slides_grid #slidelist li.gallerylineitem {
width:90px !important;
min-width:90px !important;
height:112px;
display:block;
float:left;
clear:none !important;
margin-right:10px;
white-space:normal
}
.gallery_slides_grid #slidelist li.gallerylineitem .gallery_slide_image {
display:block !important;
border:1px solid #DDD;
float:left;
width:89px;
height:89px;
margin-bottom:5px;
}
.gallery_slides_grid .gallery_slide_title {
float:left;
height:20px;
line-height:20px;
display:block;
width:90px;
overflow:hidden;
}
.gallery_slides_grid .wpml-placeholder, .gallery_slides_grid .gallery-placeholder {
float:left;
width:88px !important;
min-width:88px !important;
height:135px;
border:1px dashed #c9c9c9;
background:#f9f9f9;
-moz-border-radius:3px;
-webkit-border-radius:3px;
border-radius:3px;
margin-bottom:10px;
margin-right:10px;
clear:none !important;
}
.sortable-form-table-element table td, .sortable-form-table-headings table td{
padding:0 8px;
width:43%;
color:#333;
font-weight:bold;
text-shadow:1px 1px 0 #FFF;
}
.ui-sortable li.gallerylineitem {
color:#333;
font-weight:bold;
text-shadow:1px 1px 0 #FFF;
padding:12px;
}
.sortable-form-table-element table td input[type=text] {
font-weight:normal;
/*width:40%;*/
padding:5px;
}
.sortable-form-table-element table td.gallery-checkbox-required, .sortable-form-table-element table td.gallery-checkbox-show,
.sortable-form-table-headings table td.gallery-checkbox-required, .sortable-form-table-headings table td.gallery-checkbox-show {
width:5%;
text-align:center;
}
.wpml-placeholder, .gallery-placeholder {
float:left;
width:100%;
height:43px;
border:1px dashed #c9c9c9;
background:#f9f9f9;
-moz-border-radius:3px;
-webkit-border-radius:3px;
border-radius:3px;
margin-bottom:10px;
}
#slidelist .gallery-placeholder {
float:left;
clear:both;
width:30%;
padding:0 12px;
}
.relatedslides li.gallery-placeholder {
width: 80% !important;
}
/** jQuery UI **/
.ui-corner-all {
-webkit-border-radius: 4px;
border-radius: 4px;
-moz-border-radius: 4px;
}
/* Overlays */
.ui-widget-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.slideshow-ui-tooltip {
padding: 8px;
position: absolute;
z-index: 9999;
max-width: 300px;
-webkit-box-shadow: 0 0 5px #aaa;
box-shadow: 0 0 5px #aaa;
background: #000000;
opacity: .8;
filter: alpha(opacity=80);
zoom: 1;
border-width: 2px;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
.slideshow-ui-tooltip .ui-tooltip-content {
font-size: 12px;
background-color: #000;
color: #fff !important;
text-align: center;
white-space: normal;
}
.slideshow-ui-tooltip .ui-tooltip-content a {
color: #fff;
}
body .ui-tooltip {
border-width: 2px;
}
|
build/Help/Libraries/crucial/Constraints/IsEven.html
|
scztt/sc-debug
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Style-Type" content="text/css">
<title></title>
<meta name="Generator" content="Cocoa HTML Writer">
<meta name="CocoaVersion" content="824.42">
<style type="text/css">
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 18.0px Helvetica}
p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica; min-height: 14.0px}
p.p3 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica}
p.p4 {margin: 0.0px 0.0px 0.0px 0.0px; font: 9.0px Monaco; min-height: 12.0px}
p.p5 {margin: 0.0px 0.0px 0.0px 0.0px; font: 9.0px Monaco}
span.s1 {font: 12.0px Helvetica}
span.s2 {color: #0019b7}
span.Apple-tab-span {white-space:pre}
</style>
</head>
<body>
<p class="p1"><b>IsEven</b><span class="s1"><b><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span></b></span></p>
<p class="p2"><br></p>
<p class="p3"><b>answers whether the item is even.</b></p>
<p class="p2"><br></p>
<p class="p3">superclass: AbstractConstraint</p>
<p class="p4"><br></p>
<p class="p4"><br></p>
<p class="p5">(</p>
<p class="p5">s = <span class="s2">IsEven</span>.new;</p>
<p class="p4"><br></p>
<p class="p5">100.do({ <span class="s2">arg</span> i;</p>
<p class="p5"><span class="Apple-tab-span"> </span>if(s.value(i),{</p>
<p class="p5"><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span>i.postln</p>
<p class="p5"><span class="Apple-tab-span"> </span>})</p>
<p class="p5">});</p>
<p class="p4"><br></p>
<p class="p5">)</p>
<p class="p4"><br></p>
<p class="p4"><br></p>
<p class="p3">The class IsEven itself will respond to *value just as an instance will. So it can be used in place of functions in the same manner.<span class="Apple-converted-space"> </span>This is faster than constructing a FunctionDef { }, and probably executes faster.</p>
<p class="p4"><br></p>
<p class="p5">(</p>
<p class="p4"><br></p>
<p class="p5"><span class="s2">Array</span>.fill(20,{rand(100)})</p>
<p class="p5"><span class="Apple-tab-span"> </span>.select(<span class="s2">IsEven</span>)</p>
<p class="p5"><span class="Apple-tab-span"> </span>.postln</p>
<p class="p4"><span class="Apple-tab-span"> </span></p>
<p class="p5">[ 12, 76, 76, 8, 18, 26, 30, 44, 24, 84 ]</p>
<p class="p5">)</p>
<p class="p4"><br></p>
</body>
</html>
|
resources/themes/polished/wt.css
|
rgde/wt
|
/*
* Validators
*/
.Wt-invalid {
background-color: #f79a9a;
}
.Wt-valid {
background-color: #9af79a
}
/*
* Wt-disabled
*/
span.Wt-disabled, fieldset.Wt-disabled legend {
color: gray;
}
/*
* Effects
*/
.Wt-animated {
-webkit-backface-visibility: hidden; /* avoids flicker on Chrome */
}
/*
* Outset using a dropshadow
*/
.Wt-outset {
border: 1px solid white;
border: 1px solid rgba(0, 0, 0, 0.2);
*border-right-width: 2px;
*border-bottom-width: 2px;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
}
/*
* WStackedWidget
*/
.Wt-stack.Wt-animated {
overflow: hidden;
position: relative;
}
/*
* WFormWidget
*/
.Wt-edit-emptyText {
color: gray;
}
/*
* Silk screen
*/
.Wt-dialogcover {
background: #CCCCCC;
background: rgb(204, 204, 204); /* For IE, ... */
background: rgba(204, 204, 204, 0.5);
height: 100%; width: 100%;
top: 0px; left: 0px;
position: fixed;
}
/*
* WCalendar
*/
.Wt-cal {
padding: 0px;
}
.Wt-cal table {
border-left: 1px solid #727D9C;
font: normal 13px/22px "Trebuchet MS", Verdana, Arial, Helvetica,
sans-serif;
color: #515B66;
text-align: center;
background-color: #fff;
border-collapse: separate;
}
.Wt-cal table td {
text-align: center;
}
.Wt-cal table.d1 {
width: 155px;
}
.Wt-cal table.d1 td {
width: 20px;
}
.Wt-cal table.d3 {
width: 220px;
}
.Wt-cal table.d3 td {
width: 30px;
}
.Wt-cal table.dlong {
width: 490px;
}
.Wt-cal table.dlong td {
width: 70px;
}
.Wt-cal th.caption {
margin: 0;
padding: 0;
border: 0;
background: #6880A0 url(title-gradient.png) repeat-x scroll 0 -20px;
color: #fff;
font: bold 13px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
text-align: center;
}
.Wt-cal-navbutton {
cursor: pointer; cursor: hand;
font: bold 20px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
vertical-align: middle;
display: block;
}
.Wt-cal caption select {
cursor: pointer; cursor: hand;
font: 12px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
margin: 2px 0px;
vertical-align: middle;
}
.Wt-cal-year {
vertical-align: middle;
}
.Wt-cal-year span {
padding: 1px 2px;
}
.Wt-cal-year span:hover {
color: #6880A0;
background-color: #F0F0F0;
}
.Wt-cal th {
font: bold 12px/22px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
color: #515B66;
background: #D9E2E1;
border-right: 1px solid #6880A0;
border-bottom: 1px solid #6880A0;
border-top: 1px solid #6880A0;
cursor: default;
}
.Wt-cal td {
border-right: 1px solid #6880A0;
border-bottom: 1px solid #6880A0;
text-align: center;
cursor: default;
}
.Wt-cal-oom {
color: #CCCCCC;
}
.Wt-cal-oor {
color: #CCCCCC;
}
.Wt-cal-sel {
background-color:#FFF19F;
}
.Wt-cal-now {
color: #F6F4DA;
font-weight: bold;
background: #AAAAAA;
}
/*
* WDateEdit
*/
.Wt-dateedit {
background-image: url('../../calendar_edit.png');
background-repeat: no-repeat;
background-position: right top;
padding-right: 40px;
}
/*
* WDatePicker
*/
.Wt-datepicker {
background-color: white;
}
/*
* Wt-dateedit
*/
.Wt-dateedit::-ms-clear {
display:none
}
/*
* WDialog
*/
.Wt-dialog {
background-color: white;
padding: 1px;
}
.Wt-dialog .titlebar {
color: #FFFFFF;
background: #6880A0 url(title-gradient.png) repeat-x scroll 0 -20px;
cursor: move;
font: bold 12px Verdana;
padding: 3px 6px;
}
.Wt-dialog .closeicon {
background: transparent url(closeicons-dialog.png) no-repeat scroll right top;
width: 13px;
height: 13px;
background-position: right 0px;
cursor: default;
vertical-align: center;
position: absolute;
right: 5px;
top: 5px;
}
.Wt-dialog .closeicon:hover {
background-position: right -13px;
}
.Wt-dialog .body, .Wt-dialog .footer {
padding: 4px 6px;
}
.Wt-dialog .footer {
text-align: right;
}
.Wt-dialog .footer button {
padding: 1px 4px 1px;
margin: 2px;
}
.Wt-dialog .titlebar h4 {
margin: 0px 2px;
font-size: 110%;
}
/*
* WMessageBox
*/
.Wt-dialog .Wt-msgbox-icon {
display: block;
float: left;
margin: 0px 15px -15px;
width: 25px;
height: 35px;
}
.Wt-dialog .Wt-msgbox-body {
padding: 10px;
}
.Wt-dialog .Wt-msgbox-text {
overflow: auto;
}
/*
* WGridLayout
*/
.Wt-hrh2, .Wt-vsh2 {
cursor: row-resize;
}
.Wt-vrh2, .Wt-hsh2 {
cursor: col-resize;
}
.Wt-hrh2 {
background: url(splitter-v.png) no-repeat 50% 50% #EEE;
}
.Wt-vrh2 {
background: url(splitter-h.png) no-repeat 50% 50% #EEE;
}
.Wt-hsh2, .Wt-vsh2 {
background-color: #8ea2bd;
}
.Wt-vrh2:hover, .Wt-hrh2:hover {
background-color: #8ea2bd;
}
/*
* WItemDelegate, when editable
*/
.Wt-delegate-edit {
line-height: 0px;
}
/*
* WPanel
*/
.Wt-panel {
}
.Wt-panel .titlebar {
color: #FFFFFF;
background: #6880A0 url(title-gradient.png) repeat-x scroll 0 -20px;
font: bold 12px Verdana;
padding: 3px 6px;
cursor: default;
}
.Wt-panel .body {
clear: left;
padding: 4px 6px;
}
/*
* Icons, check-boxes in WMenuItem
*/
.Wt-icon {
display: inline-block;
margin-right: 8px;
background-repeat: no-repeat;
background-position: center left;
width: 16px;
height: 16px;
line-height: 16px;
vertical-align: text-top;
}
.Wt-chkbox {
margin-left: 2px;
margin-right: 10px;
display: inline-block;
width: 12px;
}
/*
* WPopupMenu
*/
.Wt-popupmenu {
position: absolute;
display: none;
background: #FAFAFA;
font: normal 13px/22px "Trebuchet MS", Verdana, Arial, Helvetica,
sans-serif;
color: #515B66;
z-index: 200;
cursor: default;
white-space: nowrap;
list-style: none;
padding: 0px;
margin: 0;
}
.Wt-popupmenu li a {
display: block;
padding: 2px 10px;
}
.Wt-popupmenu .Wt-padded {
margin-right: 3px;
margin-left: 24px;
padding-right: 24px;
}
.Wt-popupmenu .active {
background: #6880A0;
color: white;
}
.Wt-popupmenu .Wt-disabled, .Wt-popupmenu .Wt-disable.active {
background: transparent;
color: #888;
}
.Wt-popupmenu .submenu {
background-image: url(../../right-arrow.gif);
background-repeat: no-repeat;
background-position: right center;
}
.Wt-popupmenu .Wt-separator {
border-top: 1px solid #CCCCCC;
border-bottom: 1px solid #DDDDDD;
margin: 0px 3px;
line-height: 0px;
padding: 0;
}
.Wt-popupmenu .Wt-sectheader, .Wt-popupmenu .Wt-sectheader.active {
background: transparent;
color: #888;
}
/*
* WProgressBar
*/
.Wt-progressbar
{
font: normal 1em "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
background: gray;
border: 1px solid #555;
position: relative;
overflow: hidden;
color: white;
font-weight: bold;
width: 200px;
height: 1em;
line-height: 1em;
}
.Wt-progressbar .Wt-pgb-bar
{
position: absolute;
left: 0px;
top: 0px;
height: 100%;
background: #6880A0 url(title-gradient.png) repeat-x scroll 0 -20px;
}
.Wt-progressbar .Wt-pgb-label
{
font-size: 0.8em;
position: absolute;
left: 0px;
width: 100%;
text-align: center;
}
/*
* WPushButton
*/
.Wt-btn:hover {
border-color:#9CF #69E #69E #7AF;
}
.Wt-btn {
background: transparent url(gradient.png) repeat-x scroll 0 0;
border: 1px outset #CCC;
cursor: pointer; cursor: hand;
font-size: small;
margin: 0px 2px;
padding: 2px 5px;
text-decoration: none;
}
.Wt-btn img {
vertical-align: middle;
}
.Wt-btn.with-label img {
padding-right: 10px;
}
.Wt-btn:active {
border: 1px inset #CCC;
}
.Wt-btn[disabled] {
border: 1px outset #CCC;
cursor: not-allowed;
opacity: 0.75;
}
.Wt-btn-default {
font-weight: bold;
border: 1px outset #37E;
}
/*
* WResizable
*/
.Wt-resizable {
background-image: url(../../resizable.png);
background-repeat: no-repeat;
background-attachment: scroll;
background-position: right bottom;
}
/*
* WSlider
*/
.Wt-slider-h .Wt-slider-bg {
background: url(sliderbg-h.png) repeat-x scroll left center;
margin: 0px 5px;
}
.Wt-slider-v .Wt-slider-bg {
background: url(sliderbg-v.png) repeat-y scroll center top;
margin: 5px 0px;
}
.Wt-slider-h .Wt-w {
position: absolute;
left: 0px;
width: 5px;
top: 0px;
bottom: 0px;
background: url(sliderbg-hw.png) no-repeat scroll left center;
}
.Wt-slider-h .Wt-e {
position: absolute;
right: 0px;
width: 5px;
top: 0px;
bottom: 0px;
background: url(sliderbg-he.png) no-repeat scroll left center;
}
.Wt-slider-v .Wt-w {
position: absolute;
left: 0px;
height: 5px;
top: 0px;
right: 0px;
background: url(sliderbg-vw.png) no-repeat scroll center top;
}
.Wt-slider-v .Wt-e {
position: absolute;
left: 0px;
height: 5px;
right: 0px;
bottom: 0px;
background: url(sliderbg-ve.png) no-repeat scroll center top;
}
.Wt-slider-h .handle {
cursor: pointer; cursor: hand;
background: url(slider-thumb.png) no-repeat scroll center;
}
.Wt-slider-v .handle {
cursor: pointer; cursor: hand;
background: url(slider-thumb.png) no-repeat scroll center;
}
/*
* WSlider - disabled
*/
.Wt-slider-h.Wt-disabled .Wt-slider-bg {
background: url(sliderbg-h-disabled.png) repeat-x scroll left center;
margin: 0px 5px;
}
.Wt-slider-v.Wt-disabled .Wt-slider-bg {
background: url(sliderbg-v-disabled.png) repeat-y scroll center top;
margin: 5px 0px;
}
.Wt-slider-h.Wt-disabled .Wt-w {
position: absolute;
left: 0px;
width: 5px;
top: 0px;
bottom: 0px;
background: url(sliderbg-hw-disabled.png) no-repeat scroll left center;
}
.Wt-slider-h.Wt-disabled .Wt-e {
position: absolute;
right: 0px;
width: 5px;
top: 0px;
bottom: 0px;
background: url(sliderbg-he-disabled.png) no-repeat scroll left center;
}
.Wt-slider-v.Wt-disabled .Wt-w {
position: absolute;
left: 0px;
height: 5px;
top: 0px;
right: 0px;
background: url(sliderbg-vw-disabled.png) no-repeat scroll center top;
}
.Wt-slider-v.Wt-disabled .Wt-e {
position: absolute;
left: 0px;
height: 5px;
right: 0px;
bottom: 0px;
background: url(sliderbg-ve-disabled.png) no-repeat scroll center top;
}
.Wt-slider-h.Wt-disabled .handle {
cursor: auto;
background: url(slider-thumb-disabled.png) no-repeat scroll center;
}
.Wt-slider-v.Wt-disabled .handle {
cursor: auto;
background: url(slider-thumb-disabled.png) no-repeat scroll center;
}
/*
* WSuggestionPopup
*/
.Wt-suggest {
background: #FAFAFA;
font: normal 13px/22px "Trebuchet MS", Verdana, Arial, Helvetica,
sans-serif;
color: #515B66;
cursor: default;
overflow-y: auto;
list-style: none;
margin: 0;
padding: 1px;
}
.Wt-suggest li {
padding: 0px 3px;
}
.Wt-suggest .active {
background: #6880A0;
color: white;
}
.Wt-suggest-dropdown {
background-image: url('suggest-dropdown.png');
background-repeat: no-repeat;
background-position: right center;
}
/*
* WSpinBox -- todo: polish this
*/
.Wt-spinbox {
background-image: url('../default/spin-buttons.png');
background-repeat: no-repeat;
background-position: right center;
padding-right: 16px;
}
.Wt-spinbox.up {
background-image: url('../default/spin-buttons-up.png');
}
.Wt-spinbox.dn {
background-image: url('../default/spin-buttons-dn.png');
}
.Wt-spinbox::-ms-clear {
display: none
}
/*
* WTabWidget
*/
.Wt-tabs {
border-bottom: 1px solid gray;
padding: 3px 3px 0px;
font: bold 12px Verdana;
list-style-type: none;
margin: 0px;
}
.Wt-tabs li {
cursor: pointer; cursor: hand;
display: block;
white-space: nowrap;
float: left;
padding: 2px 6px 3px;
margin: 0px 3px 0px;
border: 1px solid gray;
border-bottom: none;
background: #6880A0 url(title-gradient.png) repeat-x scroll 0 -20px;
color: #FFFFFF;
height: 16px;
}
body.Wt-rtl .Wt-tabs li {
float: right;
}
.Wt-tabs li a, .Wt-tabs li button {
text-decoration: none;
color: inherit;
}
.Wt-tabs li button a {
padding: 0;
margin: 0;
border: 0;
color: inherit;
background: transparent;
}
.Wt-tabs li:hover, .Wt-tabs .itemselected {
background: white;
color: black;
border-bottom: 1px solid white;
margin-bottom: -1px;
}
.Wt-tabs li.active a, .Wt-tabs li.active button {
background: white;
color: black;
}
.Wt-tabs .closeicon {
background: transparent url(closeicons-tab.png) no-repeat scroll right top;
height: 16px;
float: right;
background-position: right 3px;
border-width: 3px 0px 0px 0px;
padding: 0px 6px 0px 7px;
cursor: default;
margin-left: 3px;
vertical-align: top;
}
.Wt-tabs .closeicon:hover {
background-position: right -10px;
}
.Wt-tabs:after { content: ""; display: block; height: 0; clear: both; }
.Wt-tabs { clear-after: both; }
/*
* XHTML Tooltips
*/
.Wt-tooltip {
position: absolute;
max-width: 700px;
background-color: #ffffcc;
border: 1px solid black;
padding: 1px 2px;
font-family: sans-serif;
font-size: smaller;
z-index: 1000;
}
/*
* WTree(node)
*/
.Wt-tree {
font-family: verdana,helvetica,tahoma,sans-serif;
font-size: 9pt;
cursor: default;
white-space: nowrap;
}
.Wt-tree ul {
margin: 0;
padding-left: 20px;
list-style: none;
}
body.Wt-rtl .Wt-tree ul {
padding-right: 20px;
padding-left: 0px;
}
/* nodes */
.Wt-tree div.Wt-root {
display: none;
}
.Wt-tree ul.Wt-root {
padding-left: 0px;
}
body.Wt-rtl .Wt-tree ul.Wt-root {
padding-right: 0px;
}
.Wt-tree .Wt-ctrl {
float: left;
display: block;
width: 19px;
height: 17px;
}
body.Wt-rtl .Wt-tree .Wt-ctrl {
float: right;
}
.Wt-treetable {
background: white;
border: 1px solid #dcdfe8;
}
.Wt-treetable .Wt-header {
background: #6880A0 url(title-gradient.png) repeat-x scroll 0 -20px;
font-family: verdana,helvetica,tahoma,sans-serif;
font-size: 9pt;
cursor: default;
color: white;
cursor: default;
white-space: nowrap;
text-overflow: ellipsis;
padding: 3px 0px 3px 3px;
}
.Wt-sbspacer {
float: right;
width: 16px;
height: 1px;
border: 0px;
display: none;
}
body.Wt-rtl .Wt-sbspacer {
float: left;
}
.Wt-tree .cols-row {
float: right;
}
body.Wt-rtl .Wt-tree .cols-row {
float: left;
}
/* selection */
.Wt-tree .Wt-selected {
background-color: #999999;
color: white;
}
/* label */
.Wt-tree .Wt-label {
padding: 0px 2px;
line-height: 150%;
}
/*
* WAbstractItemView (WTableView and WTreeView)
*/
.Wt-itemview .Wt-headerdiv {
-moz-user-select: none;
-khtml-user-select: none;
user-select: none;
overflow: hidden;
width: 100%;
}
.Wt-itemview .Wt-tv-rh {
float: right;
width: 4px;
cursor: col-resize;
}
.Wt-itemview .Wt-disabled .Wt-tv-rh {
cursor: default;
}
body.Wt-rtl .Wt-itemview .Wt-tv-rh {
float: left;
}
.Wt-itemview .Wt-tv-no-rh {
width: 0px;
margin-left: 4px;
cursor: default;
}
body.Wt-rtl .Wt-itemview .Wt-tv-no-rh {
margin-left: 0px;
margin-right: 4px;
}
/* sort handles */
.Wt-itemview .Wt-tv-sh {
float: right;
width: 16px;
height: 16px;
padding-bottom: 6px;
cursor: pointer; cursor: hand;
}
.Wt-itemview .Wt-disabled .Wt-tv-sh {
background: url(sort-arrow-disabled.gif) no-repeat 0 6px;
cursor: default;
}
body.Wt-rtl .Wt-itemview .Wt-tv-sh {
float: left;
}
.Wt-itemview {
font-family: verdana,helvetica,tahoma,sans-serif;
font-size: 9pt;
cursor: default;
white-space: nowrap;
background: white;
border: 1px solid #dcdfe8;
}
.Wt-itemview .Wt-spacer {
background: url(../../loading.png);
}
.Wt-itemview .Wt-headerdiv,
.Wt-itemview .Wt-headerdiv .Wt-tv-rowc,
.Wt-itemview th {
background: #6880A0 url(title-gradient.png) repeat-x scroll 0 -20px;
color: white;
}
.Wt-itemview th, .Wt-itemview th .Wt-tv-br {
overflow: hidden;
}
.Wt-itemview .Wt-header .Wt-label {
font-weight: bold;
text-overflow: ellipsis;
overflow: hidden; /* needed for IE only */
white-space: nowrap;
height: 20px;
}
.Wt-itemview .Wt-header .Wt-disabled .Wt-label {
color: gray;
}
.Wt-itemview .Wt-header .Wt-wwrap .Wt-label {
overflow: visible;
white-space: normal;
}
.Wt-itemview .Wt-tv-rh:hover {
background-color: #DDDDDD;
}
.Wt-itemview .Wt-disabled .Wt-tv-rh:hover {
background-color: transparent;
}
.Wt-itemview .Wt-tv-sh-none {
background: url(sort-arrow-none.gif) no-repeat 0 6px;
}
.Wt-itemview .Wt-tv-sh-up {
background: url(sort-arrow-up.gif) no-repeat 0 6px;
}
.Wt-itemview .Wt-tv-sh-down {
background: url(sort-arrow-down.gif) no-repeat 0 6px;
}
/* selection */
.Wt-itemview .Wt-selected {
background-color: #999999;
color: white;
}
/* item drag & drop */
.Wt-itemview .Wt-drop-site {
background-color: #EEEEEE;
outline: 1px dotted black;
}
/*
* WTableView
*/
body.Wt-ltr .Wt-tableview .Wt-header .Wt-tv-c {
padding-left: 6px;
}
body.Wt-rtl .Wt-tableview .Wt-header .Wt-tv-c {
padding-right: 6px;
}
.Wt-tableview .Wt-tv-contents .Wt-tv-c,
.Wt-plaintable .Wt-tv-c {
padding: 0px 3px;
overflow: hidden;
text-overflow: ellipsis;
}
.Wt-tableview .Wt-tv-contents img.icon,
.Wt-tableview .Wt-plaintable img.icon,
.Wt-tableview .Wt-tv-contents input.icon,
.Wt-tableview .Wt-plaintable input.icon {
margin: 0px 3px 2px 0px;
vertical-align: middle;
}
.Wt-tableview .Wt-spacer {
position: relative;
overflow: hidden;
}
/* header */
.Wt-tableview {
white-space: nowrap
}
.Wt-tableview th {
padding: 0px;
}
.Wt-tableview table {
background-position: left bottom;
}
/* borders */
body.Wt-ltr .Wt-tableview .Wt-tv-br {
border-right: 1px solid #dcdfe8;
}
body.Wt-rtl .Wt-tableview .Wt-tv-br {
border-left: 1px solid #dcdfe8;
}
body.Wt-ltr .Wt-tableview .Wt-tv-contents .Wt-tv-c,
body.Wt-ltr .Wt-tableview .Wt-plaintable tbody .Wt-tv-c {
border-right: 0px;
margin-right: 1px;
}
body.Wt-rtl .Wt-tableview .Wt-tv-contents .Wt-tv-c,
body.Wt-rtl .Wt-tableview .Wt-plaintable tbody .Wt-tv-c {
border-left: 0px;
margin-left: 1px;
}
/*
* WTreeView
*/
/* Layout styling */
.Wt-treeview ul {
margin: 0px;
padding-left: 20px;
list-style: none;
}
body.Wt-rtl .Wt-treeview ul {
padding-left: 0px;
padding-right: 20px;
}
.Wt-treeview ul.Wt-tv-root {
padding-left: 0px;
}
body.Wt-rtl .Wt-treeview ul.Wt-tv-root {
padding-right: 0px;
}
.Wt-treeview .Wt-tv-row {
float: right;
overflow: hidden;
}
body.Wt-rtl .Wt-treeview .Wt-tv-row {
float: left;
}
.Wt-treeview .Wt-tv-row .Wt-tv-c {
display: block;
float: left;
padding: 0px 3px;
text-overflow: ellipsis;
overflow: hidden;
}
body.Wt-rtl .Wt-treeview .Wt-tv-row .Wt-tv-c {
float: right;
}
.Wt-treeview img.icon, .Wt-treeview input.icon {
vertical-align: middle;
}
body.Wt-ltr .Wt-treeview img.icon,
body.Wt-ltr .Wt-treeview input.icon {
margin: 0px 3px 2px 0px;
}
body.Wt-rtl .Wt-treeview img.icon,
body.Wt-rtl .Wt-treeview input.icon {
margin: 0px 0px 2px 3px;
}
body.Wt-ltr .Wt-treeview .Wt-header .Wt-tv-c {
padding: 0px;
margin-left: 7px;
}
body.Wt-rtl .Wt-treeview .Wt-header .Wt-tv-c {
padding: 0px;
margin-right: 7px;
}
.Wt-treeview .Wt-scroll {
overflow: auto;
height: 22px;
}
.Wt-treeview .Wt-scroll div {
height: 1px;
}
/* header */
.Wt-treeview .Wt-headerdiv .background {
background-color: #FFFFFF;
}
/* nodes */
.Wt-treeview .Wt-ctrl {
width: 19px;
height: 18px;
float: left;
}
body.Wt-rtl .Wt-treeview .Wt-ctrl {
float: right;
}
.Wt-treeview .Wt-ctrl.expand {
background-image: url(nav-plus.png);
background-repeat: no-repeat;
background-position: 0 center;
}
body.Wt-rtl .Wt-treeview .Wt-ctrl.expand {
background-image: url(nav-plus-rtl.png);
}
.Wt-treeview .Wt-ctrl.collapse {
background-image: url(nav-minus.png);
background-repeat: no-repeat;
background-position: 0 center;
}
body.Wt-rtl .Wt-treeview .Wt-ctrl.collapse {
background-image: url(nav-minus-rtl.png);
}
/* borders */
body.Wt-ltr .Wt-treeview .Wt-tv-br {
border-right: 1px solid #dcdfe8;
}
body.Wt-rtl .Wt-treeview .Wt-tv-br {
border-left: 1px solid #dcdfe8;
}
body.Wt-ltr .Wt-treeview li .Wt-tv-row .Wt-tv-c {
border-right: 0px;
margin-right: 1px;
}
body.Wt-rtl .Wt-treeview li .Wt-tv-row .Wt-tv-c {
border-left: 0px;
margin-left: 1px;
}
/*
* WTreeView and WTableView default paging bar
*/
.Wt-pagingbar {
text-align: center;
height: 35px;
line-height: 35px;
}
.Wt-pagingbar span {
margin: 0px 4px;
}
.Wt-pagingbar button {
margin: 0px 4px;
padding: 0px 3px;
vertical-align: middle;
line-height: 20px;
}
/*
* For Ext::TableView
*/
table.x-grid3-row-table {
table-layout: fixed;
}
|
wp-content/themes/claymore/css/colors/greenapple.css
|
cphillipp/jensenrugboards
|
/* The Green Style */
#navigation ul li:hover a {
color:#75a405;
}
#navigation ul li.active a {
color:#75a405;
}
#navigation ul > li ul li ul li.active > a,
#navigation ul > li ul li.active > a {
background:#FFFFFF;
color:#75a405;
}
/* Submenu */
#navigation ul li ul li.active a {
color:#75a405 !important;
background-color:#FFFFFF;
}
#navigation ul li ul li:hover {
background-color:#FFFFFF;
}
#navigation ul li ul li:hover a {
color:#75a405 !important;
}
#navigation ul li ul li:hover ul li a {
color: #FFFFFF !important;
}
#navigation ul.sub-menu a:hover {
color: #75a405 !important;
}
#navigation ul li ul li:hover a.sf-with-ul:after, .sub-menu .sf-with-ul:after { left: 100%; margin-left:-10px; border: solid transparent; content: " "; height: 0; width: 0; position: absolute; pointer-events: none; }
#navigation ul li ul li:hover a.sf-with-ul:after, .sub-menu .sf-with-ul:after { border-left-color: #FFFFFF; border-width: 4px; top: 50%; margin-top: -7px; }
#navigation ul.sub-menu .current-menu-ancestor a {
color: #75a405 !important;
background-color:#FFFFFF;
}
#navigation ul.sub-menu .current-menu-ancestor ul a {
background-color: rgb(34,34,34);
background-color: rgba(34,34,34,0.9);
}
#navigation ul.sub-menu .current-menu-ancestor ul a:hover {
color:#75a405 !important;
background-color:#FFFFFF;
}
#navigation ul.sub-menu .current-menu-ancestor ul li.active > a {
color:#75a405 !important;
background-color:#FFFFFF;
}
#navigation ul.sub-menu .current-menu-ancestor ul a {
color: #FFF !important;
}
#sidebar a:hover,
#sidebar_second a:hover {
color:#75a405 !important;
}
.home-title {
color:#75a405;
}
.widget_rss a.rsswidget:hover {
color: #75a405;
}
.flex-control-nav li a:hover,
.flex-control-nav li a.active,
a.comment-reply-link:hover,
.edit-link a:hover,
.permalink-hover:hover,
#slider-nav a#slider-next:hover,
#slider-nav a#slider-prev:hover,
.post-slider-nav a.slider-prev:hover,
.post-slider-nav a.slider-next:hover,
#slider-bullets a.activeSlide,
#slider-bullets a:hover {
background-color:#75a405;
}
.single-product-title:hover,
ul.archive li a:hover,
.author-link,
p.search-title span,
p.tag-title span,
.author-name a,
ul.filter_portfolio a:hover,
ul.filter_portfolio a.selected,
#logo h1 a:hover,
.entry-content a,
.portfolio-info a,
ul.archive,
.entry-meta a:hover,
.entry-meta-single-post a:hover,
blockquote cite,
blockquote cite a,
blockquote cite a:visited,
blockquote cite a:visited,
.quote cite,
.entry-title a:hover,
#teaser-content a,
span.current,
.themecolor,
a:hover,
.tag-links a:hover,
.h-link,
.widget_recent_comments a{
color:#75a405;
}
::-moz-selection {
color: #FFFFFF !important;
background:#75a405;
}
::selection {
color: #FFFFFF !important;
background:#75a405;
}
.entry-attachment .entry-caption,
.gallery-caption,
.lambda-pricingtable.featured .lambda-pricingtable-top,
.testimonial-company {
background:#75a405;
}
.lambda-pricingtable.featured .lambda-pricingtable-top {
border-top:1px solid #75a405;
}
#vmenu li.selected:hover h3,
#vmenu li.selected,
.camera_wrap .camera_pag .camera_pag_ul li:hover > span,
.camera_wrap .camera_pag .camera_pag_ul li.cameracurrent > span,
.camera_bar_cont span,
.link-post span,
.lambda-dropcap2,
.lambda-highlight1 {
background-color:#75a405;
}
.camera_commands,
.camera_prev,
.camera_next,
.flex-direction-nav a,
.lambda-featured-header-caption,
.hover-overlay {
background-color: rgb(128,182,0);
background-color:rgba(128,182,0,0.8);
}
.lambda_widget_flickr .flickr_items img {
background-color:#75a405;
}
#footer .lambda_widget_flickr .flickr_items img {
background-color:#75a405;
}
/* Navigation Sub Menu */
#navigation ul.sub-menu {
-webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
-ms-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.2);
-o-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
background-color: rgb(34,34,34);
background-color: rgba(34,34,34,0.9);
border-top:2px solid #75a405;
}
#toTop {
background-image: url(../../images/green/to-top.png);
}
.lambda-like {
background-image: url(../../images/green/lambda-like.png);
}
ul.tabs li a.active {
border-top:2px solid #75a405;
}
.testimonial-entry {
background-attachment: scroll;
background-image: url(../../images/green/blockquote.png);
background-repeat: no-repeat;
background-position: 44px 30px;
}
.testimonial-name span {
color:#75a405;
}
.more-link:hover,
.excerpt:hover {
background-image: url(../../images/green/excerpt-icon-hover.png);
}
h3.trigger:hover a,
p.trigger:hover a{
color:#75a405;
}
/* Up Toggle State */
h3.trigger,
p.trigger {
border-bottom: 1px solid #D9D9D9;
background-color: #FFFFFF;
background-image: url(../../images/green/toggle-open.png);
background-repeat: no-repeat;
background-position: left 3px;
}
p.trigger {
background-position: left 1px;
}
#mobile-menu li a:hover,
h3.trigger.active a,
p.trigger.active a {
color:#75a405;
}
#nav-portfolio .nav-next a:hover {
background-image: url(../../images/green/excerpt-icon-hover.png);
}
#nav-portfolio .nav-previous a:hover {
background-image: url(../../images/green/excerpt-icon-back-hover.png);
}
.tprev:hover{
background-image: url(../../images/green/excerpt-icon-back-hover.png);
}
.tnext:hover {
background-image: url(../../images/green/excerpt-icon-hover.png);
}
#mobile-menu li,
ul.archive li,
.widget_links li,
.widget_nav_menu li,
.widget_pages li,
.widget_meta li,
.widget_categories li,
.widget_product_categories li,
.widget_archive li,
.widget_recent_entries li {
background-image: url(../../images/green/arrow-right.gif);
color:#333333;
}
.widget_recent_comments li {
background-image: url(../../images/green/comment.png);
}
.widget_search #s {/* This keeps the search inputs in line */
background-image: url(../../images/green/zoom.png);
}
.tweet_list li {
background-image: url(../../images/green/twitter-widget.png);
}
.pformat .post_format_image {
background-image: url('../../images/green/pformat-image.png');
}
.pformat .post_format_standard {
background-image: url('../../images/green/pformat-standard.png');
}
.pformat .post_format_audio {
background-image: url('../../images/green/pformat-audio.png');
}
.pformat .post_format_gallery {
background-image: url('../../images/green/pformat-gallery.png');
}
.pformat .post_format_video {
background-image: url('../../images/green/pformat-video.png');
}
.pformat .post_format_link {
background-image: url('../../images/green/pformat-link.png');
}
.pformat .post_format_quote {
background-image: url('../../images/green/pformat-quote.png');
}
.pformat .post_format_aside {
background-image: url('../../images/green/pformat-aside.png');
}
.lambda-address {
background-image: url('../../images/green/contact-adress.png');
}
.lambda-phone {
background-image: url('../../images/green/contact-phone.png');
}
.lambda-fax {
background-image: url('../../images/green/contact-fax.png');
}
.lambda-email {
background-image: url('../../images/green/contact-email.png');
}
.lambda-internet {
background-image: url('../../images/green/contact-internet.png');
}
.lambda-most-liked-posts li {
background-image: url('../../images/green/like.png');
}
.lambda_widget_mostlikesposts {
color:#75a405;
}
.response span{
color:#75a405;
}
.claymore-caption.dark .excerpt:hover,
.claymore-caption.white .excerpt:hover,
.tweet_text a,
#sidebar .lambda_widget_recent_comments a,
#sidebar_second .lambda_widget_recent_comments a,
.tweet_time a:hover,
.more-link:hover,
.excerpt:hover {
color:#75a405 !important;
}
.portfolio-title span {
color:#2d3d07;
}
.lambda-pricingtable.featured .lambda-table-button {
-moz-box-shadow:inset 0px 1px 0px 0px #c1ed9c;
-webkit-box-shadow:inset 0px 1px 0px 0px #c1ed9c;
box-shadow:inset 0px 1px 0px 0px #c1ed9c;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #9dce2c), color-stop(1, #74a405) );
background:-moz-linear-gradient( center top, #9dce2c 5%, #74a405 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#9dce2c', endColorstr='#74a405');
background-color:#9dce2c;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #74a405;
display:inline-block;
color:#ffffff !important;
font-family:arial;
font-size:15px;
font-weight:bold;
padding:6px 24px;
text-decoration:none;
text-shadow:1px 1px 0px #689324;
}
.cta-button:hover,
.lambda-pricingtable.featured .lambda-table-button:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #74a405), color-stop(1, #9dce2c) );
background:-moz-linear-gradient( center top, #74a405 5%, #9dce2c 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#74a405', endColorstr='#9dce2c');
background-color:#74a405;
}
.cta-button:active,
.lambda-pricingtable.featured .lambda-table-button:active {
position:relative;
top:1px;
}
.lambda-pricingtable.featured .lambda-pricingtable-top h2 {
text-shadow:1px 1px 0px #689324;
}
.mm-button {
background-image: url(../../images/green/mobile-menu.png);
}
.cta-button {
-moz-box-shadow:inset 0px 1px 0px 0px #c1ed9c;
-webkit-box-shadow:inset 0px 1px 0px 0px #c1ed9c;
box-shadow:inset 0px 1px 0px 0px #c1ed9c;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #9dce2c), color-stop(1, #74a405) );
background:-moz-linear-gradient( center top, #9dce2c 5%, #74a405 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#9dce2c', endColorstr='#74a405');
background-color:#9dce2c;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #74a405;
display:inline-block;
color:#ffffff !important;
font-family:arial;
font-size:16px;
font-weight:normal;
padding:10px 30px;
text-decoration:none;
text-shadow:1px 1px 0px #689324;
margin-left:20px;
float:right;
cursor:pointer;
}
/* Cusom CSS WooCommerce */
/* Buttons */
.woo-button {
-moz-box-shadow:inset 0px 1px 0px 0px #c1ed9c !important;
-webkit-box-shadow:inset 0px 1px 0px 0px #c1ed9c !important;
box-shadow:inset 0px 1px 0px 0px #c1ed9c !important;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #9dce2c), color-stop(1, #74a405) ) !important;
background:-moz-linear-gradient( center top, #9dce2c 5%, #74a405 100% ) !important;
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#9dce2c', endColorstr='#74a405') !important;
background-color:#9dce2c !important;
border:1px solid #74a405 !important;
color:#ffffff !important;
text-shadow:1px 1px 0px #689324 !important;
}
.woo-button:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #74a405), color-stop(1, #9dce2c) ) !important;
background:-moz-linear-gradient( center top, #74a405 5%, #9dce2c 100% ) !important;
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#74a405', endColorstr='#9dce2c') !important;
background-color:#74a405 !important;
}
/* Price Filter */
.widget_price_filter .ui-slider .ui-slider-handle {
border:1px solid #74a405;
background: #74a405;
background:-webkit-gradient(linear, left top, left bottom, from(#74a405), to(#9dce2c));
background:-webkit-linear-gradient(#74a405, #9dce2c);
background:-moz-linear-gradient(center top, #74a405 0, #9dce2c 100%);
background:-moz-gradient(center top, #74a405 0, #9dce2c 100%);
}
.widget_price_filter .price_slider_wrapper .ui-widget-content {
background: #74a405;
background:-webkit-gradient(linear, left top, left bottom, from(#74a405), to(#9dce2c));
background:-webkit-linear-gradient(#74a405, #9dce2c);
background:-moz-linear-gradient(center top, #74a405 0, #9dce2c 100%);
background:-moz-gradient(center top, #74a405 0, #9dce2c 100%);
}
.widget_price_filter .ui-slider .ui-slider-range {
background:#74a405 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAADCAYAAABS3WWCAAAAFUlEQVQIHWP4//9/PRMDA8NzEPEMADLLBU76a5idAAAAAElFTkSuQmCC) top repeat-x;
}
/* Mini Icons */
a.button.added:before,
button.button.added:before,
input.button.added:before,
#respond input#submit.added:before,
#content input.button.added:before {
background-color: #75a405 !important;
}
/* Checkout */
#payment div.payment_box {
box-shadow:inset 0px 1px 0px 0px #ffffff;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ffffff), color-stop(1, #f6f6f6) );
background:-moz-linear-gradient( center top, #ffffff 5%, #f6f6f6 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f6f6f6');
text-shadow:1px 1px 0px #ffffff;
color:#666666 !important;
}
ul.order_details {
background-color: #75a405;
}
ul.order_details li {
color: #FFF;
}
mark {
background-color: #75a405;
color: #FFF;
}
/* Elements */
div.product span.price,
span.price,
#content div.product span.price,
div.product p.price,
#content div.product p.price {
color: #FFFFFF;
background-color: #75A405;
}
div.product span.price del,
#content div.product span.price del,
div.product p.price del,
#content div.product p.price del {
color:rgba(255,255,255,0.5)
}
div.product span.price del,
#content div.product span.price del,
div.product p.price del,
#content div.product p.price del {
border-color: #FFF;
}
span.onsale {
text-shadow:0 -1px 0 #75A405;
color:#fff;
-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -1px 0 rgba(0,0,0,0.2), 0 1px 2px rgba(0,0,0,0.2);
-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -1px 0 rgba(0,0,0,0.2), 0 1px 2px rgba(0,0,0,0.2);
box-shadow:inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -1px 0 rgba(0,0,0,0.2), 0 1px 2px rgba(0,0,0,0.2);
border:1px solid #74a405;
background: #74a405;
background:-webkit-gradient(linear, left top, left bottom, from(#74a405), to(#9dce2c));
background:-webkit-linear-gradient(#74a405, #9dce2c);
background:-moz-linear-gradient(center top, #74a405 0, #9dce2c 100%);
background:-moz-gradient(center top, #74a405 0, #9dce2c 100%);
}
.posted_in a {
color: #75A405;
}
.posted_in a:hover {
color: #000 !important;
}
|
wp-content/themes/xcluse/css/styles_old.css
|
zenstill/xcluse
|
@charset "utf-8";
/* CSS Document */
/*---------Fonts-------------*/
@font-face {
font-family: 'Nilland';
src: url('../fonts/Nilland.eot');
src: url('../fonts/Nilland.eot?#iefix') format('embedded-opentype'),
url('../fonts/Nilland.woff2') format('woff2'),
url('../fonts/Nilland.woff') format('woff'),
url('../fonts/Nilland.ttf') format('truetype'),
url('../fonts/Nilland.svg#Nilland') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Nilland-Black';
src: url('../fonts/Nilland-Black.eot');
src: url('../fonts/Nilland-Black.eot?#iefix') format('embedded-opentype'),
url('../fonts/Nilland-Black.woff2') format('woff2'),
url('../fonts/Nilland-Black.woff') format('woff'),
url('../fonts/Nilland-Black.ttf') format('truetype'),
url('../fonts/Nilland-Black.svg#Nilland-Black') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Nilland-SmallCaps-Bold';
src: url('../fonts/Nilland-SmallCaps-Bold.eot');
src: url('../fonts/Nilland-SmallCaps-Bold.eot?#iefix') format('embedded-opentype'),
url('../fonts/Nilland-SmallCaps-Bold.woff2') format('woff2'),
url('../fonts/Nilland-SmallCaps-Bold.woff') format('woff'),
url('../fonts/Nilland-SmallCaps-Bold.ttf') format('truetype'),
url('../fonts/Nilland-SmallCaps-Bold.svg#Nilland-SmallCaps-Bold') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Nilland-SmallCaps-Bold';
src: url('../fonts/Nilland-SmallCaps-Bold.eot');
src: url('../fonts/Nilland-SmallCaps-Bold.eot?#iefix') format('embedded-opentype'),
url('../fonts/Nilland-SmallCaps-Bold.woff2') format('woff2'),
url('../fonts/Nilland-SmallCaps-Bold.woff') format('woff'),
url('../fonts/Nilland-SmallCaps-Bold.ttf') format('truetype'),
url('../fonts/Nilland-SmallCaps-Bold.svg#Nilland-SmallCaps-Bold') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Nilland-SmallCaps-Bold';
src: url('../fonts/Nilland-SmallCaps-Bold.eot');
src: url('../fonts/Nilland-SmallCaps-Bold.eot?#iefix') format('embedded-opentype'),
url('../fonts/Nilland-SmallCaps-Bold.woff2') format('woff2'),
url('../fonts/Nilland-SmallCaps-Bold.woff') format('woff'),
url('../fonts/Nilland-SmallCaps-Bold.ttf') format('truetype'),
url('../fonts/Nilland-SmallCaps-Bold.svg#Nilland-SmallCaps-Bold') format('svg');
font-weight: normal;
font-style: normal;
}
/*-----------------End Fonts----------------*/
body{
font-family: 'Nilland';
}
a {
text-decoration: none !important;
text-shadow: none !important;
}
.bg-menu{
background:#000;
float:left;
width:100%;
}
.logo-xcluse {
float: left;
width: 20%;
}
.navbar-brand {
float: left;
height: 50px;
font-size: 18px;
line-height: 20px;
margin-top: 5px;
}
.search {
float: left;
width: 40%;
margin: 14px auto 0;
}
#keyword[placeholder] {
color: #989898;
}
#keyword {
border: 1px solid #969696;
width: 85%;
border-right: 0;
font-size: 17px;
font-family: calibri;
padding: 3px 13px;
float: left;
background:#e6e6e6;
border-radius: 0;
}
button#searchBtn {
float: left;
border: 0;
padding: 16px 20px;
background:url(../images/search.png) no-repeat #ff0000 50%;
}
.right-nav li a{
padding:20px 20px !important;
font-family: 'Nilland';
color: #fff;
font-size: 18px;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
margin: auto;
}
.carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next, .carousel-control .icon-prev {
width: 30px;
height: 30px;
margin-top: -15px;
font-size: 0px !important;
}
.nav-bar {
border-top: 1px solid #e5e5e5;
background: #f9f9f9;
z-index: 9999;
}
.navbartoggle {
border-color: #ddd;
}
.navbartoggle {
background-color: transparent;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
float: right;
margin-bottom: 8px;
margin-right: 15px;
margin-top: 8px;
padding: 9px 10px;
position: relative;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
.navbartoggle .icon-bar {
background-color: #888;
border-radius: 1px;
display: block;
height: 2px;
width: 22px;
}
.navbartoggle .icon-bar + .icon-bar {
margin-top: 4px;
}
@media (min-width: 768px){
.navbar-header {
float: left;
}
}
@media (max-width: 767px){
.navbar-header {
display: block;
}
}
.navbar-header {
display: none;
}
.navigation-wrapper .nav > li > a:hover, .navigation-wrapper .nav > li.active {
background: #5D5D5D;
}
/*Menu*/
.nav > li.megamenu{
position: static;
}
/* Mega Menu */
.megamenu-content{
background: none repeat scroll 0 0 #fff;
display: none;
left: 0;
letter-spacing: normal;
margin-top: 0rem;
overflow: hidden;
padding: 20px;
position: absolute;
transition: height 500ms ease-in-out 0s;
width: 100%;
z-index: 101;
}
.megamenu:hover .megamenu-content{
z-index: 102;
}
.megamenu-content ul.level0 li{
width: 25%;
float: left;
}
.megamenu-content ul.level0 li:nth-of-type(5){
clear: both;
}
.megamenu-content ul li.level1{
font-size: 14px;
font-weight: normal;
text-transform: uppercase;
}
.megamenu-content ul li a{
position: relative;
}
.megamenu-content ul li.level2{
font-size: 12px;
font-weight: normal;
}
.default-content{
display: none;
}
.megamenu .level1 .default-content{
display: block;
position: static !important;
}
.default .default-content{
left: 0;
position: absolute;
z-index: 102;
box-shadow: 0px 2px 3px rgba(0,0,0,0.4) !important;
}
.default .default-content ul li{
background: none repeat scroll 0 0 #fff;
display: block;
min-width: 150px;
padding: 10px 20px;
position: relative;
}
.default .default-content ul li:before{
color: #333;
content: "";
font-family: FontAwesome;
font-size: 12px;
font-style: normal;
font-weight: normal;
left: 10px;
padding-right: 0.5em;
position: absolute;
text-decoration: inherit;
top: 12px;
}
.megamenu .default-content ul li:before{
color: #333;
content: "";
font-family: FontAwesome;
font-size: 12px;
font-style: normal;
font-weight: normal;
left: 4px;
padding-right: 0.5em;
position: absolute;
text-decoration: inherit;
top: 9px;
}
.megamenu .level2.default span, .megamenu .level2.default span:hover{
color: #3d3d3d !important;
}
.megamenu .default-content ul li{
background: none repeat scroll 0 0 #fff;
border: medium none;
display: block;
/*min-width: 100px;*/
padding-bottom: 0;
padding-left: 15px;
}
.default .level-1.default-content {
display: none;
left: 100%;
position: absolute;
top: 0px;
width: 200px;
}
.megamenu .default .level-1.default-content {
display: block;
}
.submenu-top, .submenu-bottom{
text-align: center;
}
.submenu-top{
border-bottom: 1px solid #DDD;
margin-bottom: 20px;
padding-bottom: 10px;
}
.submenu-bottom{
border-top: 1px solid #DDD;
margin-top: 20px;
padding-top: 10px;
}
.submenu-left img, .submenu-right img{
width: 100%;
}
.showmenu{
display: block !important;
}
/****************************** Changed by: Saroj **************************************/
.navigation-wrapper .nav > li > a {
padding: 10px 22px !important;
text-transform: uppercase !important;
color: #000 !important;
font-family: 'Nilland';
}
.navigation-wrapper .nav > li > a:hover{
background-color: #5D5D5D !important;
color: #fff !important;
}
.navigation-wrapper .nav > li.active > a{
color: #fff !important;
}
.default .default-content li a{
font-family: 'OpenSansRegular'
text-transform: none;
color: #000;
}
.default .default-content .level0 li:hover{
background-color: #1a75bb !important;
}
.default .default-content li:hover a{
color: #fff !important;
text-decoration: none !important;
}
.megamenu-content{
box-shadow:0px 2px 3px rgba(0,0,0,0.4);
}
.level2.default span {
color: #000;
display: block;
}
.level2.default span.cat-label{
color: #FFF;
}
.default .level2.default span:hover {
color: #fff;
}
.default .default-content li{
-webkit-transition: all 300ms ease-in-out 0s;
-o-transition: all 300ms ease-in-out 0s;
transition: all 300ms ease-in-out 0s;
}
.default .default-content li:hover > a{color: #fff !important;font-family: 'Nilland'; }
.megamenu .default .default-content li:hover > a{color: #000 !important;font-family: 'Nilland'; }
.default .default-content-sec1 {
left: 0;
position: absolute;
z-index: 102;
box-shadow: 0px 2px 3px rgba(0,0,0,0.4) !important;
width: 450px;
background: #fff;
padding: 10px;
}
ul.level0 {
float: left;
width: 50%;
padding:0 10px;
}
.navbar-nav > li.parent.level0 > a:after {
color: #333;
content: "\f107";
font-family: FontAwesome;
font-size: 12px;
font-style: normal;
font-weight: normal;
padding-right: 0.5em;
position: absolute;
right: 6px;
text-decoration: inherit;
top: 10px;
}
.nav>li>a:focus, .nav>li>a:hover {
text-decoration: none;
background-color: #E6E6E6;
color: #000;
}
span.h1{
top: 0px !important;
}
.h1 {
font-family: 'Nilland-Black' !important;
background: #FFF;
position: relative;
top: 9px;
padding: 0px 10px;
border-bottom: none !important;
}
.site-footer-sec {
background-color: #e8e8e8;
color: #404042;
}
.footer-product a, .sale-tag, #accessibleNav li a{
font-family: 'Nilland' !important;
}
.grid-item.large--three-quarters.text-center.large--text-right{
padding-bottom:0 !important;
}
.cart-count:hover{
background:#39559f;
}
.cart-count.g:hover{
background:#dd4b39;
}
.cart-count.t:hover{
background:#20B8FF;
}
.cart-count:hover a{
color:#fff;
}
h1.footer-product {
position: relative;
top: 20px;
}
.price-box p span{
font-family: 'Nilland-Black';
}
/****************End Home Page***********************/
@media (max-width:990px){
.search {
float: left;
width: 46%;
margin: 14px auto;
}
.logo-xcluse {
float: none;
width: 100%;
margin: 0 auto;
}
ul.nav.navbar-nav.right-nav {
float: left;
width: 100%;
}
ul.nav.navbar-nav.right-nav li{
float: left;
}
#keyword {
border: 1px solid #969696;
width: 100%;
border-right: 0;
font-size: 17px;
font-family: calibri;
padding: 3px 13px;
float: left;
background:#e6e6e6;
}
div#searchbox {
float: left;
width: 80%;
}
.add-to-links li {
float: left;
padding: 0px 10% !important;
}
}
@media (max-width:514px){
.logo-xcluse {
float: left;
position: relative;
left: 26%;
}
.search {
float: left;
width: 100%;
margin: 14px auto;
}
}
@media (max-width:320px){
.right-nav li a {
padding: 0px 4px !important;
font-family: 'Nilland';
color: #fff;
font-size: 12px;
}
.logo-xcluse {
float: left;
position: relative;
left: 11%;
}
}
.add-to-links {
float: left;
width: 100%;
margin: 0;
padding: 10px;
background: rgba(255, 255, 255, 0.74);
}
.product-image-wrapper{
position:relative;
}
.hover-eff{
position:relative;
min-height: 250px;
}
.hover-eff .display-onhover {
position: absolute;
width: 100%;
bottom: 0;
float: left;
left: 0px;
}
.display-onhover {
position: absolute;
width: 100%;
bottom: 0;
float: left;
left: 0px;
}
.add-to-links li{
float:left;
padding: 0px 12%;
}
.list-nav{
float:right !important;
}
.site-nav a {
white-space: nowrap;
line-height: 1;
font-family: 'Nilland';
color:#000 !important;
text-transform: initial;
font-size:16px;
}
.products-grid li img{
width:100%;
}
.fa-cart-plus:before {
content: "\f127";
}
.add-to-links li a i{
font-size:20px;
}
p.old-price {
text-align: center;
font-size: 20px;
padding: 10px 0 0 0;
font-family: 'Nilland';
}
.grid-border>.grid-item {
font-family: 'Nilland';
font-size:15px;
}
@media (max-width:1100px)and(min-width: 855px){
.add-to-links li {
float: left;
padding: 0px 11%;
}
}
@media (max-width: 856px)and(min-width: 770px){
.add-to-links li {
float: left;
padding: 0px 9%;
}
}
.list-fun span {
background: #ECECEC;
display: inline-block;
padding: 5px 18px;
margin: 3px 0px 6px 3px;
position: relative;
}
.list-fun span i {
position: relative;
right: -11px;
}
.search-bar-product {
position: relative;
max-width: 100%;
margin: 0 auto 7px;
}
.search-bar-product input[type="search"] {
width: 100%;
margin-bottom: 0px;
padding: 2px 45px 2px 10px;
height: 32px;
font-family: "Nilland";
font-size: 14px;
line-height: 24px;
background: none repeat scroll 0% 0% #ECECEC;
}
.search-bar-product .search-bar--submit {
position: absolute;
top: 0px;
bottom: 0;
right: 0;
width: 45px;
margin: 0;
border: 0 none;
background: none;
text-align: center;
cursor: pointer;
background: #000;
color: #fff;
}
.list-search ul li span i{
float:right;
}
.advanced-filters-wrapper h3{
border-bottom: 1px solid #d8d8d8 !important;
padding-bottom: 1px;
clear: both;
display: inline-block;
float: left;
width: 100%;
margin: 0;
line-height: 23px;
}
.product-image-wrapper:hover .display-onhover{
display:block;
-webkit-animation: fadeOutRight 0.5s;
-moz-animation: fadeOutRight 0.5s;
animation: fadeOutRight 0.5s;
}
.product-image-wrapper .display-onhover{
display:none;
}
.search-bar-btn {
background: #000;
color: #fff;
width: 100%;
border: none;
padding: 2px 0 6px;
}
.col-sidebar ul li{float:left;}
.serch-fuction {
float: left;
margin-top: 20px;
}
ul.mtree.transit {
background: #f9f9f9;
float: left;
}
.product-image-wrapper {
min-height: 250px;
}
.product-image-wrapper a img {
-webkit-transition: all .6s ease-in-out;
-moz-transition: all .6s ease-in-out;
-o-transition: all .6s ease-in-out;
transition: all .6s ease-in-out;
overflow: hidden;
position: relative;
width: 100% !important;
max-height: 250px;
}
.product-image-wrapper a img {
transform: scale(1) rotate(0deg);
-webkit-transform: scale(1) rotate(0deg);
-ms-transform: scale(1) rotate(0deg);
}
.product-image-wrapper a img:hover {
transform: scale(1.5) rotate(0deg);
-webkit-transform: scale(1.5) rotate(0deg);
-ms-transform: scale(1.5) rotate(0deg);
}
.product-image-wrapper a{
overflow:hidden;
display: block;
position: relative;
width: 100% !important;
height: auto !important;
}
.mail-font i{
font-size: 24px;
}
#myCarousel{
padding:0 !important;
}
.filters-left{
float:left;
clear:both;
}
|
solr/docs/solr-analytics/org/apache/solr/analytics/util/valuesource/package-frame.html
|
swsachith/ANDROPHSY
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_67) on Thu Apr 09 10:38:33 MDT 2015 -->
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<title>org.apache.solr.analytics.util.valuesource (Solr 5.1.0 API)</title>
<meta name="date" content="2015-04-09">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<h1 class="bar"><a href="../../../../../../org/apache/solr/analytics/util/valuesource/package-summary.html" target="classFrame">org.apache.solr.analytics.util.valuesource</a></h1>
<div class="indexContainer">
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="AbsoluteValueDoubleFunction.html" title="class in org.apache.solr.analytics.util.valuesource" target="classFrame">AbsoluteValueDoubleFunction</a></li>
<li><a href="AddDoubleFunction.html" title="class in org.apache.solr.analytics.util.valuesource" target="classFrame">AddDoubleFunction</a></li>
<li><a href="ConcatStringFunction.html" title="class in org.apache.solr.analytics.util.valuesource" target="classFrame">ConcatStringFunction</a></li>
<li><a href="ConstDateSource.html" title="class in org.apache.solr.analytics.util.valuesource" target="classFrame">ConstDateSource</a></li>
<li><a href="ConstDoubleSource.html" title="class in org.apache.solr.analytics.util.valuesource" target="classFrame">ConstDoubleSource</a></li>
<li><a href="ConstStringSource.html" title="class in org.apache.solr.analytics.util.valuesource" target="classFrame">ConstStringSource</a></li>
<li><a href="DateFieldSource.html" title="class in org.apache.solr.analytics.util.valuesource" target="classFrame">DateFieldSource</a></li>
<li><a href="DateMathFunction.html" title="class in org.apache.solr.analytics.util.valuesource" target="classFrame">DateMathFunction</a></li>
<li><a href="DivDoubleFunction.html" title="class in org.apache.solr.analytics.util.valuesource" target="classFrame">DivDoubleFunction</a></li>
<li><a href="DualDoubleFunction.html" title="class in org.apache.solr.analytics.util.valuesource" target="classFrame">DualDoubleFunction</a></li>
<li><a href="FilterFieldSource.html" title="class in org.apache.solr.analytics.util.valuesource" target="classFrame">FilterFieldSource</a></li>
<li><a href="LogDoubleFunction.html" title="class in org.apache.solr.analytics.util.valuesource" target="classFrame">LogDoubleFunction</a></li>
<li><a href="MultiDateFunction.html" title="class in org.apache.solr.analytics.util.valuesource" target="classFrame">MultiDateFunction</a></li>
<li><a href="MultiDoubleFunction.html" title="class in org.apache.solr.analytics.util.valuesource" target="classFrame">MultiDoubleFunction</a></li>
<li><a href="MultiplyDoubleFunction.html" title="class in org.apache.solr.analytics.util.valuesource" target="classFrame">MultiplyDoubleFunction</a></li>
<li><a href="MultiStringFunction.html" title="class in org.apache.solr.analytics.util.valuesource" target="classFrame">MultiStringFunction</a></li>
<li><a href="NegateDoubleFunction.html" title="class in org.apache.solr.analytics.util.valuesource" target="classFrame">NegateDoubleFunction</a></li>
<li><a href="PowDoubleFunction.html" title="class in org.apache.solr.analytics.util.valuesource" target="classFrame">PowDoubleFunction</a></li>
<li><a href="ReverseStringFunction.html" title="class in org.apache.solr.analytics.util.valuesource" target="classFrame">ReverseStringFunction</a></li>
<li><a href="SingleDoubleFunction.html" title="class in org.apache.solr.analytics.util.valuesource" target="classFrame">SingleDoubleFunction</a></li>
<li><a href="SingleStringFunction.html" title="class in org.apache.solr.analytics.util.valuesource" target="classFrame">SingleStringFunction</a></li>
</ul>
</div>
</body>
</html>
|
submodules/externals/osip/help/man/osip.html
|
GargoyleSoftware/voip-client-ios
|
<HTML
><HEAD
><TITLE
>oSIP user Manual</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.49"><META
NAME="KEYWORD"
CONTENT="oSIP"><META
NAME="KEYWORD"
CONTENT="SIP"><META
NAME="KEYWORD"
CONTENT="rfc3261"><META
NAME="KEYWORD"
CONTENT="library"><META
NAME="KEYWORD"
CONTENT="telephony"><META
NAME="KEYWORD"
CONTENT="GPL"><META
NAME="KEYWORD"
CONTENT="Linux"></HEAD
><BODY
CLASS="BOOK"
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#840084"
ALINK="#0000FF"
><DIV
CLASS="BOOK"
><A
NAME="AEN1"
></A
><DIV
CLASS="TITLEPAGE"
><H1
CLASS="TITLE"
><A
NAME="AEN2"
>oSIP user Manual</A
></H1
><H2
CLASS="SUBTITLE"
>A guide to implement SIP agents with the oSIP stack.</H2
><H3
CLASS="AUTHOR"
><A
NAME="AEN5"
>Aymeric Moizard</A
></H3
><DIV
CLASS="AFFILIATION"
><DIV
CLASS="ADDRESS"
><P
CLASS="ADDRESS"
>jacK@atosc.org</P
></DIV
></DIV
><DIV
><DIV
CLASS="ABSTRACT"
><P
><B
>Abstract</B
></P
><P
><SPAN
CLASS="QUOTE"
>"The Session Initiation Protocol (SIP) is an application-layer control (signaling) protocol for creating, modifying and terminating sessions with one or more participants. These sessions include Internet multimedia conferences, Internet telephone calls and multimedia distribution. Members in a session can communicate via multicast or via a mesh of unicast relations, or a combination of these."</SPAN
></P
><P
><H3
CLASS="CORPAUTHOR"
>IETF - rfc 3261</H3
></P
></DIV
></DIV
><DIV
CLASS="LEGALNOTICE"
><P
></P
><P
>Copyright (c) 2001,2002,2003,2004,2005 Aymeric MOIZARD.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.1
or any later version published by the Free Software Foundation;
with the Invariant Sections being LIST THEIR TITLES, with the
Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.
A copy of the license is included in the section entitled "GNU
Free Documentation License".</P
><P
></P
></DIV
><HR></DIV
><DIV
CLASS="TOC"
><DL
><DT
><B
>Table of Contents</B
></DT
><DT
>1. <A
HREF="#SIP-PROTOCOL"
>The SIP protocol</A
></DT
><DD
><DL
><DT
><A
HREF="#SIP-MEDIA"
>SIP is independent of media</A
></DT
><DT
><A
HREF="#AEN42"
>SIP is independent of the transport layer</A
></DT
><DT
><A
HREF="#AEN45"
>SIP is extensible</A
></DT
><DT
><A
HREF="#AEN52"
>SIP and end-user services</A
></DT
></DL
></DD
><DT
>2. <A
HREF="#AEN60"
>SIP overview</A
></DT
><DD
><DL
><DT
><A
HREF="#AEN63"
>SIP syntax</A
></DT
><DT
><A
HREF="#AEN81"
>SIP transactions</A
></DT
><DT
><A
HREF="#AEN89"
>SIP sessions</A
></DT
><DT
><A
HREF="#AEN97"
>Server behavior</A
></DT
></DL
></DD
><DT
>3. <A
HREF="#AEN101"
>The oSIP Library</A
></DT
><DD
><DL
><DT
><A
HREF="#AEN105"
>The goals</A
></DT
><DT
><A
HREF="#AEN110"
>The development level</A
></DT
><DD
><DL
><DT
><A
HREF="#AEN112"
>The parser</A
></DT
><DT
><A
HREF="#AEN117"
>The state machines</A
></DT
></DL
></DD
><DT
><A
HREF="#AEN120"
>The parser</A
></DT
><DT
><A
HREF="#AEN131"
>The transaction manager</A
></DT
><DT
><A
HREF="#AEN137"
>Who will benefit from oSIP</A
></DT
><DT
><A
HREF="#AEN140"
>Available ports</A
></DT
></DL
></DD
><DT
>4. <A
HREF="#AEN143"
>The oSIP parser</A
></DT
><DD
><DL
><DT
><A
HREF="#AEN145"
>files</A
></DT
><DT
><A
HREF="#AEN153"
>SIP-URL</A
></DT
><DD
><DL
><DT
><A
HREF="#AEN155"
>Definition and purpose</A
></DT
><DT
><A
HREF="#AEN162"
>API for SIP-URL</A
></DT
><DT
><A
HREF="#AEN289"
>API for url_param_t and url_header_t</A
></DT
></DL
></DD
><DT
><A
HREF="#AEN390"
>SIP headers</A
></DT
><DD
><DL
><DT
><A
HREF="#AEN392"
>Definition and purpose</A
></DT
><DT
><A
HREF="#AEN398"
>Common API for all implemented header.</A
></DT
><DT
><A
HREF="#AEN482"
>Specific API for "To" header</A
></DT
><DT
><A
HREF="#AEN621"
>API for generic param</A
></DT
></DL
></DD
><DT
><A
HREF="#AEN783"
>SIP messages</A
></DT
><DD
><DL
><DT
><A
HREF="#AEN785"
>definition and purpose</A
></DT
><DT
><A
HREF="#AEN794"
>API for SIP message</A
></DT
><DT
><A
HREF="#AEN1270"
>MACROs</A
></DT
></DL
></DD
><DT
><A
HREF="#AEN1276"
>The parser HOW-TO.</A
></DT
><DD
><DL
><DT
><A
HREF="#AEN1279"
>Initialise the parser</A
></DT
><DT
><A
HREF="#AEN1284"
>Allocate a structure</A
></DT
><DT
><A
HREF="#AEN1292"
>create a URL and a Request-URI.</A
></DT
><DT
><A
HREF="#AEN1296"
>Add headers in a message</A
></DT
><DT
><A
HREF="#AEN1313"
>make a string from a structure</A
></DT
><DT
><A
HREF="#AEN1319"
>free resource in a structure</A
></DT
></DL
></DD
><DT
><A
HREF="#AEN1326"
>How to improve the parser performance</A
></DT
></DL
></DD
><DT
>5. <A
HREF="#AEN1329"
>The oSIP state machines</A
></DT
><DD
><DL
><DT
><A
HREF="#AEN1331"
>files</A
></DT
><DT
><A
HREF="#AEN1339"
>Transaction and events</A
></DT
><DD
><DL
><DT
><A
HREF="#AEN1341"
>Definition and purpose of transaction</A
></DT
><DT
><A
HREF="#AEN1361"
>Definition and purpose of osip_event</A
></DT
><DT
><A
HREF="#AEN1378"
>API</A
></DT
><DT
><A
HREF="#AEN1595"
>The callbacks.</A
></DT
><DT
><A
HREF="#AEN1600"
>Useful MACROs.</A
></DT
></DL
></DD
><DT
><A
HREF="#AEN1604"
>The finite state machines HOW-TO</A
></DT
><DD
><DL
><DT
><A
HREF="#AEN1611"
>Initialise the osip stack</A
></DT
><DT
><A
HREF="#AEN1616"
>Allocate and initialize an osip_t element</A
></DT
><DT
><A
HREF="#AEN1621"
>Send events to control transaction</A
></DT
><DT
><A
HREF="#AEN1625"
>Notes for proxy implementation</A
></DT
></DL
></DD
><DT
><A
HREF="#AEN1629"
>Build your own architecture</A
></DT
></DL
></DD
><DT
><A
HREF="#AEN1639"
>Bibliography</A
></DT
></DL
></DIV
><DIV
CLASS="CHAPTER"
><HR><H1
><A
NAME="SIP-PROTOCOL"
>Chapter 1. The SIP protocol</A
></H1
><P
>SIP is a signaling protocol used to initiate and control multimedia sessions. It is already published by IETF (www.ietf.org) as the rfc3261.</P
><P
>SIP is part of the IETF effort to bring telephony on the IP network. It is about to become the standard used by the emerging IP telephony industry. As simple as the mail protocol, it may become as popular...</P
><DIV
CLASS="SECT1"
><HR><H1
CLASS="SECT1"
><A
NAME="SIP-MEDIA"
>SIP is independent of media</A
></H1
><P
>The traditional telephony was based on one media. Now, it's over. Your phone will be able to connect to a TV, to a camera, to others phones with different qualities and different codecs. Hopefully, SIP is independent of any media used by the applications. SIP is able to negotiate media used within sessions. Any multimedia application (games, distance learning application) can use SIP to set up sessions.</P
></DIV
><DIV
CLASS="SECT1"
><HR><H1
CLASS="SECT1"
><A
NAME="AEN42"
>SIP is independent of the transport layer</A
></H1
><P
>SIP is not tight to any transport protocol. This aspect will minimize efforts to interoperate with new third generation networks. Wireless phones are also concerned. A SIP stack perfectly fits the signaling needs of the new cellulars' generation.</P
></DIV
><DIV
CLASS="SECT1"
><HR><H1
CLASS="SECT1"
><A
NAME="AEN45"
>SIP is extensible</A
></H1
><P
>The rfc3261 defines 6 types of transaction (INVITE, BYE, CANCEL...). Those transactions are used to negotiate media, set up, modify and terminate calls. Many services are already provided this way but SIP is designed for extensibility and the transactional model can be reused (transparently for servers) by new type of transaction to create some supplementary services. Here is a list of possible services:</P
><P
></P
><TABLE
BORDER="0"
><TR
><TD
>MESSAGE for instant messaging</TD
></TR
><TR
><TD
>SUBSCRIBE/NOTIFY for presence management</TD
></TR
><TR
><TD
>REFER for call-transfer management</TD
></TR
></TABLE
><P
></P
></DIV
><DIV
CLASS="SECT1"
><HR><H1
CLASS="SECT1"
><A
NAME="AEN52"
>SIP and end-user services</A
></H1
><P
><SPAN
CLASS="QUOTE"
>"SIP transparently supports name mapping and redirection services, allowing the implementation of ISDN and Intelligent Network telephony subscriber services. These facilities also enable personal mobility."</SPAN
></P
><P
>rfc3261.txt (Section 1.1)</P
><P
>SIP servers are used to locate users and distribute location (through urls) on demand. This way, end user agents have very minimal requirements and still have access to a wide variety of services.</P
><P
>Many extensions are already available as draft. Your can also add your personal phone capabilities and remain interoperable with existing servers.</P
></DIV
></DIV
><DIV
CLASS="CHAPTER"
><HR><H1
><A
NAME="AEN60"
>Chapter 2. SIP overview</A
></H1
><P
>This section does not intend to fully describe the RFC. It is a fast and incomplete overview of the protocol syntax and behavior.</P
><DIV
CLASS="SECT1"
><HR><H1
CLASS="SECT1"
><A
NAME="AEN63"
>SIP syntax</A
></H1
><P
>SIP is a text protocol based on utf8 encoding. (making it more readable and easier to debug) SIP describes a syntax for SIP requests, URL, responses and their headers. The full syntax is available in the <A
HREF="http://www.ietf.org/rfc/rfc3261.txt"
TARGET="_top"
>rfc3261</A
> in an augmented BNF form.</P
><P
>The syntax is borrowed from the MAIL and HTTP syntax. 6 types of requests are defined by SIP. The basic available methods are:</P
><P
></P
><TABLE
BORDER="0"
><TR
><TD
>INVITE</TD
></TR
><TR
><TD
>ACK</TD
></TR
><TR
><TD
>CANCEL</TD
></TR
><TR
><TD
>BYE</TD
></TR
><TR
><TD
>INFO</TD
></TR
><TR
><TD
>OPTIONS</TD
></TR
></TABLE
><P
></P
><P
>As you can see in the BNF definition of request (see rfc3261.txt section 3), SIP is not limited to this short list of methods and includes in its definition the extension-method token. Any other request can be handled by oSIP. NOTIFY and SUBSCRIBE are good examples of new possible methods. These ones are used specifically to provide presence capabilities to your SIP phone without much effort.</P
><P
><DIV
CLASS="EXAMPLE"
><P
><B
>Example 2-1. INVITE request</B
></P
><P
>INVITE requests are used to initiate and modify sessions. Here, cha from sipworld.net is calling jack at domain atosc.org. This request should be sent to the proxy server managing atosc.org, it will forward the call to jack at his real IP address.</P
><PRE
CLASS="PROGRAMLISTING"
>INVITE sip:jacK@atosc.org SIP/2.0
Via: SIP/2.0/UDP home.sipworld.org;branch=z9hG4bK776asdhds
Max-Forwards: 70
To: sip:jacK@atosc.org
From: sip:cha@sipworld.org
Call-ID: 35778645354@home.sipworld.org
CSeq: 1 INVITE
Contact: sip:cha@home.sipworld.org
Content-type: application/sdp
Content-length: 267
v=0
o=user1 53655765 2353687637 IN IP4 128.3.4.5
s=Mbone Audio
i=Discussion of Mbone Engineering Issues
e=mbone@somewhere.com
c=IN IP4 128.3.4.5
t=0 0
m=audio 3456 RTP/AVP 0
a=rtpmap:0 PCMU/8000</PRE
></DIV
></P
></DIV
><DIV
CLASS="SECT1"
><HR><H1
CLASS="SECT1"
><A
NAME="AEN81"
>SIP transactions</A
></H1
><P
>In order to control sessions, SIP uses transactions. Transactions (INVITE, CANCEL, BYE...) usually result in a modification of a current session. Some other transactions (SUBSCRIBE, NOTIFY...) are not bound to a session. A transaction is composed of one request and its responses (many informational responses and one final response). The following headers: To, From, Call-ID and CSeq are used to identify messages within a transaction.</P
><P
>Since the rfc3261, The "branch" parameter from the "Via" header provides a unique string to match requests and responses within a transactions.
</P
><P
>As SIP often use unreliable transport protocol (UDP is recommended but TCP or TLS can be prefered), SIP also defines retransmission rules for messages within a transaction.</P
><DIV
CLASS="EXAMPLE"
><P
><B
>Example 2-2. INVITE transaction</B
></P
><P
>This is the most basic call flow showing the initiation of a session. Only two SIP User Agents (UAC/UAS) are involved. (retransmissions are hidden)</P
><PRE
CLASS="PROGRAMLISTING"
> UAC1 UAS2
jacks | INVITE |
initiate a |----------------->|
call | |
| 100 Trying |
|<-----------------| Bob's
| 180 Ringing| Phone starts
|<-----------------| ringing
| |
| |
| 200 OK |
|<-----------------|
| ACK |
|----------------->|</PRE
></DIV
></DIV
><DIV
CLASS="SECT1"
><HR><H1
CLASS="SECT1"
><A
NAME="AEN89"
>SIP sessions</A
></H1
><P
>Transactions are used by user agent as means to control sessions. A session is always initiated by an INVITE. SIP defines a large set of answer codes. A proxy may answer you the well known "404 User Not found" as for an HTTP error. Errors have different levels. A transaction can fail but still proposes new locations to try. Responses from class 3xx are used to redirect calls. 4xx, 5xx and 6xx responses are respectively reserved for client error, server error and global failure.</P
><DIV
CLASS="EXAMPLE"
><P
><B
>Example 2-3. A complete session</B
></P
><P
>First, both user agents must send a REGISTER to a registrar. In the following example, the proxy also support registration.</P
><P
>This session is initiated with an INVITE transaction to join jack at home.net. A redirection to jack's office is made by the redirect server of home.net. UA1 understands the redirection and sends a new INVITE towards the real User Agent (UA2) currently used by jack at office.atosc.org. UA2 first rings and jack accepts the call with a 200 OK response. After several minutes, jack and bob want to use their new cameras. The session is modified with an INVITE sent by jack to negotiate new parameters for video. The session is finally ended by bob.</P
><PRE
CLASS="PROGRAMLISTING"
> BOB home.net Jack (office.home.net)
UA1 PROXY UA2
| REGISTER | .
|-------------->| .
| 200 OK | .
|<--------------| .
. . .
later... . . .
. . .
. | REGISTER |
. |<--------------|
. | 200 OK |
. |-------------->|
. . .
later... . . .
| INVITE jack@home.net .
|-------------->| .
|302 Moved temporarily .
|<--------------| .
| ACK | .
|-------------->| .
| INVITE jack@office.home.net |
| audio |
|------------------------------>|
| 100 Trying |
|<------------------------------|
| 180 Ringing |
|<------------------------------|
| 200 OK |
|<------------------------------|
| ACK jack@office.home.net |
|------------------------------>|
. .
later . .
. .
| INVITE bob@bob.home.net |
| audio + video |
|<------------------------------|
| 200 OK |
|------------------------------>|
| ACK bob@bob.home.org |
|<------------------------------|
. .
later . .
. .
| BYE jack@office.home.net |
|------------------------------>|
| 200 OK |
|<------------------------------|
| |</PRE
></DIV
></DIV
><DIV
CLASS="SECT1"
><HR><H1
CLASS="SECT1"
><A
NAME="AEN97"
>Server behavior</A
></H1
><P
>SIP defines behaviors for proxy and registrar server. For complete information, please read the RFC...</P
><P
>Usually, a user agent sends its requests to an outbound proxy. As users do not know the current location of their correspondent, they use for the sip url a username and a domain. The outbound proxy (where firewall capabilities can be inserted) uses DNS SRV RECORDS to find servers belonging to the requested domain. Once the server is found, the request is forwarded. This server is the inbound proxy of the correspondent. If the user is available, its application must have registered its location before, so the proxy is now able to forward the request to the real user location. On local network, other standards may be used to find user. (finger,...)</P
></DIV
></DIV
><DIV
CLASS="CHAPTER"
><HR><H1
><A
NAME="AEN101"
>Chapter 3. The oSIP Library</A
></H1
><P
>Having a good knowledge of SIP is recommended for this section. If you plan to use SIP, you should read more carefully the rfc3261 from <A
HREF="http://www.ietf.org/rfc/rfc3261.txt"
TARGET="_top"
>ietf.org.</A
></P
><DIV
CLASS="SECT1"
><HR><H1
CLASS="SECT1"
><A
NAME="AEN105"
>The goals</A
></H1
><P
>The oSIP project has started in July 2000. The first official and public release (0.5.0) was published in May 2001.</P
><P
>The oSIP library is at first a free software project. In the context of the third generation network, more and more telecom operators will use IP technology, the favorite land of Linux. One aspect of this evolution is that the future of Linux is highly dependent on the multimedia tools that will be available. oSIP, as a SIP implementation, will allow building interoperable registrar, user-agent (software phones), and proxy thus giving more chance to Linux to be part of the next generation telephony products.</P
><P
>But oSIP is not only targeted towards PC applications. oSIP is enough flexible and tiny to be used on small OS with low requirements. From the 0.7.0 release, the thread support is now optional and the design of the application is entirely chosen by the end-developer. oSIP will now perfectly fit cellulars or any embeded systems. oSIP is known to run on the real time OS VxWorks and other ports should be simple.</P
><P
>Around 2002, the API has been totally refined and osip2 was first release. The code and API is now much more readable and heavy work has been previously done to update from rfc3543 to rfc3261.</P
></DIV
><DIV
CLASS="SECT1"
><HR><H1
CLASS="SECT1"
><A
NAME="AEN110"
>The development level</A
></H1
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="AEN112"
>The parser</A
></H2
><P
>oSIP should be provide a fully compliant SIP parser. If you ever see something missing or not correct, please report bugs to <TT
CLASS="EMAIL"
><<A
HREF="mailto:osip@atosc.org"
>osip@atosc.org</A
>></TT
>, I'll fix them.</P
><FONT
COLOR="RED"
>To get more information, see next section</FONT
></DIV
><DIV
CLASS="SECT2"
><HR><H2
CLASS="SECT2"
><A
NAME="AEN117"
>The state machines</A
></H2
><P
>The 4 finite state machines have been tested during weeks and have also been tested with around 30 products at the 8th SIPit in Cardiff (SIP Interoperability tests). They appear to be stable.</P
></DIV
></DIV
><DIV
CLASS="SECT1"
><HR><H1
CLASS="SECT1"
><A
NAME="AEN120"
>The parser</A
></H1
><P
>oSIP contains a parser which is able to read and write any SIP message as described in the RFC. Currently oSIP is able to parse only a minimal set of headers such as Via, Call-ID, To, From, Contact, CSeq, Route, Record-Route, mime-version, Content-Type, and Content-Length. All other headers are stored as strings so that you can access it with the API for generic headers.</P
><P
>By now, the SIP parser supports multiple attachments through the MIME format. (this part has not been tested a lot, reports bugs)</P
><FONT
COLOR="RED"
>oSIP may alter Incoming SIP messages when messages contains: </FONT
><P
></P
><TABLE
BORDER="0"
><TR
><TD
>the order of header</TD
></TR
><TR
><TD
>the presence of multiple headers on the same line</TD
></TR
><TR
><TD
>the presence of extra SPACEs between tokens</TD
></TR
><TR
><TD
>the presence of LWS (internal CRLF)</TD
></TR
><TR
><TD
>the presence of bracket in to,from,contact... headers</TD
></TR
></TABLE
><P
></P
></DIV
><DIV
CLASS="SECT1"
><HR><H1
CLASS="SECT1"
><A
NAME="AEN131"
>The transaction manager</A
></H1
><P
>oSIP presents an easy to use interface. Transactions are modeled through 4 finite state machines which is the core of the oSIP library. Each transaction uses a separate FIFO filled by external modules. Events are processed on demand by user. A set of dynamic callback registered by user allow the application to be informed of each transaction's evolution.</P
><P
>Building an application on the top of oSIP will require to build several modules. First, you'll have to build a module to manage the transport protocole (send and rcv methods). This way, oSIP is independent from any transport layer. Then, you'll be required to build a module for transaction management where a few methods of osip must be regularly called so that osip can run the finite state machines events. The third required module is the biggest part of the multimedia application. This modules will have to maintain and update the state of SIP sessions over transactions.</P
><P
>The transaction manager has been heavily tested and is already stable. Also, oSIP does not require much memory and runs fast. Since release 0.7.0, the library can be used either in multi-threaded mode or not!</P
></DIV
><DIV
CLASS="SECT1"
><HR><H1
CLASS="SECT1"
><A
NAME="AEN137"
>Who will benefit from oSIP</A
></H1
><P
>oSIP offers a low level interface to build any SIP applications (proxy, Endpoint, Server or gateway). Also, oSIP is not tight to any kind of OSs. If you want to implement a proxy, please read "notes for proxy implementation" in the chapter called "the transaction manager".</P
></DIV
><DIV
CLASS="SECT1"
><HR><H1
CLASS="SECT1"
><A
NAME="AEN140"
>Available ports</A
></H1
><P
>The library has been built with portability in mind and should be quickly usable on most posix systems. It has already been built under Solaris, HP unix and the RT OS VxWorks. GNU/Linux (2.2.16 and 2.4.7) has been used for initial developments.</P
></DIV
></DIV
><DIV
CLASS="CHAPTER"
><HR><H1
><A
NAME="AEN143"
>Chapter 4. The oSIP parser</A
></H1
><DIV
CLASS="SECT1"
><H1
CLASS="SECT1"
><A
NAME="AEN145"
>files</A
></H1
><P
><TT
CLASS="VARNAME"
>./libosip-x.x.x/src/osipparser2 </TT
><UL
>is the source directory for the SIP parser.</UL
></P
><P
><TT
CLASS="VARNAME"
>-losipparser2 </TT
><UL
>is the library containing the SIP parser</UL
></P
><P
><TT
CLASS="VARNAME"
>#include <osipparser2/osip_parser.h> </TT
><UL
>is the include file describing the external SIP parser API</UL
></P
></DIV
><DIV
CLASS="SECT1"
><HR><H1
CLASS="SECT1"
><A
NAME="AEN153"
>SIP-URL</A
></H1
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="AEN155"
>Definition and purpose</A
></H2
><P
>URL are used to describe entirely a SIP entity: user, registrar, proxy have their own urls. oSIP uses the <SPAN
CLASS="TYPE"
>osip_uri_t</SPAN
> type definition in the request-uri and in the following headers: "to", "from", "contact", "route", and "record-route".</P
><P
>type definition of <SPAN
CLASS="TYPE"
>osip_uri_t</SPAN
>.</P
><PRE
CLASS="PROGRAMLISTING"
>typedef struct osip_uri {
char *scheme;
char *username;
char *password;
char *host;
char *port;
list_t *url_params;
list_t *url_headers;
} osip_uri_t ;</PRE
></DIV
><DIV
CLASS="SECT2"
><HR><H2
CLASS="SECT2"
><A
NAME="AEN162"
>API for SIP-URL</A
></H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><PRE
CLASS="FUNCSYNOPSISINFO"
>#include <osipparser2/osip_uri.h></PRE
><P
></P
></DIV
><H1
><A
NAME="FUNCTION.URL-INIT"
>osip_uri_init</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN167"
></A
><H2
>Name</H2
>osip_uri_init -- Allocate and initialize the <TT
CLASS="PARAMETER"
><I
>url</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN171"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_uri_init</CODE
>(osip_uri_t **url);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.URL-FREE"
>osip_uri_free</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN181"
></A
><H2
>Name</H2
>osip_uri_free -- free resources contained in <TT
CLASS="PARAMETER"
><I
>url</I
></TT
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN185"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>void osip_uri_free</CODE
>(osip_uri_t ** url);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.URL-PARSE"
>osip_uri_parse</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN194"
></A
><H2
>Name</H2
>osip_uri_parse -- Parse <TT
CLASS="PARAMETER"
><I
>field_value</I
></TT
> and store results in <TT
CLASS="PARAMETER"
><I
>url</I
></TT
>.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN199"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_uri_parse</CODE
>(osip_uri_t * url,
char * field_value);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.URL-2CHAR"
>osip_uri_to_str</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN210"
></A
><H2
>Name</H2
>osip_uri_to_str -- Allocate a string in <TT
CLASS="PARAMETER"
><I
>field_value</I
></TT
> with the information stored in the <TT
CLASS="PARAMETER"
><I
>url</I
></TT
> parameter.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN215"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_uri_to_str</CODE
>(osip_uri_t *url
char **field_value);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.URL-CLONE"
>osip_uri_clone</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN226"
></A
><H2
>Name</H2
>osip_uri_clone -- duplicate the <TT
CLASS="PARAMETER"
><I
>url</I
></TT
> element in a new dest element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN230"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_uri_clone</CODE
>(osip_uri_t *url,
osip_uri_t **dest);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.URL-UPARAM-ADD"
>osip_uri_uparam_add</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN241"
></A
><H2
>Name</H2
>osip_uri_uparam_add -- allocate and add a new url parameter in the <TT
CLASS="PARAMETER"
><I
>url</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN245"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_uri_uparam_add</CODE
>(osip_uri_t *url,
char *pname
char *pvalue);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.URL-UHEADER-ADD"
>osip_uri_uheader_add</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN257"
></A
><H2
>Name</H2
>osip_uri_uheader_add -- allocate and add a new url header element in the <TT
CLASS="PARAMETER"
><I
>url</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN261"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_uri_uheader_add</CODE
>(osip_uri_t *url
char *hname
char *hvalue);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.URL-UPARAM-GET_BYNAME"
>osip_uri_uparam_get_byname</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN273"
></A
><H2
>Name</H2
>osip_uri_uparam_get_byname -- Find a url parameter with <TT
CLASS="PARAMETER"
><I
>pname</I
></TT
> in the <TT
CLASS="PARAMETER"
><I
>url</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN278"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_uri_uparam_get_byname</CODE
>(osip_uri_t *url
char *pname
osip_uri_param_t **osip_uri_param);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
></DIV
><DIV
CLASS="SECT2"
><HR><H2
CLASS="SECT2"
><A
NAME="AEN289"
>API for osip_uri_param_t and osip_uri_header_t</A
></H2
><P
>osip_uri_param_t and osip_uri_header_t are data types used inside a SIP-URL. Methods are provided to allocate, free or clone resources.</P
><DIV
CLASS="IMPORTANT"
><BLOCKQUOTE
CLASS="IMPORTANT"
><P
><B
>Important: </B
>The API is the same for url parameters and header parameters. You just have to replace "_param_" with "_header_".</P
></BLOCKQUOTE
></DIV
><DIV
CLASS="EXAMPLE"
><P
><B
>Example 4-1. type definitions of osip_uri_param_t and header_param_t.</B
></P
><PRE
CLASS="PROGRAMLISTING"
> typedef struct osip_uri_param {
char *pname;
char *pvalue;
} osip_uri_param_t;
typedef osip_uri_param_t osip_uri_header_t;</PRE
></DIV
><H1
><A
NAME="FUNCTION.URL-PARAM-INIT"
>osip_uri_param_init</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN298"
></A
><H2
>Name</H2
>osip_uri_param_init -- Allocate and initialize the <TT
CLASS="PARAMETER"
><I
>osip_uri_param</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN302"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_uri_param_init</CODE
>(osip_uri_param_t **osip_uri_param);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.URL-PARAM-FREE"
>osip_uri_param_free</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN312"
></A
><H2
>Name</H2
>osip_uri_param_free -- free resources contained in <TT
CLASS="PARAMETER"
><I
>osip_uri_param</I
></TT
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN316"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>void osip_uri_param_free</CODE
>(osip_uri_param_t **osip_uri_param);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.URL-PARAM-SET"
>osip_uri_param_set</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN325"
></A
><H2
>Name</H2
>osip_uri_param_set -- Set <TT
CLASS="PARAMETER"
><I
>name</I
></TT
> and <TT
CLASS="PARAMETER"
><I
>value</I
></TT
> in the <TT
CLASS="PARAMETER"
><I
>osip_uri_param</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN331"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>void osip_uri_param_set</CODE
>(osip_uri_param_t *osip_uri_param,
char *pname,
char *pvalue);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.URL-PARAM-FREELIST"
>osip_uri_param_freelist</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN343"
></A
><H2
>Name</H2
>osip_uri_param_freelist -- free resources contained in the list <TT
CLASS="PARAMETER"
><I
>osip_uri_params</I
></TT
> elements.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN347"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>void osip_uri_param_freelist</CODE
>(list_t *osip_uri_params);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.URL-PARAM-ADD"
>osip_uri_param_add</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN356"
></A
><H2
>Name</H2
>osip_uri_param_add -- add <TT
CLASS="PARAMETER"
><I
>osip_uri_param</I
></TT
> in the list <TT
CLASS="PARAMETER"
><I
>osip_uri_params</I
></TT
>.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN361"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>void osip_uri_param_add</CODE
>(list_t *osip_uri_params,
char *pname,
char *pvalue);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.URL-PARAM-GET_BYNAME"
>osip_uri_param_get_byname</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN373"
></A
><H2
>Name</H2
>osip_uri_param_get_byname -- Find the <TT
CLASS="PARAMETER"
><I
>osip_uri_param</I
></TT
> with <TT
CLASS="PARAMETER"
><I
>name</I
></TT
> in the list <TT
CLASS="PARAMETER"
><I
>osip_uri_params</I
></TT
>.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN379"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>void osip_uri_param_get_byname</CODE
>(list_t *osip_uri_params,
char *pname,
osip_uri_param_t **osip_uri_param);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
></DIV
></DIV
><DIV
CLASS="SECT1"
><HR><H1
CLASS="SECT1"
><A
NAME="AEN390"
>SIP headers</A
></H1
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="AEN392"
>Definition and purpose</A
></H2
><P
>The rfc3261 defines around 40 headers. SIP Messages are mainly composed of a list of headers. This first part documents the API to create, allocate, parse and print the SIP headers elements. The second one shows that headers also have a extended API only applicable for one type of header. The extended API presented below is for the "To" header. Nevertheless, the extended API for the "To" header is also valid for the "From", "Contact", "Route" and "Record-Route" headers.</P
><DIV
CLASS="EXAMPLE"
><P
><B
>Example 4-2. type definition of to_t</B
></P
><PRE
CLASS="PROGRAMLISTING"
>typedef struct osip_to_t {
char *displayname;
osip_uri_t *url;
list_t *gen_params;
} osip_to_t;</PRE
></DIV
></DIV
><DIV
CLASS="SECT2"
><HR><H2
CLASS="SECT2"
><A
NAME="AEN398"
>Common API for all implemented header.</A
></H2
><P
>The SIP parser can parse entirely a few headers such as: Via, To, From, CSeq, Call-Id, Contact, Route, Record-Route, Content-Type, Content-length, Mime-Version (see API for a complete list of headers API). The other headers are accessible as strings through a special API.</P
><DIV
CLASS="IMPORTANT"
><BLOCKQUOTE
CLASS="IMPORTANT"
><P
><B
>Important: </B
>This API presented below is applicable for all known headers: Simply replace "osip_to_" by one of the following list: "osip_via_", "osip_from_", "osip_contact", "osip_route_", "osip_record_route_", "osip_content_type_", "osip_content_length_", "osip_mime_version_", "osip_cseq_", "osip_call_id_" (see API for a complete list of headers API)</P
></BLOCKQUOTE
></DIV
><FONT
COLOR="RED"
>If you are interested in developing new headers, you just have to re-use the API proposed below. Contributions are welcomed. Be aware that only patch that do not break the compatibility will be accepted. DONT CHANGE THE OSIP_MESSAGE_T TYPEDEF.</FONT
><P
>As an example, the following methods concern the API to manipulate a <SPAN
CLASS="TYPE"
>osip_to_t</SPAN
> structure.</P
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><PRE
CLASS="FUNCSYNOPSISINFO"
>#include <osipparser2/osip_parser.h></PRE
><P
></P
></DIV
><H1
><A
NAME="FUNCTION.TO-INIT"
>osip_to_init</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN409"
></A
><H2
>Name</H2
>osip_to_init -- Allocate and initialize the structure <TT
CLASS="PARAMETER"
><I
>to</I
></TT
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN413"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_to_init</CODE
>(osip_to_t **to);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.TO-FREE"
>osip_to_free</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN423"
></A
><H2
>Name</H2
>osip_to_free -- free resources contained in <TT
CLASS="PARAMETER"
><I
>to</I
></TT
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN427"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>void osip_to_free</CODE
>(osip_to_t **to);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.TO-PARSE"
>osip_to_parse</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN436"
></A
><H2
>Name</H2
>osip_to_parse -- Parse <TT
CLASS="PARAMETER"
><I
>field_value</I
></TT
> and store results in <TT
CLASS="PARAMETER"
><I
>to</I
></TT
>.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN441"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_to_parse</CODE
>(osip_to_t *to,
char *field_value);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.TO-STR"
>osip_to_to_str</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN452"
></A
><H2
>Name</H2
>osip_to_to_str -- Allocate a string in <TT
CLASS="PARAMETER"
><I
>field_value</I
></TT
> with the information stored in the <TT
CLASS="PARAMETER"
><I
>to</I
></TT
> parameter.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN457"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_to_to_str</CODE
>(osip_to_t *to,
char **field_value);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.TO-CLONE"
>osip_to_clone</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN468"
></A
><H2
>Name</H2
>osip_to_clone -- duplicate the <TT
CLASS="PARAMETER"
><I
>to</I
></TT
> element in a new dest element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN472"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_to_clone</CODE
>(osip_to_t *to,
osip_to_t **dest);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
></DIV
><DIV
CLASS="SECT2"
><HR><H2
CLASS="SECT2"
><A
NAME="AEN482"
>Specific API for "To" header</A
></H2
><P
>In addition to the common API shared by all known implemented header, there is a specific API valid only for each header. The following methods concern the "To" header.</P
><H1
><A
NAME="FUNCTION.TO-SETDISPLAYNAME"
>osip_to_set_displayname</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN486"
></A
><H2
>Name</H2
>osip_to_set_displayname -- set the display name in the <TT
CLASS="PARAMETER"
><I
>to</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN490"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>void osip_to_set_displayname</CODE
>(osip_to_t *to,
char *value);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.TO-GETDISPLAYNAME"
>osip_to_get_displayname</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN500"
></A
><H2
>Name</H2
>osip_to_get_displayname -- return the display name from the <TT
CLASS="PARAMETER"
><I
>to</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN504"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>char *osip_to_get_displayname</CODE
>(osip_to_t *to);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.TO-SETURL"
>osip_to_set_url</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN513"
></A
><H2
>Name</H2
>osip_to_set_url -- set the <TT
CLASS="PARAMETER"
><I
>url</I
></TT
> in the <TT
CLASS="PARAMETER"
><I
>to</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN518"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>void osip_to_set_url</CODE
>(osip_to_t *to,
osip_uri_t *url);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.TO-GETURL"
>osip_to_get_url</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN528"
></A
><H2
>Name</H2
>osip_to_get_url -- return the <TT
CLASS="PARAMETER"
><I
>url</I
></TT
> from the <TT
CLASS="PARAMETER"
><I
>to</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN533"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>osip_uri_t *osip_to_get_url</CODE
>(osip_to_t *to);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.TO-PARAM-ADD"
>osip_to_param_add</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN542"
></A
><H2
>Name</H2
>osip_to_param_add -- add a <TT
CLASS="PARAMETER"
><I
>gen_param</I
></TT
> in the <TT
CLASS="PARAMETER"
><I
>to</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN547"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_to_param_add</CODE
>(osip_to_t *to,
char *name,
char *value);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.TO-PARAM-GET"
>osip_to_param_get</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN559"
></A
><H2
>Name</H2
>osip_to_param_get -- return the <TT
CLASS="PARAMETER"
><I
>param</I
></TT
> at index <TT
CLASS="PARAMETER"
><I
>pos</I
></TT
> from the <TT
CLASS="PARAMETER"
><I
>to</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN565"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_to_param_get</CODE
>(osip_to_t *to,
int pos,
generic_param_t **gp);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.TO-GETTAG"
>osip_to_get_tag</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN576"
></A
><H2
>Name</H2
>osip_to_get_tag -- return the value associated with the tag parameter from the <TT
CLASS="PARAMETER"
><I
>to</I
></TT
>.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN580"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>void osip_to_get_tag</CODE
>(osip_to_t *to,
generic_param_t **dest);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.TO-SETTAG"
>osip_to_set_tag</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN590"
></A
><H2
>Name</H2
>osip_to_set_tag -- set the <TT
CLASS="PARAMETER"
><I
>tag</I
></TT
> parameter int the <TT
CLASS="PARAMETER"
><I
>to</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN595"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>void osip_to_set_tag</CODE
>(osip_to_t *to,
char *tag);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.TO-PARAM-GET_BYNAME"
>osip_to_param_get_byname</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN605"
></A
><H2
>Name</H2
>osip_to_param_get_byname -- get the parameter with <TT
CLASS="PARAMETER"
><I
>pname</I
></TT
> from the <TT
CLASS="PARAMETER"
><I
>to</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN610"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_to_param_get_byname</CODE
>(osip_to_t *to,
char *pname,
generic_param_t **dest);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
></DIV
><DIV
CLASS="SECT2"
><HR><H2
CLASS="SECT2"
><A
NAME="AEN621"
>API for generic param</A
></H2
><P
>Generic parameter are components of many headers such as To, From, Contact, Route, Record-Route, and Content-Type.</P
><DIV
CLASS="EXAMPLE"
><P
><B
>Example 4-3. The To header has a list of generic_param_t</B
></P
><PRE
CLASS="PROGRAMLISTING"
> typedef struct _generic_param_t {
char *pname;
char *pvalue;
} generic_param_t;
/* to, from and contact headers are defined as below */
typedef struct _osip_to_t {
char *displayname;
osip_uri_t *url;
list_t *gen_params;
}</PRE
></DIV
><DIV
CLASS="EXAMPLE"
><P
><B
>Example 4-4. A To header with the "tag" parameter</B
></P
><PRE
CLASS="PROGRAMLISTING"
> to: "jack" <sip:atosc.org>;tag=ae56fr-dz-23</PRE
></DIV
><H1
><A
NAME="FUNCTION.GENERIC-PARAM-INIT"
>generic_param_init</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN631"
></A
><H2
>Name</H2
>generic_param_init -- Allocate and initialize the structure <TT
CLASS="PARAMETER"
><I
>gen_param</I
></TT
>.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN635"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int generic_param_init</CODE
>(generic_param_t * gen_param);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.GENERIC-PARAM-FREE"
>generic_param_free</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN645"
></A
><H2
>Name</H2
>generic_param_free -- free resources contained in the structure <TT
CLASS="PARAMETER"
><I
>gen_param</I
></TT
>.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN649"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>void generic_param_free</CODE
>(generic_param_t *gen_param);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.GENERIC-PARAM-SET"
>generic_param_set</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN658"
></A
><H2
>Name</H2
>generic_param_set -- Set <TT
CLASS="PARAMETER"
><I
>name</I
></TT
> and <TT
CLASS="PARAMETER"
><I
>value</I
></TT
> in the <TT
CLASS="PARAMETER"
><I
>gen_param</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN664"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>void generic_param_set</CODE
>(generic_param_t *gen_param,
char *pname,
char *pvalue);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.GENERIC-PARAM-GETNAME"
>generic_param_get_name</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN675"
></A
><H2
>Name</H2
>generic_param_get_name -- Get <TT
CLASS="PARAMETER"
><I
>name</I
></TT
> from the <TT
CLASS="PARAMETER"
><I
>gen_param</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN680"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>char *generic_param_get_name</CODE
>(generic_param_t *gen_param);</CODE
></P
><P
></P
></DIV
><P
>on error, return NULL.</P
></DIV
><H1
><A
NAME="FUNCTION.GENERIC-PARAM-SETNAME"
>generic_param_setname</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN690"
></A
><H2
>Name</H2
>generic_param_setname -- set <TT
CLASS="PARAMETER"
><I
>name</I
></TT
> in the <TT
CLASS="PARAMETER"
><I
>gen_param</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN695"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>void generic_param_setname</CODE
>(generic_param_t *gen_param,
char *pname);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.GENERIC-PARAM-GETVALUE"
>generic_param_get_value</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN705"
></A
><H2
>Name</H2
>generic_param_get_value -- Get <TT
CLASS="PARAMETER"
><I
>value</I
></TT
> from the <TT
CLASS="PARAMETER"
><I
>gen_param</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN710"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>char *generic_param_get_value</CODE
>(generic_param_t *gen_param);</CODE
></P
><P
></P
></DIV
><P
>on error, return NULL.</P
></DIV
><H1
><A
NAME="FUNCTION.GENERIC-PARAM-SETVALUE"
>generic_param_setvalue</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN720"
></A
><H2
>Name</H2
>generic_param_setvalue -- set <TT
CLASS="PARAMETER"
><I
>value</I
></TT
> in the <TT
CLASS="PARAMETER"
><I
>gen_param</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN725"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>void generic_param_setvalue</CODE
>(generic_param_t *gen_param
char *pvalue);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.GENERIC-PARAM-ADD"
>generic_param_add</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN735"
></A
><H2
>Name</H2
>generic_param_add -- Allocate a new generic param with <TT
CLASS="PARAMETER"
><I
>name</I
></TT
> and <TT
CLASS="PARAMETER"
><I
>value</I
></TT
> and add the element in the list <TT
CLASS="PARAMETER"
><I
>gen_params</I
></TT
>.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN741"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int generic_param_add</CODE
>(list_t *gen_params
char *name
char *value);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.GENERIC-PARAM-GET_BYNAME"
>generic_param_get_byname</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN753"
></A
><H2
>Name</H2
>generic_param_get_byname -- find element containing <TT
CLASS="PARAMETER"
><I
>name</I
></TT
> from the list <TT
CLASS="PARAMETER"
><I
>gen_params</I
></TT
> and return it in <TT
CLASS="PARAMETER"
><I
>gen_param</I
></TT
> .</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN759"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int generic_param_get_byname</CODE
>(list_t *gen_params
char *name
generic_param_t **gen_param);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.GENERIC-PARAM-FREELIST"
>generic_param_freelist</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN771"
></A
><H2
>Name</H2
>generic_param_freelist -- free resources contained in the list <TT
CLASS="PARAMETER"
><I
>gen_params</I
></TT
> elements.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN775"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>void generic_param_freelist</CODE
>(list_t *gen_params);</CODE
></P
><P
></P
></DIV
></DIV
></DIV
></DIV
><DIV
CLASS="SECT1"
><HR><H1
CLASS="SECT1"
><A
NAME="AEN783"
>SIP messages</A
></H1
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="AEN785"
>definition and purpose</A
></H2
><P
>The messages are based at this level on three parts. The first line is either the request-uri for requests or the status code for responses. This first line corresponds to the first attribute of oSIP: startline_t. The second valuable part of a SIP message is a list of headers. The last attribute (list of body) is a possible list of attachments found in the message.</P
><P
>Currently this structure <SPAN
CLASS="TYPE"
>sip_t</SPAN
> is not complete. All other header than "From", "To", "Call-Id", "CSeq", "via", "contact", "route", "record-route", mime-version", "content-type" and "content-length" are stored as string in a list of generic headers. This structure will be completed while improving the parser capabilities.</P
><DIV
CLASS="EXAMPLE"
><P
><B
>Example 4-5. type definition for <SPAN
CLASS="TYPE"
>sip_t</SPAN
>.</B
></P
><PRE
CLASS="PROGRAMLISTING"
> typedef struct osip_message
{
char *sip_version; /**< SIP version (SIP request only) */
osip_uri_t *req_uri; /**< Request-Uri (SIP request only) */
char *sip_method; /**< METHOD (SIP request only) */
int status_code; /**< Status Code (SIP answer only) */
char *reason_phrase; /**< Reason Phrase (SIP answer only) */
osip_list_t *accepts; /**< Accept headers */
osip_list_t *accept_encodings; /**< Accept-Encoding headers */
osip_list_t *accept_languages; /**< Accept-Language headers */
osip_list_t *alert_infos; /**< Alert-Info headers */
osip_list_t *allows; /**< Allows headers */
osip_list_t *authentication_infos;/**< authentication_info headers */
osip_list_t *authorizations; /**< Authorizations headers */
osip_call_id_t *call_id; /**< Call-ID header */
osip_list_t *call_infos; /**< Call-Infos header */
osip_list_t *contacts; /**< Contacts headers */
osip_list_t *content_dispositions;/**< Content-Dispositions headers */
osip_list_t *content_encodings; /**< Content-Encodings headers */
osip_content_length_t *content_length; /**< Content-Length header */
osip_content_type_t *content_type; /**< Content-Type header */
osip_cseq_t *cseq; /**< CSeq header */
osip_list_t *error_infos; /**< Error-Info headers */
osip_from_t *from; /**< From header */
osip_mime_version_t *mime_version;/**< Mime-Version header */
osip_list_t *proxy_authenticates; /**< Proxy-Authenticate headers */
osip_list_t *proxy_authentication_infos; /**< P-Authentication-Info headers */
osip_list_t *proxy_authorizations;/**< Proxy-authorization headers */
osip_list_t *record_routes; /**< Record-Route headers */
osip_list_t *routes; /**< Route headers */
osip_to_t *to; /**< To header */
osip_list_t *vias; /**< Vias headers */
osip_list_t *www_authenticates; /**< WWW-Authenticate headers */
osip_list_t *headers; /**< Other headers */
osip_list_t *bodies; /**< List of attachements */
/*
1: structure and buffer "message" are identical.
2: buffer "message" is not up to date with the structure info (call osip_message_to_str to update it).
*/
int message_property; /**@internal */
char *message; /**@internal */
size_t message_length; /**@internal */
void *application_data; /**can be used by upper layer*/
} osip_message_t;</PRE
></DIV
></DIV
><DIV
CLASS="SECT2"
><HR><H2
CLASS="SECT2"
><A
NAME="AEN794"
>API for SIP message</A
></H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><PRE
CLASS="FUNCSYNOPSISINFO"
>#include <osipparser2/osip_parser.h></PRE
><P
></P
></DIV
><H1
><A
NAME="FUNCTION.MSG-INIT"
>osip_message_init</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN799"
></A
><H2
>Name</H2
>osip_message_init -- Allocate and initialize the structure <TT
CLASS="PARAMETER"
><I
>msg</I
></TT
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN803"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_message_init</CODE
>(osip_message_t **msg);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.MSG-FREE"
>osip_message_free</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN813"
></A
><H2
>Name</H2
>osip_message_free -- free resources contained in <TT
CLASS="PARAMETER"
><I
>msg</I
></TT
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN817"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>void osip_message_free</CODE
>(osip_message_t **msg);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.MSG-PARSE"
>osip_message_parse</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN826"
></A
><H2
>Name</H2
>osip_message_parse -- Parse <TT
CLASS="PARAMETER"
><I
>field_value</I
></TT
> and store results in <TT
CLASS="PARAMETER"
><I
>msg</I
></TT
>.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN831"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_message_parse</CODE
>(osip_message_t *msg,
char *field_value);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.MSG-2CHAR"
>osip_message_to_str</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN842"
></A
><H2
>Name</H2
>osip_message_to_str -- Allocate a string in <TT
CLASS="PARAMETER"
><I
>field_value</I
></TT
> with the information stored in the <TT
CLASS="PARAMETER"
><I
>msg</I
></TT
> parameter.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN847"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_message_to_str</CODE
>(osip_message_t *msg,
char **field_value);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.MSG-CLONE"
>osip_message_clone</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN858"
></A
><H2
>Name</H2
>osip_message_clone -- duplicate the <TT
CLASS="PARAMETER"
><I
>msg</I
></TT
> element in a new dest element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN862"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_message_clone</CODE
>(osip_message_t *msg,
osip_message_t **dest);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.MSG-SETHEADER"
>osip_message_set_header</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN873"
></A
><H2
>Name</H2
>osip_message_set_header -- Parse <TT
CLASS="PARAMETER"
><I
>hvalue</I
></TT
>, allocate and add a new header in <TT
CLASS="PARAMETER"
><I
>sip</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN878"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_message_set_header</CODE
>(osip_message_t *sip,
char *hname,
char *hvalue);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.MSG-GETHEADER"
>osip_message_get_header</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN890"
></A
><H2
>Name</H2
>osip_message_get_header -- set in <TT
CLASS="PARAMETER"
><I
>dest</I
></TT
> the header at index <TT
CLASS="PARAMETER"
><I
>pos</I
></TT
> from the <TT
CLASS="PARAMETER"
><I
>sip</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN896"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_message_get_header</CODE
>(osip_message_t *sip,
int pos,
header_t **header);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.MSG-HEADER-GET_BYNAME"
>osip_message_header_get_byname</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN908"
></A
><H2
>Name</H2
>osip_message_header_get_byname -- find the first header (after index <TT
CLASS="PARAMETER"
><I
>pos</I
></TT
>) with <TT
CLASS="PARAMETER"
><I
>hname</I
></TT
> from the list of header in the <TT
CLASS="PARAMETER"
><I
>sip</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN914"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_message_header_get_byname</CODE
>(char *hname,
osip_message_t *sip,
int pos,
header_t **dest);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.MSG-SETCALL-ID"
>osip_message_set_call_id</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN927"
></A
><H2
>Name</H2
>osip_message_set_call_id -- Parse <TT
CLASS="PARAMETER"
><I
>hvalue</I
></TT
>, allocate and set the call_id attribute of the <TT
CLASS="PARAMETER"
><I
>sip</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN932"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_message_set_call_id</CODE
>(osip_message_t *sip,
char *hvalue);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.MSG-GETCALL-ID"
>osip_message_get_call_id</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN943"
></A
><H2
>Name</H2
>osip_message_get_call_id -- return the call_id attribute from the <TT
CLASS="PARAMETER"
><I
>sip</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN947"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>osip_call_id_t *osip_message_get_call_id</CODE
>(osip_message_t *sip);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.MSG-SETCSEQ"
>osip_message_set_cseq</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN957"
></A
><H2
>Name</H2
>osip_message_set_cseq -- Parse <TT
CLASS="PARAMETER"
><I
>hvalue</I
></TT
>, allocate and set the cseq attribute of the <TT
CLASS="PARAMETER"
><I
>sip</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN962"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_message_set_cseq</CODE
>(osip_message_t *sip,
char *hvalue);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.MSG-GETCSEQ"
>osip_message_get_cseq</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN973"
></A
><H2
>Name</H2
>osip_message_get_cseq -- return the cseq attribute from the <TT
CLASS="PARAMETER"
><I
>sip</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN977"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>osip_cseq_t *osip_message_get_cseq</CODE
>(osip_message_t *sip);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.MSG-SETCONTACT"
>osip_message_set_contact</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN987"
></A
><H2
>Name</H2
>osip_message_set_contact -- Parse <TT
CLASS="PARAMETER"
><I
>hvalue</I
></TT
>, allocate and add a new contact attribute in the <TT
CLASS="PARAMETER"
><I
>sip</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN992"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_message_set_contact</CODE
>(osip_message_t *sip,
char *hvalue);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.MSG-GETCONTACT"
>osip_message_get_contact</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1003"
></A
><H2
>Name</H2
>osip_message_get_contact -- set in <TT
CLASS="PARAMETER"
><I
>dest</I
></TT
> the contact at index <TT
CLASS="PARAMETER"
><I
>pos</I
></TT
> from the <TT
CLASS="PARAMETER"
><I
>sip</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1009"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_message_get_contact</CODE
>(osip_message_t *sip,
int pos,
contact_t **contact);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.MSG-SETFROM"
>osip_message_set_from</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1021"
></A
><H2
>Name</H2
>osip_message_set_from -- Parse <TT
CLASS="PARAMETER"
><I
>hvalue</I
></TT
>, allocate and set the from attribute of the <TT
CLASS="PARAMETER"
><I
>sip</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1026"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_message_set_from</CODE
>(osip_message_t *sip,
char *hvalue);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.MSG-GETFROM"
>osip_message_get_from</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1037"
></A
><H2
>Name</H2
>osip_message_get_from -- return the from attribute from the <TT
CLASS="PARAMETER"
><I
>sip</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1041"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>osip_from_t *osip_message_get_from</CODE
>(osip_message_t *sip);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.MSG-SETTO"
>osip_message_set_to</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1051"
></A
><H2
>Name</H2
>osip_message_set_to -- Parse <TT
CLASS="PARAMETER"
><I
>hvalue</I
></TT
>, allocate and set the to attribute of the <TT
CLASS="PARAMETER"
><I
>sip</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1056"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_message_set_to</CODE
>(osip_message_t *sip,
char *hvalue);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.MSG-GETTO"
>osip_message_get_to</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1067"
></A
><H2
>Name</H2
>osip_message_get_to -- return the <TT
CLASS="PARAMETER"
><I
>to</I
></TT
> attribute from the <TT
CLASS="PARAMETER"
><I
>sip</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1072"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>osip_to_t *osip_message_get_to</CODE
>(osip_message_t *sip);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.MSG-SETVIA"
>osip_message_set_via</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1082"
></A
><H2
>Name</H2
>osip_message_set_via -- Parse <TT
CLASS="PARAMETER"
><I
>hvalue</I
></TT
>, allocate and add a new via in <TT
CLASS="PARAMETER"
><I
>sip</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1087"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_message_set_via</CODE
>(osip_message_t *sip,
char *hvalue);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.MSG-GETVIA"
>osip_message_get_via</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1098"
></A
><H2
>Name</H2
>osip_message_get_via -- set in <TT
CLASS="PARAMETER"
><I
>dest</I
></TT
> the via at index <TT
CLASS="PARAMETER"
><I
>pos</I
></TT
> from the <TT
CLASS="PARAMETER"
><I
>sip</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1104"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_message_get_via</CODE
>(osip_message_t *sip,
int pos,
osip_via_t **via);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.MSG-SETRECORD-ROUTE"
>osip_message_set_record_route</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1116"
></A
><H2
>Name</H2
>osip_message_set_record_route -- Parse <TT
CLASS="PARAMETER"
><I
>hvalue</I
></TT
>, allocate and add a new record_route in the <TT
CLASS="PARAMETER"
><I
>sip</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1121"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_message_set_record_route</CODE
>(osip_message_t *sip,
char *hvalue);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.MSG-GETRECORD-ROUTE"
>osip_message_get_record_route</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1132"
></A
><H2
>Name</H2
>osip_message_get_record_route -- set in <TT
CLASS="PARAMETER"
><I
>dest</I
></TT
> the record_route at index <TT
CLASS="PARAMETER"
><I
>pos</I
></TT
> from the <TT
CLASS="PARAMETER"
><I
>sip</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1138"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_message_get_record_route</CODE
>(osip_message_t *sip,
int pos,
record_route_t **record_route);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.MSG-SETROUTE"
>osip_message_set_route</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1150"
></A
><H2
>Name</H2
>osip_message_set_route -- Parse <TT
CLASS="PARAMETER"
><I
>hvalue</I
></TT
>, allocate and add a new route in the <TT
CLASS="PARAMETER"
><I
>sip</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1155"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_message_set_route</CODE
>(osip_message_t *sip,
char *hvalue);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.MSG-GETROUTE"
>osip_message_get_route</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1166"
></A
><H2
>Name</H2
>osip_message_get_route -- set in <TT
CLASS="PARAMETER"
><I
>dest</I
></TT
> the route at index <TT
CLASS="PARAMETER"
><I
>pos</I
></TT
> from the <TT
CLASS="PARAMETER"
><I
>sip</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1172"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_message_get_route</CODE
>(osip_message_t *sip,
int pos,
route_t **route);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.MSG-SETCONTENT-LENGTH"
>osip_message_set_content_length</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1184"
></A
><H2
>Name</H2
>osip_message_set_content_length -- Parse <TT
CLASS="PARAMETER"
><I
>hvalue</I
></TT
>, allocate and set the content_length attribute of the <TT
CLASS="PARAMETER"
><I
>sip</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1189"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_message_set_content_length</CODE
>(osip_message_t *sip,
char *hvalue);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.MSG-GETCONTENT-LENGTH"
>osip_message_get_content_length</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1200"
></A
><H2
>Name</H2
>osip_message_get_content_length -- return the content_length attribute from the <TT
CLASS="PARAMETER"
><I
>sip</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1204"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>content_length_t * osip_message_get_content_length</CODE
>(osip_message_t *sip);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.MSG-SETCONTENT-TYPE"
>osip_message_set_content_type</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1213"
></A
><H2
>Name</H2
>osip_message_set_content_type -- Parse <TT
CLASS="PARAMETER"
><I
>hvalue</I
></TT
>, allocate and set the content_type attribute of the <TT
CLASS="PARAMETER"
><I
>sip</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1218"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_message_set_content_type</CODE
>(osip_message_t *sip,
char *hvalue);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.MSG-GETCONTENT-TYPE"
>osip_message_get_content_type</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1229"
></A
><H2
>Name</H2
>osip_message_get_content_type -- return the content_type attribute from the <TT
CLASS="PARAMETER"
><I
>sip</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1233"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>content_type_t * osip_message_get_content_type</CODE
>(osip_message_t *sip);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.MSG-SETMIME-VERSION"
>osip_message_set_mime_version</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1242"
></A
><H2
>Name</H2
>osip_message_set_mime_version -- Parse <TT
CLASS="PARAMETER"
><I
>hvalue</I
></TT
>, allocate and set the mime_version attribute of the <TT
CLASS="PARAMETER"
><I
>sip</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1247"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_message_set_mime_version</CODE
>(osip_message_t *sip,
char *hvalue);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.MSG-GETMIME-VERSION"
>osip_message_get_mime_version</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1258"
></A
><H2
>Name</H2
>osip_message_get_mime_version -- return the mime_version attribute from the <TT
CLASS="PARAMETER"
><I
>sip</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1262"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>mime_version_t * osip_message_get_mime_version</CODE
>(osip_message_t *sip);</CODE
></P
><P
></P
></DIV
></DIV
></DIV
><DIV
CLASS="SECT2"
><HR><H2
CLASS="SECT2"
><A
NAME="AEN1270"
>MACROs</A
></H2
><P
>Other helpful MACROs are defined. They are used to test characteristics of messages such as the type of a message, the method of a request and the status code of a response.</P
><DIV
CLASS="EXAMPLE"
><P
><B
>Example 4-6. List of MACROs</B
></P
><PRE
CLASS="PROGRAMLISTING"
>/* a few MACROS to ease readability of code */
MSG_IS_RESPONSE(resp)
MSG_IS_REQUEST(req)
MSG_IS_INVITE(msg)
MSG_IS_ACK(msg)
MSG_IS_BYE(msg)
MSG_IS_REGISTER(msg)
MSG_IS_CANCEL(msg)
MSG_IS_OPTIONS(msg)
MSG_IS_INFO(msg)
MSG_IS_PRACK(msg)
MSG_IS_STATUS_1XX(msg)
MSG_IS_STATUS_2XX(msg)
MSG_IS_STATUS_3XX(msg)
MSG_IS_STATUS_4XX(msg)
MSG_IS_STATUS_5XX(msg)
MSG_IS_STATUS_6XX(msg)
MSG_TEST_CODE(resp, code)
MSG_IS_RESPONSEFOR(resp,requestname)</PRE
></DIV
></DIV
></DIV
><DIV
CLASS="SECT1"
><HR><H1
CLASS="SECT1"
><A
NAME="AEN1276"
>The parser HOW-TO.</A
></H1
><P
>Building a message is not a complex task and does not require to be a C expert. Nevertheless, it requires you to be a SIP expert! The document describing SIP (rfc3261.txt) provides all you need to build correct requests and response. You will have to know which header MUST be included ("To", "From", "Call-ID", "Cseq" are the most common...), which header MUST NOT be included, and which header MAY appear in the message. </P
><DIV
CLASS="SECT2"
><HR><H2
CLASS="SECT2"
><A
NAME="AEN1279"
>Initialise the parser</A
></H2
><P
>The oSIP parser need to be initialised at run time. This is done by first calling the following method before using the oSIP parser. (This method MUST only be called once.)</P
><P
>int <FONT
COLOR="RED"
>parser_init()</FONT
>;</P
></DIV
><DIV
CLASS="SECT2"
><HR><H2
CLASS="SECT2"
><A
NAME="AEN1284"
>Allocate a structure</A
></H2
><P
>oSIP has a standard approach to request allocation of structures. For each SIP related one, (like <SPAN
CLASS="TYPE"
>osip_message_t</SPAN
>, or <SPAN
CLASS="TYPE"
>osip_from_t</SPAN
>) a method "osip_xxxx_init()" exists and MUST be used to request allocation. It must be used along with "osip_xxxx_free()".</P
><DIV
CLASS="EXAMPLE"
><P
><B
>Example 4-7. allocation of osip_message_t and osip_uri_t.</B
></P
><PRE
CLASS="PROGRAMLISTING"
> osip_message_t *msg;
osip_message_init(&msg);
osip_message_free(msg);
osip_uri_t *url;
osip_uri_init(&url);
osip_uri_free(url);</PRE
></DIV
></DIV
><DIV
CLASS="SECT2"
><HR><H2
CLASS="SECT2"
><A
NAME="AEN1292"
>create a URL and a Request-URI.</A
></H2
><P
>The following code is used to build a request line for an INVITE message. This line will be: "INVITE sip:jack@atosc.org SIP/2.0".</P
><PRE
CLASS="PROGRAMLISTING"
> /* make a request line. */
osip_uri_t *uri;
osip_uri_init(&uri);
osip_uri_set_scheme(url,osip_strdup("sip"));
osip_uri_set_username(url,osip_strdup("jack"));
osip_uri_set_host(url,osip_strdup("atosc.org"));
osip_message_set_method(msg,osip_strdup("INVITE"));
osip_message_set_uri(msg,uri);
osip_message_set_version(msg,osip_strdup("2.0"));</PRE
></DIV
><DIV
CLASS="SECT2"
><HR><H2
CLASS="SECT2"
><A
NAME="AEN1296"
>Add headers in a message</A
></H2
><P
>This example shows the code required to allocate headers and add each of them in the <SPAN
CLASS="TYPE"
>sip_t</SPAN
> structure. You should take a look at the RFC when building messages.</P
><P
>For INVITE requests,the following headers are mandatory:</P
><P
></P
><TABLE
BORDER="0"
><TR
><TD
>Via</TD
></TR
><TR
><TD
>CSeq</TD
></TR
><TR
><TD
>Call-Id</TD
></TR
><TR
><TD
>To</TD
></TR
><TR
><TD
>From</TD
></TR
><TR
><TD
>Contact</TD
></TR
><TR
><TD
>Content-length (mandatory for TCP, recommended for ALL)</TD
></TR
><TR
><TD
>Content-Type (if a body is attached)</TD
></TR
></TABLE
><P
></P
><DIV
CLASS="EXAMPLE"
><P
><B
>Example 4-8. Add header</B
></P
><PRE
CLASS="PROGRAMLISTING"
> {
osip_uri_t *url;
osip_to_t *to;
osip_uri_init(&url);
osip_uri_set_username(url,osip_strdup("jack"));
osip_uri_set_host(url,osip_strdup("atosc.org"));
osip_to_init(&to);
osip_to_set_url(to,url);
osip_to_set_displayname(to,osip_strdup("Aymeric MOIZARD"));
osip_message_set_to(msg, to);
}
/* the same API is available for the osip_from_t structure */
{
osip_from_t *from;
/* allocate a osip_uri_t */
osip_uri_init(&url);
osip_uri_set_username(url,osip_strdup("cha"));
osip_uri_set_host(url,osip_strdup("anywhere.org"));
/* allocate a osip_from_t */
osip_from_init(&from);
osip_from_set_url(from,url);
osip_from_set_displayname(from,osip_strdup("My love"));
osip_from_set_tag(from,osip_strdup("a48a"));
osip_message_set_from(msg, from);
}
{
osip_via_t *via;
osip_via_init(&via);
osip_via_set_version(via,osip_strdup("2.0"));
osip_via_set_protocol(via,osip_strdup("UDP"));
osip_via_set_host(via,osip_strdup("137.137.137.137"));
osip_via_set_branch(via,osip_strdup("branch"),osip_strdup("z9hG4bK776asdhds.1"));
osip_message_set_via(msg, via);
}
{
osip_cseq_t *cseq;
cseq_init(&cseq);
...
osip_message_set_cseq(msg, cseq);
}
{
osip_call_id_t *callid;
osip_call_id_init(&callid);
osip_callid_set_number(callid,osip_strdup("f81d4"));
osip_callid_set_host(callid,osip_strdup("foo.atosc.org"));
osip_message_set_callid(msg, callid);
}
/* this API can also be used, but it is much more time consuming! */
osip_message_set_contact(msg,"sip:jacK@office.atosc.org");
/* Let's add some headers */
osip_message_set_header(msg,osip_strdup("SuBjecT"),osip_strdup("Need support for oSIP!"));
/* add a body */
osip_message_set_body(msg,"v=0\r\no=user1 53655765 2353687637 IN IP4 128.3.4.5\r\ns=Mbone Audio\r\ni=Discussion of Mbone Engineering Issues\r\ne=mbone@somewhere.com\r\nc=IN IP4 128.3.4.5\r\nt=0 0\r\nm=audio 3456 RTP/AVP 0\r\na=rtpmap:0 PCMU/8000\r\n");</PRE
></DIV
></DIV
><DIV
CLASS="SECT2"
><HR><H2
CLASS="SECT2"
><A
NAME="AEN1313"
>make a string from a structure</A
></H2
><P
>For osip_message_t like for the structure used for the headers (osip_to_t, osip_from_t, osip_call_id_t...), a method exist to retrieve printed version of the element.</P
><DIV
CLASS="EXAMPLE"
><P
><B
>Example 4-9. Method xxxx_to_str</B
></P
><PRE
CLASS="PROGRAMLISTING"
> char *astring = NULL;
int length;
i = osip_message_to_str(msg, &astring, &length);
if (i!=0)
return -1;
osip_free(astring);</PRE
></DIV
></DIV
><DIV
CLASS="SECT2"
><HR><H2
CLASS="SECT2"
><A
NAME="AEN1319"
>free resource in a structure</A
></H2
><DIV
CLASS="EXAMPLE"
><P
><B
>Example 4-10. Method xxxx_free</B
></P
><P
>This is how you must free all memory.</P
><PRE
CLASS="PROGRAMLISTING"
> osip_messagefree(msg);</PRE
></DIV
><P
>The parser may sometimes be too much tolerant. It will accept silently some of your mistakes. As an example, the parser should accept a display name (for a "To" header) with a comma inside. The developer MUST enclose the string between quotes. To keep the application interoperable, please always keep an eye on the rfc and control every characters you put in SIP message.</P
></DIV
></DIV
><DIV
CLASS="SECT1"
><HR><H1
CLASS="SECT1"
><A
NAME="AEN1326"
>How to improve the parser performance</A
></H1
><P
>To improve stack performance, you can configure the parser at link time by choosing which headers must ALWAYS be completely decoded. (It could also be possible at run time with minimal work!). You may find this useful in terms of performance when implementing proxies.</P
></DIV
></DIV
><DIV
CLASS="CHAPTER"
><HR><H1
><A
NAME="AEN1329"
>Chapter 5. The oSIP state machines</A
></H1
><DIV
CLASS="SECT1"
><H1
CLASS="SECT1"
><A
NAME="AEN1331"
>files</A
></H1
><P
><TT
CLASS="VARNAME"
>./libosip-x.x.x/src/osip2 </TT
>is the source directory for the SIP finite state machines.</P
><P
><TT
CLASS="VARNAME"
>-losip2 </TT
>is the library containing the SIP finite state machines</P
><P
><TT
CLASS="VARNAME"
>#include <osip2/osip.h> </TT
>is the include file describing the external SIP parser API</P
></DIV
><DIV
CLASS="SECT1"
><HR><H1
CLASS="SECT1"
><A
NAME="AEN1339"
>Transaction and events</A
></H1
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="AEN1341"
>Definition and purpose of transaction</A
></H2
><P
>Transactions are used to store the context of one "SIP transactions" as defined in the rfc3261. oSIP uses the <SPAN
CLASS="TYPE"
>osip_transaction_t</SPAN
> internally so you probably don't need to understand each attribute.</P
><DIV
CLASS="EXAMPLE"
><P
><B
>Example 5-1. oSIP model for transactions</B
></P
><P
>Managing a transaction consists in building modules that can send events to control the transaction </P
><PRE
CLASS="PROGRAMLISTING"
> User module
+------------+
| |
+------------+
| msg to send
+--------------------+ Transaction
Timer module | contexts
+------------+ |
| | | +----------+
+------------+ +------->| TRANSAC. |
| timeout evt | | 1 |
+--------------------+ +----------+
Transport module |
+------------+ | +----------+
| | +------->| TRANSAC. |
+------------+ | | 2 |
| incoming msg | +----------+
+--------------------+</PRE
></DIV
><P
>The attribute <TT
CLASS="VARNAME"
>your_instance</TT
> is not used by oSIP. You can use it to store a pointer on your own context.</P
><P
>You can use the <TT
CLASS="VARNAME"
>transactionid</TT
> as a unique id for the transaction.</P
><P
><TT
CLASS="VARNAME"
>transactionff</TT
> is a FIFO used to receive all events (osip_event_t) which concern this transaction.</P
><DIV
CLASS="EXAMPLE"
><P
><B
>Example 5-2. type definition of <SPAN
CLASS="TYPE"
>osip_transaction_t</SPAN
>.</B
></P
><PRE
CLASS="PROGRAMLISTING"
>typedef struct osip__transaction {
void *your_instance; /**< User Defined Pointer. */
int transactionid; /**< Internal Transaction Identifier. */
osip_fifo_t *transactionff; /**< events must be added in this fifo */
osip_via_t *topvia; /**< CALL-LEG definition (Top Via) */
osip_from_t *from; /**< CALL-LEG definition (From) */
osip_to_t *to; /**< CALL-LEG definition (To) */
osip_call_id_t *callid; /**< CALL-LEG definition (Call-ID) */
osip_cseq_t *cseq; /**< CALL-LEG definition (CSeq) */
osip_message_t *orig_request; /**< Initial request */
osip_message_t *last_response; /**< Last response */
osip_message_t *ack; /**< ack request sent */
state_t state; /**< Current state of the transaction */
time_t birth_time; /**< birth date of transaction */
time_t completed_time; /**< end date of transaction */
int in_socket; /**< Optional socket for incoming message */
int out_socket; /**< Optional place for outgoing message */
void *config; /**@internal transaction is managed by osip_t */
osip_fsm_type_t ctx_type; /**< Type of the transaction */
osip_ict_t *ict_context; /**@internal */
osip_ist_t *ist_context; /**@internal */
osip_nict_t *nict_context; /**@internal */
osip_nist_t *nist_context; /**@internal */
} osip_transaction_t;</PRE
></DIV
></DIV
><DIV
CLASS="SECT2"
><HR><H2
CLASS="SECT2"
><A
NAME="AEN1361"
>Definition and purpose of osip_event</A
></H2
><P
>osip_events objects are used to control the context of one "SIP transaction" element. There is 3 types of SIP events for the finite state machines:</P
><P
></P
><TABLE
BORDER="0"
><TR
><TD
>incoming SIP messages. (requests and responses)</TD
></TR
><TR
><TD
>outgoing SIP messages. (requests and responses)</TD
></TR
><TR
><TD
>timers events. (retransmissions and context removal)</TD
></TR
></TABLE
><P
></P
><P
>The attribute <TT
CLASS="VARNAME"
>type</TT
> always contains the type of the event.</P
><P
><TT
CLASS="VARNAME"
>transactionid</TT
> is now for internal use.</P
><P
>When the event is a SIP message, <TT
CLASS="VARNAME"
>sip</TT
> is the parsed message.</P
><DIV
CLASS="EXAMPLE"
><P
><B
>Example 5-3. type definition of <SPAN
CLASS="TYPE"
>osip_event_t</SPAN
>.</B
></P
><PRE
CLASS="PROGRAMLISTING"
>typedef struct osip_event {
type_t type;
int transactionid;
osip_message_t *sip;
} osip_event_t;</PRE
></DIV
></DIV
><DIV
CLASS="SECT2"
><HR><H2
CLASS="SECT2"
><A
NAME="AEN1378"
>API</A
></H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><PRE
CLASS="FUNCSYNOPSISINFO"
>#include <osip2/osip.h></PRE
><P
></P
></DIV
><H1
><A
NAME="FUNCTION.OSIP-INIT"
>osip_init</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1383"
></A
><H2
>Name</H2
>osip_init -- Allocate and initialize the <TT
CLASS="PARAMETER"
><I
>osip</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1387"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_init</CODE
>(osip_t **osip);</CODE
></P
><P
></P
></DIV
><P
>on success, return 0.</P
></DIV
><H1
><A
NAME="FUNCTION.OSIP-FREE"
>osip_free</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1397"
></A
><H2
>Name</H2
>osip_free -- free resources contained in <TT
CLASS="PARAMETER"
><I
>osip</I
></TT
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1401"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>void osip_free</CODE
>(osip_t *osip);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.OSIP-EXECUTE"
>osip_execute</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1424"
></A
><H2
>Name</H2
>osip_execute -- consumes all SIP events from the list of transactions contained in <TT
CLASS="PARAMETER"
><I
>osip</I
>.</TT
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1428"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_execute</CODE
>(osip_t *osip);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.OSIP-FIND-TRANSACTION-AND-ADD-EVENT"
>osip_find_transaction_and_add_event</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1437"
></A
><H2
>Name</H2
>osip_find_transaction_and_add_event -- distribute a SIP event (message) in the right FIFO of <TT
CLASS="PARAMETER"
><I
>osip</I
></TT
> This method has to be used for incoming message.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1441"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>osip_transaction_t *osip_find_transaction_and_add_event</CODE
>(osip_t *osip,
osip_event_t *se);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.OSIP-PARSE"
>osip_parse</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1451"
></A
><H2
>Name</H2
>osip_parse -- parse <TT
CLASS="PARAMETER"
><I
>buf</I
></TT
> and create an SIP incoming message event.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1455"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>osip_event_t *osip_parse</CODE
>(char *buf,
size_t length);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.OSIP-NEW-EVENT"
>osip_new_event</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1464"
></A
><H2
>Name</H2
>osip_new_event -- create a new SIP event with attributes <SPAN
CLASS="TYPE"
>type</SPAN
> and <SPAN
CLASS="TYPE"
>transactionid</SPAN
>. (This method is used by the timer module)</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1469"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>osip_event_t *osip_new_event</CODE
>(type_t type
int transactionid);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.OSIP-NEW-INCOMING-EVENT"
>osip_new_incoming_event</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1479"
></A
><H2
>Name</H2
>osip_new_incoming_event -- create a new SIP event for an incoming SIP message.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1482"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>osip_event_t *osip_new_incoming_event</CODE
>(osip_message_t *sip);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.OSIP-NEW-OUTGOING-EVENT"
>osip_new_outgoing_event</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1491"
></A
><H2
>Name</H2
>osip_new_outgoing_event -- create a new SIP event for an outgoing SIP message.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1494"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>osip_event_t *osip_new_outgoing_event</CODE
>(osip_message_t *sip);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.TRANSACTION-INIT"
>osip_transaction_init</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1557"
></A
><H2
>Name</H2
>osip_transaction_init -- Allocate and initialize the <TT
CLASS="PARAMETER"
><I
>transaction</I
></TT
> element.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1561"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_transaction_init</CODE
>(osip_transaction_t **transaction);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.TRANSACTION-FREE"
>osip_transaction_free</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1570"
></A
><H2
>Name</H2
>osip_transaction_free -- free resources contained in <TT
CLASS="PARAMETER"
><I
>transaction</I
></TT
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1574"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>void osip_transaction_free</CODE
>(osip_transaction_t *transaction);</CODE
></P
><P
></P
></DIV
></DIV
><H1
><A
NAME="FUNCTION.TRANSACTION-EXECUTE"
>osip_transaction_execute</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN1583"
></A
><H2
>Name</H2
>osip_transaction_execute -- consume osip_event in the context of <TT
CLASS="PARAMETER"
><I
>transaction</I
></TT
>.</DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN1587"
></A
><H2
>Description</H2
><DIV
CLASS="FUNCSYNOPSIS"
><P
></P
><P
><CODE
><CODE
CLASS="FUNCDEF"
>int osip_transaction_execute</CODE
>(osip_transaction_t *transaction);</CODE
></P
><P
></P
></DIV
></DIV
></DIV
><DIV
CLASS="SECT2"
><HR><H2
CLASS="SECT2"
><A
NAME="AEN1595"
>The callbacks.</A
></H2
><P
>oSIP uses a set of callbacks to announce the evolution of SIP transactions. For example, when receiving an INVITE request, the method registered by "osip_setcb_rcvinvite(...)" will be called by the stack and used by the developer to create a provisional response and start actions to build a final one.</P
><P
>The following methods allow you to register, on initialization of the osip stack, the methods that will be used to handle transactions. Some of those methods are mandatory (announcements of requests, and final responses) and some are optional (announcements of provisional responses and retransmissions).</P
><PRE
CLASS="PROGRAMLISTING"
>
typedef void (*osip_message_cb_t) (int type, osip_transaction_t *,
osip_message_t *);
OSIP_ICT_INVITE_SENT = 0, /**< INVITE MESSAGE SENT */
OSIP_ICT_INVITE_SENT_AGAIN, /**< INVITE MESSAGE RETRANSMITTED */
OSIP_ICT_ACK_SENT, /**< ACK MESSAGE SENT */
OSIP_ICT_ACK_SENT_AGAIN, /**< ACK MESSAGE RETRANSMITTED */
OSIP_ICT_STATUS_1XX_RECEIVED, /**< 1XX FOR INVITE RECEIVED */
OSIP_ICT_STATUS_2XX_RECEIVED, /**< 2XX FOR INVITE RECEIVED */
OSIP_ICT_STATUS_2XX_RECEIVED_AGAIN, /**< 2XX FOR INVITE RECEIVED AGAIN */
OSIP_ICT_STATUS_3XX_RECEIVED, /**< 3XX FOR INVITE RECEIVED */
OSIP_ICT_STATUS_4XX_RECEIVED, /**< 4XX FOR INVITE RECEIVED */
OSIP_ICT_STATUS_5XX_RECEIVED, /**< 5XX FOR INVITE RECEIVED */
OSIP_ICT_STATUS_6XX_RECEIVED, /**< 6XX FOR INVITE RECEIVED */
OSIP_ICT_STATUS_3456XX_RECEIVED_AGAIN, /**< RESPONSE RECEIVED AGAIN */
OSIP_IST_INVITE_RECEIVED, /**< INVITE MESSAGE RECEIVED */
OSIP_IST_INVITE_RECEIVED_AGAIN, /**< INVITE MESSAGE RECEIVED AGAN */
OSIP_IST_ACK_RECEIVED, /**< ACK MESSAGE RECEIVED */
OSIP_IST_ACK_RECEIVED_AGAIN, /**< ACK MESSAGE RECEIVED AGAIN */
OSIP_IST_STATUS_1XX_SENT, /**< 1XX FOR INVITE SENT */
OSIP_IST_STATUS_2XX_SENT, /**< 2XX FOR INVITE SENT */
OSIP_IST_STATUS_2XX_SENT_AGAIN, /**< 2XX FOR INVITE RETRANSMITTED */
OSIP_IST_STATUS_3XX_SENT, /**< 3XX FOR INVITE SENT */
OSIP_IST_STATUS_4XX_SENT, /**< 4XX FOR INVITE SENT */
OSIP_IST_STATUS_5XX_SENT, /**< 5XX FOR INVITE SENT */
OSIP_IST_STATUS_6XX_SENT, /**< 6XX FOR INVITE SENT */
OSIP_IST_STATUS_3456XX_SENT_AGAIN, /**< RESPONSE RETRANSMITTED */
OSIP_NICT_REGISTER_SENT, /**< REGISTER MESSAGE SENT */
OSIP_NICT_BYE_SENT, /**< BYE MESSAGE SENT */
OSIP_NICT_OPTIONS_SENT, /**< OPTIONS MESSAGE SENT */
OSIP_NICT_INFO_SENT, /**< INFO MESSAGE SENT */
OSIP_NICT_CANCEL_SENT, /**< CANCEL MESSAGE SENT */
OSIP_NICT_NOTIFY_SENT, /**< NOTIFY MESSAGE SENT */
OSIP_NICT_SUBSCRIBE_SENT, /**< SUBSCRIBE MESSAGE SENT */
OSIP_NICT_UNKNOWN_REQUEST_SENT, /**< UNKNOWN REQUEST MESSAGE SENT */
OSIP_NICT_REQUEST_SENT_AGAIN, /**< REQUEST MESSAGE RETRANMITTED */
OSIP_NICT_STATUS_1XX_RECEIVED, /**< 1XX FOR MESSAGE RECEIVED */
OSIP_NICT_STATUS_2XX_RECEIVED, /**< 2XX FOR MESSAGE RECEIVED */
OSIP_NICT_STATUS_2XX_RECEIVED_AGAIN, /**< 2XX FOR MESSAGE RECEIVED AGAIN */
OSIP_NICT_STATUS_3XX_RECEIVED, /**< 3XX FOR MESSAGE RECEIVED */
OSIP_NICT_STATUS_4XX_RECEIVED, /**< 4XX FOR MESSAGE RECEIVED */
OSIP_NICT_STATUS_5XX_RECEIVED, /**< 5XX FOR MESSAGE RECEIVED */
OSIP_NICT_STATUS_6XX_RECEIVED, /**< 6XX FOR MESSAGE RECEIVED */
OSIP_NICT_STATUS_3456XX_RECEIVED_AGAIN, /**< RESPONSE RECEIVED AGAIN */
OSIP_NIST_REGISTER_RECEIVED, /**< REGISTER RECEIVED */
OSIP_NIST_BYE_RECEIVED, /**< BYE RECEIVED */
OSIP_NIST_OPTIONS_RECEIVED, /**< OPTIONS RECEIVED */
OSIP_NIST_INFO_RECEIVED, /**< INFO RECEIVED */
OSIP_NIST_CANCEL_RECEIVED, /**< CANCEL RECEIVED */
OSIP_NIST_NOTIFY_RECEIVED, /**< NOTIFY RECEIVED */
OSIP_NIST_SUBSCRIBE_RECEIVED, /**< SUBSCRIBE RECEIVED */
OSIP_NIST_UNKNOWN_REQUEST_RECEIVED, /**< UNKNWON REQUEST RECEIVED */
OSIP_NIST_REQUEST_RECEIVED_AGAIN, /**< UNKNWON REQUEST RECEIVED AGAIN */
OSIP_NIST_STATUS_1XX_SENT, /**< 1XX FOR MESSAGE SENT */
OSIP_NIST_STATUS_2XX_SENT, /**< 2XX FOR MESSAGE SENT */
OSIP_NIST_STATUS_2XX_SENT_AGAIN, /**< 2XX FOR MESSAGE RETRANSMITTED */
OSIP_NIST_STATUS_3XX_SENT, /**< 3XX FOR MESSAGE SENT */
OSIP_NIST_STATUS_4XX_SENT, /**< 4XX FOR MESSAGE SENT */
OSIP_NIST_STATUS_5XX_SENT, /**< 5XX FOR MESSAGE SENT */
OSIP_NIST_STATUS_6XX_SENT, /**< 6XX FOR MESSAGE SENT */
OSIP_NIST_STATUS_3456XX_SENT_AGAIN, /**< RESPONSE RETRANSMITTED */
int osip_set_message_callback (osip_t *osip, int type, osip_message_cb_t cb);
typedef void (*osip_kill_transaction_cb_t) (int type, osip_transaction_t *);
OSIP_ICT_KILL_TRANSACTION, /**< end of Client INVITE transaction */
OSIP_IST_KILL_TRANSACTION, /**< end of Server INVITE transaction */
OSIP_NICT_KILL_TRANSACTION, /**< end of Client Non-INVITE transaction */
OSIP_NIST_KILL_TRANSACTION, /**< end of Server Non-INVITE transaction */
int osip_set_kill_transaction_callback (osip_t *osip, int type,
osip_kill_transaction_cb_t cb);
typedef void (*osip_transport_error_cb_t) (int type, osip_transaction_t *,
int error);
OSIP_ICT_TRANSPORT_ERROR, /**< transport error for ICT */
OSIP_IST_TRANSPORT_ERROR, /**< transport error for IST */
OSIP_NICT_TRANSPORT_ERROR, /**< transport error for NICT */
OSIP_NIST_TRANSPORT_ERROR, /**< transport error for NIST */
int osip_set_transport_error_callback (osip_t *osip, int type,
osip_transport_error_cb_t cb);
</PRE
></DIV
><DIV
CLASS="SECT2"
><HR><H2
CLASS="SECT2"
><A
NAME="AEN1600"
>Useful MACROs.</A
></H2
><P
>You can also use the following list of MACROs. It is recommended to use them if you want your application to keep full compatibility over oSIP releases.</P
><PRE
CLASS="PROGRAMLISTING"
>/* FOR INCOMING TRANSACTION */
#define EVT_IS_RCV_INVITE(event)
#define EVT_IS_RCV_ACK(event)
#define EVT_IS_RCV_REQUEST(event)
#define EVT_IS_RCV_STATUS_1XX(event)
#define EVT_IS_RCV_STATUS_23456XX(event)
/* FOR OUTGOING TRANSACTION */
#define EVT_IS_SND_INVITE(event)
#define EVT_IS_SND_ACK(event)
#define EVT_IS_SND_REQUEST(event)
#define EVT_IS_SND_STATUS_1XX(event)
#define EVT_IS_SND_STATUS_23456XX(event)
></DIV
></DIV
><DIV
CLASS="SECT1"
><HR><H1
CLASS="SECT1"
><A
NAME="AEN1604"
>The finite state machines HOW-TO</A
></H1
><P
>oSIP contains 4 finite state machines. SIP defines 2 kinds of transactions. INVITE and other than INVITE transactions differs slightly. INVITE transactions must be followed by an ACK which is not always part of the state machine for INVITE (only the ACK for final answer are above 299 are handled by the invite transactions: watch out the rfc3261). Also, different rules apply for retransmission mechanism.</P
><P
>A finite state machine is an ideal way to implement the transaction layer. Threads are waiting for events. Events come from the user layer, transport layer or the timer management facility. The stack always provides information about the state of the transaction to the application layer. This is done through the set of dynamic callbacks.
<DIV
CLASS="EXAMPLE"
><P
><B
>Example 5-4. SIP events are distributed to fifo.</B
></P
><PRE
CLASS="PROGRAMLISTING"
> Transaction
User Layer contexts
+------------+ +-----------+
| | events +--------| |
| |-----+------------->| FIFO 1 | 1 |
+------------+ | +--------| |
| +-----------+
|
| +-----------+
| +--------| |
+------------->| FIFO N | N |
+--------| |
+-----------+</PRE
></DIV
></P
><DIV
CLASS="SECT2"
><HR><H2
CLASS="SECT2"
><A
NAME="AEN1611"
>Initialise the osip stack</A
></H2
><P
>The oSIP stack needs to be initialised at run time. This is done by first calling the following method before using the oSIP stack. (This method MUST only be called once). Calling this method also initialise the parser.</P
><P
>int <FONT
COLOR="RED"
>osip_global_init()</FONT
>;</P
></DIV
><DIV
CLASS="SECT2"
><HR><H2
CLASS="SECT2"
><A
NAME="AEN1616"
>Allocate and initialize an osip_t element</A
></H2
><P
>The osip_t structure is a container for a list of transactions. This element represents an instance of a SIP agent. osip_t can be used for UAS/UAC, registrar and redirect server.</P
><P
>The following code is used to build a complete osip_t element. First, you have to register a set of mandatory and optional callbacks. You can also configure the stack to use a proxy for all outgoing requests.</P
><PRE
CLASS="PROGRAMLISTING"
> osip_t *osip;
if (-1==osip_init(&osip))
return -1; /* mutex is not initialized properly */
osip_set_kill_transaction_callback(osip ,OSIP_ICT_KILL_TRANSACTION,
&cb_ict_kill_transaction);
osip_set_kill_transaction_callback(osip ,OSIP_NIST_KILL_TRANSACTION,
&cb_ist_kill_transaction);
osip_set_kill_transaction_callback(osip ,OSIP_NICT_KILL_TRANSACTION,
&cb_nict_kill_transaction);
osip_set_kill_transaction_callback(osip ,OSIP_NIST_KILL_TRANSACTION,
&cb_nist_kill_transaction);
osip_set_message_callback(osip ,OSIP_ICT_STATUS_2XX_RECEIVED_AGAIN,
&cb_rcvresp_retransmission);
osip_set_message_callback(osip ,OSIP_ICT_STATUS_3456XX_RECEIVED_AGAIN,
&cb_rcvresp_retransmission);
osip_set_message_callback(osip ,OSIP_ICT_INVITE_SENT_AGAIN,
&cb_sndreq_retransmission);
osip_set_message_callback(osip ,OSIP_IST_STATUS_2XX_SENT_AGAIN,
&cb_sndresp_retransmission);
osip_set_message_callback(osip ,OSIP_IST_STATUS_3456XX_SENT_AGAIN,
&cb_sndresp_retransmission);
osip_set_message_callback(osip ,OSIP_IST_INVITE_RECEIVED_AGAIN,
&cb_rcvreq_retransmission);
osip_set_message_callback(osip ,OSIP_NICT_STATUS_2XX_RECEIVED_AGAIN,
&cb_rcvresp_retransmission);
osip_set_message_callback(osip ,OSIP_NICT_STATUS_3456XX_RECEIVED_AGAIN,
&cb_rcvresp_retransmission);
osip_set_message_callback(osip ,OSIP_NICT_REQUEST_SENT_AGAIN,
&cb_sndreq_retransmission);
osip_set_message_callback(osip ,OSIP_NIST_STATUS_2XX_SENT_AGAIN,
&cb_sndresp_retransmission);
osip_set_message_callback(osip ,OSIP_NIST_STATUS_3456XX_SENT_AGAIN,
&cb_sndresp_retransmission);
osip_set_message_callback(osip ,OSIP_NIST_REQUEST_RECEIVED_AGAIN,
&cb_rcvreq_retransmission);
osip_set_message_callback(osip ,OSIP_ICT_INVITE_SENT, &cb_sndinvite);
osip_set_message_callback(osip ,OSIP_ICT_ACK_SENT, &cb_sndack);
osip_set_message_callback(osip ,OSIP_NICT_REGISTER_SENT, &cb_sndregister);
osip_set_message_callback(osip ,OSIP_NICT_BYE_SENT, &cb_sndbye);
osip_set_message_callback(osip ,OSIP_NICT_CANCEL_SENT, &cb_sndcancel);
osip_set_message_callback(osip ,OSIP_NICT_INFO_SENT, &cb_sndinfo);
osip_set_message_callback(osip ,OSIP_NICT_OPTIONS_SENT, &cb_sndoptions);
osip_set_message_callback(osip ,OSIP_NICT_SUBSCRIBE_SENT, &cb_sndsubscribe);
osip_set_message_callback(osip ,OSIP_NICT_NOTIFY_SENT, &cb_sndnotify);
/* osip_set_cb_nict_sndprack (osip,&cb_sndprack); */
osip_set_message_callback(osip ,OSIP_NICT_UNKNOWN_REQUEST_SENT, &cb_sndunkrequest);
osip_set_message_callback(osip ,OSIP_ICT_STATUS_1XX_RECEIVED, &cb_rcv1xx);
osip_set_message_callback(osip ,OSIP_ICT_STATUS_2XX_RECEIVED, &cb_rcv2xx);
osip_set_message_callback(osip ,OSIP_ICT_STATUS_3XX_RECEIVED, &cb_rcv3xx);
osip_set_message_callback(osip ,OSIP_ICT_STATUS_4XX_RECEIVED, &cb_rcv4xx);
osip_set_message_callback(osip ,OSIP_ICT_STATUS_5XX_RECEIVED, &cb_rcv5xx);
osip_set_message_callback(osip ,OSIP_ICT_STATUS_6XX_RECEIVED, &cb_rcv6xx);
osip_set_message_callback(osip ,OSIP_IST_STATUS_1XX_SENT, &cb_snd1xx);
osip_set_message_callback(osip ,OSIP_IST_STATUS_2XX_SENT, &cb_snd2xx);
osip_set_message_callback(osip ,OSIP_IST_STATUS_3XX_SENT, &cb_snd3xx);
osip_set_message_callback(osip ,OSIP_IST_STATUS_4XX_SENT, &cb_snd4xx);
osip_set_message_callback(osip ,OSIP_IST_STATUS_5XX_SENT, &cb_snd5xx);
osip_set_message_callback(osip ,OSIP_IST_STATUS_6XX_SENT, &cb_snd6xx);
osip_set_message_callback(osip ,OSIP_NICT_STATUS_1XX_RECEIVED, &cb_rcv1xx);
osip_set_message_callback(osip ,OSIP_NICT_STATUS_2XX_RECEIVED, &cb_rcv2xx);
osip_set_message_callback(osip ,OSIP_NICT_STATUS_3XX_RECEIVED, &cb_rcv3xx);
osip_set_message_callback(osip ,OSIP_NICT_STATUS_4XX_RECEIVED, &cb_rcv4xx);
osip_set_message_callback(osip ,OSIP_NICT_STATUS_5XX_RECEIVED, &cb_rcv5xx);
osip_set_message_callback(osip ,OSIP_NICT_STATUS_6XX_RECEIVED, &cb_rcv6xx);
osip_set_message_callback(osip ,OSIP_NIST_STATUS_1XX_SENT, &cb_snd1xx);
osip_set_message_callback(osip ,OSIP_NIST_STATUS_2XX_SENT, &cb_snd2xx);
osip_set_message_callback(osip ,OSIP_NIST_STATUS_3XX_SENT, &cb_snd3xx);
osip_set_message_callback(osip ,OSIP_NIST_STATUS_4XX_SENT, &cb_snd4xx);
osip_set_message_callback(osip ,OSIP_NIST_STATUS_5XX_SENT, &cb_snd5xx);
osip_set_message_callback(osip ,OSIP_NIST_STATUS_6XX_SENT, &cb_snd6xx);
osip_set_message_callback(osip ,OSIP_IST_INVITE_RECEIVED, &cb_rcvinvite);
osip_set_message_callback(osip ,OSIP_IST_ACK_RECEIVED, &cb_rcvack);
osip_set_message_callback(osip ,OSIP_IST_ACK_RECEIVED_AGAIN, &cb_rcvack2);
osip_set_message_callback(osip ,OSIP_NIST_REGISTER_RECEIVED, &cb_rcvregister);
osip_set_message_callback(osip ,OSIP_NIST_BYE_RECEIVED, &cb_rcvbye);
osip_set_message_callback(osip ,OSIP_NIST_CANCEL_RECEIVED, &cb_rcvcancel);
osip_set_message_callback(osip ,OSIP_NIST_INFO_RECEIVED, &cb_rcvinfo);
osip_set_message_callback(osip ,OSIP_NIST_OPTIONS_RECEIVED, &cb_rcvoptions);
osip_set_message_callback(osip ,OSIP_NIST_SUBSCRIBE_RECEIVED, &cb_rcvsubscribe);
osip_set_message_callback(osip ,OSIP_NIST_NOTIFY_RECEIVED, &cb_rcvnotify);
osip_set_message_callback(osip ,OSIP_NIST_UNKNOWN_REQUEST_RECEIVED, &cb_rcvunkrequest);
</PRE
></DIV
><DIV
CLASS="SECT2"
><HR><H2
CLASS="SECT2"
><A
NAME="AEN1621"
>Send events to control transaction</A
></H2
><P
>Here is a sample to initiate a transaction. The initial event sent to the FIFO contains the first INVITE request. The creation of the message is not shown here.</P
><PRE
CLASS="PROGRAMLISTING"
>int
create_session(osip_t *osip)
{
osip_message_t *invite;
osip_transaction_t *transaction;
/* You must create your own SIP message. */
osip_message_init (&invite);
your_own_method_to_setup_messages(invite);
/* When it is the first invite, allocate */
/* and start a new transaction (prepare the
/* context and start a thread.) */
osip_transaction_init(&transaction,
osip,
invite->to,
invite->from,
invite->callid,
invite->cseq);
/* The thread is now waiting on its FIFO */
/* The following method allocate an event */
/* and send it to the transaction. */
osip_sendmsg(transaction,invite);
}
int
osip_sendmsg(osip_transaction_t *transaction,osip_message_t *msg)
{
osip_event_t *evt;
evt = osip_new_outgoing_sipmessage(msg);
/* depending on your application model, you can choose */
/* either to consume the event are add it in the fifo */
/* and delay the operations */
osip_fifo_add(transaction->transactionff,evt);
osip_transaction_execute(transaction,evt);
return 0;
} </PRE
></DIV
><DIV
CLASS="SECT2"
><HR><H2
CLASS="SECT2"
><A
NAME="AEN1625"
>Notes for proxy implementation</A
></H2
><P
>The transaction layer provided for oSIP is usable by user agents, registrar, redirect server and some type of conference server.</P
><P
>For stateless proxy, no state machine is required.</P
></DIV
></DIV
><DIV
CLASS="SECT1"
><HR><H1
CLASS="SECT1"
><A
NAME="AEN1629"
>Build your own architecture</A
></H1
><P
>Since release 0.7.0, the stack can be used without semaphore and thread support. The design is completely up to you. You have to choose a design that fit the type of application. Here are the different aspect that you need to take care of:</P
><P
></P
><TABLE
BORDER="0"
><TR
><TD
>Read all the rfc about SIP!.</TD
></TR
><TR
><TD
>implement the transport layer (UDP, TCP, TLS?)</TD
></TR
><TR
><TD
>choose a multi thread design or not.</TD
></TR
><TR
><TD
>choose how to start timers.</TD
></TR
></TABLE
><P
></P
><P
>If your application wants to access a database and make IP address resolution, this could leave your application in a blocked state for a while. In this case, a multi threaded application could be very useful and avoid some issues. It worth to say that performance of your application will heavily rely on how you will deal with those issue.</P
></DIV
></DIV
><A
NAME="AEN1639"
></A
><HR><H1
><A
NAME="AEN1639"
>Bibliography</A
></H1
><DIV
CLASS="BIBLIOENTRY"
><A
NAME="AEN1640"
></A
><P
>SIP, <I
>Session Initiation Protocole - rfc3261.txt</I
>, ietf.</P
><DIV
CLASS="BIBLIOENTRYBLOCK"
STYLE="margin-left=0.5in"
></DIV
></DIV
><DIV
CLASS="BIBLIOENTRY"
><A
NAME="AEN1645"
></A
><P
>SDP, <I
>Session Description Protocole - rfc2327.txt</I
>, ietf.</P
><DIV
CLASS="BIBLIOENTRYBLOCK"
STYLE="margin-left=0.5in"
></DIV
></DIV
></DIV
></BODY
></HTML
>
|
cms/templates/cms/resources_index_page.html
|
kingsdigitallab/gssn-django
|
{% extends "cms/base.html" %}
{% load wagtailcore_tags %}
{% block main %}
{% block index_page_introduction %}
{% include "cms/includes/introduction.html" with introduction=self.intro only %}
{% endblock %}
{% block index_page_children %}
{% include "cms/includes/index_page_children.html" with title="In this section" %}
{% endblock %}
{% block related_links %}
{% include "cms/includes/related_links.html" with related_links=self.related_links.all title="Related links" %}
{% endblock %}
{% endblock %}
|
packages/acs-content-repository/www/doc/guide/storage.html
|
iuri/CNAUTO
|
<h2>Storing Data in the Content Repository</h2>
<hr>
<p>This document provides an introduction to using the content
repository for storing data (binary or text files) and associated
attributes. It describes how to store user portraits as an
example.</p>
<h3>Define an Item Type</h3>
<p>The first step towards using the content repository is to define
one or more <em>content types</em> for the data you wish to manage.</p>
<p>The basic content item includes the following attributes:</p>
<ul>
<li>Title
<li>Description
<li>Publication or Posting Date
<li>Author or Contributor
<li>MIME Type
<li>Binary or Text Data
</ul>
<p>Most types of content require additional attributes. For a photo,
we probably also want to store the pixel width and height at the very
least:</p>
<pre> create table images (
image_id integer
constraint images_image_id_fk
references cr_revisions
constraint images_pk
primary key,
width integer,
height integer
);</pre>
<p>Content types are nothing more than standard ACS Objects that inherit
from <tt>content_revision</tt>:
<pre>begin
acs_object_type.create_type (
supertype => 'content_revision',
object_type => 'image',
pretty_name => 'Image',
pretty_plural => 'Images',
table_name => 'images',
id_column => 'image_id',
name_method => 'acs_object.default_name'
);
acs_attribute.create_attribute (
object_type => 'image',
attribute_name => 'width',
datatype => 'number',
pretty_name => 'Width',
pretty_plural => 'Widths'
);
acs_attribute.create_attribute (
object_type => 'image',
attribute_name => 'height',
datatype => 'number',
pretty_name => 'Height',
pretty_plural => 'Heights'
);
end;
/
show errors</pre>
<p>Note that content types always extend <tt>content_revision</tt>,
rather than <tt>content_item</tt>. This is because we want to store
multiple revisions of both the actual data (in this case the image) as
well as associated attributes (the width and height of the image may
vary among revisions).</p>
<h3>Define a Relationship to a Target Object</h3>
<p>The content repository implements a flexible mechanism for
organizing data in a hierarchical fashion in a manner similar to a
file system. This would be useful if we ever decided to allow each
user to manage an entire personal photo gallery rather than a single
portrait.</p>
<p>In the simple case where each user is allowed a single portrait, we
can simply define a relationship between user and image as ACS
Objects:</p>
<pre> acs_rel_type.create_role('user');
acs_rel_type.create_role('portrait');
acs_rel_type.create_type( rel_type => 'user_portrait_rel',
pretty_name => 'User Portrait',
pretty_plural => 'User Portraits',
object_type_one => 'user',
role_one => 'user',
min_n_rels_one => 1,
max_n_rels_one => 1,
object_type_two => 'content_item',
min_n_rels_two => 0,
max_n_rels_two => 1
);</pre>
<p>Note that the <tt>user</tt> object is related to a
<tt>content_item</tt> object rather than an <tt>image</tt> object
directly. Each <tt>image</tt> object represents only a single
revision of a portrait. Revisions always exist in the context of an
item.</p>
<h3>Store Objects</h3>
<p>Now we have defined both a content type and relationship type, we can
start storing portraits. The DML for processing a new portrait upload
form would look like this:</p>
<pre> begin transaction
:item_id := content_item.new(:name, :item_id, sysdate, NULL, '[ns_conn peeraddr]');
# maybe have content_revision return the LOB locator so that it can
# be used directly with blob_dml_file
:revision_id := content_revision.new(:title, :description, $publish_date, :mime_type, NULL, :text, 'content_revision',
:item_id, :revision_id);
blob_dml_file update cr_revisions set content = empty_blob() ...
:rel_id := acs_rel.new(...)</pre>
<h3>Retrieve Objects</h3>
<pre> ns_ora write_blob ...</pre>
<hr>
<a href="mailto:karlg@arsdigita.com">karlg@arsdigita.com</a>
<p>
Last Modified: $Id: storage.html,v 1.1.1.1 2001/03/13 22:59:26 ben Exp $
</p>
|
tests/samples/misc/testHTMLFormElement.html
|
buffer/thug
|
</html>
<head>
<title>Form example</title>
<script type="text/javascript">
alert(document.forms[0]);
alert(document.forms['formA']);
function getFormInfo() {
var info;
var f = document.getElementById("formA");
info = "f.elements: " + f.elements + "\n"
+ "f.length: " + f.length + "\n"
+ "f.name: " + f.elements + "\n"
+ "f.acceptCharset: " + f.acceptCharset + "\n"
+ "f.action: " + f.action + "\n"
+ "f.enctype: " + f.enctype + "\n"
+ "f.encoding: " + f.encoding + "\n"
+ "f.method: " + f.method + "\n"
+ "f.target: " + f.target;
alert(info);
}
function setFormInfo() {
var f = document.getElementById("formA");
f.method = "GET";
f.action = "http://www.example.com/cgi-bin/foo.cgi";
f.name = "totally_new";
f.submit();
}
function Reset() {
var f = document.forms["formA"];
f.reset();
}
var reset0 = document.forms['formA'].reset0;
reset0.blur();
reset0.focus();
reset0.select();
reset0.click();
getFormInfo();
setFormInfo();
Reset();
</script>
</head>
<body>
<form id="formA" action="/cgi-bin/test" method="POST">
<input type="button" value="info">
<input type="button" value="set">
<input type="reset" name="reset0" value="reset">
<br>
<textarea id="tex" style="height:15em; width:20em">
</form>
</body>
</html>
|
boost_1_49_0/doc/html/boost/accumulators/extract/non_coherent_tail_mean.html
|
phra/802_21
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Global non_coherent_tail_mean</title>
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
<link rel="home" href="../../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
<link rel="up" href="../../../accumulators/reference.html#header.boost.accumulators.statistics.tail_mean_hpp" title="Header <boost/accumulators/statistics/tail_mean.hpp>">
<link rel="prev" href="../feature_of_tag_tail_Lef_id568897.html" title="Struct template feature_of<tag::tail< LeftRight >>">
<link rel="next" href="coherent_tail_mean.html" title="Global coherent_tail_mean">
</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="../feature_of_tag_tail_Lef_id568897.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../accumulators/reference.html#header.boost.accumulators.statistics.tail_mean_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="coherent_tail_mean.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.accumulators.extract.non_coherent_tail_mean"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Global non_coherent_tail_mean</span></h2>
<p>boost::accumulators::extract::non_coherent_tail_mean</p>
</div>
<h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2>
<div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: <<a class="link" href="../../../accumulators/reference.html#header.boost.accumulators.statistics.tail_mean_hpp" title="Header <boost/accumulators/statistics/tail_mean.hpp>">boost/accumulators/statistics/tail_mean.hpp</a>>
</span><a class="link" href="../extractor.html" title="Struct template extractor">extractor</a><span class="special"><</span> <a class="link" href="../tag/abstract_non_coherent_t_id569801.html" title="Struct abstract_non_coherent_tail_mean">tag::abstract_non_coherent_tail_mean</a> <span class="special">></span> <span class="keyword">const</span> non_coherent_tail_mean<span class="special">;</span></pre></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 © 2005, 2006 Eric Niebler<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="../feature_of_tag_tail_Lef_id568897.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../accumulators/reference.html#header.boost.accumulators.statistics.tail_mean_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="coherent_tail_mean.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
doc/html/wifidog-1_81_83__rc1_2src_2centralserver_8h-source.html
|
sxpert/wifidog-ffw
|
<!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>WifiDog: centralserver.h Source File</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.5.1 -->
<div class="tabs">
<ul>
<li><a href="main.html"><span>Main Page</span></a></li>
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li id="current"><a href="files.html"><span>Files</span></a></li>
</ul></div>
<h1>centralserver.h</h1><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/********************************************************************\</span>
<a name="l00002"></a>00002 <span class="comment"> * This program is free software; you can redistribute it and/or *</span>
<a name="l00003"></a>00003 <span class="comment"> * modify it under the terms of the GNU General Public License as *</span>
<a name="l00004"></a>00004 <span class="comment"> * published by the Free Software Foundation; either version 2 of *</span>
<a name="l00005"></a>00005 <span class="comment"> * the License, or (at your option) any later version. *</span>
<a name="l00006"></a>00006 <span class="comment"> * *</span>
<a name="l00007"></a>00007 <span class="comment"> * This program is distributed in the hope that it will be useful, *</span>
<a name="l00008"></a>00008 <span class="comment"> * but WITHOUT ANY WARRANTY; without even the implied warranty of *</span>
<a name="l00009"></a>00009 <span class="comment"> * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *</span>
<a name="l00010"></a>00010 <span class="comment"> * GNU General Public License for more details. *</span>
<a name="l00011"></a>00011 <span class="comment"> * *</span>
<a name="l00012"></a>00012 <span class="comment"> * You should have received a copy of the GNU General Public License*</span>
<a name="l00013"></a>00013 <span class="comment"> * along with this program; if not, contact: *</span>
<a name="l00014"></a>00014 <span class="comment"> * *</span>
<a name="l00015"></a>00015 <span class="comment"> * Free Software Foundation Voice: +1-617-542-5942 *</span>
<a name="l00016"></a>00016 <span class="comment"> * 59 Temple Place - Suite 330 Fax: +1-617-542-2652 *</span>
<a name="l00017"></a>00017 <span class="comment"> * Boston, MA 02111-1307, USA gnu@gnu.org *</span>
<a name="l00018"></a>00018 <span class="comment"> * *</span>
<a name="l00019"></a>00019 <span class="comment">\********************************************************************/</span>
<a name="l00020"></a>00020
<a name="l00021"></a>00021 <span class="comment">/* $Id: centralserver.h 1104 2006-10-09 00:58:46Z acv $ */</span>
<a name="l00027"></a>00027 <span class="preprocessor">#ifndef _CENTRALSERVER_H_</span>
<a name="l00028"></a>00028 <span class="preprocessor"></span><span class="preprocessor">#define _CENTRALSERVER_H_</span>
<a name="l00029"></a>00029 <span class="preprocessor"></span>
<a name="l00031"></a>00031 <span class="preprocessor">#define REQUEST_TYPE_LOGIN "login"</span>
<a name="l00032"></a>00032 <span class="preprocessor"></span>
<a name="l00033"></a>00033 <span class="preprocessor">#define REQUEST_TYPE_LOGOUT "logout"</span>
<a name="l00034"></a>00034 <span class="preprocessor"></span>
<a name="l00035"></a>00035 <span class="preprocessor">#define REQUEST_TYPE_COUNTERS "counters"</span>
<a name="l00036"></a>00036 <span class="preprocessor"></span>
<a name="l00038"></a>00038 t_authcode auth_server_request(<a class="code" href="struct__t__authresponse.html">t_authresponse</a> *authresponse, <span class="keywordtype">char</span> *request_type, <span class="keywordtype">char</span> *ip, <span class="keywordtype">char</span> *mac, <span class="keywordtype">char</span> *token, <span class="keywordtype">unsigned</span> <span class="keywordtype">long</span> <span class="keywordtype">long</span> <span class="keywordtype">int</span> incoming, <span class="keywordtype">unsigned</span> <span class="keywordtype">long</span> <span class="keywordtype">long</span> <span class="keywordtype">int</span> outgoing);
<a name="l00039"></a>00039
<a name="l00041"></a>00041 <span class="keywordtype">int</span> connect_auth_server();
<a name="l00042"></a>00042
<a name="l00044"></a>00044 <span class="keywordtype">int</span> _connect_auth_server(<span class="keywordtype">int</span> level);
<a name="l00045"></a>00045
<a name="l00046"></a>00046 <span class="preprocessor">#endif </span><span class="comment">/* _CENTRALSERVER_H_ */</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Sun Jun 24 00:29:52 2007 for WifiDog by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address>
</body>
</html>
|
sites/all/themes/doji_gold/css/admin-cuahang/stylesheets/store-style.css
|
napoleon789/love_gv_new
|
/* Welcome to Compass.
* In this file you should write your main styles. (or centralize your imports)
* Import this file using the following HTML or equivalent:
* <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
@import url(./../../font.css);
@font-face {
font-family: 'icomoon';
src: url("../fonts/icomoon.eot?-npzu59");
src: url("../fonts/icomoon.eot?#iefix-npzu59") format("embedded-opentype"), url("../fonts/icomoon.woff?-npzu59") format("woff"), url("../fonts/icomoon.ttf?-npzu59") format("truetype"), url("../fonts/icomoon.svg?-npzu59#icomoon") format("svg");
font-weight: normal;
font-style: normal;
}
/*mixin
====================================================*/
/* line 67, ../sass/store-style.scss */
.page-store h1.page-title {
display: none;
}
/* line 68, ../sass/store-style.scss */
.page-store #container {
width: 1260px;
font-family: "OpenSansRegular", serif;
}
/* line 69, ../sass/store-style.scss */
.page-store #container .content-middle {
width: auto !important;
}
/* line 70, ../sass/store-style.scss */
.page-store #container .content-middle .system_store {
margin-top: 25px;
}
/* line 72, ../sass/store-style.scss */
.page-store #container .table_four {
width: 100%;
display: table;
margin: 0 0 45px;
}
/* line 73, ../sass/store-style.scss */
.page-store #container .table_four .num_table {
max-width: 25%;
padding: 0 10px;
display: table-cell;
float: left;
position: relative;
}
/* line 74, ../sass/store-style.scss */
.page-store #container .table_four .num_table:first-child {
padding-left: 0;
}
/* line 75, ../sass/store-style.scss */
.page-store #container .table_four .num_table:last-child {
padding-right: 0;
}
/* line 76, ../sass/store-style.scss */
.page-store #container .table_four .num_table h2.title {
font-family: "OpenSansSemibold", serif;
font-size: 13px;
color: #a50119;
text-align: center;
background: url(../../../images/banggia/title-bg.png) repeat-x 0 0;
padding: 8px 0 6px;
margin: 0;
border: 1px solid #dfdfdf;
border-bottom: none;
max-width: 290px;
}
/* line 77, ../sass/store-style.scss */
.page-store #container .table_four .num_table tr.even, .page-store #container .table_four .num_table tr.odd, .page-store #container .table_four .num_table tr.even td {
background: #fff;
}
/* line 78, ../sass/store-style.scss */
.page-store #container .table_four .num_table .item_table {
max-width: 290px;
border: 1px solid #dfdfdf;
border-bottom: none;
}
/* line 79, ../sass/store-style.scss */
.page-store #container .table_four .num_table .item_table table.sticky-table {
width: 100%;
}
/* line 81, ../sass/store-style.scss */
.page-store #container .table_four .num_table .item_table table.sticky-table thead tr th {
background: url(../../../images/banggia/store-form-item-bg.png) repeat-x 0 0;
padding: 13px 0 10px;
font-family: "OpenSansSemibold", serif;
font-size: 13px;
color: #666666;
line-height: 1;
border-left: 1px solid #dfdfdf;
border-bottom: 1px solid #dfdfdf;
}
/* line 82, ../sass/store-style.scss */
.page-store #container .table_four .num_table .item_table table.sticky-table thead tr th:nth-child(1) {
border-left: none;
text-indent: 15px;
width: 107px;
}
/* line 83, ../sass/store-style.scss */
.page-store #container .table_four .num_table .item_table table.sticky-table thead tr th:nth-child(2), .page-store #container .table_four .num_table .item_table table.sticky-table thead tr th:nth-child(3) {
text-align: right;
padding-right: 15px;
max-width: 90px;
width: 74px;
}
/* line 85, ../sass/store-style.scss */
.page-store #container .table_four .num_table .item_table table.sticky-table tbody tr td {
font-size: 13px;
color: #666666;
line-height: 1;
border-left: 1px solid #dfdfdf;
border-bottom: 1px solid #dfdfdf;
}
/* line 86, ../sass/store-style.scss */
.page-store #container .table_four .num_table .item_table table.sticky-table tbody tr td:nth-child(1) {
border-left: none;
padding-left: 15px;
width: 92px;
font-family: "OpenSansRegular", serif;
}
/* line 87, ../sass/store-style.scss */
.page-store #container .table_four .num_table .item_table table.sticky-table tbody tr td:nth-child(2), .page-store #container .table_four .num_table .item_table table.sticky-table tbody tr td:nth-child(3) {
text-align: right;
max-width: 90px;
width: 74px;
font-family: "OpenSansSemibold", serif;
vertical-align: middle;
font-size: 18px;
padding: 11px 15px 12px 0;
}
/* line 91, ../sass/store-style.scss */
.page-store #container .table_four .num_table .system_footer {
width: 100%;
display: block;
}
/* line 92, ../sass/store-style.scss */
.page-store #container .table_four .num_table .system_footer ul {
display: table;
width: 100%;
padding: 0 0 0 7px;
margin: 11px 0 0;
}
/* line 93, ../sass/store-style.scss */
.page-store #container .table_four .num_table .system_footer ul li {
display: table-cell;
}
/* line 94, ../sass/store-style.scss */
.page-store #container .table_four .num_table .system_footer ul li a {
background: url(../../../images/banggia/hethong-banle.png) no-repeat;
height: 38px;
display: block;
width: 82px;
text-indent: -9999px;
}
/* line 95, ../sass/store-style.scss */
.page-store #container .table_four .num_table .system_footer ul li.view a {
background-position: -14px -3px;
}
/* line 96, ../sass/store-style.scss */
.page-store #container .table_four .num_table .system_footer ul li.edit a {
background-position: -108px -3px;
}
/* line 97, ../sass/store-style.scss */
.page-store #container .table_four .num_table .system_footer ul li.delete a {
background-position: -201px -3px;
}
/* line 105, ../sass/store-style.scss */
.page-store .system_store ul, .page-store .system_store li {
list-style-image: none;
list-style: none;
margin: 0;
padding: 0;
}
/* line 111, ../sass/store-style.scss */
.page-store .system_store > ul {
margin-bottom: 25px;
}
/* line 113, ../sass/store-style.scss */
.page-store .system_store > ul li {
display: inline-block;
*display: inline;
*zoom: 1;
margin-right: 5px;
font-weight: bold;
}
/* line 119, ../sass/store-style.scss */
.page-store .system_store > ul li a {
padding: 6px 15px 7px;
}
/* line 122, ../sass/store-style.scss */
.page-store .system_store > ul li .active-tab {
background: url("../../../images/banggia/title-bg.png") repeat-x scroll 0 0 rgba(0, 0, 0, 0);
display: inline-block;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
border: 1px solid #dfdfdf;
color: #000;
}
/* line 141, ../sass/store-style.scss */
.page-store,
.node-type-store.logged-in {
font-family: "OpenSansRegular", serif;
color: #666666;
}
/* line 143, ../sass/store-style.scss */
.page-store #col-center-middle form .form-item,
.node-type-store.logged-in #col-center-middle form .form-item {
margin: 0;
}
/* line 144, ../sass/store-style.scss */
.page-store #col-center-middle form .form-item input, .page-store #col-center-middle form .form-item select,
.node-type-store.logged-in #col-center-middle form .form-item input,
.node-type-store.logged-in #col-center-middle form .form-item select {
margin: 4px 0;
border: 1px solid #a6a6a6;
font-family: "OpenSansRegular", serif;
background: url(../../../images/banggia/input-bg.png) repeat-x 0 -1px;
color: #0d0d0d;
}
/* line 145, ../sass/store-style.scss */
.page-store #col-center-middle form .form-item select,
.node-type-store.logged-in #col-center-middle form .form-item select {
padding: 3px 0 3px 9px;
}
/* line 146, ../sass/store-style.scss */
.page-store #col-center-middle form .form-item input,
.node-type-store.logged-in #col-center-middle form .form-item input {
padding: 3px 0 5px 9px;
}
/* line 148, ../sass/store-style.scss */
.page-store #col-center-middle form header,
.node-type-store.logged-in #col-center-middle form header {
/*width:($width-page-add-store - 2 );*/
width: 850px;
margin: 0 auto;
border: 1px solid #dfdfdf;
}
/* line 149, ../sass/store-style.scss */
.page-store #col-center-middle form header .form-item,
.node-type-store.logged-in #col-center-middle form header .form-item {
display: table;
width: 100%;
background: url(../../../images/banggia/store-form-item-bg.png) repeat-x 0 0;
margin: 0;
border-top: 1px solid #dfdfdf;
border-top: 1px solid #dfdfdf;
}
/* line 150, ../sass/store-style.scss */
.page-store #col-center-middle form header .form-item label,
.node-type-store.logged-in #col-center-middle form header .form-item label {
padding-left: 12px;
width: 86px;
}
/* line 151, ../sass/store-style.scss */
.page-store #col-center-middle form header .form-item label, .page-store #col-center-middle form header .form-item input, .page-store #col-center-middle form header .form-item select,
.node-type-store.logged-in #col-center-middle form header .form-item label,
.node-type-store.logged-in #col-center-middle form header .form-item input,
.node-type-store.logged-in #col-center-middle form header .form-item select {
display: table-cell;
vertical-align: middle;
font-family: "OpenSansRegular", serif;
}
/* line 153, ../sass/store-style.scss */
.page-store #col-center-middle form header h2.title,
.node-type-store.logged-in #col-center-middle form header h2.title {
font-family: "OpenSansSemibold", serif;
font-size: 18px;
text-align: center;
color: #0d0d0d;
line-height: 1;
padding: 12px 0;
background: url(../../../images/banggia/title-bg.png) repeat-x 0 0;
margin: 0;
}
/* line 154, ../sass/store-style.scss */
.page-store #col-center-middle form header h2.title :first-letter,
.node-type-store.logged-in #col-center-middle form header h2.title :first-letter {
text-transform: uppercase;
}
/* line 155, ../sass/store-style.scss */
.page-store #col-center-middle form header .store-name input,
.node-type-store.logged-in #col-center-middle form header .store-name input {
width: 518px;
}
/* line 156, ../sass/store-style.scss */
.page-store #col-center-middle form header .groupAndHotLine,
.node-type-store.logged-in #col-center-middle form header .groupAndHotLine {
display: table;
width: 100%;
}
/* line 157, ../sass/store-style.scss */
.page-store #col-center-middle form header .groupAndHotLine input, .page-store #col-center-middle form header .groupAndHotLine select,
.node-type-store.logged-in #col-center-middle form header .groupAndHotLine input,
.node-type-store.logged-in #col-center-middle form header .groupAndHotLine select {
width: 200px;
}
/* line 158, ../sass/store-style.scss */
.page-store #col-center-middle form header .groupAndHotLine .store_group,
.node-type-store.logged-in #col-center-middle form header .groupAndHotLine .store_group {
display: table-cell;
width: 188px;
max-width: 188px;
}
/* line 159, ../sass/store-style.scss */
.page-store #col-center-middle form header .groupAndHotLine .store_group label,
.node-type-store.logged-in #col-center-middle form header .groupAndHotLine .store_group label {
width: 86px;
}
/* line 160, ../sass/store-style.scss */
.page-store #col-center-middle form header .groupAndHotLine .store_group select,
.node-type-store.logged-in #col-center-middle form header .groupAndHotLine .store_group select {
width: 150px;
}
/* line 162, ../sass/store-style.scss */
.page-store #col-center-middle form header .groupAndHotLine .store_hotline,
.node-type-store.logged-in #col-center-middle form header .groupAndHotLine .store_hotline {
display: table-cell;
width: 355px;
max-width: 355px;
}
/* line 163, ../sass/store-style.scss */
.page-store #col-center-middle form header .groupAndHotLine .store_hotline label,
.node-type-store.logged-in #col-center-middle form header .groupAndHotLine .store_hotline label {
width: 76px;
padding-left: 7px;
}
/* line 164, ../sass/store-style.scss */
.page-store #col-center-middle form header .groupAndHotLine .store_hotline select,
.node-type-store.logged-in #col-center-middle form header .groupAndHotLine .store_hotline select {
width: 250px;
}
/* line 167, ../sass/store-style.scss */
.page-store #col-center-middle form .content,
.node-type-store.logged-in #col-center-middle form .content {
/*width:$width-page-add-store;*/
width: 852px;
margin: 0 auto;
position: relative;
}
/* line 168, ../sass/store-style.scss */
.page-store #col-center-middle form .content .store_item fieldset,
.node-type-store.logged-in #col-center-middle form .content .store_item fieldset {
background: #fff;
border: none;
padding: 0;
-webkit-margin-start: 0;
-webkit-margin-end: 0;
-webkit-padding-before: 0;
-webkit-padding-start: 0;
-webkit-padding-end: 0;
-webkit-padding-after: 0;
-o-margin-start: 0;
-o-margin-end: 0;
-o-padding-before: 0;
-o-padding-start: 0;
-o-padding-end: 0;
-o-padding-after: 0;
-moz-margin-start: 0;
-moz-margin-end: 0;
-moz-padding-before: 0;
-moz-padding-start: 0;
-moz-padding-end: 0;
-mos-padding-after: 0;
}
/* line 190, ../sass/store-style.scss */
.page-store #col-center-middle form .content .store_item fieldset legend,
.node-type-store.logged-in #col-center-middle form .content .store_item fieldset legend {
display: none;
}
/* line 191, ../sass/store-style.scss */
.page-store #col-center-middle form .content .store_item fieldset .content-multigroup-edit-table-multiple-columns,
.node-type-store.logged-in #col-center-middle form .content .store_item fieldset .content-multigroup-edit-table-multiple-columns {
border: 1px solid #dfdfdf;
border-top: none;
}
/* line 192, ../sass/store-style.scss */
.page-store #col-center-middle form .content .store_item fieldset tr.even, .page-store #col-center-middle form .content .store_item fieldset tr.odd, .page-store #col-center-middle form .content .store_item fieldset tr.even td,
.node-type-store.logged-in #col-center-middle form .content .store_item fieldset tr.even,
.node-type-store.logged-in #col-center-middle form .content .store_item fieldset tr.odd,
.node-type-store.logged-in #col-center-middle form .content .store_item fieldset tr.even td {
background: transparent;
}
/* line 193, ../sass/store-style.scss */
.page-store #col-center-middle form .content .store_item fieldset thead th,
.node-type-store.logged-in #col-center-middle form .content .store_item fieldset thead th {
background: transparent;
border-bottom: 1px solid #dfdfdf;
border-left: 1px solid #dfdfdf;
color: #666666;
text-indent: 12px;
height: 38px;
vertical-align: middle;
}
/* line 194, ../sass/store-style.scss */
.page-store #col-center-middle form .content .store_item fieldset tbody tr td,
.node-type-store.logged-in #col-center-middle form .content .store_item fieldset tbody tr td {
border-right: 1px solid #dfdfdf;
}
/* line 195, ../sass/store-style.scss */
.page-store #col-center-middle form .content .store_item fieldset tbody tr td:last-child,
.node-type-store.logged-in #col-center-middle form .content .store_item fieldset tbody tr td:last-child {
border-right: none;
}
/* line 196, ../sass/store-style.scss */
.page-store #col-center-middle form .content .store_item fieldset tbody tr td.content-multiple-drag,
.node-type-store.logged-in #col-center-middle form .content .store_item fieldset tbody tr td.content-multiple-drag {
width: 40px;
height: 37px;
padding-left: 12px;
}
/* line 197, ../sass/store-style.scss */
.page-store #col-center-middle form .content .store_item fieldset tbody tr td.content-multiple-drag .tabledrag-handle,
.node-type-store.logged-in #col-center-middle form .content .store_item fieldset tbody tr td.content-multiple-drag .tabledrag-handle {
float: none;
padding: 0;
margin: 0;
}
/* line 198, ../sass/store-style.scss */
.page-store #col-center-middle form .content .store_item fieldset tbody tr td.content-multiple-drag .tabledrag-handle .handle,
.node-type-store.logged-in #col-center-middle form .content .store_item fieldset tbody tr td.content-multiple-drag .tabledrag-handle .handle {
margin-top: 0px;
}
/* line 200, ../sass/store-style.scss */
.page-store #col-center-middle form .content .store_item fieldset tbody tr td.content-multigroup-cell-field-dlieu-ch-1 select,
.node-type-store.logged-in #col-center-middle form .content .store_item fieldset tbody tr td.content-multigroup-cell-field-dlieu-ch-1 select {
width: 137px;
margin: 2px 6px;
}
/* line 201, ../sass/store-style.scss */
.page-store #col-center-middle form .content .store_item fieldset tbody tr td.content-multigroup-cell-field-label-ch-1 input,
.node-type-store.logged-in #col-center-middle form .content .store_item fieldset tbody tr td.content-multigroup-cell-field-label-ch-1 input {
width: 157px;
margin: 2px 6px;
}
/* line 203, ../sass/store-style.scss */
.page-store #col-center-middle form .content .store_item fieldset tbody tr td.content-multigroup-cell-field-mua-ch-1 input, .page-store #col-center-middle form .content .store_item fieldset tbody tr td.content-multigroup-cell-field-ban-ch-1 input,
.node-type-store.logged-in #col-center-middle form .content .store_item fieldset tbody tr td.content-multigroup-cell-field-mua-ch-1 input,
.node-type-store.logged-in #col-center-middle form .content .store_item fieldset tbody tr td.content-multigroup-cell-field-ban-ch-1 input {
width: 68px;
margin: 2px 6px;
background: none;
border: none;
color: #0d0d0d;
}
/* line 204, ../sass/store-style.scss */
.page-store #col-center-middle form .content .store_item fieldset tbody tr td.content-multiple-remove-cell .content-multiple-remove-button,
.node-type-store.logged-in #col-center-middle form .content .store_item fieldset tbody tr td.content-multiple-remove-cell .content-multiple-remove-button {
width: 32px;
margin: 0 3px 2px 2px;
background: url(../../../images/banggia/remove-item.png) repeat-x 0 0;
border: 1px solid #dfdfdf;
border: none;
height: 32px;
padding: 0;
}
/* line 207, ../sass/store-style.scss */
.page-store #col-center-middle form .content .store_item fieldset .content-add-more,
.node-type-store.logged-in #col-center-middle form .content .store_item fieldset .content-add-more {
position: absolute;
bottom: 15px;
}
/* line 208, ../sass/store-style.scss */
.page-store #col-center-middle form .content .store_item fieldset .content-add-more input.form-submit,
.node-type-store.logged-in #col-center-middle form .content .store_item fieldset .content-add-more input.form-submit {
background: transparent;
border: none;
text-indent: -9999px;
width: 120px;
}
/* line 210, ../sass/store-style.scss */
.page-store #col-center-middle form .content .store_control,
.node-type-store.logged-in #col-center-middle form .content .store_control {
display: table;
padding: 2px 0;
}
/* line 211, ../sass/store-style.scss */
.page-store #col-center-middle form .content .store_control .store_add, .page-store #col-center-middle form .content .store_control .store_view, .page-store #col-center-middle form .content .store_control .store_save,
.node-type-store.logged-in #col-center-middle form .content .store_control .store_add,
.node-type-store.logged-in #col-center-middle form .content .store_control .store_view,
.node-type-store.logged-in #col-center-middle form .content .store_control .store_save {
display: table-cell;
vertical-align: middle;
}
/* line 212, ../sass/store-style.scss */
.page-store #col-center-middle form .content .store_control .store_add a, .page-store #col-center-middle form .content .store_control .store_add input, .page-store #col-center-middle form .content .store_control .store_view a, .page-store #col-center-middle form .content .store_control .store_view input, .page-store #col-center-middle form .content .store_control .store_save a, .page-store #col-center-middle form .content .store_control .store_save input,
.node-type-store.logged-in #col-center-middle form .content .store_control .store_add a,
.node-type-store.logged-in #col-center-middle form .content .store_control .store_add input,
.node-type-store.logged-in #col-center-middle form .content .store_control .store_view a,
.node-type-store.logged-in #col-center-middle form .content .store_control .store_view input,
.node-type-store.logged-in #col-center-middle form .content .store_control .store_save a,
.node-type-store.logged-in #col-center-middle form .content .store_control .store_save input {
text-indent: -9999px;
display: block;
border: none;
}
/* line 214, ../sass/store-style.scss */
.page-store #col-center-middle form .content .store_control .store_add,
.node-type-store.logged-in #col-center-middle form .content .store_control .store_add {
max-width: 292px;
width: 292px;
}
/* line 215, ../sass/store-style.scss */
.page-store #col-center-middle form .content .store_control .store_add input,
.node-type-store.logged-in #col-center-middle form .content .store_control .store_add input {
background: url(../../../images/banggia/them-giatri.png) no-repeat -4px 0;
width: 129px;
height: 44px;
}
/* line 217, ../sass/store-style.scss */
.page-store #col-center-middle form .content .store_control .store_view,
.node-type-store.logged-in #col-center-middle form .content .store_control .store_view {
max-width: 175px;
width: 175px;
}
/* line 218, ../sass/store-style.scss */
.page-store #col-center-middle form .content .store_control .store_view a,
.node-type-store.logged-in #col-center-middle form .content .store_control .store_view a {
background: url(../../../images/banggia/xem-bang-hien-thi.png) no-repeat 0 0;
width: 169px;
height: 44px;
}
/* line 219, ../sass/store-style.scss */
.page-store #col-center-middle form .content .store_control .store_save,
.node-type-store.logged-in #col-center-middle form .content .store_control .store_save {
width: 161px;
}
/* line 220, ../sass/store-style.scss */
.page-store #col-center-middle form .content .store_control .store_save input,
.node-type-store.logged-in #col-center-middle form .content .store_control .store_save input {
background: url(../../../images/banggia/tao-bang-hien-thi.png) no-repeat 0 0;
width: 161px;
height: 37px;
}
/* line 222, ../sass/store-style.scss */
.page-store #col-center-middle form .content #store_path,
.node-type-store.logged-in #col-center-middle form .content #store_path {
position: relative;
font-size: 13px;
margin-top: 18px;
display: inline-block;
}
/* line 224, ../sass/store-style.scss */
.page-store #col-center-middle form .content #store_path .form-item label,
.node-type-store.logged-in #col-center-middle form .content #store_path .form-item label {
color: #666666;
font-family: "OpenSansRegular", serif;
margin-left: 15px;
}
/* line 225, ../sass/store-style.scss */
.page-store #col-center-middle form .content #store_path .form-item input,
.node-type-store.logged-in #col-center-middle form .content #store_path .form-item input {
font-family: "OpenSansSemibold", serif;
font-size: 18px;
background: url(../../../images/banggia/path-bg.png) repeat-x 0 -1px;
padding: 7px 0 9px 15px;
width: 610px;
}
/* line 227, ../sass/store-style.scss */
.page-store #col-center-middle form .content #store_path .copy-path,
.node-type-store.logged-in #col-center-middle form .content #store_path .copy-path {
position: absolute;
right: 4px;
bottom: 6px;
background: url(../../../images/banggia/copy-path-bg.png) repeat-x 0 -1px;
text-indent: -9999px;
width: 85px;
height: 37px;
border: none;
}
/* line 230, ../sass/store-style.scss */
.page-store #col-center-middle form .content .content-multigroup-cell-field-chenh-mua input, .page-store #col-center-middle form .content .content-multigroup-cell-field-chenh-ban input,
.node-type-store.logged-in #col-center-middle form .content .content-multigroup-cell-field-chenh-mua input,
.node-type-store.logged-in #col-center-middle form .content .content-multigroup-cell-field-chenh-ban input {
margin: 2px 6px;
}
/* line 234, ../sass/store-style.scss */
.page-store #col-center-middle form .content .content-multiple-remove-cell,
.node-type-store.logged-in #col-center-middle form .content .content-multiple-remove-cell {
vertical-align: middle;
}
/* line 236, ../sass/store-style.scss */
.page-store #col-center-middle form .content .content-multiple-remove-cell .content-multiple-remove-button,
.node-type-store.logged-in #col-center-middle form .content .content-multiple-remove-cell .content-multiple-remove-button {
margin: 0 !important;
float: none;
}
|
wp-content/themes/brightpage/nivo-slider.css
|
thekuoster/lytro_game
|
/*
* jQuery Nivo Slider v2.6
* http://nivo.dev7studios.com
*
* Copyright 2011, Gilbert Pellegrom
* Free to use and abuse under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
*
* March 2010
*/
/* The Nivo Slider styles */
.nivoSlider {
position:relative;
}
.nivoSlider img {
position:absolute;
top:0px;
left:0px;
}
/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
position:absolute;
top:0px;
left:0px;
width:100%;
height:100%;
border:0;
padding:0;
margin:0;
z-index:6;
display:none;
}
/* The slices and boxes in the Slider */
.nivo-slice {
display:block;
position:absolute;
z-index:5;
height:100%;
}
.nivo-box {
display:block;
position:absolute;
z-index:5;
}
/* Caption styles */
.nivo-caption {
position:absolute;
left:0px;
bottom:0px;
background:#000;
color:#fff;
opacity:0.8; /* Overridden by captionOpacity setting */
width:100%;
z-index:8;
}
.nivo-caption p {
padding:5px;
margin:0;
}
.nivo-caption a {
display:inline !important;
}
.nivo-html-caption {
display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
position:absolute;
top:45%;
z-index:9;
cursor:pointer;
}
.nivo-prevNav {
left:0px;
}
.nivo-nextNav {
right:0px;
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav a {
position:relative;
z-index:9;
cursor:pointer;
}
.nivo-controlNav a.active {
font-weight:bold;
}
/*
* You can start editing here
*/
.nivo-directionNav a {
top:40%;
display:block;
width:30px;
height:60px;
background:url(images/arrows.png) no-repeat;
text-indent:-9999px;
border:0;
}
a.nivo-nextNav {
background-position:-30px 0;
right:0;
}
a.nivo-prevNav {
left:0;
}
.nivo-controlNav {
position:absolute;
left:44%;
bottom:-25px;
}
.nivo-controlNav a {
display:block;
width:20px;
height:20px;
background:url(images/bullets.png) no-repeat;
text-indent:-9999px;
border:0;
margin-right:3px;
float:left;
}
.nivo-controlNav a.active {
background-position:-20px 0;
}
#slider a {
display:block; /* IE Fix */
}
|
wp-content/themes/one-page/style.css
|
hussy786/The-Cake-King
|
/*
Theme Name: One Page
Theme URI: http://www.inkthemes.com/one-page-wordpress-org/
Description: One Page is a single-page theme that displays all the essential features of your website on the home page. It makes easy for the users to get all the required information within a single page. One Page is a professional and outstanding responsive business WordPress Theme. One Page was built keeping the simplicity of design in mind. The whole interface of the One Page Theme is clutter free and the place for the most important business content is provided.
You just need to create your pages that will automatically appear on the home page. All page names will be displayed on menu bar. When users click on the particular menu option, they will get redirected to that particular section on the home page. No page browsing. No page loading. It's quick, easy and simple.
Author: InkThemes.com
Author URI: http://www.inkthemes.com
Version: 1.0.8
License: GNU General Public License
License URI: license.txt
Tags: blue, two-columns, responsive-layout, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, editor-style, custom-menu
*/
/*
WARNING! DO NOT EDIT THIS FILE!
To make it easy to update your theme, you should not edit the styles in this file. Instead use
the custom.css file to add your styles. You can copy a style from this file and paste it in
custom.css and it will override the style in this file. You have been warned! :)
*/
@import url(css/reset.css);
@import url(css/fluid_grid_1140.css);
@font-face {
font-family: 'robotoregular';
src: url('fonts/roboto-regular-webfont.eot');
src: url('fonts/roboto-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/roboto-regular-webfont.woff') format('woff'),
url('fonts/roboto-regular-webfont.ttf') format('truetype'),
url('fonts/roboto-regular-webfont.svg#robotoregular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'robotolight';
src: url('fonts/roboto-light-webfont.eot');
src: url('fonts/roboto-light-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/roboto-light-webfont.woff') format('woff'),
url('fonts/roboto-light-webfont.ttf') format('truetype'),
url('fonts/roboto-light-webfont.svg#robotolight') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'robotomedium';
src: url('fonts/roboto-medium-webfont.eot');
src: url('fonts/roboto-medium-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/roboto-medium-webfont.woff') format('woff'),
url('fonts/roboto-medium-webfont.ttf') format('truetype'),
url('fonts/roboto-medium-webfont.svg#robotomedium') format('svg');
font-weight: normal;
font-style: normal;
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin:0;
padding:0;
border:0;
outline:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}
body {
line-height:1.47;
font-family: 'robotolight', sans-serif;
font-size:17px;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
display:block;
}
nav ul {
list-style:none;
}
blockquote, q {
quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content:'';
content:none;
}
a {
margin:0;
padding:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
color:#444;
}
/* change colours to suit your needs */
ins {
background-color:#ff9;
color:#000;
text-decoration:none;
}
/* change colours to suit your needs */
mark {
background-color:#ff9;
color:#000;
font-style:italic;
font-weight:bold;
}
del {
text-decoration: line-through;
}
abbr[title], dfn[title] {
border-bottom:1px dotted;
cursor:help;
}
table {
border-collapse:collapse;
border-spacing:0;
}
/* change border colour to suit your needs */
hr {
display:block;
height:1px;
border:0;
border-top:1px solid #cccccc;
margin:1em 0;
padding:0;
}
input, select {
vertical-align:middle;
}
.sticky{
}
.gallery-caption{
}
/*-----------------------------------------------------------------------------------*/
/* 1. #Common Styles
/*-----------------------------------------------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
font-family: 'robotoregular', serif;
margin:17px 0;
line-height: 31px;
}
h1 {
font-size: 1.412em;
}
h2 {
font-size: 1.294em;
}
h3 {
font-size: 1.176em;
}
h4 {
font-size: 1.059em;
}
h5 {
font-size: 0.941em;
}
h6 {
font-size: 0.824em;
}
textarea:focus, input:focus{
outline: 0;
}
blockquote {
margin-top: 40px;
margin-bottom: 40px;
padding-left: 60px;
min-height: 40px;
background: url(images/blockqoute.png) no-repeat;
}
p {
color: #1d1d1d;
padding-bottom:15px;
line-height: 24px;
}
ul, ol {
padding: 0 0 0 20px;
}
ul {
list-style: disc;
}
ol {
list-style: decimal;
}
table {
width: 100%;
background: #fff;
}
table td, table th {
padding: 8px;
border: 1px solid #d5d6d7;
text-align: left;
}
table th {
background: #49cae6;
font-weight: normal;
color: #fff;
}
table caption {
padding: 1em 0;
text-align: center;
}
dt {
font-weight: bold;
}
dd {
line-height: 1.4;
margin: 4px 0 0;
padding: 0 0 .5em 0;
}
/* select styling */
select {
padding:7px;
margin: 0;
-webkit-border-radius:4px;
-moz-border-radius:4px;
border-radius:4px;
-webkit-box-shadow: 0 3px 0 #075f72, 0 -1px #075f72 inset;
-moz-box-shadow: 0 3px 0 #075f72, 0 -1px #075f72 inset;
box-shadow: 0 3px 0 #075f72, 0 -1px #075f72 inset;
background: url(images/down_arrow_select.jpg) right no-repeat #22b0cf;
color:#fff;
border:none;
outline:none;
display: inline-block;
-webkit-appearance:none;
-moz-appearance:none;
appearance:none;
cursor:pointer;
width: 100%;
}
option {
background: #fff;
width:100%;
color:#000;
}
/* Targetting Webkit browsers only. FF will show the dropdown arrow with so much padding. */
@media screen and (-webkit-min-device-pixel-ratio:0) {
select {padding-right:18px}
}
/* select styling ends*/
.index_titles{
font-size: 2.353em;
text-align:center;
padding-top:27px;
padding-bottom:27px;
border-top:1px solid #18879f;
border-bottom:1px solid #18879f;
line-height:41px;
color: #fff;
}
.index_titles.blog {
text-align:left;
color: #fff;
}
h1.index_titles {
margin-top: 0;
margin-bottom: 0;
}
#crumbs a{
color: #fff;
}
.homepage_nav_title {
background:#087f99;
color:#fff;
}
.font_champagne{
font-family: 'robotolight', serif;
}
:-ms-input-placeholder {
font-size: 1.176em;
font-weight:normal;
color: #000;
}
:-moz-placeholder {
font-size: 1.176em;
font-weight:normal;
color: #000;
}
::-moz-placeholder {
font-size: 1.176em;
font-weight:normal;
color: #000;
}
:-ms-input-placeholder {
font-size: 1.176em;
font-weight:normal;
color: #000;
}
input,textarea
{
padding:18px 10px 13px 10px;
border:2px solid #58abbd;
-webkit-border-radius:2px;
-moz-border-radius:2px;
border-radius:2px;
box-shadow: inset 0px 4px 6px #BDB4B4;
-webkit-box-shadow: inset 0px 4px 6px #BDB4B4;
-moz-box-shadow: inset 0px 4px 6px #BDB4B4;
width:auto;
line-height: 16px;
}
textarea{
height:auto;
}
input[type="submit"]{
border:none;
-webkit-border-radius:7px;
-moz-border-radius:7px;
border-radius:7px;
border-bottom:4px solid #075f72;
border-bottom-width:5px;
background:#22b0cf;
box-shadow: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
font-family: 'robotoregular', serif;
font-size: 1.176em;
font-weight:bold;
color:#fff;
width:auto;
transition: background-color 0.2s ease-in;
cursor:pointer;
}
input[type="submit"]:hover{
background:#1c9ab5;
}
.input_shadow {
box-shadow: 0px -2px 3px #7cd0e3;
}
.default_bg {
background:url('images/featured_bg.png');
overflow:hidden;
}
/* *****search form*****/
.search-box {
position: relative;
width: 100%;
margin: 0;
margin-top:30px;
}
input.search-text {
font-size: 0.824em;
color: #000;
border-width: 0;
background: #ffffff;
padding:7px 9px 8px 9px;
-webkit-border-radius:0;
-moz-border-radius:0;
border-radius:0;
box-shadow: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
width:218px;
line-height: 22px;
}
input[type="submit"].search-button {
position: absolute;
top: 5px;
left: 201px;
background:#20b9da url('images/search_icon.png') no-repeat center;
-webkit-border-radius:0;
-moz-border-radius:0;
border-radius:0;
border:none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow:none;
font-family: 'robotoregular', serif;
font-size: 1.176em;
font-weight:bold;
color:#fff;
width:32px;
height:25px;
transition: background-color 0.2s ease-in;
}
input[type="submit"].search-button:hover {
background:#1c9ab5 url('images/search_icon.png') no-repeat center;
}
/*-----------------------------------------------------------------------------------*/
/* 2. # Top Social Header Styles
/*-----------------------------------------------------------------------------------*/
.social_wrapper{
background:#3b4043;
color:#fff;
height:auto;
height: 39px;
}
.social_icons {
margin-top:10px;
margin-bottom:11px;
float:right;
}
.social_icons .social_logos li.tw a {
background: url(images/twitter.png) no-repeat 0 0;
width: 16px;
height: 16px;
}
.social_icons .social_logos li.tw a:hover {
background: url(images/twitter.png) no-repeat 0 0;
width: 16px;
height: 16px;
}
.social_icons .social_logos li.fb a {
background: url('images/facebook.png') no-repeat 0 0;
width: 16px;
height: 16px;
}
.social_icons .social_logos li.fb a:hover {
background: url('images/facebook.png') no-repeat 0 0;
width: 16px;
height: 16px;
}
.social_icons .social_logos li.gp a {
background: url(images/google.png) no-repeat 0 0;
width: 16px;
height: 16px;
}
.social_icons .social_logos li.gp a:hover {
background: url('images/google.png') no-repeat 0 0;
width: 16px;
height: 16px;
}
.social_icons .social_logos li.rss a {
background: url(images/rss.png) no-repeat 0 0;
width: 16px;
height: 16px;
}
.social_icons .social_logos li.rss a:hover {
background: url('images/rss.png') no-repeat 0 0;
width: 16px;
height: 16px;
}
.social_icons .social_logos li.yt a {
background: url(images/youtube.png) no-repeat 0 0;
width: 16px;
height: 16px;
}
.social_icons .social_logos li.yt a:hover {
background: url('images/youtube.png') no-repeat 0 0;
width: 16px;
height: 16px;
}
.social_icons .social_logos li.pn a {
background: url(images/pinterest.png) no-repeat 0 0;
width: 16px;
height: 16px;
}
.social_icons .social_logos li.pn a:hover {
background: url('images/pinterest.png') no-repeat 0 0;
width: 16px;
height: 16px;
}
#call_us{
float:left;
font-size: 0.765em;
height:auto;
overflow:hidden;
}
#call_us div{
float:left;
}
#call_us img{
padding-top:10px;
padding-bottom:11px;
}
#call_us p {
padding-top: 10px;
padding-bottom: 10px;
padding-left: 10px;
color: #fff;
line-height: 12px;
}
/*-----------------------------------------------------------------------------------*/
/* 3. #Header logo and menu Styles
/*-----------------------------------------------------------------------------------*/
.header_wrapper {
box-shadow: 0px 2px 2px rgba(82, 82, 82, 0.4);
-moz-box-shadow: 0px 2px 2px rgba(82, 82, 82, 0.4);
-webkit-box-shadow: 0px 2px 2px rgba(82, 82, 82, 0.4);
z-index: 1000;
width: 100%;
background: #fff;
font-family: 'robotoregular', serif;
}
#logo {
padding-top:24px;
height: 73px;
}
#logo img {
max-height: 73px;
height: auto;
max-width: 100%;
width: auto;
}
/* ************* */
/* Menu Style
========================================================*/
.wrapper_menu {
margin: 0;
float: right;
}
.menu_container {
margin: 0;
padding: 0;
max-width: 100%;
}
.menu_bar {
display: inline-block;
width: 100%;
margin-left: 0;
padding-bottom: 0px;
padding-top: 20px;
}
#menu {
position: relative;
}
.subMenu{
position: absolute;
}
#menu ul {
list-style-type: none;
}
/*** ESSENTIAL MENU STYLES ***/
.sf-menu, .sf-menu * {
margin: 0;
padding: 0;
list-style: none;
}
.sf-menu li {
position: relative;
}
.sf-menu ul {
position: absolute;
display: none;
top: 100%;
left: 0;
z-index: 99;
}
.sf-menu > li {
float: left;
}
.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
display: block;
}
.sf-menu a {
display: block;
position: relative;
}
.sf-menu ul ul {
top: 0;
left: 100%;
}
/*** MENU SKIN STYLES ***/
#menu .sf-menu {
float: right;
list-style: none;
position: relative;
z-index: 100;
margin: 0;
z-index: 99;
text-align: right;
vertical-align: top;
}
#menu .sf-menu li {
height: 97px;
margin: 0;
position: relative;
display: inline-block;
text-align: right;
margin-bottom: 0;
margin-left: 4px;
margin-right: 0;
}
#menu .sf-menu ul {
padding-top: 0px;
-moz-box-shadow: 0px 2px 8px #bbb;
-webkit-box-shadow: 0px 2px 8px #bbb;
box-shadow: 0px 2px 8px #bbb;
padding: 0 0 0 0px;
}
#menu .sf-menu li:first-child {
/*background-image:none;*/
}
#menu .sf-menu li:last-child {
border-bottom: none;
}
#menu .sf-menu li a {
color: #333;
text-decoration: none;
padding: 36px 14px 30px 16px;
line-height: 28px;
text-transform: uppercase;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
transition: all .3s ease;
}
#menu li.current-menu-item a, #menu li.current-menu-parent a, #menu li.current_page_parent a, #menu li a.selected, #menu li.current_page_item a {
color: #333;
text-shadow: 0 1px 0 #fff;
background: url(images/menubg.png) top repeat-x;
border-bottom: 3px solid #1193de;
-webkit-animation: all 0.7s ease-in-out;
}
#menu li a.selected, #menu li.current_page_item a {
color: #333;
text-shadow: 0 1px 0 #fff;
}
#menu li a:hover {
color: #333;
text-shadow: 0 1px 0 #fff;
background: url(images/menubg.png) top repeat-x;
border-bottom: 3px solid #1193de;
-webkit-animation: all 0.7s ease-in-out;
}
#menu li li a, #menu li li a.selected, #menu li li a:hover {
border: none;
position: relative;
}
#menu li.current-menu-item a:hover, #menu li.current-menu-parent a:hover, #menu li.current_page_parent a:hover, #menu li a:hover.selected {
text-decoration: none;
color: #333;
}
#menu li a:hover.selected {
color: #333;
}
#menu .sf-menu li li {
background-color: #fff;
margin: 0;
padding: 0;
height: auto;
}
#menu .sf-menu li li a {
width: 216px;
height: auto;
float: none;
display: block;
text-align: left;
position: relative;
margin: 0;
padding: 7px 0;
/* background: url('images/arrow.png') no-repeat 0 14px;*/
padding-left: 15px;
/*padding-right:15px;*/
text-shadow: none;
border-left: none;
font-size: 0.824em;
line-height: 28px;
text-transform: capitalize;
color: #333;
font-weight: normal;
-webkit-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
}
#menu .sf-menu li li:last-child {
padding-bottom: 0px;
}
#menu .sf-menu li li a:after {
width: 100%;
content: '';
position: absolute;
left: 0;
top: 0;
}
#menu .sf-menu li li li li:last-child a, #menu .sf-menu li li li li:last-child a:after {
border-top: none;
}
#menu .sf-menu li li:last-child a:after {
width: 100%;
content: '';
position: absolute;
left: 0;
bottom: 0;
}
* html #menu .sf-menu li li a {
display: inline-block;
}
#menu .sf-menu li li a:link, #menu .sf-menu li li a:visited {
background-image: none;
}
#menu .sf-menu li li a.selected, #menu .sf-menu li li a:hover {
text-shadow: none;
background-color: #f7f6f6;
color: #1b95af;
}
#menu .sf-menu li ul {
position: absolute;
left: 0;
margin-top: 4px;
margin-left: 0px;
text-align: center;/*margin:0 auto;*/
}
#menu .sf-menu li ul li {
display: list-item;
float: none;
border-top: none;
background-color: #fff;
border-bottom: 1px solid #ececec;
border-left: 1px solid #ddd;
border-right: 1px solid #ddd;
width: 231px;
}
#menu .sf-menu li ul li ul {
padding-top: 0;
top: 0;
margin-top: 0;
left: -233px;
z-index: 333;
}
#menu .sf-menu li ul li ul li:first-child {
padding-top: 0;
}
* html .sf-menu {
height: 1%;
}
.downarrowclass {
position: absolute;
width: 11px;
height: 8px;
overflow: hidden;
top: 14px;
right: -15px;
background: url('images/up-arrow.png') no-repeat 0 0;
}
.rightarrowclass {
display: block;
width: 11px;
height: 8px;
position: absolute;
margin-top: -3px;
top: 50%;
right: 0;
background: url('images/up-arrow.png') no-repeat 0 0;
}
.ddshadow {
width: 0;
height: 0;
position: absolute;
left: 0;
top: 0;
display: none;
}
#menu .sf-menu li li a:hover {
color: #1b95af;
border: none;
}
#menu .sf-menu li li a {
border: none;
}
/*=======================================================*/
/* Responsive Dropdown Menu Style */
/*=======================================================*/
.it_mobile_menu li {
margin: 0;
display:block;
}
.it_mobile_menu li a {
font-size: 0.906em;
text-decoration: none;
text-transform: capitalize;
text-shadow: none;
border-bottom: 1px solid #e2e0e0;
margin: 0 !important;
}
.it_mobile_menu li:last-child a {
border-bottom: none;
padding-bottom: 15px;
}
.it_mobile_menu li a:hover {
color: #2565ac;
}
.it_mobile_menu > li.current_page_item > a {
color: #2565ac;
}
#mobile_menu {
width: 318px;
border: 1px solid #e2e0e0 !important;
left: -1px;
padding: 0;
background: #f8f8f8;
top: 30px !important;
z-index: 9999px;
list-style: none;
}
#mobile_menu ul {
list-style: none;
margin-bottom: 0;
}
.it_mobile_menu {
position: absolute;
top: 46px !important;
left: 3px;
z-index: 1000;
display: none;
text-align: left;
}
.it_mobile_menu ul {
display: block !important;
visibility: visible !important;
border-bottom: 1px solid #e2e0e0;
}
.it_mobile_menu ul li a {
margin-left: 12px !important;
padding-top: 12px !important;
padding-bottom: 4px !important;
}
.it_mobile_menu ul li:last-child a {
padding-bottom: 10px !important;
}
.it_mobile_menu ul a {
border-bottom: none;
}
.mobile_nav {
color: #3B3B3B;
display: none;
background: #f8f8f8;
border: 1px solid #e2e0e0;
position: relative;
padding: 10px 22px 8px 46px;
font-size: 0.706em;
text-transform: uppercase;
font-weight: bold;
width: 250px;
}
.mobile_nav:before, .mobile_nav:after {
content: '';
position: absolute;
top: 0;
width: 2px;
height: 100%;
}
.mobile_nav:before {
left: 0;
}
.mobile_nav:after {
right: 0;
}
.mobile_nav:hover {
text-decoration: none;
color: #3B3B3B;
}
.mobile_nav > span {
display: block;
width: 15px;
height: 10px;
background: url(images/responsive_arrow.png) no-repeat;
position: absolute;
top: 19px;
left: 63px;
-moz-transition: all 0.5s ease-in-out;
-webkit-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
.mobile_nav.opened > span {
-moz-transform: rotate(-180deg);
-webkit-transform: rotate(-180deg);
-o-transform: rotate(-180deg);
transform: rotate(-180deg);
}
/*-----------------------------------------------------------------------------------*/
/* 4. #Full Screen Slider Style
/*-----------------------------------------------------------------------------------*/
/*slider text*/
.homepage_top_feature {
margin-top: 90px;
}
.homepage_top_feature img{
width: 100%;
}
.slider_img_container {
position: relative;
}
.slider_text_container {
position: absolute;
top: 31%;
width: 100%;
}
.slider_text_container h2 {
color: #fff;
font-size: 2.059em;
line-height: 40px;
margin-bottom: 10px;
max-height: 92px;
overflow: hidden;
text-shadow: 0px 2px 0px rgba(0,0,0,0.2);
font-family: 'robotomedium', serif;
}
.slider_text_container a {
color: #fff;
background: rgba(47,147,208,0.5);
padding: 15px;
line-height: 33px;
overflow: hidden;
text-shadow: 0px 2px 0px rgba(0,0,0,0.2);
}
.slider_text_container p{
overflow: hidden;
font-size: 1.588em;
width: 60%;
}
/*-----------------------------------------------------------------------------------*/
/* 5. #Featured Text Styles
/*-----------------------------------------------------------------------------------*/
.featured_text_area {
text-align: center;
line-height: 36px;
}
#fta_top{
padding-top: 38px;
font-size: 2.000em;
line-height: 39px;
}
#fta_bottom {
font-size: 1.412em;
padding-bottom:50px;
line-height: 26px;
}
/*-----------------------------------------------------------------------------------*/
/* 6. # Our Service Box Styles
/*-----------------------------------------------------------------------------------*/
.services_box_container {
margin-top:85px;
margin-bottom: 30px;
}
#services_box_container4{
margin-right:0px;
}
p.services_box_rect_head{
padding:157px 0px 10px 21px;
font-size: 1.235em;
font-family:'robotomedium', sans-serif;
overflow:hidden;
text-align:center;
width: 223px;
}
p.services_box_rect_para{
text-align:center;
padding-left:18px;
padding-right:18px;
overflow: hidden;
}
.rect_box {
overflow: hidden;
margin-top: -130px;
background: #085262;
width: 265px;
border-bottom:6px solid #0dabce;
}
.rect_box p, .rect_box p a{
color: white;
}
/*-----------------------------------------------------------------------------------*/
/* 7. #Featured Blog Styles
/*-----------------------------------------------------------------------------------*/
.featured_blog_content{
overflow:hidden;
padding-top:75px;
padding-bottom: 32px;
}
.featured_blog_content .post:nth-child(1){
padding-top:0px;
padding-right:0px;
}
.featured_blog_content .post .post_heading_wrapper img {
box-shadow: none;
}
.featured_blog_content .post:nth-child(3n){
float: none;
margin-right:0px;
}
.featured_blog_content .post{
width: 347px;
display: inline-table;
margin-right: 49px;
}
.featured_blog_content .post .post_content p{
overflow:hidden;
}
.featured_blog_content .post_heading_wrapper .thumb img {
height:100%;
transition: all .5s;
width:100%;
}
.featured_blog_content .post_heading_wrapper .thumb {
height: 197px;
overflow: hidden;
margin-bottom:29px;
width: 100%;
-moz-transform:scale(1,1);
-webkit-transform:scale(1,1);
-o-transform:scale(1,1);
-ms-transform:scale(1,1);
transform:scale(1,1);
-webkit-transition: all 0.2s ease-in;
-moz-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
-ms-transition: all 0.2s ease-in;
transition: all 0.2s ease-in;
}
.featured_blog_content .post_heading_wrapper img:hover {
-moz-transform:scale(1.5,1.5);
-webkit-transform:scale(1.5,1.5);
-o-transform:scale(1.5,1.5);
-ms-transform:scale(1.5,1.5);
transform:scale(1.5,1.5);
}
.featured_blog_content .post .post_title {
overflow: hidden;
text-overflow: ellipsis;
}
/***********************************************/
/*-----------------------------------------------------------------------------------*/
/* 8. #Gallery Hexagon Styles
/*-----------------------------------------------------------------------------------*/
.gallery_wrapper {
margin-bottom:0px;
padding-top: 65px;
overflow:hidden;
}
.gallery_tabs {
font-size: 1.118em;
margin-left:auto;
margin-right:auto;
width:100%;
text-align: center;
}
.gallery_tabs ul, li, a{
text-decoration:none;
display:inline-block;
}
.gallery_tabs a{
background:#20b9da;
padding: 10px 10px 10px 8px;
border-bottom:2px solid #022128;
color:#fff;
margin-left: 16px;
transition: background-color 0.2s ease-in;
text-transform:capitalize;
}
.gallery_tabs a:hover{
background:#085262;
}
.gallery_tabs li.active a {
background:#085262;
}
/*-----------------------------------------------------------------------------------*/
/* 9. #Contact page Styles
/*-----------------------------------------------------------------------------------*/
.contact_wrapper {
overflow: hidden;
padding-top: 70px;
padding-bottom: 70px;
text-align: center;
}
.contact_container {
overflow: hidden;
}
.contact_input p{
margin-bottom:36px;
margin-left:110px;
}
.contact_input h1 a {
color: #a8a8a8;
}
.contact_input h1 {
margin-bottom: 0;
}
.contact_input textarea , .contact_input input{
width:394px;
}
.contact_input textarea{
width:394px;
height:208px;
}
/* *** address and map*** */
.add_n_map p{
display:inline;
padding-left:16px;
}
.add_n_map h1 {
padding-bottom:16px;
border-bottom:1px solid #edebf0;
margin-bottom:19px;
}
.contact-image-mail-icon{
background: url(images/mail_icon.png) no-repeat 0 0;
width: 16px;
height: 11px;
display:inline-block;
}
.contact-image-tele-icon{
background: url(images/tele_icon.png) no-repeat 0 0;
width: 16px;
height: 16px;
display:inline-block;
}
.contact-image-bookmark-icon{
background: url(images/bookmark_icon.png) no-repeat 0 0;
width: 16px;
height: 18px;
display:inline-block;
}
.contact-image-globe-icon{
background: url(images/globe_icon.png) no-repeat 0 0;
width: 16px;
height: 16px;
display:inline-block;
}
.anchor_bordera h1 {
margin-top: 0px;
}
/*-----------------------------------------------------------------------------------*/
/* 10. #Footer Styles
/*-----------------------------------------------------------------------------------*/
.footer {
padding-top:52px;
background:#111;
overflow:hidden;
color: #d8d4d4;
padding-bottom:50px;
}
.footer ul {
padding: 0 0 0 0;
}
.footer ul li {
background: url(images/footer-li-col.png) no-repeat 0 6px;
padding-left:28px;
}
.footer ul li a{
border-bottom:1px dotted #4b4a4a;
padding-bottom:6px;
display:block;
}
.footer ol li{
display: list-item;
padding-left: 3px;
margin-left: 5px;
list-style-type: decimal;
}
.footer h1 {
font-family: 'robotoregular', serif;
}
.footer p{
line-height: 25px;
color: #fff;
}
.footer li{
display:block;
padding-bottom: 13px;
}
.footer_columns.second {
margin-right:16px;
margin-left:5px;
}
.footer_columns.third {
margin-right:11px;
margin-left:10px;
}
.footer_columns a{
color: #fff;
}
.footer_columns.last{
margin-right:0px;
margin-left:21px;
}
.footer_columns.first {
margin-right:21px;
margin-left:0px;
}
.gallery_widgets{
overflow:hidden;
}
.gallery_widgets ul li {
background: none;
padding-left: 0px;
}
.gallery_widgets img{
width:auto;
height:auto;
min-width:58px;
min-height:63px;
max-width:58px;
max-height:63px;
margin-right:3px;
margin-bottom:3px;
}
.gallery_widgets img:hover {
}
.gallery_widgets li{
display:inline;
border-bottom: none;
}
/* footer calender */
.footer #wp-calendar tbody td {
padding: 6px;
}
/* footer calender */
/* footer img */
.footer img{
width:100%;
}
.footer .wp-caption-text {
color: #000;
}
.footer .wp-smiley {
width:15px;
}
/* footer img */
/* footer widget search */
.footer .searchform {
padding: 0px;
border:none;
}
/* footer widget search */
.footer .tagcloud {
padding: 0px;
border:none;
display: inline-block;
}
.footer .textwidget {
padding: 0px;
border:none;
line-height: 24px;
}
.footer option {
background: #fff;
width:100%;
color:#000;
}
/* rss widget */
.footer .rsswidget{
padding-bottom: 10px;
display:inline-block;
}
.footer .rsswidget img{
width: auto;
}
.footer .rssSummary {
padding-top:10px;
padding-bottom: 10px;
line-height: 18px;
font-size: 0.941em;
}
.footer .rss-date {
display:block;
}
.footer cite {
margin-bottom:10px;
border-bottom:1px solid #d5d6d7;
}
/* rss widget */
/* footer search widget */
.footer .searchform {
position:relative;
}
.footer #searchsubmit {
width: 35px;
height: 31px;
margin-left: -4px;
background: #20b9da url('images/search_icon.png') no-repeat center;
border: 3px solid #fff;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
font-family: 'robotoregular', serif;
font-size: 1.176em;
font-weight: bold;
color: #000;
transition: background-color 0.2s ease-in;
}
.footer #searchsubmit input{
color:#fff;
}
.footer #search {
width:78%;
padding: 11px 10px 10px 10px;
border: none;
box-shadow: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
line-height: 16px;
color: #000;
}
.footer input[type="submit"]{
border-radius:0;
-webkit-border-radius:0;
-moz-border-radius:0;
}
.footer input[type="text"]{
border-radius:0;
-webkit-border-radius:0;
-moz-border-radius:0;
}
/* search widgets */
/*-----------------------------------------------------------------------------------*/
/* 11. #Copyright Footer Styles
/*-----------------------------------------------------------------------------------*/
.copyright_text{
width:100%;
}
.copyright_text p{
font-size: 1.235em;
padding-top:29px;
padding-bottom:22px;
color: #1d1d1d;
}
.copyright_text p a{
color: #1d1d1d;
}
.footer_social_icons {
float:right;
}
.footer_social_icons div{
display:inline-block;
margin-left: 7px;
}
.footer_social_icons .social_logos li.tw a {
background: url(images/social-icons.png) no-repeat -94px 0;
width: 45px;
height: 66px;
}
.footer_social_icons .social_logos li.tw a:hover {
background: url(images/social-icons.png) no-repeat -94px -68px;
width: 45px;
height: 66px;
}
.footer_social_icons .social_logos li.fb a {
background: url('images/social-icons.png') no-repeat -47px 0;
width: 45px;
height: 66px;
}
.footer_social_icons .social_logos li.fb a:hover {
background: url('images/social-icons.png') no-repeat -47px -68px;
width: 45px;
height: 66px;
}
.footer_social_icons .social_logos li.gp a {
background: url(images/social-icons.png) no-repeat -188px 0;
width: 45px;
height: 66px;
}
.footer_social_icons .social_logos li.gp a:hover {
background: url('images/social-icons.png') no-repeat -188px -68px;
width: 45px;
height: 66px;
}
.footer_social_icons .social_logos li.ln a {
background: url(images/social-icons.png) no-repeat -282px 0;
width: 45px;
height: 66px;
}
.footer_social_icons .social_logos li.ln a:hover {
background: url('images/social-icons.png') no-repeat -282px -68px;
width: 45px;
height: 66px;
}
.footer_social_icons .social_logos li.yt a {
background: url(images/social-icons.png) no-repeat 0 0;
width: 45px;
height: 66px;
}
.footer_social_icons .social_logos li.yt a:hover {
background: url('images/social-icons.png') no-repeat 0 -68px;
width: 45px;
height: 66px;
}
.footer_social_icons .social_logos li.pn a {
background: url(images/social-icons.png) no-repeat -235px 0;
width: 45px;
height: 66px;
}
.footer_social_icons .social_logos li.pn a:hover {
background: url('images/social-icons.png') no-repeat -235px -68px;
width: 45px;
height: 66px;
}
/*-----------------------------------------------------------------------------------*/
/* 12. #Services Styles
/*-----------------------------------------------------------------------------------*/
.ch-grid {
margin: 0px 0 0 0;
padding: 0;
list-style: none;
display: block;
text-align: center;
width: 100%;
z-index:1000;
}
.ch-grid:after,
.ch-item:before {
content: '';
display: table;
}
.ch-grid:after {
clear: both;
}
.ch-grid li {
width: 220px;
display: inline-block;
margin-bottom:40px;
position:relative;
float: left;
margin-left: auto ;
margin-right: 75px ;
display: table-cell;
}
.ch-grid ul {
display: table;
}
/****style5****/
.ch-item {
width: 118%;
height: 118%;
border-radius: 50%;
border: solid #1B4046;
position: relative;
cursor: default;
box-shadow:
inset 0 0 0 0 rgba(200,95,66, 0.4),
inset 0 0 0 16px rgba(255,255,255,0.6),
0 1px 2px rgba(0,0,0,0.1);
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.ch-img-1 {
background-size:260px 260px;
border-radius:50%;
height: 260px;
}
.ch-img-1 img{
border-radius: 50%;
width: 260px;
height: 260px;
text-align: center;
}
.ch-img-2 {
background-size:260px 260px;
border-radius:50%;
height: 260px;
}
.ch-img-2 img{
border-radius: 50%;
width: 260px;
height: 260px;
text-align: center;
}
.ch-img-3 {
background-size:260px 260px;
border-radius:50%;
height: 260px;
}
.ch-img-3 img{
border-radius: 50%;
width: 260px;
height: 260px;
text-align: center;
}
.ch-img-4 {
background-size:260px 260px;
border-radius:50%;
height: 260px;
}
.ch-img-4 img{
border-radius: 50%;
width: 260px;
height: 260px;
text-align: center;
}
.ch-info {
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
opacity: 0;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-o-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-backface-visibility: hidden; /*for a smooth font */
}
.ch-item:hover {
box-shadow:
inset 0 0 0 110px rgba(200,95,66, 0.4),
inset 0 0 0 16px rgba(255,255,255,0.8),
0 1px 2px rgba(0,0,0,0.1);
}
.ch-item:hover .ch-info {
opacity: 1;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-o-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
/*-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
/* 13. #Wookmark Gallery Styles
/*-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
#main {
overflow: hidden;
}
/**
* Grid items animation
*/
#tiles li {
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.wookmark-placeholder {
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
/**
* Filters
*/
#filters {
list-style-type: none;
text-align: center;
margin: 0 5% 0 5%;
}
#filters li {
font-size: 1.059em;
font-family: 'robotoregular', serif;
-webkit-transition: all 0.15s ease-out;
-moz-transition: all 0.15s ease-out;
-o-transition: all 0.15s ease-out;
transition: all 0.15s ease-out;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
padding-top: 10px;
text-shadow: 0 1px 0 rgba(0,0,0,0.4);
}
#filters li:hover {
cursor: pointer;
}
#filters li.active {
color: #ffffff;
}
/* main css */
#main {
margin: 30px 0 70px 0;
position: relative;
}
/**
* Grid container
*/
#tiles {
list-style-type: none;
position: relative; /** Needed to ensure items are laid out relative to this container **/
margin: 0;
padding: 0;
}
/**
* Grid items
*/
#tiles li {
width: 200px;
display: none; /** Hide items initially to avoid a flicker effect **/
cursor: pointer;
padding: 4px;
}
#tiles li.inactive {
visibility: hidden;
opacity: 0;
}
#tiles li img {
display: block;
position: absolute;
left: 42%;
top: 46%;
}
/**
* Grid item text
*/
#tiles li p {
color: #666;
font-size: 0.706em;
margin: 7px 0 0 7px;
}
/**
* Placerholder css
*/
.wookmark-placeholder {
z-index: -1;
}
/*-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
/* 13. #Hex gallery Styles
/*-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
/* 14. #Post page Styles
/*-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
.post:nth-child(1){
padding-top:70px;
}
.page:nth-child(1) {
padding-top: 70px;
}
.post{
overflow: hidden;
}
p.post a {
color: #989696;
}
.post a{
color:#000;
display:inline-block;
}
.post .post_content ul li{
display: list-item;
padding-left: 3px;
margin-left: 5px;
list-style-type: disc;
}
.post .post_content ol li{
display: list-item;
padding-left: 3px;
margin-left: 5px;
list-style-type: decimal;
}
.post_content {
border-bottom:1px #eae7e7 solid;
position: relative;
}
.post_content a{
color: #989696;
padding-bottom: 1px;
}
.post_content a:hover{
-webkit-transition: color 0.5s;
-moz-transition: color 0.5s;
transition: color 0.5s;
color: #087F99;
}
.post_heading_wrapper img {
border: 1px solid #d5d6d7;
box-shadow: 1px 0px 5px #A29C9C;
height: auto;
max-height:363px;
width: 100%;
margin-bottom:29px;
}
.page_heading h1,h1.post_title {
margin-top:0;
line-height: 27px;
margin-bottom: 25px;
}
.postimage_container {
position:relative;
overflow:hidden;
}
.post_category{
top: 43px;
left: 1px;
position: absolute;
background: #02404e;
opacity: 0.59;
white-space: nowrap;
text-align:center;
font-family: 'robotoregular', serif;
font-size: 1.235em;
font-weight: 600;
padding: 10px;
box-shadow: 0px 2px 2px #C5CFD1;
}
a.post_category {
color: #fff;
}
ul.post_meta {
font-size: 0.824em;
padding-bottom: 26px;
padding-left: 0;
}
.post_meta span {
line-height: 24px;
}
.posted_by a{
color: #989696;
transition: all .5s;
}
.posted_by a:hover{
color: #22b0cf;
}
.post_comment {
float:right;
color: #989696;
}
.post_comment a {
padding-left: 4px;
color: #989696;
transition: all .5s;
}
.post_comment a:hover {
color: #22b0cf;
}
.post_title h1 {
font-size: 1.294em;
margin-top: 0;
}
.post_content{
line-height: 30px;
}
.post_content{
padding-bottom: 27px;
margin-bottom: 38px;
}
.post_content img {
max-width: 100%;
height: auto;
width: auto;
}
.post_content table th a{
color: #fff;
}
.post iframe, .page iframe {
width: 100%;
}
.single.index_titles {
font-size: 1.176em;
padding-top: 15px;
padding-bottom: 15px;
text-shadow: 0px 1px 0px rgb(151, 151, 151);
}
.read-more {
padding-top: 8px;
font-family: 'robotoregular', serif;
color: #096c82;
font-weight:600;
line-height: 15px;
}
a.read-more {
color:#096c82;
}
.thumb span {
position: absolute;
background: rgba(2,64,78,0.49);
top: 1px;
left: 1px;
white-space: nowrap;
text-align:center;
color: #fff;
font-family: 'robotoregular', serif;
padding-left: 10px;
padding-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
border-bottom: 2px solid rgba(0,0,0,0.3);
text-shadow: 0px 1px 0px rgb(0,0,0);
}
.thumb span a {
color: #fff;
}
.thumb {
float:left;
position:relative;
overflow:hidden;
}
/* paging */
.paging li a {
padding: 7px;
color: white;
border: none;
margin-right:7px;
margin-bottom:42px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
border-bottom: solid #075f72;
border-bottom-width: 3px;
background: #22b0cf;
box-shadow: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
font-family: 'robotoregular', serif;
font-size: 1.176em;
font-weight: bold;
color: #fff;
transition: background-color 0.2s ease-in;
cursor: pointer;
display: inline-block;
float:left;
}
.paging li a:hover{
background: #087f99;
}
.paging .current{
background: #087f99;
}
.nav-next {
float: right;
}
#nav-single {
margin-bottom: 38px;
}
#nav-single a{
color: #989696;
transition: all .3s;
}
#nav-single a:hover{
color: #000;
}
/*404 style starts
**************** */
.error input {
width: 92%;
}
.searchform {
position:relative;
}
.error #s {
color: #FFF;
border-width: 0;
background: #08768e;
overflow:hidden;
border-radius:4px;
width: 93%;
box-shadow: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
}
.error .tagcloud, .textwidget {
padding: 20px;
border:1px solid #d5d6d7;
}
.error #searchsubmit {
width: 35px;
height: 33px;
margin-left: -9px;
border-top-right-radius:4px;
border-bottom-right-radius:4px;
border-top-left-radius:0px;
border-bottom-left-radius:0px;
background: #20b9da url('images/search_icon.png') no-repeat center;
border: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
font-family: 'robotoregular', serif;
font-size: 1.176em;
font-weight: bold;
color: #fff;
transition: background-color 0.2s ease-in;
}
#searchsubmit input{
color:#fff;
}
.error.sidebar .searchform {
padding: 0px;
border: none;
text-align: center;
}
.error.sidebar #search {
width:41%;
padding-bottom: 9px;
padding-top: 8px;
padding-left: 10px;
padding-right:9px;
border: none;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
box-shadow: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
line-height: 16px;
color: #fff;
}
.fourzerofourerror {
text-align: center;
font-size: 2.824em;
line-height: 37px;
}
.fourzerofourerror.somewhat {
font-size: 1.000em;
border-bottom: 1px solid #000;
padding-bottom: 50px;
}
.error.sidebar .itseems {
text-align: center;
padding-top: 30px;
padding-bottom: 20px;
}
/********************************/
/*********** sidebar ************/
/********************************/
.sidebar {
margin-top:70px;
margin-left:39px;
margin-bottom:42px;
overflow: hidden;
}
.sidebar h3:nth-child(1) {
margin-top:0px;
}
.sidebar h3 {
font-size: 1.235em;
font-family: 'robotoregular', serif;
font-weight: 600;
}
.searchform {
padding: 20px;
border:1px solid #d5d6d7;
}
.sidebar > ul {
border:1px solid #d5d6d7;
padding: 1.176em;
margin-bottom: 17px;
}
.sidebar a{
color: #989696;
transition:all .3s;
}
.sidebar li a:hover{
color: #22b0cf;
padding-left:17px;
}
.sidebar p {
padding:15px 0;
line-height:26px;
}
.sidebar ul li {
padding: 9px 0;
margin-left: 0px;
display: block;
line-height: 24px;
border-bottom: 1px dotted #d3d3d3;
}
.sidebar ul li:last-child{
border-bottom:none;
}
.sidebar .ngg-widget img{
margin: 0pt 12px 12px 0px;
}
.sidebar img {
max-width:100%;
}
.sidebar input {
width: 92%;
}
.searchform {
position:relative;
}
.sidebar #s {
color: #FFF;
border-width: 0;
background: #08768e;
overflow:hidden;
border-radius:4px;
width: 93%;
box-shadow: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
}
.sidebar .tagcloud, .textwidget {
padding: 20px;
border:1px solid #d5d6d7;
}
.sidebar #searchsubmit {
width: 35px;
height: 33px;
margin-left: -9px;
border-top-right-radius:4px;
border-bottom-right-radius:4px;
border-top-left-radius:0px;
border-bottom-left-radius:0px;
background: #20b9da url('images/search_icon.png') no-repeat center;
border: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
font-family: 'robotoregular', serif;
font-size: 1.176em;
font-weight: bold;
color: #fff;
transition: background-color 0.2s ease-in;
}
#searchsubmit input{
color:#fff;
}
.sidebar #search {
width:82%;
padding-bottom: 9px;
padding-top: 8px;
padding-left: 10px;
padding-right:9px;
border: none;
background: #08768e;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
box-shadow: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
line-height: 16px;
color: #fff;
}
/* search widgets */
/* rss widget */
.sidebar .rsswidget{
padding-bottom: 10px;
}
.sidebar .rssSummary {
padding-top:10px;
padding-bottom: 10px;
line-height: 18px;
}
.sidebar .rss-date {
display:block;
}
.sidebar cite {
margin-bottom:10px;
border-bottom:1px solid #d5d6d7;
}
.sidebar .tagcloud a{
transition: color .7s ease-in-out;
color: #989696;
padding-bottom: 1px;
border-bottom: none;
}
.sidebar .tagcloud a:hover{
color: #22b0cf;
padding-bottom: 0px;
border-bottom: 1px solid #22b0cf;
}
/********************************************/
.sidebar_headings {
font-size: 1.235em;
font-family: 'robotoregular', serif;
font-weight:600;
}
.sidebar_container {
padding-top:25px;
margin-left:39px;
}
.sidebar_widget {
padding-top:45px;
overflow: hidden;
}
/* search box */
.sidebar_widget input.search-text {
color: #FFF;
border-width: 0;
background: #08768e;
overflow:hidden;
border-radius:4px;
width: 93%;
}
.sidebar_widget input[type="submit"].search-button {
width: 35px;
height: 37px;
top: 2px;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
left: 88%;
}
.search-border .search-box {
margin-top:0px;
}
.search-border{
border: 1px solid #d5d6d7;
padding: 20px;
margin-top: 24px;
width: 87%;
}
/* search box ends */
/* ** blog posts */
.sidebar_blog_posts {
background: #ffffff;
border: 1px solid #d5d6d7;
width: 90%;
height: auto;
padding: 15px;
margin-top: 20px;
overflow: hidden;
}
.popular_tab{
position: absolute;
top: -40px;
left: -1px;
}
.popular_tab a{
background: #02ab68;
color: #ffffff;
padding: 13px 14px 11px 14px;
cursor: pointer;
}
.popular_tab p{
font-family: 'Chaparral Pro';
font-size: 0.882em;
}
.popular_content {
border: 1px solid #ededed;
position: relative;
margin-top: 39px;
padding-top: 17px;
}
.popular_tab_content_wrapper div{
float: left;
display: inline-block;
}
.popular_tab_content_wrapper{
font-size: 0.824em;
overflow: hidden;
padding: 0px 17px 17px 17px;
}
.popular_content img{
height: 54px;
width: 54px;
}
.popular_tab_content {
width: 76%;
padding-left: 8px;
height: 54px;
overflow: hidden;
text-overflow: ellipsis;
font-size: 0.765em;
}
.popular_tab_content a {
color:#218ABC;
padding-bottom:5px;
}
.popular_tab.recent a{
background:#eaeaea;
color:#000000;
cursor:pointer;
}
.popular_tab.recent {
left: 96px;
}
.popular_tab.comments {
left: 184px;
}
.popular_tab.comments a{
background:#eaeaea;
color:#000000;
}
#recent {
display:none;
}
#popular {
display:block;
}
/* ** blog posts ends*/
/* *****************calender widgets*********** */
#calendar_wrap{
padding: 18px 17px 18px 16px;
border:1px solid #d5d6d7;
background:#fff;
margin-top: 20px;
}
#wp-calendar {
color: #666;
font-size: 0.706em;
}
#wp-calendar a { color: #467b89 }
#wp-calendar caption {
background: #08768e;
color: #fff;
font-size: 0.941em;
padding: 10px 0;
text-align: center;
border: 1px solid #d5d6d7;
border-bottom:none;
z-index: -99;
}
#wp-calendar thead th {
font-size: 0.824em;
text-align: center;
padding: 5px 0;
color: #fff;
text-transform: uppercase;
text-shadow: 0 1px 0 rgba(255,255,255,0.5);
border-bottom: 1px solid #d5d6d7;
background: #333333;
}
#wp-calendar tbody td {
color: #666;
text-shadow: 0 1px 0 rgba(255,255,255,0.5);
padding: 13px;
text-align: center;
font-weight: bold;
border: 1px solid #d5d6d7;
background: #fff;
font-size: 0.824em;
}
#wp-calendar tbody td:hover {
color: #fff;
border: 1px solid #467b89;
text-shadow: 0 1px 0 rgba(0,0,0,0.3);
background: #6eafbf;
background: -moz-radial-gradient(50% 50% 0deg,ellipse cover, #6eafbf, #569EB1);
background: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 20, from(#6eafbf), to(#569EB1));
transition: all .5s;
}
#wp-calendar tbody td.pad {
background: #f5f5f5;
background: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#ececec));
background: -moz-linear-gradient(top, #f5f5f5, #ececec);
}
#wp-calendar tfoot {
color: #e0e0e0;
font-size: 0.824em;
text-align: center;
}
#wp-calendar tfoot tr {
border:1px solid #efefef;
}
#wp-calendar tfoot td { padding: 10px 10px }
#wp-calendar tfoot a {
color: #666;
text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}
#wp-calendar tfoot td#prev { text-align: left }
#wp-calendar tfoot td#next { text-align: right; border-right: 1px solid #d5d6d7; }
#wp-calendar #today {
color: #fff;
border: 1px solid #467b89;
text-shadow: 0 1px 0 rgba(0,0,0,0.3);
background: #6eafbf;
background: -moz-radial-gradient(50% 50% 0deg,ellipse cover, #6eafbf, #569EB1);
background: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 20, from(#6eafbf), to(#569EB1));
}
/* *****************calender widgets ends*********** */
/****** widget featured project 4 ********/
.featured_project {
padding:15px;
border: 1px solid #d5d6d7;
margin-top:20px;
background:#fff;
}
.futured_project_container {
background: #08768e;
height:200px;
}
/****** widget featured project 4 ends********/
/**** widget 5 text **/
.widget_text p{
line-height:26px;
padding-top:11px;
}
/**** widget 5 text ends **/
/**** widget 6 project topics **/
.project_topics {
padding: 22px 20px 22px 20px;
border: 1px solid #d5d6d7;
margin-top: 20px;
background: #fff;
font-size: 0.824em;
}
.project_topics li{
display:block;
padding-bottom:26px;
}
.project_topics ul li{
background-image:url(images/widget-li-bullet.png);
background-repeat:no-repeat;
background-position: 0px 3px;
padding-left: 23px;
}
/**** widget 6 project topics ends **/
/**** widget 7 widget gallery **/
.widget_gallery {
padding: 14px 0px 14px 14px;
border: 1px solid #d5d6d7;
margin-top:20px;
background:#fff;
font-size: 1.118em;
}
.gallery_widgets.sidebar img{
padding:4px;
margin-right: 19px;
margin-bottom: 19px;
border:1px solid #f0f0f0;
max-height:75px;
max-width:75px;
min-height:75px;
min-width:75px;
}
/**** widget 7 widget gallery ends **/
/********************************/
/**** sidebar ends ************/
/********************************/
/* Commentlist Style
========================================================*/
/*Comment Output*/
.comment_section ul, .comment_section ol {
padding-left: 0;
}
.commentlist .reply a {
position:absolute;
top: 40px;
right: 20px;
background:url(images/reply.png) no-repeat;
width:40px;
height:30px;
}
.commentlist .reply a {
font-size:0;
}
.commentlist .depth-1{margin-left:0; width: 100%;}
.commentlist .depth-2{margin-left:6%; width: 94%;}
.commentlist .depth-3{margin-left:6%; width: 94%;}
.commentlist .depth-4{margin-left:6%; width: 94%;}
.commentlist .depth-5{margin-left:6%; width: 94%;}
.commentlist .alt {}
.commentlist .odd {}
.commentlist .even {}
.commentlist .thread-alt {
width: 100%;
}
.commentlist .thread-odd {
width: 100%;
}
.commentlist .thread-even {
width:100%
}
.commentlist li ul.children .alt {}
.commentlist li ul.children .odd {}
.commentlist li ul.children .even {}
.commentlist .comment-body{
padding: 20px;
background: #ffffff;
border: solid 1px #e1e1e1;
margin-bottom: 42px;
position: relative;
-webkit-box-shadow: 0 0 5px 2px #f5f5f5;
-moz-box-shadow: 0 0 5px 2px #f5f5f5;
box-shadow: 0 0 5px 2px #f5f5f5;
border-radius:5px;
}
.commentlist .comment-body p{
line-height:24px;
padding:10px 0;
position:relative;
}
.commentlist .vcard {
position:relative;
display:inline;
}
.commentlist .vcard cite.fn {
font-style: normal;
padding-top:20px;
display: inline;
float: left;
padding-left:20px;
}
.commentlist .vcard span.says {
display:none;
}
.commentlist .vcard img.photo {}
.commentlist .vcard img.avatar {
border-radius:50%;
width:83px;
height:83px;
}
.commentlist .vcard cite.fn a.url {
color: #000000;
padding-left:0px;
padding-right:15px;
}
.comment-awaiting-moderation {
position: absolute;
left: 16.3%;
}
.commentlist br {
display: none;
}
.commentlist .comment-meta {
padding-top: 38px;
}
.commentlist .comment-meta a:nth-child(2){
padding-left:0px;
}
.commentlist .comment-meta a {
font-size: 90%;
padding-left:20px;
}
.commentlist .commentmetadata {
padding-bottom: 28px;
}
.commentlist .commentmetadata a {
padding-top:3px;
color:#7f7e7e;
}
.commentlist .parent {}
.commentlist .comment {}
.commentlist .children {}
.commentlist .pingback {}
.commentlist .bypostauthor {}
.commentlist .comment-author {}
.commentlist .comment-author .avatar {
display:inline;
float: left;
margin-bottom: 10px;
padding: 0px 7px 1px 0;
background-color: #f5f3f3;
padding: 0;
}
.commentlist .comment-author-admin {}
.commentlist {}
.commentlist li {}
.commentlist li p {}
.commentlist li ul {}
.commentlist li ul.children li {}
.commentlist li ul.children li.alt {}
.commentlist li ul.children li.byuser {}
.commentlist li ul.children li.comment {}
.commentlist li ul.children li.depth-id{}
.commentlist li ul.children li.bypostauthor {}
.commentlist li ul.children li.comment-author-admin {}
#cancel-comment-reply {}
#cancel-comment-reply a {}
#commentform p {
padding: 10px 0;
}
.comment-meta a, #commentform p a{
padding-left: 4px;
color: #989696;
transition: all .5s;
}
.comment-meta a:hover, #commentform p a:hover {
color: #22b0cf;
}
.comment-form-comment textarea {
margin-top:20px;
margin-bottom:20px;
float:left;
clear:both;
width:95%;
}
.comment-form-comment label{
float:left;
}
.comment-form label{
display: block;
}
#comment-form input {
width: 58%;
}
#comment-form .form-submit input {
width: 100%;
}
.submit input#submit {
width: auto;
padding: 13px 10px 13px 10px;
}
.form-allowed-tags {
float:left;
}
.form-submit {
float:left;
}
.form-submit input{
margin-top:20px;
margin-bottom:20px;
}
.comment-reply-title{}
.post-info{
padding:0 0 10px 0;
}
.logged-in-as {
padding:20px 0;
}
.logged-in-as a{
padding-left:5px;
text-decoration:none;
color:#E85805;
display:inline;
}
.nocomments {
margin-bottom:42px;
}
/* Commentlist Style Ends
========================================================*/
/* =Page style
-------------------------------------------------------------- */
.content-bar {
padding-top: 70px;
line-height: 30px;
}
.page-title {
margin-top: 0;
}
.content-bar ul li{
display: list-item;
padding-left: 3px;
margin-left: 5px;
list-style-type: disc;
}
.content-bar ol li{
display: list-item;
padding-left: 3px;
margin-left: 5px;
list-style-type: decimal;
}
.post input {
width: 92%;
}
.post .post-password-form input{
width: 26%;
}
.post-password-form
.post .searchform {
position:relative;
}
.post #s {
color: #FFF;
border-width: 0;
background: #08768e;
overflow:hidden;
border-radius:4px;
width: 93%;
box-shadow: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
}
.post #searchsubmit {
width: 35px;
height: 33px;
margin-left: -9px;
border-top-right-radius:4px;
border-bottom-right-radius:4px;
border-top-left-radius:0px;
border-bottom-left-radius:0px;
background: #20b9da url('images/search_icon.png') no-repeat center;
border: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
font-family: 'robotoregular', serif;
font-size: 1.176em;
font-weight: bold;
color: #fff;
transition: background-color 0.2s ease-in;
}
.post #searchsubmit input{
color:#fff;
}
.post .searchform {
padding: 0px;
border: none;
text-align: center;
}
.post #search {
width:41%;
padding-bottom: 9px;
padding-top: 8px;
padding-left: 10px;
padding-right:9px;
border: none;
background: #08768e;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
box-shadow: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
line-height: 16px;
color: #fff;
}
/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
margin: 5px 20px 20px 0;
width: 100%;
height: auto;
}
.aligncenter,
div.aligncenter {
display: block;
margin: 5px auto 5px auto;
}
.alignright {
float:right;
margin: 5px 0 20px 20px;
}
.alignleft {
float: left;
margin: 5px 20px 20px 0;
}
.aligncenter {
display: block;
margin: 5px auto 5px auto;
}
a img.alignright {
float: right;
margin: 5px 0 20px 20px;
}
a img.alignnone {
margin: 5px 20px 20px 0;
}
a img.alignleft {
float: left;
margin: 5px 20px 20px 0;
}
a img.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}
.wp-caption {
background: #fff;
border: 1px solid #f0f0f0;
max-width: 96%; /* Image does not overflow the content area */
padding: 5px 3px 10px;
text-align: center;
}
.wp-caption.alignnone {
margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
margin: 5px 0 20px 20px;
}
.wp-caption img {
border: 0 none;
height: auto;
margin: 0;
max-width: 98.5%;
padding: 0;
width: 100%;
}
.wp-caption p.wp-caption-text {
font-size: 0.765em;
line-height: 17px;
margin: 0;
padding: 0 4px 5px;
}
.wp-caption p.wp-caption-text img {
width: auto;
}
/* media queries for different screen sizes
========================================================*/
/************************************************************************************
between 960px and 1140px
*************************************************************************************/
@media only screen and (min-width: 960px) and (max-width: 1140px) {
.blog_featured_img {
height: 170px;
}
.featured_blog_content .post{
width:343px;
}
.gallery_tabs {
width:57%;
}
/* contact */
.contact_input p{
margin-bottom:36px;
margin-left:0px;
}
.contact_input textarea, input{
width:394px;
}
.contact_input textarea{
width:394px;
height:208px;
}
#recaptcha_widget_div {
margin-left:0px;
}
.add_n_map {
margin-left:0px;
}
/* gallery */
#lab article {
padding-top: 3.813em;
width: 86%;
}
/* services box */
#services_box_container1 {
margin-left:20%;
}
#services_box_container4, #services_box_container3 {
margin-top:5%;
}
#services_box_container3{
margin-left:20%;
}
/* services box ends */
/* Footer column */
input[type="submit"].search-button {
left: 152px;
}
input.search-text {
width:170px;
}
.footer #search{
width: 73%;
}
/* Footer column ends */
/* ************************************ */
/* *********sidebar widgets************ */
/* ************************************ */
/* sidebar widgets search box */
.sidebar #search {
width: 78%;
}
/* sidebar widgets search box */
/* sidebar widgets blog post */
.popular_tab a {
padding: 8px 8px 6px 8px;
}
.popular_tab.recent {
left: 76px;
}
.popular_tab.comments {
left: 145px;
}
.popular_tab_content {
width: 69%;
}
.sidebar_blog_posts {
width: 88%;
}
.popular_tab p {
font-size: 0.824em;
}
.popular_tab {
top: -29px;
}
.popular_content {
margin-top: 28px;
}
/* sidebar widgets blog post ends */
/* sidebar widgets calendar */
#wp-calendar tbody td {
padding: 8px;
}
.calender_wrapper {
padding: 0px 19px 20px 19px;
}
/* sidebar widgets calendar ends */
/* sidebar widgets gallery widget */
.gallery_widgets.sidebar img {
padding: 2px;
margin-right: -5px;
margin-bottom: -5px;
}
/* sidebar widgets gallery widget ends */
/* sidebar widgets calendar ends */
.footer #wp-calendar tbody td {
padding: 3px;
}
/* sidebar widgets calendar ends */
/* comments */
.comment-awaiting-moderation {
position: absolute;
top: 29%;
left: 19.7%;
}
/* comments ends*/
/* hex gallery 4 column */
.post_content #lab article {
padding-top: 3.813em;
width: 104%;
}
.post_content .lab_item {
width: 161px;
height: 193px;
}
.post_content .hexagon2 {
width: 151px;
height: 215px;
top: -80px;
}
.post_content .lab_item:nth-child(7n-2) {
margin-left: 81px;
}
/* hex gallery 4column*/
/* recent blogs */
.featured_blog_content .post:nth-child(3n) {
float: none;
}
.featured_blog_content .post:nth-child(2n-1) {
margin-left: 11%;
margin-right: 53px;
}
.featured_blog_content .post:nth-child(3n){
float:none;
}
/* recent blogs ends */
}
/************************************************************************************
between 767px and 960px
*************************************************************************************/
@media only screen and (min-width: 767px) and (max-width: 960px) {
#slider_floating_text {
left: 12.7%;
}
/* blog */
.featured_blog_content .post:nth-child(2){
margin-left:60px;
}
.featured_blog_content .post:nth-child(5) {
float:left;
}
.featured_blog_content .post:nth-child(6) {
margin-left: 62px;
float:left;
}
.featured_blog_content .post {
margin-right: 0px;
}
.featured_blog_content .post:nth-child(3) {
float: none;
margin-right: 60px;
}
/* main nav */
.sf-menu {
text-align: center;
}
li.depth-4 ul.children {
padding-left: 0;
}
#menu li {
float: none !important;
}
#MainNav {
text-align: center;
margin-left: 0px;
}
.mobile_nav > span {
position: absolute;
top: 19px;
left: 45px;
}
#logo img {
max-height: 32px;
}
#logo {
padding-top: 14px;
height: 30px;
}
#slider_floating_text {
top: 39%;
}
/* services box */
#services_box_container1, #services_box_container3 {
margin-left:14%;
}
#services_box_container4, #services_box_container3 {
margin-top:5%;
}
/* services box ends */
/* gallery */
.gallery_tabs {
width:100%;
}
.lab_item:nth-child(5n-1) {
margin-left: 102px;
}
.lab_item:nth-child(n+4) {
margin-top: -62px;
}
.lab_item:nth-child(7n-2) {
margin-left: 0px;
}
.lab_item:nth-child(n+5) {
margin-top: -56px;
}
#lab article {
width: 610px;
}
/* gallery */
/* contact */
.contact_input p {
margin-bottom: 36px;
margin-left: 0px;
}
.contact_input input{
width: 320px;
}
.contact_input textarea {
width: 320px;
height: 160px;
}
/* contact */
/* comments */
.comment-awaiting-moderation {
position: absolute;
top: 29%;
left: 24.5%;
}
/* comments ends*/
/* Footer column */
input[type="submit"].search-button {
left: 106px;
}
input.search-text {
width:123px;
}
.footer #search {
width: 65%;
}
/* footer calender */
.footer #wp-calendar tbody td {
padding: 0px;
}
#calendar_wrap {
padding: 10px;
}
.footer li {
font-size: 0.941em;
}
/* footer calender */
/* Footer column ends */
/* ************************************ */
/* *********sidebar widgets************ */
/* ************************************ */
/* sidebar widgets blog post */
.popular_tab a {
padding: 4px 4px 2px 4px;
}
.popular_tab.recent {
left: 59px;
}
.popular_tab.comments {
left: 112px;
}
.sidebar_blog_posts {
padding: 9px;
}
.popular_tab p {
font-size: 0.706em;
}
.popular_tab {
top: -19px;
}
.popular_content {
margin-top: 28px;
}
.popular_tab_content {
width: 58%;
height: 53px;
}
.popular_tab_content_header_para {
display:none;
}
/* sidebar widgets blog posts ends */
/* sidebar widgets search box */
.sidebar #searchsubmit {
left: 73%;
}
.sidebar #search {
width: 69%;
}
/* sidebar widgets search box */
/* sidebar widgets calendar */
#wp-calendar tbody td {
padding: 4px;
}
.calender_wrapper {
padding: 0px 13px 20px 14px;
}
/* sidebar widgets calendar ends */
/* sidebar widgets gallery widget */
.gallery_widgets.sidebar img {
padding: 3px;
margin-right: 7px;
margin-bottom: 9px;
}
/* sidebar widgets gallery widget ends */
}
/************************************************************************************
between 480px and 767px
*************************************************************************************/
@media only screen and (min-width: 480px) and (max-width: 767px) {
/* embedded videos */
.video embed,
.video object,
.video iframe {
min-height: 250px;
}
/* header */
.header_wrapper {
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
}
.header_wrapper.scroller{
position: static !important;
}
/* logo */
#logo {
text-align: center;
}
/* logo */
textarea {
width: 100%;
}
/* menu */
.call-us a.btn{
background: url(images/tap-to-call.png) no-repeat;
display: inline-block;
visibility: visible;
font-size: 0;
width: 210px;
height: 59px;
margin: 0 auto;
text-align: center;
cursor: pointer;
text-indent: 99999px;
margin-left: 156px;
margin-top: 15px;
}
#mobile_menu {
width: 276px;
text-align: center;
margin-left: 0;
}
#mobile_menu {
width: 318px;
text-align: center;
margin-left: 0;
}
ul.sf-menu {
display: none;
}
.it_mobile_menu a {
display: block;
padding-left: 0px;
color: #3B3B3B;
padding-top: 7px;
padding-bottom: 7px;
}
.header .logo {
text-align: center;
margin: 20px 0 0px 0px;
}
#logo img {
max-height: 33px;
}
#logo {
padding-top: 20px;
height: 30px;
}
.sf-menu .sub-menu {
margin-left: 100px !important;
visibility: hidden;
}
.sf-menu .sub-menu li {
margin: 0 !important;
padding: 0 !important;
margin-left: 200px !important;
clear: both;
left: 20px;
}
.mobile_nav {
display: inline-block;
text-shadow: 1px 1px 0 #fff;
margin: 13px 0 20px 0;
width: 227px;
}
.sf-menu {
text-align: center;
}
li.depth-4 ul.children {
padding-left: 0;
}
#menu li {
float: none !important;
}
#MainNav {
text-align: center;
height: 58px;
}
.mobile_nav > span {
position: absolute;
top: 10px;
left: 45px;
}
/* slider */
.slider_text_container {
display: none;
}
/* blogs */
.featured_blog_content .post {
width: 100%;
}
.featured_blog_content .post_heading_wrapper .thumb img {
height: 340px;
width: 480px;
}
.featured_blog_content .post_heading_wrapper .thumb img:hover {
height: 340px;
width: 480px;
}
/*******************/
.blog_featured_img {
width:442px;
height:242px;
}
.featured_blog_container_last {
margin-left: 0px;
}
.featured_blog_container_second {
margin-left: 0px;
}
.blog_featured_img img{
width:100%;
height:auto;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}
.blog_featured_img img:hover {
width:125%;
height:auto;
}
/* blog ends */
/* services box */
#services_box_container1, #services_box_container2, #services_box_container4, #services_box_container3 {
margin-left:22%;
}
#services_box_container2 , #services_box_container4, #services_box_container3 {
margin-top:10%;
}
/* services box ends */
/* gallery */
.gallery_tabs {
width:100%;
}
.gallery_tabs a{
margin-top: 5px;
margin-left:5px;
}
#lab article {
width: 405px;
}
.lab_item:nth-child(5n-1) {
margin-left: 0px;
}
.lab_item:nth-child(3n) {
margin-left: 102px;
}
.lab_item:nth-child(n+3) {
margin-top: -56px;
}
/* gallery */
/* contact */
.contact_input p {
margin-bottom: 36px;
margin-left: 0px;
}
.contact_input input{
width: 320px;
}
.contact_input textarea {
width: 320px;
height: 160px;
}
.add_n_map {
margin-left: 0px;
padding-bottom:20px;
}
.map {
max-width: 98%;
}
/* contact ends */
/* footer 4 column */
.footer_columns {
margin-bottom:32px;
margin-right: 0px;
margin-left: 0px;
}
.footer {
padding-bottom: 18px;
}
.footer .last {
margin-left:0px;
}
.footer_columns.third {
margin-right: 0px;
margin-left: 0px;
}
/* footer 4 column ends */
/* footer search */
.footer #searchsubmit {
left: 89.7%;
}
/* footer search widget ends */
/* copyright */
.copyright_wrapper{
text-align: center;
}
.footer_social_icons {
float: none;
}
/* comments */
.comment-awaiting-moderation {
position: absolute;
top: 29%;
left: 26%;
}
.commentlist .depth-1{margin-left:0; width: 100%;}
.commentlist .depth-2{margin-left:0; width: 100%;}
.commentlist .depth-3{margin-left:0; width: 100%;}
.commentlist .depth-4{margin-left:0; width: 100%;}
.commentlist .depth-5{margin-left:0; width: 100%; float: right;}
/* comments */
/* ************************************ */
/* *********sidebar widgets************ */
/* ************************************ */
.sidebar_container {
margin-left: 0%;
}
/* sidebar widgets search box */
.sidebar #search {
width: 88%;
}
/* sidebar widgets search box */
/* sidebar widgets blog post */
.sidebar_blog_posts {
width: 92%;
padding: 18px;
}
/* sidebar widgets blog post ends */
/* sidebar widgets calendar */
#wp-calendar tbody td {
padding: 22px;
}
.calender_wrapper {
padding: 0px 20px 20px 20px;
}
/* sidebar widgets calendar ends */
.widget_gallery {
padding: 17px 0px 0px 29px;
}
.sidebar {
margin-top: 0px;
margin-left: 0px;
}
/* sidebar widgets gallery widget ends */
#commentform small {
display:block;
padding-top: 5px;
}
}
/************************************************************************************
smaller than 480px
*************************************************************************************/
@media only screen and (max-width: 480px) {
/* disable webkit text size adjust (for iPhone) */
html {
-webkit-text-size-adjust: none;
}
textarea {
width: 96%;
}
.homepage_top_feature {
margin-top: 106px;
}
#comment-form input {
width: 96%;
}
#commentform small {
display:block;
padding-top: 5px;
}
/* logo */
#logo {
text-align: center;
}
#logo img {
max-height: 28px;
}
#logo {
padding-top: 20px;
height: 30px;
}
/* logo */
/* menu */
.header_wrapper {
box-shadow: none !important;
-moz-box-shadow: none !important;
-webkit-box-shadow: none !important;
}
.header_wrapper.scroller{
position: static !important;
}
.call-us a.btn{
background:url(images/tap-to-call.png) no-repeat;
display:inline-block;
visibility:visible;
font-size:0px;
width:210px;
height:59px;
margin:0 auto;
text-align:center;
cursor:pointer;
text-indent:99999px;
margin-left:60px;
margin-top:15px;
}
#mobile_menu {
width: 276px;
text-align:center;
margin-left:0;
}
#mobile_menu {
width: 100%;
text-align: center;
margin-left: 0;
}
ul.sf-menu {
display: none;
}
.it_mobile_menu a {
display: block;
padding-left: 0px;
color: #3B3B3B;
padding-top: 7px;
padding-bottom: 7px;
}
.sf-menu .sub-menu {
margin-left: 100px !important;
visibility: hidden;
}
.sf-menu .sub-menu li {
margin: 0 !important;
padding: 0 !important;
margin-left: 200px !important;
clear: both;
left: 20px;
}
.mobile_nav {
display: inline-block;
text-shadow: 1px 1px 0 #fff;
margin: 5px 0 20px 0;
margin-top: 0;
margin-bottom:0;
width: 63%;
}
.mobile_nav > span {
position: absolute;
top: 11px;
left: 30px;
}
.sf-menu {
text-align: center;
}
li.depth-4 ul.children {
padding-left: 0;
}
#menu li {
float: none !important;
}
#MainNav {
text-align: center;
height: 50px;
margin-top: 8px;
}
/* slider */
/* blogs */
.featured_blog_content .post{
width: 100%;
}
.featured_blog_content .post:nth-child(3n) {
float: none;
}
.featured_blog_floating_img {
font-size: 1.118em;
padding: 6px;
}
.blog_featured_img {
width:300px;
height:162px;
}
.blog_featured_img img{
width:100%;
height:auto;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}
.blog_featured_img img:hover{
width:100%;
height:auto;
}
.featured_blog_container_last {
margin-left: auto;
margin-right:auto;
}
.featured_blog_container_second {
margin-left: auto;
margin-right:auto;
}
.featured_blog_content .post_heading_wrapper img:hover {
height: 100%;
width: 100%;
}
.featured_blog_content .post_heading_wrapper img {
height: 100%;
width: 100%;
}
/* blog ends */
#social_icons {
float:left;
}
.social_wrapper {
height:auto;
}
/*slider */
.slider_text_container{
display: none;
}
/* slider ends */
/* services box */
#services_box_container1, #services_box_container2 , #services_box_container4, #services_box_container3 {
margin-left:0;
}
#services_box_container2 , #services_box_container4, #services_box_container3 {
margin-top:10%;
}
.services_box_container {
margin-left: auto;
width: 265px;
margin-right: auto;
}
/* services box ends */
/* gallery */
.container {
width:95%;
}
.gallery_tabs {
font-size: 0.882em;
width:100%;
}
.gallery_tabs ul, li, a {
display: block;
}
.gallery_tabs a{
margin-top: 5px;
padding: 10px 10px 10px 8px;
margin-left: 0px;
}
#lab {
margin-bottom: 0;
}
#lab article {
width: 336px;
}
.lab_item {
width: 160px;
height: 199px;
}
.hexagon2 {
width: 171px;
height: 351px;
top: -68px;
}
.lab_item:nth-child(n+3) {
margin-top: -67px;
}
.lab_item:nth-child(3n) {
margin-left: 82px;
}
ul#filters{
margin:0;
padding: 0px;
}
ul#filters li{
display: block;
width: 100%
}
ul#filters li a{
width: 95%
}
/* gallery */
/* copyright */
/* contact */
.contact_input textarea, input {
width: 91%;
}
.contact_input p {
margin-bottom: 36px;
margin-left: 0px;
}
.contact_input input{
width: 91%;
}
.contact_input textarea {
width: 91%;
height: 160px;
}
.add_n_map {
margin-left: 0px;
padding-bottom:20px;
}
/* contact ends */
/* footer 4 column */
div.footer_columns {
margin-bottom:0px;
margin-right: 0px;
margin-left: 0px;
}
.footer {
padding-bottom: 18px;
}
/* footer search */
.footer #searchsubmit {
left: 87.3%;
}
/* footer search widget ends */
.footer ul, li, a {
display: inline-block;
}
.footer_columns.last {
margin-left: 0px;
}
.footer_columns.second {
margin-right: 0px;
margin-left: 0px;
}
.footer_columns.third {
margin-right: 0px;
margin-left: 0px;
}
/* footer 4 column ends */
/* comment */
.commentlist .depth-1{margin-left:0; width: 100%;}
.commentlist .depth-2{margin-left:0; width: 100%;}
.commentlist .depth-3{margin-left:0; width: 100%;}
.commentlist .depth-4{margin-left:0; width: 100%;}
.commentlist .depth-5{margin-left:0; width: 100%; float: right;}
/**** post ****/
.post_meta li {
display:inline-block;
}
/**** post ****/
/* ************************************ */
/* *********sidebar widgets************ */
/* ************************************ */
.sidebar_container {
padding-top: 25px;
margin-left: 0px;
}
.sidebar a {
display: inline-block;
}
/* sidebar widgets search box */
.sidebar_widget input[type="submit"].search-button {
left: 83%;
}
.search-border {
width:82%;
}
.sidebar_widget input.search-text {
width: 91%;
}
/* sidebar widgets blog post */
.popular_tab a {
padding: 8px 8px 6px 8px;
}
.popular_tab.recent {
left: 76px;
}
.popular_tab.comments {
left: 145px;
}
.popular_tab_content {
width: 69%;
}
.sidebar_blog_posts {
width: 88%;
}
.popular_tab p {
font-size: 0.824em;
}
.popular_tab {
top: -29px;
}
.popular_content {
margin-top: 28px;
}
/* sidebar widgets blog post ends */
/* sidebar widgets calendar */
#wp-calendar tbody td {
padding: 9px;
}
.calender_wrapper {
padding: 0px 13px 20px 16px;
}
/* sidebar widgets calendar ends */
/* sidebar gallery widget */
.gallery_widgets.sidebar img {
padding: 4px;
margin-right: -5px;
margin-bottom: -5px;
}
/* sidebar widgets search box */
.sidebar #searchsubmit {
left: 78%;
}
.sidebar {
margin-top: 0px;
margin-left: 0px;
}
.sidebar #search {
width: 77%;
}
/* sidebar widgets search box */
/* sidebar gallery widget ends */
/* comments */
.commentlist .reply {
top: 6px;
right: 6px;
}
.commentlist .comment-meta a {
padding-left: 8px;
}
.comment-awaiting-moderation {
position: absolute;
top: -7%;
left: 19px;
text-align: center;
}
/* comments */
}
/************************************************************************************
smaller than 320px
*************************************************************************************/
@media only screen and (max-width: 320px) {
/* disable webkit text size adjust (for iPhone) */
html {
-webkit-text-size-adjust: none;
}
/* social header */
/* social header */
/* logo */
#logo {
text-align: center;
}
.social_icons {
margin-top: 5px;
margin-bottom: 10px;
float: left;
text-align: center;
}
.social_icons ul{
padding: 0 0 0 0;
}
/* logo */
.mobile_nav {
width: 54%;
}
/* blogs */
.featured_blog_container_last {
margin-left: auto;
margin-right:auto;
}
.featured_blog_container_second {
margin-left: auto;
margin-right:auto;
}
/* blogs */
#slider_floating_text {
display:none;
}
.featured_blog_content .post_heading_wrapper .thumb {
height: 143px;
}
/* copyright block */
.footer_social_icons {
float:none;
width:100%;
}
.footer_social_icons div {
display:inline-block;
margin-left: 1px;
}
/* copyright block ends */
/* services box */
#services_box_container1, #services_box_container2 , #services_box_container4, #services_box_container3 {
margin-left:0;
}
.services_box_container {
width: 224px;
}
/* gallery */
#lab article {
width: 233px;
}
.lab_item:nth-child(3n) {
margin-left: 0px;
}
.lab_item:nth-child(2n) {
margin-left: 102px;
}
.lab_item:nth-child(n+2) {
margin-top: -56px;
}
/* gallery ends */
/* contact */
.contact_input textarea, input {
width: 91%;
}
.contact_input p {
margin-bottom: 36px;
margin-left: 0px;
}
.contact_input input{
width: 91%;
}
.contact_input textarea {
width: 91%;
height: 160px;
}
.add_n_map {
margin-left: 0px;
padding-bottom:20px;
}
/* contact ends */
/* footer 4 column */
.footer_columns {
margin-bottom:32px;
margin-right: 0px;
margin-left: 0px;
}
.footer_columns.first {
margin-right: 0px;
margin-left: 0px;
}
.footer {
padding-bottom: 18px;
}
.footer #search {
width: 64%;
}
.footer_columns.third {
margin-right: 0px;
margin-left: 0px;
}
/* footer 4 column ends */
/* comment */
.commentlist .reply a {
top: 3px;
right: 3px;
}
/* circle hover */
.ch-item {
width: 100%;
height: 100%;
left: -1px;
}
.ch-img-1 {
background-size:220px 220px;
height: 220px;
}
.ch-img-1 img{
width: 220px;
height: 220px;
}
.ch-img-2 {
background-size:220px 220px;
height: 220px;
}
.ch-img-2 img{
width: 220px;
height: 220px;
}
.ch-img-3 {
background-size:220px 220px;
height: 220px;
}
.ch-img-3 img{
width: 220px;
height: 220px;
}
.ch-img-4 {
background-size:220px 220px;
border-radius:50%;
height: 220px;
}
.ch-img-4 img{
border-radius: 50%;
width: 220px;
height: 220px;
}
.rect_box {
width: 224px;
}
p.services_box_rect_head {
width: 182px;
}
/* 404 page */
p.fourzerofourerror{
line-height: 41px;
}
}
|
sites/all/themes/jem/css/jem-alpha-default-normal.css
|
lancast/cci
|
/* This file will hold styles that are loaded using the same media query as the normal grid. */
/* If you are using the default media queries provided by Omega, these styles will also
* apply to the widescreen layout unless they are overridden by the widescreen styles. */
.footer-map {
width: 90.25%;
}
@-moz-document url-prefix() {
/* Styles */
.sitename-img {
margin-top: -1.34em;
}
}
.sf-menu.sf-style-default a {
-moz-transition: all 0.25s ease-in-out 0s;
background: url("../images/bg-nav1-a.png") repeat-x scroll center top #F77F00;
border-color: -moz-use-text-color #444444 -moz-use-text-color #FAAE5E;
border-style: none solid;
border-width: medium 1px 0;
color: #FFFFFF;
display: block;
font-family: Arial,Helvetica,sans-serif;
font-size: 0.9em;
font-weight: bold;
padding: 6px 16px;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
.sf-menu.sf-style-default a, .sf-menu.sf-style-default a:visited {
color: #ffffff;
padding-left: 1em;
padding-right: 1em;
}
|
wp-content/plugins/wp-shortcode/tinymce/editor_plugin.css
|
marciomlopes/cmaga
|
#mnmshortcode_tag { width: 200px }
#mnmshortcode_panel { margin-bottom: 8px }
#mnmshortcode_panel table { width: 100%; font-size: 12px; }
.mnmshortcode_description { color: #666; font-size: 12px; }
.mnmshortcode_att_name { text-transform: capitalize }
#mnmshortcode_panel input, #mnmshortcode_panel select, #mnmshortcode_panel textarea { width: 100%; padding: 4px 4px; font-size: 12px; font-family: 'Open Sans', sans-serif; }
#mnmshortcode_panel textarea { height: 120px }
|
dependencies/include/cinder/blocks/OpenCV/docs/html/classtesting_1_1internal_1_1_cartesian_product_generator8-members.html
|
brittybaby/3DModelfitting
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type"><title>Cinder</title>
<link rel="stylesheet" href="cinder_doxygen.css" type="text/css" media="screen" />
</head>
<body>
<div class="wrapper">
<div id="header">
<h1><a href="http://libcinder.org">Cinder</a></h1>
</div>
<!-- Generated by Doxygen 1.8.7 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespacetesting.html">testing</a></li><li class="navelem"><a class="el" href="namespacetesting_1_1internal.html">internal</a></li><li class="navelem"><a class="el" href="classtesting_1_1internal_1_1_cartesian_product_generator8.html">CartesianProductGenerator8</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">testing::internal::CartesianProductGenerator8< T1, T2, T3, T4, T5, T6, T7, T8 > Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="classtesting_1_1internal_1_1_cartesian_product_generator8.html">testing::internal::CartesianProductGenerator8< T1, T2, T3, T4, T5, T6, T7, T8 ></a>, including all inherited members.</p>
<table class="directory">
<tr class="even"><td class="entry"><a class="el" href="classtesting_1_1internal_1_1_cartesian_product_generator8.html#a024b3406f95ada161eee58e7df008cf4">Begin</a>() const </td><td class="entry"><a class="el" href="classtesting_1_1internal_1_1_cartesian_product_generator8.html">testing::internal::CartesianProductGenerator8< T1, T2, T3, T4, T5, T6, T7, T8 ></a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr><td class="entry"><a class="el" href="classtesting_1_1internal_1_1_cartesian_product_generator8.html#a07f33a7263f933d4fbabdb9e930d7f86">CartesianProductGenerator8</a>(const ParamGenerator< T1 > &g1, const ParamGenerator< T2 > &g2, const ParamGenerator< T3 > &g3, const ParamGenerator< T4 > &g4, const ParamGenerator< T5 > &g5, const ParamGenerator< T6 > &g6, const ParamGenerator< T7 > &g7, const ParamGenerator< T8 > &g8)</td><td class="entry"><a class="el" href="classtesting_1_1internal_1_1_cartesian_product_generator8.html">testing::internal::CartesianProductGenerator8< T1, T2, T3, T4, T5, T6, T7, T8 ></a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classtesting_1_1internal_1_1_cartesian_product_generator8.html#a2a6e4ba6ad072f85c1193e1d17983f5f">End</a>() const </td><td class="entry"><a class="el" href="classtesting_1_1internal_1_1_cartesian_product_generator8.html">testing::internal::CartesianProductGenerator8< T1, T2, T3, T4, T5, T6, T7, T8 ></a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr><td class="entry"><a class="el" href="classtesting_1_1internal_1_1_cartesian_product_generator8.html#ac0ce78b904e9a155d0f0711b9012ec0b">ParamType</a> typedef</td><td class="entry"><a class="el" href="classtesting_1_1internal_1_1_cartesian_product_generator8.html">testing::internal::CartesianProductGenerator8< T1, T2, T3, T4, T5, T6, T7, T8 ></a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classtesting_1_1internal_1_1_cartesian_product_generator8.html#a1b5959a462274695cdee2c37185b291f">~CartesianProductGenerator8</a>()</td><td class="entry"><a class="el" href="classtesting_1_1internal_1_1_cartesian_product_generator8.html">testing::internal::CartesianProductGenerator8< T1, T2, T3, T4, T5, T6, T7, T8 ></a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr><td class="entry"><a class="el" href="classtesting_1_1internal_1_1_param_generator_interface.html#a6038a513db081a329d1a0a4c3d32d046">~ParamGeneratorInterface</a>()</td><td class="entry"><a class="el" href="classtesting_1_1internal_1_1_param_generator_interface.html">testing::internal::ParamGeneratorInterface< ::std::tr1::tuple< T1, T2, T3, T4, T5, T6, T7, T8 > ></a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
</table></div><!-- contents -->
<div class="footer">
<p> </p>
</div>
</div>
</body>
</html>
|
metronic_v4.7.1/theme/admin_3_material_design/ui_tabs_accordions_navs.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 #3 | Tabs, Accordions & Navs</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 #3 for metronic and bootstrap custom navbars, tabs, pills, accordions and resizable tabs based on bootstrap-tabdrop plugin" 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 -->
<!-- END PAGE LEVEL PLUGINS -->
<!-- BEGIN THEME GLOBAL STYLES -->
<link href="../assets/global/css/components-md.min.css" rel="stylesheet" id="style_components" type="text/css" />
<link href="../assets/global/css/plugins-md.min.css" rel="stylesheet" type="text/css" />
<!-- END THEME GLOBAL STYLES -->
<!-- BEGIN THEME LAYOUT STYLES -->
<link href="../assets/layouts/layout3/css/layout.min.css" rel="stylesheet" type="text/css" />
<link href="../assets/layouts/layout3/css/themes/default.min.css" rel="stylesheet" type="text/css" id="style_color" />
<link href="../assets/layouts/layout3/css/custom.min.css" rel="stylesheet" type="text/css" />
<!-- END THEME LAYOUT STYLES -->
<link rel="shortcut icon" href="favicon.ico" /> </head>
<!-- END HEAD -->
<body class="page-container-bg-solid page-md">
<div class="page-wrapper">
<div class="page-wrapper-row">
<div class="page-wrapper-top">
<!-- BEGIN HEADER -->
<div class="page-header">
<!-- BEGIN HEADER TOP -->
<div class="page-header-top">
<div class="container">
<!-- BEGIN LOGO -->
<div class="page-logo">
<a href="index.html">
<img src="../assets/layouts/layout3/img/logo-default.jpg" alt="logo" class="logo-default">
</a>
</div>
<!-- END LOGO -->
<!-- BEGIN RESPONSIVE MENU TOGGLER -->
<a href="javascript:;" class="menu-toggler"></a>
<!-- END RESPONSIVE MENU TOGGLER -->
<!-- BEGIN TOP NAVIGATION MENU -->
<div class="top-menu">
<ul class="nav navbar-nav pull-right">
<!-- BEGIN NOTIFICATION DROPDOWN -->
<!-- DOC: Apply "dropdown-hoverable" class after "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 dropdown-dark" id="header_notification_bar">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true">
<i class="icon-bell"></i>
<span class="badge badge-default">7</span>
</a>
<ul class="dropdown-menu">
<li class="external">
<h3>You have
<strong>12 pending</strong> tasks</h3>
<a href="app_todo.html">view all</a>
</li>
<li>
<ul class="dropdown-menu-list scroller" style="height: 250px;" data-handle-color="#637283">
<li>
<a href="javascript:;">
<span class="time">just now</span>
<span class="details">
<span class="label label-sm label-icon label-success">
<i class="fa fa-plus"></i>
</span> New user registered. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">3 mins</span>
<span class="details">
<span class="label label-sm label-icon label-danger">
<i class="fa fa-bolt"></i>
</span> Server #12 overloaded. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">10 mins</span>
<span class="details">
<span class="label label-sm label-icon label-warning">
<i class="fa fa-bell-o"></i>
</span> Server #2 not responding. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">14 hrs</span>
<span class="details">
<span class="label label-sm label-icon label-info">
<i class="fa fa-bullhorn"></i>
</span> Application error. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">2 days</span>
<span class="details">
<span class="label label-sm label-icon label-danger">
<i class="fa fa-bolt"></i>
</span> Database overloaded 68%. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">3 days</span>
<span class="details">
<span class="label label-sm label-icon label-danger">
<i class="fa fa-bolt"></i>
</span> A user IP blocked. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">4 days</span>
<span class="details">
<span class="label label-sm label-icon label-warning">
<i class="fa fa-bell-o"></i>
</span> Storage Server #4 not responding dfdfdfd. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">5 days</span>
<span class="details">
<span class="label label-sm label-icon label-info">
<i class="fa fa-bullhorn"></i>
</span> System Error. </span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="time">9 days</span>
<span class="details">
<span class="label label-sm label-icon label-danger">
<i class="fa fa-bolt"></i>
</span> Storage server failed. </span>
</a>
</li>
</ul>
</li>
</ul>
</li>
<!-- END NOTIFICATION DROPDOWN -->
<!-- BEGIN TODO DROPDOWN -->
<li class="dropdown dropdown-extended dropdown-tasks dropdown-dark" id="header_task_bar">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true">
<i class="icon-calendar"></i>
<span class="badge badge-default">3</span>
</a>
<ul class="dropdown-menu extended tasks">
<li class="external">
<h3>You have
<strong>12 pending</strong> tasks</h3>
<a href="app_todo_2.html">view all</a>
</li>
<li>
<ul class="dropdown-menu-list scroller" style="height: 275px;" data-handle-color="#637283">
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">New release v1.2 </span>
<span class="percent">30%</span>
</span>
<span class="progress">
<span style="width: 40%;" class="progress-bar progress-bar-success" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">40% Complete</span>
</span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">Application deployment</span>
<span class="percent">65%</span>
</span>
<span class="progress">
<span style="width: 65%;" class="progress-bar progress-bar-danger" aria-valuenow="65" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">65% Complete</span>
</span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">Mobile app release</span>
<span class="percent">98%</span>
</span>
<span class="progress">
<span style="width: 98%;" class="progress-bar progress-bar-success" aria-valuenow="98" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">98% Complete</span>
</span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">Database migration</span>
<span class="percent">10%</span>
</span>
<span class="progress">
<span style="width: 10%;" class="progress-bar progress-bar-warning" aria-valuenow="10" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">10% Complete</span>
</span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">Web server upgrade</span>
<span class="percent">58%</span>
</span>
<span class="progress">
<span style="width: 58%;" class="progress-bar progress-bar-info" aria-valuenow="58" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">58% Complete</span>
</span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">Mobile development</span>
<span class="percent">85%</span>
</span>
<span class="progress">
<span style="width: 85%;" class="progress-bar progress-bar-success" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">85% Complete</span>
</span>
</span>
</a>
</li>
<li>
<a href="javascript:;">
<span class="task">
<span class="desc">New UI release</span>
<span class="percent">38%</span>
</span>
<span class="progress progress-striped">
<span style="width: 38%;" class="progress-bar progress-bar-important" aria-valuenow="18" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">38% Complete</span>
</span>
</span>
</a>
</li>
</ul>
</li>
</ul>
</li>
<!-- END TODO DROPDOWN -->
<li class="droddown dropdown-separator">
<span class="separator"></span>
</li>
<!-- BEGIN INBOX DROPDOWN -->
<li class="dropdown dropdown-extended dropdown-inbox dropdown-dark" id="header_inbox_bar">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true">
<span class="circle">3</span>
<span class="corner"></span>
</a>
<ul class="dropdown-menu">
<li class="external">
<h3>You have
<strong>7 New</strong> Messages</h3>
<a href="app_inbox.html">view all</a>
</li>
<li>
<ul class="dropdown-menu-list scroller" style="height: 275px;" data-handle-color="#637283">
<li>
<a href="#">
<span class="photo">
<img src="../assets/layouts/layout3/img/avatar2.jpg" class="img-circle" alt=""> </span>
<span class="subject">
<span class="from"> Lisa Wong </span>
<span class="time">Just Now </span>
</span>
<span class="message"> Vivamus sed auctor nibh congue nibh. auctor nibh auctor nibh... </span>
</a>
</li>
<li>
<a href="#">
<span class="photo">
<img src="../assets/layouts/layout3/img/avatar3.jpg" class="img-circle" alt=""> </span>
<span class="subject">
<span class="from"> Richard Doe </span>
<span class="time">16 mins </span>
</span>
<span class="message"> Vivamus sed congue nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span>
</a>
</li>
<li>
<a href="#">
<span class="photo">
<img src="../assets/layouts/layout3/img/avatar1.jpg" class="img-circle" alt=""> </span>
<span class="subject">
<span class="from"> Bob Nilson </span>
<span class="time">2 hrs </span>
</span>
<span class="message"> Vivamus sed nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span>
</a>
</li>
<li>
<a href="#">
<span class="photo">
<img src="../assets/layouts/layout3/img/avatar2.jpg" class="img-circle" alt=""> </span>
<span class="subject">
<span class="from"> Lisa Wong </span>
<span class="time">40 mins </span>
</span>
<span class="message"> Vivamus sed auctor 40% nibh congue nibh... </span>
</a>
</li>
<li>
<a href="#">
<span class="photo">
<img src="../assets/layouts/layout3/img/avatar3.jpg" class="img-circle" alt=""> </span>
<span class="subject">
<span class="from"> Richard Doe </span>
<span class="time">46 mins </span>
</span>
<span class="message"> Vivamus sed congue nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span>
</a>
</li>
</ul>
</li>
</ul>
</li>
<!-- END INBOX DROPDOWN -->
<!-- BEGIN USER LOGIN DROPDOWN -->
<li class="dropdown dropdown-user dropdown-dark">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true">
<img alt="" class="img-circle" src="../assets/layouts/layout3/img/avatar9.jpg">
<span class="username username-hide-mobile">Nick</span>
</a>
<ul class="dropdown-menu dropdown-menu-default">
<li>
<a href="page_user_profile_1.html">
<i class="icon-user"></i> My Profile </a>
</li>
<li>
<a href="app_calendar.html">
<i class="icon-calendar"></i> My Calendar </a>
</li>
<li>
<a href="app_inbox.html">
<i class="icon-envelope-open"></i> My Inbox
<span class="badge badge-danger"> 3 </span>
</a>
</li>
<li>
<a href="app_todo_2.html">
<i class="icon-rocket"></i> My Tasks
<span class="badge badge-success"> 7 </span>
</a>
</li>
<li class="divider"> </li>
<li>
<a href="page_user_lock_1.html">
<i class="icon-lock"></i> Lock Screen </a>
</li>
<li>
<a href="page_user_login_1.html">
<i class="icon-key"></i> Log Out </a>
</li>
</ul>
</li>
<!-- END USER LOGIN DROPDOWN -->
<!-- BEGIN QUICK SIDEBAR TOGGLER -->
<li class="dropdown dropdown-extended quick-sidebar-toggler">
<span class="sr-only">Toggle Quick Sidebar</span>
<i class="icon-logout"></i>
</li>
<!-- END QUICK SIDEBAR TOGGLER -->
</ul>
</div>
<!-- END TOP NAVIGATION MENU -->
</div>
</div>
<!-- END HEADER TOP -->
<!-- BEGIN HEADER MENU -->
<div class="page-header-menu">
<div class="container">
<!-- BEGIN HEADER SEARCH BOX -->
<form class="search-form" action="page_general_search.html" method="GET">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search" name="query">
<span class="input-group-btn">
<a href="javascript:;" class="btn submit">
<i class="icon-magnifier"></i>
</a>
</span>
</div>
</form>
<!-- END HEADER SEARCH BOX -->
<!-- BEGIN MEGA MENU -->
<!-- DOC: Apply "hor-menu-light" class after the "hor-menu" class below to have a horizontal menu with white background -->
<!-- DOC: Remove data-hover="dropdown" and data-close-others="true" attributes below to disable the dropdown opening on mouse hover -->
<div class="hor-menu ">
<ul class="nav navbar-nav">
<li aria-haspopup="true" class="menu-dropdown classic-menu-dropdown ">
<a href="javascript:;"> Dashboard
<span class="arrow"></span>
</a>
<ul class="dropdown-menu pull-left">
<li aria-haspopup="true" class=" ">
<a href="index.html" class="nav-link ">
<i class="icon-bar-chart"></i> Default Dashboard
<span class="badge badge-success">1</span>
</a>
</li>
<li aria-haspopup="true" class=" ">
<a href="dashboard_2.html" class="nav-link ">
<i class="icon-bulb"></i> Dashboard 2 </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="dashboard_3.html" class="nav-link ">
<i class="icon-graph"></i> Dashboard 3
<span class="badge badge-danger">3</span>
</a>
</li>
</ul>
</li>
<li aria-haspopup="true" class="menu-dropdown mega-menu-dropdown active ">
<a href="javascript:;"> UI Features
<span class="arrow"></span>
</a>
<ul class="dropdown-menu" style="min-width: 710px">
<li>
<div class="mega-menu-content">
<div class="row">
<div class="col-md-4">
<ul class="mega-menu-submenu">
<li>
<a href="ui_colors.html"> Color Library </a>
</li>
<li>
<a href="ui_metronic_grid.html"> Metronic Grid System </a>
</li>
<li>
<a href="ui_general.html"> General Components </a>
</li>
<li>
<a href="ui_buttons.html"> Buttons </a>
</li>
<li>
<a href="ui_buttons_spinner.html"> Spinner Buttons </a>
</li>
<li>
<a href="ui_confirmations.html"> Popover Confirmations </a>
</li>
<li>
<a href="ui_sweetalert.html"> Bootstrap Sweet Alerts </a>
</li>
<li>
<a href="ui_icons.html"> Font Icons </a>
</li>
<li>
<a href="ui_socicons.html"> Social Icons </a>
</li>
<li>
<a href="ui_typography.html"> Typography </a>
</li>
<li class="active">
<a href="ui_tabs_accordions_navs.html"> Tabs, Accordions & Navs </a>
</li>
<li>
<a href="ui_tree.html"> Tree View </a>
</li>
<li>
<a href="maps_google.html"> Google Maps </a>
</li>
</ul>
</div>
<div class="col-md-4">
<ul class="mega-menu-submenu">
<li>
<a href="maps_vector.html"> Vector Maps </a>
</li>
<li>
<a href="ui_timeline.html"> Timeline 1 </a>
</li>
<li>
<a href="ui_timeline_2.html"> Timeline 2 </a>
</li>
<li>
<a href="ui_timeline_horizontal.html"> Horizontal Timeline </a>
</li>
<li>
<a href="ui_page_progress_style_1.html"> Page Progress Bar - Flash </a>
</li>
<li>
<a href="ui_page_progress_style_2.html"> Page Progress Bar - Big Counter </a>
</li>
<li>
<a href="ui_blockui.html"> Block UI </a>
</li>
<li>
<a href="ui_bootstrap_growl.html"> Bootstrap Growl Notifications </a>
</li>
<li>
<a href="ui_notific8.html"> Notific8 Notifications </a>
</li>
<li>
<a href="ui_toastr.html"> Toastr Notifications </a>
</li>
<li>
<a href="ui_bootbox.html"> Bootbox Dialogs </a>
</li>
</ul>
</div>
<div class="col-md-4">
<ul class="mega-menu-submenu">
<li>
<a href="ui_alerts_api.html"> Metronic Alerts API </a>
</li>
<li>
<a href="ui_session_timeout.html"> Session Timeout </a>
</li>
<li>
<a href="ui_idle_timeout.html"> User Idle Timeout </a>
</li>
<li>
<a href="ui_modals.html"> Modals </a>
</li>
<li>
<a href="ui_extended_modals.html"> Extended Modals </a>
</li>
<li>
<a href="ui_tiles.html"> Tiles </a>
</li>
<li>
<a href="ui_datepaginator.html"> Date Paginator </a>
</li>
<li>
<a href="ui_nestable.html"> Nestable List </a>
</li>
</ul>
</div>
</div>
</div>
</li>
</ul>
</li>
<li aria-haspopup="true" class="menu-dropdown classic-menu-dropdown ">
<a href="javascript:;"> Layouts
<span class="arrow"></span>
</a>
<ul class="dropdown-menu pull-left">
<li aria-haspopup="true" class=" ">
<a href="layout_mega_menu_light.html" class="nav-link "> Light Mega Menu </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="layout_top_bar_light.html" class="nav-link "> Light Top Bar Dropdowns </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="layout_fluid_page.html" class="nav-link "> Fluid Page </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="layout_top_bar_fixed.html" class="nav-link "> Fixed Top Bar </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="layout_mega_menu_fixed.html" class="nav-link "> Fixed Mega Menu </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="layout_disabled_menu.html" class="nav-link "> Disabled Menu Links </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="layout_blank_page.html" class="nav-link "> Blank Page </a>
</li>
</ul>
</li>
<li aria-haspopup="true" class="menu-dropdown mega-menu-dropdown mega-menu-full">
<a href="javascript:;"> Components
<span class="arrow"></span>
</a>
<ul class="dropdown-menu" style="min-width: ">
<li>
<div class="mega-menu-content">
<div class="row">
<div class="col-md-3">
<ul class="mega-menu-submenu">
<li>
<h3>Components 1</h3>
</li>
<li>
<a href="components_date_time_pickers.html"> Date & Time Pickers </a>
</li>
<li>
<a href="components_color_pickers.html"> Color Pickers </a>
</li>
<li>
<a href="components_select2.html"> Select2 Dropdowns </a>
</li>
<li>
<a href="components_bootstrap_multiselect_dropdown.html"> Bootstrap Multiselect Dropdowns </a>
</li>
<li>
<a href="components_bootstrap_select.html"> Bootstrap Select </a>
</li>
<li>
<a href="components_multi_select.html"> Bootstrap Multiple Select </a>
</li>
</ul>
</div>
<div class="col-md-3">
<ul class="mega-menu-submenu">
<li>
<h3>Components 2</h3>
</li>
<li>
<a href="components_bootstrap_select_splitter.html"> Select Splitter </a>
</li>
<li>
<a href="components_clipboard.html"> Clipboard </a>
</li>
<li>
<a href="components_typeahead.html"> Typeahead Autocomplete </a>
</li>
<li>
<a href="components_bootstrap_tagsinput.html"> Bootstrap Tagsinput </a>
</li>
<li>
<a href="components_bootstrap_switch.html"> Bootstrap Switch </a>
</li>
<li>
<a href="components_bootstrap_maxlength.html"> Bootstrap Maxlength </a>
</li>
</ul>
</div>
<div class="col-md-3">
<ul class="mega-menu-submenu">
<li>
<h3>Components 3</h3>
</li>
<li>
<a href="components_bootstrap_fileinput.html"> Bootstrap File Input </a>
</li>
<li>
<a href="components_bootstrap_touchspin.html"> Bootstrap Touchspin </a>
</li>
<li>
<a href="components_form_tools.html"> Form Widgets & Tools </a>
</li>
<li>
<a href="components_context_menu.html"> Context Menu </a>
</li>
<li>
<a href="components_editors.html"> Markdown & WYSIWYG Editors </a>
</li>
</ul>
</div>
<div class="col-md-3">
<ul class="mega-menu-submenu">
<li>
<h3>Components 4</h3>
</li>
<li>
<a href="components_code_editors.html"> Code Editors </a>
</li>
<li>
<a href="components_ion_sliders.html"> Ion Range Sliders </a>
</li>
<li>
<a href="components_noui_sliders.html"> NoUI Range Sliders </a>
</li>
<li>
<a href="components_knob_dials.html"> Knob Circle Dials </a>
</li>
</ul>
</div>
</div>
</div>
</li>
</ul>
</li>
<li aria-haspopup="true" class="menu-dropdown classic-menu-dropdown ">
<a href="javascript:;"> More
<span class="arrow"></span>
</a>
<ul class="dropdown-menu pull-left">
<li aria-haspopup="true" class="dropdown-submenu ">
<a href="javascript:;" class="nav-link nav-toggle ">
<i class="icon-settings"></i> Form Stuff
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li aria-haspopup="true" class=" ">
<a href="form_controls.html" class="nav-link "> Bootstrap Form
<br>Controls </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="form_controls_md.html" class="nav-link "> Material Design
<br>Form Controls </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="form_validation.html" class="nav-link "> Form Validation </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="form_validation_states_md.html" class="nav-link "> Material Design
<br>Form Validation States </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="form_validation_md.html" class="nav-link "> Material Design
<br>Form Validation </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="form_layouts.html" class="nav-link "> Form Layouts </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="form_repeater.html" class="nav-link "> Form Repeater </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="form_input_mask.html" class="nav-link "> Form Input Mask </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="form_editable.html" class="nav-link "> Form X-editable </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="form_wizard.html" class="nav-link "> Form Wizard </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="form_icheck.html" class="nav-link "> iCheck Controls </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="form_image_crop.html" class="nav-link "> Image Cropping </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="form_fileupload.html" class="nav-link "> Multiple File Upload </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="form_dropzone.html" class="nav-link "> Dropzone File Upload </a>
</li>
</ul>
</li>
<li aria-haspopup="true" class="dropdown-submenu ">
<a href="javascript:;" class="nav-link nav-toggle ">
<i class="icon-briefcase"></i> Tables
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li aria-haspopup="true" class=" ">
<a href="table_static_basic.html" class="nav-link "> Basic Tables </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="table_static_responsive.html" class="nav-link "> Responsive Tables </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="table_bootstrap.html" class="nav-link "> Bootstrap Tables </a>
</li>
<li aria-haspopup="true" class="dropdown-submenu ">
<a href="javascript:;" class="nav-link nav-toggle"> Datatables
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li class="">
<a href="table_datatables_managed.html" class="nav-link "> Managed Datatables </a>
</li>
<li class="">
<a href="table_datatables_buttons.html" class="nav-link "> Buttons Extension </a>
</li>
<li class="">
<a href="table_datatables_colreorder.html" class="nav-link "> Colreorder Extension </a>
</li>
<li class="">
<a href="table_datatables_rowreorder.html" class="nav-link "> Rowreorder Extension </a>
</li>
<li class="">
<a href="table_datatables_scroller.html" class="nav-link "> Scroller Extension </a>
</li>
<li class="">
<a href="table_datatables_fixedheader.html" class="nav-link "> FixedHeader Extension </a>
</li>
<li class="">
<a href="table_datatables_responsive.html" class="nav-link "> Responsive Extension </a>
</li>
<li class="">
<a href="table_datatables_editable.html" class="nav-link "> Editable Datatables </a>
</li>
<li class="">
<a href="table_datatables_ajax.html" class="nav-link "> Ajax Datatables </a>
</li>
</ul>
</li>
</ul>
</li>
<li aria-haspopup="true" class="dropdown-submenu ">
<a href="?p=" class="nav-link nav-toggle ">
<i class="icon-wallet"></i> Portlets
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li aria-haspopup="true" class=" ">
<a href="portlet_boxed.html" class="nav-link "> Boxed Portlets </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="portlet_light.html" class="nav-link "> Light Portlets </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="portlet_solid.html" class="nav-link "> Solid Portlets </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="portlet_ajax.html" class="nav-link "> Ajax Portlets </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="portlet_draggable.html" class="nav-link "> Draggable Portlets </a>
</li>
</ul>
</li>
<li aria-haspopup="true" class="dropdown-submenu ">
<a href="?p=" class="nav-link nav-toggle ">
<i class="icon-settings"></i> Elements
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li aria-haspopup="true" class=" ">
<a href="elements_steps.html" class="nav-link "> Steps </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="elements_lists.html" class="nav-link "> Lists </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="elements_ribbons.html" class="nav-link "> Ribbons </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="elements_overlay.html" class="nav-link "> Overlays </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="elements_cards.html" class="nav-link "> User Cards </a>
</li>
</ul>
</li>
<li aria-haspopup="true" class="dropdown-submenu ">
<a href="javascript:;" class="nav-link nav-toggle ">
<i class="icon-bar-chart"></i> Charts
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li aria-haspopup="true" class=" ">
<a href="charts_amcharts.html" class="nav-link "> amChart </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="charts_flotcharts.html" class="nav-link "> Flot Charts </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="charts_flowchart.html" class="nav-link "> Flow Charts </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="charts_google.html" class="nav-link "> Google Charts </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="charts_echarts.html" class="nav-link "> eCharts </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="charts_morris.html" class="nav-link "> Morris Charts </a>
</li>
<li aria-haspopup="true" class="dropdown-submenu ">
<a href="javascript:;" class="nav-link nav-toggle"> HighCharts
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li class="">
<a href="charts_highcharts.html" class="nav-link " target="_blank"> HighCharts </a>
</li>
<li class="">
<a href="charts_highstock.html" class="nav-link " target="_blank"> HighStock </a>
</li>
<li class="">
<a href="charts_highmaps.html" class="nav-link " target="_blank"> HighMaps </a>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li aria-haspopup="true" class="menu-dropdown classic-menu-dropdown ">
<a href="javascript:;">
<i class="icon-briefcase"></i> Pages
<span class="arrow"></span>
</a>
<ul class="dropdown-menu pull-left">
<li aria-haspopup="true" class="dropdown-submenu ">
<a href="javascript:;" class="nav-link nav-toggle ">
<i class="icon-basket"></i> eCommerce
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li aria-haspopup="true" class=" ">
<a href="ecommerce_index.html" class="nav-link ">
<i class="icon-home"></i> Dashboard </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="ecommerce_orders.html" class="nav-link ">
<i class="icon-basket"></i> Orders </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="ecommerce_orders_view.html" class="nav-link ">
<i class="icon-tag"></i> Order View </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="ecommerce_products.html" class="nav-link ">
<i class="icon-graph"></i> Products </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="ecommerce_products_edit.html" class="nav-link ">
<i class="icon-graph"></i> Product Edit </a>
</li>
</ul>
</li>
<li aria-haspopup="true" class="dropdown-submenu ">
<a href="javascript:;" class="nav-link nav-toggle ">
<i class="icon-docs"></i> Apps
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li aria-haspopup="true" class=" ">
<a href="app_todo.html" class="nav-link ">
<i class="icon-clock"></i> Todo 1 </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="app_todo_2.html" class="nav-link ">
<i class="icon-check"></i> Todo 2 </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="app_inbox.html" class="nav-link ">
<i class="icon-envelope"></i> Inbox </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="app_calendar.html" class="nav-link ">
<i class="icon-calendar"></i> Calendar </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="app_ticket.html" class="nav-link ">
<i class="icon-notebook"></i> Support </a>
</li>
</ul>
</li>
<li aria-haspopup="true" class="dropdown-submenu ">
<a href="javascript:;" class="nav-link nav-toggle ">
<i class="icon-user"></i> User
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li aria-haspopup="true" class=" ">
<a href="page_user_profile_1.html" class="nav-link ">
<i class="icon-user"></i> Profile 1 </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="page_user_profile_1_account.html" class="nav-link ">
<i class="icon-user-female"></i> Profile 1 Account </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="page_user_profile_1_help.html" class="nav-link ">
<i class="icon-user-following"></i> Profile 1 Help </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="page_user_profile_2.html" class="nav-link ">
<i class="icon-users"></i> Profile 2 </a>
</li>
<li aria-haspopup="true" class="dropdown-submenu ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-notebook"></i> Login
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li class="">
<a href="page_user_login_1.html" class="nav-link " target="_blank"> Login Page 1 </a>
</li>
<li class="">
<a href="page_user_login_2.html" class="nav-link " target="_blank"> Login Page 2 </a>
</li>
<li class="">
<a href="page_user_login_3.html" class="nav-link " target="_blank"> Login Page 3 </a>
</li>
<li class="">
<a href="page_user_login_4.html" class="nav-link " target="_blank"> Login Page 4 </a>
</li>
<li class="">
<a href="page_user_login_5.html" class="nav-link " target="_blank"> Login Page 5 </a>
</li>
<li class="">
<a href="page_user_login_6.html" class="nav-link " target="_blank"> Login Page 6 </a>
</li>
</ul>
</li>
<li aria-haspopup="true" class=" ">
<a href="page_user_lock_1.html" class="nav-link " target="_blank">
<i class="icon-lock"></i> Lock Screen 1 </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="page_user_lock_2.html" class="nav-link " target="_blank">
<i class="icon-lock-open"></i> Lock Screen 2 </a>
</li>
</ul>
</li>
<li aria-haspopup="true" class="dropdown-submenu ">
<a href="javascript:;" class="nav-link nav-toggle ">
<i class="icon-social-dribbble"></i> General
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li aria-haspopup="true" class=" ">
<a href="page_general_about.html" class="nav-link ">
<i class="icon-info"></i> About </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="page_general_contact.html" class="nav-link ">
<i class="icon-call-end"></i> Contact </a>
</li>
<li aria-haspopup="true" class="dropdown-submenu ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-notebook"></i> Portfolio
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li class="">
<a href="page_general_portfolio_1.html" class="nav-link "> Portfolio 1 </a>
</li>
<li class="">
<a href="page_general_portfolio_2.html" class="nav-link "> Portfolio 2 </a>
</li>
<li class="">
<a href="page_general_portfolio_3.html" class="nav-link "> Portfolio 3 </a>
</li>
<li class="">
<a href="page_general_portfolio_4.html" class="nav-link "> Portfolio 4 </a>
</li>
</ul>
</li>
<li aria-haspopup="true" class="dropdown-submenu ">
<a href="javascript:;" class="nav-link nav-toggle">
<i class="icon-magnifier"></i> Search
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li class="">
<a href="page_general_search.html" class="nav-link "> Search 1 </a>
</li>
<li class="">
<a href="page_general_search_2.html" class="nav-link "> Search 2 </a>
</li>
<li class="">
<a href="page_general_search_3.html" class="nav-link "> Search 3 </a>
</li>
<li class="">
<a href="page_general_search_4.html" class="nav-link "> Search 4 </a>
</li>
<li class="">
<a href="page_general_search_5.html" class="nav-link "> Search 5 </a>
</li>
</ul>
</li>
<li aria-haspopup="true" class=" ">
<a href="page_general_pricing.html" class="nav-link ">
<i class="icon-tag"></i> Pricing </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="page_general_faq.html" class="nav-link ">
<i class="icon-wrench"></i> FAQ </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="page_general_blog.html" class="nav-link ">
<i class="icon-pencil"></i> Blog </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="page_general_blog_post.html" class="nav-link ">
<i class="icon-note"></i> Blog Post </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="page_general_invoice.html" class="nav-link ">
<i class="icon-envelope"></i> Invoice </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="page_general_invoice_2.html" class="nav-link ">
<i class="icon-envelope"></i> Invoice 2 </a>
</li>
</ul>
</li>
<li aria-haspopup="true" class="dropdown-submenu ">
<a href="javascript:;" class="nav-link nav-toggle ">
<i class="icon-settings"></i> System
<span class="arrow"></span>
</a>
<ul class="dropdown-menu">
<li aria-haspopup="true" class=" ">
<a href="page_system_coming_soon.html" class="nav-link " target="_blank"> Coming Soon </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="page_system_404_1.html" class="nav-link "> 404 Page 1 </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="page_system_404_2.html" class="nav-link " target="_blank"> 404 Page 2 </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="page_system_404_3.html" class="nav-link " target="_blank"> 404 Page 3 </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="page_system_500_1.html" class="nav-link "> 500 Page 1 </a>
</li>
<li aria-haspopup="true" class=" ">
<a href="page_system_500_2.html" class="nav-link " target="_blank"> 500 Page 2 </a>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<!-- END MEGA MENU -->
</div>
</div>
<!-- END HEADER MENU -->
</div>
<!-- END HEADER -->
</div>
</div>
<div class="page-wrapper-row full-height">
<div class="page-wrapper-middle">
<!-- BEGIN CONTAINER -->
<div class="page-container">
<!-- BEGIN CONTENT -->
<div class="page-content-wrapper">
<!-- BEGIN CONTENT BODY -->
<!-- BEGIN PAGE HEAD-->
<div class="page-head">
<div class="container">
<!-- BEGIN PAGE TITLE -->
<div class="page-title">
<h1>Tabs, Accordions & Navs
<small>metronic and bootstrap custom navbars, tabs, pills, accordions and resizable tabs based on bootstrap-tabdrop plugin</small>
</h1>
</div>
<!-- END PAGE TITLE -->
<!-- BEGIN PAGE TOOLBAR -->
<div class="page-toolbar">
<!-- BEGIN THEME PANEL -->
<div class="btn-group btn-theme-panel">
<a href="javascript:;" class="btn dropdown-toggle" data-toggle="dropdown">
<i class="icon-settings"></i>
</a>
<div class="dropdown-menu theme-panel pull-right dropdown-custom hold-on-click">
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-12">
<h3>THEME COLORS</h3>
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-12">
<ul class="theme-colors">
<li class="theme-color theme-color-default" data-theme="default">
<span class="theme-color-view"></span>
<span class="theme-color-name">Default</span>
</li>
<li class="theme-color theme-color-blue-hoki" data-theme="blue-hoki">
<span class="theme-color-view"></span>
<span class="theme-color-name">Blue Hoki</span>
</li>
<li class="theme-color theme-color-blue-steel" data-theme="blue-steel">
<span class="theme-color-view"></span>
<span class="theme-color-name">Blue Steel</span>
</li>
<li class="theme-color theme-color-yellow-orange" data-theme="yellow-orange">
<span class="theme-color-view"></span>
<span class="theme-color-name">Orange</span>
</li>
<li class="theme-color theme-color-yellow-crusta" data-theme="yellow-crusta">
<span class="theme-color-view"></span>
<span class="theme-color-name">Yellow Crusta</span>
</li>
</ul>
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
<ul class="theme-colors">
<li class="theme-color theme-color-green-haze" data-theme="green-haze">
<span class="theme-color-view"></span>
<span class="theme-color-name">Green Haze</span>
</li>
<li class="theme-color theme-color-red-sunglo" data-theme="red-sunglo">
<span class="theme-color-view"></span>
<span class="theme-color-name">Red Sunglo</span>
</li>
<li class="theme-color theme-color-red-intense" data-theme="red-intense">
<span class="theme-color-view"></span>
<span class="theme-color-name">Red Intense</span>
</li>
<li class="theme-color theme-color-purple-plum" data-theme="purple-plum">
<span class="theme-color-view"></span>
<span class="theme-color-name">Purple Plum</span>
</li>
<li class="theme-color theme-color-purple-studio" data-theme="purple-studio">
<span class="theme-color-view"></span>
<span class="theme-color-name">Purple Studio</span>
</li>
</ul>
</div>
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-12 seperator">
<h3>LAYOUT</h3>
<ul class="theme-settings">
<li> Layout
<select class="theme-setting theme-setting-layout form-control input-sm input-small input-inline tooltips" data-original-title="Change layout type" data-container="body" data-placement="left">
<option value="boxed" selected="selected">Boxed</option>
<option value="fluid">Fluid</option>
</select>
</li>
<li> Top Menu Style
<select class="theme-setting theme-setting-top-menu-style form-control input-sm input-small input-inline tooltips" data-original-title="Change top menu dropdowns style" data-container="body"
data-placement="left">
<option value="dark" selected="selected">Dark</option>
<option value="light">Light</option>
</select>
</li>
<li> Top Menu Mode
<select class="theme-setting theme-setting-top-menu-mode form-control input-sm input-small input-inline tooltips" data-original-title="Enable fixed(sticky) top menu" data-container="body"
data-placement="left">
<option value="fixed">Fixed</option>
<option value="not-fixed" selected="selected">Not Fixed</option>
</select>
</li>
<li> Mega Menu Style
<select class="theme-setting theme-setting-mega-menu-style form-control input-sm input-small input-inline tooltips" data-original-title="Change mega menu dropdowns style" data-container="body"
data-placement="left">
<option value="dark" selected="selected">Dark</option>
<option value="light">Light</option>
</select>
</li>
<li> Mega Menu Mode
<select class="theme-setting theme-setting-mega-menu-mode form-control input-sm input-small input-inline tooltips" data-original-title="Enable fixed(sticky) mega menu" data-container="body"
data-placement="left">
<option value="fixed" selected="selected">Fixed</option>
<option value="not-fixed">Not Fixed</option>
</select>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- END THEME PANEL -->
</div>
<!-- END PAGE TOOLBAR -->
</div>
</div>
<!-- END PAGE HEAD-->
<!-- BEGIN PAGE CONTENT BODY -->
<div class="page-content">
<div class="container">
<!-- BEGIN PAGE BREADCRUMBS -->
<ul class="page-breadcrumb breadcrumb">
<li>
<a href="index.html">Home</a>
<i class="fa fa-circle"></i>
</li>
<li>
<a href="#">UI Features</a>
<i class="fa fa-circle"></i>
</li>
<li>
<span>Tabs, Accordions & Navs</span>
</li>
</ul>
<!-- END PAGE BREADCRUMBS -->
<!-- BEGIN PAGE CONTENT INNER -->
<div class="page-content-inner">
<div class="row">
<div class="col-md-6">
<div class="portlet light ">
<div class="portlet-title">
<div class="caption">
<i class="icon-social-dribbble font-purple-soft"></i>
<span class="caption-subject font-purple-soft bold uppercase">Default Tabs</span>
</div>
<div class="actions">
<a class="btn btn-circle btn-icon-only btn-default" href="javascript:;">
<i class="icon-cloud-upload"></i>
</a>
<a class="btn btn-circle btn-icon-only btn-default" href="javascript:;">
<i class="icon-wrench"></i>
</a>
<a class="btn btn-circle btn-icon-only btn-default" href="javascript:;">
<i class="icon-trash"></i>
</a>
</div>
</div>
<div class="portlet-body">
<ul class="nav nav-tabs">
<li class="active">
<a href="#tab_1_1" data-toggle="tab"> Home </a>
</li>
<li>
<a href="#tab_1_2" data-toggle="tab"> Profile </a>
</li>
<li class="dropdown">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown"> Dropdown
<i class="fa fa-angle-down"></i>
</a>
<ul class="dropdown-menu" role="menu">
<li>
<a href="#tab_1_3" tabindex="-1" data-toggle="tab"> Option 1 </a>
</li>
<li>
<a href="#tab_1_4" tabindex="-1" data-toggle="tab"> Option 2 </a>
</li>
<li>
<a href="#tab_1_3" tabindex="-1" data-toggle="tab"> Option 3 </a>
</li>
<li>
<a href="#tab_1_4" tabindex="-1" data-toggle="tab"> Option 4 </a>
</li>
</ul>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane fade active in" id="tab_1_1">
<p> Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit
butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel,
butcher voluptate nisi qui. </p>
</div>
<div class="tab-pane fade" id="tab_1_2">
<p> Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan four loko
farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda labore aesthetic
magna delectus mollit. Keytar helvetica VHS salvia yr, vero magna velit sapiente labore stumptown. Vegan fanny pack odio cillum wes anderson 8-bit, sustainable jean shorts beard ut DIY
ethical culpa terry richardson biodiesel. Art party scenester stumptown, tumblr butcher vero sint qui sapiente accusamus tattooed echo park. </p>
</div>
<div class="tab-pane fade" id="tab_1_3">
<p> Etsy mixtape wayfarers, ethical wes anderson tofu before they sold out mcsweeney's organic lomo retro fanny pack lo-fi farm-to-table readymade. Messenger bag gentrify pitchfork tattooed craft
beer, iphone skateboard locavore carles etsy salvia banksy hoodie helvetica. DIY synth PBR banksy irony. Leggings gentrify squid 8-bit cred pitchfork. Williamsburg banh mi whatever gluten-free,
carles pitchfork biodiesel fixie etsy retro mlkshk vice blog. Scenester cred you probably haven't heard of them, vinyl craft beer blog stumptown. Pitchfork sustainable tofu synth chambray
yr. </p>
</div>
<div class="tab-pane fade" id="tab_1_4">
<p> Trust fund seitan letterpress, keytar raw denim keffiyeh etsy art party before they sold out master cleanse gluten-free squid scenester freegan cosby sweater. Fanny pack portland seitan DIY,
art party locavore wolf cliche high life echo park Austin. Cred vinyl keffiyeh DIY salvia PBR, banh mi before they sold out farm-to-table VHS viral locavore cosby sweater. Lomo wolf viral,
mustache readymade thundercats keffiyeh craft beer marfa ethical. Wolf salvia freegan, sartorial keffiyeh echo park vegan. </p>
</div>
</div>
<div class="clearfix margin-bottom-20"> </div>
<ul class="nav nav-tabs tabs-reversed">
<li class="active">
<a href="#tab_reversed_1_1" data-toggle="tab"> Home </a>
</li>
<li>
<a href="#tab_reversed_1_2" data-toggle="tab"> Profile </a>
</li>
<li class="dropdown">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown"> Dropdown
<i class="fa fa-angle-down"></i>
</a>
<ul class="dropdown-menu" role="menu">
<li>
<a href="#tab_reversed_1_3" tabindex="-1" data-toggle="tab"> Option 1 </a>
</li>
<li>
<a href="#tab_reversed_1_4" tabindex="-1" data-toggle="tab"> Option 2 </a>
</li>
<li>
<a href="#tab_reversed_1_3" tabindex="-1" data-toggle="tab"> Option 3 </a>
</li>
<li>
<a href="#tab_reversed_1_4" tabindex="-1" data-toggle="tab"> Option 4 </a>
</li>
</ul>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane fade active in" id="tab_reversed_1_1">
<p> Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit
butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel,
butcher voluptate nisi qui. </p>
</div>
<div class="tab-pane fade" id="tab_reversed_1_2">
<p> Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan four loko
farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda labore aesthetic
magna delectus mollit. Keytar helvetica VHS salvia yr, vero magna velit sapiente labore stumptown. Vegan fanny pack odio cillum wes anderson 8-bit, sustainable jean shorts beard ut DIY
ethical culpa terry richardson biodiesel. Art party scenester stumptown, tumblr butcher vero sint qui sapiente accusamus tattooed echo park. </p>
</div>
<div class="tab-pane fade" id="tab_reversed_1_3">
<p> Etsy mixtape wayfarers, ethical wes anderson tofu before they sold out mcsweeney's organic lomo retro fanny pack lo-fi farm-to-table readymade. Messenger bag gentrify pitchfork tattooed craft
beer, iphone skateboard locavore carles etsy salvia banksy hoodie helvetica. DIY synth PBR banksy irony. Leggings gentrify squid 8-bit cred pitchfork. Williamsburg banh mi whatever gluten-free,
carles pitchfork biodiesel fixie etsy retro mlkshk vice blog. Scenester cred you probably haven't heard of them, vinyl craft beer blog stumptown. Pitchfork sustainable tofu synth chambray
yr. </p>
</div>
<div class="tab-pane fade" id="tab_reversed_1_4">
<p> Trust fund seitan letterpress, keytar raw denim keffiyeh etsy art party before they sold out master cleanse gluten-free squid scenester freegan cosby sweater. Fanny pack portland seitan DIY,
art party locavore wolf cliche high life echo park Austin. Cred vinyl keffiyeh DIY salvia PBR, banh mi before they sold out farm-to-table VHS viral locavore cosby sweater. Lomo wolf viral,
mustache readymade thundercats keffiyeh craft beer marfa ethical. Wolf salvia freegan, sartorial keffiyeh echo park vegan. </p>
</div>
</div>
</div>
</div>
<div class="portlet light ">
<div class="portlet-title">
<div class="caption">
<i class="icon-bubble font-green-sharp"></i>
<span class="caption-subject font-green-sharp bold uppercase">Default Pills</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">
<ul class="nav nav-pills">
<li class="active">
<a href="#tab_2_1" data-toggle="tab"> Home </a>
</li>
<li>
<a href="#tab_2_2" data-toggle="tab"> Profile </a>
</li>
<li class="dropdown">
<a href="javascript:;" id="myTabDrop1" class="dropdown-toggle" data-toggle="dropdown"> Dropdown
<i class="fa fa-angle-down"></i>
</a>
<ul class="dropdown-menu" role="menu" aria-labelledby="myTabDrop1">
<li>
<a href="#tab_2_3" tabindex="-1" data-toggle="tab"> Option 1 </a>
</li>
<li>
<a href="#tab_2_4" tabindex="-1" data-toggle="tab"> Option 2 </a>
</li>
<li>
<a href="#tab_2_3" tabindex="-1" data-toggle="tab"> Option 3 </a>
</li>
<li>
<a href="#tab_2_4" tabindex="-1" data-toggle="tab"> Option 4 </a>
</li>
</ul>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane fade active in" id="tab_2_1">
<p> Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit
butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel,
butcher voluptate nisi qui. </p>
</div>
<div class="tab-pane fade" id="tab_2_2">
<p> Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan four loko
farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda labore aesthetic
magna delectus mollit. Keytar helvetica VHS salvia yr, vero magna velit sapiente labore stumptown. Vegan fanny pack odio cillum wes anderson 8-bit, sustainable jean shorts beard ut DIY
ethical culpa terry richardson biodiesel. Art party scenester stumptown, tumblr butcher vero sint qui sapiente accusamus tattooed echo park. </p>
</div>
<div class="tab-pane fade" id="tab_2_3">
<p> Etsy mixtape wayfarers, ethical wes anderson tofu before they sold out mcsweeney's organic lomo retro fanny pack lo-fi farm-to-table readymade. Messenger bag gentrify pitchfork tattooed craft
beer, iphone skateboard locavore carles etsy salvia banksy hoodie helvetica. DIY synth PBR banksy irony. Leggings gentrify squid 8-bit cred pitchfork. Williamsburg banh mi whatever gluten-free,
carles pitchfork biodiesel fixie etsy retro mlkshk vice blog. Scenester cred you probably haven't heard of them, vinyl craft beer blog stumptown. Pitchfork sustainable tofu synth chambray
yr. </p>
</div>
<div class="tab-pane fade" id="tab_2_4">
<p> Trust fund seitan letterpress, keytar raw denim keffiyeh etsy art party before they sold out master cleanse gluten-free squid scenester freegan cosby sweater. Fanny pack portland seitan DIY,
art party locavore wolf cliche high life echo park Austin. Cred vinyl keffiyeh DIY salvia PBR, banh mi before they sold out farm-to-table VHS viral locavore cosby sweater. Lomo wolf viral,
mustache readymade thundercats keffiyeh craft beer marfa ethical. Wolf salvia freegan, sartorial keffiyeh echo park vegan. </p>
</div>
</div>
</div>
</div>
<div class="portlet light ">
<div class="portlet-title">
<div class="caption">
<span class="caption-subject font-grey-salsa bold uppercase">Below Tabs</span>
</div>
<div class="actions">
<div class="actions">
<a href="javascript:;" class="btn btn-circle btn-default">
<i class="fa fa-pencil"></i> Edit </a>
<a href="javascript:;" class="btn btn-circle btn-default">
<i class="fa fa-plus"></i> Add </a>
</div>
</div>
</div>
<div class="portlet-body tabs-below">
<div class="tab-content">
<div class="tab-pane active" id="tab_3_1">
<p> Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit
butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel,
butcher voluptate nisi qui. </p>
</div>
<div class="tab-pane fade" id="tab_3_2">
<p> Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan four loko
farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda labore aesthetic
magna delectus mollit. Keytar helvetica VHS salvia yr, vero magna velit sapiente labore stumptown. Vegan fanny pack odio cillum wes anderson 8-bit, sustainable jean shorts beard ut DIY
ethical culpa terry richardson biodiesel. Art party scenester stumptown, tumblr butcher vero sint qui sapiente accusamus tattooed echo park. </p>
</div>
<div class="tab-pane fade" id="tab_3_3">
<p> Etsy mixtape wayfarers, ethical wes anderson tofu before they sold out mcsweeney's organic lomo retro fanny pack lo-fi farm-to-table readymade. Messenger bag gentrify pitchfork tattooed craft
beer, iphone skateboard locavore carles etsy salvia banksy hoodie helvetica. DIY synth PBR banksy irony. Leggings gentrify squid 8-bit cred pitchfork. Williamsburg banh mi whatever gluten-free,
carles pitchfork biodiesel fixie etsy retro mlkshk vice blog. Scenester cred you probably haven't heard of them, vinyl craft beer blog stumptown. Pitchfork sustainable tofu synth chambray
yr. </p>
</div>
<div class="tab-pane fade" id="tab_3_4">
<p> Trust fund seitan letterpress, keytar raw denim keffiyeh etsy art party before they sold out master cleanse gluten-free squid scenester freegan cosby sweater. Fanny pack portland seitan DIY,
art party locavore wolf cliche high life echo park Austin. Cred vinyl keffiyeh DIY salvia PBR, banh mi before they sold out farm-to-table VHS viral locavore cosby sweater. Lomo wolf viral,
mustache readymade thundercats keffiyeh craft beer marfa ethical. Wolf salvia freegan, sartorial keffiyeh echo park vegan. </p>
</div>
</div>
<ul class="nav nav-tabs">
<li class="active">
<a href="#tab_3_1" data-toggle="tab"> Home </a>
</li>
<li>
<a href="#tab_3_2" data-toggle="tab"> Profile </a>
</li>
<li class="dropdown dropup">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown"> Dropdown
<i class="fa fa-angle-up"></i>
</a>
<ul class="dropdown-menu" role="menu">
<li>
<a href="#tab_3_3" tabindex="-1" data-toggle="tab"> Option 1 </a>
</li>
<li>
<a href="#tab_3_4" tabindex="-1" data-toggle="tab"> Option 2 </a>
</li>
<li>
<a href="#tab_3_3" tabindex="-1" data-toggle="tab"> Option 3 </a>
</li>
<li>
<a href="#tab_3_4" tabindex="-1" data-toggle="tab"> Option 4 </a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="portlet box red">
<div class="portlet-title">
<div class="caption">
<i class="fa fa-gift"></i>Below Pills </div>
<div class="tools">
<a href="javascript:;" class="collapse"> </a>
<a href="#portlet-config" data-toggle="modal" class="config"> </a>
</div>
</div>
<div class="portlet-body tabs-below">
<div class="tab-content">
<div class="tab-pane active" id="tab_4_1">
<p> Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit
butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel,
butcher voluptate nisi qui. </p>
</div>
<div class="tab-pane fade" id="tab_4_2">
<p> Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan four loko
farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda labore aesthetic
magna delectus mollit. Keytar helvetica VHS salvia yr, vero magna velit sapiente labore stumptown. Vegan fanny pack odio cillum wes anderson 8-bit, sustainable jean shorts beard ut DIY
ethical culpa terry richardson biodiesel. Art party scenester stumptown, tumblr butcher vero sint qui sapiente accusamus tattooed echo park. </p>
</div>
<div class="tab-pane fade" id="tab_4_3">
<p> Etsy mixtape wayfarers, ethical wes anderson tofu before they sold out mcsweeney's organic lomo retro fanny pack lo-fi farm-to-table readymade. Messenger bag gentrify pitchfork tattooed craft
beer, iphone skateboard locavore carles etsy salvia banksy hoodie helvetica. DIY synth PBR banksy irony. Leggings gentrify squid 8-bit cred pitchfork. Williamsburg banh mi whatever gluten-free,
carles pitchfork biodiesel fixie etsy retro mlkshk vice blog. Scenester cred you probably haven't heard of them, vinyl craft beer blog stumptown. Pitchfork sustainable tofu synth chambray
yr. </p>
</div>
<div class="tab-pane fade" id="tab_4_4">
<p> Trust fund seitan letterpress, keytar raw denim keffiyeh etsy art party before they sold out master cleanse gluten-free squid scenester freegan cosby sweater. Fanny pack portland seitan DIY,
art party locavore wolf cliche high life echo park Austin. Cred vinyl keffiyeh DIY salvia PBR, banh mi before they sold out farm-to-table VHS viral locavore cosby sweater. Lomo wolf viral,
mustache readymade thundercats keffiyeh craft beer marfa ethical. Wolf salvia freegan, sartorial keffiyeh echo park vegan. </p>
</div>
</div>
<ul class="nav nav-pills">
<li class="active">
<a href="#tab_4_1" data-toggle="tab"> Home </a>
</li>
<li>
<a href="#tab_4_2" data-toggle="tab"> Profile </a>
</li>
<li class="dropdown dropup">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown"> Dropdown
<i class="fa fa-angle-up"></i>
</a>
<ul class="dropdown-menu" role="menu">
<li>
<a href="#tab_4_3" tabindex="-1" data-toggle="tab"> Option 1 </a>
</li>
<li>
<a href="#tab_4_4" tabindex="-1" data-toggle="tab"> Option 2 </a>
</li>
<li>
<a href="#tab_4_3" tabindex="-1" data-toggle="tab"> Option 3 </a>
</li>
<li>
<a href="#tab_4_4" tabindex="-1" data-toggle="tab"> Option 4 </a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="portlet box blue">
<div class="portlet-title">
<div class="caption">
<i class="fa fa-gift"></i>Left Tabs </div>
<div class="tools">
<a href="javascript:;" class="collapse"> </a>
<a href="#portlet-config" data-toggle="modal" class="config"> </a>
</div>
</div>
<div class="portlet-body">
<div class="row">
<div class="col-md-3 col-sm-3 col-xs-3">
<ul class="nav nav-tabs tabs-left">
<li class="active">
<a href="#tab_6_1" data-toggle="tab"> Home </a>
</li>
<li>
<a href="#tab_6_2" data-toggle="tab"> Profile </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" role="menu">
<li>
<a href="#tab_6_3" tabindex="-1" data-toggle="tab"> Option 1 </a>
</li>
<li>
<a href="#tab_6_4" tabindex="-1" data-toggle="tab"> Option 2 </a>
</li>
<li>
<a href="#tab_6_3" tabindex="-1" data-toggle="tab"> Option 3 </a>
</li>
<li>
<a href="#tab_6_4" tabindex="-1" data-toggle="tab"> Option 4 </a>
</li>
</ul>
</li>
<li>
<a href="#tab_6_1" data-toggle="tab"> Settings </a>
</li>
<li>
<a href="#tab_6_1" data-toggle="tab"> More </a>
</li>
</ul>
</div>
<div class="col-md-9 col-sm-9 col-xs-9">
<div class="tab-content">
<div class="tab-pane active" id="tab_6_1">
<p> Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica.
Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis
cardigan american apparel, butcher voluptate nisi qui. </p>
</div>
<div class="tab-pane fade" id="tab_6_2">
<p> Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan
four loko farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda
labore aesthetic magna delectus mollit. Keytar helvetica VHS salvia yr, vero magna velit sapiente labore stumptown. Vegan fanny pack odio cillum wes anderson 8-bit, sustainable
jean shorts beard ut DIY ethical culpa terry richardson biodiesel. Art party scenester stumptown, tumblr butcher vero sint qui sapiente accusamus tattooed echo park. </p>
</div>
<div class="tab-pane fade" id="tab_6_3">
<p> Etsy mixtape wayfarers, ethical wes anderson tofu before they sold out mcsweeney's organic lomo retro fanny pack lo-fi farm-to-table readymade. Messenger bag gentrify pitchfork tattooed
craft beer, iphone skateboard locavore carles etsy salvia banksy hoodie helvetica. DIY synth PBR banksy irony. Leggings gentrify squid 8-bit cred pitchfork. Williamsburg banh
mi whatever gluten-free, carles pitchfork biodiesel fixie etsy retro mlkshk vice blog. Scenester cred you probably haven't heard of them, vinyl craft beer blog stumptown. Pitchfork
sustainable tofu synth chambray yr. </p>
</div>
<div class="tab-pane fade" id="tab_6_4">
<p> Trust fund seitan letterpress, keytar raw denim keffiyeh etsy art party before they sold out master cleanse gluten-free squid scenester freegan cosby sweater. Fanny pack portland
seitan DIY, art party locavore wolf cliche high life echo park Austin. Cred vinyl keffiyeh DIY salvia PBR, banh mi before they sold out farm-to-table VHS viral locavore cosby
sweater. Lomo wolf viral, mustache readymade thundercats keffiyeh craft beer marfa ethical. Wolf salvia freegan, sartorial keffiyeh echo park vegan. </p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portlet box green">
<div class="portlet-title">
<div class="caption">
<i class="fa fa-gift"></i>Right Tabs </div>
<div class="tools">
<a href="javascript:;" class="collapse"> </a>
<a href="#portlet-config" data-toggle="modal" class="config"> </a>
</div>
</div>
<div class="portlet-body">
<div class="row">
<div class="col-md-9 col-sm-9 col-xs-9">
<div class="tab-content">
<div class="tab-pane active" id="tab_7_1">
<p> Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica.
Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis
cardigan american apparel, butcher voluptate nisi qui. </p>
</div>
<div class="tab-pane fade" id="tab_7_2">
<p> Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan
four loko farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda
labore aesthetic magna delectus mollit. Keytar helvetica VHS salvia yr, vero magna velit sapiente labore stumptown. Vegan fanny pack odio cillum wes anderson 8-bit, sustainable
jean shorts beard ut DIY ethical culpa terry richardson biodiesel. Art party scenester stumptown, tumblr butcher vero sint qui sapiente accusamus tattooed echo park. </p>
</div>
<div class="tab-pane fade" id="tab_7_3">
<p> Etsy mixtape wayfarers, ethical wes anderson tofu before they sold out mcsweeney's organic lomo retro fanny pack lo-fi farm-to-table readymade. Messenger bag gentrify pitchfork tattooed
craft beer, iphone skateboard locavore carles etsy salvia banksy hoodie helvetica. DIY synth PBR banksy irony. Leggings gentrify squid 8-bit cred pitchfork. Williamsburg banh
mi whatever gluten-free, carles pitchfork biodiesel fixie etsy retro mlkshk vice blog. Scenester cred you probably haven't heard of them, vinyl craft beer blog stumptown. Pitchfork
sustainable tofu synth chambray yr. </p>
</div>
<div class="tab-pane fade" id="tab_7_4">
<p> Trust fund seitan letterpress, keytar raw denim keffiyeh etsy art party before they sold out master cleanse gluten-free squid scenester freegan cosby sweater. Fanny pack portland
seitan DIY, art party locavore wolf cliche high life echo park Austin. Cred vinyl keffiyeh DIY salvia PBR, banh mi before they sold out farm-to-table VHS viral locavore cosby
sweater. Lomo wolf viral, mustache readymade thundercats keffiyeh craft beer marfa ethical. Wolf salvia freegan, sartorial keffiyeh echo park vegan. </p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-3">
<ul class="nav nav-tabs tabs-right">
<li class="active">
<a href="#tab_7_1" data-toggle="tab"> Home </a>
</li>
<li>
<a href="#tab_7_2" data-toggle="tab"> Profile </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" role="menu">
<li>
<a href="#tab_7_3" tabindex="-1" data-toggle="tab"> Option 1 </a>
</li>
<li>
<a href="#tab_7_4" tabindex="-1" data-toggle="tab"> Option 2 </a>
</li>
<li>
<a href="#tab_7_3" tabindex="-1" data-toggle="tab"> Option 3 </a>
</li>
<li>
<a href="#tab_7_4" tabindex="-1" data-toggle="tab"> Option 4 </a>
</li>
</ul>
</li>
<li>
<a href="#tab_7_1" data-toggle="tab"> Settings </a>
</li>
<li>
<a href="#tab_7_1" data-toggle="tab"> More </a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="portlet box yellow">
<div class="portlet-title">
<div class="caption">
<i class="fa fa-gift"></i>Styled Tabs </div>
<div class="tools">
<a href="javascript:;" class="collapse"> </a>
<a href="#portlet-config" data-toggle="modal" class="config"> </a>
</div>
</div>
<div class="portlet-body">
<h3>Default Tab</h3>
<div class="tabbable-line">
<ul class="nav nav-tabs ">
<li class="active">
<a href="#tab_15_1" data-toggle="tab"> Section 1 </a>
</li>
<li>
<a href="#tab_15_2" data-toggle="tab"> Section 2 </a>
</li>
<li>
<a href="#tab_15_3" data-toggle="tab"> Section 3 </a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="tab_15_1">
<p> I'm in Section 1. </p>
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut
aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate
velit esse molestie consequat. </p>
</div>
<div class="tab-pane" id="tab_15_2">
<p> Howdy, I'm in Section 2. </p>
<p> Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate
velit esse molestie consequat. Ut wisi enim ad minim veniam, quis nostrud exerci tation. </p>
<p>
<a class="btn green" href="ui_tabs_accordions_navs.html#tab_15_2" target="_blank"> Activate this tab via URL </a>
</p>
</div>
<div class="tab-pane" id="tab_15_3">
<p> Howdy, I'm in Section 3. </p>
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat </p>
<p>
<a class="btn yellow" href="ui_tabs_accordions_navs.html#tab_15_3" target="_blank"> Activate this tab via URL </a>
</p>
</div>
</div>
</div>
<h3>Below Tab</h3>
<div class="tabbable-line tabs-below">
<div class="tab-content">
<div class="tab-pane active" id="tab_16_2_1">
<p> I'm in Section 1. </p>
<p> Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate
velit esse molestie consequat. </p>
<p> Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate
velit esse molestie consequat dolor in hendrerit in vulputate velit esse molestie consequat. </p>
</div>
<div class="tab-pane" id="tab_16_2_2">
<p> Howdy, I'm in Section 2. </p>
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat. </p>
<p>
<a class="btn yellow" href="ui_tabs_accordions_navs.html#tab_16_2_2" target="_blank"> Activate this tab via URL </a>
</p>
</div>
<div class="tab-pane" id="tab_16_2_3">
<p> Howdy, I'm in Section 3. </p>
<p> Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate
velit esse molestie consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate. </p>
<p>
<a class="btn purple" href="ui_tabs_accordions_navs.html#tab_16_2_3" target="_blank"> Activate this tab via URL </a>
</p>
</div>
</div>
<ul class="nav nav-tabs">
<li class="active">
<a href="#tab_16_2_1" data-toggle="tab"> Section 1 </a>
</li>
<li>
<a href="#tab_16_2_2" data-toggle="tab"> Section 2 </a>
</li>
<li>
<a href="#tab_16_2_3" data-toggle="tab"> Section 3 </a>
</li>
</ul>
</div>
</div>
</div>
<div class="portlet box yellow">
<div class="portlet-title">
<div class="caption">
<i class="fa fa-gift"></i>Styled Tabs #2 </div>
<div class="tools">
<a href="javascript:;" class="collapse"> </a>
<a href="#portlet-config" data-toggle="modal" class="config"> </a>
</div>
</div>
<div class="portlet-body">
<div class="tabbable-custom ">
<ul class="nav nav-tabs ">
<li class="active">
<a href="#tab_5_1" data-toggle="tab"> Section 1 </a>
</li>
<li>
<a href="#tab_5_2" data-toggle="tab"> Section 2 </a>
</li>
<li>
<a href="#tab_5_3" data-toggle="tab"> Section 3 </a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="tab_5_1">
<p> I'm in Section 1. </p>
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut
aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate
velit esse molestie consequat. </p>
</div>
<div class="tab-pane" id="tab_5_2">
<p> Howdy, I'm in Section 2. </p>
<p> Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate
velit esse molestie consequat. Ut wisi enim ad minim veniam, quis nostrud exerci tation. </p>
<p>
<a class="btn green" href="ui_tabs_accordions_navs.html#tab_5_2" target="_blank"> Activate this tab via URL </a>
</p>
</div>
<div class="tab-pane" id="tab_5_3">
<p> Howdy, I'm in Section 3. </p>
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat </p>
<p>
<a class="btn yellow" href="ui_tabs_accordions_navs.html#tab_5_3" target="_blank"> Activate this tab via URL </a>
</p>
</div>
</div>
</div>
<div class="tabbable-custom tabs-below">
<div class="tab-content">
<div class="tab-pane active" id="tab_6_2_1">
<p> I'm in Section 1. </p>
<p> Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate
velit esse molestie consequat. </p>
<p> Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate
velit esse molestie consequat dolor in hendrerit in vulputate velit esse molestie consequat. </p>
</div>
<div class="tab-pane" id="tab_6_2_2">
<p> Howdy, I'm in Section 2. </p>
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat. </p>
<p>
<a class="btn yellow" href="ui_tabs_accordions_navs.html#tab_6_2_2" target="_blank"> Activate this tab via URL </a>
</p>
</div>
<div class="tab-pane" id="tab_6_2_3">
<p> Howdy, I'm in Section 3. </p>
<p> Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate
velit esse molestie consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate. </p>
<p>
<a class="btn purple" href="ui_tabs_accordions_navs.html#tab_6_2_3" target="_blank"> Activate this tab via URL </a>
</p>
</div>
</div>
<ul class="nav nav-tabs">
<li class="active">
<a href="#tab_6_2_1" data-toggle="tab"> Section 1 </a>
</li>
<li>
<a href="#tab_6_2_2" data-toggle="tab"> Section 2 </a>
</li>
<li>
<a href="#tab_6_2_3" data-toggle="tab"> Section 3 </a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<!-- BEGIN TAB PORTLET-->
<div class="portlet light ">
<div class="portlet-title">
<div class="caption">
<i class="icon-anchor font-green-sharp"></i>
<span class="caption-subject font-green-sharp bold uppercase">Tab drop</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">
<p> Basic exemple. Resize the window to see how the tabs are moved into the dropdown </p>
<div class="tabbable tabbable-tabdrop">
<ul class="nav nav-tabs">
<li class="active">
<a href="#tab1" data-toggle="tab">Section 1</a>
</li>
<li>
<a href="#tab2" data-toggle="tab">Section 2</a>
</li>
<li>
<a href="#tab3" data-toggle="tab">Section 3</a>
</li>
<li>
<a href="#tab4" data-toggle="tab">Section 4</a>
</li>
<li>
<a href="#tab5" data-toggle="tab">Section 5</a>
</li>
<li>
<a href="#tab6" data-toggle="tab">Section 6</a>
</li>
<li>
<a href="#tab7" data-toggle="tab">Section 7</a>
</li>
<li>
<a href="#tab8" data-toggle="tab">Section 8</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="tab1">
<p> I'm in Section 1. </p>
</div>
<div class="tab-pane" id="tab2">
<p> Howdy, I'm in Section 2. </p>
</div>
<div class="tab-pane" id="tab3">
<p> Howdy, I'm in Section 3. </p>
</div>
<div class="tab-pane" id="tab4">
<p> Howdy, I'm in Section 4. </p>
</div>
<div class="tab-pane" id="tab5">
<p> Howdy, I'm in Section 5. </p>
</div>
<div class="tab-pane" id="tab6">
<p> Howdy, I'm in Section 6. </p>
</div>
<div class="tab-pane" id="tab7">
<p> Howdy, I'm in Section 7. </p>
</div>
<div class="tab-pane" id="tab8">
<p> Howdy, I'm in Section 8. </p>
</div>
<div class="tab-pane" id="tab9">
<p> Howdy, I'm in Section 9. </p>
</div>
</div>
</div>
<p> </p>
<p> </p>
<div class="tabbable tabbable-tabdrop">
<ul class="nav nav-pills">
<li class="active">
<a href="#tab11" data-toggle="tab">Section 1</a>
</li>
<li>
<a href="#tab12" data-toggle="tab">Section 2</a>
</li>
<li>
<a href="#tab13" data-toggle="tab">Section 3</a>
</li>
<li>
<a href="#tab14" data-toggle="tab">Section 4</a>
</li>
<li>
<a href="#tab15" data-toggle="tab">Section 5</a>
</li>
<li>
<a href="#tab16" data-toggle="tab">Section 6</a>
</li>
<li>
<a href="#tab17" data-toggle="tab">Section 7</a>
</li>
<li>
<a href="#tab18" data-toggle="tab">Section 8</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="tab11">
<p> I'm in Section 1. </p>
</div>
<div class="tab-pane" id="tab12">
<p> Howdy, I'm in Section 2. </p>
</div>
<div class="tab-pane" id="tab13">
<p> Howdy, I'm in Section 3. </p>
</div>
<div class="tab-pane" id="tab14">
<p> Howdy, I'm in Section 4. </p>
</div>
<div class="tab-pane" id="tab15">
<p> Howdy, I'm in Section 5. </p>
</div>
<div class="tab-pane" id="tab16">
<p> Howdy, I'm in Section 6. </p>
</div>
<div class="tab-pane" id="tab17">
<p> Howdy, I'm in Section 7. </p>
</div>
<div class="tab-pane" id="tab18">
<p> Howdy, I'm in Section 8. </p>
</div>
<div class="tab-pane" id="tab19">
<p> Howdy, I'm in Section 9. </p>
</div>
</div>
</div>
</div>
</div>
<!-- END TAB PORTLET-->
<!-- BEGIN TAB PORTLET-->
<div class="portlet light ">
<div class="portlet-title tabbable-line">
<div class="caption">
<i class="icon-share font-dark"></i>
<span class="caption-subject font-dark bold uppercase">Portlet Tabs</span>
</div>
<ul class="nav nav-tabs">
<li>
<a href="#portlet_tab3" data-toggle="tab"> Tab 3 </a>
</li>
<li>
<a href="#portlet_tab2" data-toggle="tab"> Tab 2 </a>
</li>
<li class="active">
<a href="#portlet_tab1" data-toggle="tab"> Tab 1 </a>
</li>
</ul>
</div>
<div class="portlet-body">
<div class="tab-content">
<div class="tab-pane active" id="portlet_tab1">
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit
praesent. </p>
<div class="alert alert-warning">
<p> There is a known issue where the dropdown menu appears to be a clipping if it placed in tabbed content. By far there is no flaxible fix for this issue as per discussion here:
<a target="_blank"
href="https://github.com/twitter/bootstrap/issues/3661"> https://github.com/twitter/bootstrap/issues/3661 </a>
</p>
<p> But you can check out the below dropdown menu. Don't worry it won't get chopped out by the tab content. Instead it will be opened as dropup menu </p>
</div>
<div class="btn-group">
<a class="btn purple" href="javascript:;" data-toggle="dropdown">
<i class="fa fa-user"></i> Settings
<i class="fa fa-angle-down"></i>
</a>
<ul class="dropdown-menu bottom-up">
<li>
<a href="javascript:;">
<i class="fa fa-plus"></i> Add </a>
</li>
<li>
<a href="javascript:;">
<i class="fa fa-trash-o"></i> Edit </a>
</li>
<li>
<a href="javascript:;">
<i class="fa fa-times"></i> Delete </a>
</li>
<li class="divider"> </li>
<li>
<a href="javascript:;"> Full Settings </a>
</li>
</ul>
</div>
</div>
<div class="tab-pane" id="portlet_tab2">
<p> Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo
duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod
tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo. </p>
<p>
<a class="btn red" href="ui_tabs_accordions_navs.html#portlet_tab2" target="_blank"> Activate this tab via URL </a>
</p>
</div>
<div class="tab-pane" id="portlet_tab3">
<p> Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit
esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te
feugait nulla facilisi. </p>
<p>
<a class="btn blue" href="ui_tabs_accordions_navs.html#portlet_tab3" target="_blank"> Activate this tab via URL </a>
</p>
</div>
</div>
</div>
</div>
<!-- END TAB PORTLET-->
<!-- BEGIN TAB PORTLET-->
<div class="portlet light ">
<div class="portlet-title tabbable-line">
<div class="caption">
<i class="icon-share font-dark"></i>
<span class="caption-subject font-dark bold uppercase">Portlet Tabs</span>
</div>
<ul class="nav nav-tabs">
<li>
<a href="#portlet_tab2_3" data-toggle="tab"> Tab 3 </a>
</li>
<li>
<a href="#portlet_tab2_2" data-toggle="tab"> Tab 2 </a>
</li>
<li class="active">
<a href="#portlet_tab2_1" data-toggle="tab"> Tab 1 </a>
</li>
</ul>
</div>
<div class="portlet-body">
<div class="tab-content">
<div class="tab-pane active" id="portlet_tab2_1">
<div class="alert alert-success"> Check out the below dropdown menu. It will be opened as usual since there is enough space at the bottom. </div>
<div class="btn-group margin-bottom-10">
<a class="btn red" href="javascript:;" data-toggle="dropdown">
<i class="fa fa-user"></i> Settings
<i class="fa fa-angle-down"></i>
</a>
<ul class="dropdown-menu">
<li>
<a href="javascript:;">
<i class="fa fa-plus"></i> Add </a>
</li>
<li>
<a href="javascript:;">
<i class="fa fa-trash-o"></i> Edit </a>
</li>
<li>
<a href="javascript:;">
<i class="fa fa-times"></i> Delete </a>
</li>
<li class="divider"> </li>
<li>
<a href="javascript:;"> Full Settings </a>
</li>
</ul>
</div>
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit
praesent luptatum zzril delenit augue duis dolore te feugait. </p>
<p> Deros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit,
sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna. consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna. </p>
</div>
<div class="tab-pane" id="portlet_tab2_2">
<p> Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo
duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod
tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo. </p>
<p>
<a class="btn red" href="ui_tabs_accordions_navs.html#portlet_tab2_2" target="_blank"> Activate this tab via URL </a>
</p>
</div>
<div class="tab-pane" id="portlet_tab2_3">
<p> Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit
esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te
feugait nulla facilisi. </p>
<p>
<a class="btn purple" href="ui_tabs_accordions_navs.html#portlet_tab2_3" target="_blank"> Activate this tab via URL </a>
</p>
</div>
</div>
</div>
</div>
<!-- END TAB PORTLET-->
<!-- BEGIN ACCORDION PORTLET-->
<div class="portlet box green">
<div class="portlet-title">
<div class="caption">
<i class="fa fa-gift"></i>Accordions </div>
<div class="tools">
<a href="javascript:;" class="collapse"> </a>
<a href="#portlet-config" data-toggle="modal" class="config"> </a>
<a href="javascript:;" class="reload"> </a>
<a href="javascript:;" class="remove"> </a>
</div>
</div>
<div class="portlet-body">
<div class="panel-group accordion" id="accordion1">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion1" href="#collapse_1"> Collapsible Group Item #1 </a>
</h4>
</div>
<div id="collapse_1" class="panel-collapse in">
<div class="panel-body">
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut. </p>
<p> Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa
nesciunt laborum eiusmod. </p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion1" href="#collapse_2"> Collapsible Group Item #2 </a>
</h4>
</div>
<div id="collapse_2" class="panel-collapse collapse">
<div class="panel-body" style="height:200px; overflow-y:auto;">
<p> 111111Duis autem vel eum iriure dolor in hendrerit in vulputate. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut. </p>
<p> Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa
nesciunt laborum eiusmod. </p>
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut. </p>
<p>
<a class="btn blue" href="ui_tabs_accordions_navs.html#collapse_2" target="_blank"> Activate this section via URL </a>
</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion1" href="#collapse_3"> Collapsible Group Item #3 </a>
</h4>
</div>
<div id="collapse_3" class="panel-collapse collapse">
<div class="panel-body">
<p> Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa
nesciunt laborum eiusmod. Brunch 3 wolf moon tempor. </p>
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut. </p>
<p>
<a class="btn green" href="ui_tabs_accordions_navs.html#collapse_3" target="_blank"> Activate this section via URL </a>
</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion1" href="#collapse_4"> Collapsible Group Item #4 </a>
</h4>
</div>
<div id="collapse_4" class="panel-collapse collapse">
<div class="panel-body">
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut. </p>
<p> Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa
nesciunt laborum eiusmod. Brunch 3 wolf moon tempor. </p>
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut. </p>
<p>
<a class="btn red" href="ui_tabs_accordions_navs.html#collapse_4" target="_blank"> Activate this section via URL </a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- END ACCORDION PORTLET-->
<!-- BEGIN ACCORDION PORTLET-->
<div class="portlet box yellow">
<div class="portlet-title">
<div class="caption">
<i class="fa fa-gift"></i>Accordions with Icons </div>
<div class="tools">
<a href="javascript:;" class="collapse"> </a>
<a href="#portlet-config" data-toggle="modal" class="config"> </a>
<a href="javascript:;" class="reload"> </a>
<a href="javascript:;" class="remove"> </a>
</div>
</div>
<div class="portlet-body">
<div class="panel-group accordion" id="accordion3">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle accordion-toggle-styled" data-toggle="collapse" data-parent="#accordion3" href="#collapse_3_1"> Collapsible Group Item #1 </a>
</h4>
</div>
<div id="collapse_3_1" class="panel-collapse in">
<div class="panel-body">
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut. </p>
<p> Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa
nesciunt laborum eiusmod. </p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle accordion-toggle-styled collapsed" data-toggle="collapse" data-parent="#accordion3" href="#collapse_3_2"> Collapsible Group Item #2 </a>
</h4>
</div>
<div id="collapse_3_2" class="panel-collapse collapse">
<div class="panel-body" style="height:200px; overflow-y:auto;">
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut. </p>
<p> Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa
nesciunt laborum eiusmod. </p>
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut. </p>
<p>
<a class="btn blue" href="ui_tabs_accordions_navs.html#collapse_3_2" target="_blank"> Activate this section via URL </a>
</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle accordion-toggle-styled collapsed" data-toggle="collapse" data-parent="#accordion3" href="#collapse_3_3"> Collapsible Group Item #3 </a>
</h4>
</div>
<div id="collapse_3_3" class="panel-collapse collapse">
<div class="panel-body">
<p> Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa
nesciunt laborum eiusmod. Brunch 3 wolf moon tempor. </p>
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut. </p>
<p>
<a class="btn green" href="ui_tabs_accordions_navs.html#collapse_3_3" target="_blank"> Activate this section via URL </a>
</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle accordion-toggle-styled collapsed" data-toggle="collapse" data-parent="#accordion3" href="#collapse_3_4"> Collapsible Group Item #4 </a>
</h4>
</div>
<div id="collapse_3_4" class="panel-collapse collapse">
<div class="panel-body">
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut. </p>
<p> Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa
nesciunt laborum eiusmod. Brunch 3 wolf moon tempor. </p>
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut. </p>
<p>
<a class="btn red" href="ui_tabs_accordions_navs.html#collapse_3_4" target="_blank"> Activate this section via URL </a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- END ACCORDION PORTLET-->
<!-- BEGIN ACCORDION PORTLET-->
<div class="portlet box purple">
<div class="portlet-title">
<div class="caption">
<i class="fa fa-gift"></i>Scrollable Accordions </div>
<div class="tools">
<a href="javascript:;" class="collapse"> </a>
<a href="#portlet-config" data-toggle="modal" class="config"> </a>
<a href="javascript:;" class="reload"> </a>
<a href="javascript:;" class="remove"> </a>
</div>
</div>
<div class="portlet-body">
<div class="panel-group accordion scrollable" id="accordion2">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion2" href="#collapse_2_1"> Collapsible Group Item #1 </a>
</h4>
</div>
<div id="collapse_2_1" class="panel-collapse in">
<div class="panel-body">
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut. </p>
<p> Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa
nesciunt laborum eiusmod. </p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion2" href="#collapse_2_2"> Collapsible Group Item #2 </a>
</h4>
</div>
<div id="collapse_2_2" class="panel-collapse collapse">
<div class="panel-body">
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut. </p>
<p> Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa
nesciunt laborum eiusmod. </p>
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut. </p>
<p>
<a class="btn blue" href="ui_tabs_accordions_navs.html#collapse_2_2" target="_blank"> Activate this section via URL </a>
</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion2" href="#collapse_2_3"> Collapsible Group Item #3 </a>
</h4>
</div>
<div id="collapse_2_3" class="panel-collapse collapse">
<div class="panel-body">
<p> Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa
nesciunt laborum eiusmod. Brunch 3 wolf moon tempor. </p>
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut. </p>
<p>
<a class="btn green" href="ui_tabs_accordions_navs.html#collapse_2_3" target="_blank"> Activate this section via URL </a>
</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion2" href="#collapse_2_4"> Collapsible Group Item #4 </a>
</h4>
</div>
<div id="collapse_2_4" class="panel-collapse collapse">
<div class="panel-body">
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut. </p>
<p> Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa
nesciunt laborum eiusmod. Brunch 3 wolf moon tempor. </p>
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut. </p>
<p>
<a class="btn red" href="ui_tabs_accordions_navs.html#collapse_2_4" target="_blank"> Activate this section via URL </a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- END ACCORDION PORTLET-->
<div class="portlet box blue">
<div class="portlet-title">
<div class="caption">
<i class="fa fa-gift"></i>Styled Tabs(justified) </div>
<div class="tools">
<a href="javascript:;" class="collapse"> </a>
<a href="#portlet-config" data-toggle="modal" class="config"> </a>
</div>
</div>
<div class="portlet-body">
<div class="tabbable-custom nav-justified">
<ul class="nav nav-tabs nav-justified">
<li class="active">
<a href="#tab_1_1_1" data-toggle="tab"> Section 1 </a>
</li>
<li>
<a href="#tab_1_1_2" data-toggle="tab"> Section 2 </a>
</li>
<li>
<a href="#tab_1_1_3" data-toggle="tab"> Section 3 </a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="tab_1_1_1">
<p> I'm in Section 1. </p>
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut
aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate
velit esse molestie consequat. </p>
</div>
<div class="tab-pane" id="tab_1_1_2">
<p> Howdy, I'm in Section 2. </p>
<p> Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate
velit esse molestie consequat. Ut wisi enim ad minim veniam, quis nostrud exerci tation. </p>
<p>
<a class="btn green" href="ui_tabs_accordions_navs.html#tab_1_1_2" target="_blank"> Activate this tab via URL </a>
</p>
</div>
<div class="tab-pane" id="tab_1_1_3">
<p> Howdy, I'm in Section 3. </p>
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat </p>
<p>
<a class="btn yellow" href="ui_tabs_accordions_navs.html#tab_1_1_3" target="_blank"> Activate this tab via URL </a>
</p>
</div>
</div>
</div>
<div class="tabbable-custom tabs-below nav-justified">
<div class="tab-content">
<div class="tab-pane active" id="tab_17_1">
<p> I'm in Section 1. </p>
<p> Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate
velit esse molestie consequat. </p>
<p> Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate
velit esse molestie consequat dolor in hendrerit in vulputate velit esse molestie consequat. </p>
</div>
<div class="tab-pane" id="tab_17_2">
<p> Howdy, I'm in Section 2. </p>
<p> Duis autem vel eum iriure dolor in hendrerit in vulputate. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat. </p>
<p>
<a class="btn yellow" href="ui_tabs_accordions_navs.html#tab_17_2" target="_blank"> Activate this tab via URL </a>
</p>
</div>
<div class="tab-pane" id="tab_17_3">
<p> Howdy, I'm in Section 3. </p>
<p> Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate
velit esse molestie consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate. </p>
<p>
<a class="btn purple" href="ui_tabs_accordions_navs.html#tab_17_3" target="_blank"> Activate this tab via URL </a>
</p>
</div>
</div>
<ul class="nav nav-tabs nav-justified">
<li class="active">
<a href="#tab_17_1" data-toggle="tab"> Section 1 </a>
</li>
<li>
<a href="#tab_17_2" data-toggle="tab"> Section 2 </a>
</li>
<li>
<a href="#tab_17_3" data-toggle="tab"> Section 3 </a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- END PAGE CONTENT INNER -->
</div>
</div>
<!-- END PAGE CONTENT BODY -->
<!-- END CONTENT BODY -->
</div>
<!-- END CONTENT -->
<!-- BEGIN QUICK SIDEBAR -->
<a href="javascript:;" class="page-quick-sidebar-toggler">
<i class="icon-login"></i>
</a>
<div class="page-quick-sidebar-wrapper" data-close-on-body-click="false">
<div class="page-quick-sidebar">
<ul class="nav nav-tabs">
<li class="active">
<a href="javascript:;" data-target="#quick_sidebar_tab_1" data-toggle="tab"> Users
<span class="badge badge-danger">2</span>
</a>
</li>
<li>
<a href="javascript:;" data-target="#quick_sidebar_tab_2" data-toggle="tab"> Alerts
<span class="badge badge-success">7</span>
</a>
</li>
<li class="dropdown">
<a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown"> More
<i class="fa fa-angle-down"></i>
</a>
<ul class="dropdown-menu pull-right">
<li>
<a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab">
<i class="icon-bell"></i> Alerts </a>
</li>
<li>
<a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab">
<i class="icon-info"></i> Notifications </a>
</li>
<li>
<a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab">
<i class="icon-speech"></i> Activities </a>
</li>
<li class="divider"></li>
<li>
<a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab">
<i class="icon-settings"></i> Settings </a>
</li>
</ul>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane active page-quick-sidebar-chat" id="quick_sidebar_tab_1">
<div class="page-quick-sidebar-chat-users" data-rail-color="#ddd" data-wrapper-class="page-quick-sidebar-list">
<h3 class="list-heading">Staff</h3>
<ul class="media-list list-items">
<li class="media">
<div class="media-status">
<span class="badge badge-success">8</span>
</div>
<img class="media-object" src="../assets/layouts/layout/img/avatar3.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Bob Nilson</h4>
<div class="media-heading-sub"> Project Manager </div>
</div>
</li>
<li class="media">
<img class="media-object" src="../assets/layouts/layout/img/avatar1.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Nick Larson</h4>
<div class="media-heading-sub"> Art Director </div>
</div>
</li>
<li class="media">
<div class="media-status">
<span class="badge badge-danger">3</span>
</div>
<img class="media-object" src="../assets/layouts/layout/img/avatar4.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Deon Hubert</h4>
<div class="media-heading-sub"> CTO </div>
</div>
</li>
<li class="media">
<img class="media-object" src="../assets/layouts/layout/img/avatar2.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Ella Wong</h4>
<div class="media-heading-sub"> CEO </div>
</div>
</li>
</ul>
<h3 class="list-heading">Customers</h3>
<ul class="media-list list-items">
<li class="media">
<div class="media-status">
<span class="badge badge-warning">2</span>
</div>
<img class="media-object" src="../assets/layouts/layout/img/avatar6.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Lara Kunis</h4>
<div class="media-heading-sub"> CEO, Loop Inc </div>
<div class="media-heading-small"> Last seen 03:10 AM </div>
</div>
</li>
<li class="media">
<div class="media-status">
<span class="label label-sm label-success">new</span>
</div>
<img class="media-object" src="../assets/layouts/layout/img/avatar7.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Ernie Kyllonen</h4>
<div class="media-heading-sub"> Project Manager,
<br> SmartBizz PTL </div>
</div>
</li>
<li class="media">
<img class="media-object" src="../assets/layouts/layout/img/avatar8.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Lisa Stone</h4>
<div class="media-heading-sub"> CTO, Keort Inc </div>
<div class="media-heading-small"> Last seen 13:10 PM </div>
</div>
</li>
<li class="media">
<div class="media-status">
<span class="badge badge-success">7</span>
</div>
<img class="media-object" src="../assets/layouts/layout/img/avatar9.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Deon Portalatin</h4>
<div class="media-heading-sub"> CFO, H&D LTD </div>
</div>
</li>
<li class="media">
<img class="media-object" src="../assets/layouts/layout/img/avatar10.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Irina Savikova</h4>
<div class="media-heading-sub"> CEO, Tizda Motors Inc </div>
</div>
</li>
<li class="media">
<div class="media-status">
<span class="badge badge-danger">4</span>
</div>
<img class="media-object" src="../assets/layouts/layout/img/avatar11.jpg" alt="...">
<div class="media-body">
<h4 class="media-heading">Maria Gomez</h4>
<div class="media-heading-sub"> Manager, Infomatic Inc </div>
<div class="media-heading-small"> Last seen 03:10 AM </div>
</div>
</li>
</ul>
</div>
<div class="page-quick-sidebar-item">
<div class="page-quick-sidebar-chat-user">
<div class="page-quick-sidebar-nav">
<a href="javascript:;" class="page-quick-sidebar-back-to-list">
<i class="icon-arrow-left"></i>Back</a>
</div>
<div class="page-quick-sidebar-chat-user-messages">
<div class="post out">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Bob Nilson</a>
<span class="datetime">20:15</span>
<span class="body"> When could you send me the report ? </span>
</div>
</div>
<div class="post in">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Ella Wong</a>
<span class="datetime">20:15</span>
<span class="body"> Its almost done. I will be sending it shortly </span>
</div>
</div>
<div class="post out">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Bob Nilson</a>
<span class="datetime">20:15</span>
<span class="body"> Alright. Thanks! :) </span>
</div>
</div>
<div class="post in">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Ella Wong</a>
<span class="datetime">20:16</span>
<span class="body"> You are most welcome. Sorry for the delay. </span>
</div>
</div>
<div class="post out">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Bob Nilson</a>
<span class="datetime">20:17</span>
<span class="body"> No probs. Just take your time :) </span>
</div>
</div>
<div class="post in">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Ella Wong</a>
<span class="datetime">20:40</span>
<span class="body"> Alright. I just emailed it to you. </span>
</div>
</div>
<div class="post out">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Bob Nilson</a>
<span class="datetime">20:17</span>
<span class="body"> Great! Thanks. Will check it right away. </span>
</div>
</div>
<div class="post in">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Ella Wong</a>
<span class="datetime">20:40</span>
<span class="body"> Please let me know if you have any comment. </span>
</div>
</div>
<div class="post out">
<img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" />
<div class="message">
<span class="arrow"></span>
<a href="javascript:;" class="name">Bob Nilson</a>
<span class="datetime">20:17</span>
<span class="body"> Sure. I will check and buzz you if anything needs to be corrected. </span>
</div>
</div>
</div>
<div class="page-quick-sidebar-chat-user-form">
<div class="input-group">
<input type="text" class="form-control" placeholder="Type a message here...">
<div class="input-group-btn">
<button type="button" class="btn green">
<i class="icon-paper-clip"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane page-quick-sidebar-alerts" id="quick_sidebar_tab_2">
<div class="page-quick-sidebar-alerts-list">
<h3 class="list-heading">General</h3>
<ul class="feeds list-items">
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-info">
<i class="fa fa-check"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> You have 4 pending tasks.
<span class="label label-sm label-warning "> Take action
<i class="fa fa-share"></i>
</span>
</div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> Just now </div>
</div>
</li>
<li>
<a href="javascript:;">
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-success">
<i class="fa fa-bar-chart-o"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> Finance Report for year 2013 has been released. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 20 mins </div>
</div>
</a>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-danger">
<i class="fa fa-user"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> You have 5 pending membership that requires a quick review. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 24 mins </div>
</div>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-info">
<i class="fa fa-shopping-cart"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> New order received with
<span class="label label-sm label-success"> Reference Number: DR23923 </span>
</div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 30 mins </div>
</div>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-success">
<i class="fa fa-user"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> You have 5 pending membership that requires a quick review. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 24 mins </div>
</div>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-info">
<i class="fa fa-bell-o"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> Web server hardware needs to be upgraded.
<span class="label label-sm label-warning"> Overdue </span>
</div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 2 hours </div>
</div>
</li>
<li>
<a href="javascript:;">
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-default">
<i class="fa fa-briefcase"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> IPO Report for year 2013 has been released. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 20 mins </div>
</div>
</a>
</li>
</ul>
<h3 class="list-heading">System</h3>
<ul class="feeds list-items">
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-info">
<i class="fa fa-check"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> You have 4 pending tasks.
<span class="label label-sm label-warning "> Take action
<i class="fa fa-share"></i>
</span>
</div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> Just now </div>
</div>
</li>
<li>
<a href="javascript:;">
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-danger">
<i class="fa fa-bar-chart-o"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> Finance Report for year 2013 has been released. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 20 mins </div>
</div>
</a>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-default">
<i class="fa fa-user"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> You have 5 pending membership that requires a quick review. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 24 mins </div>
</div>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-info">
<i class="fa fa-shopping-cart"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> New order received with
<span class="label label-sm label-success"> Reference Number: DR23923 </span>
</div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 30 mins </div>
</div>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-success">
<i class="fa fa-user"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> You have 5 pending membership that requires a quick review. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 24 mins </div>
</div>
</li>
<li>
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-warning">
<i class="fa fa-bell-o"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> Web server hardware needs to be upgraded.
<span class="label label-sm label-default "> Overdue </span>
</div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 2 hours </div>
</div>
</li>
<li>
<a href="javascript:;">
<div class="col1">
<div class="cont">
<div class="cont-col1">
<div class="label label-sm label-info">
<i class="fa fa-briefcase"></i>
</div>
</div>
<div class="cont-col2">
<div class="desc"> IPO Report for year 2013 has been released. </div>
</div>
</div>
</div>
<div class="col2">
<div class="date"> 20 mins </div>
</div>
</a>
</li>
</ul>
</div>
</div>
<div class="tab-pane page-quick-sidebar-settings" id="quick_sidebar_tab_3">
<div class="page-quick-sidebar-settings-list">
<h3 class="list-heading">General Settings</h3>
<ul class="list-items borderless">
<li> Enable Notifications
<input type="checkbox" class="make-switch" checked data-size="small" data-on-color="success" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
<li> Allow Tracking
<input type="checkbox" class="make-switch" data-size="small" data-on-color="info" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
<li> Log Errors
<input type="checkbox" class="make-switch" checked data-size="small" data-on-color="danger" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
<li> Auto Sumbit Issues
<input type="checkbox" class="make-switch" data-size="small" data-on-color="warning" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
<li> Enable SMS Alerts
<input type="checkbox" class="make-switch" checked data-size="small" data-on-color="success" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
</ul>
<h3 class="list-heading">System Settings</h3>
<ul class="list-items borderless">
<li> Security Level
<select class="form-control input-inline input-sm input-small">
<option value="1">Normal</option>
<option value="2" selected>Medium</option>
<option value="e">High</option>
</select>
</li>
<li> Failed Email Attempts
<input class="form-control input-inline input-sm input-small" value="5" /> </li>
<li> Secondary SMTP Port
<input class="form-control input-inline input-sm input-small" value="3560" /> </li>
<li> Notify On System Error
<input type="checkbox" class="make-switch" checked data-size="small" data-on-color="danger" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
<li> Notify On SMTP Error
<input type="checkbox" class="make-switch" checked data-size="small" data-on-color="warning" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li>
</ul>
<div class="inner-content">
<button class="btn btn-success">
<i class="icon-settings"></i> Save Changes</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- END QUICK SIDEBAR -->
</div>
<!-- END CONTAINER -->
</div>
</div>
<div class="page-wrapper-row">
<div class="page-wrapper-bottom">
<!-- BEGIN FOOTER -->
<!-- BEGIN PRE-FOOTER -->
<div class="page-prefooter">
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-6 col-xs-12 footer-block">
<h2>About</h2>
<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam dolore. </p>
</div>
<div class="col-md-3 col-sm-6 col-xs12 footer-block">
<h2>Subscribe Email</h2>
<div class="subscribe-form">
<form action="javascript:;">
<div class="input-group">
<input type="text" placeholder="mail@email.com" class="form-control">
<span class="input-group-btn">
<button class="btn" type="submit">Submit</button>
</span>
</div>
</form>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 footer-block">
<h2>Follow Us On</h2>
<ul class="social-icons">
<li>
<a href="javascript:;" data-original-title="rss" class="rss"></a>
</li>
<li>
<a href="javascript:;" data-original-title="facebook" class="facebook"></a>
</li>
<li>
<a href="javascript:;" data-original-title="twitter" class="twitter"></a>
</li>
<li>
<a href="javascript:;" data-original-title="googleplus" class="googleplus"></a>
</li>
<li>
<a href="javascript:;" data-original-title="linkedin" class="linkedin"></a>
</li>
<li>
<a href="javascript:;" data-original-title="youtube" class="youtube"></a>
</li>
<li>
<a href="javascript:;" data-original-title="vimeo" class="vimeo"></a>
</li>
</ul>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 footer-block">
<h2>Contacts</h2>
<address class="margin-bottom-40"> Phone: 800 123 3456
<br> Email:
<a href="mailto:info@metronic.com">info@metronic.com</a>
</address>
</div>
</div>
</div>
</div>
<!-- END PRE-FOOTER -->
<!-- BEGIN INNER FOOTER -->
<div class="page-footer">
<div class="container"> 2016 © Metronic Theme By
<a target="_blank" href="http://keenthemes.com">Keenthemes</a> |
<a href="http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes" title="Purchase Metronic just for 27$ and get lifetime updates for free" target="_blank">Purchase Metronic!</a>
</div>
</div>
<div class="scroll-to-top">
<i class="icon-arrow-up"></i>
</div>
<!-- END INNER FOOTER -->
<!-- END FOOTER -->
</div>
</div>
</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-tabdrop/js/bootstrap-tabdrop.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 THEME LAYOUT SCRIPTS -->
<script src="../assets/layouts/layout3/scripts/layout.min.js" type="text/javascript"></script>
<script src="../assets/layouts/layout3/scripts/demo.min.js" type="text/javascript"></script>
<script src="../assets/layouts/global/scripts/quick-sidebar.min.js" type="text/javascript"></script>
<script src="../assets/layouts/global/scripts/quick-nav.min.js" type="text/javascript"></script>
<!-- END THEME LAYOUT SCRIPTS -->
</body>
</html>
|
data/site/index.html
|
armadilloUQAM/armadillo2
|
<!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>Armadillo Report : Execution at 2010-02-02 20_51_05</title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<link href="css/styles.css" rel="stylesheet" type="text/css" />
</head>
<div id="wrapper">
<div id="logo">
<h1><a href="index.html">Armadillo </a></h1>
<h2> » Summary report</h2>
<div align="right"><img src="images/logo.png" alt="" width="200" height="109" /></div>
</div>
<div id="header">
<div id="menu">
<ul>
<li class="current_page_item"><a href="index.html">Homepage</a></li>
<li><a href="#">other</a></li>
<li><a href="#">other</a></li>
<li class="last"><a href="#">other</a></li>
</ul>
</div>
</div>
</div>
<div id="page">
<div id="content">
<div class="post">
<h1 class="title">Worflow Informations </h1>
<div class="entry">
<table width="841" border="0">
<tr>
<td width="174">Project name:</td>
<td width="651"> </td>
</tr>
<tr>
<td>Workflow name:</td>
<td> </td>
</tr>
<tr>
<td>Creation date:</td>
<td> </td>
</tr>
<tr>
<td>Modification date:</td>
<td> </td>
</tr>
<tr>
<td>Database location: </td>
<td> </td>
</tr>
<tr>
<td>Other informations (notes): </td>
<td> </td>
</tr>
</table>
<br>
</div>
</div>
<div class="tree">
<table border="0">
<td>widthwidthwidthwidthwidthwidthwidthwidthwidthwidthwidthwidthwidthwiwidthwidthwidthwidthwidthwidthwidthwidthwidthwidthwidthwidthwidthwidthwidthdth</td>
</tr>
</table>
</div>
<br /><br />
<div class="post">
<h2 class="title">Project content</h2>
<div class="entry">
<strong>Summary of the project :</strong>
<ul>
<li><strong>Blast (Web EBI)</strong>
<ul>
<li>Inputs</li>
<ol>
<li><a href="SequenceBlast_(Web_EBI)_301033106.html">SequenceBlast (Web EBI)_301033106</a></li>
</ol>
</li>
<li>Outputs</li>
<ol>
<li><a href="TextBlast_(Web_EBI)_301033106.html">TextBlast (Web EBI)_301033106</a></li>
</ol>
</li>
</ul>
</li>
<li><strong>Kalign (Web EBI)</strong>
<ul>
<li>Inputs</li>
<ol>
<li><a href="MultipleSequencesKalign_(Web_EBI)_301033107.html">MultipleSequencesKalign (Web EBI)_301033107</a></li>
</ol>
</li>
<li>Outputs</li>
<ol>
<li><a href="AlignmentKalign_(Web_EBI)_301033107.html">AlignmentKalign (Web EBI)_301033107</a></li>
<li><a href="OutputTextKalign_(Web_EBI)_301033107.html">OutputTextKalign (Web EBI)_301033107</a></li>
</ol>
</li>
</ul>
</li>
<div align="center"></div>
</ul>
<strong>Options </strong>:
<blockquote>
<p>Author: <em></em><br />
Email: <em>fyrox@live.com</em><br />
Institution: <em>uqam</em><br />
</p>
</blockquote>
</div>
</div>
</div>
<div style="clear: both;"> </div>
</div>
<div id="footer">
<p id="legal">Project automatically generated at : 2010-02-03 15:31:59<br>( c ) 2010. Armadillo Workflow Systems <img src="images/logo.png" alt="" width="24" height="13" /></p>
</div>
</body>
</html>
|
target/site/apidocs/aim4/im/v2i/reservation/class-use/ReservationGridManager.Config.html
|
bowzheng/AIM4_delay
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_11) on Mon Sep 02 20:25:12 KST 2013 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Class aim4.im.v2i.reservation.ReservationGridManager.Config (AIM4 1.0-SNAPSHOT API)</title>
<meta name="date" content="2013-09-02">
<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 aim4.im.v2i.reservation.ReservationGridManager.Config (AIM4 1.0-SNAPSHOT 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="../../../../../aim4/im/v2i/reservation/ReservationGridManager.Config.html" title="class in aim4.im.v2i.reservation">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?aim4/im/v2i/reservation/class-use/ReservationGridManager.Config.html" target="_top">Frames</a></li>
<li><a href="ReservationGridManager.Config.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 aim4.im.v2i.reservation.ReservationGridManager.Config" class="title">Uses of Class<br>aim4.im.v2i.reservation.ReservationGridManager.Config</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../aim4/im/v2i/reservation/ReservationGridManager.Config.html" title="class in aim4.im.v2i.reservation">ReservationGridManager.Config</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#aim4.im.v2i">aim4.im.v2i</a></td>
<td class="colLast">
<div class="block">This package contains the implementation of the V2I intersection manager.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#aim4.im.v2i.reservation">aim4.im.v2i.reservation</a></td>
<td class="colLast">
<div class="block">This package contains the implementation of the reservation manager for
the V2I intersection manager.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#aim4.map">aim4.map</a></td>
<td class="colLast">
<div class="block">This package contains the implementations of the map in the AIM4 simulator.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="aim4.im.v2i">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../aim4/im/v2i/reservation/ReservationGridManager.Config.html" title="class in aim4.im.v2i.reservation">ReservationGridManager.Config</a> in <a href="../../../../../aim4/im/v2i/package-summary.html">aim4.im.v2i</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
<caption><span>Constructors in <a href="../../../../../aim4/im/v2i/package-summary.html">aim4.im.v2i</a> with parameters of type <a href="../../../../../aim4/im/v2i/reservation/ReservationGridManager.Config.html" title="class in aim4.im.v2i.reservation">ReservationGridManager.Config</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colLast"><code><strong><a href="../../../../../aim4/im/v2i/V2IManager.html#V2IManager(aim4.im.Intersection, aim4.im.TrackModel, double, aim4.im.v2i.reservation.ReservationGridManager.Config, aim4.util.Registry)">V2IManager</a></strong>(<a href="../../../../../aim4/im/Intersection.html" title="interface in aim4.im">Intersection</a> intersection,
<a href="../../../../../aim4/im/TrackModel.html" title="interface in aim4.im">TrackModel</a> trackModel,
double currentTime,
<a href="../../../../../aim4/im/v2i/reservation/ReservationGridManager.Config.html" title="class in aim4.im.v2i.reservation">ReservationGridManager.Config</a> config,
<a href="../../../../../aim4/util/Registry.html" title="interface in aim4.util">Registry</a><<a href="../../../../../aim4/im/IntersectionManager.html" title="class in aim4.im">IntersectionManager</a>> registry)</code>
<div class="block">Construct a new V2IManager given the structure of Lanes in the
intersection.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="aim4.im.v2i.reservation">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../aim4/im/v2i/reservation/ReservationGridManager.Config.html" title="class in aim4.im.v2i.reservation">ReservationGridManager.Config</a> in <a href="../../../../../aim4/im/v2i/reservation/package-summary.html">aim4.im.v2i.reservation</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation">
<caption><span>Fields in <a href="../../../../../aim4/im/v2i/reservation/package-summary.html">aim4.im.v2i.reservation</a> declared as <a href="../../../../../aim4/im/v2i/reservation/ReservationGridManager.Config.html" title="class in aim4.im.v2i.reservation">ReservationGridManager.Config</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../aim4/im/v2i/reservation/ReservationGridManager.Config.html" title="class in aim4.im.v2i.reservation">ReservationGridManager.Config</a></code></td>
<td class="colLast"><span class="strong">ReservationGridManager.</span><code><strong><a href="../../../../../aim4/im/v2i/reservation/ReservationGridManager.html#config">config</a></strong></code>
<div class="block">The configuration of this reservation grid manager.</div>
</td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../aim4/im/v2i/reservation/package-summary.html">aim4.im.v2i.reservation</a> that return <a href="../../../../../aim4/im/v2i/reservation/ReservationGridManager.Config.html" title="class in aim4.im.v2i.reservation">ReservationGridManager.Config</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../aim4/im/v2i/reservation/ReservationGridManager.Config.html" title="class in aim4.im.v2i.reservation">ReservationGridManager.Config</a></code></td>
<td class="colLast"><span class="strong">ReservationGridManager.</span><code><strong><a href="../../../../../aim4/im/v2i/reservation/ReservationGridManager.html#getConfig()">getConfig</a></strong>()</code>
<div class="block">Get the configuration.</div>
</td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
<caption><span>Constructors in <a href="../../../../../aim4/im/v2i/reservation/package-summary.html">aim4.im.v2i.reservation</a> with parameters of type <a href="../../../../../aim4/im/v2i/reservation/ReservationGridManager.Config.html" title="class in aim4.im.v2i.reservation">ReservationGridManager.Config</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colLast"><code><strong><a href="../../../../../aim4/im/v2i/reservation/ReservationGridManager.html#ReservationGridManager(double, aim4.im.v2i.reservation.ReservationGridManager.Config, aim4.im.Intersection, aim4.util.TiledArea, aim4.im.v2i.reservation.ReservationGrid)">ReservationGridManager</a></strong>(double currentTime,
<a href="../../../../../aim4/im/v2i/reservation/ReservationGridManager.Config.html" title="class in aim4.im.v2i.reservation">ReservationGridManager.Config</a> config,
<a href="../../../../../aim4/im/Intersection.html" title="interface in aim4.im">Intersection</a> intersection,
<a href="../../../../../aim4/util/TiledArea.html" title="class in aim4.util">TiledArea</a> tiledArea,
<a href="../../../../../aim4/im/v2i/reservation/ReservationGrid.html" title="class in aim4.im.v2i.reservation">ReservationGrid</a> reservationGrid)</code>
<div class="block">Create a reservation grid manager.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colLast"><code><strong><a href="../../../../../aim4/im/v2i/reservation/ReservationGridManager.html#ReservationGridManager(aim4.im.v2i.reservation.ReservationGridManager.Config, aim4.im.Intersection, aim4.util.TiledArea, aim4.im.v2i.reservation.ReservationGrid)">ReservationGridManager</a></strong>(<a href="../../../../../aim4/im/v2i/reservation/ReservationGridManager.Config.html" title="class in aim4.im.v2i.reservation">ReservationGridManager.Config</a> config,
<a href="../../../../../aim4/im/Intersection.html" title="interface in aim4.im">Intersection</a> intersection,
<a href="../../../../../aim4/util/TiledArea.html" title="class in aim4.util">TiledArea</a> tiledArea,
<a href="../../../../../aim4/im/v2i/reservation/ReservationGrid.html" title="class in aim4.im.v2i.reservation">ReservationGrid</a> reservationGrid)</code>
<div class="block">Create a reservation grid manager.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="aim4.map">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../aim4/im/v2i/reservation/ReservationGridManager.Config.html" title="class in aim4.im.v2i.reservation">ReservationGridManager.Config</a> in <a href="../../../../../aim4/map/package-summary.html">aim4.map</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../aim4/map/package-summary.html">aim4.map</a> with parameters of type <a href="../../../../../aim4/im/v2i/reservation/ReservationGridManager.Config.html" title="class in aim4.im.v2i.reservation">ReservationGridManager.Config</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><span class="strong">GridMapUtil.</span><code><strong><a href="../../../../../aim4/map/GridMapUtil.html#setApprox4PhasesTrafficLightManagers(aim4.map.GridMap, double, aim4.im.v2i.reservation.ReservationGridManager.Config, double, double)">setApprox4PhasesTrafficLightManagers</a></strong>(<a href="../../../../../aim4/map/GridMap.html" title="class in aim4.map">GridMap</a> layout,
double currentTime,
<a href="../../../../../aim4/im/v2i/reservation/ReservationGridManager.Config.html" title="class in aim4.im.v2i.reservation">ReservationGridManager.Config</a> config,
double greenLightDuration,
double yellowLightDuration)</code>
<div class="block">Set the approximate 4 phases traffic light managers at all intersections.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><span class="strong">GridMapUtil.</span><code><strong><a href="../../../../../aim4/map/GridMapUtil.html#setApproxNPhasesTrafficLightManagers(aim4.map.GridMap, double, aim4.im.v2i.reservation.ReservationGridManager.Config, java.lang.String)">setApproxNPhasesTrafficLightManagers</a></strong>(<a href="../../../../../aim4/map/GridMap.html" title="class in aim4.map">GridMap</a> layout,
double currentTime,
<a href="../../../../../aim4/im/v2i/reservation/ReservationGridManager.Config.html" title="class in aim4.im.v2i.reservation">ReservationGridManager.Config</a> config,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> trafficSignalPhaseFileName)</code>
<div class="block">Set the approximate N phases traffic light managers at all intersections.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><span class="strong">GridMapUtil.</span><code><strong><a href="../../../../../aim4/map/GridMapUtil.html#setApproxSimpleTrafficLightManagers(aim4.map.GridMap, double, aim4.im.v2i.reservation.ReservationGridManager.Config, double, double)">setApproxSimpleTrafficLightManagers</a></strong>(<a href="../../../../../aim4/map/GridMap.html" title="class in aim4.map">GridMap</a> layout,
double currentTime,
<a href="../../../../../aim4/im/v2i/reservation/ReservationGridManager.Config.html" title="class in aim4.im.v2i.reservation">ReservationGridManager.Config</a> config,
double greenLightDuration,
double yellowLightDuration)</code>
<div class="block">Set the approximate simple traffic light managers at all intersections.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><span class="strong">GridMapUtil.</span><code><strong><a href="../../../../../aim4/map/GridMapUtil.html#setApproxStopSignManagers(aim4.map.GridMap, double, aim4.im.v2i.reservation.ReservationGridManager.Config)">setApproxStopSignManagers</a></strong>(<a href="../../../../../aim4/map/GridMap.html" title="class in aim4.map">GridMap</a> layout,
double currentTime,
<a href="../../../../../aim4/im/v2i/reservation/ReservationGridManager.Config.html" title="class in aim4.im.v2i.reservation">ReservationGridManager.Config</a> config)</code>
<div class="block">Set the approximate N phases traffic light managers at all intersections.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><span class="strong">GridMapUtil.</span><code><strong><a href="../../../../../aim4/map/GridMapUtil.html#setBatchManagers(aim4.map.GridMap, double, aim4.im.v2i.reservation.ReservationGridManager.Config, double)">setBatchManagers</a></strong>(<a href="../../../../../aim4/map/GridMap.html" title="class in aim4.map">GridMap</a> layout,
double currentTime,
<a href="../../../../../aim4/im/v2i/reservation/ReservationGridManager.Config.html" title="class in aim4.im.v2i.reservation">ReservationGridManager.Config</a> config,
double processingInterval)</code>
<div class="block">Set the bath managers at all intersections.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><span class="strong">GridMapUtil.</span><code><strong><a href="../../../../../aim4/map/GridMapUtil.html#setFCFSManagers(aim4.map.GridMap, double, aim4.im.v2i.reservation.ReservationGridManager.Config)">setFCFSManagers</a></strong>(<a href="../../../../../aim4/map/GridMap.html" title="class in aim4.map">GridMap</a> layout,
double currentTime,
<a href="../../../../../aim4/im/v2i/reservation/ReservationGridManager.Config.html" title="class in aim4.im.v2i.reservation">ReservationGridManager.Config</a> config)</code>
<div class="block">Set the FCFS managers at all intersections.</div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../aim4/im/v2i/reservation/ReservationGridManager.Config.html" title="class in aim4.im.v2i.reservation">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?aim4/im/v2i/reservation/class-use/ReservationGridManager.Config.html" target="_top">Frames</a></li>
<li><a href="ReservationGridManager.Config.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 © 2013. All rights reserved.</small></p>
</body>
</html>
|
3rdparty/faxpp/docs/api/event_8h.html
|
vitlav/myrulib
|
<!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>Faxpp 0.3 Documentation</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<a style="float:right;" href="http://sourceforge.net/projects/faxpp"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=201903&type=2" border="0" alt="SourceForge.net Logo" /></a>
<!-- Generated by Doxygen 1.5.5 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
</ul>
</div>
</div>
<div class="contents">
<h1>event.h File Reference</h1><code>#include "<a class="el" href="text_8h-source.html">text.h</a>"</code><br>
<p>
<div class="dynheader">
Include dependency graph for event.h:</div>
<div class="dynsection">
<p><center><img src="event_8h__incl.png" border="0" usemap="#event.h_map" alt=""></center>
<map name="event.h_map">
<area shape="rect" href="text_8h.html" title="text.h" alt="" coords="11,81,64,105"></map>
</div>
<p>
<div class="dynheader">
This graph shows which files directly or indirectly include this file:</div>
<div class="dynsection">
<p><center><img src="event_8h__dep__incl.png" border="0" usemap="#event.hdep_map" alt=""></center>
<map name="event.hdep_map">
<area shape="rect" href="parser_8h.html" title="parser.h" alt="" coords="5,81,72,105"></map>
</div>
<p>
<a href="event_8h-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
<tr><td></td></tr>
<tr><td colspan="2"><br><h2>Data Structures</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">struct </td><td class="memItemRight" valign="bottom"><a class="el" href="structFAXPP__AttrValue__s.html">FAXPP_AttrValue_s</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">An item in a linked list of a <a class="el" href="structFAXPP__Attribute.html" title="An attribute, part of the FAXPP_Event object.">FAXPP_Attribute</a> object's value. <a href="structFAXPP__AttrValue__s.html#_details">More...</a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">struct </td><td class="memItemRight" valign="bottom"><a class="el" href="structFAXPP__Attribute.html">FAXPP_Attribute</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">An attribute, part of the <a class="el" href="structFAXPP__Event.html" title="A structure containing event information, returned by the parser.">FAXPP_Event</a> object. <a href="structFAXPP__Attribute.html#_details">More...</a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">struct </td><td class="memItemRight" valign="bottom"><a class="el" href="structFAXPP__Event.html">FAXPP_Event</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">A structure containing event information, returned by the parser. <a href="structFAXPP__Event.html#_details">More...</a><br></td></tr>
<tr><td colspan="2"><br><h2>Typedefs</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">typedef struct <a class="el" href="structFAXPP__AttrValue__s.html">FAXPP_AttrValue_s</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="event_8h.html#ec6226a6a14c952476c5d4201892d578">FAXPP_AttrValue</a></td></tr>
<tr><td colspan="2"><br><h2>Enumerations</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">enum </td><td class="memItemRight" valign="bottom"><a class="el" href="event_8h.html#771bc7f043178673ac2168acd914ce85">FAXPP_EventType</a> { <br>
<a class="el" href="event_8h.html#771bc7f043178673ac2168acd914ce855856f037cd70ecf6fca11999c11a4a0d">NO_EVENT</a>,
<a class="el" href="event_8h.html#771bc7f043178673ac2168acd914ce854544c07aa3ba290c9f3351d0377c2192">START_DOCUMENT_EVENT</a>,
<a class="el" href="event_8h.html#771bc7f043178673ac2168acd914ce8564826d484e991dc5c9192c4c37ad284f">END_DOCUMENT_EVENT</a>,
<a class="el" href="event_8h.html#771bc7f043178673ac2168acd914ce859346feeb4da39b8ff1663e1654e05062">DOCTYPE_EVENT</a>,
<br>
<a class="el" href="event_8h.html#771bc7f043178673ac2168acd914ce854288a3374023daf14e0da7cd80a079f8">START_ELEMENT_EVENT</a>,
<a class="el" href="event_8h.html#771bc7f043178673ac2168acd914ce85378b639683bc40f650604c7ae29c953f">SELF_CLOSING_ELEMENT_EVENT</a>,
<a class="el" href="event_8h.html#771bc7f043178673ac2168acd914ce852571e45844a2c832ea8bb4196f22cd79">END_ELEMENT_EVENT</a>,
<a class="el" href="event_8h.html#771bc7f043178673ac2168acd914ce856092a3c19763731c36e072fdbf2d2e63">CHARACTERS_EVENT</a>,
<br>
<a class="el" href="event_8h.html#771bc7f043178673ac2168acd914ce853b81276bf7b4c2ef8d531f4f057cf3ea">CDATA_EVENT</a>,
<a class="el" href="event_8h.html#771bc7f043178673ac2168acd914ce850629c220bc109fec20be6684ae3ff9a6">IGNORABLE_WHITESPACE_EVENT</a>,
<a class="el" href="event_8h.html#771bc7f043178673ac2168acd914ce85e839c6fa8ed799b076e8c15d1251b384">COMMENT_EVENT</a>,
<a class="el" href="event_8h.html#771bc7f043178673ac2168acd914ce85b83cbe1a4a2be893a13096427219f94a">PI_EVENT</a>,
<br>
<a class="el" href="event_8h.html#771bc7f043178673ac2168acd914ce85c48299f1d4add5eb69aad82dbad2df5e">ENTITY_REFERENCE_EVENT</a>,
<a class="el" href="event_8h.html#771bc7f043178673ac2168acd914ce85e872c84f33bb3a220e0e18c6b5cb8964">DEC_CHAR_REFERENCE_EVENT</a>,
<a class="el" href="event_8h.html#771bc7f043178673ac2168acd914ce853e1822cb9a63cf45266d2630d508a35f">HEX_CHAR_REFERENCE_EVENT</a>,
<a class="el" href="event_8h.html#771bc7f043178673ac2168acd914ce857fc1986bb00b77f9f53b0608036a6ced">ENTITY_REFERENCE_START_EVENT</a>,
<br>
<a class="el" href="event_8h.html#771bc7f043178673ac2168acd914ce8596e031737fb7df5773bd3febef7e5eda">ENTITY_REFERENCE_END_EVENT</a>,
<a class="el" href="event_8h.html#771bc7f043178673ac2168acd914ce853e6166936712fcd0fe0db56c89a285de">START_EXTERNAL_ENTITY_EVENT</a>,
<a class="el" href="event_8h.html#771bc7f043178673ac2168acd914ce857e46498841a5c0f9cff69e1b71955c87">END_EXTERNAL_ENTITY_EVENT</a>
<br>
}</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">An enumeration of the event types returned by the parser. <a href="event_8h.html#771bc7f043178673ac2168acd914ce85">More...</a><br></td></tr>
<tr><td colspan="2"><br><h2>Functions</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">const char * </td><td class="memItemRight" valign="bottom"><a class="el" href="event_8h.html#eb9934feb116c178aba5ed47155e6406">FAXPP_event_to_string</a> (<a class="el" href="event_8h.html#771bc7f043178673ac2168acd914ce85">FAXPP_EventType</a> type)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns a string describing the given event type. <a href="#eb9934feb116c178aba5ed47155e6406"></a><br></td></tr>
</table>
<hr><h2>Typedef Documentation</h2>
<a class="anchor" name="ec6226a6a14c952476c5d4201892d578"></a><!-- doxytag: member="event.h::FAXPP_AttrValue" ref="ec6226a6a14c952476c5d4201892d578" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef struct <a class="el" href="structFAXPP__AttrValue__s.html">FAXPP_AttrValue_s</a> <a class="el" href="structFAXPP__AttrValue__s.html">FAXPP_AttrValue</a> </td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<hr><h2>Enumeration Type Documentation</h2>
<a class="anchor" name="771bc7f043178673ac2168acd914ce85"></a><!-- doxytag: member="event.h::FAXPP_EventType" ref="771bc7f043178673ac2168acd914ce85" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">enum <a class="el" href="event_8h.html#771bc7f043178673ac2168acd914ce85">FAXPP_EventType</a> </td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
An enumeration of the event types returned by the parser.
<p>
<dl compact><dt><b>Enumerator: </b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"><em><a class="anchor" name="771bc7f043178673ac2168acd914ce855856f037cd70ecf6fca11999c11a4a0d"></a><!-- doxytag: member="NO_EVENT" ref="771bc7f043178673ac2168acd914ce855856f037cd70ecf6fca11999c11a4a0d" args="" -->NO_EVENT</em> </td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" name="771bc7f043178673ac2168acd914ce854544c07aa3ba290c9f3351d0377c2192"></a><!-- doxytag: member="START_DOCUMENT_EVENT" ref="771bc7f043178673ac2168acd914ce854544c07aa3ba290c9f3351d0377c2192" args="" -->START_DOCUMENT_EVENT</em> </td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" name="771bc7f043178673ac2168acd914ce8564826d484e991dc5c9192c4c37ad284f"></a><!-- doxytag: member="END_DOCUMENT_EVENT" ref="771bc7f043178673ac2168acd914ce8564826d484e991dc5c9192c4c37ad284f" args="" -->END_DOCUMENT_EVENT</em> </td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" name="771bc7f043178673ac2168acd914ce859346feeb4da39b8ff1663e1654e05062"></a><!-- doxytag: member="DOCTYPE_EVENT" ref="771bc7f043178673ac2168acd914ce859346feeb4da39b8ff1663e1654e05062" args="" -->DOCTYPE_EVENT</em> </td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" name="771bc7f043178673ac2168acd914ce854288a3374023daf14e0da7cd80a079f8"></a><!-- doxytag: member="START_ELEMENT_EVENT" ref="771bc7f043178673ac2168acd914ce854288a3374023daf14e0da7cd80a079f8" args="" -->START_ELEMENT_EVENT</em> </td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" name="771bc7f043178673ac2168acd914ce85378b639683bc40f650604c7ae29c953f"></a><!-- doxytag: member="SELF_CLOSING_ELEMENT_EVENT" ref="771bc7f043178673ac2168acd914ce85378b639683bc40f650604c7ae29c953f" args="" -->SELF_CLOSING_ELEMENT_EVENT</em> </td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" name="771bc7f043178673ac2168acd914ce852571e45844a2c832ea8bb4196f22cd79"></a><!-- doxytag: member="END_ELEMENT_EVENT" ref="771bc7f043178673ac2168acd914ce852571e45844a2c832ea8bb4196f22cd79" args="" -->END_ELEMENT_EVENT</em> </td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" name="771bc7f043178673ac2168acd914ce856092a3c19763731c36e072fdbf2d2e63"></a><!-- doxytag: member="CHARACTERS_EVENT" ref="771bc7f043178673ac2168acd914ce856092a3c19763731c36e072fdbf2d2e63" args="" -->CHARACTERS_EVENT</em> </td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" name="771bc7f043178673ac2168acd914ce853b81276bf7b4c2ef8d531f4f057cf3ea"></a><!-- doxytag: member="CDATA_EVENT" ref="771bc7f043178673ac2168acd914ce853b81276bf7b4c2ef8d531f4f057cf3ea" args="" -->CDATA_EVENT</em> </td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" name="771bc7f043178673ac2168acd914ce850629c220bc109fec20be6684ae3ff9a6"></a><!-- doxytag: member="IGNORABLE_WHITESPACE_EVENT" ref="771bc7f043178673ac2168acd914ce850629c220bc109fec20be6684ae3ff9a6" args="" -->IGNORABLE_WHITESPACE_EVENT</em> </td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" name="771bc7f043178673ac2168acd914ce85e839c6fa8ed799b076e8c15d1251b384"></a><!-- doxytag: member="COMMENT_EVENT" ref="771bc7f043178673ac2168acd914ce85e839c6fa8ed799b076e8c15d1251b384" args="" -->COMMENT_EVENT</em> </td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" name="771bc7f043178673ac2168acd914ce85b83cbe1a4a2be893a13096427219f94a"></a><!-- doxytag: member="PI_EVENT" ref="771bc7f043178673ac2168acd914ce85b83cbe1a4a2be893a13096427219f94a" args="" -->PI_EVENT</em> </td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" name="771bc7f043178673ac2168acd914ce85c48299f1d4add5eb69aad82dbad2df5e"></a><!-- doxytag: member="ENTITY_REFERENCE_EVENT" ref="771bc7f043178673ac2168acd914ce85c48299f1d4add5eb69aad82dbad2df5e" args="" -->ENTITY_REFERENCE_EVENT</em> </td><td>
Reference to an external parsed entity that has not been parsed yet, or a built in entity. </td></tr>
<tr><td valign="top"><em><a class="anchor" name="771bc7f043178673ac2168acd914ce85e872c84f33bb3a220e0e18c6b5cb8964"></a><!-- doxytag: member="DEC_CHAR_REFERENCE_EVENT" ref="771bc7f043178673ac2168acd914ce85e872c84f33bb3a220e0e18c6b5cb8964" args="" -->DEC_CHAR_REFERENCE_EVENT</em> </td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" name="771bc7f043178673ac2168acd914ce853e1822cb9a63cf45266d2630d508a35f"></a><!-- doxytag: member="HEX_CHAR_REFERENCE_EVENT" ref="771bc7f043178673ac2168acd914ce853e1822cb9a63cf45266d2630d508a35f" args="" -->HEX_CHAR_REFERENCE_EVENT</em> </td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" name="771bc7f043178673ac2168acd914ce857fc1986bb00b77f9f53b0608036a6ced"></a><!-- doxytag: member="ENTITY_REFERENCE_START_EVENT" ref="771bc7f043178673ac2168acd914ce857fc1986bb00b77f9f53b0608036a6ced" args="" -->ENTITY_REFERENCE_START_EVENT</em> </td><td>
Delimits the start of an expanded entity reference. </td></tr>
<tr><td valign="top"><em><a class="anchor" name="771bc7f043178673ac2168acd914ce8596e031737fb7df5773bd3febef7e5eda"></a><!-- doxytag: member="ENTITY_REFERENCE_END_EVENT" ref="771bc7f043178673ac2168acd914ce8596e031737fb7df5773bd3febef7e5eda" args="" -->ENTITY_REFERENCE_END_EVENT</em> </td><td>
Delimits the end of an expanded entity reference. </td></tr>
<tr><td valign="top"><em><a class="anchor" name="771bc7f043178673ac2168acd914ce853e6166936712fcd0fe0db56c89a285de"></a><!-- doxytag: member="START_EXTERNAL_ENTITY_EVENT" ref="771bc7f043178673ac2168acd914ce853e6166936712fcd0fe0db56c89a285de" args="" -->START_EXTERNAL_ENTITY_EVENT</em> </td><td>
Occurs when an external entity parsed by the user starts. </td></tr>
<tr><td valign="top"><em><a class="anchor" name="771bc7f043178673ac2168acd914ce857e46498841a5c0f9cff69e1b71955c87"></a><!-- doxytag: member="END_EXTERNAL_ENTITY_EVENT" ref="771bc7f043178673ac2168acd914ce857e46498841a5c0f9cff69e1b71955c87" args="" -->END_EXTERNAL_ENTITY_EVENT</em> </td><td>
Occurs when an external entity parsed by the user ends. </td></tr>
</table>
</dl>
<p>Definition at line <a class="el" href="event_8h-source.html#l00023">23</a> of file <a class="el" href="event_8h-source.html">event.h</a>.</p>
</div>
</div><p>
<hr><h2>Function Documentation</h2>
<a class="anchor" name="eb9934feb116c178aba5ed47155e6406"></a><!-- doxytag: member="event.h::FAXPP_event_to_string" ref="eb9934feb116c178aba5ed47155e6406" args="(FAXPP_EventType type)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const char * FAXPP_event_to_string </td>
<td>(</td>
<td class="paramtype"><a class="el" href="event_8h.html#771bc7f043178673ac2168acd914ce85">FAXPP_EventType</a> </td>
<td class="paramname"> <em>type</em> </td>
<td> ) </td>
<td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Returns a string describing the given event type.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>type</em> </td><td>The event type </td></tr>
</table>
</dl>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>a string </dd></dl>
</div>
</div><p>
</div>
<hr size="1"><address style="text-align: right;"><small>Generated on Thu Dec 4 14:21:51 2008 for Faxpp by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
</body>
</html>
|
Web/RAT-collection/Fragus/secure/templates/style.css
|
hackersql/sq1map
|
html {
height: 100%;
}
body {
font-family: Verdana;
font-size: 10px;
background-image: url();
text-align: center;
}
div.background
{
width:0px;
height:0px;
background:url() repeat;
border:0px solid black;
}
div.transbox
{
width:10px;
height:10px;
margin:30px 100px;
background-color:#282828;
border:0px solid black;
opacity:0.3;
filter:alpha(opacity=60); /* For IE8 and earlier */
}
|
symfony2/2.5/components/console/helpers/formatterhelper.html
|
rafaelgou/the-phpjs-local-docs-collection
|
<!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>Formatter Helper — Symfony2 Framework Documentation documentation</title>
<link rel="stylesheet" href="../../../_static/default.css" type="text/css" />
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../../../',
VERSION: '',
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="top" title="Symfony2 Framework Documentation documentation" href="../../../index.html" />
<link rel="up" title="The Console Helpers" href="index.html" />
<link rel="next" title="Progress Bar" href="progressbar.html" />
<link rel="prev" title="Dialog Helper" href="dialoghelper.html" />
</head>
<body>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../../../genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="progressbar.html" title="Progress Bar"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="dialoghelper.html" title="Dialog Helper"
accesskey="P">previous</a> |</li>
<li><a href="../../../index.html">Symfony2 Framework Documentation documentation</a> »</li>
<li><a href="../../index.html" >The Components</a> »</li>
<li><a href="../index.html" >Console</a> »</li>
<li><a href="index.html" accesskey="U">The Console Helpers</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<div class="section" id="formatter-helper">
<span id="index-0"></span><h1>Formatter Helper<a class="headerlink" href="#formatter-helper" title="Permalink to this headline">¶</a></h1>
<p>The Formatter helpers provides functions to format the output with colors.
You can do more advanced things with this helper than you can in
<a class="reference internal" href="../introduction.html#components-console-coloring"><em>Coloring the Output</em></a>.</p>
<p>The <tt class="docutils literal"><a class="reference external" href="http://api.symfony.com/master/Symfony/Component/Console/Helper/FormatterHelper.html" title="Symfony\Component\Console\Helper\FormatterHelper"><span class="pre">FormatterHelper</span></a></tt> is included
in the default helper set, which you can get by calling
<tt class="docutils literal"><a class="reference external" href="http://api.symfony.com/master/Symfony/Component/Console/Command/Command.html#method_getHelperSet" title="Symfony\Component\Console\Command\Command::getHelperSet()"><span class="pre">getHelperSet()</span></a></tt>:</p>
<div class="highlight-php"><div class="highlight"><pre><span class="nv">$formatter</span> <span class="o">=</span> <span class="nv">$this</span><span class="o">-></span><span class="na">getHelperSet</span><span class="p">()</span><span class="o">-></span><span class="na">get</span><span class="p">(</span><span class="s1">'formatter'</span><span class="p">);</span>
</pre></div>
</div>
<p>The methods return a string, which you’ll usually render to the console by
passing it to the
<tt class="docutils literal"><a class="reference external" href="http://api.symfony.com/master/Symfony/Component/Console/Output/OutputInterface.html#method_writeln" title="Symfony\Component\Console\Output\OutputInterface::writeln()"><span class="pre">OutputInterface::writeln</span></a></tt> method.</p>
<div class="section" id="print-messages-in-a-section">
<h2>Print Messages in a Section<a class="headerlink" href="#print-messages-in-a-section" title="Permalink to this headline">¶</a></h2>
<p>Symfony offers a defined style when printing a message that belongs to some
“section”. It prints the section in color and with brackets around it and the
actual message to the right of this. Minus the color, it looks like this:</p>
<div class="highlight-text"><div class="highlight"><pre>[SomeSection] Here is some message related to that section
</pre></div>
</div>
<p>To reproduce this style, you can use the
<tt class="docutils literal"><a class="reference external" href="http://api.symfony.com/master/Symfony/Component/Console/Helper/FormatterHelper.html#method_formatSection" title="Symfony\Component\Console\Helper\FormatterHelper::formatSection()"><span class="pre">formatSection()</span></a></tt>
method:</p>
<div class="highlight-php"><div class="highlight"><pre><span class="nv">$formattedLine</span> <span class="o">=</span> <span class="nv">$formatter</span><span class="o">-></span><span class="na">formatSection</span><span class="p">(</span>
<span class="s1">'SomeSection'</span><span class="p">,</span>
<span class="s1">'Here is some message related to that section'</span>
<span class="p">);</span>
<span class="nv">$output</span><span class="o">-></span><span class="na">writeln</span><span class="p">(</span><span class="nv">$formattedLine</span><span class="p">);</span>
</pre></div>
</div>
</div>
<div class="section" id="print-messages-in-a-block">
<h2>Print Messages in a Block<a class="headerlink" href="#print-messages-in-a-block" title="Permalink to this headline">¶</a></h2>
<p>Sometimes you want to be able to print a whole block of text with a background
color. Symfony uses this when printing error messages.</p>
<p>If you print your error message on more than one line manually, you will
notice that the background is only as long as each individual line. Use the
<tt class="docutils literal"><a class="reference external" href="http://api.symfony.com/master/Symfony/Component/Console/Helper/FormatterHelper.html#method_formatBlock" title="Symfony\Component\Console\Helper\FormatterHelper::formatBlock()"><span class="pre">formatBlock()</span></a></tt>
to generate a block output:</p>
<div class="highlight-php"><div class="highlight"><pre><span class="nv">$errorMessages</span> <span class="o">=</span> <span class="k">array</span><span class="p">(</span><span class="s1">'Error!'</span><span class="p">,</span> <span class="s1">'Something went wrong'</span><span class="p">);</span>
<span class="nv">$formattedBlock</span> <span class="o">=</span> <span class="nv">$formatter</span><span class="o">-></span><span class="na">formatBlock</span><span class="p">(</span><span class="nv">$errorMessages</span><span class="p">,</span> <span class="s1">'error'</span><span class="p">);</span>
<span class="nv">$output</span><span class="o">-></span><span class="na">writeln</span><span class="p">(</span><span class="nv">$formattedBlock</span><span class="p">);</span>
</pre></div>
</div>
<p>As you can see, passing an array of messages to the
<tt class="docutils literal"><a class="reference external" href="http://api.symfony.com/master/Symfony/Component/Console/Helper/FormatterHelper.html#method_formatBlock" title="Symfony\Component\Console\Helper\FormatterHelper::formatBlock()"><span class="pre">formatBlock()</span></a></tt>
method creates the desired output. If you pass <tt class="docutils literal"><span class="pre">true</span></tt> as third parameter, the
block will be formatted with more padding (one blank line above and below the
messages and 2 spaces on the left and right).</p>
<p>The exact “style” you use in the block is up to you. In this case, you’re using
the pre-defined <tt class="docutils literal"><span class="pre">error</span></tt> style, but there are other styles, or you can create
your own. See <a class="reference internal" href="../introduction.html#components-console-coloring"><em>Coloring the Output</em></a>.</p>
</div>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<h3><a href="../../../index.html">Table Of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">Formatter Helper</a><ul>
<li><a class="reference internal" href="#print-messages-in-a-section">Print Messages in a Section</a></li>
<li><a class="reference internal" href="#print-messages-in-a-block">Print Messages in a Block</a></li>
</ul>
</li>
</ul>
<h4>Previous topic</h4>
<p class="topless"><a href="dialoghelper.html"
title="previous chapter">Dialog Helper</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="progressbar.html"
title="next chapter">Progress Bar</a></p>
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="../../../_sources/components/console/helpers/formatterhelper.txt"
rel="nofollow">Show Source</a></li>
</ul>
<div id="searchbox" style="display: none">
<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">
<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="progressbar.html" title="Progress Bar"
>next</a> |</li>
<li class="right" >
<a href="dialoghelper.html" title="Dialog Helper"
>previous</a> |</li>
<li><a href="../../../index.html">Symfony2 Framework Documentation documentation</a> »</li>
<li><a href="../../index.html" >The Components</a> »</li>
<li><a href="../index.html" >Console</a> »</li>
<li><a href="index.html" >The Console Helpers</a> »</li>
</ul>
</div>
<div class="footer">
© Copyright .
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2.2.
</div>
</body>
</html>
|
lib/javadoc/org/lwjgl/opengl/AMDDrawBuffersBlend.html
|
Glynn-Taylor/Heightmap-Renderer
|
<!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_14) on Wed May 30 20:32:11 CEST 2012 -->
<TITLE>
AMDDrawBuffersBlend (LWJGL API)
</TITLE>
<META NAME="date" CONTENT="2012-05-30">
<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="AMDDrawBuffersBlend (LWJGL API)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/AMDDrawBuffersBlend.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../org/lwjgl/opengl/AMDDepthClampSeparate.html" title="class in org.lwjgl.opengl"><B>PREV CLASS</B></A>
<A HREF="../../../org/lwjgl/opengl/AMDMultiDrawIndirect.html" title="class in org.lwjgl.opengl"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?org/lwjgl/opengl/AMDDrawBuffersBlend.html" target="_top"><B>FRAMES</B></A>
<A HREF="AMDDrawBuffersBlend.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
org.lwjgl.opengl</FONT>
<BR>
Class AMDDrawBuffersBlend</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../resources/inherit.gif" ALT="extended by "><B>org.lwjgl.opengl.AMDDrawBuffersBlend</B>
</PRE>
<HR>
<DL>
<DT><PRE>public final class <B>AMDDrawBuffersBlend</B><DT>extends java.lang.Object</DL>
</PRE>
<P>
<HR>
<P>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Method Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/lwjgl/opengl/AMDDrawBuffersBlend.html#glBlendEquationIndexedAMD(int, int)">glBlendEquationIndexedAMD</A></B>(int buf,
int mode)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/lwjgl/opengl/AMDDrawBuffersBlend.html#glBlendEquationSeparateIndexedAMD(int, int, int)">glBlendEquationSeparateIndexedAMD</A></B>(int buf,
int modeRGB,
int modeAlpha)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/lwjgl/opengl/AMDDrawBuffersBlend.html#glBlendFuncIndexedAMD(int, int, int)">glBlendFuncIndexedAMD</A></B>(int buf,
int src,
int dst)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/lwjgl/opengl/AMDDrawBuffersBlend.html#glBlendFuncSeparateIndexedAMD(int, int, int, int, int)">glBlendFuncSeparateIndexedAMD</A></B>(int buf,
int srcRGB,
int dstRGB,
int srcAlpha,
int dstAlpha)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="glBlendFuncIndexedAMD(int, int, int)"><!-- --></A><H3>
glBlendFuncIndexedAMD</H3>
<PRE>
public static void <B>glBlendFuncIndexedAMD</B>(int buf,
int src,
int dst)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="glBlendFuncSeparateIndexedAMD(int, int, int, int, int)"><!-- --></A><H3>
glBlendFuncSeparateIndexedAMD</H3>
<PRE>
public static void <B>glBlendFuncSeparateIndexedAMD</B>(int buf,
int srcRGB,
int dstRGB,
int srcAlpha,
int dstAlpha)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="glBlendEquationIndexedAMD(int, int)"><!-- --></A><H3>
glBlendEquationIndexedAMD</H3>
<PRE>
public static void <B>glBlendEquationIndexedAMD</B>(int buf,
int mode)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="glBlendEquationSeparateIndexedAMD(int, int, int)"><!-- --></A><H3>
glBlendEquationSeparateIndexedAMD</H3>
<PRE>
public static void <B>glBlendEquationSeparateIndexedAMD</B>(int buf,
int modeRGB,
int modeAlpha)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/AMDDrawBuffersBlend.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../org/lwjgl/opengl/AMDDepthClampSeparate.html" title="class in org.lwjgl.opengl"><B>PREV CLASS</B></A>
<A HREF="../../../org/lwjgl/opengl/AMDMultiDrawIndirect.html" title="class in org.lwjgl.opengl"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?org/lwjgl/opengl/AMDDrawBuffersBlend.html" target="_top"><B>FRAMES</B></A>
<A HREF="AMDDrawBuffersBlend.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<i>Copyright © 2002-2009 lwjgl.org. All Rights Reserved.</i>
</BODY>
</HTML>
|
docs/net/sf/jclal/util/gui/package-frame.html
|
ogreyesp/JCLAL
|
<!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_77) on Fri Apr 01 12:47:18 CEST 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>net.sf.jclal.util.gui (JCLAL framework 1.1 API)</title>
<meta name="date" content="2016-04-01">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<h1 class="bar"><a href="../../../../../net/sf/jclal/util/gui/package-summary.html" target="classFrame">net.sf.jclal.util.gui</a></h1>
<div class="indexContainer">
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="UtilsSwing.html" title="class in net.sf.jclal.util.gui" target="classFrame">UtilsSwing</a></li>
</ul>
</div>
</body>
</html>
|
doc/ee/ut/math/bimp/class-use/SignavioController.html
|
der-basti/bimp-simulator
|
<!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 Tue May 15 02:26:52 EEST 2012 -->
<TITLE>
Uses of Class ee.ut.math.bimp.SignavioController
</TITLE>
<META NAME="date" CONTENT="2012-05-15">
<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 ee.ut.math.bimp.SignavioController";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../ee/ut/math/bimp/SignavioController.html" title="class in ee.ut.math.bimp"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?ee/ut/math/bimp/\class-useSignavioController.html" target="_top"><B>FRAMES</B></A>
<A HREF="SignavioController.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>ee.ut.math.bimp.SignavioController</B></H2>
</CENTER>
No usage of ee.ut.math.bimp.SignavioController
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../ee/ut/math/bimp/SignavioController.html" title="class in ee.ut.math.bimp"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?ee/ut/math/bimp/\class-useSignavioController.html" target="_top"><B>FRAMES</B></A>
<A HREF="SignavioController.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
|
uohCorpus.fil/uoh/uoh.filteredcorpus.txt_output/agnipuran-1-111-sandhi_ext.txt.out.dict_3150_sam.html
|
sanskritiitd/sanskrit
|
url: http://sanskrit.uohyd.ac.in/cgi-bin/scl/sandhi_splitter/sandhi_splitter.cgi?encoding=Unicode&sandhi_type=s&word=पुस्तकं दृष्ट्वा<br><center> No Sandhi Splits for the given word</center> </br>
|
uohCorpus.fil/uoh/uoh.filteredcorpus.txt_output/rama_ext.txt.out.dict_15700_sam.html
|
sanskritiitd/sanskrit
|
url: http://sanskrit.uohyd.ac.in/cgi-bin/scl/sandhi_splitter/sandhi_splitter.cgi?encoding=Unicode&sandhi_type=s&word=त्रयो वा<div id='finalout' style='border-style:solid; border-width:1px;padding:10px;color:blue;font-size:14px;height:200px'><script type="text/javascript">
function toggleMe(a){
var e=document.getElementById(a);
if(!e)return true;
if(e.style.display=="none"){
e.style.display="block";document.getElementById("more").style.display="none"; document.getElementById("less").style.display="block";
}
else{
e.style.display="none";document.getElementById("less").style.display="none"; document.getElementById("more").style.display="block";
}
return true;
}
</script>
<input type="button" onclick="return toggleMe('para1')" value="More" id="more"> <input type="button" onclick="return toggleMe('para1')" value="Less" id="less" style="display:none;" > <div id="para1" style="display:none; height:15px; border-style:none;border-width:1px;">
</div><br />
|
uohCorpus.fil/uoh/uoh.filteredcorpus.txt_output/vyutpattivada-ext.txt.out.dict_17285_jnu.html
|
sanskritiitd/sanskrit
|
url: http://sanskrit.jnu.ac.in/sandhi/viccheda.jsp?itext=पदविशिष्टत्वाभावादितिचेन्न<html>
<title>Sanskrit Sandhi Splitter at J.N.U. New Delhi</title>
<META CONTENT='text/hetml CHARSET=UTF-8' HTTP-EQUIV='Content-Type'/>
<META NAME="Author" CONTENT="Dr. Girish Nath Jha">
<META NAME="Keywords" CONTENT="Dr. Girish Nath Jha, Sachin, Diwakar Mishra, Sanskrit Computational Linguistics, Sanskrit informatics, Sanskrit computing, Sanskrit language processing, Sanskrit and computer, computer processing of sanskrit, subanta, tinanta, POS tagger, tagset, Indian languages, linguistics, amarakosha, amarakosa, Indian tradition, Indian heritage, Machine translation, AI, MT divergence, Sandhi, kridanta, taddhita, e-learning, corpus, etext, e-text, Sanskrit blog, Panini, Bhartrhari, Bhartrihari, Patanjali, karaka, mahabharata, ashtadhyayi, astadhyayi, indexer, indexing, lexical resources, Sanskrit, thesaurus, samasa, gender analysis in Sanskrit, Hindi, saHiT, language technology, NLP">
<META NAME="Description" CONTENT="Dr. Girish Nath Jha, Sachin, Diwakar Mishra, Sanskrit Computational Linguistics, Sanskrit informatics, Sanskrit computing, Sanskrit language processing, Sanskrit and computer, computer processing of sanskrit, subanta, tinanta, POS tagger, tagset, Indian languages, linguistics, amarakosha, amarakosa, Indian tradition, Indian heritage, Machine translation, AI, MT divergence, Sandhi, kridanta, taddhita, e-learning, corpus, etext, e-text, Sanskrit blog, Panini, Bhartrhari, Bhartrihari, Patanjali, karaka, mahabharata, ashtadhyayi, astadhyayi, indexer, indexing, lexical resources, Sanskrit, thesaurus, samasa, gender analysis in Sanskrit, Hindi, saHiT, language technology, NLP">
<head>
<head>
<style>
<!--
div.Section1
{page:Section1;}
-->
</style>
<head>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<script language="JavaScript" src=../js/menuitems.js></script>
<script language="JavaScript" src="../js/mm_menu.js"></script>
<meta name=Author content="Dr. Girish Nath Jha, JNU, New Delhi">
</head>
<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in'>
<div class=Section1>
<div align=center>
<table border=1 cellspacing=0 cellpadding=0 width=802 style='width:601.5pt;
border-collapse:collapse;border:none;mso-border-alt:outset navy .75pt'>
<tr>
<td width=800 style='width:600.0pt;border:inset navy .75pt;padding:.75pt .75pt .75pt .75pt'>
<script language="JavaScript1.2">mmLoadMenus();</script>
<img width=800 height=130 id="_x0000_i1028" src="../images/header1.jpg"
border=0>
</td>
</tr>
<tr>
<td width=818 style='width:613.5pt;border:inset navy .75pt;border-top:none;
mso-border-top-alt:inset navy .75pt;padding:.75pt .75pt .75pt .75pt'>
<p align="center"><a href="../"><span style='text-decoration:none;text-underline:
none'><img border=1 width=49 height=26 id="_x0000_i1037"
src="../images/backtohome.jpg"></span></a><span style='text-underline:
none'> </span><a href="javascript:;"
onmouseover="MM_showMenu(window.mm_menu_0821171051_0,6,29,null,'image2')"
onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline:
none'><img border=1 id=image2 src="../images/lang_tool.jpg"
name=image2 width="192" height="25"></span></a><span style='text-underline:
none'> </span><a href="javascript:;"
onmouseover="MM_showMenu(window.mm_menu_0821171909_0,6,29,null,'image3')"
onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline:
none'><img border=1 id=image3 src="../images/lexical.jpg"
name=image3 width="137" height="25"></span></a><span style='text-underline:
none'> </span><a href="javascript:;"
onmouseover="MM_showMenu(window.mm_menu_0821171609_0,6,29,null,'image1')"
onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline:
none'><img border=1 id=image1 src="../images/elearning.jpg"
name=image1 width="77" height="25"></span></a><span style='text-underline:
none'> </span><a href="javascript:;"
onmouseover="MM_showMenu(window.mm_menu_0821171809_0,6,29,null,'image4')"
onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline:
none'><img border=1 id=image4 src="../images/corpora.jpg"
name=image4 width="105" height="26"></span></a><span style='text-underline:
none'> </span><a href="javascript:;"
onmouseover="MM_showMenu(window.mm_menu_0821171709_0,6,29,null,'image5')"
onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline:
none'><img border=1 id=image5 src="../images/rstudents.jpg"
name=image5 width="125" height="26"></span></a><span style='text-underline:
none'> </span>
<a href="javascript:;"
onmouseover="MM_showMenu(window.mm_menu_0821171409_0,6,29,null,'image6')"
onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline:
none'><img border=1 id=image6 src="../images/feedback.jpg"
name=image6 width="80" height="25"></span></a><span style='text-underline:
none'> </span>
<!---
<a href="../user/feedback.jsp"><img border="1" src="../images/feedback.jpg" width="80" height="25"></a>
--->
</td>
</tr>
<tr>
<td width="800">
<p align="center"><font color="#FF9933"><span style='font-size:18.0pt;
'><b>Sanskrit Sandhi Recognizer and Analyzer</b></span></font></p>
The Sanskrit sandhi splitter (VOWEL SANDHI) was developed as part of M.Phil. research by <a href="mailto:sachin.jnu@gmail.com">Sachin Kumar</a> (M.Phil. 2005-2007), and <a href=mailto:diwakarmishra@gmail.com>Diwakar Mishra</a> (M.Phil. 2007-2009) under the supervision of <a href=http://www.jnu.ac.in/faculty/gnjha>Dr. Girish Nath Jha</a>. The coding for this application has been done by Dr. Girish Nath Jha and Diwakar Mishra. <!---Please send feedback to to <a href="mailto:girishj@mail.jnu.ac.in">Dr. Girish Nath Jha</A>--->The Devanagari input mechanism has been developed in Javascript by Satyendra Kumar Chaube, Dr. Girish Nath Jha and Dharm Singh Rathore.
</center>
<table border=0 width=100%>
<tr>
<td valign=top width=48%>
<table>
<tr>
<td>
<FORM METHOD=get ACTION=viccheda.jsp#results name="iform" accept-Charset="UTF-8">
<font size=2><b>Enter Sanskrit text for sandhi processing (संधि-विच्छेद हेतु पाठ्य दें)
using adjacent keyboard OR Use our inbuilt <a href=../js/itrans.html target=_blank>iTRANS</a>-Devanagari unicode converter for fast typing<br>
<a href=sandhitest.txt>examples</a>
<TEXTAREA name=itext COLS=40 ROWS=9 onkeypress=checkKeycode(event) onkeyup=iu()> पदविशिष्टत्वाभावादितिचेन्न</TEXTAREA>
</td>
</tr>
<tr>
<td>
<font color=red size=2>Run in debug mode</font>
<input type=checkbox name="debug" value="ON">
<br>
<input type=submit value="Click to sandhi-split (संधि-विच्छेद करें)"></span><br>
</td>
</tr>
</table>
</td>
<td valign=top width=52%>
<table>
<tr>
<td>
<head>
<SCRIPT language=JavaScript src="../js/devkb.js"></SCRIPT>
<head>
<TEXTAREA name=itrans rows=5 cols=10 style="display:none"></TEXTAREA>
<INPUT name=lastChar type=hidden>
<table border=2 style="background-color:#fff;">
<tbody>
<tr >
<td>
<input type=button name="btn" style="width: 24px" value="अ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="आ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="इ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ई" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="उ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ऊ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ए" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ऐ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ओ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="औ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="अं" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="अः" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ऍ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ऑ" onClick="keyboard(this.value)">
</td>
</tr>
<tr>
<td>
<input type=button name="btn" style="width: 24px" value="्" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ा" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ि" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ी" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ु" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ू" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="े" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ै" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ो" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ौ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ं" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ः" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ॅ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ॉ" onClick="keyboard(this.value)">
</td>
</tr>
<tr>
<td>
<input type=button name="btn" style="width: 24px" value="क" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ख" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ग" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="घ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ङ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="च" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="छ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ज" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="झ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ञ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 100px" value="Backspace" onClick="BackSpace()">
</td>
</tr>
<tr>
<td>
<input type=button name="btn" style="width: 24px" value="+" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ट" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ठ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ड" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ढ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ण" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="त" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="थ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="द" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ध" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="न" onClick="keyboard(this.value)">
</td>
</tr>
<tr>
<td>
<input type=button name="btn" style="width: 24px" value="/" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="प" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="फ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ब" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="भ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="म" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="य" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="र" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ल" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="व" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="।" onClick="keyboard(this.value)">
</td>
</tr>
<tr>
<td>
<input type=button name="btn" style="width: 24px" value="*" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="श" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ष" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="स" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="ऋ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ऌ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ृ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ॄ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="ह" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="॥" onClick="keyboard(this.value)">
</td>
</tr>
<tr>
<td>
<input type=button name="btn" style="width: 24px" value="त्र" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ज्ञ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="क्ष" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="श्र" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 200px" value="Space Bar" onClick="Space()">
<input type=button name="btn" style="width: 24px" value="ँ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="़" onClick="keyboard(this.value)">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
</table>
</form>
<a name=results>
<font size=4><b><u>Results</u></b></font>
<br>
<br>
<font color=red>
<br>
<hr>
<br>
</body>
</html>
|
external/lldb/www/cpp_reference/html/classlldb_1_1SBTypeList.html
|
s20121035/rk3288_android5.1_repo
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html><head>
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/>
<meta name="keywords" content="LLDB,C++,doxygen,API,documentation"/>
<meta name="description" content="C++ source code API documentation for LLDB."/>
<title>LLVM: lldb::SBTypeList Class Reference</title>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head><body>
<p class="title">LLDB API Documentation</p>
<!-- Generated by Doxygen 1.8.1.2 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespacelldb.html">lldb</a></li><li class="navelem"><a class="el" href="classlldb_1_1SBTypeList.html">SBTypeList</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="#friends">Friends</a> |
<a href="classlldb_1_1SBTypeList-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">lldb::SBTypeList Class Reference</div> </div>
</div><!--header-->
<div class="contents">
<p><code>#include <<a class="el" href="SBType_8h_source.html">SBType.h</a>></code></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:ab088afc9c9db4c44f9f7e19e0bea4f49"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classlldb_1_1SBTypeList.html#ab088afc9c9db4c44f9f7e19e0bea4f49">SBTypeList</a> ()</td></tr>
<tr class="memitem:af170dc586ce3f8dfb24fbac8ee9d60f1"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classlldb_1_1SBTypeList.html#af170dc586ce3f8dfb24fbac8ee9d60f1">SBTypeList</a> (const <a class="el" href="classlldb_1_1SBTypeList.html">lldb::SBTypeList</a> &rhs)</td></tr>
<tr class="memitem:a2318ed917a480ba6400e0e76abdef5fe"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classlldb_1_1SBTypeList.html#a2318ed917a480ba6400e0e76abdef5fe">~SBTypeList</a> ()</td></tr>
<tr class="memitem:af92fde4561fb2d89b414012be7e6e3fd"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classlldb_1_1SBTypeList.html">lldb::SBTypeList</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classlldb_1_1SBTypeList.html#af92fde4561fb2d89b414012be7e6e3fd">operator=</a> (const <a class="el" href="classlldb_1_1SBTypeList.html">lldb::SBTypeList</a> &rhs)</td></tr>
<tr class="memitem:a18c39cbd3ae6b34b672188616782b32a"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classlldb_1_1SBTypeList.html#a18c39cbd3ae6b34b672188616782b32a">IsValid</a> ()</td></tr>
<tr class="memitem:ac260946f48d81a8e2f6dbd224df8c3b4"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classlldb_1_1SBTypeList.html#ac260946f48d81a8e2f6dbd224df8c3b4">Append</a> (<a class="el" href="classlldb_1_1SBType.html">lldb::SBType</a> type)</td></tr>
<tr class="memitem:af297f7a439bd054c7efc6c9c55d5703f"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classlldb_1_1SBType.html">lldb::SBType</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classlldb_1_1SBTypeList.html#af297f7a439bd054c7efc6c9c55d5703f">GetTypeAtIndex</a> (uint32_t index)</td></tr>
<tr class="memitem:a1fe6b6a0cf209337c44075102c7cf6de"><td class="memItemLeft" align="right" valign="top">uint32_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classlldb_1_1SBTypeList.html#a1fe6b6a0cf209337c44075102c7cf6de">GetSize</a> ()</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2><a name="friends"></a>
Friends</h2></td></tr>
<tr class="memitem:a5a50b764fceeae5ed6ecf04b9d1eba5c"><td class="memItemLeft" align="right" valign="top">class </td><td class="memItemRight" valign="bottom"><a class="el" href="classlldb_1_1SBTypeList.html#a5a50b764fceeae5ed6ecf04b9d1eba5c">SBModule</a></td></tr>
<tr class="memitem:ad26dad126a8393ff3d6d085256763b1e"><td class="memItemLeft" align="right" valign="top">class </td><td class="memItemRight" valign="bottom"><a class="el" href="classlldb_1_1SBTypeList.html#ad26dad126a8393ff3d6d085256763b1e">SBCompileUnit</a></td></tr>
</table>
<a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock">
<p>Definition at line <a class="el" href="SBType_8h_source.html#l00210">210</a> of file <a class="el" href="SBType_8h_source.html">SBType.h</a>.</p>
</div><h2>Constructor & Destructor Documentation</h2>
<a class="anchor" id="ab088afc9c9db4c44f9f7e19e0bea4f49"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">lldb::SBTypeList::SBTypeList </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="af170dc586ce3f8dfb24fbac8ee9d60f1"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">lldb::SBTypeList::SBTypeList </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classlldb_1_1SBTypeList.html">lldb::SBTypeList</a> & </td>
<td class="paramname"><em>rhs</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a2318ed917a480ba6400e0e76abdef5fe"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">lldb::SBTypeList::~SBTypeList </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<h2>Member Function Documentation</h2>
<a class="anchor" id="ac260946f48d81a8e2f6dbd224df8c3b4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void lldb::SBTypeList::Append </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classlldb_1_1SBType.html">lldb::SBType</a> </td>
<td class="paramname"><em>type</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a1fe6b6a0cf209337c44075102c7cf6de"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">uint32_t lldb::SBTypeList::GetSize </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="af297f7a439bd054c7efc6c9c55d5703f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classlldb_1_1SBType.html">lldb::SBType</a> lldb::SBTypeList::GetTypeAtIndex </td>
<td>(</td>
<td class="paramtype">uint32_t </td>
<td class="paramname"><em>index</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a18c39cbd3ae6b34b672188616782b32a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool lldb::SBTypeList::IsValid </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="af92fde4561fb2d89b414012be7e6e3fd"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classlldb_1_1SBTypeList.html">lldb::SBTypeList</a>& lldb::SBTypeList::operator= </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classlldb_1_1SBTypeList.html">lldb::SBTypeList</a> & </td>
<td class="paramname"><em>rhs</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<h2>Friends And Related Function Documentation</h2>
<a class="anchor" id="ad26dad126a8393ff3d6d085256763b1e"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">friend class <a class="el" href="classlldb_1_1SBCompileUnit.html">SBCompileUnit</a></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">friend</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="SBType_8h_source.html#l00238">238</a> of file <a class="el" href="SBType_8h_source.html">SBType.h</a>.</p>
</div>
</div>
<a class="anchor" id="a5a50b764fceeae5ed6ecf04b9d1eba5c"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">friend class <a class="el" href="classlldb_1_1SBModule.html">SBModule</a></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">friend</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="SBType_8h_source.html#l00237">237</a> of file <a class="el" href="SBType_8h_source.html">SBType.h</a>.</p>
</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li><a class="el" href="SBType_8h_source.html">SBType.h</a></li>
</ul>
</div><!-- contents -->
<hr>
<p class="footer">
Generated on Fri Jul 19 2013 13:25:55 for <a href="http://lldb.llvm.org/">LLVM</a> by
<a href="http://www.doxygen.org"><img src="doxygen.png" alt="Doxygen"
align="middle" border="0"/>1.8.1.2</a><br>
Copyright © 2003-2013 University of Illinois at Urbana-Champaign.
All Rights Reserved.</p>
<hr>
<!--#include virtual="/attrib.incl" -->
</body>
</html>
|
docs/examples/example-example38/index-jquery.html
|
publicFunction/arma-campaign-manager
|
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example - example-example38-jquery</title>
<script src="../../components/jquery-undefined/jquery.js"></script>
<script src="../../../angular/lib/angular.js"></script>
<script src="script.js"></script>
</head>
<body ng-app="form-example1">
<form name="form" class="css-form" novalidate>
<div>
Size (integer 0 - 10):
<input type="number" ng-model="size" name="size"
min="0" max="10" integer />{{size}}<br />
<span ng-show="form.size.$error.integer">The value is not a valid integer!</span>
<span ng-show="form.size.$error.min || form.size.$error.max">
The value must be in range 0 to 10!</span>
</div>
<div>
Username:
<input type="text" ng-model="name" name="name" username />{{name}}<br />
<span ng-show="form.name.$pending.username">Checking if this name is available...</span>
<span ng-show="form.name.$error.username">This username is already taken!</span>
</div>
</form>
</body>
</html>
|
jobs/job00001.html
|
Datse-Multimedia-Productions/autismjobs
|
<!DOCTYPE html>
<html>
<head>
<title>Autism Jobs Quality Assurance Job</title>
</head>
<body>
<h1>Autism Jobs Quality Assurance</h1>
<p>Provide Quality Assurance for Autism Jobs website. May also have other jobs available to other sites.</p>
<h2>Job Requirments</h2>
<p>This job is available to anyone who would like to work in helping Autistics find work, or to help those providing services to Autistics find people to work for them.</p>
<h2>Ideal Candidate</h2>
<p>The candidate will have attention to details, ability to communicate what they notice about services offered by Autism Jobs, and is able to work largely independently.</p>
<h2>Job Location</h2>
<dl>
<dt>Street Address</dt>
<dd>Off Site<dd>
<dt>Province</dt>
<dd>British Columbia (but available to all locations)</dd>
<dt>Country</dt>
<dd>Canada</dd>
<dt>Remote Avalibility</dt>
<dt>Full Remote</dt>
<dt>Partial Remote</dt>
<dt>Potential for future on site work</dt>
<dl>
<h2>How to Apply</h2>
<dl>
<dt>Instructions</dt>
<dd>Please Email, or phone</dd>
<dt>Email</dt>
<dd><a href="mailto:info@datsemultimedia.com">info@datsemultimedia.com</a></dd>
<dt>Website</dt>
<dd><a href="http://autismjobs.net">Autism Jobs</a></dd>
<dt>Phone Number</dt>
<dd>250-362-5701</dd>
</dl>
</body>
</html>
|
foreign/boost/libs/multiprecision/doc/html/boost_multiprecision/tut/rational.html
|
cppisfun/GameEngine
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Rational Number Types</title>
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.77.1">
<link rel="home" href="../../index.html" title="Chapter 1. Boost.Multiprecision">
<link rel="up" href="../tut.html" title="Tutorial">
<link rel="prev" href="floats/fp_eg/poly_eg.html" title="Polynomial Evaluation">
<link rel="next" href="rational/cpp_rational.html" title="cpp_rational">
</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="floats/fp_eg/poly_eg.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../tut.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="rational/cpp_rational.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="boost_multiprecision.tut.rational"></a><a class="link" href="rational.html" title="Rational Number Types">Rational Number Types</a>
</h3></div></div></div>
<div class="toc"><dl>
<dt><span class="section"><a href="rational/cpp_rational.html">cpp_rational</a></span></dt>
<dt><span class="section"><a href="rational/gmp_rational.html">gmp_rational</a></span></dt>
<dt><span class="section"><a href="rational/tommath_rational.html">tommath_rational</a></span></dt>
<dt><span class="section"><a href="rational/br.html">Use With Boost.Rational</a></span></dt>
<dt><span class="section"><a href="rational/rational_adapter.html">rational_adapter</a></span></dt>
</dl></div>
<p>
The following back-ends provide rational number arithmetic:
</p>
<div class="informaltable"><table class="table">
<colgroup>
<col>
<col>
<col>
<col>
<col>
<col>
</colgroup>
<thead><tr>
<th>
<p>
Backend Type
</p>
</th>
<th>
<p>
Header
</p>
</th>
<th>
<p>
Radix
</p>
</th>
<th>
<p>
Dependencies
</p>
</th>
<th>
<p>
Pros
</p>
</th>
<th>
<p>
Cons
</p>
</th>
</tr></thead>
<tbody>
<tr>
<td>
<p>
<code class="computeroutput"><span class="identifier">cpp_rational</span></code>
</p>
</td>
<td>
<p>
boost/multiprecision/cpp_int.hpp
</p>
</td>
<td>
<p>
2
</p>
</td>
<td>
<p>
None
</p>
</td>
<td>
<p>
An all C++ Boost-licensed implementation.
</p>
</td>
<td>
<p>
Slower than <a href="http://gmplib.org" target="_top">GMP</a>.
</p>
</td>
</tr>
<tr>
<td>
<p>
<code class="computeroutput"><span class="identifier">gmp_rational</span></code>
</p>
</td>
<td>
<p>
boost/multiprecision/gmp.hpp
</p>
</td>
<td>
<p>
2
</p>
</td>
<td>
<p>
<a href="http://gmplib.org" target="_top">GMP</a>
</p>
</td>
<td>
<p>
Very fast and efficient back-end.
</p>
</td>
<td>
<p>
Dependency on GNU licensed <a href="http://gmplib.org" target="_top">GMP</a>
library.
</p>
</td>
</tr>
<tr>
<td>
<p>
<code class="computeroutput"><span class="identifier">tommath_rational</span></code>
</p>
</td>
<td>
<p>
boost/multiprecision/tommath.hpp
</p>
</td>
<td>
<p>
2
</p>
</td>
<td>
<p>
<a href="http://libtom.org/?page=features&newsitems=5&whatfile=ltm" target="_top">libtommath</a>
</p>
</td>
<td>
<p>
All C/C++ implementation that's Boost Software Licence compatible.
</p>
</td>
<td>
<p>
Slower than <a href="http://gmplib.org" target="_top">GMP</a>.
</p>
</td>
</tr>
<tr>
<td>
<p>
<code class="computeroutput"><span class="identifier">rational_adapter</span></code>
</p>
</td>
<td>
<p>
boost/multiprecision/rational_adapter.hpp
</p>
</td>
<td>
<p>
N/A
</p>
</td>
<td>
<p>
none
</p>
</td>
<td>
<p>
All C++ adapter that allows any integer back-end type to be used
as a rational type.
</p>
</td>
<td>
<p>
Requires an underlying integer back-end type.
</p>
</td>
</tr>
<tr>
<td>
<p>
<code class="computeroutput"><span class="identifier">boost</span><span class="special">::</span><span class="identifier">rational</span></code>
</p>
</td>
<td>
<p>
boost/rational.hpp
</p>
</td>
<td>
<p>
N/A
</p>
</td>
<td>
<p>
None
</p>
</td>
<td>
<p>
A C++ rational number type that can used with any <code class="computeroutput"><span class="identifier">number</span></code> integer type.
</p>
</td>
<td>
<p>
The expression templates used by <code class="computeroutput"><span class="identifier">number</span></code>
end up being "hidden" inside <code class="computeroutput"><span class="identifier">boost</span><span class="special">::</span><span class="identifier">rational</span></code>:
performance may well suffer as a result.
</p>
</td>
</tr>
</tbody>
</table></div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2002-2012 John Maddock and Christopher Kormanyos<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="floats/fp_eg/poly_eg.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../tut.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="rational/cpp_rational.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
material/partials/language/no.html
|
vivalditurkiye/wiki
|
{% macro t(key) %}{{ {
"language": "no",
"clipboard.copy": "Kopier til utklippstavlen",
"clipboard.copied": "Kopiert til utklippstavlen",
"edit.link.title": "Rediger denne siden",
"footer.previous": "Forrige",
"footer.next": "Neste",
"meta.comments": "Kommentarer",
"meta.source": "Kilde",
"search.language": "no",
"search.placeholder": "Søk",
"search.result.placeholder": "Skriv søkeord",
"search.result.none": "Ingen treff",
"search.result.one": "1 treff",
"search.result.other": "# treff",
"skip.link.title": "Gå til innhold",
"source.link.title": "Gå til kilde",
"toc.title": "Innholdsfortegnelse"
}[key] }}{% endmacro %}
|
geonode/workspace/templates/admin/layer.html
|
cjahangir/geodash-new
|
{% extends 'site_base.html' %}
{% load i18n %}
{% block title %}{% trans "Admin Workspace" %}{% endblock %}
{% comment %}
{% block subnav %}
<li><a href="{% url "actstream_object_feed" content_type_id=ctype.pk object_id=actor.pk %}">RSS</a></li>
<li><a href="{% url "actstream_object_feed_atom" content_type_id=ctype.pk object_id=actor.pk %}">ATOM</a></li>
{% endblock %}
{% endcomment %}
{% block body %}
<div class="page-title">
<h2>{% trans "Admin Workspace" %}</h2>
</div>
<div class="row">
<div class="col-md-12">
<ul class="nav nav-pills">
<li role="presentation" class="active"><a href="{% url "admin-workspace-layer" %}">{% trans "Layers" %}</a></li>
<li role="presentation"><a href="{% url "admin-workspace-map" %}"> {% trans "Maps" %}</a></li>
<li role="presentation"><a href="{% url "admin-workspace-document" %}">{% trans "Documents" %}</a></li>
</ul>
<br>
<ul class="nav nav-tabs">
<li class="active"><a href="#user-approval-request" data-toggle="tab">{% trans "User approval request" %}</a></li>
<li><a href="#approved" data-toggle="tab">{% trans "Approved" %}</a></li>
<li><a href="#user-drafts" data-toggle="tab">{% trans "User Drafts" %}</a></li>
<li><a href="#denied-layers" data-toggle="tab">{% trans "Denied Layers" %}</a></li>
</ul>
<div class="tab-content">
<article id="user-approval-request" class="tab-pane active">
<ul class="no-style-list">
<table class="table table-hover">
<thead>
<tr>
<th>#</th>
<th>Layer Title</th>
<th>Organization</th>
<th>Tried</th>
<th>Date of request</th>
</tr>
</thead>
{% for user_approval in user_approval_request_list %}
<tbody>
<tr>
<td>{{ forloop.counter}}</td>
<td><a href="{{ user_approval.detail_url }}">{{ user_approval.title }}</a></td>
<td>{{ user_approval.group }}</td>
<td>{{ user_approval.current_iteration }}</td>
<td>{{ user_approval.date_updated }}</td>
<td><button type="button" class="btn btn-default btn-xs"><a href="{{ user_approval.detail_url }}?user_role=manager">{% trans "approve" %}</a></button></td>
<td><button type="button" class="btn btn-default btn-xs"><a href="{{ user_approval.detail_url }}?user_role=manager">{% trans "deney" %}</a></button></td>
</tr>
</tbody>
{% empty %}
<p>{% trans "No pending requests yet" %}</p>
{% endfor %}
</table>
</ul>
</article>
<article id="approved" class="tab-pane">
<ul class="no-style-list">
<table class="table table-hover">
<thead>
<tr>
<th>#</th>
<th>Layer Title</th>
<th>Organization</th>
<th>Who requested</th>
<th>Who approved</th>
<th>Approve date</th>
</tr>
</thead>
{% for approved in approved_list %}
<tbody>
<tr>
<td>{{ forloop.counter}}</td>
<td>{{ approved.title }}</td>
<td>{{ approved.group }}</td>
<td>{{ approved.owner }}</td>
<td>{{ approved.last_auditor }}</td>
<td>{{ approved.date_updated }}</td>
<td><td><button type="button" class="btn btn-default btn-xs"><a href="{{ approved.detail_url }}">{% trans "edit" %}</a></button></td></td>
</tr>
</tbody>
{% empty %}
<p>{% trans "No approved layers yet" %}</p>
{% endfor %}
</table>
</ul>
</article>
<article id="user-drafts" class="tab-pane">
<ul class="no-style-list">
<table class="table table-hover">
<thead>
<tr>
<th>#</th>
<th>Layer Title</th>
<th>Organization</th>
<th>Layer creation date</th>
</tr>
</thead>
{% for draft in user_draft_list %}
<tbody>
<tr>
<td>{{ forloop.counter}}</td>
<td>{{ draft.title }}</td>
<td>{{ draft.group }}</td>
<td>{{ draft.date_created }}</td>
<td>
<button type="button" class="btn btn-warning btn-xs" data-toggle="modal" data-target="#_delete_layer">{% trans "delete layer" %}</button> <br>
{% include "layer_templates/_delete_layer.html" %}
</td>
</tr>
</tbody>
{% empty %}
<p>{% trans "No user drafts yet" %}</p>
{% endfor %}
</table>
</ul>
</article>
<article id="denied-layers" class="tab-pane">
<ul class="no-style-list">
<table class="table table-hover">
<thead>
<tr>
<th>#</th>
<th>Layer Title</th>
<th>Organization</th>
<th>Who requested</th>
<th>Who denied</th>
<th>Denied date</th>
</tr>
</thead>
{% for deney in denied_list %}
<tbody>
<tr>
<td>{{ forloop.counter}}</td>
<td>{{ deney.title}}</td>
<td>{{ deney.group}}</td>
<td>{{ deney.owner }}</td>
<td>{{ deney.last_auditor }}</td>
<td>{{ deney.date_updated }}</td>
</tr>
</tbody>
{% empty %}
<p>{% trans "No denied layers yet" %}</p>
{% endfor %}
</table>
</ul>
</article>
</div>
</div>
</div>
{% endblock %}
{% block extra_script %}
{{ block.super }}
<script>
$(function () {
$("#follow_button, #unfollow_button").click(function () {
$.post($(this).attr("href"), {});
$(this).parent().find("#follow_button, #unfollow_button").toggle();
return false
});
});
</script>
{% endblock %}
|
mongodb/reference/aggregation/skip.html
|
P3PO/the-phpjs-local-docs-collection
|
<!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">
<head><title>$skip (aggregation) — MongoDB Manual 2.4.3</title><link rel="shortcut icon" href="http://media.mongodb.org/favicon.ico" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="index" />
<meta name="release" content="2.4.3"/>
<meta name="DC.Source" content="https://github.com/mongodb/docs/blob/master/source/reference/aggregation/skip.txt"/>
<link rel="canonical" href="http://docs.mongodb.org/manual/reference/aggregation/skip" />
<link rel="stylesheet" href="../../_static/mongodb-docs.css" type="text/css" />
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../../',
VERSION: '2.4',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: false,
};
</script>
<script type="text/javascript" src="../../_static/jquery.js"></script>
<script type="text/javascript" src="../../_static/underscore.js"></script>
<script type="text/javascript" src="../../_static/doctools.js"></script>
<link rel="search" type="application/opensearchdescription+xml" href="http://docs.mongodb.org/osd.xml" title="MongoDB Help"/>
<link rel="author" title="About these documents" href="../../about.html" />
<link rel="top" title="MongoDB Manual" href="../../index.html" />
<link rel="up" title="Aggregation Framework Reference" href="../aggregation.html" />
<link rel="next" title="$sort (aggregation)" href="sort.html" />
<link rel="prev" title="$second (aggregation)" href="second.html" />
<script>
(function() {
var cx = '017213726194841070573:WMX6838984';
var gcse = document.createElement('script'); gcse.type = 'text/javascript'; gcse.async = true;
gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + '//www.google.com/cse/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(gcse, s);
})();
</script></head>
<body>
<div id="header-db" class="spread">
<div class="split">
<div id="logo">
<div><a href="http://www.mongodb.org/"><img class="logo" src="http://media.mongodb.org/logo-mongodb.png" alt="MongoDB Logo"/></a></div>
</div>
</div>
</div>
<div class="document">
<div class="documentwrapper"><div class="bodywrapper">
<div class="body">
<div class="bc">
<ul>
<li><a href="../../aggregation.html">Aggregation</a><span class="bcpoint"> > </span></li>
<li><a href="../aggregation.html">Aggregation Framework Reference</a><span class="bcpoint"> > </span></li>
<li>$skip (aggregation)</li>
</ul>
</div>
<div id="cse-results">
<gcse:searchresults linkTarget="_top"></gcse:searchresults>
</div>
<div class="section" id="skip-aggregation">
<h1>$skip (aggregation)<a class="headerlink" href="#skip-aggregation" title="Permalink to this headline">¶</a></h1>
<dl class="pipeline">
<dt id="stage._S_skip">
<tt class="descname">$skip</tt><a class="headerlink" href="#stage._S_skip" title="Permalink to this definition">¶</a></dt>
<dd><p>Skips over the specified number of <a class="reference internal" href="../glossary.html#term-document"><em class="xref std std-term">documents</em></a>
that pass through the <tt class="xref mongodb mongodb-pipeline docutils literal"><span class="pre">$skip</span></tt> in the <a class="reference internal" href="../glossary.html#term-pipeline"><em class="xref std std-term">pipeline</em></a>
before passing all of the remaining input.</p>
<p><tt class="xref mongodb mongodb-pipeline docutils literal"><span class="pre">$skip</span></tt> takes a single numeric (positive whole number)
value as a parameter. Once the operation has skipped the specified
number of documents, it passes all the remaining documents along the
<a class="reference internal" href="../glossary.html#term-pipeline"><em class="xref std std-term">pipeline</em></a> without alteration. Consider the following
example:</p>
<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">db</span><span class="p">.</span><span class="nx">article</span><span class="p">.</span><span class="nx">aggregate</span><span class="p">(</span>
<span class="p">{</span> <span class="nx">$skip</span> <span class="o">:</span> <span class="mi">5</span> <span class="p">}</span>
<span class="p">);</span>
</pre></div>
</div>
<p>This operation skips the first 5 documents passed to it by the
pipeline. <tt class="xref mongodb mongodb-pipeline docutils literal"><span class="pre">$skip</span></tt> has no effect on the content of the
documents it passes along the pipeline.</p>
</dd></dl>
</div>
<div id="btnv">
<ul id="btnvl">
<li id="btnvpr"><a href="second.html" title="Previous Section: $second (aggregation)">< $second (aggregation)</a></li>
<li id="btnvup"><a href="../../aggregation.html" title="Parent Section: Aggregation" >/\ Aggregation</a></li>
<li id="btnvnx"><a href="sort.html" title="Next Section: $sort (aggregation)">$sort (aggregation) ></a></li>
</ul>
</div></div></div>
</div>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<h3>
<a href="../../index.html">MongoDB Manual</a> <span id="vn">2.4</span>
</h3>
<div class="site-contents"><a href="../../contents.html">Contents</a></div>
<ul class="current">
<li class="toctree-l1"><a class="reference internal" href="../../installation.html">Install MongoDB</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../administration.html">Administration</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../security.html">Security</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../crud.html">Core MongoDB Operations (CRUD)</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../data-modeling.html">Data Modeling</a></li>
<li class="toctree-l1 current"><a class="reference internal" href="../../aggregation.html">Aggregation</a><ul class="current">
<li class="toctree-l2"><a class="reference internal" href="../../core/aggregation.html">Aggregation Framework</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../tutorial/aggregation-examples.html">Aggregation Framework Examples</a></li>
<li class="toctree-l2 current"><a class="reference internal" href="../aggregation.html">Aggregation Framework Reference</a><ul class="current">
<li class="toctree-l3"><a class="reference internal" href="add.html">$add (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="addToSet.html">$addToSet (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="and.html">$and (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="avg.html">$avg (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="cmp.html">$cmp (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="concat.html">$concat (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="cond.html">$cond (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="dayOfMonth.html">$dayOfMonth (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="dayOfWeek.html">$dayOfWeek (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="dayOfYear.html">$dayOfYear (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="divide.html">$divide (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="eq.html">$eq (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="first.html">$first (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="geoNear.html">$geoNear (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="group.html">$group (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="gt.html">$gt (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="gte.html">$gte (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="hour.html">$hour (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="ifNull.html">$ifNull (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="last.html">$last (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="limit.html">$limit (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="lt.html">$lt (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="lte.html">$lte (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="match.html">$match (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="max.html">$max (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="millisecond.html">$millisecond (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="min.html">$min (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="minute.html">$minute (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="mod.html">$mod (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="month.html">$month (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="multiply.html">$multiply (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="ne.html">$ne (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="not.html">$not (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="or.html">$or (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="project.html">$project (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="push.html">$push (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="second.html">$second (aggregation)</a></li>
<li class="toctree-l3 current"><a class="current reference internal" href="">$skip (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="sort.html">$sort (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="strcasecmp.html">$strcasecmp (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="substr.html">$substr (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="subtract.html">$subtract (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="sum.html">$sum (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="toLower.html">$toLower (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="toUpper.html">$toUpper (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="unwind.html">$unwind (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="week.html">$week (aggregation)</a></li>
<li class="toctree-l3"><a class="reference internal" href="year.html">$year (aggregation)</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="../sql-aggregation-comparison.html">SQL to Aggregation Framework Mapping Chart</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../core/map-reduce.html">Map-Reduce</a></li>
<li class="toctree-l2"><a class="reference internal" href="../simple-aggregation.html">Simple Aggregation Methods and Commands</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="../../indexes.html">Indexes</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../replication.html">Replication</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../sharding.html">Sharding</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../applications.html">Application Development</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../mongo.html">The <tt class="docutils literal"><span class="pre">mongo</span></tt> Shell</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../use-cases.html">Use Cases</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../faq.html">Frequently Asked Questions</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../reference.html">Reference</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../release-notes.html">Release Notes</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../about.html">About MongoDB Documentation</a></li>
</ul>
<div class="site-index"><a href="../../genindex.html">Index</a></div>
<h3>Formats</h3>
<ul class="this-page-menu">
<li><a href="/manual/single/">MongoDB Manual, Single HTML Page</a></li>
<li><a href="http://docs.mongodb.org/master/MongoDB-Manual-master.pdf" rel="nofollow">MongoDB Manual, PDF Format</a></li>
<li><a href="http://docs.mongodb.org/master/MongoDB-Manual-master.epub" rel="nofollow">MongoDB Manual, ePub Format</a></li>
</ul>
<h3><a href="http://www.mongodb.org/about/">About MongoDB</a></h3>
<ul>
<li><a href="http://www.mongodb.org/about/introduction">Introduction</a></li>
<li><a href="http://www.mongodb.org/about/community">User Community</a></li>
<li><a href="http://mongodb.org/about/community/masters">MongoDB Masters</a></li>
<li><a href="http://planet.mongodb.org">Planet MongoDB</a></li>
</ul>
<h3><a href="http://docs.mongodb.org/ecosystem/">MongoDB Ecosystem</a></h3>
<ul>
<li><a href="http://docs.mongodb.org/ecosystem/drivers/">Drivers and Client libraries</a>
<ul>
<li><a href="http://docs.mongodb.org/ecosystem/drivers/c">C</a> (<a href="http://api.mongodb.org/c/current/">docs</a>)</li>
<li><a href="http://docs.mongodb.org/ecosystem/drivers/cpp">C++</a> (<a href="http://api.mongodb.org/cplusplus/current/">docs</a>)</li>
<li><a href="http://docs.mongodb.org/ecosystem/drivers/csharp">C#</a> (<a href="http://api.mongodb.org/csharp/current/">docs</a>)</li>
<li><a href="http://docs.mongodb.org/ecosystem/drivers/erlang">Erlang</a> (<a href="http://api.mongodb.org/erlang">docs</a>)</li>
<li><a href="http://hackage.haskell.org/package/mongoDB">Haskell</a> (<a href="http://api.mongodb.org/haskell">docs</a>)</li>
<li><a href="http://docs.mongodb.org/ecosystem/drivers/java">Java</a> (<a href="http://api.mongodb.org/java/current">docs</a>)</li>
<li><a href="http://docs.mongodb.org/ecosystem/drivers/javascript">JavaScript</a> (<a href="http://api.mongodb.org/js/current">docs</a>)</li>
<li><a href="http://docs.mongodb.org/ecosystem/drivers/perl">Perl</a> (<a href="http://api.mongodb.org/perl/current/">docs</a>)</li>
<li><a href="http://docs.mongodb.org/ecosystem/drivers/php">PHP</a> (<a href="http://php.net/mongo/">docs</a>)</li>
<li><a href="http://docs.mongodb.org/ecosystem/drivers/python">Python</a> (<a href="http://api.mongodb.org/python/current">docs</a>)</li>
<li><a href="http://docs.mongodb.org/ecosystem/drivers/ruby">Ruby</a> (<a href="http://api.mongodb.org/ruby/current">docs</a>)</li>
<li><a href="http://docs.mongodb.org/ecosystem/drivers/scala">Scala</a> (<a href="http://api.mongodb.org/scala/casbah/current/">docs</a>)</li>
</ul>
</li>
<li><a href="http://docs.mongodb.org/ecosystem/tools/">Tools and Integration</a></li>
<li><a href="http://docs.mongodb.org/ecosystem/platforms/">Platform Integration</a></li>
</ul><h3>MongoDB Resources</h3>
<ul>
<li><a href="http://www.mongodb.org/downloads">Downloads</a></li>
<li><a href="http://www.10gen.com/events">MongoDB Events</a></li>
<li><a href="http://www.10gen.com/presentations">Slides and Video</a></li>
<li><a href="http://www.10gen.com/products/mms/">MongoDB Monitoring Service</a> (<a href="http://mms.10gen.com/help/">docs</a>)</li>
</ul>
</div>
</div>
<div class="clearer"></div>
</div><div id="top-right">
<div class="user-right">
<ul id="header-menu-bar" class="ajs-menu-bar">
<li class="normal"><a target="_blank" href="http://groups.google.com/group/mongodb-user">Forums</a></li>
<li class="normal"><a target="_blank" href="http://blog.mongodb.org/">Blog</a></li>
<li class="normal"><a href="http://www.mongodb.org/downloads">Download</a></li>
<li class="normal"><a href="http://docs.mongodb.org/ecosystem/drivers/">Drivers</a></li>
<li class="normal"><a href="http://www.10gen.com/events">Events</a></li>
<li class="normal last"><a class="last" href="http://docs.mongodb.org/manual/meta/translation">Translations</a></li>
</ul>
</div>
</div>
<div class="search-db"><gcse:searchbox></gcse:searchbox></div>
<div id="etp">
<ul>
<li><a href="https://github.com/mongodb/docs/blob/master/source/reference/aggregation/skip.txt" target="_blank" title="Edit reference/aggregation/skip.txt on GitHub">Edit this Page</a></li>
<li><a href="http://github.com/mongodb/docs" target="_blank" title="Fork the documentation on GitHub and contribute.">GitHub</a></li>
<li><a id="jirafeedback" href="https://jira.mongodb.org/secure/CreateIssueDetails!init.jspa?pid=10380&issuetype=4&priority=4&summary=Comment+on%3a+%22reference/aggregation/skip%2Etxt%22" target="_blank" title="Report a problem with reference/aggregation/skip.txt on Jira">Report a Problem</a></li>
</ul>
</div>
<div class="footer">
<p>
© <a href="">Copyright</a> 2011-2013, 10gen, Inc.
MongoDB®, Mongo®, and the leaf logo are registered trademarks of <a href="http://www.10gen.com/">10gen, Inc.</a>
</p>
</div><script type="text/javascript">
var _gaq = _gaq || [];
var pluginUrl = (('https:' == document.location.protocol) ? 'https://ssl.' : 'http://www.') + 'google-analytics.com/plugins/ga/inpage_linkid.js';
_gaq.push(['_require', 'inpage_linkid', pluginUrl]);
_gaq.push(['_setAccount', 'UA-7301842-8']);
_gaq.push(['_setDomainName', 'docs.mongodb.org']);
_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>
<script type="text/javascript">var _kiq = _kiq || [];</script>
<script type="text/javascript">
(function(){
setTimeout(function(){ var d = document, f = d.getElementsByTagName('script')[0], s = d.createElement('script'); s.type = 'text/javascript'; s.async = true; s.src = '//s3.amazonaws.com/ki.js/49119/a7n.js'; f.parentNode.insertBefore(s, f); }, 1);
})();
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-7301842-14', 'mongodb.org');
ga('send', 'pageview');
</script>
<script type="text/javascript">
document.write(unescape("%3Cscript src='" + document.location.protocol + "//munchkin.marketo.net/munchkin.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script>try { mktoMunchkin("017-HGS-593"); } catch(e) {}</script><script type="text/javascript">
jQuery.ajax({
url: "https://jira.mongodb.org/s/en_UScn8g8x/782/6/1.2.5/_/download/batch/com.atlassian.jira.collector.plugin.jira-issue-collector-plugin:issuecollector-embededjs/com.atlassian.jira.collector.plugin.jira-issue-collector-plugin:issuecollector-embededjs.js?collectorId=298ba4e7",
type: "get",
cache: true,
dataType: "script"
});
window.ATL_JQ_PAGE_PROPS = {
"triggerFunction": function(showCollectorDialog) {
jQuery("#jirafeedback").click(function(e) {e.preventDefault();showCollectorDialog();});},
fieldValues: {component: 'mongodb-manual', summary: 'Comment on: "manual/reference/aggregation/skip.txt"'},
environment: {'repo': 'docs','source': 'reference/aggregation/skip'}
};
</script><script type="text/javascript">
var versions = [{'t': '2.4 (current)', 'v': 'v2.4'}, {'t': '2.2', 'v': 'v2.2'}]
var pagename = 'reference/aggregation/skip'
var stable = 'v2.4'
function vfnav() {
if ( pagename=='index' ) {
pn = ''
}
else {
pn = pagename
}
v = $(this).children("option:selected").attr('value')
if ( (v==0) || (v==stable) ) {
uri = '/manual/' + pn
}
else {
uri = '/' + v + '/' + pn
}
window.location.href= uri;
}
$(document).ready(function(){
$("#vn").html(function(){
s=$("<select/>");
o='<option/>';
$.each(versions,function(index, version) {
if ( version.v==stable ) {
dv=true;
}
$(o,{value:version.v,text: version.t}).appendTo(s);
});
if ( dv==false ) {
$(o, {value:0,text:'(stable)'}).appendTo(s);
}
return(s);
});
$("#vn select").bind('change', vfnav);
$('#vn select').val('v2.4');
});
</script>
</body>
</html>
|
products/accessories/al-248.html
|
vivotekweb/vivotekweb
|
<!DOCTYPE html>
<html lang="en">
<!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7"><![endif]-->
<!--[if IE 7]><html class="no-js lt-ie9 lt-ie8"><![endif]-->
<!--[if IE 8]><html class="no-js lt-ie9"><![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js">
<!--<![endif]-->
<head>
<base href="//www.vivotek.com/website/">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AL-248 - Lens | VIVOTEK Accessories</title>
<meta name="description" content="AL-248, Lens, VIVOTEK Accessories, 12 ~ 50mm, F1.8, P-iris">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/vivotek.min.css">
<style type="text/css">
table.accessories_tab tr:nth-child(2) {
background-color: rgba(255,255,255,1);
}
.img_center {
margin: 0 auto;
}
.logo-mar {
margin-left: 120px;
}
.width-left {
width: 30%;
}
.width-right {
width: 70%;
}
@media(max-width:768px) {
ol li {
font-size: .85em;
}
.logo-mar {
margin-left: 0;
}
.width-left {
width: 10%;
}
.width-right {
width: 90%;
}
}
</style>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"item": {
"@id": "http://www.vivotek.com",
"name": "Home",
"image": "https://www.vivotek.com/website/image/all/VIVOTEK_logo.png"
}
},{
"@type": "ListItem",
"position": 2,
"item": {
"@id": "https://www.vivotek.com/website/lens/#acc_category-filter:path=.lens",
"name": "Accessories - Lens",
"image": "https://www.vivotek.com/website/image/all/nav/lens.jpg"
}
},{
"@type": "ListItem",
"position": 3,
"item": {
"@id": "https://www.vivotek.com/website/accessories/al-248.html",
"name": "AL-248",
"image": "https://www.vivotek.com/website/image/all/icon_products/al-248.png"
}
}]
}
</script>
<script async src="//www.google-analytics.com/ga.js"></script>
<!-- !GOOGLE-ANALYTICS START -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-1877002-1', 'auto');
ga('set', 'anonymizeIp', true);
ga('send', 'pageview');
</script>
<!-- !GOOGLE-ANALYTICS END -->
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-KV2JCZ');</script>
<!-- End Google Tag Manager -->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KV2JCZ"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<ul>
<li style="list-style-type: none;" class="logo-mar">
<a href="/" class="navbar-brand vivotek_navbar-brand"><img src="image/all/VIVOTEK_logo.svg" class="vivotek_logoimg"></a>
</li>
</ul>
<div class="div_clear_38"></div>
<table cellspacing="0" class=" accessories_tab font_size_1188">
<tr>
<td colspan="2">
<ol class="breadcrumb font_size_128">
<li><a href="">Home</a></li>
<li><a href="lens/#acc_category-filter:path=.lens">Accessories - Lens</a></li>
<li><a href="accessories/al-248.html">AL-248</a></li>
</ol>
</td>
</tr>
<tr>
<td class="width-left"><img src="image/all/icon_products/al-248.png" align="left" class="img-responsive"></td>
<td width="width-right">
12 ~ 50mm, F1.8, P-iris<br>
Model: AL-248<br>
P/N: 640019900G
</td>
</tr>
<tr>
<td>Supported Cameras</td>
<td>IP816A-HP, IP816A-LPC, IP9181-H, IP9191-HP</td>
</tr>
<tr>
<td>Focal Length</td>
<td>12 ~ 50 mm</td>
</tr>
<tr>
<td>Aperture</td>
<td>F1.8</td>
</tr>
<tr>
<td>Image Circle</td>
<td>1/1.7"</td>
</tr>
<tr>
<td>Iris Type</td>
<td>P-iris</td>
</tr>
<tr>
<td>Mount Type</td>
<td>CS-Mount</td>
</tr>
<tr></tr>
</table>
<div class="div_clear_38"></div>
</body>
</html>
|
doc/interpreter/octave.html/XREFsetdiff.html
|
anooprh/GNU-Octave
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Created by GNU Texinfo 5.2, http://www.gnu.org/software/texinfo/ -->
<!-- This file redirects to the location of a node or anchor -->
<head>
<title>GNU Octave: XREFsetdiff</title>
<meta name="description" content="GNU Octave: XREFsetdiff">
<meta name="keywords" content="GNU Octave: XREFsetdiff">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="makeinfo">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.smallquotation {font-size: smaller}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
div.indentedblock {margin-left: 3.2em}
div.lisp {margin-left: 3.2em}
div.smalldisplay {margin-left: 3.2em}
div.smallexample {margin-left: 3.2em}
div.smallindentedblock {margin-left: 3.2em; font-size: smaller}
div.smalllisp {margin-left: 3.2em}
kbd {font-style:oblique}
pre.display {font-family: inherit}
pre.format {font-family: inherit}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
pre.smalldisplay {font-family: inherit; font-size: smaller}
pre.smallexample {font-size: smaller}
pre.smallformat {font-family: inherit; font-size: smaller}
pre.smalllisp {font-size: smaller}
span.nocodebreak {white-space:nowrap}
span.nolinebreak {white-space:nowrap}
span.roman {font-family:serif; font-weight:normal}
span.sansserif {font-family:sans-serif; font-weight:normal}
ul.no-bullet {list-style: none}
-->
</style>
<meta http-equiv="Refresh" content="0; url=Set-Operations.html#XREFsetdiff">
</head>
<body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<p>The node you are looking for is at <a href="Set-Operations.html#XREFsetdiff">XREFsetdiff</a>.</p>
</body>
|
catalog/view/theme/baghli-arbash/css/rtl/css/jquerysctipttop.css
|
taylorsuccessor/baghli
|
@charset "utf-8";
/* CSS Document */
#jquery-script-menu {
position: fixed;
height: 90px;
width: 100%;
top: 0;
left: 0;
border-top: 5px solid #316594;
background: #fff;
-moz-box-shadow: 0 2px 3px 0px rgba(0, 0, 0, 0.16);
-webkit-box-shadow: 0 2px 3px 0px rgba(0, 0, 0, 0.16);
box-shadow: 0 2px 3px 0px rgba(0, 0, 0, 0.16);
z-index: 999999;
padding: 10px 0;
-webkit-box-sizing:content-box;
-moz-box-sizing:content-box;
box-sizing:content-box;
}
.jquery-script-center {
width: 960px;
margin: 0 auto;
}
.jquery-script-center ul {
width: 212px;
float:left;
line-height:45px;
margin:0;
padding:0;
list-style:none;
}
.jquery-script-center a {
text-decoration:none;
}
.jquery-script-ads {
width: 728px;
height:90px;
float:right;
}
.jquery-script-clear {
clear:both;
height:0;
}
|
uohCorpus.fil/uoh/uoh.filteredcorpus.txt_output/TENA-78_ext.txt.out.dict_15558_inr.html
|
sanskritiitd/sanskrit
|
url: http://sanskrit.inria.fr/cgi-bin/SKT/sktreader?t=VH;lex=SH;cache=f;st=t;us=f;cp=t;text=dh.r.s.to'yam;topic=;abs=f;allSol=2;mode=p;cpts=<!DOCTYPE html>
<html><head>
<meta charset="utf-8">
<title>Sanskrit Reader Companion</title>
<meta name="author" content="Gérard Huet">
<meta property="dc:datecopyrighted" content="2016">
<meta property="dc:rightsholder" content="Gérard Huet">
<meta name="keywords" content="dictionary,sanskrit,heritage,dictionnaire,sanscrit,india,inde,indology,linguistics,panini,digital humanities,cultural heritage,computational linguistics,hypertext lexicon">
<link rel="stylesheet" type="text/css" href="http://sanskrit.inria.fr/DICO/style.css" media="screen,tv">
<link rel="shortcut icon" href="http://sanskrit.inria.fr/IMAGES/favicon.ico">
<script type="text/javascript" src="http://sanskrit.inria.fr/DICO/utf82VH.js"></script>
</head>
<body class="chamois_back">
<br><h1 class="title">The Sanskrit Reader Companion</h1>
<table class="chamois_back" border="0" cellpadding="0%" cellspacing="15pt" width="100%">
<tr><td>
<p align="center">
<div class="latin16"><a class="green" href="/cgi-bin/SKT/sktgraph?t=VH;lex=SH;cache=f;st=t;us=f;cp=t;text=dh.r.s.to'yam;topic=;abs=f;cpts=;mode=g">✓</a> Show Summary of Solutions
</p>
Input:
<span class="red16">dhṛṣṭo'yam</span><hr>
<br>
Sentence:
<span class="deva16" lang="sa">धृष्टोऽयम्</span><br>
may be analysed as:</div><br>
<hr>
<span class="blue">Solution 1 : <a class="green" href="/cgi-bin/SKT/sktparser?t=VH;lex=SH;cache=f;st=t;us=f;cp=t;text=dh.r.s.to'yam;topic=;abs=f;cpts=;mode=p;n=1">✓</a></span><br>
[ <span class="blue" title="0"><b>dhṛṣṭaḥ</b></span><table class="deep_sky_back">
<tr><th><span class="latin12"><tr><th><span class="latin12">{ nom. sg. m. }[<a class="navy" href="http://sanskrit.inria.fr/DICO/34.html#dh.r.s.ta"><i>dhṛṣṭa</i></a> { pp. }[<a class="navy" href="http://sanskrit.inria.fr/DICO/34.html#dh.r.s"><i>dhṛṣ</i></a>]]</span></th></tr></span></th></tr></table>⟨<span class="magenta">aḥ</span><span class="green">|</span><span class="magenta">a</span><span class="blue"> → </span><span class="red">o'</span>⟩]
<br>
[ <span class="blue" title="5"><b>ayam</b></span><table class="light_blue_back">
<tr><th><span class="latin12"><tr><th><span class="latin12">{ nom. sg. m. }[<a class="navy" href="http://sanskrit.inria.fr/DICO/5.html#ayam"><i>ayam</i></a>]</span></th></tr></span></th></tr></table>⟨⟩]
<br>
<br>
<hr>
<span class="magenta">1</span><span class="blue"> solution</span><span class="blue"> kept among </span><span class="magenta">1</span><br>
<br>
<hr>
<br>
<br>
</td></tr></table>
<table class="pad60">
<tr><td></td></tr></table>
<div class="enpied">
<table class="bandeau"><tr><td>
<a href="http://ocaml.org"><img src="http://sanskrit.inria.fr/IMAGES/ocaml.gif" alt="Le chameau Ocaml" height="50"></a>
</td><td>
<table class="center">
<tr><td>
<a href="http://sanskrit.inria.fr/index.fr.html"><b>Top</b></a> |
<a href="http://sanskrit.inria.fr/DICO/index.fr.html"><b>Index</b></a> |
<a href="http://sanskrit.inria.fr/DICO/index.fr.html#stemmer"><b>Stemmer</b></a> |
<a href="http://sanskrit.inria.fr/DICO/grammar.fr.html"><b>Grammar</b></a> |
<a href="http://sanskrit.inria.fr/DICO/sandhi.fr.html"><b>Sandhi</b></a> |
<a href="http://sanskrit.inria.fr/DICO/reader.fr.html"><b>Reader</b></a> |
<a href="http://sanskrit.inria.fr/faq.fr.html"><b>Help</b></a> |
<a href="http://sanskrit.inria.fr/portal.fr.html"><b>Portal</b></a>
</td></tr><tr><td>
© Gérard Huet 1994-2016</td></tr></table></td><td>
<a href="http://www.inria.fr/"><img src="http://sanskrit.inria.fr/IMAGES/logo_inria.png" alt="Logo Inria" height="50"></a>
<br></td></tr></table></div>
</body>
</html>
|
minkowski/lib/javadoc/index-files/index-14.html
|
ravimohan1991/minkowski-graph
|
<!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_40) on Wed Jan 15 21:47:34 EET 2014 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>P-Index</title>
<meta name="date" content="2014-01-15">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="P-Index";
}
//-->
</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>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="../overview-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="index-13.html">Prev Letter</a></li>
<li><a href="index-15.html">Next Letter</a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?index-filesindex-14.html" target="_top">Frames</a></li>
<li><a href="index-14.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="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">C</a> <a href="index-3.html">D</a> <a href="index-4.html">E</a> <a href="index-5.html">F</a> <a href="index-6.html">G</a> <a href="index-7.html">H</a> <a href="index-8.html">I</a> <a href="index-9.html">J</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">V</a> <a href="index-21.html">W</a> <a name="_P_">
<!-- -->
</a>
<h2 class="title">P</h2>
<dl>
<dt><a href="../com/panayotis/gnuplot/plot/Page.html" title="class in com.panayotis.gnuplot.plot"><span class="strong">Page</span></a> - Class in <a href="../com/panayotis/gnuplot/plot/package-summary.html">com.panayotis.gnuplot.plot</a></dt>
<dd>
<div class="block">The data representation of a whole graph page</div>
</dd>
<dt><span class="strong"><a href="../com/panayotis/gnuplot/plot/Page.html#Page()">Page()</a></span> - Constructor for class com.panayotis.gnuplot.plot.<a href="../com/panayotis/gnuplot/plot/Page.html" title="class in com.panayotis.gnuplot.plot">Page</a></dt>
<dd>
<div class="block">Construct a new blank page with one graph inside</div>
</dd>
<dt><span class="strong"><a href="../com/panayotis/gnuplot/plot/Page.html#Page(boolean)">Page(boolean)</a></span> - Constructor for class com.panayotis.gnuplot.plot.<a href="../com/panayotis/gnuplot/plot/Page.html" title="class in com.panayotis.gnuplot.plot">Page</a></dt>
<dd>
<div class="block">Construct a new blank page with one graph inside</div>
</dd>
<dt><span class="strong"><a href="../com/panayotis/gnuplot/swing/JPlot.html#paint(java.awt.Graphics)">paint(Graphics)</a></span> - Method in class com.panayotis.gnuplot.swing.<a href="../com/panayotis/gnuplot/swing/JPlot.html" title="class in com.panayotis.gnuplot.swing">JPlot</a></dt>
<dd>
<div class="block">Paint this component</div>
</dd>
<dt><span class="strong"><a href="../com/panayotis/gnuplot/GNUPlot.html#plot()">plot()</a></span> - Method in class com.panayotis.gnuplot.<a href="../com/panayotis/gnuplot/GNUPlot.html" title="class in com.panayotis.gnuplot">GNUPlot</a></dt>
<dd>
<div class="block">Perform the actual action of plotting.</div>
</dd>
<dt><a href="../com/panayotis/gnuplot/plot/Plot.html" title="interface in com.panayotis.gnuplot.plot"><span class="strong">Plot</span></a> - Interface in <a href="../com/panayotis/gnuplot/plot/package-summary.html">com.panayotis.gnuplot.plot</a></dt>
<dd>
<div class="block">This interface is used by JavaPlot to handle various plot arguments.</div>
</dd>
<dt><span class="strong"><a href="../com/panayotis/gnuplot/swing/JPlot.html#plot()">plot()</a></span> - Method in class com.panayotis.gnuplot.swing.<a href="../com/panayotis/gnuplot/swing/JPlot.html" title="class in com.panayotis.gnuplot.swing">JPlot</a></dt>
<dd>
<div class="block">Perform a plot on this object</div>
</dd>
<dt><a href="../com/panayotis/gnuplot/style/PlotColor.html" title="interface in com.panayotis.gnuplot.style"><span class="strong">PlotColor</span></a> - Interface in <a href="../com/panayotis/gnuplot/style/package-summary.html">com.panayotis.gnuplot.style</a></dt>
<dd>
<div class="block">Interface definition of the color object to be used under gnuplot</div>
</dd>
<dt><a href="../com/panayotis/gnuplot/style/PlotStyle.html" title="class in com.panayotis.gnuplot.style"><span class="strong">PlotStyle</span></a> - Class in <a href="../com/panayotis/gnuplot/style/package-summary.html">com.panayotis.gnuplot.style</a></dt>
<dd>
<div class="block">This object represents the styles which can be used in gnuplot to personalize
each prot</div>
</dd>
<dt><span class="strong"><a href="../com/panayotis/gnuplot/style/PlotStyle.html#PlotStyle()">PlotStyle()</a></span> - Constructor for class com.panayotis.gnuplot.style.<a href="../com/panayotis/gnuplot/style/PlotStyle.html" title="class in com.panayotis.gnuplot.style">PlotStyle</a></dt>
<dd>
<div class="block">Creates a new instance of PlotStyle with default parameters</div>
</dd>
<dt><span class="strong"><a href="../com/panayotis/gnuplot/style/PlotStyle.html#PlotStyle(com.panayotis.gnuplot.style.Style)">PlotStyle(Style)</a></span> - Constructor for class com.panayotis.gnuplot.style.<a href="../com/panayotis/gnuplot/style/PlotStyle.html" title="class in com.panayotis.gnuplot.style">PlotStyle</a></dt>
<dd>
<div class="block">Creates a new instance of PlotStyle with a specified style</div>
</dd>
<dt><a href="../com/panayotis/gnuplot/dataset/Point.html" title="class in com.panayotis.gnuplot.dataset"><span class="strong">Point</span></a><<a href="../com/panayotis/gnuplot/dataset/Point.html" title="type parameter in Point">N</a> extends java.lang.Number> - Class in <a href="../com/panayotis/gnuplot/dataset/package-summary.html">com.panayotis.gnuplot.dataset</a></dt>
<dd>
<div class="block">This object represents a N-dimensional point.</div>
</dd>
<dt><span class="strong"><a href="../com/panayotis/gnuplot/dataset/Point.html#Point(N...)">Point(N...)</a></span> - Constructor for class com.panayotis.gnuplot.dataset.<a href="../com/panayotis/gnuplot/dataset/Point.html" title="class in com.panayotis.gnuplot.dataset">Point</a></dt>
<dd>
<div class="block">Creates a new instance of Point with given coordinates</div>
</dd>
<dt><a href="../com/panayotis/gnuplot/dataset/PointDataSet.html" title="class in com.panayotis.gnuplot.dataset"><span class="strong">PointDataSet</span></a><<a href="../com/panayotis/gnuplot/dataset/PointDataSet.html" title="type parameter in PointDataSet">N</a> extends java.lang.Number> - Class in <a href="../com/panayotis/gnuplot/dataset/package-summary.html">com.panayotis.gnuplot.dataset</a></dt>
<dd>
<div class="block">Store data sets in a dynamic Generics ArrayList of Points.</div>
</dd>
<dt><span class="strong"><a href="../com/panayotis/gnuplot/dataset/PointDataSet.html#PointDataSet()">PointDataSet()</a></span> - Constructor for class com.panayotis.gnuplot.dataset.<a href="../com/panayotis/gnuplot/dataset/PointDataSet.html" title="class in com.panayotis.gnuplot.dataset">PointDataSet</a></dt>
<dd>
<div class="block">Create an empty PointDataSet</div>
</dd>
<dt><span class="strong"><a href="../com/panayotis/gnuplot/dataset/PointDataSet.html#PointDataSet(int)">PointDataSet(int)</a></span> - Constructor for class com.panayotis.gnuplot.dataset.<a href="../com/panayotis/gnuplot/dataset/PointDataSet.html" title="class in com.panayotis.gnuplot.dataset">PointDataSet</a></dt>
<dd>
<div class="block">Create an empty PointDataSet with a specified initial capacity</div>
</dd>
<dt><span class="strong"><a href="../com/panayotis/gnuplot/dataset/PointDataSet.html#PointDataSet(java.util.Collection)">PointDataSet(Collection<? extends Point<N>>)</a></span> - Constructor for class com.panayotis.gnuplot.dataset.<a href="../com/panayotis/gnuplot/dataset/PointDataSet.html" title="class in com.panayotis.gnuplot.dataset">PointDataSet</a></dt>
<dd>
<div class="block">Create a new PointDataSet from a previous collection of Points</div>
</dd>
<dt><a href="../com/panayotis/gnuplot/terminal/PostscriptTerminal.html" title="class in com.panayotis.gnuplot.terminal"><span class="strong">PostscriptTerminal</span></a> - Class in <a href="../com/panayotis/gnuplot/terminal/package-summary.html">com.panayotis.gnuplot.terminal</a></dt>
<dd>
<div class="block">This terminal uses postscript as it's backend</div>
</dd>
<dt><span class="strong"><a href="../com/panayotis/gnuplot/terminal/PostscriptTerminal.html#PostscriptTerminal()">PostscriptTerminal()</a></span> - Constructor for class com.panayotis.gnuplot.terminal.<a href="../com/panayotis/gnuplot/terminal/PostscriptTerminal.html" title="class in com.panayotis.gnuplot.terminal">PostscriptTerminal</a></dt>
<dd>
<div class="block">Create a new instance of PostscriptTerminal.</div>
</dd>
<dt><span class="strong"><a href="../com/panayotis/gnuplot/terminal/PostscriptTerminal.html#PostscriptTerminal(java.lang.String)">PostscriptTerminal(String)</a></span> - Constructor for class com.panayotis.gnuplot.terminal.<a href="../com/panayotis/gnuplot/terminal/PostscriptTerminal.html" title="class in com.panayotis.gnuplot.terminal">PostscriptTerminal</a></dt>
<dd>
<div class="block">Create a new Postscript terminal and save output to the specified file</div>
</dd>
<dt><span class="strong"><a href="../com/panayotis/gnuplot/terminal/DefaultTerminal.html#processOutput(java.io.InputStream)">processOutput(InputStream)</a></span> - Method in class com.panayotis.gnuplot.terminal.<a href="../com/panayotis/gnuplot/terminal/DefaultTerminal.html" title="class in com.panayotis.gnuplot.terminal">DefaultTerminal</a></dt>
<dd>
<div class="block">No processing is performed.</div>
</dd>
<dt><span class="strong"><a href="../com/panayotis/gnuplot/terminal/ExpandableTerminal.html#processOutput(java.io.InputStream)">processOutput(InputStream)</a></span> - Method in class com.panayotis.gnuplot.terminal.<a href="../com/panayotis/gnuplot/terminal/ExpandableTerminal.html" title="class in com.panayotis.gnuplot.terminal">ExpandableTerminal</a></dt>
<dd>
<div class="block">This method only consumes gnuplot stdout input stream.</div>
</dd>
<dt><span class="strong"><a href="../com/panayotis/gnuplot/terminal/GNUPlotTerminal.html#processOutput(java.io.InputStream)">processOutput(InputStream)</a></span> - Method in interface com.panayotis.gnuplot.terminal.<a href="../com/panayotis/gnuplot/terminal/GNUPlotTerminal.html" title="interface in com.panayotis.gnuplot.terminal">GNUPlotTerminal</a></dt>
<dd>
<div class="block">This method is executed bu GNUPlot, when the plot has been performed.</div>
</dd>
<dt><span class="strong"><a href="../com/panayotis/gnuplot/terminal/ImageTerminal.html#processOutput(java.io.InputStream)">processOutput(InputStream)</a></span> - Method in class com.panayotis.gnuplot.terminal.<a href="../com/panayotis/gnuplot/terminal/ImageTerminal.html" title="class in com.panayotis.gnuplot.terminal">ImageTerminal</a></dt>
<dd>
<div class="block">Read the produced image from gnuplot standard output</div>
</dd>
<dt><span class="strong"><a href="../com/panayotis/gnuplot/terminal/SVGTerminal.html#processOutput(java.io.InputStream)">processOutput(InputStream)</a></span> - Method in class com.panayotis.gnuplot.terminal.<a href="../com/panayotis/gnuplot/terminal/SVGTerminal.html" title="class in com.panayotis.gnuplot.terminal">SVGTerminal</a></dt>
<dd>
<div class="block">Process output of this terminal.</div>
</dd>
<dt><span class="strong"><a href="../com/panayotis/gnuplot/terminal/TextFileTerminal.html#processOutput(java.io.InputStream)">processOutput(InputStream)</a></span> - Method in class com.panayotis.gnuplot.terminal.<a href="../com/panayotis/gnuplot/terminal/TextFileTerminal.html" title="class in com.panayotis.gnuplot.terminal">TextFileTerminal</a></dt>
<dd>
<div class="block">Process output of this terminal.</div>
</dd>
<dt><a href="../com/panayotis/gnuplot/PropertiesHolder.html" title="class in com.panayotis.gnuplot"><span class="strong">PropertiesHolder</span></a> - Class in <a href="../com/panayotis/gnuplot/package-summary.html">com.panayotis.gnuplot</a></dt>
<dd>
<div class="block">This object is a data placeholder of various text-based parameters, used in
JavaPlot graph objects.<br> It is possible to retrieve all it's data, as long
a valid key-value pair is present.</div>
</dd>
<dt><span class="strong"><a href="../com/panayotis/gnuplot/PropertiesHolder.html#PropertiesHolder()">PropertiesHolder()</a></span> - Constructor for class com.panayotis.gnuplot.<a href="../com/panayotis/gnuplot/PropertiesHolder.html" title="class in com.panayotis.gnuplot">PropertiesHolder</a></dt>
<dd>
<div class="block">Creates a new instance of PropertiesHolder with default prefix and suffix
values.<br> The prefix in this case is the token "set " and the suffix is
the newline character.</div>
</dd>
<dt><span class="strong"><a href="../com/panayotis/gnuplot/PropertiesHolder.html#PropertiesHolder(java.lang.String, java.lang.String)">PropertiesHolder(String, String)</a></span> - Constructor for class com.panayotis.gnuplot.<a href="../com/panayotis/gnuplot/PropertiesHolder.html" title="class in com.panayotis.gnuplot">PropertiesHolder</a></dt>
<dd>
<div class="block">Creates a new instance of PropertiesHolder with given prefix and suffix
tokens.</div>
</dd>
</dl>
<a href="index-1.html">A</a> <a href="index-2.html">C</a> <a href="index-3.html">D</a> <a href="index-4.html">E</a> <a href="index-5.html">F</a> <a href="index-6.html">G</a> <a href="index-7.html">H</a> <a href="index-8.html">I</a> <a href="index-9.html">J</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">V</a> <a href="index-21.html">W</a> </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>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="../overview-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="index-13.html">Prev Letter</a></li>
<li><a href="index-15.html">Next Letter</a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?index-filesindex-14.html" target="_top">Frames</a></li>
<li><a href="index-14.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
src/main/resources/static/partials/sidebar-left.html
|
wescleysrn/election-analysis
|
<!-- Start left navigation - menu -->
<ul data-collapse-menu class="sidebar-menu">
<!-- Start navigation - dashboard -->
<li class="active">
<a href="index.html">
<span class="icon"><i class="fa fa-home"></i></span>
<span class="text">Home</span>
<span class="selected"></span>
</a>
</li>
<!--/ End navigation - dashboard -->
<!-- Start category party -->
<li class="sidebar-category">
<span>PARTY</span>
<span class="pull-right"><i class="fa fa-server"></i></span>
</li>
<!--/ End category party -->
<!-- Start navigation - donation received -->
<li class="submenu">
<a href="javascript:void(0);">
<span class="icon"><i class="fa fa-user"></i></span>
<span class="text">Donation Received</span>
<span class="arrow"></span>
</a>
<ul>
<li><a href="#/partyPersonDonation" data-active-menu>Person</a></li>
<li><a href="#/partyCompanyDonation" data-active-menu>Company</a></li>
</ul>
</li>
<!--/ End navigation - donation received -->
<!-- Start category candidate -->
<li class="sidebar-category">
<span>CANDIDATE</span>
<span class="pull-right"><i class="fa fa-plus"></i></span>
</li>
<!--/ End category candidate -->
<!-- Start navigation - donation received -->
<li class="submenu">
<a href="javascript:void(0);">
<span class="icon"><i class="fa fa-user"></i></span>
<span class="text">Donation Received</span>
<span class="arrow"></span>
</a>
<ul>
<li><a href="#/candidatePersonDonation" data-active-menu>Person</a></li>
<li><a href="#/candidateCompanyDonation" data-active-menu>Company</a></li>
</ul>
</li>
<!--/ End navigation - donation received -->
<!-- Start category company -->
<li class="sidebar-category">
<span>Company</span>
<span class="pull-right"><i class="fa fa-plus"></i></span>
</li>
<!--/ End category company -->
</ul><!-- /.sidebar-menu -->
<!--/ End left navigation - menu -->
|
metronic_v4.7.1/theme/admin_5_material_design/page_user_lock_1.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 #5 | User Lock Screen 1</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 #5 for " 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 THEME GLOBAL STYLES -->
<link href="../assets/global/css/components-md.min.css" rel="stylesheet" id="style_components" type="text/css" />
<link href="../assets/global/css/plugins-md.min.css" rel="stylesheet" type="text/css" />
<!-- END THEME GLOBAL STYLES -->
<!-- BEGIN PAGE LEVEL STYLES -->
<link href="../assets/pages/css/lock.min.css" rel="stylesheet" type="text/css" />
<!-- END PAGE LEVEL STYLES -->
<!-- BEGIN THEME LAYOUT STYLES -->
<!-- END THEME LAYOUT STYLES -->
<link rel="shortcut icon" href="favicon.ico" /> </head>
<!-- END HEAD -->
<body class="">
<div class="page-lock">
<div class="page-logo">
<a class="brand" href="index.html">
<img src="../assets/pages/img/logo-big.png" alt="logo" /> </a>
</div>
<div class="page-body">
<div class="lock-head"> Locked </div>
<div class="lock-body">
<div class="pull-left lock-avatar-block">
<img src="../assets/pages/media/profile/photo3.jpg" class="lock-avatar"> </div>
<form class="lock-form pull-left" action="index.html" method="post">
<h4>Amanda Smith</h4>
<div class="form-group">
<input class="form-control placeholder-no-fix" type="password" autocomplete="off" placeholder="Password" name="password" /> </div>
<div class="form-actions">
<button type="submit" class="btn red uppercase">Login</button>
</div>
</form>
</div>
<div class="lock-bottom">
<a href="">Not Amanda Smith?</a>
</div>
</div>
<div class="page-footer-custom"> 2014 © Metronic. Admin Dashboard Template. </div>
</div>
<!--[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 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/lock.min.js" type="text/javascript"></script>
<!-- END PAGE LEVEL SCRIPTS -->
<!-- BEGIN THEME LAYOUT SCRIPTS -->
<!-- END THEME LAYOUT SCRIPTS -->
</body>
</html>
|
docs/example7.html
|
CCGE-BOADICEA/pedigreejs
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,maximum-scale=2">
<link href="https://code.jquery.com/ui/1.12.1/themes/cupertino/jquery-ui.min.css" rel="stylesheet" type="text/css" media="all" />
<link href="https://cdn.jsdelivr.net/npm/font-awesome@4.7.0/css/font-awesome.min.css" rel="stylesheet" type="text/css" media="all" />
<link rel="stylesheet" href="../build/pedigreejs.v2.1.0-rc4.min.css" />
<script src="https://cdn.jsdelivr.net/npm/jquery@3.3.1/dist/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/d3@5.16.0/dist/d3.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<script src="../build/pedigreejs.v2.1.0-rc4.min.js"></script>
<style>
body {
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 14px;
line-height: 1.42857143;
color: #333;
background-color: #fff;
}
.container {
width: 90%;
max-width: 1140px;
margin-right: auto;
margin-left: auto;
}
#ped {text-align:center;}
.btn {
color: #333;
background-color: #fff;
border: 1px solid #ccc;
display: inline-block;
padding: 6px 12px;
cursor: pointer;
margin-left: 5px;
border-radius: 4px;
}
#opts {
background-color: #F5F5F5;
padding: 10px;
border: 1px solid #ccc;
font-size: 13px;
line-height: 1.42857143;
overflow: auto;word-wrap: normal;
border-radius: 4px;
}
#history_ex7 {
padding: 10px;
}
.text-center {
text-align: center;
padding: 0 20px;
}
</style>
<script type="text/javascript">
$( document ).ready(function() {
var parent_width = $('#pedigrees_ex7').parent().width();
var margin = ($(window).width()-parent_width > 10 ? 100 : 30);
var svg_width = (parent_width > 750 ? (parent_width*8/12 - margin) : parent_width- margin);
var dataset = [
{"name": "m11", "display_name": "John", "sex": "M", "diabetes_diagnosis_age": 55, "top_level": true},
{"name": "f11", "display_name": "Jane", "sex": "F", "status": 1, "top_level": true},
{"name": "m12", "display_name": "Jack", "sex": "M", "top_level": true},
{"name": "f12", "display_name": "Jill", "sex": "F", "top_level": true},
{"name": "m21", "display_name": "Jim", "divorced": "f21", "sex": "M", "mother": "f11", "father": "m11", "age": 56},
{"name": "f21", "display_name": "Jan", "divorced": "m21", "sex": "F", "mother": "f12", "father": "m12", "age": 63},
{"name": "ch1", "display_name": "Ana", "sex": "F", "mother": "f21", "father": "m21", "proband": true, "age": 25},
{"name": "ch2", "display_name": "Bet", "sex": "F", "mother": "f21", "father": "m21", "adopted_in": true},
{"name": "ch3", "display_name": "Adam", "sex": "M", "mother": "f21", "father": "m21", "stillbirth": true, "status": 1},
{"name": "ch4", "display_name": "Sam", "sex": "M", "mother": "f21", "father": "m21", "miscarriage": true},
{"name": "ch5", "mother": "f21", "father": "m21", "termination": true, "status": 1},
{"name":"m22","sex":"M","mother":"f12","father":"m12","mztwin":"2"},
{"name":"m23","sex":"M","mother":"f12","father":"m12","mztwin":"2"},
{"name":"m24","sex":"M","mother":"f12","father":"m12","dztwin":"1"},
{"name":"f22","sex":"F","mother":"f12","father":"m12","dztwin":"1"}
];
var opts = {
'targetDiv': 'pedigrees_ex7',
'btn_target': 'history_ex7',
'store_type': 'session',
'width': svg_width,
'height': 500,
'symbol_size': 35,
'edit': true,
'diseases': [
{'type': 'diabetes', 'colour': '#F68F35'},
],
'DEBUG': (pedigreejs.pedigree_utils.urlParam('debug') === null ? false : true)
};
//$('#opts').append(JSON.stringify(opts, null, 4));
var local_dataset = pedigreejs.pedcache.current(opts);
if (local_dataset !== undefined && local_dataset !== null) {
opts.dataset = local_dataset;
} else {
opts.dataset = dataset;
}
opts= pedigreejs.pedigreejs.build(opts);
$('#history_ex7').css('max-width', svg_width);
$('#history_ex7').css('margin', 'auto');
});
</script>
</head>
<body>
<div class="text-center">
<h2>Example 7</h2>
<label class="btn">
<input id="load" type="file" style="display: none;"/>Load
</label>
<label class="btn">
<input id="save" type="button" style="display: none;"/>Save
</label>
<label class="btn">
<input id="print" type="button" style="display: none;"/>Print
</label>
<label class="btn">
<input id="svg_download" type="button" style="display: none;"/>SVG
</label>
<div id='history_ex7'></div>
<div id="pedigrees_ex7"></div>
<div id="node_properties"></div>
</div>
<div class="container">
<p>More examples using <a href="https://www.ncbi.nlm.nih.gov/pubmed/7887430" target="_blank">standard pedigree nomenclature</a>:</p>
<table class="table" >
<tr><td class="text-right">monozygotic twin</td><td><img src="img/monozygotic.png"></td><td class="text-right">dizygotic twin</td><td><img src="img/dizygotic.png"></td></tr>
<tr><td class="text-right">miscarriage </td><td><img src="img/miscarriage.png"></td><td class="text-right" rowspan="3">divorced</td><td rowspan="3"><img src="img/divorce.png"></td></tr>
<tr><td class="text-right">termination </td><td><img src="img/termination.png"></td></tr>
<tr><td class="text-right">stillbirth </td><td><img src="img/stillbirth.png"> </td></tr>
<tr><td class="text-right">adopted in </td><td><img src="img/adopted_in.png"> </td><td class="text-right">adopted out</td><td><img src="img/adopted_out.png"></td></tr>
</table>
</div>
</body>
|
uohCorpus.fil/uoh/uoh.filteredcorpus.txt_output/Sanskritkathakunj_ext.txt.out.dict_10678_jnu.html
|
sanskritiitd/sanskrit
|
url: http://sanskrit.jnu.ac.in/sandhi/viccheda.jsp?itext=परं पितामहो पितामहो न<html>
<title>Sanskrit Sandhi Splitter at J.N.U. New Delhi</title>
<META CONTENT='text/hetml CHARSET=UTF-8' HTTP-EQUIV='Content-Type'/>
<META NAME="Author" CONTENT="Dr. Girish Nath Jha">
<META NAME="Keywords" CONTENT="Dr. Girish Nath Jha, Sachin, Diwakar Mishra, Sanskrit Computational Linguistics, Sanskrit informatics, Sanskrit computing, Sanskrit language processing, Sanskrit and computer, computer processing of sanskrit, subanta, tinanta, POS tagger, tagset, Indian languages, linguistics, amarakosha, amarakosa, Indian tradition, Indian heritage, Machine translation, AI, MT divergence, Sandhi, kridanta, taddhita, e-learning, corpus, etext, e-text, Sanskrit blog, Panini, Bhartrhari, Bhartrihari, Patanjali, karaka, mahabharata, ashtadhyayi, astadhyayi, indexer, indexing, lexical resources, Sanskrit, thesaurus, samasa, gender analysis in Sanskrit, Hindi, saHiT, language technology, NLP">
<META NAME="Description" CONTENT="Dr. Girish Nath Jha, Sachin, Diwakar Mishra, Sanskrit Computational Linguistics, Sanskrit informatics, Sanskrit computing, Sanskrit language processing, Sanskrit and computer, computer processing of sanskrit, subanta, tinanta, POS tagger, tagset, Indian languages, linguistics, amarakosha, amarakosa, Indian tradition, Indian heritage, Machine translation, AI, MT divergence, Sandhi, kridanta, taddhita, e-learning, corpus, etext, e-text, Sanskrit blog, Panini, Bhartrhari, Bhartrihari, Patanjali, karaka, mahabharata, ashtadhyayi, astadhyayi, indexer, indexing, lexical resources, Sanskrit, thesaurus, samasa, gender analysis in Sanskrit, Hindi, saHiT, language technology, NLP">
<head>
<head>
<style>
<!--
div.Section1
{page:Section1;}
-->
</style>
<head>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<script language="JavaScript" src=../js/menuitems.js></script>
<script language="JavaScript" src="../js/mm_menu.js"></script>
<meta name=Author content="Dr. Girish Nath Jha, JNU, New Delhi">
</head>
<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in'>
<div class=Section1>
<div align=center>
<table border=1 cellspacing=0 cellpadding=0 width=802 style='width:601.5pt;
border-collapse:collapse;border:none;mso-border-alt:outset navy .75pt'>
<tr>
<td width=800 style='width:600.0pt;border:inset navy .75pt;padding:.75pt .75pt .75pt .75pt'>
<script language="JavaScript1.2">mmLoadMenus();</script>
<img width=800 height=130 id="_x0000_i1028" src="../images/header1.jpg"
border=0>
</td>
</tr>
<tr>
<td width=818 style='width:613.5pt;border:inset navy .75pt;border-top:none;
mso-border-top-alt:inset navy .75pt;padding:.75pt .75pt .75pt .75pt'>
<p align="center"><a href="../"><span style='text-decoration:none;text-underline:
none'><img border=1 width=49 height=26 id="_x0000_i1037"
src="../images/backtohome.jpg"></span></a><span style='text-underline:
none'> </span><a href="javascript:;"
onmouseover="MM_showMenu(window.mm_menu_0821171051_0,6,29,null,'image2')"
onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline:
none'><img border=1 id=image2 src="../images/lang_tool.jpg"
name=image2 width="192" height="25"></span></a><span style='text-underline:
none'> </span><a href="javascript:;"
onmouseover="MM_showMenu(window.mm_menu_0821171909_0,6,29,null,'image3')"
onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline:
none'><img border=1 id=image3 src="../images/lexical.jpg"
name=image3 width="137" height="25"></span></a><span style='text-underline:
none'> </span><a href="javascript:;"
onmouseover="MM_showMenu(window.mm_menu_0821171609_0,6,29,null,'image1')"
onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline:
none'><img border=1 id=image1 src="../images/elearning.jpg"
name=image1 width="77" height="25"></span></a><span style='text-underline:
none'> </span><a href="javascript:;"
onmouseover="MM_showMenu(window.mm_menu_0821171809_0,6,29,null,'image4')"
onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline:
none'><img border=1 id=image4 src="../images/corpora.jpg"
name=image4 width="105" height="26"></span></a><span style='text-underline:
none'> </span><a href="javascript:;"
onmouseover="MM_showMenu(window.mm_menu_0821171709_0,6,29,null,'image5')"
onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline:
none'><img border=1 id=image5 src="../images/rstudents.jpg"
name=image5 width="125" height="26"></span></a><span style='text-underline:
none'> </span>
<a href="javascript:;"
onmouseover="MM_showMenu(window.mm_menu_0821171409_0,6,29,null,'image6')"
onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline:
none'><img border=1 id=image6 src="../images/feedback.jpg"
name=image6 width="80" height="25"></span></a><span style='text-underline:
none'> </span>
<!---
<a href="../user/feedback.jsp"><img border="1" src="../images/feedback.jpg" width="80" height="25"></a>
--->
</td>
</tr>
<tr>
<td width="800">
<p align="center"><font color="#FF9933"><span style='font-size:18.0pt;
'><b>Sanskrit Sandhi Recognizer and Analyzer</b></span></font></p>
The Sanskrit sandhi splitter (VOWEL SANDHI) was developed as part of M.Phil. research by <a href="mailto:sachin.jnu@gmail.com">Sachin Kumar</a> (M.Phil. 2005-2007), and <a href=mailto:diwakarmishra@gmail.com>Diwakar Mishra</a> (M.Phil. 2007-2009) under the supervision of <a href=http://www.jnu.ac.in/faculty/gnjha>Dr. Girish Nath Jha</a>. The coding for this application has been done by Dr. Girish Nath Jha and Diwakar Mishra. <!---Please send feedback to to <a href="mailto:girishj@mail.jnu.ac.in">Dr. Girish Nath Jha</A>--->The Devanagari input mechanism has been developed in Javascript by Satyendra Kumar Chaube, Dr. Girish Nath Jha and Dharm Singh Rathore.
</center>
<table border=0 width=100%>
<tr>
<td valign=top width=48%>
<table>
<tr>
<td>
<FORM METHOD=get ACTION=viccheda.jsp#results name="iform" accept-Charset="UTF-8">
<font size=2><b>Enter Sanskrit text for sandhi processing (संधि-विच्छेद हेतु पाठ्य दें)
using adjacent keyboard OR Use our inbuilt <a href=../js/itrans.html target=_blank>iTRANS</a>-Devanagari unicode converter for fast typing<br>
<a href=sandhitest.txt>examples</a>
<TEXTAREA name=itext COLS=40 ROWS=9 onkeypress=checkKeycode(event) onkeyup=iu()> परं पितामहो पितामहो न</TEXTAREA>
</td>
</tr>
<tr>
<td>
<font color=red size=2>Run in debug mode</font>
<input type=checkbox name="debug" value="ON">
<br>
<input type=submit value="Click to sandhi-split (संधि-विच्छेद करें)"></span><br>
</td>
</tr>
</table>
</td>
<td valign=top width=52%>
<table>
<tr>
<td>
<head>
<SCRIPT language=JavaScript src="../js/devkb.js"></SCRIPT>
<head>
<TEXTAREA name=itrans rows=5 cols=10 style="display:none"></TEXTAREA>
<INPUT name=lastChar type=hidden>
<table border=2 style="background-color:#fff;">
<tbody>
<tr >
<td>
<input type=button name="btn" style="width: 24px" value="अ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="आ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="इ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ई" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="उ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ऊ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ए" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ऐ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ओ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="औ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="अं" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="अः" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ऍ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ऑ" onClick="keyboard(this.value)">
</td>
</tr>
<tr>
<td>
<input type=button name="btn" style="width: 24px" value="्" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ा" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ि" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ी" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ु" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ू" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="े" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ै" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ो" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ौ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ं" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ः" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ॅ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ॉ" onClick="keyboard(this.value)">
</td>
</tr>
<tr>
<td>
<input type=button name="btn" style="width: 24px" value="क" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ख" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ग" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="घ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ङ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="च" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="छ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ज" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="झ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ञ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 100px" value="Backspace" onClick="BackSpace()">
</td>
</tr>
<tr>
<td>
<input type=button name="btn" style="width: 24px" value="+" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ट" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ठ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ड" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ढ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ण" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="त" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="थ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="द" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ध" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="न" onClick="keyboard(this.value)">
</td>
</tr>
<tr>
<td>
<input type=button name="btn" style="width: 24px" value="/" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="प" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="फ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ब" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="भ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="म" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="य" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="र" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ल" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="व" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="।" onClick="keyboard(this.value)">
</td>
</tr>
<tr>
<td>
<input type=button name="btn" style="width: 24px" value="*" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="श" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ष" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="स" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="ऋ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ऌ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ृ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ॄ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="ह" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="॥" onClick="keyboard(this.value)">
</td>
</tr>
<tr>
<td>
<input type=button name="btn" style="width: 24px" value="त्र" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ज्ञ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="क्ष" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="श्र" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 200px" value="Space Bar" onClick="Space()">
<input type=button name="btn" style="width: 24px" value="ँ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="़" onClick="keyboard(this.value)">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
</table>
</form>
<a name=results>
<font size=4><b><u>Results</u></b></font>
<br>
पितामह ऊ (गुणसन्धि आद् गुणः)<br> पितामह उ (गुणसन्धि आद् गुणः)<br> पितामहा ऊ (गुणसन्धि आद् गुणः)<br> पितामहा उ (गुणसन्धि आद् गुणः)<br> पितामह ऊ (गुणसन्धि आद् गुणः)<br> पितामह उ (गुणसन्धि आद् गुणः)<br> पितामहा ऊ (गुणसन्धि आद् गुणः)<br> पितामहा उ (गुणसन्धि आद् गुणः)<br> न
<br>
<font color=red>
<br>
<hr>
<br>
</body>
</html>
|
geary/theming/message-viewer.css
|
solus-cold-storage/evopop-gtk-theme
|
/**
* Background colors associated with received emails:
* recv-normal: white
* recv-quoted: #e8e8e8
* recv-collapsed: #f5f5f5
*
* Background colors associated with sent emails:
* sent-normal: white
* sent-quoted: #e8e8e8
* sent-collapsed: #f5f5f5
*/
@media print {
body {
background-color: white !important;
}
.avatar, .button, .starred {
display: none !important;
}
.email {
display: none !important;
}
.email.print {
display: inline-block !important;
background-color: white !important;
}
.email.print .body {
display: block !important;
background-color: white !important;
}
.email.print .preview {
display: none !important;
}
}
/* By default, tables reset the font properties to "normal" */
table {
font-size: inherit;
}
body {
margin: 0 !important;
padding: 0 !important;
font: caption;
-webkit-user-select: none;
-webkit-user-drag: none;
}
a {
color: #08c;
}
td, th {
vertical-align: top;
}
hr {
background-color: #999;
height: 1px;
border: 0;
margin-top: 15px;
margin-bottom: 15px;
}
.body, .header, .preview {
-webkit-user-select: auto;
-webkit-user-drag: auto;
}
.shower, .hider {
-webkit-user-select: none;
-webkit-user-drag: none;
}
.button {
border: 1px transparent solid;
border-radius: 2.5px;
cursor: pointer;
padding: 4px;
margin-top: 7px;
color: black;
text-align: center;
}
.button * {
pointer-events: none;
}
.button:hover {
border-color: rgba(0,0,0,0.18);
box-shadow: inset 0px 0px 1px rgba(255,255,255,0.8);
}
.button:active {
border-color: rgba(0,0,0,0.20);
background-color: rgba(0,0,0,0.05);;
padding: 5px 3px 3px 5px;
box-shadow: inset 0px 0px 1px rgba(0,0,0,0.05);
}
.email, .composer_embed {
border: 1px rgba(0,0,0,1) solid;
background-color: white;/* recv-normal */
color: black;
box-shadow: 0 3px 11px rgba(0,0,0,1);
display: block;
word-wrap: break-word;
width: 100%;
box-sizing:border-box;
margin-top: 16px;
}
.composer_embed {
height: 300px;
}
.email.sent {
background-color: white;/* sent-normal */
}
.email .starred {
display: none;
}
.email .unstarred {
display: block;
}
.email.starred .starred {
display: block;
}
.email.starred .unstarred {
display: none;
}
.email.read, #multiple_messages .email, .composer_embed {
border-color: rgba(0,0,0,0.4);
box-shadow: 0 3px 11px rgba(0,0,0,0.21);
}
.email.animate {
-webkit-transition: border-color 3s ease;
-webkit-transition: box-shadow 3s ease;
}
.email .email_warning {
display: none;
padding: 1em;
background-color: #fcc;
text-align: center;
color: black;
}
.email_box {
box-sizing: border-box;
-webkit-box-sizing: border-box;
width: 100% !important;
}
.email_container {
overflow: hidden;
}
.email_container .header_container {
padding: 15px;
}
.email_container .header_container a:hover * {
color: #08c;
}
.email_container .header_container .button_bar {
float: right;
margin-top: -6px;
}
.email_container .header_container .button_bar > .button {
float: left;
}
.email_container .header_container .button_bar > .button > .icon {
width: 16px;
height: 16px;
}
.email_container .header_container .preview {
font-size: 80%;
color: #777;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.avatar {
display: none;
image-rendering: optimizeQuality;
}
.avatar[src^=file], .avatar[src^=http] {
display: inline;
width: 48px;
height: 48px;
float: left;
border-radius: 5px;
}
body:not(.nohide) .email.hide .header_container .avatar {
width: 32px;
height: 32px;
margin-right: 12px;
border-radius: 2.5px;
}
.email .body {
border-top: 1px solid #999;
margin: 16px;
margin-top: 0;
padding-top: 16px;
overflow-x: auto;
overflow-y: hidden;
position: relative; /* in case anything inside is positioned */
}
.email .remote_images {
display: none;
margin: 0 16px;
border: 1px solid #999;
border-bottom: none;
padding: 1em;
background: #ffc;
}
.email .remote_images .show_images,
.email .remote_images .show_from {
background: rgba(255,255,255,0.7);
color: inherit;
border: 1px solid #999;
border-radius: 3px;
}
.email .remote_images .show_images:hover,
.email .remote_images .show_from:hover {
background: rgba(255,255,255,0.9);
}
.email .remote_images .close_show_images {
float: right;
margin-top: -0.67em;
margin-right: -0.67em;
}
.email .replaced_inline_image {
max-width: 100%;
display: block;
margin-top: 1em;
}
.email .link_warning {
display: inline-block;
position: absolute;
margin-top: -1em;
border: 1px solid #999;
padding: 1em;
background: #ffc;
box-shadow: 0 3px 11px rgba(0,0,0,0.21);
/* Reset styles */
font: caption;
color: black;
}
.email .link_warning a {
color: #08c;
}
.email .link_warning span {
display: block;
padding-left: 1em;
}
.email .link_warning .close_link_warning {
float: right;
margin-top: -0.67em;
margin-right: -0.67em;
}
@media screen {
body {
background-color: #ccc !important;
}
body:not(.nohide) .email.hide,
body:not(.nohide) .email .email.hide {
background-color: #f5f5f5;/* recv-collapsed */
box-shadow: 0 2px 5px rgba(0,0,0,0.12);
}
body:not(.nohide) .email.sent.hide,
body:not(.nohide) .email.sent .email.hide {
background-color: #f5f5f5;/* sent-collapsed */
}
body:not(.nohide) .email.hide .body,
body:not(.nohide) .email.hide > .attachment_container,
.email:not(.hide) .header_container .preview,
body.nohide .email .header_container .preview,
body:not(.nohide) .email.hide .email {
display: none;
}
.email:not(.hide) .email_warning.show,
body:not(.nohide) .email.hide .header_container .preview {
display: block;
}
body:not(.nohide) .email:not(:only-of-type) .header_container,
body:not(.nohide) .email .email .header_container {
cursor: pointer;
}
.email:not(.hide) .header .field .value,
body.nohide .email .header .field .value {
cursor: auto;
}
body:not(.nohide) .email.hide .header {
padding: 0;
text-align: right;
}
body:not(.nohide) .email.hide .header .field {
display: inline;
margin-right: 2px;
text-align: left;
}
body:not(.nohide) .email.hide .header .field:not(:first-child) {
display: inline-block;
}
body:not(.nohide) .email.hide .header .field:not(.important),
body:not(.nohide) .email.hide .header .field .title {
display: none;
}
body:not(.nohide) .email.hide .header .field .value {
margin-left: 0;
}
body:not(.nohide) .email.hide .header .field .not_hidden_only,
.email:not(.hide) .header .field .hidden_only,
body.nohide .email .header .field .hidden_only {
display: none;
}
body:not(.nohide) .email.hide .header .field a {
pointer-events: none;
}
.email:not(.hide) .remote_images.show,
body.nohide .email .remote_images.show {
display: block;
}
body:not(.nohide) .email.compressed {
margin-top: -1px;
height: 10px;
}
body:not(.nohide) .email.compressed + .email {
margin-top: -1px;
}
body:not(.nohide) .compressed .email_container {
overflow: hidden;
display: none
}
body:not(.nohide) .compressed + .compressed + .compressed + .compressed + .compressed + .compressed + .compressed + .compressed + .compressed {
display:none;
}
}
.email .compressed_note {
text-align: center;
height: 0;
}
.email .compressed_note > span {
display: none;
padding: 0px 10px;
background-color: #f5f5f5;/* recv-collapsed */
position: relative;
cursor: hand;
}
.email.sent .compressed_note > span {
background-color: #f5f5f5;/* sent-collapsed */
}
body.nohide .email .compressed_note > span {
display: none !important;
}
.email .email {
box-shadow: none;
margin-top: 0;
border: none;
border-top: 1px rgba(0,0,0,0.4) solid;
background-color: white;/* recv-normal */
}
.email.sent .email {
background-color: white;/* sent-normal */
}
.email .email .email_container .menu,
.email .email .email_container .starred,
.email .email .email_container .unstarred {
display: none;
}
.email:not(.attachment) .attachment.icon {
display: none;
}
.email .header_container .attachment.icon {
float: right;
margin-top: 7px;
}
.email > .attachment_container {
padding-bottom: 10px;
}
.email > .attachment_container > .top_border {
border-bottom: 1px solid #aaa;
height: 10px;
margin: 0 16px 5px;
}
.email > .email + .attachment_container .top_border{
height: auto;
margin: 0;
}
.email > .attachment_container > .attachment {
margin: 10px 10px 0 10px;
padding: 2px;
overflow: hidden;
cursor: pointer;
border: 1px solid transparent;
border-radius: 4px;
display: inline;
}
.email > .attachment_container > .attachment:hover,
.email > .attachment_container > .attachment:active {
border-color: rgba(0,0,0,0.18);
box-shadow: inset 0px 0px 1px rgba(255,255,255,0.8);
}
.email > .attachment_container > .attachment:active {
padding: 3px 1px 1px 3px;
border-color: rgba(0,0,0,0.20);
background-color: rgba(0,0,0,0.05);
box-shadow: inset 0px 0px 2px rgba(0,0,0,0.05);
}
.email > .attachment_container > .attachment .preview {
width: 52px;
height: 52px;
text-align: center;
vertical-align: middle;
}
.email > .attachment_container > .attachment .preview img {
max-width: 50px;
max-height: 50px;
}
.email > .attachment_container > .attachment .preview .thumbnail {
border: 1px solid #999;
box-shadow: 0 0 5px #b8b8b8;
background-size: 16px 16px;
background-position:0 0, 8px 0, 8px -8px, 0px 8px;
}
.email > .attachment_container > .attachment:hover .preview .thumbnail {
background-image:
-webkit-linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%, transparent),
-webkit-linear-gradient(-45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%, transparent),
-webkit-linear-gradient(45deg, transparent 75%, rgba(0, 0, 0, 0.1) 75%),
-webkit-linear-gradient(-45deg, transparent 75%, rgba(0, 0, 0, 0.1) 75%);
}
.email > .attachment_container > .attachment .info {
vertical-align: middle;
padding-left: 5px;
}
.email > .attachment_container > .attachment .info > :not(.filename) {
color: #666;
}
.header {
overflow: hidden;
}
.header .field {
clear: both;
overflow: hidden;
font-size: 90%;
}
.header .field .title,
.header .field .value {
float: left;
padding: 2px 0;
}
.header .field .title {
width: 5em;
text-align: right;
padding-right: 7px;
color: #777;
position: absolute;
}
.header .field .value {
color: black;
margin-left: 5.25em;
max-height: 5em;
overflow-y: auto;
}
.header .field .value a {
color: black;
text-decoration: none;
}
.header .field.important .address_name {
font-weight: bold;
}
.header .field .address_value {
color: #777;
}
.geary_spacer {
display: table;
box-sizing: border-box;
-webkit-box-sizing: border-box;
width: 100% !important;
}
.signature {
color: #777;
display: inline;
}
.signature a,
.quote_container a {
color: #5fb2e7;
}
.quote_container {
position: relative;
margin: 5px 0;
padding: 12px;
color: #303030;
background-color: #e8e8e8;/* recv-quoted */
border-radius: 4px;
}
.quote_container .quote {
overflow: hidden;
position: relative;
z-index: 0;
}
body:not(.nohide) .quote_container.controllable .quote {
max-height: 80px;
}
body:not(.nohide) .quote_container.controllable.show .quote {
max-height: none;
}
.email.sent .quote_container {
background-color: #e8e8e8;/* sent-quoted */
}
.quote_container > .shower,
.quote_container > .hider {
position: absolute;
z-index: 1;
bottom: -7px;
left: 0;
right: 0;
display: none;
}
.quote_container > .shower > input,
.quote_container > .hider > input {
width: 100%;
height: 15px;
padding: 0;
font-size: 7px; /* Absolute size in pixels for graphics */
color: #888;
}
.quote_container > .shower:hover > input,
.quote_container > .hider:hover > input {
color: #000;
}
body:not(.nohide) .quote_container.controllable {
margin-bottom: 7px;
padding-bottom: 0;
}
body:not(.nohide) .quote_container.controllable.show {
padding-bottom: 12px;
}
body:not(.nohide) .quote_container.controllable > .shower {
display: block;
}
body:not(.nohide) .quote_container.controllable.show > .shower {
display: none;
}
body:not(.nohide) .quote_container.controllable.show > .hider {
display: block;
}
#message_container {
position: absolute;
left: 0;
right: 0;
padding: 0 15px 15px;
box-sizing: border-box;
min-height: 100%;
}
#multiple_messages {
display: none;
text-align: center;
}
#multiple_messages > .email {
margin: 100px auto;
display: inline-block;
width: auto;
padding: 15px;
}
#email_template,
#attachment_template,
#link_warning_template {
display: none;
}
blockquote {
margin: 5px 10px 5px 10px;
padding-left: 5px;
padding-right: 5px;
border: 0;
border-left: 3px #aaa solid;
}
.search_coloring *::selection {
background-color: #00ddff;
}
.draft_edit {
display: none;
margin: 16px;
text-align: right;
}
.draft_edit_button {
background-color: #e8e8e8;
}
#spinner {
display: none;
margin: 100px auto;
width: 128px;
}
/*
Spinner code from CSSload.net
License: http://cssload.net/en/terms_of_use
*/
#spinner #floatingCirclesG {
position:relative;
width:128px;
height:128px;
-webkit-transform:scale(0.6);
transform:scale(0.6);
}
#spinner .f_circleG {
position:absolute;
background-color:#FFFFFF;
height:23px;
width:23px;
-webkit-border-radius:12px;
-webkit-animation-name:f_fadeG;
-webkit-animation-duration:1.04s;
-webkit-animation-iteration-count:infinite;
-webkit-animation-direction:linear;
border-radius:12px;
animation-name:f_fadeG;
animation-duration:1.04s;
animation-iteration-count:infinite;
animation-direction:linear;
}
#spinner #frotateG_01 {
left:0;
top:52px;
-webkit-animation-delay:0.39s;
animation-delay:0.39s;
}
#spinner #frotateG_02 {
left:15px;
top:15px;
-webkit-animation-delay:0.52s;
animation-delay:0.52s;
}
#spinner #frotateG_03 {
left:52px;
top:0;
-webkit-animation-delay:0.65s;
animation-delay:0.65s;
}
#spinner #frotateG_04 {
right:15px;
top:15px;
-webkit-animation-delay:0.78s;
animation-delay:0.78s;
}
#spinner #frotateG_05 {
right:0;
top:52px;
-webkit-animation-delay:0.91s;
animation-delay:0.91s;
}
#spinner #frotateG_06 {
right:15px;
bottom:15px;
-webkit-animation-delay:1.04s;
animation-delay:1.04s;
}
#spinner #frotateG_07 {
left:52px;
bottom:0;
-moz-animation-delay:1.17s;
-webkit-animation-delay:1.17s;
-ms-animation-delay:1.17s;
-o-animation-delay:1.17s;
animation-delay:1.17s;
}
#spinner #frotateG_08 {
left:15px;
bottom:15px;
-moz-animation-delay:1.3s;
-webkit-animation-delay:1.3s;
-ms-animation-delay:1.3s;
-o-animation-delay:1.3s;
animation-delay:1.3s;
}
@-webkit-keyframes f_fadeG {
0% {
background-color:#000000
}
100% {
background-color:#FFFFFF
}
}
/* /Spinner */
|
uohCorpus.fil/uoh/uoh.filteredcorpus.txt_output/130-short-stories-extracted.txt.out.dict_333_jnu.html
|
sanskritiitd/sanskrit
|
url: http://sanskrit.jnu.ac.in/sandhi/viccheda.jsp?itext=अभ्यासोऽत्र<html>
<title>Sanskrit Sandhi Splitter at J.N.U. New Delhi</title>
<META CONTENT='text/hetml CHARSET=UTF-8' HTTP-EQUIV='Content-Type'/>
<META NAME="Author" CONTENT="Dr. Girish Nath Jha">
<META NAME="Keywords" CONTENT="Dr. Girish Nath Jha, Sachin, Diwakar Mishra, Sanskrit Computational Linguistics, Sanskrit informatics, Sanskrit computing, Sanskrit language processing, Sanskrit and computer, computer processing of sanskrit, subanta, tinanta, POS tagger, tagset, Indian languages, linguistics, amarakosha, amarakosa, Indian tradition, Indian heritage, Machine translation, AI, MT divergence, Sandhi, kridanta, taddhita, e-learning, corpus, etext, e-text, Sanskrit blog, Panini, Bhartrhari, Bhartrihari, Patanjali, karaka, mahabharata, ashtadhyayi, astadhyayi, indexer, indexing, lexical resources, Sanskrit, thesaurus, samasa, gender analysis in Sanskrit, Hindi, saHiT, language technology, NLP">
<META NAME="Description" CONTENT="Dr. Girish Nath Jha, Sachin, Diwakar Mishra, Sanskrit Computational Linguistics, Sanskrit informatics, Sanskrit computing, Sanskrit language processing, Sanskrit and computer, computer processing of sanskrit, subanta, tinanta, POS tagger, tagset, Indian languages, linguistics, amarakosha, amarakosa, Indian tradition, Indian heritage, Machine translation, AI, MT divergence, Sandhi, kridanta, taddhita, e-learning, corpus, etext, e-text, Sanskrit blog, Panini, Bhartrhari, Bhartrihari, Patanjali, karaka, mahabharata, ashtadhyayi, astadhyayi, indexer, indexing, lexical resources, Sanskrit, thesaurus, samasa, gender analysis in Sanskrit, Hindi, saHiT, language technology, NLP">
<head>
<head>
<style>
<!--
div.Section1
{page:Section1;}
-->
</style>
<head>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<script language="JavaScript" src=../js/menuitems.js></script>
<script language="JavaScript" src="../js/mm_menu.js"></script>
<meta name=Author content="Dr. Girish Nath Jha, JNU, New Delhi">
</head>
<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in'>
<div class=Section1>
<div align=center>
<table border=1 cellspacing=0 cellpadding=0 width=802 style='width:601.5pt;
border-collapse:collapse;border:none;mso-border-alt:outset navy .75pt'>
<tr>
<td width=800 style='width:600.0pt;border:inset navy .75pt;padding:.75pt .75pt .75pt .75pt'>
<script language="JavaScript1.2">mmLoadMenus();</script>
<img width=800 height=130 id="_x0000_i1028" src="../images/header1.jpg"
border=0>
</td>
</tr>
<tr>
<td width=818 style='width:613.5pt;border:inset navy .75pt;border-top:none;
mso-border-top-alt:inset navy .75pt;padding:.75pt .75pt .75pt .75pt'>
<p align="center"><a href="../"><span style='text-decoration:none;text-underline:
none'><img border=1 width=49 height=26 id="_x0000_i1037"
src="../images/backtohome.jpg"></span></a><span style='text-underline:
none'> </span><a href="javascript:;"
onmouseover="MM_showMenu(window.mm_menu_0821171051_0,6,29,null,'image2')"
onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline:
none'><img border=1 id=image2 src="../images/lang_tool.jpg"
name=image2 width="192" height="25"></span></a><span style='text-underline:
none'> </span><a href="javascript:;"
onmouseover="MM_showMenu(window.mm_menu_0821171909_0,6,29,null,'image3')"
onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline:
none'><img border=1 id=image3 src="../images/lexical.jpg"
name=image3 width="137" height="25"></span></a><span style='text-underline:
none'> </span><a href="javascript:;"
onmouseover="MM_showMenu(window.mm_menu_0821171609_0,6,29,null,'image1')"
onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline:
none'><img border=1 id=image1 src="../images/elearning.jpg"
name=image1 width="77" height="25"></span></a><span style='text-underline:
none'> </span><a href="javascript:;"
onmouseover="MM_showMenu(window.mm_menu_0821171809_0,6,29,null,'image4')"
onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline:
none'><img border=1 id=image4 src="../images/corpora.jpg"
name=image4 width="105" height="26"></span></a><span style='text-underline:
none'> </span><a href="javascript:;"
onmouseover="MM_showMenu(window.mm_menu_0821171709_0,6,29,null,'image5')"
onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline:
none'><img border=1 id=image5 src="../images/rstudents.jpg"
name=image5 width="125" height="26"></span></a><span style='text-underline:
none'> </span>
<a href="javascript:;"
onmouseover="MM_showMenu(window.mm_menu_0821171409_0,6,29,null,'image6')"
onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline:
none'><img border=1 id=image6 src="../images/feedback.jpg"
name=image6 width="80" height="25"></span></a><span style='text-underline:
none'> </span>
<!---
<a href="../user/feedback.jsp"><img border="1" src="../images/feedback.jpg" width="80" height="25"></a>
--->
</td>
</tr>
<tr>
<td width="800">
<p align="center"><font color="#FF9933"><span style='font-size:18.0pt;
'><b>Sanskrit Sandhi Recognizer and Analyzer</b></span></font></p>
The Sanskrit sandhi splitter (VOWEL SANDHI) was developed as part of M.Phil. research by <a href="mailto:sachin.jnu@gmail.com">Sachin Kumar</a> (M.Phil. 2005-2007), and <a href=mailto:diwakarmishra@gmail.com>Diwakar Mishra</a> (M.Phil. 2007-2009) under the supervision of <a href=http://www.jnu.ac.in/faculty/gnjha>Dr. Girish Nath Jha</a>. The coding for this application has been done by Dr. Girish Nath Jha and Diwakar Mishra. <!---Please send feedback to to <a href="mailto:girishj@mail.jnu.ac.in">Dr. Girish Nath Jha</A>--->The Devanagari input mechanism has been developed in Javascript by Satyendra Kumar Chaube, Dr. Girish Nath Jha and Dharm Singh Rathore.
</center>
<table border=0 width=100%>
<tr>
<td valign=top width=48%>
<table>
<tr>
<td>
<FORM METHOD=get ACTION=viccheda.jsp#results name="iform" accept-Charset="UTF-8">
<font size=2><b>Enter Sanskrit text for sandhi processing (संधि-विच्छेद हेतु पाठ्य दें)
using adjacent keyboard OR Use our inbuilt <a href=../js/itrans.html target=_blank>iTRANS</a>-Devanagari unicode converter for fast typing<br>
<a href=sandhitest.txt>examples</a>
<TEXTAREA name=itext COLS=40 ROWS=9 onkeypress=checkKeycode(event) onkeyup=iu()> अभ्यासोऽत्र</TEXTAREA>
</td>
</tr>
<tr>
<td>
<font color=red size=2>Run in debug mode</font>
<input type=checkbox name="debug" value="ON">
<br>
<input type=submit value="Click to sandhi-split (संधि-विच्छेद करें)"></span><br>
</td>
</tr>
</table>
</td>
<td valign=top width=52%>
<table>
<tr>
<td>
<head>
<SCRIPT language=JavaScript src="../js/devkb.js"></SCRIPT>
<head>
<TEXTAREA name=itrans rows=5 cols=10 style="display:none"></TEXTAREA>
<INPUT name=lastChar type=hidden>
<table border=2 style="background-color:#fff;">
<tbody>
<tr >
<td>
<input type=button name="btn" style="width: 24px" value="अ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="आ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="इ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ई" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="उ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ऊ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ए" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ऐ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ओ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="औ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="अं" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="अः" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ऍ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ऑ" onClick="keyboard(this.value)">
</td>
</tr>
<tr>
<td>
<input type=button name="btn" style="width: 24px" value="्" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ा" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ि" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ी" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ु" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ू" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="े" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ै" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ो" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ौ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ं" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ः" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ॅ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ॉ" onClick="keyboard(this.value)">
</td>
</tr>
<tr>
<td>
<input type=button name="btn" style="width: 24px" value="क" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ख" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ग" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="घ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ङ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="च" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="छ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ज" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="झ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ञ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 100px" value="Backspace" onClick="BackSpace()">
</td>
</tr>
<tr>
<td>
<input type=button name="btn" style="width: 24px" value="+" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ट" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ठ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ड" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ढ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ण" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="त" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="थ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="द" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ध" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="न" onClick="keyboard(this.value)">
</td>
</tr>
<tr>
<td>
<input type=button name="btn" style="width: 24px" value="/" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="प" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="फ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ब" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="भ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="म" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="य" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="र" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ल" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="व" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="।" onClick="keyboard(this.value)">
</td>
</tr>
<tr>
<td>
<input type=button name="btn" style="width: 24px" value="*" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="श" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ष" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="स" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="ऋ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ऌ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ृ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ॄ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="ह" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="">
<input type=button name="btn" style="width: 24px" value="॥" onClick="keyboard(this.value)">
</td>
</tr>
<tr>
<td>
<input type=button name="btn" style="width: 24px" value="त्र" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="ज्ञ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="क्ष" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="श्र" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 200px" value="Space Bar" onClick="Space()">
<input type=button name="btn" style="width: 24px" value="ँ" onClick="keyboard(this.value)">
<input type=button name="btn" style="width: 24px" value="़" onClick="keyboard(this.value)">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
</table>
</form>
<a name=results>
<font size=4><b><u>Results</u></b></font>
<br>
अभ्यासो अत्र (पूर्वरूपसन्धि, एङःपदान्तादति)<br>
<br>
<font color=red>
<br>
<hr>
<br>
</body>
</html>
|
uohCorpus.fil/uoh/uoh.filteredcorpus.txt_output/vyutpattivada-ext.txt.out.dict_17675_inr.html
|
sanskritiitd/sanskrit
|
url: http://sanskrit.inria.fr/cgi-bin/SKT/sktreader?t=VH;lex=SH;cache=f;st=t;us=f;cp=t;text=bodhastatreti;topic=;abs=f;allSol=2;mode=p;cpts=<!DOCTYPE html>
<html><head>
<meta charset="utf-8">
<title>Sanskrit Reader Companion</title>
<meta name="author" content="Gérard Huet">
<meta property="dc:datecopyrighted" content="2016">
<meta property="dc:rightsholder" content="Gérard Huet">
<meta name="keywords" content="dictionary,sanskrit,heritage,dictionnaire,sanscrit,india,inde,indology,linguistics,panini,digital humanities,cultural heritage,computational linguistics,hypertext lexicon">
<link rel="stylesheet" type="text/css" href="http://sanskrit.inria.fr/DICO/style.css" media="screen,tv">
<link rel="shortcut icon" href="http://sanskrit.inria.fr/IMAGES/favicon.ico">
<script type="text/javascript" src="http://sanskrit.inria.fr/DICO/utf82VH.js"></script>
</head>
<body class="chamois_back">
<br><h1 class="title">The Sanskrit Reader Companion</h1>
<table class="chamois_back" border="0" cellpadding="0%" cellspacing="15pt" width="100%">
<tr><td>
<p align="center">
<div class="latin16"><a class="green" href="/cgi-bin/SKT/sktgraph?t=VH;lex=SH;cache=f;st=t;us=f;cp=t;text=bodhastatreti;topic=;abs=f;cpts=;mode=g">✓</a> Show Summary of Solutions
</p>
Input:
<span class="red16">bodhastatreti</span><hr>
<br>
Sentence:
<span class="deva16" lang="sa">बोधस्तत्रेति</span><br>
may be analysed as:</div><br>
<hr>
<span class="blue">Solution 1 : <a class="green" href="/cgi-bin/SKT/sktparser?t=VH;lex=SH;cache=f;st=t;us=f;cp=t;text=bodhastatreti;topic=;abs=f;cpts=;mode=p;n=1">✓</a></span><br>
[ <span class="blue" title="0"><b>bodhaḥ</b></span><table class="deep_sky_back">
<tr><th><span class="latin12"><tr><th><span class="latin12">{ nom. sg. m. }[<a class="navy" href="http://sanskrit.inria.fr/DICO/46.html#bodha"><i>bodha</i></a>]</span></th></tr></span></th></tr></table>⟨⟩]
<br>
[ <span class="blue" title="5"><b>tatra</b></span><table class="mauve_back">
<tr><th><span class="latin12"><tr><th><span class="latin12">{ adv. }[<a class="navy" href="http://sanskrit.inria.fr/DICO/28.html#tatra"><i>tatra</i></a>]</span></th></tr></span></th></tr></table>⟨<span class="magenta">a</span><span class="green">|</span><span class="magenta">i</span><span class="blue"> → </span><span class="red">e</span>⟩]
<br>
[ <span class="blue" title="9"><b>iti</b></span><table class="mauve_back">
<tr><th><span class="latin12"><tr><th><span class="latin12">{ part. }[<a class="navy" href="http://sanskrit.inria.fr/DICO/11.html#iti"><i>iti</i></a>]</span></th></tr></span></th></tr></table>⟨⟩]
<br>
<br>
<hr>
<span class="magenta">1</span><span class="blue"> solution</span><span class="blue"> kept among </span><span class="magenta">1</span><br>
<br>
<hr>
<br>
<br>
</td></tr></table>
<table class="pad60">
<tr><td></td></tr></table>
<div class="enpied">
<table class="bandeau"><tr><td>
<a href="http://ocaml.org"><img src="http://sanskrit.inria.fr/IMAGES/ocaml.gif" alt="Le chameau Ocaml" height="50"></a>
</td><td>
<table class="center">
<tr><td>
<a href="http://sanskrit.inria.fr/index.fr.html"><b>Top</b></a> |
<a href="http://sanskrit.inria.fr/DICO/index.fr.html"><b>Index</b></a> |
<a href="http://sanskrit.inria.fr/DICO/index.fr.html#stemmer"><b>Stemmer</b></a> |
<a href="http://sanskrit.inria.fr/DICO/grammar.fr.html"><b>Grammar</b></a> |
<a href="http://sanskrit.inria.fr/DICO/sandhi.fr.html"><b>Sandhi</b></a> |
<a href="http://sanskrit.inria.fr/DICO/reader.fr.html"><b>Reader</b></a> |
<a href="http://sanskrit.inria.fr/faq.fr.html"><b>Help</b></a> |
<a href="http://sanskrit.inria.fr/portal.fr.html"><b>Portal</b></a>
</td></tr><tr><td>
© Gérard Huet 1994-2016</td></tr></table></td><td>
<a href="http://www.inria.fr/"><img src="http://sanskrit.inria.fr/IMAGES/logo_inria.png" alt="Logo Inria" height="50"></a>
<br></td></tr></table></div>
</body>
</html>
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.