code stringlengths 2 1.05M | repo_name stringlengths 5 101 | path stringlengths 4 991 | language stringclasses 3 values | license stringclasses 5 values | size int64 2 1.05M |
|---|---|---|---|---|---|
<header>不信任的 GID</header>
就像是 <a href=squash_uids>不信任的 UID</a>, 這個選項可以讓您指定客戶端上面的哪些群組編號要被當作<a href=anongid>不信任的群組</a>. 您可以輸入一個用逗號 ',' 隔開的列表, 例如 <tt>1,10,20-25,100-150</tt>.
<hr>
| webdev1001/webmin | hpuxexports/help/squash_gids.zh_TW.UTF-8.html | HTML | bsd-3-clause | 299 |
<!doctype html>
<html>
<meta charset="utf-8">
<title>Test SVGLength animation from px to pc.</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/SVGAnimationTestCase-testharness.js"></script>
<svg>
</svg>
<script>
var rootSVGElement = document.querySelector("svg");
var epsilon = 1.0;
// Setup test document
var rect = createSVGElement("rect");
rect.setAttribute("id", "rect");
rect.setAttribute("x", "0");
rect.setAttribute("width", "100");
rect.setAttribute("height", "100");
rect.setAttribute("fill", "green");
rect.setAttribute("onclick", "executeTest()");
var animate = createSVGElement("animate");
animate.setAttribute("id", "animation");
animate.setAttribute("attributeName", "width");
animate.setAttribute("begin", "0s");
animate.setAttribute("dur", "4s");
animate.setAttribute("from", "100px");
animate.setAttribute("to", "15pc");
rect.appendChild(animate);
rootSVGElement.appendChild(rect);
// Setup animation test
function sample1() {
// Check initial/end conditions
assert_approx_equals(rect.width.animVal.value, 100, epsilon);
assert_equals(rect.width.baseVal.value, 100);
}
function sample2() {
assert_approx_equals(rect.width.animVal.value, 170, epsilon);
assert_equals(rect.width.baseVal.value, 100);
}
function sample3() {
assert_approx_equals(rect.width.animVal.value, 240, epsilon);
assert_equals(rect.width.baseVal.value, 100);
}
smil_async_test((t) => {
const expectedValues = [
// [animationId, time, sampleCallback]
["animation", 0.0, sample1],
["animation", 2.0, sample2],
["animation", 3.999, sample3],
["animation", 4.001, sample1]
];
runAnimationTest(t, expectedValues);
});
</script> | chromium/chromium | third_party/blink/web_tests/external/wpt/svg/animations/svglength-animation-px-to-pc.html | HTML | bsd-3-clause | 1,791 |
{% extends "../question.html" %}
{% block content %}
<div class="govuk-grid-row">
<div class="govuk-grid-column-two-thirds">
<form method="post">
{{ govukRadios({
classes: "govuk-radios--inline",
idPrefix: "passport-today",
name: type + "[passportToday]",
fieldset: {
legend: {
text: "Have they brought their British passport today?",
isPageHeading: true,
classes: "govuk-fieldset__legend--l"
}
},
items: [
{
value: "yes",
text: "Yes",
checked: checked("['" + type + "'].passportToday", "yes")
},
{
value: "no",
text: "No",
checked: checked("['" + type + "'].passportToday", "yes")
}
]
}) }}
{{ govukButton({
text: "Continue"
}) }}
</form>
</div>
</div>
{% endblock %}
| dwpdigitaltech/hrt-prototype | app/views/prototypes/prototype/views/questions/british-passport-today.html | HTML | mit | 944 |
<html>
<!--
This test ensures the correctness of Spatial Navigation (SNav) algorithm over single select element.
* Pre-conditions:
1) DRT support for SNav enable/disable.
* Navigation steps:
1) Loads this page, focus goes to "start" automatically.
2) Focus moves away from select in 4 different directions to neighbor nodes and back.
-->
<head>
<script src="../../resources/js-test.js"></script>
<script src="resources/spatial-navigation-utils.js"></script>
<script type="application/javascript">
var resultMap = [
["Down", "8"],
["Up", "start"],
["Up", "2"],
["Down", "start"],
["Right", "6"],
["Left", "start"],
["Left", "4"],
["Right", "start"],
["DONE", "DONE"]
];
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.overridePreference("WebKitTabToLinksPreferenceKey", 1);
window.internals.settings.setSpatialNavigationEnabled(true);
testRunner.waitUntilDone();
}
function runTest()
{
// starting the test itself: get to a known place.
document.getElementById("start").focus();
initTest(resultMap, testCompleted);
}
function testCompleted()
{
if (window.testRunner)
testRunner.notifyDone();
}
window.onload = runTest;
</script>
</head>
<body id="some-content" xmlns="http://www.w3.org/1999/xhtml">
<table style="text-align: left; width: 100%; margin-left: auto; margin-right: auto;" border="1" cellpadding="2" cellspacing="1">
<tbody>
<tr>
<td style="vertical-align: top; text-align: center;"></td>
<td style="vertical-align: top; text-align: center;"><a id="2" href="a">2</a></td>
<td style="vertical-align: top; text-align: center;"></td>
</tr>
<tr>
<td style="vertical-align: top; text-align: center;"><a id="4" href="a">4</a></td>
<td style="vertical-align: top; text-align: center;"><input type="radio" id="start" ></td>
<td style="vertical-align: top; text-align: center;"><a id="6" href="a">6</a></td>
</tr>
<tr>
<td style="vertical-align: top; text-align: center;"></td>
<td style="vertical-align: top; text-align: center;"><a id="8" href="a">8</a></td>
<td style="vertical-align: top; text-align: center;"></td>
</tr>
</tbody>
</table>
<div id="console"></div>
</body>
</html>
| XiaosongWei/chromium-crosswalk | third_party/WebKit/LayoutTests/fast/spatial-navigation/snav-radio.html | HTML | bsd-3-clause | 2,477 |
<HTML>
<!--
Copyright (c) Jeremy Siek, Lie-Quan Lee, and Andrew Lumsdaine 2000
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
-->
<Head>
<Title>Boost Graph Library: Graph Traits</Title>
<BODY BGCOLOR="#ffffff" LINK="#0000ee" TEXT="#000000" VLINK="#551a8b"
ALINK="#ff0000">
<IMG SRC="../../../boost.png"
ALT="C++ Boost" width="277" height="86">
<BR Clear>
<H1><A NAME=""></A>
<pre>
graph_traits<<a href="./Graph.html">Graph</a>>
</pre>
</H1>
Just like the <a
href="http://www.sgi.com/tech/stl/iterator_traits.html">
iterators</a> of STL, graphs have <b>associated types</b>. As stated
in the various <a href="./graph_concepts.html">graph concepts</a>, a
graph has quite a few associated types: <tt>vertex_descriptor</tt>,
<tt>edge_descriptor</tt>, <tt>out_edge_iterator</tt>, etc.. Any
particular graph concepts will not require that all of the following
associated types be defined. When implementing a graph class that
fullfils one or more graph concepts, for associated types that are not
required by the concepts, it is ok to use <tt>void</tt> as the type
(when using nested typedefs inside the graph class), or to leave the
typedef out of the <tt>graph_traits</tt> specialization for the graph
class.
Note that because of the use of traits classes rather than member
types, it is not safe (and often will not work) to define subclasses of BGL
graph types; those types may be missing important traits and properties that
were defined externally to the class definition.
<pre>
template <typename Graph>
struct graph_traits {
typedef typename Graph::vertex_descriptor vertex_descriptor;
typedef typename Graph::edge_descriptor edge_descriptor;
typedef typename Graph::adjacency_iterator adjacency_iterator;
typedef typename Graph::out_edge_iterator out_edge_iterator;
typedef typename Graph::in_edge_iterator in_edge_iterator;
typedef typename Graph::vertex_iterator vertex_iterator;
typedef typename Graph::edge_iterator edge_iterator;
typedef typename Graph::directed_category directed_category;
typedef typename Graph::edge_parallel_category edge_parallel_category;
typedef typename Graph::traversal_category traversal_category;
typedef typename Graph::vertices_size_type vertices_size_type;
typedef typename Graph::edges_size_type edges_size_type;
typedef typename Graph::degree_size_type degree_size_type;
};
</pre>
<h3>Where Defined</h3>
<a href="../../../boost/graph/graph_traits.hpp"><tt>boost/graph/graph_traits.hpp</tt></a>
<H3>Template Parameters</H3>
<P>
<TABLE border>
<TR>
<th>Parameter</th><th>Description</th>
</tr>
<TR><TD><TT>Graph</TT></TD>
<TD>
The graph type whose associated types are being accessed.
</TD>
</TR>
</table>
<h3>Model of</h3>
<a
href="http://www.sgi.com/tech/stl/DefaultConstructible.html">DefaultConstructible</a> and
<a href="http://www.sgi.com/tech/stl/Assignable.html">Assignable</a>
<h3>Type Requirements</h3>
<ul>
<li><tt>Graph</tt> is a model of one of the <a
href="./graph_concepts.html">graph concepts</a>.
</ul>
<H2>Members</H2>
<p>
<table border>
<tr>
<th>Member</th><th>Description</th>
</tr>
<tr>
<td><tt>
vertex_descriptor
</tt></td>
<td>
The type for the objects used to identity vertices in the graph.
</td>
</tr>
<tr>
<td><tt>
edge_descriptor
</tt></td>
<td>
The type for the objects used to identity edges in the graph.
</td>
</tr>
<tr>
<td><tt>
adjacency_iterator
</tt></td>
<td>
The type for the iterators that traverse the vertices adjacent
to a vertex.
</td>
</tr>
<tr>
<td><tt>
out_edge_iterator
</tt></td>
<td>
The type for the iterators that traverse through the out-edges
of a vertex.
</td>
</tr>
<tr>
<td><tt>
in_edge_iterator
</tt></td>
<td>
The type for the iterators that traverse through the in-edges
of a vertex.
</td>
</tr>
<tr>
<td><tt>
vertex_iterator
</tt></td>
<td>
The type for the iterators that traverse through the complete vertex
set of the graph.
</td>
</tr>
<tr>
<td><tt>
edge_iterator
</tt></td>
<td>
The type for the iterators that traverse through the complete edge
set of the graph.
</td>
</tr>
<tr>
<td><tt>
directed_category
</tt></td>
<td>
This says whether the graph is undirected (<tt>undirected_tag</tt>)
or directed (<tt>directed_tag</tt>).
</td>
</tr>
<tr>
<td><tt>
edge_parallel_category
</tt></td>
<td>
This says whether the graph allows parallel edges to be inserted
(<tt>allow_parallel_edge_tag</tt>) or if it automatically removes
parallel edges (<tt>disallow_parallel_edge_tag</tt>).
</td>
</tr>
<tr>
<td><tt>
traversal_category
</tt></td>
<td>
The ways in which the vertices in the graph can be traversed.
The traversal category tags are:
<tt>incidence_graph_tag, adjacency_graph_tag,
bidirectional_graph_tag, vertex_list_graph_tag,
edge_list_graph_tag, vertex_and_edge_list_graph_tag,
adjacency_matrix_tag</tt>. You can also create your own
tag which should inherit from one of the above.
</td>
</tr>
<tr>
<td><tt>
vertices_size_type
</tt></td>
<td>
The unsigned integer type used for representing the number of
vertices in the graph.
</td>
</tr>
<tr>
<td><tt>
edge_size_type
</tt></td>
<td>
The unsigned integer type used for representing the number of
edge in the graph.
</td>
</tr>
<tr>
<td><tt>
degree_size_type
</tt></td>
<td>
The unsigned integer type used for representing the degree
of vertices in the graph.
</td>
</tr>
</table>
<br>
<HR>
<TABLE>
<TR valign=top>
<TD nowrap>Copyright © 2000-2001</TD><TD>
<A HREF="http://www.boost.org/people/jeremy_siek.htm">Jeremy Siek</A>,
Indiana University (<A
HREF="mailto:jsiek@osl.iu.edu">jsiek@osl.iu.edu</A>)<br>
<A HREF="http://www.boost.org/people/liequan_lee.htm">Lie-Quan Lee</A>, Indiana University (<A HREF="mailto:llee@cs.indiana.edu">llee@cs.indiana.edu</A>)<br>
<A HREF="http://www.osl.iu.edu/~lums">Andrew Lumsdaine</A>,
Indiana University (<A
HREF="mailto:lums@osl.iu.edu">lums@osl.iu.edu</A>)
</TD></TR></TABLE>
</BODY>
</HTML>
| NixaSoftware/CVis | venv/bin/libs/graph/doc/graph_traits.html | HTML | apache-2.0 | 6,125 |
<!doctype html>
<meta charset=utf-8>
<title>input type=date and input type=datetime handle focus state correctly</title>
<link rel="help" href="https://html.spec.whatwg.org/multipage/input.html#time-state-(type=time)">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1450219">
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="author" title="Mozilla" href="https://mozilla.org">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<input type="time">
<input type="text">
<script>
let t = async_test("Time input handles focus correctly when value changes");
window.onload = t.step_func_done(function() {
let time = document.querySelector("input[type=time]");
let text = document.querySelector("input[type=text]");
time.focus();
assert_true(time.matches(":focus"));
assert_equals(document.activeElement, time);
time.value = "08:10:10";
assert_true(time.matches(":focus"));
assert_equals(document.activeElement, time);
time.value = "08:10";
assert_true(time.matches(":focus"));
assert_equals(document.activeElement, time);
text.focus();
assert_true(text.matches(":focus"));
assert_false(time.matches(":focus"));
assert_equals(document.activeElement, text);
});
</script>
| chromium/chromium | third_party/blink/web_tests/external/wpt/html/semantics/forms/the-input-element/time-focus-dynamic-value-change.html | HTML | bsd-3-clause | 1,314 |
<div class="umb-panel" ng-controller="Umbraco.Dialogs.LinkPickerController">
<div class="umb-panel-body no-header with-footer compact">
<umb-pane>
<umb-control-group label="@content_urls">
<input type="text"
localize="placeholder"
placeholder="@general_url"
class="umb-editor umb-textstring"
ng-model="target.url"
ng-disabled="target.id"
/>
</umb-control-group>
<umb-control-group label="@content_nodeName">
<input type="text"
localize="placeholder"
placeholder="@placeholders_entername"
class="umb-editor umb-textstring"
ng-model="target.name" />
</umb-control-group>
<umb-control-group label="@content_target">
<select class="umb-editor umb-dropdown" ng-model="target.target">
<option value=""></option>
<option value="_blank">Opens the linked document in a new window or tab</option>
<option value="_top">Opens the linked document in the full body of the window</option>
<option value="_parent">Opens the linked document in the parent frame</option>
</select>
</umb-control-group>
</umb-pane>
<umb-tree-search-box hide-search-callback="hideSearch"
search-callback="onSearchResults"
search-from-id="{{searchInfo.searchFromId}}"
search-from-name="{{searchInfo.searchFromName}}"
show-search="{{searchInfo.showSearch}}"
section="{{section}}">
</umb-tree-search-box>
<br/>
<umb-tree-search-results ng-if="searchInfo.showSearch"
results="searchInfo.results"
select-result-callback="selectResult">
</umb-tree-search-results>
<div ng-hide="searchInfo.showSearch">
<umb-tree section="content"
hideheader="true"
hideoptions="true"
eventhandler="dialogTreeEventHandler"
isdialog="true"
enablecheckboxes="true">
</umb-tree>
</div>
</div>
<div class="umb-panel-footer">
<div class="umb-el-wrap umb-panel-buttons">
<div class="btn-toolbar umb-btn-toolbar pull-right">
<a href ng-click="close()" class="btn btn-link">
<localize key="general_cancel">Cancel</localize>
</a>
<a href ng-click="switchToMediaPicker()" class="btn">Link to file</a>
<button
class="btn btn-primary"
ng-click="submit(target)">
<localize key="buttons_select">Select</localize>
</button>
</div>
</div>
</div>
</div> | qizhiyu/Umbraco-CMS | src/Umbraco.Web.UI.Client/src/views/common/dialogs/linkpicker.html | HTML | mit | 2,776 |
<!DOCTYPE html>
<html>
<head>
<script src="../resources/event-sender-util.js"></script>
<script src="../../../resources/js-test.js"></script>
</head>
<body>
<div id="host"></div>
<pre id="console"></pre>
<script>
function createBox(name) {
var div = document.createElement('div');
div.style.width = '100px';
div.style.height = '100px';
div.addEventListener('drop', function(e) {
debug('PASS: drop event is fired.');
});
return div;
}
var shadowRoot = host.createShadowRoot();
var div = document.createElement('div');
shadowRoot.appendChild(div);
var darkRoot = div.createShadowRoot();
var box = createBox('dark');
darkRoot.appendChild(box);
var x = box.offsetLeft + box.offsetWidth / 2;
var y = box.offsetTop + box.offsetHeight / 2;
var range = document.caretRangeFromPoint(x, y);
shouldBe("internals.treeScopeRootNode(range.startContainer)", "document");
shouldBe("internals.treeScopeRootNode(range.endContainer)", "document");
var successfullyParsed = true;
</script>
</body>
</html>
| axinging/chromium-crosswalk | third_party/WebKit/LayoutTests/fast/dom/shadow/caret-range-from-point-in-nested-shadow.html | HTML | bsd-3-clause | 1,029 |
<?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-loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>HTML Purifier All Elements Smoketest</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="allElements.css" type="text/css" />
</head>
<body>
<h1>HTML Purifier All Elements Smoketest</h1>
<p>This is the all elements smoke
test. It is divided by XHTML 1.1 style modules. Make sure
<code>div</code>, <code>span</code> and <code>id</code> are allowed,
otherwise there will be problems.</p>
<h2>Core attributes</h2>
<div id="core-attributes">
<div id="core-attributes-id">id</div>
<div class="core-attributes-class">class</div>
<div title="tooltip">title</div>
<div lang="en">lang</div>
<div xml:lang="en">xml:lang (green when lang also present)</div>
<div style="background:#008000">style</div>
<div onclick="alert('foo');">onclick (and other event handlers)</div>
</div>
<h2>Text module</h2>
<div id="module-text">
<abbr>abbr</abbr>
<acronym>acronym</acronym>
<div><blockquote>blockquote</blockquote></div>
<blockquote cite="http://www.example.com">blockquote@cite</blockquote>
<br />
<cite>cite</cite>
<code>code</code>
<dfn>dfn</dfn>
<em>em</em>
<h1>h1</h1>
<h2>h2</h2>
<h3>h3</h3>
<h4>h4</h4>
<h5>h5</h5>
<h6>h6</h6>
<kbd>kbd</kbd>
<p>p</p>
<pre>pre</pre>
<span><q>q</q></span>
<q cite="http://www.example.com">q@cite</q>
<samp>samp</samp>
<strong>strong</strong>
<var>var</var>
</div>
<h2>Hypertext module</h2>
<div id="module-hypertext">
<span><a>a</a></span>:
<a accesskey="q">accesskey</a>
<a charset="UTF-8">charset</a>
<a href="http://www.example.com/">href</a>
<a hreflang="en">hreflang</a>
<a rel="nofollow">rel</a>
<a rev="index">rev</a>
<a tabindex="1">tabindex</a>
<a type="text/plain">type</a>
</div>
<h2>List module</h2>
<div id="module-list">
<dl><dt>dl dt</dt><dd>dl dd</dd></dl>
<ol><li>ol li</li></ol>
<ul><li>ul li</li></ul>
</div>
</body>
</html>
<!-- vim: et sw=4 sts=4
-->
| codekissyoung/filmfest | yii2/vendor/ezyang/htmlpurifier/smoketests/basic/allElements.html | HTML | apache-2.0 | 2,148 |
<template name="adminStatistics">
<section class="page-container page-list">
<head class="fixed-title">
{{> burger}}
<h2>
<span class="room-title">{{_ "Statistics"}}</span>
</h2>
</head>
<div class="content">
{{#unless hasPermission 'view-statistics'}}
<p>You are not authorized to view this page.</p>
{{else}}
{{#if isReady}}
<table class="statistics-table">
<tr>
<th>{{_ "Stats_Total_Users"}}</th>
<td>{{statistics.totalUsers}}</td>
</tr>
<tr>
<th>{{_ "Stats_Active_Users"}}</th>
<td>{{statistics.activeUsers}}</td>
</tr>
<tr>
<th>{{_ "Stats_Non_Active_Users"}}</th>
<td>{{statistics.nonActiveUsers}}</td>
</tr>
<tr>
<th>{{_ "Stats_Online_Users"}}</th>
<td>{{statistics.onlineUsers}}</td>
</tr>
<tr>
<th>{{_ "Stats_Away_Users"}}</th>
<td>{{statistics.awayUsers}}</td>
</tr>
<tr>
<th>{{_ "Stats_Offline_Users"}}</th>
<td>{{statistics.offlineUsers}}</td>
</tr>
<tr>
<th>{{_ "Stats_Total_Rooms"}}</th>
<td>{{statistics.totalRooms}}</td>
</tr>
<tr>
<th>{{_ "Stats_Total_Channels"}}</th>
<td>{{statistics.totalChannels}}</td>
</tr>
<tr>
<th>{{_ "Stats_Total_Private_Groups"}}</th>
<td>{{statistics.totalPrivateGroups}}</td>
</tr>
<tr>
<th>{{_ "Stats_Total_Direct_Messages"}}</th>
<td>{{statistics.totalDirect}}</td>
</tr>
<tr>
<th>{{_ "Stats_Total_Messages"}}</th>
<td>{{statistics.totalMessages}}</td>
</tr>
<tr>
<th>{{_ "Stats_Max_Room_Users"}}</th>
<td>{{statistics.maxRoomUsers}}</td>
</tr>
<tr>
<th>{{_ "Stats_Avg_Channel_Users"}}</th>
<td>{{numFormat statistics.avgChannelUsers}}</td>
</tr>
<tr>
<th>{{_ "Stats_Avg_Private_Group_Users"}}</th>
<td>{{numFormat statistics.avgPrivateGroupUsers}}</td>
</tr>
<tr>
<th>{{_ "Stats_OS_Type"}}</th>
<td>{{statistics.os.type}}</td>
</tr>
<tr>
<th>{{_ "Stats_OS_Platform"}}</th>
<td>{{statistics.os.platform}}</td>
</tr>
<tr>
<th>{{_ "Stats_OS_Arch"}}</th>
<td>{{statistics.os.arch}}</td>
</tr>
<tr>
<th>{{_ "Stats_OS_Release"}}</th>
<td>{{statistics.os.release}}</td>
</tr>
<tr>
<th>{{_ "Stats_OS_Uptime"}}</th>
<td>{{humanReadable statistics.os.uptime}}</td>
</tr>
<tr>
<th>{{_ "Stats_OS_Loadavg"}}</th>
<td>{{numFormat statistics.os.loadavg.[0]}}, {{numFormat statistics.os.loadavg.[1]}}, {{numFormat statistics.os.loadavg.[2]}}</td>
</tr>
<tr>
<th>{{_ "Stats_OS_Totalmem"}}</th>
<td>{{inGB statistics.os.totalmem}}</td>
</tr>
<tr>
<th>{{_ "Stats_OS_Freemem"}}</th>
<td>{{inGB statistics.os.freemem}}</td>
</tr>
<tr>
<th>{{_ "Stats_OS_Cpus"}}</th>
<td>{{statistics.os.cpus.length}}</td>
</tr>
</table>
{{else}}
{{_ "Please_wait_statistics"}}
{{/if}}
{{/unless}}
<div style="margin: 30px 0">
<label for="opt-out-statistics"><input type="checkbox" value="1" name="opt-out-statistics" id="opt-out-statistics" checked="{{optOut}}"> {{_ "Opt_out_statistics"}}</label>
<div id="opt-out-warning" class="alert-warning" style="margin-top: 10px; padding: 10px;">
{{_ "Opt_out_statistics_warning"}}
</div>
</div>
</div>
</section>
</template> | jonathanhartman/Rocket.Chat | packages/rocketchat-ui-admin/admin/adminStatistics.html | HTML | mit | 3,560 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="shortcut icon" type="image/ico" href="http://www.datatables.net/favicon.ico">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=2.0">
<title>DataTables example - Custom HTTP variables</title>
<link rel="stylesheet" type="text/css" href="../../media/css/jquery.dataTables.css">
<link rel="stylesheet" type="text/css" href="../resources/syntax/shCore.css">
<link rel="stylesheet" type="text/css" href="../resources/demo.css">
<style type="text/css" class="init">
</style>
<script type="text/javascript" language="javascript" src="//code.jquery.com/jquery-1.12.3.min.js">
</script>
<script type="text/javascript" language="javascript" src="../../media/js/jquery.dataTables.js">
</script>
<script type="text/javascript" language="javascript" src="../resources/syntax/shCore.js">
</script>
<script type="text/javascript" language="javascript" src="../resources/demo.js">
</script>
<script type="text/javascript" language="javascript" class="init">
$(document).ready(function() {
$('#example').DataTable( {
"processing": true,
"serverSide": true,
"ajax": {
"url": "scripts/server_processing.php",
"data": function ( d ) {
d.myKey = "myValue";
// d.custom = $('#myInput').val();
// etc
}
}
} );
} );
</script>
</head>
<body class="dt-example">
<div class="container">
<section>
<h1>DataTables example <span>Custom HTTP variables</span></h1>
<div class="info">
<p>It can often be useful to send extra information to the server when utilising DataTables' server-side processing option. This is done by using the <a href=
"//datatables.net/reference/option/ajax.data"><code class="option" title="DataTables initialisation option">ajax.data</code></a> option which can be used in one of
two different ways:</p>
<ul class="markdown">
<li><code>object</code> - An object data to send to the server. This is useful for adding static data to the request.</li>
<li><code>function</code> - A function which will manipulate the data object to send to the server, adding values as required. Using the <code>data</code>
parameter as a function allows the additional data to evaluated and added to the request at the time the request is made.</li>
</ul>
<p>The example below shows server-side processing being used with an extra parameter being sent to the server by using the <code>ajax.data</code> option as a
function.</p>
</div>
<table id="example" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>First name</th>
<th>Last name</th>
<th>Position</th>
<th>Office</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</thead>
<tfoot>
<tr>
<th>First name</th>
<th>Last name</th>
<th>Position</th>
<th>Office</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</tfoot>
</table>
<ul class="tabs">
<li class="active">Javascript</li>
<li>HTML</li>
<li>CSS</li>
<li>Ajax</li>
<li>Server-side script</li>
</ul>
<div class="tabs">
<div class="js">
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
$('#example').DataTable( {
"processing": true,
"serverSide": true,
"ajax": {
"url": "scripts/server_processing.php",
"data": function ( d ) {
d.myKey = "myValue";
// d.custom = $('#myInput').val();
// etc
}
}
} );
} );</code>
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
<ul>
<li>
<a href="//code.jquery.com/jquery-1.12.3.min.js">//code.jquery.com/jquery-1.12.3.min.js</a>
</li>
<li>
<a href="../../media/js/jquery.dataTables.js">../../media/js/jquery.dataTables.js</a>
</li>
</ul>
</div>
<div class="table">
<p>The HTML shown below is the raw HTML table element, before it has been enhanced by DataTables:</p>
</div>
<div class="css">
<div>
<p>This example uses a little bit of additional CSS beyond what is loaded from the library files (below), in order to correctly display the table. The
additional CSS used is shown below:</p><code class="multiline language-css"></code>
</div>
<p>The following CSS library files are loaded for use in this example to provide the styling of the table:</p>
<ul>
<li>
<a href="../../media/css/jquery.dataTables.css">../../media/css/jquery.dataTables.css</a>
</li>
</ul>
</div>
<div class="ajax">
<p>This table loads data by Ajax. The latest data that has been loaded is shown below. This data will update automatically as any additional data is
loaded.</p>
</div>
<div class="php">
<p>The script used to perform the server-side processing for this table is shown below. Please note that this is just an example script using PHP. Server-side
processing scripts can be written in any language, using <a href="//datatables.net/manual/server-side">the protocol described in the DataTables
documentation</a>.</p>
</div>
</div>
</section>
</div>
<section>
<div class="footer">
<div class="gradient"></div>
<div class="liner">
<h2>Other examples</h2>
<div class="toc">
<div class="toc-group">
<h3><a href="../basic_init/index.html">Basic initialisation</a></h3>
<ul class="toc">
<li>
<a href="../basic_init/zero_configuration.html">Zero configuration</a>
</li>
<li>
<a href="../basic_init/filter_only.html">Feature enable / disable</a>
</li>
<li>
<a href="../basic_init/table_sorting.html">Default ordering (sorting)</a>
</li>
<li>
<a href="../basic_init/multi_col_sort.html">Multi-column ordering</a>
</li>
<li>
<a href="../basic_init/multiple_tables.html">Multiple tables</a>
</li>
<li>
<a href="../basic_init/hidden_columns.html">Hidden columns</a>
</li>
<li>
<a href="../basic_init/complex_header.html">Complex headers (rowspan and colspan)</a>
</li>
<li>
<a href="../basic_init/dom.html">DOM positioning</a>
</li>
<li>
<a href="../basic_init/flexible_width.html">Flexible table width</a>
</li>
<li>
<a href="../basic_init/state_save.html">State saving</a>
</li>
<li>
<a href="../basic_init/alt_pagination.html">Alternative pagination</a>
</li>
<li>
<a href="../basic_init/scroll_y.html">Scroll - vertical</a>
</li>
<li>
<a href="../basic_init/scroll_y_dynamic.html">Scroll - vertical, dynamic height</a>
</li>
<li>
<a href="../basic_init/scroll_x.html">Scroll - horizontal</a>
</li>
<li>
<a href="../basic_init/scroll_xy.html">Scroll - horizontal and vertical</a>
</li>
<li>
<a href="../basic_init/comma-decimal.html">Language - Comma decimal place</a>
</li>
<li>
<a href="../basic_init/language.html">Language options</a>
</li>
</ul>
</div>
<div class="toc-group">
<h3><a href="../advanced_init/index.html">Advanced initialisation</a></h3>
<ul class="toc">
<li>
<a href="../advanced_init/events_live.html">DOM / jQuery events</a>
</li>
<li>
<a href="../advanced_init/dt_events.html">DataTables events</a>
</li>
<li>
<a href="../advanced_init/column_render.html">Column rendering</a>
</li>
<li>
<a href="../advanced_init/length_menu.html">Page length options</a>
</li>
<li>
<a href="../advanced_init/dom_multiple_elements.html">Multiple table control elements</a>
</li>
<li>
<a href="../advanced_init/complex_header.html">Complex headers with column visibility</a>
</li>
<li>
<a href="../advanced_init/object_dom_read.html">Read HTML to data objects</a>
</li>
<li>
<a href="../advanced_init/html5-data-options.html">HTML5 data-* attributes - table options</a>
</li>
<li>
<a href="../advanced_init/html5-data-attributes.html">HTML5 data-* attributes - cell data</a>
</li>
<li>
<a href="../advanced_init/language_file.html">Language file</a>
</li>
<li>
<a href="../advanced_init/defaults.html">Setting defaults</a>
</li>
<li>
<a href="../advanced_init/row_callback.html">Row created callback</a>
</li>
<li>
<a href="../advanced_init/row_grouping.html">Row grouping</a>
</li>
<li>
<a href="../advanced_init/footer_callback.html">Footer callback</a>
</li>
<li>
<a href="../advanced_init/dom_toolbar.html">Custom toolbar elements</a>
</li>
<li>
<a href="../advanced_init/sort_direction_control.html">Order direction sequence control</a>
</li>
</ul>
</div>
<div class="toc-group">
<h3><a href="../styling/index.html">Styling</a></h3>
<ul class="toc">
<li>
<a href="../styling/display.html">Base style</a>
</li>
<li>
<a href="../styling/no-classes.html">Base style - no styling classes</a>
</li>
<li>
<a href="../styling/cell-border.html">Base style - cell borders</a>
</li>
<li>
<a href="../styling/compact.html">Base style - compact</a>
</li>
<li>
<a href="../styling/hover.html">Base style - hover</a>
</li>
<li>
<a href="../styling/order-column.html">Base style - order-column</a>
</li>
<li>
<a href="../styling/row-border.html">Base style - row borders</a>
</li>
<li>
<a href="../styling/stripe.html">Base style - stripe</a>
</li>
<li>
<a href="../styling/bootstrap.html">Bootstrap 3</a>
</li>
<li>
<a href="../styling/foundation.html">Foundation</a>
</li>
<li>
<a href="../styling/jqueryUI.html">jQuery UI ThemeRoller</a>
</li>
<li>
<a href="../styling/bootstrap4.html">Bootstrap 4 (Tech. preview)</a>
</li>
<li>
<a href="../styling/semanticui.html">Semantic UI (Tech. preview)</a>
</li>
<li>
<a href="../styling/material.html">Material Design (Tech. preview)</a>
</li>
<li>
<a href="../styling/uikit.html">UIKit (Tech. preview)</a>
</li>
</ul>
</div>
<div class="toc-group">
<h3><a href="../data_sources/index.html">Data sources</a></h3>
<ul class="toc">
<li>
<a href="../data_sources/dom.html">HTML (DOM) sourced data</a>
</li>
<li>
<a href="../data_sources/ajax.html">Ajax sourced data</a>
</li>
<li>
<a href="../data_sources/js_array.html">Javascript sourced data</a>
</li>
<li>
<a href="../data_sources/server_side.html">Server-side processing</a>
</li>
</ul>
</div>
<div class="toc-group">
<h3><a href="../api/index.html">API</a></h3>
<ul class="toc">
<li>
<a href="../api/add_row.html">Add rows</a>
</li>
<li>
<a href="../api/multi_filter.html">Individual column searching (text inputs)</a>
</li>
<li>
<a href="../api/multi_filter_select.html">Individual column searching (select inputs)</a>
</li>
<li>
<a href="../api/highlight.html">Highlighting rows and columns</a>
</li>
<li>
<a href="../api/row_details.html">Child rows (show extra / detailed information)</a>
</li>
<li>
<a href="../api/select_row.html">Row selection (multiple rows)</a>
</li>
<li>
<a href="../api/select_single_row.html">Row selection and deletion (single row)</a>
</li>
<li>
<a href="../api/form.html">Form inputs</a>
</li>
<li>
<a href="../api/counter_columns.html">Index column</a>
</li>
<li>
<a href="../api/show_hide.html">Show / hide columns dynamically</a>
</li>
<li>
<a href="../api/api_in_init.html">Using API in callbacks</a>
</li>
<li>
<a href="../api/tabs_and_scrolling.html">Scrolling and Bootstrap tabs</a>
</li>
<li>
<a href="../api/regex.html">Search API (regular expressions)</a>
</li>
</ul>
</div>
<div class="toc-group">
<h3><a href="../ajax/index.html">Ajax</a></h3>
<ul class="toc">
<li>
<a href="../ajax/simple.html">Ajax data source (arrays)</a>
</li>
<li>
<a href="../ajax/objects.html">Ajax data source (objects)</a>
</li>
<li>
<a href="../ajax/deep.html">Nested object data (objects)</a>
</li>
<li>
<a href="../ajax/objects_subarrays.html">Nested object data (arrays)</a>
</li>
<li>
<a href="../ajax/orthogonal-data.html">Orthogonal data</a>
</li>
<li>
<a href="../ajax/null_data_source.html">Generated content for a column</a>
</li>
<li>
<a href="../ajax/custom_data_property.html">Custom data source property</a>
</li>
<li>
<a href="../ajax/custom_data_flat.html">Flat array data source</a>
</li>
<li>
<a href="../ajax/defer_render.html">Deferred rendering for speed</a>
</li>
</ul>
</div>
<div class="toc-group">
<h3><a href="./index.html">Server-side</a></h3>
<ul class="toc active">
<li>
<a href="./simple.html">Server-side processing</a>
</li>
<li class="active">
<a href="./custom_vars.html">Custom HTTP variables</a>
</li>
<li>
<a href="./post.html">POST data</a>
</li>
<li>
<a href="./ids.html">Automatic addition of row ID attributes</a>
</li>
<li>
<a href="./object_data.html">Object data source</a>
</li>
<li>
<a href="./row_details.html">Row details</a>
</li>
<li>
<a href="./select_rows.html">Row selection</a>
</li>
<li>
<a href="./jsonp.html">JSONP data source for remote domains</a>
</li>
<li>
<a href="./defer_loading.html">Deferred loading of data</a>
</li>
<li>
<a href="./pipeline.html">Pipelining data to reduce Ajax calls for paging</a>
</li>
</ul>
</div>
<div class="toc-group">
<h3><a href="../plug-ins/index.html">Plug-ins</a></h3>
<ul class="toc">
<li>
<a href="../plug-ins/api.html">API plug-in methods</a>
</li>
<li>
<a href="../plug-ins/sorting_auto.html">Ordering plug-ins (with type detection)</a>
</li>
<li>
<a href="../plug-ins/sorting_manual.html">Ordering plug-ins (no type detection)</a>
</li>
<li>
<a href="../plug-ins/range_filtering.html">Custom filtering - range search</a>
</li>
<li>
<a href="../plug-ins/dom_sort.html">Live DOM ordering</a>
</li>
</ul>
</div>
</div>
<div class="epilogue">
<p>Please refer to the <a href="http://www.datatables.net">DataTables documentation</a> for full information about its API properties and methods.<br>
Additionally, there are a wide range of <a href="http://www.datatables.net/extensions">extensions</a> and <a href=
"http://www.datatables.net/plug-ins">plug-ins</a> which extend the capabilities of DataTables.</p>
<p class="copyright">DataTables designed and created by <a href="http://www.sprymedia.co.uk">SpryMedia Ltd</a> © 2007-2016<br>
DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p>
</div>
</div>
</div>
</section>
</body>
</html> | deduar/SGTT | web/bundles/web/temacsgwebapp/third/DataTables/examples/server_side/custom_vars.html | HTML | mit | 16,219 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
li, a {
display: inline;
float: left;
font-family: Tunga;
font-size: 12px;
border: 1px solid black;
}
div {
clear: both;
}
</style>
</head>
<body>
<ul>
<li><a href="#">ಅಡುಗೆ-ಆಹಾರ </a></li>
</ul>
<div> </div>
<p>
Complex text with trailing space test.
<br>
Element above should not wrap and should render the same when
forced to use the complex path.
</p>
</body>
</html>
| scheib/chromium | third_party/blink/web_tests/virtual/text-antialias/international/complex-text-trailing-space.html | HTML | bsd-3-clause | 601 |
<!DOCTYPE html>
<html>
<head>
<script src="/js-test-resources/js-test.js"></script>
</head>
<body>
<div id="description"></div>
<div id="console"></div>
<script type="text/javascript">
description("Verify firing error event behaviors in Worker.");
window.jsTestIsAsync = true;
var worker = startWorker("resources/connect-error-by-no-websocket-server-noclose.js");
</script>
</body>
</html>
| scheib/chromium | third_party/blink/web_tests/http/tests/websocket/workers/connect-error-by-no-websocket-server-noclose.html | HTML | bsd-3-clause | 393 |
<!DOCTYPE html>
<html>
<head>
<title>Floats layout performance tester with 2 columns and 100 rows</title>
<link rel="stylesheet" href="resources/floats.css" TYPE="text/css"></link>
<script src="../resources/runner.js"></script>
<script src="resources/floats.js"></script>
</head>
<body>
<pre id="log"></pre>
<script>
PerfTestRunner.measureTime({
description: "Measures performance of a float layout with 1 row containing 100x100 floats.",
run: createFloatsLayoutTestFunction(100, 100, 0, 3, 1)
});
</script>
</body>
</html>
| scheib/chromium | third_party/blink/perf_tests/layout/floats_100_100.html | HTML | bsd-3-clause | 652 |
<style>
::-webkit-input-placeholder {
color: green;
}
</style>
<body>
<div>
<span style="font-size: xx-large;">T</span>he first letter in this sentence should be larger than the rest.
</div>
<div id="first-line" style="font-size: xx-large;">
This sentence should be extra-extra-large.
</div>
<input type="search" placeholder="This should be green">
</body>
| scheib/chromium | third_party/blink/web_tests/fast/css/pseudo-cache-stale-expected.html | HTML | bsd-3-clause | 397 |
<div id="a" tabindex="1">PASS</div>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
}
var a = document.getElementById('a');
a.removeAttribute('tabindex');
a.addEventListener('focus', function (e) {
a.innerText = 'FAIL';
}, false);
a.focus();
</script>
| chromium/chromium | third_party/blink/web_tests/fast/html/tabindex-removal.html | HTML | bsd-3-clause | 308 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"><html><head><title>CSS1 Test Suite: 1.1 Containment in HTML</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Style-Type" content="text/css">
<link rel="stylesheet" type="text/css" media="screen" href="../resources/base.css">
<link rel="stylesheet" type="text/css" href="../resources/linktest.css" title="Default SS">
<link rel="alternate stylesheet" type="text/css" href="../resources/linktest2.css" title="Alternate SS">
<style type="text/css">
@import url(../resources/imptest1.css);
@import "../resources/imptest1a.css";
UL {color: red;}
.four {color: purple;}
@import url(../resources/imptest2.css);
<!--
P.six {color: green;}
--></style></head>
<body><p>The style declarations which apply to the text below are:</p>
<pre><LINK rel="stylesheet" type="text/css" href="linktest.css" title="Default SS">
<LINK rel="alternate stylesheet" type="text/css" href="linktest2.css" title="Alternate SS">
@import url(imptest1.css);
@import "imptest1a.css";
UL {color: red;}
.four {color: purple;}
@import url(imptest2.css);
<!--
P.six {color: green;}
-->
</pre>
<hr>
<p class="one">
This sentence should be underlined due to the linked style sheet <code>linktest.css</code>, the reference to which is shown above.
</p>
<p class="two">
This sentence should NOT be underlined due to the linked style sheet <code>linktest2.css</code>, <strong>unless</strong> the external style sheet "Alternate SS" has been selected via the user agent.
</p>
<ul>
<li class="three">
This sentence should be green due to an imported style sheet [<code>@import url(imptest1.css);</code>].
</li>
<li class="threea">
This sentence should be purple due to an imported style sheet [<code>@import "imptest1a.css"</code>].
</li>
<li style="color: green;">
This sentence should be green thanks to the STYLE attribute [<code>STYLE="color: green;"</code>].
</li>
</ul>
<p class="four">
This sentence should be purple, and it doesn't have a terminating paragraph tag.
</p><ol>
<li>This list should NOT be purple.
</li><li>It should, instead, be black.
</li><li>If it IS purple, then the browser hasn't correctly parsed the preceding paragraph.
</li></ol>
<p class="five">
This sentence should be black. If it is red, then the browser has inappropriately imported the styles from the file <tt>imptest2.css</tt> (see <a href="http://www.w3.org/TR/REC-CSS1#the-cascade">section 3.0</a> of the CSS1 specification for more details).
</p>
<p class="six">
This paragraph should be green.
</p>
<table border="1" cellspacing="0" cellpadding="3" class="tabletest">
<tbody><tr>
<td colspan="2" bgcolor="silver"><strong>TABLE Testing Section</strong></td>
</tr>
<tr>
<td bgcolor="silver"> </td>
<td><p class="one">
This sentence should be underlined due to the linked style sheet <code>linktest.css</code>, the reference to which is shown above.
</p>
<p class="two">
This sentence should NOT be underlined due to the linked style sheet <code>linktest2.css</code>, <strong>unless</strong> the external style sheet "Alternate SS" has been selected via the user agent.
</p>
<ul>
<li class="three">
This sentence should be green due to an imported style sheet [<code>@import url(imptest1.css);</code>].
</li>
<li class="threea">
This sentence should be purple due to an imported style sheet [<code>@import "imptest1a.css"</code>].
</li>
<li style="color: green;">
This sentence should be green thanks to the STYLE attribute [<code>STYLE="color: green;"</code>].
</li>
</ul>
<p class="four">
This sentence should be purple, and it doesn't have a terminating paragraph tag.
</p><ol>
<li>This list should NOT be purple.
</li><li>It should, instead, be black.
</li><li>If it IS purple, then the browser hasn't correctly parsed the preceding paragraph.
</li></ol>
<p class="five">
This sentence should be black. If it is red, then the browser has inappropriately imported the styles from the file <tt>imptest2.css</tt> (see <a href="http://www.w3.org/TR/REC-CSS1#the-cascade">section 3.0</a> of the CSS1 specification for more details).
</p>
<p class="six">
This paragraph should be green.
</p>
</td></tr></tbody></table></body></html> | axinging/chromium-crosswalk | third_party/WebKit/LayoutTests/css1/basic/containment.html | HTML | bsd-3-clause | 4,263 |
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Grid Layout Test: Content Distribution 'space-between' and gaps on 3x3 grid</title>
<link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#grid-align">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#content-distribution">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#valdef-align-content-space-between">
<link rel="match" href="../../reference/ref-filled-green-200px-square.html">
<meta name="assert" content="Content Distribution properties with 'space-between' value render correcly.">
<style>
.block {
position: absolute;
z-index: -1;
background: green;
width: 200px;
height: 200px;
}
.block > div {
position: absolute;
background: red;
width: 20px;
height: 20px;
}
.grid {
z-index: 1;
display: grid;
width: 200px;
height: 200px;
grid-template-columns: 20px 20px 20px;
grid-template-rows: 20px 20px 20px;
grid-row-gap: 10px;
grid-column-gap: 10px;
align-content: space-between;
justify-content: space-between;
}
.grid > div { background: green; }
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div class="block">
<div style="top: 0px; left: 90px;"></div>
<div style="top: 0px; left: 180px;"></div>
<div style="top: 90px; left: 0px;"></div>
<div style="top: 180px; left: 0px;"></div>
</div>
<div class="grid">
<div class="item" style="grid-row: 1; grid-column: 2;"></div>
<div class="item" style="grid-row: 1; grid-column: 3;"></div>
<div class="item" style="grid-row: 2; grid-column: 1;"></div>
<div class="item" style="grid-row: 3; grid-column: 1;"></div>
</div>
| chromium/chromium | third_party/blink/web_tests/external/wpt/css/css-grid/alignment/grid-content-distribution-013.html | HTML | bsd-3-clause | 1,762 |
<div data-page="swiper-3d-coverflow" class="page">
<div class="navbar">
<div class="navbar-inner">
<div class="left"><a href="swiper.html" class="back link icon-only"><i class="icon icon-back"></i></a></div>
<div class="center">3D Coverflow Effect</div>
<div class="right"><a href="#" class="open-panel link icon-only"><i class="icon icon-bars"></i></a></div>
</div>
</div>
<div class="page-content">
<div data-pagination=".swiper-pagination" data-effect="coverflow" data-slidesPerView="auto" data-centeredSlides="true" class="swiper-container swiper-init ks-demo-slider ks-coverflow-slider">
<div class="swiper-pagination"></div>
<div class="swiper-wrapper">
<div style="background-image:url(http://lorempixel.com/800/800/nature/1)" class="swiper-slide">Slide 1</div>
<div style="background-image:url(http://lorempixel.com/800/800/nature/2)" class="swiper-slide">Slide 2</div>
<div style="background-image:url(http://lorempixel.com/800/800/nature/3)" class="swiper-slide">Slide 3</div>
<div style="background-image:url(http://lorempixel.com/800/800/nature/4)" class="swiper-slide">Slide 4</div>
<div style="background-image:url(http://lorempixel.com/800/800/nature/5)" class="swiper-slide">Slide 5</div>
<div style="background-image:url(http://lorempixel.com/800/800/nature/6)" class="swiper-slide">Slide 6</div>
<div style="background-image:url(http://lorempixel.com/800/800/nature/7)" class="swiper-slide">Slide 7</div>
<div style="background-image:url(http://lorempixel.com/800/800/nature/8)" class="swiper-slide">Slide 8</div>
<div style="background-image:url(http://lorempixel.com/800/800/nature/9)" class="swiper-slide">Slide 9</div>
</div>
</div>
</div>
</div> | yayanbachtiar/cordova-with-framework7 | www/swiper-3d-coverflow.html | HTML | apache-2.0 | 1,801 |
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<html>
<head>
</head>
<body>
The <a href="http://activemq.apache.org/properties.html">Properties Component</a> for lookup of property
placeholders for endpoint URI.
</body>
</html>
| snadakuduru/camel | camel-core/src/main/java/org/apache/camel/component/properties/package.html | HTML | apache-2.0 | 997 |
<!DOCTYPE html>
<!-- DO NOT EDIT! Generated by referrer-policy/generic/tools/generate.py using referrer-policy/generic/template/test.release.html.template. -->
<html>
<head>
<title>Referrer-Policy: Referrer Policy is set to 'no-referrer'</title>
<meta name="description" content="Check that sub-resource never gets the referrer URL.">
<!-- No meta: CSP delivered via HTTP headers. -->
<link rel="author" title="Kristijan Burnik" href="burnik@chromium.org">
<link rel="help" href="https://w3c.github.io/webappsec/specs/referrer-policy/#referrer-policy-state-no-referrer">
<meta name="assert" content="The referrer URL is omitted when a
document served over http requires an https
sub-resource via xhr-request using the http-csp
delivery method with no-redirect and when
the target request is same-origin.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<!-- TODO(kristijanburnik): Minify and merge both: -->
<script src="/referrer-policy/generic/common.js"></script>
<script src="/referrer-policy/generic/referrer-policy-test-case.js?pipe=sub"></script>
</head>
<body>
<script>
ReferrerPolicyTestCase(
{
"referrer_policy": "no-referrer",
"delivery_method": "http-csp",
"redirection": "no-redirect",
"origin": "same-origin",
"source_protocol": "http",
"target_protocol": "https",
"subresource": "xhr-request",
"subresource_path": "/referrer-policy/generic/subresource/xhr.py",
"referrer_url": "omitted"
},
document.querySelector("meta[name=assert]").content,
new SanityChecker()
).start();
</script>
<div id="log"></div>
</body>
</html>
| youtube/cobalt | third_party/web_platform_tests/referrer-policy/no-referrer/http-csp/same-origin/http-https/xhr-request/generic.no-redirect.http.html | HTML | bsd-3-clause | 1,927 |
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html lang="en" xmlns="http://www.w3.org/1999/html"> <!--<![endif]-->
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8" />
<title>icon-calendar-empty: Font Awesome Icons</title>
<meta name="description" content="Font Awesome, the iconic font designed for Bootstrap">
<meta name="author" content="Dave Gandy">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--<meta name="viewport" content="initial-scale=1; maximum-scale=1">-->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- CSS
================================================== -->
<link rel="stylesheet" href="../../assets/css/site.css">
<link rel="stylesheet" href="../../assets/css/pygments.css">
<link rel="stylesheet" href="../../assets/font-awesome/css/font-awesome.css">
<!--[if IE 7]>
<link rel="stylesheet" href="../../assets/font-awesome/css/font-awesome-ie7.css">
<![endif]-->
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="../../assets/ico/favicon.ico">
<script type="text/javascript" src="//use.typekit.net/wnc7ioh.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-30136587-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body data-spy="scroll" data-target=".navbar">
<div class="wrapper"> <!-- necessary for sticky footer. wrap all content except footer -->
<div class="navbar navbar-inverse navbar-static-top hidden-print">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="../../"><i class="icon-flag"></i> Font Awesome</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li class="hidden-tablet "><a href="../../">Home</a></li>
<li><a href="../../get-started/">Get Started</a></li>
<li class="dropdown-split-left"><a href="../../icons/">Icons</a></li>
<li class="dropdown dropdown-split-right hidden-phone">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<i class="icon-caret-down"></i>
</a>
<ul class="dropdown-menu pull-right">
<li><a href="../../icons/"><i class="icon-flag icon-fixed-width"></i> Icons</a></li>
<li class="divider"></li>
<li><a href="../../icons/#new"><i class="icon-shield icon-fixed-width"></i> New Icons in 3.2.1</a></li>
<li><a href="../../icons/#web-application"><i class="icon-camera-retro icon-fixed-width"></i> Web Application Icons</a></li>
<li><a href="../../icons/#currency"><i class="icon-won icon-fixed-width"></i> Currency Icons</a></li>
<li><a href="../../icons/#text-editor"><i class="icon-file-text-alt icon-fixed-width"></i> Text Editor Icons</a></li>
<li><a href="../../icons/#directional"><i class="icon-hand-right icon-fixed-width"></i> Directional Icons</a></li>
<li><a href="../../icons/#video-player"><i class="icon-play-sign icon-fixed-width"></i> Video Player Icons</a></li>
<li><a href="../../icons/#brand"><i class="icon-github icon-fixed-width"></i> Brand Icons</a></li>
<li><a href="../../icons/#medical"><i class="icon-medkit icon-fixed-width"></i> Medical Icons</a></li>
</ul>
</li>
<li class="dropdown-split-left"><a href="../../examples/">Examples</a></li>
<li class="dropdown dropdown-split-right hidden-phone">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<i class="icon-caret-down"></i>
</a>
<ul class="dropdown-menu pull-right">
<li><a href="../../examples/">Examples</a></li>
<li class="divider"></li>
<li><a href="../../examples/#new-styles">New Styles</a></li>
<li><a href="../../examples/#inline-icons">Inline Icons</a></li>
<li><a href="../../examples/#larger-icons">Larger Icons</a></li>
<li><a href="../../examples/#bordered-pulled">Bordered & Pulled</a></li>
<li><a href="../../examples/#buttons">Buttons</a></li>
<li><a href="../../examples/#button-groups">Button Groups</a></li>
<li><a href="../../examples/#button-dropdowns">Button Dropdowns</a></li>
<li><a href="../../examples/#bulleted-lists">Bulleted Lists</a></li>
<li><a href="../../examples/#navigation">Navigation</a></li>
<li><a href="../../examples/#form-inputs">Form Inputs</a></li>
<li><a href="../../examples/#animated-spinner">Animated Spinner</a></li>
<li><a href="../../examples/#rotated-flipped">Rotated & Flipped</a></li>
<li><a href="../../examples/#stacked">Stacked</a></li>
<li><a href="../../examples/#custom">Custom CSS</a></li>
</ul>
</li>
<li><a href="../../whats-new/">
<span class="hidden-tablet">What's </span>New</a>
</li>
<li><a href="../../community/">Community</a></li>
<li><a href="../../license/">License</a></li>
</ul>
<ul class="nav pull-right">
<li><a href="http://articles.fortawesome.com">Blog</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="jumbotron jumbotron-icon">
<div class="container">
<div class="info-icons">
<i class="icon-calendar-empty icon-6"></i>
<span class="hidden-phone">
<i class="icon-calendar-empty icon-5"></i>
<span class="hidden-tablet"><i class="icon-calendar-empty icon-4"></i> </span>
<i class="icon-calendar-empty icon-3"></i>
<i class="icon-calendar-empty icon-2"></i>
</span>
<i class="icon-calendar-empty icon-1"></i>
</div>
<h1 class="info-class">
icon-calendar-empty
<small>
<i class="icon-calendar-empty"></i> ·
Unicode: <span class="upper">f133</span> ·
Created: v3.1 ·
Categories:
Web Application Icons
</small>
</h1>
</div>
</div>
<div class="container">
<section>
<div class="row-fluid">
<div class="span9">
<p>After you get <a href="../../integration/">up and running</a>, you can place Font Awesome icons just about anywhere with the <code><i></code> tag:</p>
<div class="well well-transparent">
<div style="font-size: 24px; line-height: 1.5em;">
<i class="icon-calendar-empty"></i> icon-calendar-empty
</div>
</div>
<div class="highlight"><pre><code class="html"><span class="nt"><i</span> <span class="na">class=</span><span class="s">"icon-calendar-empty"</span><span class="nt">></i></span> icon-calendar-empty
</code></pre></div>
<br>
<div class="lead"><i class="icon-info-sign"></i> Looking for more? Check out the <a href="../../examples/">examples</a>.</div>
</div>
<div class="span3">
<div class="info-ad"><div id="carbonads-container"><div class="carbonad"><div id="azcarbon"></div><script type="text/javascript">var z = document.createElement("script"); z.type = "text/javascript"; z.async = true; z.src = "http://engine.carbonads.com/z/32291/azcarbon_2_1_0_VERT"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(z, s);</script></div></div>
</div>
</div>
</div>
</section>
</div>
<div class="push"><!-- necessary for sticky footer --></div>
</div>
<footer class="footer hidden-print">
<div class="container text-center">
<div>
<i class="icon-flag"></i> Font Awesome 3.2.1
<span class="hidden-phone">·</span><br class="visible-phone">
Created and Maintained by <a href="http://twitter.com/davegandy">Dave Gandy</a>
</div>
<div>
Font Awesome licensed under <a href="http://scripts.sil.org/OFL">SIL OFL 1.1</a>
<span class="hidden-phone">·</span><br class="visible-phone">
Code licensed under <a href="http://opensource.org/licenses/mit-license.html">MIT License</a>
<span class="hidden-phone hidden-tablet">·</span><br class="visible-phone visible-tablet">
Documentation licensed under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a>
</div>
<div>
Thanks to <a href="http://tracking.maxcdn.com/c/148092/3982/378"><i class="icon-maxcdn"></i> MaxCDN</a> for providing the excellent <a href="http://www.bootstrapcdn.com/#tab_fontawesome">BootstrapCDN for Font Awesome</a>
</div>
<div class="project">
<a href="https://github.com/FortAwesome/Font-Awesome">GitHub Project</a> ·
<a href="https://github.com/FortAwesome/Font-Awesome/issues">Issues</a>
</div>
</div>
</footer>
<script src="http://platform.twitter.com/widgets.js"></script>
<script src="../../assets/js/jquery-1.7.1.min.js"></script>
<script src="../../assets/js/ZeroClipboard-1.1.7.min.js"></script>
<script src="../../assets/js/bootstrap-2.3.1.min.js"></script>
<script src="../../assets/js/site.js"></script>
</body>
</html>
| johncoleman83/AirBnB_clone_v2 | web_static/styles/Font-Awesome/src/3.2.1/icon/calendar-empty/index.html | HTML | mit | 10,192 |
<!DOCTYPE html>
<!-- DO NOT EDIT! Generated by referrer-policy/generic/tools/generate.py using referrer-policy/generic/template/test.release.html.template. -->
<html>
<head>
<title>Referrer-Policy: Referrer Policy is set to 'origin-only'</title>
<meta name="description" content="Check that all subresources in all casses get only the origin portion of the referrer URL.">
<meta name="referrer" content="origin">
<link rel="author" title="Kristijan Burnik" href="burnik@chromium.org">
<link rel="help" href="https://w3c.github.io/webappsec/specs/referrer-policy/#referrer-policy-state-origin">
<meta name="assert" content="The referrer URL is origin when a
document served over http requires an http
sub-resource via iframe-tag using the meta-referrer
delivery method with swap-origin-redirect and when
the target request is same-origin.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<!-- TODO(kristijanburnik): Minify and merge both: -->
<script src="/referrer-policy/generic/common.js"></script>
<script src="/referrer-policy/generic/referrer-policy-test-case.js?pipe=sub"></script>
</head>
<body>
<script>
ReferrerPolicyTestCase(
{
"referrer_policy": "origin",
"delivery_method": "meta-referrer",
"redirection": "swap-origin-redirect",
"origin": "same-origin",
"source_protocol": "http",
"target_protocol": "http",
"subresource": "iframe-tag",
"subresource_path": "/referrer-policy/generic/subresource/document.py",
"referrer_url": "origin"
},
document.querySelector("meta[name=assert]").content,
new SanityChecker()
).start();
</script>
<div id="log"></div>
</body>
</html>
| youtube/cobalt | third_party/web_platform_tests/referrer-policy/origin-only/meta-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html | HTML | bsd-3-clause | 1,972 |
<!doctype html>
<html>
<head>
<title>Removing a track from a MediaStream</title>
<link rel="author" title="Dominique Hazael-Massieux" href="mailto:dom@w3.org"/>
<link rel="help" href="http://dev.w3.org/2011/webrtc/editor/getusermedia.html#widl-MediaStreamTrackList-remove-void-MediaStreamTrack-track">
<link rel="help" href="http://dev.w3.org/2011/webrtc/editor/getusermedia.html#event-mediastream-removetrack">
</head>
<body>
<p class="instructions">When prompted, accept to share your audio stream, then your video stream.</p>
<h1 class="instructions">Description</h1>
<p class="instructions">This test checks that removinging a track from a MediaStream works as expected.</p>
<div id='log'></div>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src="/common/vendor-prefix.js" data-prefixed-objects='[{"ancestors":["navigator"], "name":"getUserMedia"}]'></script>
<script>
var t = async_test("Tests that a removal from a MediaStream works as expected", {timeout:10000});
t.step(function () {
var audio;
navigator.getUserMedia({audio:true}, gotAudio, function(error) {});
function gotAudio(stream) {
audio = stream;
navigator.getUserMedia({video:true}, gotVideo, function(error) {});
}
function gotVideo(stream) {
var video = stream;
video.onremovetrack = function () {
assert_unreached("onremovetrack is not triggered when removal of track is triggered by the script itself");
};
t.step(function () {
assert_equals(video.getVideoTracks().length, 1, "video mediastream starts with one video track");
video.removeTrack(video.getVideoTracks()[0]);
assert_equals(video.getVideoTracks().length, 0, "video mediastream has no video track left");
video.removeTrack(audio.getAudioTracks()[0]); // should not throw
});
t.step(function() {
t.done();
});
}
});
</script>
</body>
</html>
| danakj/chromium | third_party/WebKit/LayoutTests/imported/wpt/mediacapture-streams/MediaStream-removetrack.https.html | HTML | bsd-3-clause | 1,932 |
<div class="container">
<div class="row">
<div class="col s12 m9 l10">
<div id="introduction" class="section scrollspy">
<h4>Introduction</h4>
<p class="caption">
Collapsibles are accordion elements that expand when clicked on. They allow you to hide content that is not immediately relevant to the user.
</p>
<ul class="collapsible collapsible-accordion" data-collapsible="accordion">
<li>
<div class="collapsible-header"><i class="material-icons">filter_drama</i>First</div>
<div class="collapsible-body"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p></div>
</li>
<li>
<div class="collapsible-header"><i class="material-icons">place</i>Second</div>
<div class="collapsible-body"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p></div>
</li>
<li>
<div class="collapsible-header"><i class="material-icons">whatshot</i>Third</div>
<div class="collapsible-body"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p></div>
</li>
</ul>
</div>
<div id="popout" class="section scrollspy">
<h4>Popout</h4>
<p class="caption">
To create a popout collapsible, just add the class <code class="language-markup">popout</code>.
</p>
<ul class="collapsible popout collapsible-accordion" data-collapsible="accordion">
<li>
<div class="collapsible-header"><i class="material-icons">subtitles</i>First</div>
<div class="collapsible-body"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p></div>
</li>
<li>
<div class="collapsible-header active"><i class="material-icons">games</i>Second</div>
<div class="collapsible-body"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p></div>
</li>
<li>
<div class="collapsible-header"><i class="material-icons">library_books</i>Third</div>
<div class="collapsible-body"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p></div>
</li>
</ul>
<pre><code class="language-markup">
<ul class="collapsible popout" data-collapsible="accordion">
</code></pre>
</div>
<div id="structure" class="section scrollspy">
<h4>Collapsible HTML Structure</h4>
<pre><code class="language-markup">
<ul class="collapsible" data-collapsible="accordion">
<li>
<div class="collapsible-header"><i class="material-icons">filter_drama</i>First</div>
<div class="collapsible-body"><p>Lorem ipsum dolor sit amet.</p></div>
</li>
<li>
<div class="collapsible-header"><i class="material-icons">place</i>Second</div>
<div class="collapsible-body"><p>Lorem ipsum dolor sit amet.</p></div>
</li>
<li>
<div class="collapsible-header"><i class="material-icons">whatshot</i>Third</div>
<div class="collapsible-body"><p>Lorem ipsum dolor sit amet.</p></div>
</li>
</ul>
</code></pre>
</div>
<div id="intialization" class="section scrollspy">
<h4>Initialization</h4>
<p>Collapsible elements only need initialization if they are added dynamically. You can also pass in options inside the initialization, however this can be done in the HTML markup as well.</p>
<pre><code class="language-javascript">
$(document).ready(function(){
$('.collapsible').collapsible({
accordion : false // A setting that changes the collapsible behavior to expandable instead of the default accordion style
});
});
</code></pre>
<br><br>
<h5>Preselected Section</h5>
<p>If you want a collapsible with a preopened section just add the <code class="language-markup">active</code> class to the collapsible-header. </p>
<ul class="collapsible collapsible-accordion" data-collapsible="accordion">
<li>
<div class="collapsible-header"><i class="material-icons">filter_drama</i>First</div>
<div class="collapsible-body"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p></div>
</li>
<li>
<div class="collapsible-header active"><i class="material-icons">place</i>Second</div>
<div class="collapsible-body"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p></div>
</li>
<li>
<div class="collapsible-header"><i class="material-icons">whatshot</i>Third</div>
<div class="collapsible-body"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p></div>
</li>
</ul>
<pre><code class="language-markup">
<div class="collapsible-header active"><i class="mdi-maps-place"></i>Second</div>
</code></pre>
</div>
<div id="options" class="section scrollspy">
<h4>Options</h4>
<p>There are two ways a collapsible can behave. It can either allow multiple sections to stay open, or it can only allow one section to stay open at a time, which is called an accordion. See below for a demo of each type</p>
</div>
<div id="accordion" class="section scrollspy">
<div class="row">
<div class="col s12 m3"><h5 class="light">Accordion</h5></div>
<div class="col s12 m9">
<ul class="collapsible" data-collapsible="accordion">
<li>
<div class="collapsible-header"><i class="material-icons">filter_drama</i>First</div>
<div class="collapsible-body"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p></div>
</li>
<li>
<div class="collapsible-header"><i class="material-icons">place</i>Second</div>
<div class="collapsible-body"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p></div>
</li>
<li>
<div class="collapsible-header"><i class="material-icons">whatshot</i>Third</div>
<div class="collapsible-body"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p></div>
</li>
</ul>
</div>
<div class="col s12 m9 offset-m3">
<p>This is default behavior, but you can explicitly set it by setting the <code class="language-markup">data-collapsible</code> attribute in HTML.</p>
<pre><code class="language-markup">
<ul class="collapsible" data-collapsible="accordion">
</code></pre>
</div>
</div>
</div>
<div id="expandable" class="section scrollspy">
<div class="row">
<div class="col s12 m3"><h5 class="light">Expandable</h5></div>
<div class="col s12 m9">
<ul class="collapsible" data-collapsible="expandable">
<li>
<div class="collapsible-header"><i class="material-icons">filter_drama</i>First</div>
<div class="collapsible-body"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p></div>
</li>
<li>
<div class="collapsible-header"><i class="material-icons">place</i>Second</div>
<div class="collapsible-body"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p></div>
</li>
<li>
<div class="collapsible-header"><i class="material-icons">whatshot</i>Third</div>
<div class="collapsible-body"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p></div>
</li>
</ul>
</div>
<div class="col s12 m9 offset-m3">
<pre><code class="language-markup">
<ul class="collapsible" data-collapsible="expandable">
</code></pre>
</div>
</div>
</div>
</div>
<!-- Table of Contents -->
<div class="col hide-on-small-only m3 l2">
<div class="toc-wrapper">
<div class="buysellads hide-on-small-only">
<!-- CarbonAds Zone Code -->
<script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?zoneid=1673&serve=C6AILKT&placement=materializecss" id="_carbonads_js"></script>
</div>
<div style="height: 1px;">
<ul class="section table-of-contents">
<li><a href="#introduction">Introduction</a></li>
<li><a href="#popout">Popout</a></li>
<li><a href="#structure">Structure</a></li>
<li><a href="#intialization">Initialization</a></li>
<li><a href="#accordion">Accordion</a></li>
<li><a href="#expandable">Expandable</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
| kanhaya-org/kanhaya-web | src/jade/page-contents/collapsible_content.html | HTML | apache-2.0 | 12,997 |
---
layout: home
title: Bootstrap
---
<main class="bs-docs-masthead" id="content" role="main">
<div class="container">
<span class="bs-docs-booticon bs-docs-booticon-lg bs-docs-booticon-outline">B</span>
<!-- <h1>Bootstrap</h1> -->
<p class="lead">The most popular front-end framework for developing responsive, mobile first projects on the web.</p>
<p class="lead">
<a href="getting-started#download" class="btn btn-outline-inverse btn-lg" onclick="_gaq.push(['_trackEvent', 'Jumbotron actions', 'Download', 'Download {{ site.current_version }}']);">Download Bootstrap</a>
</p>
<p class="version">Currently v{{ site.current_version }}</p>
{% include ads.html %}
</div>
</main>
<div class="bs-docs-featurette">
<div class="container">
<h2 class="bs-docs-featurette-title">Designed for everyone, everywhere.</h2>
<p class="lead">Bootstrap makes front-end web development faster and easier. It's made for folks of all skill levels, devices of all shapes, and projects of all sizes.</p>
<hr class="half-rule">
<div class="row">
<div class="col-sm-4">
<img src="assets/img/sass-less.png" alt="Sass and Less support" class="img-responsive">
<h3>Preprocessors</h3>
<p>In addition to vanilla CSS, Bootstrap includes support for the two most popular CSS preprocessors, <a href="../css/#less">Less</a> and <a href="../css/#sass">Sass</a>.</p>
</div>
<div class="col-sm-4">
<img src="assets/img/devices.png" alt="Responsive across devices" class="img-responsive">
<h3>One framework, every device.</h3>
<p>Bootstrap easily and efficiently scales your project with one code base, from phones to tablets to desktops.</p>
</div>
<div class="col-sm-4">
<img src="assets/img/components.png" alt="Components" class="img-responsive">
<h3>Comprehensive docs</h3>
<p>With Bootstrap, you get extensive and beautiful documentation with hundreds of live examples, code snippets, and more.</p>
</div>
</div>
<hr class="half-rule">
<p class="lead">Bootstrap is open source. It's hosted, developed, and maintained on GitHub.</p>
<a href="{{ site.repo }}" class="btn btn-outline btn-lg">View the GitHub project</a>
</div>
</div>
<div class="bs-docs-featurette">
<div class="container">
<h2 class="bs-docs-featurette-title">Built with Bootstrap.</h2>
<p class="lead">Millions of amazing sites across the web are being built with Bootstrap. Get started on your own with our growing <a href="../getting-started/#examples">collection of examples</a> or by exploring some of our favorites.</p>
<hr class="half-rule">
<div class="row bs-docs-featured-sites">
{% for showcase in site.data.showcase %}
<div class="col-sm-3">
<a href="{{ showcase.expo_url }}" target="_blank" title="{{ showcase.name }}">
<img src="{{ showcase.img }}" alt="{{ showcase.name }}" class="img-responsive">
</a>
</div>
{% endfor %}
</div>
<hr class="half-rule">
<p class="lead">We showcase dozens of inspiring projects built with Bootstrap on the Bootstrap Expo.</p>
<a href="{{ site.expo }}" class="btn btn-outline btn-lg">Explore the Expo</a>
</div>
</div>
| bocharsky-bw/bionic-symfony | web/libs/bootstrap-3.1.1/docs/index.html | HTML | mit | 3,276 |
---
layout: default
---
<div id="not-found" class="container">
<h1>抱歉,文章不存在</h1>
<p>欢迎阅读其他文章</p>
</div>
| taoste/taoste.github.io | intl/Blog/404.html | HTML | mit | 140 |
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html lang="en" xmlns="http://www.w3.org/1999/html"> <!--<![endif]-->
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8" />
<title>icon-bar-chart: Font Awesome Icons</title>
<meta name="description" content="Font Awesome, the iconic font designed for Bootstrap">
<meta name="author" content="Dave Gandy">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--<meta name="viewport" content="initial-scale=1; maximum-scale=1">-->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- CSS
================================================== -->
<link rel="stylesheet" href="../../assets/css/site.css">
<link rel="stylesheet" href="../../assets/css/pygments.css">
<link rel="stylesheet" href="../../assets/font-awesome/css/font-awesome.css">
<!--[if IE 7]>
<link rel="stylesheet" href="../../assets/font-awesome/css/font-awesome-ie7.css">
<![endif]-->
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="../../assets/ico/favicon.ico">
<script type="text/javascript" src="//use.typekit.net/wnc7ioh.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-30136587-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body data-spy="scroll" data-target=".navbar">
<div class="wrapper"> <!-- necessary for sticky footer. wrap all content except footer -->
<div class="navbar navbar-inverse navbar-static-top hidden-print">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="../../"><i class="icon-flag"></i> Font Awesome</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li class="hidden-tablet "><a href="../../">Home</a></li>
<li><a href="../../get-started/">Get Started</a></li>
<li class="dropdown-split-left"><a href="../../icons/">Icons</a></li>
<li class="dropdown dropdown-split-right hidden-phone">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<i class="icon-caret-down"></i>
</a>
<ul class="dropdown-menu pull-right">
<li><a href="../../icons/"><i class="icon-flag icon-fixed-width"></i> Icons</a></li>
<li class="divider"></li>
<li><a href="../../icons/#new"><i class="icon-shield icon-fixed-width"></i> New Icons in 3.2.1</a></li>
<li><a href="../../icons/#web-application"><i class="icon-camera-retro icon-fixed-width"></i> Web Application Icons</a></li>
<li><a href="../../icons/#currency"><i class="icon-won icon-fixed-width"></i> Currency Icons</a></li>
<li><a href="../../icons/#text-editor"><i class="icon-file-text-alt icon-fixed-width"></i> Text Editor Icons</a></li>
<li><a href="../../icons/#directional"><i class="icon-hand-right icon-fixed-width"></i> Directional Icons</a></li>
<li><a href="../../icons/#video-player"><i class="icon-play-sign icon-fixed-width"></i> Video Player Icons</a></li>
<li><a href="../../icons/#brand"><i class="icon-github icon-fixed-width"></i> Brand Icons</a></li>
<li><a href="../../icons/#medical"><i class="icon-medkit icon-fixed-width"></i> Medical Icons</a></li>
</ul>
</li>
<li class="dropdown-split-left"><a href="../../examples/">Examples</a></li>
<li class="dropdown dropdown-split-right hidden-phone">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<i class="icon-caret-down"></i>
</a>
<ul class="dropdown-menu pull-right">
<li><a href="../../examples/">Examples</a></li>
<li class="divider"></li>
<li><a href="../../examples/#new-styles">New Styles</a></li>
<li><a href="../../examples/#inline-icons">Inline Icons</a></li>
<li><a href="../../examples/#larger-icons">Larger Icons</a></li>
<li><a href="../../examples/#bordered-pulled">Bordered & Pulled</a></li>
<li><a href="../../examples/#buttons">Buttons</a></li>
<li><a href="../../examples/#button-groups">Button Groups</a></li>
<li><a href="../../examples/#button-dropdowns">Button Dropdowns</a></li>
<li><a href="../../examples/#bulleted-lists">Bulleted Lists</a></li>
<li><a href="../../examples/#navigation">Navigation</a></li>
<li><a href="../../examples/#form-inputs">Form Inputs</a></li>
<li><a href="../../examples/#animated-spinner">Animated Spinner</a></li>
<li><a href="../../examples/#rotated-flipped">Rotated & Flipped</a></li>
<li><a href="../../examples/#stacked">Stacked</a></li>
<li><a href="../../examples/#custom">Custom CSS</a></li>
</ul>
</li>
<li><a href="../../whats-new/">
<span class="hidden-tablet">What's </span>New</a>
</li>
<li><a href="../../community/">Community</a></li>
<li><a href="../../license/">License</a></li>
</ul>
<ul class="nav pull-right">
<li><a href="http://blog.fontawesome.io">Blog</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="jumbotron jumbotron-icon">
<div class="container">
<div class="info-icons">
<i class="icon-bar-chart icon-6"></i>
<span class="hidden-phone">
<i class="icon-bar-chart icon-5"></i>
<span class="hidden-tablet"><i class="icon-bar-chart icon-4"></i> </span>
<i class="icon-bar-chart icon-3"></i>
<i class="icon-bar-chart icon-2"></i>
</span>
<i class="icon-bar-chart icon-1"></i>
</div>
<h1 class="info-class">
icon-bar-chart
<small>
<i class="icon-bar-chart"></i> ·
Unicode: <span class="upper">f080</span> ·
Created: v1.0 ·
Categories:
Web Application Icons
</small>
</h1>
</div>
</div>
<div class="container">
<section>
<div class="row-fluid">
<div class="span9">
<p>After you get <a href="../../integration/">up and running</a>, you can place Font Awesome icons just about anywhere with the <code><i></code> tag:</p>
<div class="well well-transparent">
<div style="font-size: 24px; line-height: 1.5em;">
<i class="icon-bar-chart"></i> icon-bar-chart
</div>
</div>
<div class="highlight"><pre><code class="html"><span class="nt"><i</span> <span class="na">class=</span><span class="s">"icon-bar-chart"</span><span class="nt">></i></span> icon-bar-chart
</code></pre></div>
<br>
<div class="lead"><i class="icon-info-sign"></i> Looking for more? Check out the <a href="../../examples/">examples</a>.</div>
</div>
<div class="span3">
<div class="info-ad"><div id="carbonads-container"><div class="carbonad"><div id="azcarbon"></div><script type="text/javascript">var z = document.createElement("script"); z.type = "text/javascript"; z.async = true; z.src = "http://engine.carbonads.com/z/32291/azcarbon_2_1_0_VERT"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(z, s);</script></div></div>
</div>
</div>
</div>
</section>
</div>
<div class="push"><!-- necessary for sticky footer --></div>
</div>
<footer class="footer hidden-print">
<div class="container text-center">
<div>
<i class="icon-flag"></i> Font Awesome 3.2.1
<span class="hidden-phone">·</span><br class="visible-phone">
Created and Maintained by <a href="http://twitter.com/davegandy">Dave Gandy</a>
</div>
<div>
Font Awesome licensed under <a href="http://scripts.sil.org/OFL">SIL OFL 1.1</a>
<span class="hidden-phone">·</span><br class="visible-phone">
Code licensed under <a href="http://opensource.org/licenses/mit-license.html">MIT License</a>
<span class="hidden-phone hidden-tablet">·</span><br class="visible-phone visible-tablet">
Documentation licensed under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a>
</div>
<div>
Thanks to <a href="http://maxcdn.com"><i class="icon-maxcdn"></i> MaxCDN</a> for providing the excellent <a href="http://www.bootstrapcdn.com/#tab_fontawesome">BootstrapCDN for Font Awesome</a>
</div>
<div class="project">
<a href="https://github.com/FortAwesome/Font-Awesome">GitHub Project</a> ·
<a href="https://github.com/FortAwesome/Font-Awesome/issues">Issues</a>
</div>
</div>
</footer>
<script src="http://platform.twitter.com/widgets.js"></script>
<script src="../../assets/js/jquery-1.7.1.min.js"></script>
<script src="../../assets/js/ZeroClipboard-1.1.7.min.js"></script>
<script src="../../assets/js/bootstrap-2.3.1.min.js"></script>
<script src="../../assets/js/site.js"></script>
</body>
</html>
| vinnylinck/TodoSyncPoc | www/lib/font-awesome/src/3.2.1/icon/bar-chart/index.html | HTML | mit | 10,095 |
<title>Unmodified</title>
<img onload="document.title='Loaded'" onerror="document.title='Image failed to load'" src="chrome-extension://fnbdbepgnidhjejikpionpfohdjjogpm/test.png"> | plxaye/chromium | src/chrome/test/data/extensions/api_test/extension_resource_request_policy/index.html | HTML | apache-2.0 | 180 |
<!DOCTYPE html>
<!--[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>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/conspiracy.css">
</head>
<body ng-app="conspiracy">
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
<shredder></shredder>
<div id="branding"></div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.4/angular.min.js"></script>
<script src="https://www.google.com/jsapi"></script>
<script src="js/conspiracy.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
</body>
</html>
| eprouver/minigames | conspiracy.html | HTML | mit | 2,021 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="generator" content="JsDoc Toolkit" />
<title>JsDoc Reference - CAAT.modules.CircleManager.PackedCircleManager</title>
<style type="text/css">
/* default.css */
body
{
font: 12px "Lucida Grande", Tahoma, Arial, Helvetica, sans-serif;
width: 800px;
}
.header
{
clear: both;
background-color: #ccc;
padding: 8px;
}
h1
{
font-size: 150%;
font-weight: bold;
padding: 0;
margin: 1em 0 0 .3em;
}
hr
{
border: none 0;
border-top: 1px solid #7F8FB1;
height: 1px;
}
pre.code
{
display: block;
padding: 8px;
border: 1px dashed #ccc;
}
#index
{
margin-top: 24px;
float: left;
width: 160px;
position: absolute;
left: 8px;
background-color: #F3F3F3;
padding: 8px;
}
#content
{
margin-left: 190px;
width: 600px;
}
.classList
{
list-style-type: none;
padding: 0;
margin: 0 0 0 8px;
font-family: arial, sans-serif;
font-size: 1em;
overflow: auto;
}
.classList li
{
padding: 0;
margin: 0 0 8px 0;
}
.summaryTable { width: 100%; }
h1.classTitle
{
font-size:170%;
line-height:130%;
}
h2 { font-size: 110%; }
caption, div.sectionTitle
{
background-color: #7F8FB1;
color: #fff;
font-size:130%;
text-align: left;
padding: 2px 6px 2px 6px;
border: 1px #7F8FB1 solid;
}
div.sectionTitle { margin-bottom: 8px; }
.summaryTable thead { display: none; }
.summaryTable td
{
vertical-align: top;
padding: 4px;
border-bottom: 1px #7F8FB1 solid;
border-right: 1px #7F8FB1 solid;
}
/*col#summaryAttributes {}*/
.summaryTable td.attributes
{
border-left: 1px #7F8FB1 solid;
width: 140px;
text-align: right;
}
td.attributes, .fixedFont
{
line-height: 15px;
color: #002EBE;
font-family: "Courier New",Courier,monospace;
font-size: 13px;
}
.summaryTable td.nameDescription
{
text-align: left;
font-size: 13px;
line-height: 15px;
}
.summaryTable td.nameDescription, .description
{
line-height: 15px;
padding: 4px;
padding-left: 4px;
}
.summaryTable { margin-bottom: 8px; }
ul.inheritsList
{
list-style: square;
margin-left: 20px;
padding-left: 0;
}
.detailList {
margin-left: 20px;
line-height: 15px;
}
.detailList dt { margin-left: 20px; }
.detailList .heading
{
font-weight: bold;
padding-bottom: 6px;
margin-left: 0;
}
.light, td.attributes, .light a:link, .light a:visited
{
color: #777;
font-style: italic;
}
.fineprint
{
text-align: right;
font-size: 10px;
}
</style>
</head>
<body>
<!-- ============================== header ================================= -->
<!-- begin static/header.html -->
<div id="header">
</div>
<!-- end static/header.html -->
<!-- ============================== classes index ============================ -->
<div id="index">
<!-- begin publish.classesIndex -->
<div align="center"><a href="../index.html">Class Index</a>
| <a href="../files.html">File Index</a></div>
<hr />
<h2>Classes</h2>
<ul class="classList">
<li><i><a href="../symbols/_global_.html">_global_</a></i></li>
<li><a href="../symbols/CAAT.html">CAAT</a></li>
<li><a href="../symbols/CAAT.Actor.html">CAAT.Actor</a></li>
<li><a href="../symbols/CAAT.ActorContainer.html">CAAT.ActorContainer</a></li>
<li><a href="../symbols/CAAT.AudioManager.html">CAAT.AudioManager</a></li>
<li><a href="../symbols/CAAT.B2DBodyActor.html">CAAT.B2DBodyActor</a></li>
<li><a href="../symbols/CAAT.B2DCircularBody.html">CAAT.B2DCircularBody</a></li>
<li><a href="../symbols/CAAT.B2DPolygonBody.html">CAAT.B2DPolygonBody</a></li>
<li><a href="../symbols/CAAT.Bezier.html">CAAT.Bezier</a></li>
<li><a href="../symbols/CAAT.Button.html">CAAT.Button</a></li>
<li><a href="../symbols/CAAT.CatmullRom.html">CAAT.CatmullRom</a></li>
<li><a href="../symbols/CAAT.Color.html">CAAT.Color</a></li>
<li><a href="../symbols/CAAT.Color.RGB.html">CAAT.Color.RGB</a></li>
<li><a href="../symbols/CAAT.CompoundImage.html">CAAT.CompoundImage</a></li>
<li><a href="../symbols/CAAT.Curve.html">CAAT.Curve</a></li>
<li><a href="../symbols/CAAT.CurvePath.html">CAAT.CurvePath</a></li>
<li><a href="../symbols/CAAT.Director.html">CAAT.Director</a></li>
<li><a href="../symbols/CAAT.IMActor.html">CAAT.IMActor</a></li>
<li><a href="../symbols/CAAT.ImageActor.html">CAAT.ImageActor</a></li>
<li><a href="../symbols/CAAT.ImagePreloader.html">CAAT.ImagePreloader</a></li>
<li><a href="../symbols/CAAT.ImageProcessor.html">CAAT.ImageProcessor</a></li>
<li><a href="../symbols/CAAT.IMBump.html">CAAT.IMBump</a></li>
<li><a href="../symbols/CAAT.IMPlasma.html">CAAT.IMPlasma</a></li>
<li><a href="../symbols/CAAT.IMRotoZoom.html">CAAT.IMRotoZoom</a></li>
<li><a href="../symbols/CAAT.Interpolator.html">CAAT.Interpolator</a></li>
<li><a href="../symbols/CAAT.InterpolatorActor.html">CAAT.InterpolatorActor</a></li>
<li><a href="../symbols/CAAT.LinearPath.html">CAAT.LinearPath</a></li>
<li><a href="../symbols/CAAT.Matrix3.html">CAAT.Matrix3</a></li>
<li><a href="../symbols/CAAT.MatrixStack.html">CAAT.MatrixStack</a></li>
<li><a href="../symbols/CAAT.modules.html">CAAT.modules</a></li>
<li><a href="../symbols/CAAT.modules.CircleManager.html">CAAT.modules.CircleManager</a></li>
<li><a href="../symbols/CAAT.modules.CircleManager.PackedCircle.html">CAAT.modules.CircleManager.PackedCircle</a></li>
<li><a href="../symbols/CAAT.modules.CircleManager.PackedCircleManager.html">CAAT.modules.CircleManager.PackedCircleManager</a></li>
<li><a href="../symbols/CAAT.modules.LocalStorage.html">CAAT.modules.LocalStorage</a></li>
<li><a href="../symbols/CAAT.MouseEvent.html">CAAT.MouseEvent</a></li>
<li><a href="../symbols/CAAT.Path.html">CAAT.Path</a></li>
<li><a href="../symbols/CAAT.PathActor.html">CAAT.PathActor</a></li>
<li><a href="../symbols/CAAT.PathSegment.html">CAAT.PathSegment</a></li>
<li><a href="../symbols/CAAT.Point.html">CAAT.Point</a></li>
<li><a href="../symbols/CAAT.Rectangle.html">CAAT.Rectangle</a></li>
<li><a href="../symbols/CAAT.Scene.html">CAAT.Scene</a></li>
<li><a href="../symbols/CAAT.ShapeActor.html">CAAT.ShapeActor</a></li>
<li><a href="../symbols/CAAT.SpriteActor.html">CAAT.SpriteActor</a></li>
<li><a href="../symbols/CAAT.SpriteImage.html">CAAT.SpriteImage</a></li>
<li><a href="../symbols/CAAT.StarActor.html">CAAT.StarActor</a></li>
<li><a href="../symbols/CAAT.TextActor.html">CAAT.TextActor</a></li>
<li><a href="../symbols/CAAT.TimerTask.html">CAAT.TimerTask</a></li>
<li><a href="../symbols/Function.html">Function</a></li>
</ul>
<hr />
<!-- end publish.classesIndex -->
</div>
<div id="content">
<!-- ============================== class title ============================ -->
<h1 class="classTitle">
Class CAAT.modules.CircleManager.PackedCircleManager
</h1>
<!-- ============================== class summary ========================== -->
<p class="description">
<br /><i>Defined in: </i> <a href="../symbols/src/_Users_ibon_js_CAAT_src_modules_CircleManager_PackedCircleManager.js.html">PackedCircleManager.js</a>.
</p>
<!-- ============================== constructor summary ==================== -->
<table class="summaryTable" cellspacing="0" summary="A summary of the constructor documented in the class CAAT.modules.CircleManager.PackedCircleManager.">
<caption>Class Summary</caption>
<thead>
<tr>
<th scope="col">Constructor Attributes</th>
<th scope="col">Constructor Name and Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="attributes"> </td>
<td class="nameDescription" >
<div class="fixedFont">
<b><a href="../symbols/CAAT.modules.CircleManager.PackedCircleManager.html#constructor">CAAT.modules.CircleManager.PackedCircleManager</a></b>()
</div>
<div class="description"></div>
</td>
</tr>
</tbody>
</table>
<!-- ============================== properties summary ===================== -->
<!-- ============================== methods summary ======================== -->
<table class="summaryTable" cellspacing="0" summary="A summary of the methods documented in the class CAAT.modules.CircleManager.PackedCircleManager.">
<caption>Method Summary</caption>
<thead>
<tr>
<th scope="col">Method Attributes</th>
<th scope="col">Method Name and Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="attributes"> </td>
<td class="nameDescription">
<div class="fixedFont"><b><a href="../symbols/CAAT.modules.CircleManager.PackedCircleManager.html#addCircle">addCircle</a></b>(aCircle)
</div>
<div class="description">Adds a circle to the simulation</div>
</td>
</tr>
<tr>
<td class="attributes"> </td>
<td class="nameDescription">
<div class="fixedFont"><b><a href="../symbols/CAAT.modules.CircleManager.PackedCircleManager.html#circlesCanCollide">circlesCanCollide</a></b>(circleA, circleB)
</div>
<div class="description"></div>
</td>
</tr>
<tr>
<td class="attributes"> </td>
<td class="nameDescription">
<div class="fixedFont"><b><a href="../symbols/CAAT.modules.CircleManager.PackedCircleManager.html#forceCirclesToMatchDelegatePositions">forceCirclesToMatchDelegatePositions</a></b>()
</div>
<div class="description">Forces all circles to move to where their delegate position is
Assumes all targets have a 'position' property!</div>
</td>
</tr>
<tr>
<td class="attributes"> </td>
<td class="nameDescription">
<div class="fixedFont"><b><a href="../symbols/CAAT.modules.CircleManager.PackedCircleManager.html#getCircleAt">getCircleAt</a></b>(xpos, ypos, buffer)
</div>
<div class="description">Given an x,y position finds circle underneath and sets it to the currently grabbed circle</div>
</td>
</tr>
<tr>
<td class="attributes"> </td>
<td class="nameDescription">
<div class="fixedFont"><b><a href="../symbols/CAAT.modules.CircleManager.PackedCircleManager.html#handleBoundaryForCircle">handleBoundaryForCircle</a></b>(aCircle, boundsRule)
</div>
<div class="description"></div>
</td>
</tr>
<tr>
<td class="attributes"> </td>
<td class="nameDescription">
<div class="fixedFont"><b><a href="../symbols/CAAT.modules.CircleManager.PackedCircleManager.html#handleCollisions">handleCollisions</a></b>()
</div>
<div class="description">Packs the circles towards the center of the bounds.</div>
</td>
</tr>
<tr>
<td class="attributes"> </td>
<td class="nameDescription">
<div class="fixedFont"><b><a href="../symbols/CAAT.modules.CircleManager.PackedCircleManager.html#initialize">initialize</a></b>(overrides)
</div>
<div class="description"></div>
</td>
</tr>
<tr>
<td class="attributes"> </td>
<td class="nameDescription">
<div class="fixedFont"><b><a href="../symbols/CAAT.modules.CircleManager.PackedCircleManager.html#pushAllCirclesTowardTarget">pushAllCirclesTowardTarget</a></b>(aTarget)
</div>
<div class="description"></div>
</td>
</tr>
<tr>
<td class="attributes"> </td>
<td class="nameDescription">
<div class="fixedFont"><b><a href="../symbols/CAAT.modules.CircleManager.PackedCircleManager.html#removeCircle">removeCircle</a></b>(aCircle)
</div>
<div class="description">Removes a circle from the simulations</div>
</td>
</tr>
<tr>
<td class="attributes"> </td>
<td class="nameDescription">
<div class="fixedFont"><b><a href="../symbols/CAAT.modules.CircleManager.PackedCircleManager.html#removeExpiredElements">removeExpiredElements</a></b>()
</div>
<div class="description">Memory Management</div>
</td>
</tr>
<tr>
<td class="attributes"> </td>
<td class="nameDescription">
<div class="fixedFont"><b><a href="../symbols/CAAT.modules.CircleManager.PackedCircleManager.html#setBounds">setBounds</a></b>(x, y, w, h)
</div>
<div class="description">Accessors</div>
</td>
</tr>
<tr>
<td class="attributes"> </td>
<td class="nameDescription">
<div class="fixedFont"><b><a href="../symbols/CAAT.modules.CircleManager.PackedCircleManager.html#setNumberOfCollisionPasses">setNumberOfCollisionPasses</a></b>(value)
</div>
<div class="description"></div>
</td>
</tr>
<tr>
<td class="attributes"> </td>
<td class="nameDescription">
<div class="fixedFont"><b><a href="../symbols/CAAT.modules.CircleManager.PackedCircleManager.html#setNumberOfTargetingPasses">setNumberOfTargetingPasses</a></b>(value)
</div>
<div class="description"></div>
</td>
</tr>
<tr>
<td class="attributes"> </td>
<td class="nameDescription">
<div class="fixedFont"><b><a href="../symbols/CAAT.modules.CircleManager.PackedCircleManager.html#sortOnDistanceToTarget">sortOnDistanceToTarget</a></b>(circleA, circleB)
</div>
<div class="description">Helpers</div>
</td>
</tr>
</tbody>
</table>
<!-- ============================== events summary ======================== -->
<!-- ============================== constructor details ==================== -->
<div class="details"><a name="constructor"> </a>
<div class="sectionTitle">
Class Detail
</div>
<div class="fixedFont">
<b>CAAT.modules.CircleManager.PackedCircleManager</b>()
</div>
<div class="description">
</div>
</div>
<!-- ============================== field details ========================== -->
<!-- ============================== method details ========================= -->
<div class="sectionTitle">
Method Detail
</div>
<a name="addCircle"> </a>
<div class="fixedFont">
<b>addCircle</b>(aCircle)
</div>
<div class="description">
Adds a circle to the simulation
</div>
<dl class="detailList">
<dt class="heading">Parameters:</dt>
<dt>
<b>aCircle</b>
</dt>
<dd></dd>
</dl>
<hr />
<a name="circlesCanCollide"> </a>
<div class="fixedFont">
<b>circlesCanCollide</b>(circleA, circleB)
</div>
<div class="description">
</div>
<dl class="detailList">
<dt class="heading">Parameters:</dt>
<dt>
<b>circleA</b>
</dt>
<dd></dd>
<dt>
<b>circleB</b>
</dt>
<dd></dd>
</dl>
<hr />
<a name="forceCirclesToMatchDelegatePositions"> </a>
<div class="fixedFont">
<b>forceCirclesToMatchDelegatePositions</b>()
</div>
<div class="description">
Forces all circles to move to where their delegate position is
Assumes all targets have a 'position' property!
</div>
<hr />
<a name="getCircleAt"> </a>
<div class="fixedFont">
<b>getCircleAt</b>(xpos, ypos, buffer)
</div>
<div class="description">
Given an x,y position finds circle underneath and sets it to the currently grabbed circle
</div>
<dl class="detailList">
<dt class="heading">Parameters:</dt>
<dt>
<span class="light fixedFont">{Number}</span> <b>xpos</b>
</dt>
<dd>An x position</dd>
<dt>
<span class="light fixedFont">{Number}</span> <b>ypos</b>
</dt>
<dd>A y position</dd>
<dt>
<span class="light fixedFont">{Number}</span> <b>buffer</b>
</dt>
<dd>A radiusSquared around the point in question where something is considered to match</dd>
</dl>
<hr />
<a name="handleBoundaryForCircle"> </a>
<div class="fixedFont">
<b>handleBoundaryForCircle</b>(aCircle, boundsRule)
</div>
<div class="description">
</div>
<dl class="detailList">
<dt class="heading">Parameters:</dt>
<dt>
<b>aCircle</b>
</dt>
<dd></dd>
<dt>
<b>boundsRule</b>
</dt>
<dd></dd>
</dl>
<hr />
<a name="handleCollisions"> </a>
<div class="fixedFont">
<b>handleCollisions</b>()
</div>
<div class="description">
Packs the circles towards the center of the bounds.
Each circle will have it's own 'targetPosition' later on
</div>
<hr />
<a name="initialize"> </a>
<div class="fixedFont">
<b>initialize</b>(overrides)
</div>
<div class="description">
</div>
<dl class="detailList">
<dt class="heading">Parameters:</dt>
<dt>
<b>overrides</b>
</dt>
<dd></dd>
</dl>
<hr />
<a name="pushAllCirclesTowardTarget"> </a>
<div class="fixedFont">
<b>pushAllCirclesTowardTarget</b>(aTarget)
</div>
<div class="description">
</div>
<dl class="detailList">
<dt class="heading">Parameters:</dt>
<dt>
<b>aTarget</b>
</dt>
<dd></dd>
</dl>
<hr />
<a name="removeCircle"> </a>
<div class="fixedFont">
<b>removeCircle</b>(aCircle)
</div>
<div class="description">
Removes a circle from the simulations
</div>
<dl class="detailList">
<dt class="heading">Parameters:</dt>
<dt>
<b>aCircle</b>
</dt>
<dd>Circle to remove</dd>
</dl>
<hr />
<a name="removeExpiredElements"> </a>
<div class="fixedFont">
<b>removeExpiredElements</b>()
</div>
<div class="description">
Memory Management
</div>
<hr />
<a name="setBounds"> </a>
<div class="fixedFont">
<b>setBounds</b>(x, y, w, h)
</div>
<div class="description">
Accessors
</div>
<dl class="detailList">
<dt class="heading">Parameters:</dt>
<dt>
<b>x</b>
</dt>
<dd></dd>
<dt>
<b>y</b>
</dt>
<dd></dd>
<dt>
<b>w</b>
</dt>
<dd></dd>
<dt>
<b>h</b>
</dt>
<dd></dd>
</dl>
<hr />
<a name="setNumberOfCollisionPasses"> </a>
<div class="fixedFont">
<b>setNumberOfCollisionPasses</b>(value)
</div>
<div class="description">
</div>
<dl class="detailList">
<dt class="heading">Parameters:</dt>
<dt>
<b>value</b>
</dt>
<dd></dd>
</dl>
<hr />
<a name="setNumberOfTargetingPasses"> </a>
<div class="fixedFont">
<b>setNumberOfTargetingPasses</b>(value)
</div>
<div class="description">
</div>
<dl class="detailList">
<dt class="heading">Parameters:</dt>
<dt>
<b>value</b>
</dt>
<dd></dd>
</dl>
<hr />
<a name="sortOnDistanceToTarget"> </a>
<div class="fixedFont">
<b>sortOnDistanceToTarget</b>(circleA, circleB)
</div>
<div class="description">
Helpers
</div>
<dl class="detailList">
<dt class="heading">Parameters:</dt>
<dt>
<b>circleA</b>
</dt>
<dd></dd>
<dt>
<b>circleB</b>
</dt>
<dd></dd>
</dl>
<!-- ============================== event details ========================= -->
<hr />
</div>
<!-- ============================== footer ================================= -->
<div class="fineprint" style="clear:both">
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Thu Oct 27 2011 00:48:06 GMT+0200 (CEST)
</div>
</body>
</html>
| Irrelon/CAAT | documentation/jsdoc/symbols/CAAT.modules.CircleManager.PackedCircleManager.html | HTML | mit | 22,564 |
<!-- extend base layout -->
{% extends "backend/base.html" %}
{% block content %}
<div class="page-header">
<h1>{{ product.name }} <small><a href="{{ url_for('products.product_edit', id=product.id) }}" class="btn btn-primary btn-xs" >Edit</a></small></h1>
</div>
{% include "backend/flash.html" %}
<div class="row">
<div class="col-md-12">
<strong>Description:</strong>
<p>{{ product.description }}</p>
</div>
</div>
<div class="row">
<div class="col-md-2">
<p><strong>Reference: </strong><br>{{ product.reference }}</p>
</div>
<div class="col-md-2">
<p><strong>Supplier Reference: </strong><br>{{ product.supplier_reference }}</p>
</div>
<div class="col-md-2">
<p><strong>EAN: </strong><br>{{ product.ean }}</p>
</div>
</div>
<div class="row">
<div class="col-md-1">
<p><strong>Unit: </strong><br>{{ product.unit }}</p>
</div>
<div class="col-md-1">
<p><strong>Packing: </strong><br>{{ product.packing }} {{ product.unit }}</p>
</div>
<div class="col-md-1">
<p><strong>Conditioning: </strong><br>{{ product.conditioning }} {{ product.conditioning_unit }}</p>
</div>
</div>
<div class="row">
<div class="col-md-1">
<p><strong>Buying Price: </strong><br>{{ product.buying_price }} €</p>
</div>
<div class="col-md-1">
<p><strong>Margin: </strong><br>{{ margin }} %</p>
</div>
<div class="col-md-1">
<p><strong>Price b/ VAT: </strong><br>{{ product.selling_price_no_tax }} €</p>
</div>
<div class="col-md-1">
<p><strong>VAT: </strong><br>{{ product.vat.amount }} %</p>
</div>
<div class="col-md-1">
<p><strong>Price: </strong><br>{{ product.selling_price }} €</p>
</div>
</div>
<div class="row">
<div class="col-md-2">
<p><strong>Suppplier(s):</strong></p>
<ul>
{% for supplier in product.supplier %}
<li><a href="{{ url_for('suppliers.suppliers_view', id=supplier.id) }}">{{ supplier.name }}</a></li>
{% endfor %}
</ul>
</div>
<div class="col-md-2">
<p><strong>Category: </strong><br>{{ product.category.name }}</p>
</div>
</div>
<div class="row">
<div class="col-md-12">
<ul class="nav nav-tabs" role="tablist">
<li role="presentation" class="active"><a href="#stock" aria-controls="stock" role="tab" data-toggle="tab">Stock History</a></li>
<li role="presentation"><a href="#price" aria-controls="price" role="tab" data-toggle="tab">Price History</a></li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
<div role="tabpanel" class="tab-pane active" id="stock">
<ul>
{% for stock in product.stock_history %}
<li>{{ stock.date_created }}: {{ stock.amount }}</a></li>
{% endfor %}
</ul>
</div>
<div role="tabpanel" class="tab-pane" id="price">...</div>
</div>
</div>
</div>
{% endblock %}
{% block script %}
{% endblock %} | oeilgauche/vicuna | app/templates/products/view.html | HTML | mit | 2,777 |
<!DOCTYPE html>
<html>
<head>
<script src="p5.js"></script>
<script src="sketch.js"></script>
<style> body {padding: 0; margin: 0;} </style>
</head>
<body><p>Play a game of Snake using the up, down, left, and right arrow keys. Don't eat yourself or run off the edge!</p>
</body>
</html> | NortySpock/snake_rainbow_fun | index.html | HTML | mit | 304 |
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>Reactive Systems - Overview</title>
<meta name="description" content="Reactive Systems - Overview">
<meta name="author" content="Guillermo Polito">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/reveal.min.css">
<link rel="stylesheet" href="css/theme/moon.css" id="theme">
<!-- For syntax highlighting -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<link rel="stylesheet" href="css/custom.css">
<!-- If the query includes 'print-pdf', include the PDF print sheet -->
<script>
if( window.location.search.match( /print-pdf/gi ) ) {
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = 'css/print/pdf.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
}
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<aside style="display: block; position: fixed; bottom: 20px; left: 20px; z-index: 30;">
<a href="http://www.pyxis.com.uy"><img src="assets/pyxis_color_96x35.png"></a>
</aside>
<aside style="display: block; position: fixed; bottom: 20px; left: 125px; z-index: 30;">
<a href="http://www.aquait.com.uy/"><img width="73px" style="margin-bottom: 6px;" src="assets/nuevo-logo-aquait-medium.png"></a>
</aside>
<div class="reveal">
<div class="slides">
<section>
<h1>Reactive <br>Systems</h1>
<h2 style="color: orange;">Overview</h2>
<br/>
<h4>Guillermo Polito</h4>
<p><small><a href="http://twitter.com/gpolito">@gpolito</a> / <a href="http://github.com/gpolito/Reactive-Programming">slides at github</a></small>
</p>
</section>
<section>
<h2>Why Reactive?</h2>
<a href="http://internetlivestats.com/">internetlivestats.com</a>
</section>
<section>
<h2>Why Reactive?</h2>
<h3 style="color: orange;">Quick summary. In 10 years:</h3>
<table>
<thead>
<tr>
<th></th>
<th><strong>2005</strong></th>
<th><strong>2015</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Internet users</strong></td>
<td><span style="color: pink;">1000 millions</span></td>
<td>3000 millions</td>
</tr>
<tr>
<td><strong>YouTube</strong></td>
<td>was born on February, 2005</td>
<td><span style="color: pink;">more than 1000 million users</span></td>
</tr>
<tr>
<td><strong>Facebook</strong></td>
<td>5.5 million active users</td>
<td><span style="color: pink;">1.380 million active users</span></td>
</tr>
<tr>
<td><strong>Twitter</strong></td>
<td>wasn't born yet</td>
<td>288 million active users</td>
</tr>
</tbody>
</table>
<aside class="notes">
- primer columna primero, luego la segunda
</aside>
</section>
<section>
<h2>Why Reactive?</h2>
<h3 style="color: orange;"> Some things have changed during this years...</h3>
<table>
<thead>
<tr>
<th></th>
<th><span style="color: #009B77">Almost yesterday</span></th>
<th><span style="color: #009B77">Today</span></th>
</tr>
</thead>
<tbody>
<div>
<tr>
<td>Server nodes</td>
<td>10's</td>
<td>1000's</td>
</tr>
<tr >
<td>RAM</td>
<td>expensive</td>
<td>cheap</td>
</tr>
<tr>
<td>Network</td>
<td>slow</td>
<td>fast</td>
</tr>
</div>
<div>
<tr>
<td>Data volume</td>
<td>GBs</td>
<td>TBs -> PBs</td>
</tr>
<tr>
<td>Response times</td>
<td>seconds</td>
<td>milliseconds</td>
</tr>
<tr>
<td>Maintenance downtimes</td>
<td>hours</td>
<td>none</td>
</tr>
</div>
</tbody>
</table>
<aside class="notes">
- hardware
- user requirements
</aside>
</section>
<section>
<h2>Why Reactive?</h2>
<h2 style="color: orange">Today's demands are simply not met by yesterday’s software architectures</h2>
<h2 class="fragment" style="color: orange">A new coherent approach to Systems Architecture is needed...</h2>
<aside class="notes">
lo q vimos hasta ahora fue un pantallazo de los numeros de la web hoy en dia, en donde el tráfico es impresionante. Vimos q el hardware ha mejorado y abaratado. Los requerimientos de los usuarios son muy exigentes.
Con las arquitecuras q conocemos hoy, sobre todo las MVC q utilizan un modelo de concurrencia basado en threads con mem compartida, se nos es muy complicado o casi imposible poder hacer frente a estos requerimientos.
Por lo general se utilizan mecanismos muy complicados para poder emparchar esta situación.
</aside>
</section>
<section data-background="#59CDEA">
<h2 style="color: white;">Reactive Systems</h2>
<h3 style="color: white;">Traits</h3>
<img style="border: none; box-shadow: none;" src="assets/reactive-traits.png" />
<strong><a style="color: white;" href="http://reactivemanifesto.org/">reactivemanifesto.org</a></strong>
<aside class="notes">
Organisations working in disparate domains are independently discovering patterns for building software that look the same. These systems are more robust, more resilient, more flexible and better positioned to meet modern demands.
These changes are happening because application requirements have changed dramatically in recent years.
It is time to apply these design principles consciously from the start instead of rediscovering them each time.
</aside>
</section>
<!-- Responsive -->
<section data-background="#C55300" data-background-transition="zoom">
<h2>Responsive</h2>
<blockquote style="color: white;">
“A responsive system is quick to react to all users — under blue skies and grey skies — in order to ensure a consistently positive user experience.”
</blockquote>
</section>
<section>
<h2>Responsive Systems</h2>
<div class="fragment">
<h3 style="color: orange">offer:</h3>
<ul>
<li >rapid and consistent response times</li>
<li>reliable upper bounds to deliver a consistent QoS</li>
</ul>
<br><br>
</div>
<div class="fragment">
<h3 style="color: orange">should:</h3>
<ul>
<li class="fragment">detect problems quickly and dealt with them effectively</li>
</ul>
</div>
<aside class="notes">
</aside>
</section>
<!-- Resilience -->
<section data-background="#59CDEA">
<h2 style="color: white;">Reactive Systems</h2>
<h3 style="color: white;">Traits</h3>
<img style="border: none; box-shadow: none;" src="assets/reactive-traits.png" />
<strong><a style="color: white;" href="http://reactivemanifesto.org/">reactivemanifesto.org</a></strong>
</section>
<section data-background="#C55300" data-background-transition="zoom">
<h2>Resilient</h2>
<blockquote style="color: white;">
“The ability of a sustance or object to spring back into shape.”<br/>
“The capacity to recover quickly from difficulties.”
</blockquote>
<p style="color: white;">Merriam Webster</p>
<aside class="notes">Merriam–Webster Inc. de Springfield, Massachusetts, es una editorial estadounidense que publica libros de referencia, sobre todo diccionarios, que tienen su origen en el diccionario An American Dictionary of the English Language, de Noah Webster, publicado a su vez en 1828.</aside>
</section>
<section>
<h2>Resilient</h2>
<h3 style="color: orange;">The system should be responsive <br>in the face of failure.</h3>
<h2 class="fragment" style="color: brown;">Failure != Error</h2>
<h3 class="fragment"><br>Examples of failures:</h3>
<ul>
<li class="fragment">program defects causing corrupted internal state</li>
<li class="fragment">hardware malfunction</li>
<li class="fragment">network failures</li>
<li class="fragment">troubles with external services</li>
</ul>
<aside class="notes">
A failure is an unexpected event within a service that prevents it from continuing to function normally. A failure will generally prevent responses to the current, and possibly all following, client requests. This is in contrast with an error, which is an expected and coded-for condition—for example an error discovered during input validation, that will be communicated to the client as part of the normal processing of the message.
</aside>
</section>
<section data-background="#FFFFFF">
<h2 style="color: #002B36">Resilient - how? </h2>
<h2 style="color: orange;">Failure Recovery in OOP</h2>
<img class="fragment" style="border: none; box-shadow: none; width: 60%" src="assets/oo-graph.png" />
</section>
<section>
<h2>Resilient - how? </h2>
<h2 style="color: orange;">Failure Recovery in OOP </h2>
<ul>
<li>single thread of control</li>
<li>if the thread blows up => you are screwed</li>
<li>no global organization of error handling </li>
<li>defensive programming tangled with business logic, <br> scattered around the code</li>
</ul>
</section>
<section>
<h1 style="color: orange;">Resilience is by design</h1>
<h1 class="fragment">ok... but how?</h1>
</section>
<section>
<h2 style="color: orange;">Resilience is by design - How?</h2>
<ol style="font-size: 130%"><br>
<li>containment</li> <br>
<li>delegation</li><br>
<li>isolation</li><br>
</ol>
<br/>
<br/>
<p class="fragment"><em>let's review this concepts...</em></p>
<aside class="notes">
Cómo vamos a alcanzar la resiliencia? Contando con compartimientos que contengan a las fallas, y q aislen a los componentes entre si, permitiendo que partes del sistema puedan caerse y recuperarse sin comprometer al sistema entero.
La recuperación de cada componente es delegado a otro componente externo. El cliente no es responsable de manejar las fallas.
La alta disponibilidad es asegurada replicando componentes donde sea necesario.
</aside>
</section>
<section>
<h2>Resilience is by design - How?</h2>
<ol style="font-size: 130%">
<br>
<li style="color: orange;"><strong>containment:</strong><br><br>
<span><em style="color: pink;">=> bulkheads</em></span><br>
<span><em style="color: pink;">=> circuit breaker</em></span>
</li>
<br>
<li style="color: orange;"><strong>delegation</strong><br><br>
<span><em style="color: pink;">=> supervision</em></span>
</li>
</ol>
</section>
<section>
<h2>Resilience is by design - How?</h2>
<ol start="3">
<li style="color: orange;"> <strong>isolation (decoupling, both in time and space)</strong>
<br><br>
<span style="color: white;">
<span style="color: skyblue">- in time:</span>
<br>sender and receiver don't need to be present at the same time for communicate
</span>
<br>
<span>
<em style="color: pink;">=> message-driven arquitecture</em>
</span> <br><br>
<span style="color: white;">
<span style="color: skyblue">- in space (defined as <em>Location Transparency</em>):</span>
<br>the sender and receiver don't have to run in the same process, and this might change during application's lifetime
</span> <br>
<span>
<em style="color: pink;">=> message-driven arquitecture</em>
</span>
</li>
</ol>
</section>
<section data-background="assets/ship.png" data-background-repeat="repeat" data-background-size="1200px">
<h1 style="color : black;">Bulkheads</h1>
<h1 style="color : black;">+</h1>
<h1 style="color : black;">Supervison</h1>
<aside class="notes">una vez q sabemos las propiedades q tenemos q tener en el diseño para lograr la resiliencia, vamos a revisar cada una de éstas.</aside>
</section>
<section>
<h2>Bulkheads help us to:</h2>
<ol>
<li class="fragment"><em>isolate the failure</em></li>
<li class="fragment"><em>compartmentalize</em></li>
<li class="fragment"><em>manage failure locally</em></li>
<li class="fragment"><em>avoid cascading failures</em></li>
</ol>
<br>
<br>
<p class="fragment">this concept should be used together with <span style="color: orange;">supervison!</span></p>
</section>
<section data-background="assets/burns.jpg">
<h1 style="color: white;">Supervison</h1>
</section>
<section data-background="#FFFFFF">
<h2 style="color: #002B36">Supervison</h2>
<h3 class="fragment" style="color: orange;">Core Concept</h3>
<img class="fragment" style="border: none; box-shadow: none;" src="assets/supervisor-1.png">
<aside class="notes">
Supervision means that normal requests and responses (including negative ones such as validation errors) flow separately from failures: while the former are exchanged between the user and the service, the latter travel from the service to its supervisor.
</aside>
</section>
<section>
<h2>Supervisor hierarchies with Actors</h2>
<img style="border: none; box-shadow: none;" src="assets/supervisor-h-1.png">
</section>
<section>
<h2>Supervisor hierarchies with Actors</h2>
<img style="border: none; box-shadow: none;" src="assets/supervisor-h-2.png">
</section>
<section>
<h2>Supervisor hierarchies with Actors</h2>
<h3 style="color: orange;">Configuration in Akka</h3>
<pre><code class="scala" contenteditable>
import akka.actor.OneForOneStrategy
import akka.actor.SupervisorStrategy._
import scala.concurrent.duration._
override val supervisorStrategy =
OneForOneStrategy(maxNrOfRetries = 10, withinTimeRange = 1 minute) {
case _: ArithmeticException => Resume
case _: NullPointerException => Restart
case _: IllegalArgumentException => Stop
case _: Exception => Escalate
}
</code></pre>
</section>
<section data-background="assets/electricity.jpg">
<h1 style="color: black;">Circuit Breaker</h1>
</section>
<section>
<h2>Circuit Breaker</h2>
<h3 style="color: orange;">PROBLEM - Example Situation</h3>
<ul>
<li class="fragment">web app interacting with a remote WS</li>
<li class="fragment">remote WS is overloaded, and its DB takes a long time to respond with a fail</li>
<li class="fragment">=> WS calls fail after a long period of time</li>
<li class="fragment">=> web users noticed that form submissions takes time to complete</li>
<li class="fragment">=> web users start to click the refresh button adding more requests!</li>
<li class="fragment">=> web app fails due to resource exhaustion, affecting all users across the site</li>
</ul>
<p class="fragment" style="color: orange;"><em>failures in external dependencies shouldn' t bring down an entire app</em></p>
</section>
<section>
<h2>Circuit Breaker</h2>
<h3 style="color: orange;">Solution Proposal</h3>
<ol>
<li class="fragment">monitor response times</li>
<li class="fragment">if time consistently rises above a threshold, either:</li>
<ol type="a">
<li class="fragment"><em>fail fast</em> approach, or...</li>
<li class="fragment">route following requests to an alternative service</li>
</ol>
<li class="fragment">monitor the original service</li>
<li class="fragment"><em>if the service is back in shape</em>, restore to the original state</li>
<li class="fragment"><em>if not</em>, continue with the same approach</li>
</ol>
</section>
<section data-background="#FFFFFF">
<h2 style="color: #002B36">Circuit Breaker</h2>
<h3 style="color: orange;">Akka Implementation</h3>
<ul>
<li class="fragment">implements <em>fail fast</em> approach</li>
<li class="fragment">provide stability</li>
<li class="fragment">prevent cascading failures in distributed systems</li>
</ul>
<img class="fragment" style="border: none; box-shadow: none;" src="assets/circuit-breaker-states.png">
</section>
<section data-background="#FFFFFF">
<h2 style="color: #002B36">Circuit Breaker</h2>
<h3 style="color: orange;">Akka Implementation</h3>
<h3 style="color: #009B77">configuration</h3>
<ul>
<li class="fragment"><em>max. number of failures</em></li>
<li class="fragment"><em>call timeout</em>: response time threshold</li>
<li class="fragment"><em>reset timeout</em>: we'll see this later</li>
</ul>
</section>
<section data-background="#FFFFFF">
<h2 style="color: #002B36">Circuit Breaker</h2>
<h3 style="color: orange;">Akka Implementation</h3>
<h3 style="color: #009B77">Closed state (normal operation)</h3>
<img class="fragment" style="border: none; box-shadow: none;" src="assets/circuit-breaker-states.png">
<ul>
<li class="fragment">Exceptions or calls exceeding the configured <em>callTimeout</em> increment a failure counter</li>
<li class="fragment">Successes reset the failure count to 0 (zero)</li>
<li class="fragment">When the failure counter reaches a <em>maxFailures</em> count, the breaker is tripped into <em>Open State</em></li>
</ul>
</section>
<section data-background="#FFFFFF">
<h2 style="color: #002B36">Circuit Breaker</h2>
<h3 style="color: orange;">Akka Implementation</h3>
<h3 style="color: #009B77">Open State</h3>
<img class="fragment" style="border: none; box-shadow: none;" src="assets/circuit-breaker-states.png">
<ul>
<li class="fragment">All calls fail-fast with a <em>CircuitBreakerOpenException</em></li>
<li class="fragment">After the configured <em>resetTimeout</em>, the circuit breaker enters a <em>Half-Open State</em></li>
</ul>
</section>
<section data-background="#FFFFFF">
<h2 style="color: #002B36">Circuit Breaker</h2>
<h3 style="color: orange;">Akka Implementation</h3>
<h3 style="color: #009B77">Half-Open State</h3>
<img class="fragment" style="border: none; box-shadow: none;" src="assets/circuit-breaker-states.png">
<ul>
<li class="fragment">The first call attempted is allowed through without failing fast</li>
<li class="fragment">All other calls fail-fast with an exception just as in <em>Open state</em></li>
<li class="fragment">If the first call succeeds, the breaker is reset back to <em>Closed state</em></li>
<li class="fragment">If the first call fails, the breaker is tripped again into the <em>Open state</em> for another full <em>resetTimeout</em></li>
</ul>
</section>
<section>
<h2>Circuit Breaker</h2>
<h3 style="color: orange;">Akka Implementation</h3>
<pre><code class="scala" contenteditable>
import akka.pattern.CircuitBreaker
def dangerousCall: String = "This really isn't that dangerous"
val breaker =
CircuitBreaker(system.scheduler,
maxFailures = 5,
callTimeout = 10.seconds,
resetTimeout = 1.minute)
def dangerous: Future[String] =
breaker.withCircuitBreaker(Future(dangerousCall))
</code></pre>
</section>
<section data-background="assets/water_pumping.jpg">
<h1 style="color: black;">Back Pressure</h1>
</section>
<section data-background="#FFFFFF">
<h2 style="color: orange;">Problem Description</h2>
<p class="fragment" style="color: #009B77"><strong>speed(publisher) > speed(suscriber)</strong></p>
<img class="fragment" style="border: none; box-shadow: none;" src="assets/back-pressure-0.png" >
<aside class="notes">
when a component is under stress it might fail catastrophically or drop messages in an uncontrolled fashion. To be more resilient, the system as a whole needs to react to avoid this kind of situations
</aside>
<p class="fragment" style="color: #009B77">bounded buffer => drop messages + require re-sending</strong></p>
<p class="fragment" style="color: #009B77">unbounded buffer => buffer overflow </strong></p>
</section>
<section data-background="#FFFFFF">
<h2 style="color: orange;">Back Pressure - Solution</h2>
<p><strong>speed(publisher) < speed(suscriber)</strong></p>
<img style="border: none; box-shadow: none;" src="assets/back-pressure.png">
<aside class="notes">Back pressure: the component should communicate that is under stress to upstream components, so they can start reducing the load
</aside>
</section>
<section data-background="#FFFFFF">
<h2 style="color: orange;">Back Pressure</h2>
<p style="color: #009B77">this mechanism is included into the <strong>Reactive Stream</strong> specification</p>
<p></p>
<img width="50%" style="border: none; box-shadow: none;" src="assets/reactive-streams-page.png">
<p><a style="color: #009B77" href="http://reactive-streams.org/">http://reactive-streams.org/</a></p>
</section>
<section>
<h2>Reactive Streams</h2>
<p class="fragment" style="color: orange">Stream processing on the JVM:</p>
<ul>
<li class="fragment">Asynchronous</li>
<li class="fragment">Back-pressured</li>
<li class="fragment">Standarized</li>
</ul>
<br><br>
<p class="fragment" style="color: orange">Available implementations:</p>
<ul>
<li class="fragment">Akka Streams</li>
<li class="fragment">Reactor Composable (DSL for groovy, clojure)</li>
<li class="fragment">RxJava</li>
<li class="fragment">Ratpack</li>
</ul>
</section>
<section>
<h2>Reactive Streams</h2>
<h2 style="color: orange">Akka Streams Example</h2>
<pre><code class="scala" contenteditable>
implicit val system = ActorSystem("Sys")
val mat = FLowMaterializer(...)
Flow(text.split("" "").toVector).
map(word => word.toUpperCase).
foreach(transformed => println(transformed)).
onComplete(mat) {
case Success(_) => ...; system.shutdown();
case Failure(e) => ...; system.shutdown();
}
</code></pre>
</section>
<!-- Elastic -->
<section data-background="#59CDEA">
<h2 style="color: white;">Reactive Systems</h2>
<h3 style="color: white;">Traits</h3>
<img style="border: none; box-shadow: none;" src="assets/reactive-traits.png" />
<strong><a style="color: white;" href="http://reactivemanifesto.org/">reactivemanifesto.org</a></strong>
</section>
<section data-background="#C55300" data-background-transition="zoom">
<h2 style="color: black">Elasticity</h2>
<div class="fragment">
<h1>Scalability</h1>
<h1>+</h1>
<h1>automatic resource management</h1>
</div>
</section>
<section data-background="#FFFFFF" data-background-transition="zoom">
<p style="font-size: 150%; color: black; text-transform: none;">slidesLanguageService.<br><span style="color: brown">setLang</span>(<span style="color: cornflowerblue">Lang.SPANGLISH</span>)</p>
</section>
<section>
<h2>Scalability - Qué significa? - (1)</h3>
<div class="fragment" style= "color: orange; font-size: 200%">
<p>la performance del sistema</p>
<p>es proporcional</p>
<p>a los recursos reservados</p>
</div>
</section>
<section>
<h2>Scalability - Qué significa? - (2)</h3>
<div class="fragment" style= "color: orange">
<h1 style= "color: orange">Scale OUT & IN <span style="color: grey; font-size: 70%">(horizontal)</span></h1>
<h2 style= "color: orange"> + </h2>
<h1 style= "color: orange">Scale UP & DOWN <span style="color: grey; font-size: 70%">(vertical)</span></h1>
</div>
</section>
<section>
<h2>Scalability</h2>
<h3 style= "color: orange;">Por qué es necesario?</h3>
<ul>
<li class="fragment">por ejemplo: en el dominio eCommerce:</li>
<p class="fragment">- los picos de tráfico mas altos se dan cuando cuando estás vendiendo bien</p>
<p class="fragment">- durante un pico de tráfico la gente basicamente <em>quiere darte su dinero</em> :) </p>
</ul>
</section>
<section>
<h1 style="color: orange">Cómo lo logramos?</h1>
<ul style="font-size: 120%">
<li>Never Block -> Go Async</li><br>
<li>Share Nothing -> Use Immutable Data</li><br>
<li>Location Transparency</li><br>
</ul>
</section>
<section data-background="white">
<h2 style="color: orange">Never Block -> Go Async</h2>
<img style="border: none; box-shadow: none;" src="assets/contention.png">
</section>
<section data-background="white">
<h2 style="color: orange">Share Nothing -> Use Immutable Data</h2>
<img style="border: none; box-shadow: none; width: 74%" src="assets/amdahl.png">
</section>
<section>
<h2>Location Transparency</h2>
<h1 style= "color: orange">Scale OUT = Scale UP</h1>
<aside class="notes">
- la transparencia de localización permite el desacoplamiento a nivel del espacio
- dos componentes se pueden comunicar si conocer donde estan ubicados.
- permite adaptar la topologia del sistema dependiendo del uso
- es un concepto clave para poder escalar bajo demanda
- como estamos haciendo computación distribuida, no hay diferencia conceptual entre comunicarse con un componente en el mismo nodo o en otro nodo del cluster
</aside>
</section>
<section>
<h1>la <span style="color: orange">Elasticidad</span></h1>
<h1>requiere de una </h1>
<h1 style="color: orange">Message-driven Arquitecture</h1>
</section>
<!-- Message Driven -->
<section data-background="#59CDEA">
<h2 style="color: white;">Reactive Systems</h2>
<h3 style="color: white;">Traits</h3>
<img style="border: none; box-shadow: none;" src="assets/reactive-traits.png" />
<strong><a style="color: white;" href="http://reactivemanifesto.org/">reactivemanifesto.org</a></strong>
</section>
<section data-background="#C55300" data-background-transition="zoom">
<h1>Message Driven Arquitecture</h1>
</section>
<section>
<h2>Message Driven</h2>
<h3 style="color: orange;">Por qué es importante?</h3>
<p class="fragment">la comunicación asincrónica basada en pasaje de mensajes otorga/permite:</p>
<ul>
<li class="fragment"><strong style="color: pink;">bajo acoplamiento</strong></li>
<li class="fragment"><strong style="color: pink;">aislamiento</strong></li>
<li class="fragment"><strong style="color: pink;">location transparency</strong></li>
<li class="fragment"><strong style="color: pink;">mantenibilidad y flexibilidad para evolucionar</strong> - interfaces enfocadas en el contenido de la comunicación</li>
<li class="fragment"><strong style="color: pink;">lower latency & higher throughput</strong></li>
<li class="fragment"><strong style="color: pink;">scale up & out</strong></li>
<li class="fragment"><strong style="color: pink;">load management and flow control</strong> - a través del monitoreo de colas de mensaje y aplicando back-pressure</li>
</ul>
<aside class="notes"></aside>
</section>
<!-- End -->
<section data-background="#59CDEA">
<h2 style="color: white;">Reactive Systems</h2>
<h3 style="color: white;">Traits</h3>
<img style="border: none; box-shadow: none;" src="assets/reactive-traits.png" />
<strong><a style="color: white;" href="http://reactivemanifesto.org/">reactivemanifesto.org</a></strong>
</section>
<section>
<h2>Qué posibles tecnologías cumplen con todos estos requerimientos?</h2>
<table class="fragment">
<thead>
<tr>
<th><span style="color: orange;">Feature</span></th>
<th><span style="color: orange;">Akka</span></th>
</tr>
</thead>
<tbody>
<tr>
<td>containment (bulkheads)</td>
<td>yes (actors)</td>
</tr>
<tr>
<td>asynchronous & non blocking message-passing</td>
<td>yes</td>
</tr>
<tr>
<td>fault tolerance</td>
<td>yes (supervision)</td>
</tr>
<tr>
<td>back-pressure</td>
<td>yes (by using Akka Streams)</td>
</tr>
<tr>
<td>circuit breaker</td>
<td>yes</td>
</tr>
<tr>
<td>location transparency</td>
<td>yes (ActorRef concept)</td>
</tr>
</tbody>
</table>
</section>
<section>
<h1>Referencias</h1>
<p><a href="http://reactivemanifesto.org/">reactivemanifesto.org</a></p>
<p><a href="http://www.manning.com/kuhn/">Reactive Design Patterns - Roland Kuhn and Jamie Allen</a></p>
<p><a href="https://medium.com/reactive-programming/what-is-reactive-programming-bc9fa7f4a7fc">Kevin Webber - What is Reactive Programming?</a></p>
<p><a href="http://www.slideshare.net/jboner/going-reactive-eventdriven-scalable-resilient-systems">Jonas Boner - Go Reactive: Event-Driven, Scalable, Resilient & Responsive Systems</a></p>
<p><a href="http://internetlivestats.com/">internetlivestats.com</a></p>
<p><a href="http://www.slideshare.net/ktoso/reactive-stream-processing-with-akka-streams">Reactive Stream Processing with Akka Streams</a></p>
<p><a href="http://reactivestreams.org/">reactivestreams.org</a></p>
</section>
<section data-background="#000000">
<img style="border: none; box-shadow: none; width: 100%" src="assets/thats-all.gif">
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.min.js"></script>
<script>
// Full list of configuration options available here:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
mouseWheel: true,
theme: Reveal.getQueryHash().theme, // available themes are in /css/theme
transition: Reveal.getQueryHash().transition || 'default', // default/cube/page/concave/zoom/linear/fade/none
// Parallax scrolling
// parallaxBackgroundImage: 'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg',
// parallaxBackgroundSize: '2100px 900px',
// Optional libraries used to extend on reveal.js
dependencies: [
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } },
{ src: 'plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } }
]
});
</script>
</body>
</html>
| gpolito/Reactive-Programming | index.html | HTML | mit | 31,974 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>I Know True Is This Much</title>
<meta name="viewport" content="width=device-width">
<meta name="description" content="Software Engineer specializing in Python and JavaScript.">
<link rel="canonical" href="https://rluckom.github.io/software%20craftsmanship/2015/02/10/I-Know-True-Is-This-Much/">
<!-- Custom CSS & Bootstrap Core CSS - Uses Bootswatch Flatly Theme: http://bootswatch.com/flatly/ -->
<link rel="stylesheet" href="/style.css">
<!-- Custom Fonts -->
<link rel="stylesheet" href="/css/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="/css/dogwood.css">
<link rel="stylesheet" href="/css/gol.css">
<link href="//fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href="//fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body id="page-top" class="index">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#page-top">Raphael Luckom</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="hidden">
<a href="#page-top"></a>
</li>
<li class="page-scroll">
<a href="#portfolio">Portfolio</a>
</li>
<li class="page-scroll">
<a href="#about">About</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Header -->
<header>
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="intro-text">
<span class="name">Raphael Luckom</span>
<hr class="star-light">
<span class="skills">Software Engineer - Python - JavaScript</span>
</div>
</div>
</div>
</div>
</header>
<!--
-->
`
<!-- About Section -->
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>About</h2>
<hr class="star-primary">
</div>
</div>
<div class="row">
<div class="col-lg-12 text-center">
<p>Software engineer specializing in Python, with experience
writing production code for complex robot systems in Python,
Java, JavaScript, and C++. Comfortable taking on new
responsibilities as needed and excited to learn new skills
and techniques. Proficient at the command line in Linux.</p>
</div>
</div>
</div>
</section>
<!-- Portfolio Grid Section -->
<section class="success" id="portfolio">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Portfolio</h2>
<hr class="star-light">
</div>
</div>
<div class="row">
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal-5" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/circle.png" class="img-responsive" alt="Black circle on white background">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal-1" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/ansible_ubuntu.png" class="img-responsive" alt="image-alt">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal-0" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/mandelbuddy.png" class="img-responsive" alt="image-alt">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal-2" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/restoration.png" class="img-responsive" alt="image-alt">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal-3" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/pov_via_pwm.png" class="img-responsive" alt="image-alt">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal-4" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/GOL.png" class="img-responsive" alt="image-alt">
</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="text-center">
<div class="footer-above">
<div class="container">
<div class="row">
<div class="footer-col col-md-4">
<h3>Location</h3>
<p>
Salem, MA <br>
</p>
</div>
<div class="footer-col col-md-4">
<h3>Around the Web</h3>
<ul class="list-inline">
<li>
<a href="http://linkedin.com/in/raphaelluckom" class="btn-social btn-outline"><i class="fa fa-fw fa-linkedin"></i></a>
</li>
<li>
<a href="http://stackoverflow.com/users/2781226/tasteslikelemons" class="btn-social btn-outline"><i class="fa fa-fw fa-stack-overflow"></i></a>
</li>
<li>
<a href="http://github.com/rluckom" class="btn-social btn-outline"><i class="fa fa-fw fa-github"></i></a>
</li>
</ul>
</div>
<div class="footer-col col-md-4">
<h3>Credits</h3>
<p>Freelance is a free to use, open source Bootstrap theme created by <a href="http://startbootstrap.com">Start Bootstrap</a>.</p>
</div>
</div>
</div>
</div>
<div class="footer-below">
<div class="container">
<div class="row">
<div class="col-lg-12">
Copyright © Raphael Luckom 2015
</div>
</div>
</div>
</div>
</footer>
<!-- Scroll to Top Button (Only visible on small and extra-small screen sizes) -->
<div class="scroll-top page-scroll visible-xs visible-sm">
<a class="btn btn-primary" href="#page-top">
<i class="fa fa-chevron-up"></i>
</a>
</div>
<!-- Portfolio Modals -->
<div class="portfolio-modal modal fade" id="portfolioModal-5" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>I Know True Is This Much</h2>
<hr class="star-primary">
<img src="img/portfolio/circle.png" class="img-responsive img-centered" alt="Black circle on white background">
<p>Python is my strongest language, but it's underrepresented on my github because most of what I've done has been for employers. This is a <a href="https://github.com/RLuckom/i-know-true-is-this-much">set of tests</a> in Python that illustrate interesting situations, edge cases, and behaviors that I've encountered. Forks and pull requests welcome.</p>
<ul class="list-inline item-details">
<li>Source:
<strong><a href="https://github.com/RLuckom/i-know-true-is-this-much">Source on Github</a>
</strong>
</li>
<li>Date:
<strong>February 2015</strong>
</li>
<li>Category:
<strong>Software Craftsmanship</strong>
</li>
</ul>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="portfolioModal-1" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>Ansible Wordpress</h2>
<hr class="star-primary">
<img src="img/portfolio/ansible_ubuntu.png" class="img-responsive img-centered" alt="image-alt">
<p>I was making a WordPress site for a friend and wanted a quick way to deploy the work in progress to a DigitalOcean droplet. This ansible playbook takes a mysqldump and .tgz of a wp-content directory and recreates the site on a fresh Ubuntu 14.x install in one step.</p>
<ul class="list-inline item-details">
<li>Source:
<strong><a href="https://github.com/RLuckom/ansible_wordpress">Source on Github</a>
</strong>
</li>
<li>Date:
<strong>February 2015</strong>
</li>
<li>Category:
<strong>DevOps</strong>
</li>
</ul>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="portfolioModal-0" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>Mandelbuddy</h2>
<hr class="star-primary">
<img src="img/portfolio/mandelbuddy.png" class="img-responsive img-centered" alt="image-alt">
<p>MandelBuddy is a short program I wrote in JavaScript to help me understand fractals. It draws the <a href="http://en.wikipedia.org/wiki/Mandelbrot_set">Mandelbrot set</a> on a designated canvas, coloring the pixels based on how many steps it takes to determine if they are in the set.</p>
<ul class="list-inline item-details">
<li>Source:
<strong><a href="https://github.com/RLuckom/mandelbuddy">Source on Github</a>
</strong>
</li>
<li>Date:
<strong>August 2014</strong>
</li>
<li>Category:
<strong>Web Development</strong>
</li>
</ul>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="portfolioModal-2" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>Restoration Slider</h2>
<hr class="star-primary">
<img src="img/portfolio/restoration.png" class="img-responsive img-centered" alt="image-alt">
<p>My fiancee wanted an interactive way to demonstrate the value her art restoration business delivers to customers. I made this JavaScript widget to show detailed before and after views of the artworks. Use the slider in the middle of the image to swipe between the before and after images. See examples at the <a href="http://alliedconservation.com/just-for-fun/">Allied Conservation</a> website.</p>
<ul class="list-inline item-details">
<li>Source:
<strong><a href="https://github.com/RLuckom/restoration_slider">Source on Github</a>
</strong>
</li>
<li>Date:
<strong>September 2014</strong>
</li>
<li>Category:
<strong>Web Development</strong>
</li>
</ul>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="portfolioModal-3" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>Persistence Of Vision</h2>
<hr class="star-primary">
<img src="img/portfolio/pov_via_pwm.png" class="img-responsive img-centered" alt="image-alt">
<p>I made this persistence of vision display using the Programmable Realtime Units in a BeagleBone Black embedded Linux computer. I finished it just in time for a New Years' Eve party, and the experience taught me a lot about designing electronics and programming in assembly. There are definitely more hardware projects in my future. <div class="videoWrapper"><iframe width="420" height="315" src="https://www.youtube.com/embed/lpmPm4T6jZI" frameborder="0" allowfullscreen></iframe></div></p>
<ul class="list-inline item-details">
<li>Source:
<strong><a href="https://github.com/RLuckom/pov_via_pwm">Source on Github</a>
</strong>
</li>
<li>Date:
<strong>December 2014</strong>
</li>
<li>Category:
<strong>Hardware</strong>
</li>
</ul>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="portfolioModal-4" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>Javascript Game Of Life</h2>
<hr class="star-primary">
<img src="img/portfolio/GOL.png" class="img-responsive img-centered" alt="image-alt">
<p>I wrote a JavaScript version of <a href="http://en.wikipedia.org/wiki/Conway%27s_Game_of_Life">Conway's Game of Life</a> as a way to learn about cellular automata. The original version was written using SVG for the board, but I found that SVG rendered too slowly for large boards so I switched to using a Canvas element. <div id="GOL"></div> To run the game, click on individual squares to toggle them between the black and white states, then click "Play." The game stops when the cursor is over the board and restarts when it leaves. The slider controls the time between steps. My favorite pattern to start with is the one in the image above.</p>
<ul class="list-inline item-details">
<li>Source:
<strong><a href="https://github.com/RLuckom/jsGameOfLife">Source on Github</a>
</strong>
</li>
<li>Date:
<strong>July 2014</strong>
</li>
<li>Category:
<strong>Web Development</strong>
</li>
</ul>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- jQuery Version 1.11.0 -->
<script src="/js/jquery-1.11.0.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="/js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="/js/jquery.easing.min.js"></script>
<script src="/js/classie.js"></script>
<script src="/js/cbpAnimatedHeader.js"></script>
<script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<!-- Contact Form JavaScript -->
<script src="/js/jqBootstrapValidation.js"></script>
<!-- Custom Theme JavaScript -->
<script src="/js/freelancer.js"></script>
<!-- Project JavaScript -->
<script type='text/javascript' src='http://alliedconservation.com/wp-content/plugins/restoration_slider-master/js/restoration_slider.js?ver=4.1'></script>
<script src="./submodules/jsGameOfLife/src/js/canvasgameoflife.js"></script>
<script src="http://rluckom.github.io/ambigui/dist/js/DOGWOOD_compiled.js"></script>
</body>
<script type="text/javascript">
$(function () {
var goElement = document.getElementById('GOL'); var gol = new CanvasGameOfLife(250, 250, 20, 20); goElement.appendChild(gol.div);
});
</script>
</html>
| RLuckom/RLuckom.github.io | _site/software craftsmanship/2015/02/10/I-Know-True-Is-This-Much/index.html | HTML | mit | 24,745 |
<!--
Copyright 2015 Maker Collider
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<script type="text/x-red" data-help-name="DFLight">
<h3 id="Light node"><strong>Light Node</strong></h3>
<p>The node represents the <strong>Light Sensor</strong> from the DFRobot.</p>
<h4 id="Parameter Configuration"><strong>Parameter Configuration</strong></h4>
<ol>
<li>Name:The node name</li>
<li>Analog Pin:Connect sensor to input pin</li>
<li>Interval:Output time interval,in milliseconds</li>
</ol>
<h4 id="Input"><strong>Input</strong></h4>
<ol>
The switch value(0,1)<br>
</ol>
<h4 id="Output"><strong>Output</strong></h4>
<ol>Output light sensor value.
</ol>
<h4 id="Usage"><strong>Usage</strong></h4>
<ol>
<li>Configure each parameter correctly.</li>
<li>When <code>input</code> is 1,light sensor would be opeded.When <code>input</code> is 0,light sensor would be closed.</li>
<li>Output light intensity value at the same time.</li>
</ol>
</script>
| MakerCollider/curie-smartnode-mac | curie-smartnode/smartnode/node_modules/node-red-contrib-smartnode/DFSensors/DFLight/locales/en-US/DFLight.html | HTML | mit | 1,507 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Task1</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav id="navigator">
<h1 id="blogname">叶落知秋</h1>
<ul class="navigator-list">
<li class="navigator-list-item"><a href="#">归档</a></li>
<li class="navigator-list-item"><a href="#">首页</a></li>
<li class="navigator-list-item"><a href="#">相册</a></li>
<li class="navigator-list-item"><a href="#">关于</a></li>
</ul>
</nav>
</header>
<article>
<h2>习近平出席秘鲁总统举行的欢迎仪式</h2>
<h3>原标题:习近平出席秘鲁总统举行的欢迎仪式</h3>
<h4>央视 2016年11月22日22:03</h4>
<p>央视网消息(新闻联播):国家主席<a href="https://zh.wikipedia.org/wiki/%E4%B9%A0%E8%BF%91%E5%B9%B3">习近平</a>在结束出席亚太经合组织第二十四次领导人非正式会议系列活动之后,当地时间21日开始对秘鲁进行国事访问。</p>
<p>当地时间上午9时45分,习近平和夫人彭丽媛抵达总统府。现场鸣21响礼炮,习近平和夫人彭丽媛乘车绕广场一周,习近平在总统府检阅仪仗队。习近平同库琴斯基亲切握手,军乐队奏中秘两国国歌。</p>
<p><img src="sun.jpg" alt="" /></p>
</article>
<article>
<h2>川普公布“百日新政” 为何第一个拿TPP开刀?</h2>
<h3>原标题:川普公布“百日新政”,为何第一个拿TPP开刀?</h3>
<h4>新京报 2016年11月22日21:26</h4>
<p>从上面这张图可以看出,RCEP和TPP所涵盖的国家有很多是重合的,只不过TPP包含了美洲的几个国家,RCEP则把印度、印尼等其它亚洲国家都囊括了进去。</p>
<p>自2011年以来,中国和日本、澳大利亚、印度等10多个亚洲国家的贸易代表就促成RCEP每年都会举行好几次谈判。上一轮的谈判在菲律宾,下一轮谈判则定在下月初在印尼举行。</p>
<p>可以预见的是,<a href="https://zh.wikipedia.org/wiki/%E5%94%90%E7%B4%8D%C2%B7%E5%B7%9D%E6%99%AE">川普</a>的上台肯定会加速谈判的进程。</p>
<p>在这两天秘鲁举行的APEC峰会上,TPP的前途成为一个重要的议题。尤其是日本首相安倍晋三,在做最后的努力。为此,他在赴秘鲁参会前特意绕道纽约与川普见了面。</p>
<p><img src="sun.jpg" alt=""></p>
<ul>
<li>印媒:巴基斯坦担心中巴经济走廊可能惠及印度</li>
<li>美媒:日本海自是亚洲最强海军 中国要小心</li>
<li>菲或将退出国际刑事法院 总统:小国总是受欺凌</li>
</ul>
</article>
<article>
<h2>太阳</h2>
<div>
<p>夕阳</p>
<img src="sun.jpg" alt="" />
</div>
<div>
<p>夕阳</p>
<img src="sun.jpg" alt="" />
</div>
<div>
<p>夕阳</p>
<img src="sun.jpg" alt="" />
</div>
<div>
<p>夕阳</p>
<img src="sun.jpg" alt="" />
</div>
<div>
<p>夕阳</p>
<img src="sun.jpg" alt="" />
</div>
</article>
<article>
<h2>最后一篇文章一级标题</h2>
<h3>文章二级标题</h3>
<h4>文章作者 文章发表时间</h4>
<ol>
<li>排名1</li>
<li>排名2</li>
<li>排名3</li>
</ol>
<p>下面是一个表格,给表格加了一个border="1"好让你看出是一个表格</p>
<table>
<thead>
<tr>
<td>表头</td>
<td>表头</td>
<td>表头</td>
</tr>
</thead>
<tbody>
<tr>
<td>表内容单元格</td>
<td>表内容单元格</td>
<td><a href="#">操作</a></td>
</tr>
<tr>
<td>表内容单元格</td>
<td>表内容单元格</td>
<td><a href="#">操作</a></td>
</tr>
<tr>
<td>表内容单元格</td>
<td>表内容单元格</td>
<td><a href="#">操作</a></td>
</tr>
<tr>
<td>表内容单元格</td>
<td>表内容单元格</td>
<td><a href="#">操作</a></td>
</tr>
</tbody>
<tfoot>
<tr>
<td>总计</td>
<td colspan="2">1000</td>
</tr>
</tfoot>
</table>
</article>
<aside>
<h2>这里以后是一个侧栏,这是侧栏的标题</h2>
<form>
<p>
<label>请输入邮箱地址:</label>
<input type="text" placeholder="这是一个文本输入框">
<br>
<label></label>
<small>邮箱地址请按要求格式输入</small>
</p>
<p>
<label>请输入密码:</label>
<input type="password">
</p>
<p>
<label>请重复输入密码:</label>
<input type="password">
<br>
<label></label>
<small>密码请为6-16位英文数字</small>
</p>
<p>
<label>性别:</label>
<input type="radio" value="male" name="gender"
checked=true>男</input>
<input type="radio" value="female" name="gender">女</input>
<p>
<label>城市:</label>
<select name="city">
<option value="SH">上海</option>
<option value="BJ" selected=true>北京</option>
<option value="SZ">深圳</option>
</select>
<p>
<label>爱好:</label>
<input type="checkbox" name="sport">运动</input>
<input type="checkbox" name="art">艺术</input>
<input type="checkbox" name="science">科学</input>
</p>
<p>
<label>个人描述:</label>
<textarea placeholder="这是一个多行输入框,输入您的个人描述"></textarea>
</p>
<p><input type="button" value="确认提交"></p>
</form>
</aside>
<footer>
<p>版权所有©</p>
</footer>
</body>
</html> | AmosJi/baidu_ife | xiaowei/task2/index.html | HTML | mit | 7,538 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<title>combobox</title>
<style type='text/css'>
body {font-family: verdana; margin: 0px; padding: 0px;}
h5 {
/*width:400px;*/
}
.padding10 {
height:10px;
width:1px;
}
.padding25 {
height:25px;
width:1px;
}
.combobox {
margin:0 0 10px 0;
}
#container {
position:absolute;
top:200px;
left:150px;
}
</style>
<link type="text/css" href="combobox.css" rel="stylesheet" />
</head>
<body>
<h3>5. Combobox positioning tests - Combobox appended to positioned element</h3>
<!-- 5. Combobox positioning tests - Combobox appended to positioned element:
5a Tests that if the element can be positioned without scrolling below target, the dropdown opens bellow the target with full height.
5b Tests that if the element can be positioned with scrolling greater than min height, the dropdown opens bellow with height equal the space available.
5c Tests if the space above is greater than the space below and dropdown fits in space above, the dropdown opens above with full height.
5d Tests if the space above is greater than the space below and dropdown doesnt fit in space above, the dropdown opens to fit space avaialble above.
5e Tests if the space above is less than the space below and the dropdown doesnt fit the space available the dropdown opens bellow to fit the space avaialble. -->
<!-- 5b Tests that if the element can be positioned with scrolling greater than min height, the dropdown opens bellow with height equal the space available. -->
<h5>5b Tests that if the element can be positioned with scrolling greater than min height, the dropdown opens bellow with height equal the space available.</h3>
<div id="combobox5b_log"></div>
<div id="container">
<input id="combobox5b" class="combobox" type="text" name="name5b" />
</div>
<script type='text/javascript'
src='../../steal/steal.js'>
</script>
<script type='text/javascript'>
steal("mxui/form/combobox/select",
"mxui/form/combobox/ajax",
"jquery/dom/fixture").then(function($){
/*
* Utility functions.
*/
var createItems = function(n){
var data = [];
for (var i = 0; i < n; i++) {
data.push({
value: i,
text: "item" + i
})
}
data[0].selected = true;
return data;
}
// maximize window so that positioning tests execute correctly.
function maximize() {
window.moveTo(0, 0);
//window.resizeTo(screen.width, screen.height);
window.resizeTo("1366", "768");
}
maximize();
/*
* 5b Tests that if the element can be positioned with scrolling greater than min height, the dropdown opens bellow with height equal the space available.
*/
$("#combobox5b").mxui_form_combobox({
items: createItems(30)
});
});
steal.start();
</script>
</body>
</html> | Dakuan/dakuan.github.com | mxui/form/combobox/positioning5b.html | HTML | mit | 3,262 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2">
<meta name="theme-color" content="#222">
<meta name="generator" content="Hexo 4.2.0">
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png">
<link rel="mask-icon" href="/images/logo.svg" color="#222">
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic&display=swap&subset=latin,latin-ext">
<link rel="stylesheet" href="/lib/font-awesome/css/font-awesome.min.css">
<script id="hexo-configurations">
var NexT = window.NexT || {};
var CONFIG = {
hostname: new URL('https://iaanuzik.com').hostname,
root: '/',
scheme: 'Mist',
version: '7.6.0',
exturl: false,
sidebar: {"position":"right","width":300,"display":"always","padding":80,"offset":12,"onmobile":false},
copycode: {"enable":true,"show_result":true,"style":"flat"},
back2top: {"enable":true,"sidebar":true,"scrollpercent":true},
bookmark: {"enable":true,"color":"#222","save":"auto"},
fancybox: false,
mediumzoom: false,
lazyload: false,
pangu: false,
comments: {"style":"tabs","active":null,"storage":true,"lazyload":true,"nav":null},
algolia: {
appID: '',
apiKey: '',
indexName: '',
hits: {"per_page":10},
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
},
localsearch: {"enable":false,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},
path: '',
motion: {"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}}
};
</script>
<meta property="og:type" content="website">
<meta property="og:title" content="KAZE">
<meta property="og:url" content="https://iaanuzik.com/archives/2018/07/index.html">
<meta property="og:site_name" content="KAZE">
<meta property="og:locale" content="en_US">
<meta property="article:author" content="神楽坂 川風">
<meta name="twitter:card" content="summary">
<link rel="canonical" href="https://iaanuzik.com/archives/2018/07/">
<script id="page-configurations">
// https://hexo.io/docs/variables.html
CONFIG.page = {
sidebar: "",
isHome: false,
isPost: false
};
</script>
<title>Archive | KAZE</title>
<noscript>
<style>
.use-motion .brand,
.use-motion .menu-item,
.sidebar-inner,
.use-motion .post-block,
.use-motion .pagination,
.use-motion .comments,
.use-motion .post-header,
.use-motion .post-body,
.use-motion .collection-header { opacity: initial; }
.use-motion .site-title,
.use-motion .site-subtitle {
opacity: initial;
top: initial;
}
.use-motion .logo-line-before i { left: initial; }
.use-motion .logo-line-after i { right: initial; }
</style>
</noscript>
</head>
<body itemscope itemtype="http://schema.org/WebPage">
<div class="container use-motion">
<div class="headband"></div>
<header class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-container">
<div class="site-meta">
<div>
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">KAZE</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
</div>
<div class="site-nav-toggle">
<div class="toggle" aria-label="Toggle navigation bar">
<span class="toggle-line toggle-line-first"></span>
<span class="toggle-line toggle-line-middle"></span>
<span class="toggle-line toggle-line-last"></span>
</div>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section"><i class="fa fa-fw fa-home"></i>Home</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives/" rel="section"><i class="fa fa-fw fa-archive"></i>Archives</a>
</li>
<li class="menu-item menu-item-categories">
<a href="/categories/" rel="section"><i class="fa fa-fw fa-th"></i>Categories</a>
</li>
</ul>
</nav>
</div>
</header>
<div class="reading-progress-bar"></div>
<a role="button" class="book-mark-link book-mark-link-fixed"></a>
<main class="main">
<div class="main-inner">
<div class="content-wrap">
<div class="content">
<div class="post-block">
<div class="posts-collapse">
<div class="collection-title">
<span class="collection-header">Um..! 5 posts in total. Keep on posting.</span>
</div>
<div class="collection-year">
<h1 class="collection-header">2018</h1>
</div>
<article itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<div class="post-meta">
<time itemprop="dateCreated"
datetime="2018-07-20T20:44:54+00:00"
content="2018-07-20">
07-20
</time>
</div>
<h2 class="post-title">
<a class="post-title-link" href="/2018/07/20/vue-cli-quick-started/" itemprop="url">
<span itemprop="name">Vue-CLI搭建项目</span>
</a>
</h2>
</header>
</article>
</div>
</div>
</div>
<script>
window.addEventListener('tabs:register', () => {
let activeClass = CONFIG.comments.activeClass;
if (CONFIG.comments.storage) {
activeClass = localStorage.getItem('comments_active') || activeClass;
}
if (activeClass) {
let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`);
if (activeTab) {
activeTab.click();
}
}
});
if (CONFIG.comments.storage) {
window.addEventListener('tabs:click', event => {
if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return;
let commentClass = event.target.classList[1];
localStorage.setItem('comments_active', commentClass);
});
}
</script>
</div>
<div class="toggle sidebar-toggle">
<span class="toggle-line toggle-line-first"></span>
<span class="toggle-line toggle-line-middle"></span>
<span class="toggle-line toggle-line-last"></span>
</div>
<aside class="sidebar">
<div class="sidebar-inner">
<ul class="sidebar-nav motion-element">
<li class="sidebar-nav-toc">
Table of Contents
</li>
<li class="sidebar-nav-overview">
Overview
</li>
</ul>
<!--noindex-->
<div class="post-toc-wrap sidebar-panel">
</div>
<!--/noindex-->
<div class="site-overview-wrap sidebar-panel">
<div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person">
<img class="site-author-image" itemprop="image" alt="神楽坂 川風"
src="/images/avatar.jpeg">
<p class="site-author-name" itemprop="name">神楽坂 川風</p>
<div class="site-description" itemprop="description"></div>
</div>
<div class="site-state-wrap motion-element">
<nav class="site-state">
<div class="site-state-item site-state-posts">
<a href="/archives/">
<span class="site-state-item-count">5</span>
<span class="site-state-item-name">posts</span>
</a>
</div>
<div class="site-state-item site-state-categories">
<a href="/categories/">
<span class="site-state-item-count">5</span>
<span class="site-state-item-name">categories</span></a>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags/">
<span class="site-state-item-count">6</span>
<span class="site-state-item-name">tags</span></a>
</div>
</nav>
</div>
<div class="links-of-author motion-element">
<span class="links-of-author-item">
<a href="https://github.com/yue-litam" title="GitHub → https://github.com/yue-litam" rel="noopener" target="_blank"><i class="fa fa-fw fa-github"></i></a>
</span>
<span class="links-of-author-item">
<a href="mailto:ia.anuzik@gmail.com" title="E-Mail → mailto:ia.anuzik@gmail.com" rel="noopener" target="_blank"><i class="fa fa-fw fa-envelope"></i></a>
</span>
<span class="links-of-author-item">
<a href="https://stackoverflow.com/users/12023030" title="StackOverflow → https://stackoverflow.com/users/12023030" rel="noopener" target="_blank"><i class="fa fa-fw fa-stack-overflow"></i></a>
</span>
<span class="links-of-author-item">
<a href="https://twitter.com/ia_anuzik" title="Twitter → https://twitter.com/ia_anuzik" rel="noopener" target="_blank"><i class="fa fa-fw fa-twitter"></i></a>
</span>
<span class="links-of-author-item">
<a href="/atom.xml" title="RSS → /atom.xml"><i class="fa fa-fw fa-rss"></i></a>
</span>
</div>
</div>
<div class="back-to-top motion-element">
<i class="fa fa-arrow-up"></i>
<span>0%</span>
</div>
</div>
</aside>
<div id="sidebar-dimmer"></div>
</div>
</main>
<footer class="footer">
<div class="footer-inner">
<div class="beian"><a href="http://www.beian.miit.gov.cn/" rel="noopener" target="_blank">粤ICP-19060337号-1 </a>
</div>
<div class="copyright">
© 2016 –
<span itemprop="copyrightYear">2019</span>
<span class="with-love">
<i class="fa fa-user"></i>
</span>
<span class="author" itemprop="copyrightHolder">神楽坂 川風</span>
</div>
<div class="powered-by">Powered by <a href="https://hexo.io/" class="theme-link" rel="noopener" target="_blank">Hexo</a> v4.2.0
</div>
<span class="post-meta-divider">|</span>
<div class="theme-info">Theme – <a href="https://mist.theme-next.org/" class="theme-link" rel="noopener" target="_blank">NexT.Mist</a> v7.6.0
</div>
</div>
</footer>
</div>
<script src="/lib/anime.min.js"></script>
<script src="/lib/velocity/velocity.min.js"></script>
<script src="/lib/velocity/velocity.ui.min.js"></script>
<script src="/js/utils.js"></script>
<script src="/js/motion.js"></script>
<script src="/js/schemes/muse.js"></script>
<script src="/js/next-boot.js"></script>
<script src="/js/bookmark.js"></script>
</body>
</html>
| yue-litam/yue-litam.github.io | archives/2018/07/index.html | HTML | mit | 10,967 |
<!DOCTYPE html>
<html lang="en">
<head>
<title>jQuery</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="main.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="main.js"></script>
</head>
<body>
<div id="root">
</div>
</body>
</html>
| ehguo/beach-coders | jquery/index.html | HTML | mit | 414 |
{% extends "base.html" %}
{% block content %}
<br/>
All Venues
<br/>
<br/>
<table class="pure-table">
{% for venue in object_list %}
<tr><td><a href="{% url 'reservations:venue.detail' venue.id %}">{{venue.name}}</a></td></tr>
{% empty %}
<tr><td>No venues yet.</td></tr>
{% endfor %}
</table>
{% endblock %} | kojdjak/django-reservations | reservations/templates/reservations/venues.html | HTML | mit | 339 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Namespace Puli\Manager\Api\Factory | Puli API</title>
<link rel="stylesheet" href="resources/style.css?95ada9fb523b6ab4fd1c47bb375f713f2cc65542">
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', "UA-8282807-3"]);
_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>
</head>
<body>
<div id="left">
<div id="menu">
<a href="index.html" title="Overview"><span>Overview</span></a>
<div id="groups">
<h3>Namespaces</h3>
<ul>
<li class="active">
<a href="namespace-Puli.html">
Puli<span></span>
</a>
<ul>
<li>
<a href="namespace-Puli.Discovery.html">
Discovery<span></span>
</a>
<ul>
<li>
<a href="namespace-Puli.Discovery.Api.html">
Api<span></span>
</a>
<ul>
<li>
<a href="namespace-Puli.Discovery.Api.Binding.html">
Binding<span></span>
</a>
<ul>
<li>
<a href="namespace-Puli.Discovery.Api.Binding.Initializer.html">
Initializer </a>
</li>
</ul></li>
<li>
<a href="namespace-Puli.Discovery.Api.Type.html">
Type </a>
</li>
</ul></li>
<li>
<a href="namespace-Puli.Discovery.Binding.html">
Binding<span></span>
</a>
<ul>
<li>
<a href="namespace-Puli.Discovery.Binding.Initializer.html">
Initializer </a>
</li>
</ul></li></ul></li>
<li>
<a href="namespace-Puli.Factory.html">
Factory </a>
</li>
<li class="active">
<a href="namespace-Puli.Manager.html">
Manager<span></span>
</a>
<ul>
<li class="active">
<a href="namespace-Puli.Manager.Api.html">
Api<span></span>
</a>
<ul>
<li>
<a href="namespace-Puli.Manager.Api.Asset.html">
Asset </a>
</li>
<li>
<a href="namespace-Puli.Manager.Api.Config.html">
Config </a>
</li>
<li>
<a href="namespace-Puli.Manager.Api.Context.html">
Context </a>
</li>
<li>
<a href="namespace-Puli.Manager.Api.Discovery.html">
Discovery </a>
</li>
<li>
<a href="namespace-Puli.Manager.Api.Event.html">
Event </a>
</li>
<li class="active">
<a href="namespace-Puli.Manager.Api.Factory.html">
Factory<span></span>
</a>
<ul>
<li>
<a href="namespace-Puli.Manager.Api.Factory.Generator.html">
Generator </a>
</li>
</ul></li>
<li>
<a href="namespace-Puli.Manager.Api.Installation.html">
Installation </a>
</li>
<li>
<a href="namespace-Puli.Manager.Api.Installer.html">
Installer<span></span>
</a>
<ul>
<li>
<a href="namespace-Puli.Manager.Api.Installer.Validation.html">
Validation </a>
</li>
</ul></li>
<li>
<a href="namespace-Puli.Manager.Api.Migration.html">
Migration </a>
</li>
<li>
<a href="namespace-Puli.Manager.Api.Package.html">
Package </a>
</li>
<li>
<a href="namespace-Puli.Manager.Api.Php.html">
Php </a>
</li>
<li>
<a href="namespace-Puli.Manager.Api.Repository.html">
Repository </a>
</li>
<li>
<a href="namespace-Puli.Manager.Api.Server.html">
Server </a>
</li>
<li>
<a href="namespace-Puli.Manager.Api.Storage.html">
Storage </a>
</li>
</ul></li>
<li>
<a href="namespace-Puli.Manager.Assert.html">
Assert </a>
</li>
<li>
<a href="namespace-Puli.Manager.Asset.html">
Asset </a>
</li>
<li>
<a href="namespace-Puli.Manager.Config.html">
Config </a>
</li>
<li>
<a href="namespace-Puli.Manager.Conflict.html">
Conflict </a>
</li>
<li>
<a href="namespace-Puli.Manager.Discovery.html">
Discovery<span></span>
</a>
<ul>
<li>
<a href="namespace-Puli.Manager.Discovery.Binding.html">
Binding </a>
</li>
<li>
<a href="namespace-Puli.Manager.Discovery.Type.html">
Type </a>
</li>
</ul></li>
<li>
<a href="namespace-Puli.Manager.Factory.html">
Factory<span></span>
</a>
<ul>
<li>
<a href="namespace-Puli.Manager.Factory.Generator.html">
Generator<span></span>
</a>
<ul>
<li>
<a href="namespace-Puli.Manager.Factory.Generator.Discovery.html">
Discovery </a>
</li>
<li>
<a href="namespace-Puli.Manager.Factory.Generator.KeyValueStore.html">
KeyValueStore </a>
</li>
<li>
<a href="namespace-Puli.Manager.Factory.Generator.Repository.html">
Repository </a>
</li>
</ul></li></ul></li>
<li>
<a href="namespace-Puli.Manager.Filesystem.html">
Filesystem </a>
</li>
<li>
<a href="namespace-Puli.Manager.Installation.html">
Installation </a>
</li>
<li>
<a href="namespace-Puli.Manager.Installer.html">
Installer </a>
</li>
<li>
<a href="namespace-Puli.Manager.Migration.html">
Migration </a>
</li>
<li>
<a href="namespace-Puli.Manager.Package.html">
Package </a>
</li>
<li>
<a href="namespace-Puli.Manager.Php.html">
Php </a>
</li>
<li>
<a href="namespace-Puli.Manager.Repository.html">
Repository<span></span>
</a>
<ul>
<li>
<a href="namespace-Puli.Manager.Repository.Mapping.html">
Mapping </a>
</li>
</ul></li>
<li>
<a href="namespace-Puli.Manager.Server.html">
Server </a>
</li>
<li>
<a href="namespace-Puli.Manager.Transaction.html">
Transaction </a>
</li>
<li>
<a href="namespace-Puli.Manager.Util.html">
Util </a>
</li>
</ul></li>
<li>
<a href="namespace-Puli.Repository.html">
Repository<span></span>
</a>
<ul>
<li>
<a href="namespace-Puli.Repository.Api.html">
Api<span></span>
</a>
<ul>
<li>
<a href="namespace-Puli.Repository.Api.Resource.html">
Resource </a>
</li>
</ul></li>
<li>
<a href="namespace-Puli.Repository.Resource.html">
Resource<span></span>
</a>
<ul>
<li>
<a href="namespace-Puli.Repository.Resource.Collection.html">
Collection </a>
</li>
<li>
<a href="namespace-Puli.Repository.Resource.Iterator.html">
Iterator </a>
</li>
<li>
<a href="namespace-Puli.Repository.Resource.Metadata.html">
Metadata </a>
</li>
</ul></li>
<li>
<a href="namespace-Puli.Repository.StreamWrapper.html">
StreamWrapper </a>
</li>
<li>
<a href="namespace-Puli.Repository.Uri.html">
Uri </a>
</li>
</ul></li>
<li>
<a href="namespace-Puli.SymfonyBridge.html">
SymfonyBridge<span></span>
</a>
<ul>
<li>
<a href="namespace-Puli.SymfonyBridge.Config.html">
Config </a>
</li>
<li>
<a href="namespace-Puli.SymfonyBridge.HttpKernel.html">
HttpKernel </a>
</li>
</ul></li>
<li>
<a href="namespace-Puli.SymfonyBundle.html">
SymfonyBundle<span></span>
</a>
<ul>
<li>
<a href="namespace-Puli.SymfonyBundle.DependencyInjection.html">
DependencyInjection<span></span>
</a>
<ul>
<li>
<a href="namespace-Puli.SymfonyBundle.DependencyInjection.Compiler.html">
Compiler </a>
</li>
</ul></li>
<li>
<a href="namespace-Puli.SymfonyBundle.Tests.html">
Tests </a>
</li>
</ul></li>
<li>
<a href="namespace-Puli.TwigExtension.html">
TwigExtension<span></span>
</a>
<ul>
<li>
<a href="namespace-Puli.TwigExtension.CacheWarmer.html">
CacheWarmer </a>
</li>
<li>
<a href="namespace-Puli.TwigExtension.Node.html">
Node </a>
</li>
<li>
<a href="namespace-Puli.TwigExtension.NodeVisitor.html">
NodeVisitor </a>
</li>
<li>
<a href="namespace-Puli.TwigExtension.TokenParser.html">
TokenParser </a>
</li>
</ul></li>
<li>
<a href="namespace-Puli.UrlGenerator.html">
UrlGenerator<span></span>
</a>
<ul>
<li>
<a href="namespace-Puli.UrlGenerator.Api.html">
Api </a>
</li>
</ul></li></ul></li>
</ul>
</div>
<hr>
<div id="elements">
<h3>Interfaces</h3>
<ul>
<li><a href="class-Puli.Manager.Api.Factory.FactoryManager.html">FactoryManager</a></li>
</ul>
</div>
</div>
</div>
<div id="splitter"></div>
<div id="right">
<div id="rightInner">
<form id="search">
<input type="hidden" name="cx" value="">
<input type="hidden" name="ie" value="UTF-8">
<input type="text" name="q" class="text" placeholder="Search">
</form>
<div id="navigation">
<ul>
<li>
<a href="index.html" title="Overview"><span>Overview</span></a>
</li>
<li class="active">
<span>Namespace</span> </li>
<li>
<span>Class</span> </li>
</ul>
<ul>
</ul>
<ul>
</ul>
</div>
<div id="content" class="namespace">
<h1>Namespace <a href="namespace-Puli.html">Puli</a>\<a href="namespace-Puli.Manager.html">Manager</a>\<a href="namespace-Puli.Manager.Api.html">Api</a>\Factory</h1>
<table class="summary" id="namespaces">
<caption>Namespaces summary</caption>
<tr>
<td class="name"><a href="namespace-Puli.Manager.Api.Factory.Generator.html">Puli\Manager\Api\Factory\Generator</a></td>
</tr>
</table>
<table class="summary" id="interfaces">
<caption>Interfaces summary</caption>
<tr>
<td class="name"><a href="class-Puli.Manager.Api.Factory.FactoryManager.html">FactoryManager</a></td>
<td>Generates the source code of the Puli factory.</td>
</tr>
</table>
</div>
<div id="footer">
Puli API API documentation generated by <a href="http://apigen.org">ApiGen</a>
</div>
</div>
</div>
<script src="resources/combined.js?90a9ebc032fe484834129d90a6307c0552eea616"></script>
<script src="elementlist.js?211aae69484d393140150435d488ef41bcbe6df4"></script>
</body>
</html>
| puli/api.puli.io | latest/namespace-Puli.Manager.Api.Factory.html | HTML | mit | 10,742 |
<!DOCTYPE html>
<html lang="en">
<head>
<title>A Knight's Move for iOS 1.1 :: TrozWare</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<meta name="description" content="UPDATE: September 2016 - A Knight&rsquo;s Move for iOS is no longer available.A Knight&rsquo;s Move for Mac is still supported.
A Knight&rsquo;s Move for iPad &amp; iPhone has just been updated to version 1.1
There were some minor changes:
New puzzle pack: Majestic. iPhone now shows an info button of there is more help available for a particular puzzle. (This info was already visible in the iPad version.) Minor cosmetic fixes."/>
<meta name="keywords" content="[Swift Apple macOS iOS Apple Watch]"/>
<meta name="robots" content="noodp"/>
<link rel="canonical" href="https://troz.net/post/2012/a-knights-move-for-ios-1-1/" />
<link rel="stylesheet" href="https://troz.net/assets/style.css">
<link rel="stylesheet" href="https://troz.net/style.css">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://troz.net/img/apple-touch-icon-144-precomposed.png">
<link rel="shortcut icon" href="https://troz.net/img/favicon.png">
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="A Knight's Move for iOS 1.1 :: TrozWare — " />
<meta name="twitter:description" content="UPDATE: September 2016 - A Knight&rsquo;s Move for iOS is no longer available.A Knight&rsquo;s Move for Mac is still supported.
A Knight&rsquo;s Move for iPad &amp; iPhone has just been updated to version 1.1
There were some minor changes:
New puzzle pack: Majestic. iPhone now shows an info button of there is more help available for a particular puzzle. (This info was already visible in the iPad version.) Minor cosmetic fixes." />
<meta name="twitter:site" content="https://troz.net/" />
<meta name="twitter:creator" content="" />
<meta name="twitter:image" content="">
<meta property="og:locale" content="en" />
<meta property="og:type" content="article" />
<meta property="og:title" content="A Knight's Move for iOS 1.1 :: TrozWare — ">
<meta property="og:description" content="UPDATE: September 2016 - A Knight&rsquo;s Move for iOS is no longer available.A Knight&rsquo;s Move for Mac is still supported.
A Knight&rsquo;s Move for iPad &amp; iPhone has just been updated to version 1.1
There were some minor changes:
New puzzle pack: Majestic. iPhone now shows an info button of there is more help available for a particular puzzle. (This info was already visible in the iPad version.) Minor cosmetic fixes." />
<meta property="og:url" content="https://troz.net/post/2012/a-knights-move-for-ios-1-1/" />
<meta property="og:site_name" content="A Knight's Move for iOS 1.1" />
<meta property="og:image" content="">
<meta property="og:image:width" content="2048">
<meta property="og:image:height" content="1024">
<meta property="article:published_time" content="2012-09-13 00:00:00 +0000 UTC" />
</head>
<body class="dark-theme">
<div class="container">
<header class="header">
<span class="header__inner">
<a href="https://troz.net/" class="logo" style="text-decoration: none;">
<span class="logo__mark"><svg xmlns="http://www.w3.org/2000/svg" class="greater-icon" width="44" height="44" viewBox="0 0 44 44">
<polyline fill="none" stroke="#000" stroke-width="2" points="15 8 29.729 22.382 15 35.367"/>
</svg>
</span>
<span class="logo__text">TrozWare</span>
<span class="logo__cursor" style="width: 2px"></span>
</a>
<span class="header__right">
<nav class="menu">
<ul class="menu__inner menu__inner--desktop">
<li><a href="/">Home</a></li>
<li><a href="/apps/">Apps</a></li>
<li><a href="/post/">Archives</a></li>
<li><a href="/tags/">Tags</a></li>
<li><a href="/contact/">Contact</a></li>
</ul>
<ul class="menu__inner menu__inner--mobile">
<li><a href="/">Home</a></li>
<li><a href="/apps/">Apps</a></li>
<li><a href="/post/">Archives</a></li>
<li><a href="/tags/">Tags</a></li>
<li><a href="/contact/">Contact</a></li>
</ul>
</nav>
<span class="menu-trigger">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M0 0h24v24H0z" fill="none"/>
<path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"/>
</svg>
</span>
<span class="theme-toggle">
<svg class="theme-toggler" width="24" height="24" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M22 41C32.4934 41 41 32.4934 41 22C41 11.5066 32.4934 3 22
3C11.5066 3 3 11.5066 3 22C3 32.4934 11.5066 41 22 41ZM7 22C7
13.7157 13.7157 7 22 7V37C13.7157 37 7 30.2843 7 22Z"/>
</svg>
</span>
</span>
</span>
</header>
<div class="content">
<div class="post">
<h2 class="post-title"><a href="https://troz.net/post/2012/a-knights-move-for-ios-1-1/">A Knight’s Move for iOS 1.1</a></h2>
<div class="post-meta">
<span class="post-date">
13 Sep 2012
</span>
<span class="more-meta">- 166 words, </span>
<span class="more-meta"> 1 minute read</span>
</div>
<span class="post-tags">
#<a href="https://troz.net/tags/knights-move">knight's move</a>
</span>
<div class="post-content">
<p><strong>UPDATE:</strong> September 2016 - A Knight’s Move for iOS is no longer available.<!-- raw HTML omitted -->
<a href="/knightsmove/">A Knight’s Move for Mac</a> is still supported.</p>
<hr>
<p>A Knight’s Move for iPad & iPhone has just been updated to version 1.1</p>
<p>There were some minor changes:</p>
<ul>
<li>New puzzle pack: Majestic.</li>
<li>iPhone now shows an info button of there is more help available for a
particular puzzle. (This info was already visible in the iPad version.)</li>
<li>Minor cosmetic fixes.</li>
</ul>
<p>The big change was that all puzzles packs are now included in the free app,
which is now supported by iAds. The sale of puzzle packs via in-app purchasing
was disappointing, so I have decided to try using iAds instead. Hopefully they
will not feel too intrusive, but if you want to support my apps, please tap on a
few of the ads.</p>
<p>Note that iAds will not appear in all countries. You may just see a banner
linking you to my other apps on the iPad. On iPhone, you will not see anything
different.</p>
</div>
<div class="pagination">
<div class="pagination__title">
<span class="pagination__title-h">Read other posts</span>
<hr />
</div>
<div class="pagination__buttons">
<a class="btn next" href="https://troz.net/post/2012/updating-apps-for-iphone-5/">← Updating apps for iPhone 5</a>
<a class="btn previous" href="https://troz.net/post/2012/man-reader-1-1-released/">Man Reader 1.1 Released →</a>
</div>
</div>
</div>
</div>
<link rel="stylesheet" href="/css/footer.css" />
<footer class="footer">
<div class="footer__inner">
<div class="social_footer">
<a id="email-Link" class="mailtoui" href="mailto:sarah@troz.net"
><img src="/icons/envelope.svg"
/></a>
<a href="https://stackoverflow.com/users/1082632"
><img src="/icons/stack-overflow.svg"
/></a>
<a href="https://twitter.com/trozware"><img src="/icons/twitter.svg"/></a>
<a href="https://github.com/trozware"><img src="/icons/github.svg"/></a>
<a href="https://troz.net/index.xml"><img src="/icons/rss.svg"/></a>
<a href="https://troz.net/feed.json"><img src="/icons/json.png"/></a>
<a href="https://dev.to/trozware">
<img src="https://d2fltix0v2e0sb.cloudfront.net/dev-badge.svg"
alt="TrozWare's DEV Profile"
style="height: 37px; margin-top: -3px" height="40" width="40">
</a>
</div>
</div>
<div class="footer__inner">
<div class="copyright">
<span>© 2012 - 2020 Sarah Reichelt</span>
<span
><a href="http://gohugo.io">Hugo</a> theme created by
<a href="https://twitter.com/panr">panr</a> 2018</span
>
</div>
</div>
</footer>
<script src="/assets/main.js"></script>
<script src="/assets/prism.js"></script>
<script src="https://cdn.jsdelivr.net/npm/mailtoui@latest/dist/mailtoui-min.js"></script>
<script src="https://polyfill.io/v2/polyfill.min.js?features=IntersectionObserver"></script>
<script src="/quicklink.js"></script>
<script>
window.addEventListener('load', () => {
quicklink()
})
</script>
</div>
</body>
</html>
| trozware/trozware.github.io | docs/post/2012/a-knights-move-for-ios-1-1/index.html | HTML | mit | 9,012 |
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
<img class="rounded img-fluid mx-auto d-block" src="{{ url_for('static', filename='Cover_Ranking.png') }}" width="40%" height="40%">
<table class="table">
<thead class="thead">
<tr>
<th>Posição</th>
<th>Aluno</th>
<th>Quantidade de Submissões</th>
<th>Pontuação</th>
</tr>
</thead>
<tbody>
{% for score in scores %}
<tr>
<td>{{ loop.index }}</td>
<td>{{ score['student_id'] }}</td>
<td>{{ score['submissions'] }}</td>
<td>{{ score['score'] }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</body>
</html>
| brnomendes/grader-edx | ranking_page_example/templates/index.html | HTML | mit | 972 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- 選舉資料查詢 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>中選會選舉資料庫網站</title>
<link rel="stylesheet" type="text/css" href="http://db.cec.gov.tw/votehist.css">
<script type="text/javascript">
function AddToFaves_hp() {
var is_4up = parseInt(navigator.appVersion);
var is_mac = navigator.userAgent.toLowerCase().indexOf("mac")!=-1;
var is_ie = navigator.userAgent.toLowerCase().indexOf("msie")!=-1;
var thePage = location.href;
if (thePage.lastIndexOf('#')!=-1)
thePage = thePage.substring(0,thePage.lastIndexOf('#'));
if (is_ie && is_4up && !is_mac)
window.external.AddFavorite(thePage,document.title);
else if (is_ie || document.images)
booker_hp = window.open(thePage,'booker_','menubar,width=325,height=100,left=140,top=60');
//booker_hp.focus();
}
</script>
</head>
<body class="frame">
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- 標題:選舉資料庫網站 -->
<div style="width: 100%; height: 56px; margin: 0px 0px 0px 0px; border-style: solid; border-width: 0px 0px 1px 0px; border-color: black;">
<div style="float: left;">
<img src="http://db.cec.gov.tw/images/main_title.gif" />
</div>
<div style="width: 100%; height: 48px;">
<div style="text-align: center;">
<img src="http://db.cec.gov.tw/images/small_ghost.gif" /> <span
style="height: 30px; font-size: 20px;"> <a href="http://www.cec.gov.tw"
style="text-decoration: none;">回中選會網站</a>
</span>
</div>
</div>
<div style="width: 100%; height: 8px; background-color: #fde501;">
</div>
</div>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- 頁籤 -->
<div
style="width: 100%; height: 29px; background-image: url('http://db.cec.gov.tw/images/tab_background.gif'); background-repeat: repeat-x;">
<div style="text-align: center;">
<a href="histMain.jsp"><img border="0" src="http://db.cec.gov.tw/images/tab_01.gif" /></a>
<a href="histCand.jsp"><img border="0" src="http://db.cec.gov.tw/images/tab_02.gif" /></a>
<!-- <a href=""><img border="0" src="images/tab_03.gif" /></a> -->
<!-- <a href=""><img border="0" src="images/tab_04.gif" /></a> -->
<a href="histQuery.jsp?voteCode=20120101T1A2&qryType=ctks&prvCode=02&cityCode=000&areaCode=07&deptCode=013&liCode=0523#"><img border="0" src="http://db.cec.gov.tw/images/tab_05.gif" onClick="AddToFaves_hp()" /></a>
<a href="mailto:info@cec.gov.tw;ytlin@cec.gov.tw"><img border="0" src="http://db.cec.gov.tw/images/tab_06.gif" /></a>
</div>
</div>
<div
style="width: 100%; height: 22px; background-image: url('http://db.cec.gov.tw/images/tab_separator.gif'); background-repeat: repeat-x;">
</div>
<div class="query">
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- 子頁面:查詢候選人得票數 -->
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- 標題 -->
<div class="titlebox">
<div class="title">
<div class="head">第 08 屆 立法委員選舉(區域) 候選人得票數</div>
<div class="date">投票日期:中華民國101年01月14日</div>
<div class="separator"></div>
</div>
</div>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- 查詢:候選人得票數,縣市多選區,如區域立委 -->
<link rel="stylesheet" type="text/css" href="http://db.cec.gov.tw/qryCtks.css" />
<!-- 投開票所表頭 -->
<table class="ctks" width="950" height="22" border=1 cellpadding="0" cellspacing="0" >
<tr class="title">
<td nowrap align="center">地區</td>
<td nowrap align="center">姓名</td>
<td nowrap align="center">號次</td>
<td nowrap align="center">得票數</td>
<td nowrap align="center">得票率</td>
</tr>
<!-- 投開票所內容 -->
<tr class="data">
<td nowrap rowspan=3 align=center>新北市第07選區板橋區後埔里第1208投開票所</td>
<td nowrap align="center">江惠貞</td>
<td nowrap align="center">1</td>
<td nowrap align="right">622</td>
<td nowrap align="right"> 51.70%</td>
</tr>
<!-- 投開票所內容 -->
<tr class="data">
<td nowrap align="center">羅致政</td>
<td nowrap align="center">2</td>
<td nowrap align="right">493</td>
<td nowrap align="right"> 40.98%</td>
</tr>
<!-- 投開票所內容 -->
<tr class="data">
<td nowrap align="center">曾文振</td>
<td nowrap align="center">3</td>
<td nowrap align="right">88</td>
<td nowrap align="right"> 7.31%</td>
</tr>
<!-- 投開票所內容 -->
<tr class="data">
<td nowrap rowspan=3 align=center>新北市第07選區板橋區後埔里第1209投開票所</td>
<td nowrap align="center">江惠貞</td>
<td nowrap align="center">1</td>
<td nowrap align="right">626</td>
<td nowrap align="right"> 50.48%</td>
</tr>
<!-- 投開票所內容 -->
<tr class="data">
<td nowrap align="center">羅致政</td>
<td nowrap align="center">2</td>
<td nowrap align="right">521</td>
<td nowrap align="right"> 42.01%</td>
</tr>
<!-- 投開票所內容 -->
<tr class="data">
<td nowrap align="center">曾文振</td>
<td nowrap align="center">3</td>
<td nowrap align="right">93</td>
<td nowrap align="right"> 7.50%</td>
</tr>
</table>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<div style="width: 100%; height: 20px; margin: 30px 0px 0px 0px; text-align: center; ">
<span>
<img src="http://db.cec.gov.tw/images/leave_arrow_left.gif" />
</span>
<span style="margin: 0px 10px 0px 10px; ">
<a style="text-decoration: none; font-size: 15px; " href="histPrint">下載</a>
</span>
<span>
<img src="http://db.cec.gov.tw/images/leave_arrow_right.gif" />
</span>
<span style="margin-right: 100px;"> </span>
<span>
<img src="http://db.cec.gov.tw/images/leave_arrow_left.gif" />
</span>
<span style="margin: 0px 10px 0px 10px; ">
<a style="text-decoration: none; font-size: 15px; " href="histMain.jsp">離開</a>
</span>
<span>
<img src="http://db.cec.gov.tw/images/leave_arrow_right.gif" />
</span>
</div>
</div>
</body>
</html> | g0v/projectV | mirror/prvCode_07/cityCode_000-areaCode_07-deptCode_013/voteCode_20120101T1A2-qryType_ctks-prvCode_02-cityCode_000-areaCode_07-deptCode_013-liCode_0523.html | HTML | mit | 6,520 |
Server: Netscape-Communications/1.1
Date: Monday, 25-Nov-96 20:40:28 GMT
Content-type: text/html
<html>
<head>
<title>Dr. Roger Webster Resume </title>
</head>
<body background="/gif.dir/rust.jpg" text=black link=blue alink=red vlink=green>
<center>
<h2> Roger W. Webster, Ph.D.</h2>
<!WA0><a href="mailto://webster@cs.millersv.edu"> webster@cs.millersv.edu</a><br>
<!WA1><a href="http://cs.millersv.edu"> http://cs.millersv.edu/</a><br>
<!WA2><a href="http://zansiii.millersv.edu">http://zansiii.millersv.edu/ </a><br>
</center>
<h3> Education: </h3>
Temple University - School of Engineering, Architecture and Computer
Science. Philadelphia, PA. Ph.D. degree (1988) in Computer Science.
Dissertation area: Computer Vision, Image Processing and Artificial
Intelligence. Title: Partial Boundary Matching and Shape Fitting
Using the Medial Axis Transformation. Dissertation published in IEEE
Transactions on Systems, Man and Cybernetics, September/October 1991,
Vol. 22, No. 5.
<p>
Temple University - School of Engineering, Architecture and Computer
Science. Philadelphia, PA. MA degree (1986) in Computer Science.
Major course work in Computer Vision, Image Processing and Artificial
Intelligence. Thesis project published in the Proceedings of the
International Association of Pattern Recognition Workshop on Machine
Vision Applications (IAPR MVA'90), Tokyo, Japan, Nov. 1990.
<p>
Bentley College- Graduate School, Waltham, Massachusetts. MS degree
(1982) in Computer Information Science. Major course work in Computer
Networking and Distributed Processing. Thesis project published in the
Proceedings of the Annual ACM Conference on Office Automation,
University of Toronto, Ontario, June 1984.
<p>
University of Southern Maine - School of Business and Economics.
Portland, Maine. BS degree (1979) in Business Administration. Major
course work in Marketing Research, Computer Science, Statistics.
<p>
Massachusetts Institute of Technology - Center for Advanced
Engineering Study, Cambridge, Massachusetts.
Accepted as a Fellow for the Summer 1991 term to study: Mathematics,
Robot Vision, and Expert Systems.<br>
Special Summer Program. Completed short professional courses:
<ul>
<li>"Expert Systems and Neural Networks in Engineering" - MIT Intelligent Systems Lab.
<li>"Robot Manipulators, Computer Vision and A.I." - MIT Artificial Intelligence Lab.
<li>"Robot Design and Control Theory" - MIT Mechanical Engineering Lab.
<li>"Robot Manipulators and Artificial Intelligence" - MIT Artificial Intelligence Lab.
</ul>
<p>
<h3>Employment: </h3>
<h4>Millersville University of Pennsylvania</h4>Millersville, PA., Department
of Computer Science. January 1983 to present.
<ul>
<li>Chairman - Computer Science Department, 6/95 - present.
<li>Director of the Intelligent Machines Laboratory.
<li>Full Professor of Computer Science.
</ul>
Responsibilities include:
<ul>
<li>research in virtual world modelling, robot vision and artificial intelligence.
<li>curriculum development,
<li>review and design of new courses,
<li>teaching undergraduate courses in computer science,
<li>departmental and community assignments.
</ul>
Currently responsible
for the following courses: Computer Graphics and Virtual Reality, Robot Vision, Artificial Intelligence, Real-Time Systems Engineering, Internet Programming with Java.
<p>
<h4>Hewlett-Packard Corporation</h4>
Medical Systems Division. Engineering
Research and Development Lab. Waltham, Massachusetts. January 1979 to January 1983.
<p>
<ul>
<li>Software Development Engineer. Designed and developed graphic
simulation systems software for HP's Medical Productivity Network
software package. 1981-1983.
<li> Data Base Analyst. Designed and developed data base schemas,
concurrent access software and interface software. Wrote tracking
algorithms to monitor data base activity. 1980-1981.
<li> Programmer Analyst. Designed and developed systems software for
Manufacturing and Engineering applications. 1979-1980.
</ul>
<p>
<h3>Research Interests: </h3>
Graphics, Virtual Reality, and Virtual World Modelling,
Internet Programming with Java, Robot Vision,
Real Time Systems Engineering, Artificial Intelligence.
<h3>Publications: </h3>
Webster, Roger, Wayde, Steve, and Auvil, Nathan, "A Laboratory for Teaching
Undergraduate Engineering Students Software Development Skills for
Building Virtual Reality Applications", Proceedings of the ISCS '97 International Conference on
Computer Simulation, sponsored by the Society for
Computer Simulation International, Phoenix, Arizona, January 12-15, 1997.
<p>
Webster, Roger, Wayde, S., "A Virtual Backhoe Simulation and Training
System", Proceedings of the Frontiers in Education
Conference (FIE '96),sponsored by IEEE Committee on Education,
Salt Lake City, Utah, November 6-8, 1996.
<p>
Webster, Roger, Wayde, Steven, "A Virtual Reality Laboratory for
Undergraduates in Computer Science", Proceedings of the Sixth
International Conference on Computer Graphics and Visualization,
sponsored by ACM SIGGRAPH, IEEE Technical Committee on Computer
Graphics, EuroGraphics, St. Petersburg, Russia, July 1-5, 1996. Presenter.
<p>
Webster, Roger, Wayde, Steven, "A Virtual Reality and Scientific
Visualization Laboratory for Undergraduates in Computer Science -Work-in-Progress",
Proceedings of the Annual American Society for Engineering Education
(ASEE) Conference, sponsored by ASEE and DELOS (Division of Laboratory
Oriented Studies, Washington, D.C., June 24-27, 1996. Poster Presentation.
<p>
Webster, Roger, "A Workstation Laboratory to Improve Undergraduate
Instruction in Artificial Intelligence", The International Journal for
Engineering Education, Tempus Publications, Hamburg, Germany, November
1995, Vol. 11 No. 4-5, pp.101-110.
<p>
Ingargiola, Giorgio, N. Hoskin, R. Aiken, R. Dubey, J. Wilson, M.
Papalaskari, R. Webster, "A Repository that Supports Teaching and
Cooperation in the Introductory AI Course", Proceedings of the
national ACM SIGCSE Technical Symposium (ACM/SIGCSE '94). Phoenix,
Arizona, March 10-12, 1994. Sponsored by the Association of Computing
Machinery and the Special Interest Group on Computer Science Education
(ACM/SIGCSE).
<p>
Webster, Roger. "Two Combinatoric Problems in Discrete Mathematics",
IEEE Potentials Journal , Problems no. 4 and 5 in the GamesMan Section,
April 1994, Vol. 13 No. 2, pp. 48.
<p>
Webster, Roger, G. Ingargiola, R. Aiken, "Augmenting Undergraduate
Instruction in Artificial Intelligence using Software Demonstration
Modules and ToolKits", Proceedings of the 1993
International Conference on Computers in Education Applications of
Intelligent Computer Technologies, Taipei, Taiwan, December 15-17,
1993, pps. 306-311. Sponsored by the Artificial Intelligence in
Education Society, American Association of Artificial Intelligence,
IEEE Computer Society - Taipei Section, and National Central University
of Taiwan. Presenter.
<p>
Webster, Roger and David Hess. "A Real-Time Software Controller for a
Digital Model Railroad System", Proceedings of the First IEEE
International Conference on Real-Time Applications, New York City,
N.Y., May 11-12, 1993, pp. 126-130, Sponsored by the IEEE Technical
Committee on Real-Time Systems, Office of Naval Research, Naval Surface
Warfare Center, and New Jersey Institute of Technology,
Presenter.
<p>
Webster, Roger and Y. Wei. "An Intelligent Mobile Robot Golfing System
Using Binocular Stereo Vision", Proceedings of the IAPR 11th
International Conference on Pattern Recognition ICPR'92 , The Hague,
The Netherlands, August 30 - September 4, 1992, pp. 603-607. Sponsored
by the International Association for Pattern Recognition Society
(IAPR), Presenter.
<p>
Webster, Roger and Y. Wei. "ARNIE P - A Robot Golfing System Using
Binocular Stereo Vision and an Heuristic Feedback Mechanism",
Proceedings of the IEEE International Conference on Intelligent Robots
and Systems IROS'92 , Raleigh, North Carolina, July 7-10, 1992, pp.
2027-2034. Sponsored by the IEEE Robotics and Automation Society and
the Robotics Society of Japan, Presenter.
<p>
Webster, Roger and Paul Ross, "A Workstation Laboratory to Improve
Undergraduate Instruction in Artificial Intelligence", Proceedings of
the Annual American Society for Engineering Education (ASEE)
Conference, Toledo, Ohio, June 21-25, 1992, pp.448-455. Sponsored by
the ASEE Division of Experimentation and Laboratory Oriented Studies
(DELOS). Poster Presentation.
<p>
Webster, Roger and Y. Wei. "A Robot Golfing System Using Binocular
Stereo Vision - Work in Progress", Proceedings of the Canadian Image
Processing and Pattern Recognition Society's Vision Interface
International Conference, Vancouver, British Columbia, Canada, May
11-17, 1992, pp.195-202 . Sponsored by the Canadian Image Processing
and Pattern Recognition Society, Presenter.
<p>
Webster, Roger, P. LaFollette, and R.L. Stafford. "Isthmus Critical
Points and Solving Jigsaw Puzzles in Computer Vision", IEEE
Transactions on Systems, Man and Cybernetics, September/October 1991,
Vol. 22, No. 5, pp. 1271-1278.
<p>
Webster, Roger. "Useful Artificial Intelligence Tools - A Review of
Heuristic Search Methods", IEEE Potentials Journal , October 1991,
Vol. 10 No. 3, pp. 51-54.
<p>
Webster, Roger, P.W. Ross, P. LaFollette, and R.L. Stafford. "A
Computer Vision System that Assembles Canonical Jigsaw Puzzles Using
the Euclidean Skeleton and Isthmus Critical Points", Proceedings of the
International Association of Pattern Recognition Workshop on Machine
Vision Applications (IAPR MVA'90), Tokyo, Japan, November 28-30, 1990,
pp. 421-426, Presenter.
<p>
Webster, Roger, "Blueprint Reading Robot Speeds PCB Drilling".
Manufacturing Systems Magazine. Hitchcock Publishing Corporation.
November 1988, pp. 64-67.
<p>
Webster, Roger, "Partial Boundary Matching and Shape Fitting Using the
Medial Axis Transformation", University Microfilms International: Ann
Arbor, Michigan, Ph.D. Dissertation, Temple University, 1988, pp.
1-208.
<p>
Webster, Roger, Contributed a small paragraph entitled: "Robot Drills
Off Blueprints". Advanced Manufacturing Technology Bi-Monthly Report.
Technical Insights Publishing Corporation. Vol. 9, no. 23, December 12,
1988. p. 7.
<p>
Webster, Roger, "A Robot that Reads PCB Blueprints". Electronic
Production and Packaging Magazine. Cahners Publishing Corporation.
February 1988, p. 58.
<p>
Webster, Roger, "How to Determine the Need for Distributed
Processing". Data Pro Research Corporation Technical Support
publication. May 1986, pp. 66-72. Reprinted from Proceedings of the ACM
Annual Conference on Office Automation.
<p>
Ungaro, Collin, Linking Microcomputers. McGraw Hill, April 1985.
Contributed an article reprinted from: Data Communications Magazine
February 1985, pp. 93-98.
<p>
Webster, Roger, "Building a Microcomputer Local Area Network". Data
Communications Magazine, McGraw Hill, February 1985, pp. 195-203.
<p>
Webster, Roger, "Distributed Software - How, When, and Why?".
Proceedings of the Annual ACM International Conference on Office
Automation, University of Toronto, Ontario, June 1984. Presenter,
pp. 80-87.
<p>
<h3>External Grants and Research Projects:</h3>
National Science Foundation (NSF) Instrumentation and Laboratory
Improvement Program ($97,969) matching grant entitled "A Virtual
Reality and Scientific Visualization Laboratory for Undergraduates
in Computer Science". This grant has provided greatly improved, modern research
equipment for Computer Graphics, Virtual Reality, and Scientific
Visualization. Scientific Visualization research is focused on
high-performance 3D computer graphics for scientific modelling,
virtual world modelling, and virtual reality simulations for
research training and experimentation in the natural and physical
sciences. NSF number 9651237 awarded to Dr. Roger Webster,
Computer Science principle investigator.
<p>
National Science Foundation ARI Grant. Principle Investigator in
project entitled: "Relacement and Renovation of Computer Science
Research and Research Training Laboratories". Awarded $141,827 from the
National Science Foundation's Academic Research Infrastructure Program
(February 1995 - 1997) to provide funds for focused investment in the
revitalization of facilities for undergraduate research in computer
science and scientific visualization. This grant will provide the
Computer Science department with newly renovated research
facilities in the areas of Robotics, Scientific Visualization, Computer
Vision, Artificial Intelligence, Software Engineering, and Real- Time
Systems Engineering. NSF number 93-166 awarded to Dr. Albert Hoffman
, Dean, Donald Stollenwork Facilities Manager, and
Dr. Roger Webster, Computer Science principle investigator.
<p>
National Science Foundation Grant. Co-participant in project entitled:
"Providing and Integrating Educational Resources for Faculty Teaching
Artificial Intelligence", National Science Foundation Grant ($81,115),
Summers 1994 and 1995, NSF Faculty Enhancement Program - Collaborative
grant project with Temple University, Drexel University, Villanova
University and Millersville University. Awarded to: Dr. Giorgio
Ingargiola and Dr. Robert Aiken, Temple University, Philadelphia,
Pennsylvania.
<p>
National Science Foundation Grant. NSF Instrumentation and Laboratory
Improvement Program ($53,039) matching grant entitled "A Real-Time
Systems Laboratory to Improve Undergraduate Instruction in Computer
Science", Awarded to Dr. Roger W. Webster and Dr. Paul Ross, Millersville University,
Grant No. DUE-9350841 (June 1993 to November 1995). Project Director.
<p>
National Science Foundation Grant. Co-participant in project entitled:
"FLAIR - Flexible Learning with an Artificial Intelligence
Repository", National Science Foundation Grant ($410,000), Sept. 1991-
Feb. 1995, NSF Grant # CDA-9115254, Collaborative research project with
Temple University, Drexel University, Villanova University and
Millersville University. Awarded to: Dr. Robert Aiken and Dr. Giorgio
Ingargiola, Temple University, Philadelphia, Pennsylvania, USA.
<p>
National Science Foundation Grant. NSF Instrumentation and Laboratory
Improvement Program ($86,600) matching grant entitled "A Workstation
Laboratory to Improve Undergraduate Instruction in Artificial
Intelligence", Awarded to Dr. Roger W. Webster, and Dr. Paul Ross,
Millersville University, Grant No. USE-9050371 (July 1990 to December 1992).
Project Director.
<p>
MIT Fellowship Stipend. Awarded one half tuition stipend to pursue
research interests in "Mathematics, Robot Vision and Expert Systems".
Massachusetts Institute of Technology Center for Advanced Engineering
Study - Cambridge, Massachusetts. Summer Term 1991 and 1992.
<p>
ISC Research and Development Project. Awarded for research project
entitled: "A Computer Vision System to Locate and Track Moving Objects
in 3-Space". Sponsored by the International Signal and Control
Corporation, Lancaster, PA, This project used a binocular stereo
computer vision system to compute the location of practice missiles in
3-space in real time. Academic year 1990/91.
<p>
Corporate Research Grant entitled: "Unix Device Driver for Robot
Vision Boards under Ultrix-32m". Sponsored by the MicroDisc
corporation of Mt. Laurel, New Jersey. The purpose of this ($32,000)
grant was to develop an Ultrix-32m device driver for a full series of
image processing boards manufactured by the Imaging Technology
Corporation. September 1986 - May 1987. Project Director.
<p>
Ben Franklin Advanced Technology Research Grant entitled: "Computer
Vision Automated Drilling System". Contract number 85-45006322 under
the Commonwealth of Pennsylvania act no. 223. Sponsored by the
Rinehart Engineering Corporation and the Ben Franklin Partnership
Program of Pennsylvania. The purpose of this ($210,000) grant was to
develop a system for the automated recognition of coordinates of holes
to be drilled on a printed circuit board. November 1985 - August 1986.
Project Director.
<p>
Rinehart Engineering Award: awarded monies to attend an MIT short
course during the summer of 1986. Sponsored by the Rinehart
Engineering Corporation. July 1985.
<p>
Memberships: <br>
IEEE Computer Society, <br>
Association for Computing Machinery (ACM), <br>
American Association for Artificial Intelligence (AAAI), <br>
International Society for Computer Simulation (ISCS), <br>
American Association for Engineering Education (ASEE). <br>
<br>
<!WA3><a href="http://cs.millersv.edu"><!WA4><img src="http://cs.millersv.edu/gif.dir/left.gif" border=0 align=middle> Back To CS Main Page</a>
<hr>
</body>
</html>
| ML-SWAT/Web2KnowledgeBase | webkb/faculty/misc/http:^^cs.millersv.edu^webster.html | HTML | mit | 16,743 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>MouseGuests!</title>
<meta name="description" content="Sharing our Disney obsession!" />
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="//www.mouseguests.com/themes/MouseGuests/favicon.ico">
<link rel="stylesheet" type="text/css" href="//www.mouseguests.com/themes/MouseGuests/assets/css/screen.css?v=1.0.0" />
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Merriweather:300,700,700italic,300italic|Open+Sans:700,400" />
<link rel="canonical" href="http://www.mouseguests.com" />
<meta name="generator" content="Ghost ?" />
<link rel="alternate" type="application/rss+xml" title="MouseGuests!" href="http://www.mouseguests.com/rss" />
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/styles/default.min.css">
</head>
<body class="tag-template tag-Dining home-template">
<header class="main-header tag-head no-cover">
<nav class="main-nav overlay clearfix">
<a class="back-button icon-arrow-left" href="http://www.mouseguests.com">Home</a>
<!-- <a class="subscribe-button icon-feed" href="http://www.mouseguests.com/tag/Dining/rss/">Dining</a> -->
</nav>
<div class="vertical">
<div class="main-header-content inner">
<h1 class="page-title">Dining</h1>
<h2 class="page-description">
A 4-post collection
</h2>
</div>
</div>
</header>
<main class="content" role="main">
<div class="extra-pagination inner">
<nav class="pagination" role="navigation">
<span class="page-number">Page 1 of 1</span>
</nav>
</div>
<div class="articleList">
<article class="post tag-Disney-World tag-News tag-Dining">
<header class="post-header">
<h2 class="post-title"><a href="http://www.mouseguests.com/2016/04/25/Eat-free-at-Disney-World-in-2016.html">Eat free at Disney World in 2016!</a></h2>
</header>
<section class="post-excerpt">
<img src="http://www.mouseguests.com/images/covers/TonysDessert.jpg"/>
<p>Anyone who has ever been to Walt Disney World can tell you that if you leave feeling hungry, you’ve done something wrong. Disney World <a class="read-more" href="http://www.mouseguests.com/2016/04/25/Eat-free-at-Disney-World-in-2016.html">»</a></p>
</section>
<footer class="post-meta">
on <a href="http://www.mouseguests.com/tag/Disney-World">Disney World</a>, <a href="http://www.mouseguests.com/tag/News"> News</a>, <a href="http://www.mouseguests.com/tag/Dining"> Dining</a>
<time class="post-date" datetime="2016-04-25">25 April 2016</time>
</footer>
</article>
<article class="post tag-Disney-World tag-News tag-Dining">
<header class="post-header">
<h2 class="post-title"><a href="http://www.mouseguests.com/2016/02/26/Table-service-dining-coming-to-Diamond-Horseshoe.html">Table service dining coming to Diamond Horseshoe</a></h2>
</header>
<section class="post-excerpt">
<p>The Diamond Horseshoe in Disney World’s Magic Kingdom was an opening day dining location, as the east-coast equivalent of Disneyland’s Golden Horseshoe. <a class="read-more" href="http://www.mouseguests.com/2016/02/26/Table-service-dining-coming-to-Diamond-Horseshoe.html">»</a></p>
</section>
<footer class="post-meta">
on <a href="http://www.mouseguests.com/tag/Disney-World">Disney World</a>, <a href="http://www.mouseguests.com/tag/News"> News</a>, <a href="http://www.mouseguests.com/tag/Dining"> Dining</a>
<time class="post-date" datetime="2016-02-26">26 February 2016</time>
</footer>
</article>
<article class="post tag-Friday-Favorites tag-Disney-World tag-Disneyland tag-Dining">
<header class="post-header">
<h2 class="post-title"><a href="http://www.mouseguests.com/2016/02/12/Friday-Favorites-What-is-your-favorite-Disney-pizza-place.html">Friday Favorites! What is your favorite Disney pizza place?</a></h2>
</header>
<section class="post-excerpt">
<p>This past Tuesday was National Pizza Day, which has us wondering: What is your favorite place in Walt Disney World or Disneyland to get a slice <a class="read-more" href="http://www.mouseguests.com/2016/02/12/Friday-Favorites-What-is-your-favorite-Disney-pizza-place.html">»</a></p>
</section>
<footer class="post-meta">
on <a href="http://www.mouseguests.com/tag/Friday-Favorites">Friday Favorites</a>, <a href="http://www.mouseguests.com/tag/Disney-World"> Disney World</a>, <a href="http://www.mouseguests.com/tag/Disneyland"> Disneyland</a>, <a href="http://www.mouseguests.com/tag/Dining"> Dining</a>
<time class="post-date" datetime="2016-02-12">12 February 2016</time>
</footer>
</article>
<article class="post tag-News tag-Disney-World tag-Dining tag-Magic-Kingdom">
<header class="post-header">
<h2 class="post-title"><a href="http://www.mouseguests.com/2016/02/10/Same-day-reservations-to-be-available-for-Skipper-Canteen.html">Same-day reservations to be available for Skipper Canteen</a></h2>
</header>
<section class="post-excerpt">
<p>The Jungle Navigation Company’s Skipper Canteen opened in late December, blending a unique dining experience with the fun (and corny jokes) of the Jungle <a class="read-more" href="http://www.mouseguests.com/2016/02/10/Same-day-reservations-to-be-available-for-Skipper-Canteen.html">»</a></p>
</section>
<footer class="post-meta">
on <a href="http://www.mouseguests.com/tag/News">News</a>, <a href="http://www.mouseguests.com/tag/Disney-World"> Disney World</a>, <a href="http://www.mouseguests.com/tag/Dining"> Dining</a>, <a href="http://www.mouseguests.com/tag/Magic-Kingdom"> Magic Kingdom</a>
<time class="post-date" datetime="2016-02-10">10 February 2016</time>
</footer>
</article>
</div>
<nav class="pagination" role="navigation">
<span class="page-number">Page 1 of 1</span>
</nav>
</main>
<center><a href="https://www.facebook.com/smvbyraymie"><img src="/images/banners/RaymieSMVBanner2.png" border="0" style="max-width:100%;max-height:100%;" /></a></center>
<footer class="site-footer clearfix">
<section class="copyright"><a href="http://www.mouseguests.com">MouseGuests!</a> © 2016</section>
<section class="poweredby">Proudly published with <a href="http://hubpress.io">HubPress</a></section>
</footer>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js?v="></script> <script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.9.0/moment-with-locales.min.js?v="></script> <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/highlight.min.js?v="></script>
<script type="text/javascript">
jQuery( document ).ready(function() {
// change date with ago
jQuery('ago.ago').each(function(){
var element = jQuery(this).parent();
element.html( moment(element.text()).fromNow());
});
});
hljs.initHighlightingOnLoad();
</script>
<script type="text/javascript" src="//www.mouseguests.com/themes/MouseGuests/assets/js/jquery.fitvids.js?v=1.0.0"></script>
<script type="text/javascript" src="//www.mouseguests.com/themes/MouseGuests/assets/js/index.js?v=1.0.0"></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-73437500-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>
| mouseguests/mouseguests.github.io | tag/Dining/index.html | HTML | mit | 8,388 |
{% extends "bootstrap/base.html" %}
{% import "bootstrap/fixes.html" as fixes %}
{% import "bootstrap/google.html" as google %}
{% block content %}
<div class="container text-center">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<h1>imgfab</h1>
<h2>Create amazing 3D photo galleries on <a href="http://sketchfab.com" target="_blank">Sketchfab</a>!</h2>
<br/>
<br/><br/>
<div class="panel panel-default">
<div class="panel-body">
{% if user.username or source == "instagram" %}
{% if user.username %}
<p>Welcome {{ user.first_name }}!</p>
<h4>Choose an album</h4>
<select id="facebook_albums"><option value="">Loading...</option></select>
{% else %}
<h4>Choose an Instagram account</h4>
https://instagram.com/<input type="text" id="instagram_username" />
{% endif %}
<br/><br/>
<h4>Choose a layout</h4>
<select id="imgfab_layout">
<option value="louvre">Louvre room (Max: 12 photos)</option>
<option value="louvre">Art gallery (Max: 12 photos)</option>
<option value="wall">Wall (Max: 3 x 30 photos)</option>
<option value="cube">Cube (Max: 6 photos)</option>
</select>
<br/><br/>
<button id="go_create" class="btn btn-primary">Create 3D Gallery!</button>
<br/><br/>
<div id="model_loading" style="display:none;" class="alert alert-info" role="alert">
3D gallery is being created, please wait ... This might take a few minutes.
</div>
<div id="model_link" style="display:none;" class="alert alert-success" role="alert">
Congrats! Your 3D gallery is available here:<br/> <a target="_blank" href="" class="model_link_a"></a>
</div>
{% else %}
<h4>Choose a source for your photos</h4>
<a class="btn btn-primary" href="{{ url_for("social.auth", backend="facebook") }}?next=/">Import from Facebook</a> <br />
<br/>or
<br/>
<a class="btn btn-primary" href="/instagram">Import from Instagram</a> <br />
{% endif %}
</div></div>
<br/><br/>
<h3>About imgfab</h3>
<p><a href="http://imgfab.io">imgfab</a> is a weekend project by <a href="http://twitter.com/sylvinus">Sylvain Zimmer</a> to experiment with the <a href="https://sketchfab.com/developers">Sketchfab API</a> and the dynamic generation of 3D models with <a href="http://blender.org">Blender</a>.</p>
<p>Full source is available on <a href="http://github.com/sylvinus/imgfab">GitHub</a>, feel free to fork it and create your own crazy 3D models!</p>
<h3>Meta-gallery</h3>
<iframe width="100%" height="300" src="https://sketchfab.com/models/e7f6da7583d84f2d8604fd4b633a9635/embed" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" onmousewheel=""></iframe>
<h3>Feedback?</h3>
<p>We have a rough <a href="https://github.com/sylvinus/imgfab#todo">TODO list</a> but we'd love to hear your ideas! Contact us at <a href="mailto:contact@imgfab.io">contact@imgfab.io</a></p>
<h3>Privacy policy</h3>
<p>imgfab doesn't store your photos. You can safely disconnect after creating your gallery.</p>
{% for assoc in backends.associated %}
<form method="post" action="{{ url_for("social.disconnect", backend=assoc.provider, association_id=assoc.id) }}?next=/logout">
<button class="btn btn-default btn-xs">Disconnect from {{ assoc.provider }}</button>
</form>
{% endfor %}
</div>
</div>
</div>
<a href="https://github.com/sylvinus/imgfab" target="_blank"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/365986a132ccd6a44c23a9169022c0b5c890c387/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f7265645f6161303030302e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png"></a>
<br/><br/><br/><br/>
{% endblock %}
{% block head %}
{{super()}}
{{fixes.ie8()}}
<style>
h1 {
font-size:70px;
}
h2 {
margin-top:0;
font-size:20px;
}
</style>
{% endblock %}
{% block scripts %}
{{super()}}
<script>
$(function() {
{% if user.username %}
$.getJSON("/data/facebook/albums", {}, function(data) {
var options = [];
for (var i=0; i<data.length; i++) {
var album = data[i];
options.push("<option value='"+album.id+"'>"+album.name+"</option>");
}
$("#facebook_albums").html(options.join(""));
});
{% endif %}
$("#go_create").on("click", function() {
$("#model_link").hide();
$("#model_loading").show();
var params = {
"layout": $("#imgfab_layout").val(),
"brand": "imgfab"
};
if ($("#facebook_albums").val()) {
params["source_name"] = "FacebookAlbum";
params["source_data"] = {
"album": $("#facebook_albums").val()
}
} else {
params["source_name"] = "InstagramFeed";
params["source_data"] = {
"username": $("#instagram_username").val()
}
}
$.ajax({
url: "/create_job",
data: {
"path": "process.Create3dGallery",
"params": JSON.stringify(params)
},
method:"POST",
dataType: "json",
success: function(data) {
var job_id = data.job_id;
poll_for_model(job_id);
}
})
});
var poll_for_model = function(job_id) {
$.getJSON("/get_job?job_id="+job_id, function(data) {
if (data.status == "success") {
$(".model_link_a").html(data.result.model_url);
$(".model_link_a").attr("href", data.result.model_url);
$("#model_link").show();
$("#model_loading").hide();
} else if (data.status == "failed") {
$("#model_loading").hide();
alert("There was an error creating your model. Please try again later!");
} else {
setTimeout(function() {
poll_for_model(job_id)
}, 5000);
}
});
}
});
</script>
{% if config['GOOGLE_ANALYTICS_ACCOUNT'] %}
{{google.analytics(account=config['GOOGLE_ANALYTICS_ACCOUNT'])}}
{% endif %}
{% endblock %} | sylvinus/imgfab | templates/imgfab/index.html | HTML | mit | 6,508 |
<!DOCTYPE html>
<html lang="en-gb">
<head>
<title>404 Page not found· Andrew Emerson</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Andrew Emerson">
<meta name="description" content="I blog about Android development">
<meta name="keywords" content="android,tech,personal,blog">
<meta name="generator" content="Hugo 0.53" />
<!-- Social meta-data -->
<meta property="og:title" content="404 Page not found">
<meta property="og:description" content="I blog about Android development">
<meta property="og:image" content="https://andrewemerson.io/home-header.jpg">
<meta property="og:url" content="">
<meta name="twitter:card" content="summary_large_image">
<meta property="og:site_name" content="Andrew Emerson">
<meta name="twitter:site" content="@aoemerson">
<!-- CSS -->
<link rel="stylesheet" href="https://andrewemerson.io/css/main.css">
<!--Favicons-->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png?v=WGab0GnOYR">
<link rel="icon" type="image/png" href="/favicon-32x32.png?v=WGab0GnOYR" sizes="32x32">
<link rel="icon" type="image/png" href="/favicon-16x16.png?v=WGab0GnOYR" sizes="16x16">
<link rel="manifest" href="/manifest.json?v=WGab0GnOYR">
<link rel="shortcut icon" href="/favicon.ico?v=WGab0GnOYR">
<meta name="theme-color" content="#ffffff">
<!-- RSS -->
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<!-- Google Fonts -->
<link href="//fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,700italic,400italic" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.6.0/styles/default.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.6.0/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
</head>
<body>
<header class="site-header" id="site-head">
<div class="branding">
<a href="https://andrewemerson.io/">
<img class="avatar" src="https://andrewemerson.io/img/avatar_orig.jpg" alt=""/>
</a>
<h1 class="site-title">
<a href="https://andrewemerson.io/">Andrew Emerson</a>
</h1>
</div>
<nav class="site-nav">
<ul>
<li><a href="/about/"> About me </a></li>
<li class="icon">
<a href="https://andrewemerson.io/" title="">
<i class="fa fa-fw fa-home"></i>
</a>
</li>
<li class="icon">
<a href="https://andrewemerson.io/index.xml" title="Subcribe">
<i class="fa fa-fw fa-rss"></i>
</a>
</li>
<li class="icon">
<a href="https://www.flickr.com/photos/andrew_emerson" title="See my photos on Flickr">
<i class="fab fa-flickr"></i>
</a>
</li>
<li class="icon">
<a href="https://github.com/aoemerson" title="Check out my code on GitHub">
<i class="fab fa-github"></i>
</a>
</li>
<li class="icon">
<a href="http://instagram.com/drewemerson" title="Folow me on Instagram">
<i class="fab fa-instagram"></i>
</a>
</li>
<li class="icon">
<a href="https://www.linkedin.com/in/andrewemerson" title="Connect on LinkedIn">
<i class="fab fa-linkedin"></i>
</a>
</li>
<li class="icon">
<a href="http://stackoverflow.com/story/aoemerson" title="See my developer story on Stackoverflow">
<i class="fab fa-stack-exchange"></i>
</a>
</li>
<li class="icon">
<a href="https://twitter.com/aoemerson" title="Follow me on twitter">
<i class="fab fa-twitter"></i>
</a>
</li>
<li class="icon">
<a href="https://dev.to/aoemerson" title="DEV">
<i class="fab fa-dev"></i>
</a>
</li>
</ul>
</nav>
</header>
<div class="content">
<article>
<header>
<h1 class="title">Page not found</h1>
</header>
<section class="post-content">
<span style="display: flex; justify-content: center; align-items: center;">Sorry, the requested page wasn’t found on the server.</span>
</section>
</article>
<footer class="site-footer">
<p class="text">© 2020 - Powered by <a href="//gohugo.io/">Hugo</a> with the <a href="//github.com/digitalcraftsman/hugo-type-theme">Type Theme</a></p>
</footer>
<script type="application/javascript">
var doNotTrack = false;
if (!doNotTrack) {
(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-86634006-1', 'auto');
ga('send', 'pageview');
}
</script>
</div>
</body>
</html> | aoemerson/aoemerson.github.io | 404.html | HTML | mit | 4,769 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="SHORTCUT ICON" href="../../../img/clover.ico" />
<style type="text/css" media="screen">
@import url('../../../style.css');
@import url('../../../roundedcorners.css');
@import url('../../../tree.css');
</style>
<script src="../../../sorttable.js" type="text/javascript"></script>
<script src="../../../overlibmws.js" type="text/javascript"><!-- overLIB (c) Erik Bosrup --></script>
<script src="../../../overlibmws_shadow.js" type="text/javascript" ></script>
<script src="../../../clover.js" type="text/javascript"></script>
<script src="../../../cloud.js" type="text/javascript"></script>
<script src="../../../help.js" type="text/javascript"></script>
<title>EasyMock 3.0</title>
</head>
<body onload="setBrowserTitle('EasyMock 3.0: org.easymock.tests.setDefaultThrowable');">
<table cellspacing="0" cellpadding="2" class="barGraph">
<tbody>
<tr>
<td colspan="6" >
<div class="roundedLarge">
<b class="ctop"><b class="cb1"></b><b class="cb2 testHeader"></b><b class="cb3 testHeader"></b><b class="cb4 testHeader"></b></b>
<div class="roundedContent">
<table width="100%" cellspacing="0"><tr class="reportHeader ">
<td valign="top" class="titleText testHeader">Clover Test Report - <a
href="http://www.easymock.org/easymock" target="_top">EasyMock 3.0</a><div class="timestamp"><b>Coverage timestamp:</b> sam. mai 8 2010 14:37:27 CEST
</div>
<div class="navBar">
<span><a href="../../../test-pkg-summary.html">Overview</a></span>
<span><a href="test-pkg-summary.html">Package</a></span>
<span><a href="test-ReplayStateInvalidCallsTest.html">File</a></span>
<span class="navBarCurrent">Test</span>
</div>
<div class="navBarLink">
<a href="../../../index.html" target="_top">FRAMES</a>
<a href="ReplayStateInvalidCallsTest_setDefaultThrowable_tu.html" target="_top">NO FRAMES</a>
<a><label onclick="toggleHelp(this);" class="nonHelpItem">SHOW HELP</label></a>
</div>
</td>
</tr></table>
</div>
<b class="cbottom"><b class="cb4 testHeader"></b><b class="cb3 testHeader"></b><b class="cb2 testHeader"></b><b class="cb1"></b></b>
</div>
</td>
</tr>
<tr><td class="hbreak" colspan="6"> </td></tr>
<tr>
<td class="graphHeaderLeft titleText testHeader">Test</td>
<td class="graphHeader headerTitle testHeader"><label onkeyup="return help_total_unique_coverage;">Unique Coverage</label></td>
<td class="graphHeader headerTitle testHeader"><label onkeyup="return help_test_status;">Status</label></td>
<td class="graphHeader headerTitle testHeader"><label onkeyup="return help_test_time;">Start time</label></td>
<td class="graphHeader headerTitle testHeader"><label onkeyup="return help_test_time;">Time (seconds)</label></td>
<td class="graphHeader headerTitle testHeader"><label onkeyup="return help_test_message;">Message</label></td>
</tr>
<tr>
<td class="graphItem alignTop titleText">
<a href="../../../org/easymock/tests/ReplayStateInvalidCallsTest.html?line=61#src-61" >setDefaultThrowable</a>
</td>
<td class="graphPercent alignTop">
0%
</td>
<td class="graphPercent alignTop">
<span class="sortValue">1</span>
<span class="testResultSuccess">PASS</span>
</td>
<td class="graphPercent alignTop">
8 mai 14:37:18
</td>
<td class="graphPercent alignTop">
0.0 </td>
<td class="graphItemRight alignTop">
<div class="titleText"></div>
<div class="errorMessage"></div>
</td>
</tr>
<tr><td class="hbreak" colspan="6"> </td></tr>
</tbody>
<tbody>
<tr>
<td class="graphHeaderLeft titleText sortable testHeader" style="white-space:nowrap;" onclick="ts_resortTable(this, 'alpha', 0);return false;"><label onkeyup="return help_test_target_class;">Target Class</label> </td>
<td class="graphHeader sortable testHeader" onclick="ts_resortTable(this, 'number', 1);return false;"><label onkeyup="return help_unique_coverage ;">Unique</label> </td>
<td class="graphHeader sortable testHeader" colspan="4" onclick="ts_resortTable(this, 'number', 2);return false;"><label onkeyup="return help_test_contribution;">Coverage contributed by</label> <span class="titleText">setDefaultThrowable</span>.</td>
</tr>
<tr>
<td class="graphItem" style="font-size: 11px">
<span class="sortValue">org.easymock.internal.RuntimeExceptionWrapper</span>
<a href="../../../org/easymock/internal/RuntimeExceptionWrapper.html?id=1074#RuntimeExceptionWrapper" title="RuntimeExceptionWrapper" name="sl-22">org.easymock.internal.RuntimeExceptionWrapper</a>
</td>
<td class="graphPercent">
<span class="sortValue">0.0</span>
</td>
<td class="graphPercent">
<span class="sortValue">0.5</span>
50%
</td>
<td class="graphPercent" style="width: 100%" colspan="3">
<div>
<div style="width: 40px; font-size:0px;"></div>
<div title="50% Not Covered" style="min-width: 40px;" class="barNegative contribBarNegative">
<div title="50% Covered" class="barPositive contribBarPositive" style="width: 50%"></div>
</div>
</div> </td>
</tr>
<tr>
<td class="graphItem" style="font-size: 11px">
<span class="sortValue">org.easymock.internal.ReplayState</span>
<a href="../../../org/easymock/internal/ReplayState.html?id=1074#ReplayState" title="ReplayState" name="sl-27">org.easymock.internal.ReplayState</a>
</td>
<td class="graphPercent">
<span class="sortValue">0.0</span>
</td>
<td class="graphPercent">
<span class="sortValue">0.060606062</span>
6,1%
</td>
<td class="graphPercent" style="width: 100%" colspan="3">
<div>
<div style="width: 40px; font-size:0px;"></div>
<div title="93,9% Not Covered" style="min-width: 40px;" class="barNegative contribBarNegative">
<div title="6,1% Covered" class="barPositive contribBarPositive" style="width: 6.1%"></div>
</div>
</div> </td>
</tr>
</tbody>
<tbody>
<tr><td class="hbreak" colspan="6"> </td></tr>
<tr><td class="footer" colspan="6">
<table>
<tr>
<td><a target="_new" href="http://www.atlassian.com/software/clover"><img alt="Clover" src="../../../img/logo.gif" style="border:none"/></a></td><td style="white-space:nowrap;"><i>Report generated by </i>Clover <a target="_new" href="http://www.atlassian.com/software/clover">Code Coverage</a> v3.0.1<i><br/>sam. mai 8 2010 14:37:33 CEST</i>.</td>
<td> </td><td style="BORDER-LEFT: #9c9c9c 1px solid;"> </td><td>Clover: Open Source License registered to EasyMock . </td>
</tr>
</table>
</td>
</tr></tbody>
</table>
</body>
</html>
| nico01f/z-pec | ZimbraCommon/jars-test/easymock-3.0/clover/org/easymock/tests/ReplayStateInvalidCallsTest_setDefaultThrowable_tu.html | HTML | mit | 8,084 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>JPEGCam Monitor</title>
<meta name="generator" content="geany">
<meta name="author" content="Joshua S. Weinstein">
<!-- Date: 2011-09-28 -->
</head>
<body>
<table><tr><td valign=top>
<h1>JPEGCam Monitor</h1>
<h3>Capture and upload a new webcam snapshot once<span id=showTime> per 5 minutes</span>.</h3>
<h4>Please click "Allow" and then "Start".</h4>
<!-- First, include the JPEGCam JavaScript Library -->
<script type="text/javascript" src="webcam.js"></script>
<!-- Configure a few settings -->
<script language="JavaScript">
webcam.set_api_url( 'test.php' );
webcam.set_quality( 90 ); // JPEG quality (1 - 100)
webcam.set_shutter_sound( false ); // play shutter click sound
</script>
<!-- Next, write the movie to the page at 320x240 -->
<script language="JavaScript">
document.write( webcam.get_html(320, 240) );
</script>
<!-- Some buttons for controlling things -->
<br/><form id=webcamForm name=webcamForm>
<input type=button value="Configure..." onClick="webcam.configure()">
<!--
<input type=button value="Capture" onClick="webcam.freeze()">
<input type=button value="Upload" onClick="do_upload()">
<input type=button value="Reset" onClick="webcam.reset()">
-->
<input type=button value="Take Snapshot" onClick="take_snapshot()">
<br />
<input type=number size="2" maxlength="3" min="0" max="720" value="00" id="hours" name="hours" title="Hours" class="timing"> :
<input type=number size="2" maxlength="2" min="0" max="60" value="05" id="minutes" name="minutes" title="Minutes" class="timing"> :
<input type=number size="2" maxlength="2" min="0" max="60" value="00" id="seconds" name="seconds" title="Seconds" class="timing">
<input type=button value="Start" id="restarter" onClick="timer.start()">
<input type=button value="Stop" id="stopper" onClick="timer.stop()">
<span id="notifier"></span>
</form>
<!-- Code to handle the server response (see test.php) -->
<script language="JavaScript" type="text/javascript">
webcam.set_hook( 'onComplete', 'my_completion_handler' );
function do_upload() {
// upload to server
document.getElementById('upload_results').innerHTML = '<h1>Uploading...</h1>';
webcam.upload();
}
function auto_upload() {
webcam.freeze();
do_upload();
}
function warn_upload() {
var n = document.getElementById('notifier');
if (n) n.innerHTML = "SNAP!";
setTimeout(function() { n.innerHTML="" }, 1000);
}
function Timer(_seconds, _callback, _notify) {
this.timerId = null;
this.seconds = parseFloat(_seconds || 60 * 60); // default: 1 webcam snapshot per 60 minutes
this.millis = this.seconds * 1000;
this.callback = _callback || auto_upload;
this.notifyId = null;
this.notify = _notify || warn_upload;
// if (this.start) this.start();
}
Timer.prototype = {
stopper : document.getElementById('stopper'),
restarter : document.getElementById('restarter'),
setSeconds : function (_seconds) {
this.seconds = parseFloat(_seconds || 60 * 60); // default: 1 webcam snapshot per 60 minutes
this.millis = this.seconds * 1000;
},
setMinutes : function(_min) { this.setSeconds(60 * _min); },
start: function() {
this.stop();
this.setSeconds( getTime() );
this.timerId = setInterval(this.callback, this.millis);
if (this.restarter) this.restarter.disabled='true';
if (this.stopper) this.stopper.disabled='';
if (typeof webcam !== "undefined") { webcam.frozen=false; webcam.reset(); }
},
stop: function() {
if (this.timerId != null) { clearInterval(this.timerId); }
if (this.restarter) this.restarter.disabled='';
if (this.stopper) this.stopper.disabled='true';
if (this.timerId != null && typeof webcam != "undefined" && !webcam.frozen) { webcam.freeze(); webcam.frozen=true; }
this.timerId = null;
}
};
function showIf(n,t) {
if (n) return n+t+(n > 1 ? "s" : "");
return "";
}
function getTime(f) {
if (!f) f = document.forms.webcamForm;
var hours = f.hours.value - 0,
minutes = f.minutes.value - 0,
seconds = f.seconds.value - 0;
var totalSeconds = seconds + 60 * (minutes + 60*hours);
// alert(totalSeconds);
document.getElementById('showTime').innerHTML = " per " + [showIf(hours," hour"), showIf(minutes, " minute"), showIf(seconds, " second")].join("");
return totalSeconds;
}
var timer = new Timer(getTime());
// timer.stop();
function take_snapshot() {
// take snapshot and upload to server
document.getElementById('upload_results').innerHTML = '<h1>Uploading...</h1>';
if (webcam.frozen) webcam.reset();
webcam.snap();
}
function my_completion_handler(msg) {
// extract URL out of PHP output
if (msg.match(/(http\:\/\/\S+)/)) {
var image_url = RegExp.$1;
// show JPEG image in page
document.getElementById('upload_results').innerHTML =
'<h1>Upload Successful!</h1>' +
'<h3>JPEG URL: ' + image_url + '</h3>' +
'<img src="' + image_url + '">';
// reset camera for another shot
webcam.reset();
}
else document.getElementById('upload_results').innerHTML = ("PHP Error: " + msg);
}
</script>
</td><td width=50> </td><td valign=top>
<div id="upload_results" style="background-color:#eee;"></div>
</td></tr></table>
</body>
</html>
| josher19/node-jpegcam | htdocs/set-monitor.html | HTML | mit | 5,667 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>idxassoc: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/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>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.11.1 / idxassoc - 8.7.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
idxassoc
<small>
8.7.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-07 11:43:43 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-07 11:43:43 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.11.1 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/idxassoc"
license: "BSD with advertising clause"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/IdxAssoc"]
depends: [
"ocaml"
"coq" {>= "8.7" & < "8.8~"}
]
tags: [ "keyword: associative arrays" "keyword: search operator" "keyword: data structures" "category: Computer Science/Data Types and Data Structures" "date: April 2001" ]
authors: [ "Dominique Quatravaux" "François-René Ridaux" "Gérald Macinenti" ]
bug-reports: "https://github.com/coq-contribs/idxassoc/issues"
dev-repo: "git+https://github.com/coq-contribs/idxassoc.git"
synopsis: "Associative Arrays"
description: """
We define the associative array (key -> value associations)
datatype as list of couples, providing definitions of standards
operations such as adding, deleting.
We introduce predicates for membership of a key and of couples.
Finally we define a search operator ("find") which returns the
value associated with a key or the "none" option (see file
Option.v which should be part of this contribution) on failure.
Lemmas we prove about these concepts were motivated by our needs
at the moment we created this file. We hope they'll suit your
needs too but anyway, feel free to communicate any wish or
remark."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/idxassoc/archive/v8.7.0.tar.gz"
checksum: "md5=35a56997f739b213f679dd1566fe3072"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-idxassoc.8.7.0 coq.8.11.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.11.1).
The following dependencies couldn't be met:
- coq-idxassoc -> coq < 8.8~ -> ocaml < 4.03.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-idxassoc.8.7.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.05.0-2.0.1/released/8.11.1/idxassoc/8.7.0.html | HTML | mit | 7,549 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="refresh" content="0;URL=../../openssl_sys/fn.X509_CRL_set1_nextUpdate.html">
</head>
<body>
<p>Redirecting to <a href="../../openssl_sys/fn.X509_CRL_set1_nextUpdate.html">../../openssl_sys/fn.X509_CRL_set1_nextUpdate.html</a>...</p>
<script>location.replace("../../openssl_sys/fn.X509_CRL_set1_nextUpdate.html" + location.search + location.hash);</script>
</body>
</html> | malept/guardhaus | main/openssl_sys/x509/fn.X509_CRL_set1_nextUpdate.html | HTML | mit | 441 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>18 --> 19</title>
<link href="./../../assets/style.css" rel="stylesheet">
</head>
<body>
<h2>You have to be fast</h2>
<a href="./4823e3fa04ff53c28cb8d69ec7fb34de80948034e014f2cdac958154041fa760.html">Teleport</a>
<hr>
<a href="./../../about.md">About</a> (Spoilers! )
<script src="./../../assets/md5.js"></script>
<script>
window.currentLevel = 7;
</script>
<script src="./../../assets/script.js"></script>
</body>
</html> | simonmysun/praxis | TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/03b3f443ea1fd591622e1f14fb0a6d575056380bd812265bf74e6823070c0021.html | HTML | mit | 550 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>18 --> 19</title>
<link href="./../../assets/style.css" rel="stylesheet">
</head>
<body>
<h2>You have to be fast</h2>
<a href="./cb3e0e1e025705a2e3e03ce1486c9431541dca519f1a53c7102efe835363e42d.html">Teleport</a>
<hr>
<a href="./../../about.md">About</a> (Spoilers! )
<script src="./../../assets/md5.js"></script>
<script>
window.currentLevel = 7;
</script>
<script src="./../../assets/script.js"></script>
</body>
</html> | simonmysun/praxis | TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/b58c9d7bcb39761a6eea92c05cfe2a90d9937778fecc7bf64acef01ca9109831.html | HTML | mit | 550 |
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0">
<meta name="format-detection" content="telephone=no">
<meta name="theme-color" content="#E8E8E9">
<meta name="description" content="r/CompetitiveOverwatch Maintenance">
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='flairs.css') }}?version=1.15">
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='reset.css') }}?version=1.1">
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='redditflair.css') }}?version=1.16">
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
</head>
<title>r/CompetitiveOverwatch Maintenance</title>
<body>
<img src="static/maintenance.gif" alt="Working hard">
<br/><br/>
<p>The flairsite is undergoing maintenance, check back soon!!</p>
</body>
</html>
| competitiveoverwatch/RankVerification | templates/maintenance.html | HTML | mit | 1,041 |
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="/js/bootstrap.min.js"></script> | stephanbruny/hades | views/includes.html | HTML | mit | 275 |
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Don't panic">
<base href="https://spanners.github.io/">
<title>
About
</title>
<link rel="canonical" href="https://spanners.github.io/categories/about/">
<script type="text/javascript">
var baseURL = 'https:\/\/spanners.github.io\/';
var host = baseURL.substring(0, baseURL.length - 1).replace(/\//g, '');
if ((host === window.location.host) && (window.location.protocol !== 'https:')) {
window.location.protocol = 'https:';
}
</script>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.6.0/styles/default.min.css">
<link rel="stylesheet" href="https://spanners.github.io/css/reset.css">
<link rel="stylesheet" href="https://spanners.github.io/css/pygments.css">
<link rel="stylesheet" href="https://spanners.github.io/css/main.css">
<link rel="stylesheet" href="https://spanners.github.io/css/override.css">
<link rel="shortcut icon"
href="https://spanners.github.io/img/leaf.ico"
>
<link href="https://spanners.github.io/categories/about/index.xml" rel="alternate" type="application/rss+xml" title="Simon Buist" />
</head>
<body lang="en">
<section class="header">
<div class="container">
<div class="content">
<a href="https://spanners.github.io/"><div class="name">Simon Buist</div></a>
<nav>
<ul>
<a href="https://spanners.github.io/blog/"><li>Blog</li></a>
<a href="https://spanners.github.io/about/"><li>About</li></a>
<a href="https://spanners.github.io/code/"><li>Code</li></a>
</ul>
</nav>
</div>
</div>
</section>
<section class="icons">
<div class="container">
<div class="content">
<a href="//github.com/spanners" target="_blank">
<i class="icon ion-social-github"></i>
</a>
<a href="//twitter.com/you" target="_blank">
<i class="icon ion-social-twitter"></i>
</a>
<a href="https://www.linkedin.com/in/simonbuist" target="_blank">
<i class="icon ion-social-linkedin"></i>
</a>
<a href="mailto:you@example.space">
<i class="icon ion-ios-email larger"></i>
</a>
<a href="https://spanners.github.io/index.xml">
<i class="icon ion-social-rss larger"></i>
</a>
</div>
</div>
</section>
<section class="main">
<div class="container">
<div class="content">
<div class="page-heading">Blog</div>
<ul>
<li class="post-item">
<span class="meta">Oct 30, 2016</span>
<a href="https://spanners.github.io/about/"><span>About</span></a>
</li>
</ul>
</div>
</div>
</section>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("XYZ");
pageTracker._trackPageview();
} catch(err) {}
</script>
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.6.0/highlight.min.js"></script>
<script type="text/javascript">
hljs.initHighlightingOnLoad();
</script>
</body>
</html>
| spanners/spanners.github.io | public/categories/about/index.html | HTML | mit | 3,925 |
<html><body>
<h4>Windows 10 x64 (18363.900)</h4><br>
<h2>_MM_SESSION_SPACE</h2>
<font face="arial"> +0x000 ReferenceCount : Int4B<br>
+0x004 u : <a href="./<anonymous-tag>.html"><anonymous-tag></a><br>
+0x008 SessionId : Uint4B<br>
+0x00c ProcessReferenceToSession : Int4B<br>
+0x010 ProcessList : <a href="./_LIST_ENTRY.html">_LIST_ENTRY</a><br>
+0x020 SessionPageDirectoryIndex : Uint8B<br>
+0x028 NonPagablePages : Uint8B<br>
+0x030 CommittedPages : Uint8B<br>
+0x038 PagedPoolStart : Ptr64 Void<br>
+0x040 PagedPoolEnd : Ptr64 Void<br>
+0x048 SessionObject : Ptr64 Void<br>
+0x050 SessionObjectHandle : Ptr64 Void<br>
+0x058 ImageTree : <a href="./_RTL_AVL_TREE.html">_RTL_AVL_TREE</a><br>
+0x060 LocaleId : Uint4B<br>
+0x064 AttachCount : Uint4B<br>
+0x068 AttachGate : <a href="./_KGATE.html">_KGATE</a><br>
+0x080 WsListEntry : <a href="./_LIST_ENTRY.html">_LIST_ENTRY</a><br>
+0x090 WsTreeEntry : <a href="./_RTL_BALANCED_NODE.html">_RTL_BALANCED_NODE</a><br>
+0x0a8 PagedPoolInfo : <a href="./_MM_PAGED_POOL_INFO.html">_MM_PAGED_POOL_INFO</a><br>
+0x0c0 Session : <a href="./_MMSESSION.html">_MMSESSION</a><br>
+0x0e0 CombineDomain : Uint8B<br>
+0x100 Vm : <a href="./_MMSUPPORT_FULL.html">_MMSUPPORT_FULL</a><br>
+0x240 WorkingSetList : <a href="./_MMWSL_INSTANCE.html">_MMWSL_INSTANCE</a><br>
+0x280 AggregateSessionWs : <a href="./_MMSUPPORT_AGGREGATION.html">_MMSUPPORT_AGGREGATION</a><br>
+0x2a0 HeapState : Ptr64 Void<br>
+0x2c0 PagedPool : <a href="./_POOL_DESCRIPTOR.html">_POOL_DESCRIPTOR</a><br>
+0x3c0 DriverUnload : <a href="./_MI_SESSION_DRIVER_UNLOAD.html">_MI_SESSION_DRIVER_UNLOAD</a><br>
+0x3c8 TopLevelPteLockBits : [32] Uint4B<br>
+0x448 PageDirectory : <a href="./_MMPTE.html">_MMPTE</a><br>
+0x450 SessionVaLock : <a href="./_EX_PUSH_LOCK.html">_EX_PUSH_LOCK</a><br>
+0x458 DynamicVaBitMap : <a href="./_RTL_BITMAP_EX.html">_RTL_BITMAP_EX</a><br>
+0x468 DynamicVaHint : Uint8B<br>
+0x470 SessionPteLock : <a href="./_EX_PUSH_LOCK.html">_EX_PUSH_LOCK</a><br>
+0x478 PoolBigEntriesInUse : Int4B<br>
+0x47c PagedPoolPdeCount : Int4B<br>
+0x480 DynamicSessionPdeCount : Uint4B<br>
+0x488 SystemPteInfo : <a href="./_MI_SYSTEM_PTE_TYPE.html">_MI_SYSTEM_PTE_TYPE</a><br>
+0x4e8 PoolTrackTableExpansion : Ptr64 Void<br>
+0x4f0 PoolTrackTableExpansionSize : Uint8B<br>
+0x4f8 PoolTrackBigPages : Ptr64 Void<br>
+0x500 PoolTrackBigPagesSize : Uint8B<br>
+0x508 PermittedFaultsTree : <a href="./_RTL_AVL_TREE.html">_RTL_AVL_TREE</a><br>
+0x510 IoState : <a href="./_IO_SESSION_STATE.html">_IO_SESSION_STATE</a><br>
+0x514 IoStateSequence : Uint4B<br>
+0x518 IoNotificationEvent : <a href="./_KEVENT.html">_KEVENT</a><br>
+0x530 ServerSilo : Ptr64 <a href="./_EJOB.html">_EJOB</a><br>
+0x538 CreateTime : Uint8B<br>
+0x1000 PoolTags : [16384] UChar<br>
</font></body></html> | epikcraw/ggool | public/Windows 10 x64 (18363.900)/_MM_SESSION_SPACE.html | HTML | mit | 3,158 |
<ion-modal-view class='image-modal'>
<ion-header-bar class='bar-stable nav-title-slide-ios7' align-title='center'>
<button class='button button-positive'
ng-click='vm.saveSketch()'>Save
</button>
<h1 class='title'>Sketch Pad</h1>
<div class='buttons'>
<button class='icon ion-close-round close-modal-button'
ng-click='vm.sketchModal.hide()'>
</button>
</div>
</ion-header-bar>
<ion-content class='has-header' id='canvasContent' scroll="false">
<div direction="xy" class="scrollableSketch" id="canvasParent">
<canvas style="z-index:1;" id='myCanvas'></canvas>
<div id='eraserIcon' class="eraser-icon" ng-click='vm.eraseSketch()'></div>
</div>
</ion-content>
</ion-modal-view> | StraboSpot/strabo-mobile | www/app/spot/images/sketch-modal.html | HTML | mit | 760 |
<html>
<head>
<title>Node Chat</title>
</head>
<body>
<h2>Simple chat</h2>
<div id="chat-content" style="height:250px;width:400px;border:1px solid black;padding:10px;resize:both;overflow:auto">Please wait</div>
<input id="chat-input" type="text" placeholder="message"/>
<script type="text/javascript">
var _appPort = 6753;
var _content = document.getElementById( "chat-content" );
var _url = window.location.hostname;
var _autoScroll = true;
// when localhost
if ( !_url.match( "http" ) )
_url = "http://" + _url;
window._content = _content;
window.addEventListener( "load", function()
{
console.log( "window loaded" );
var tag = document.createElement( 'script' );
tag.src = _url + ":" + _appPort + '/socket.io/socket.io.js';
tag.onload = function()
{
console.log( '%cSocket.io loaded !', "color:green" );
init();
document.body.removeChild( tag );
tag.onload = null;
tag.onerror = null;
tag = null;
}
tag.onerror = function()
{
alert( "Cannot retrieve socket.io" );
var error = document.createElement( "div" );
error.innerHTML = "Error while loading Socket.io";
_content.appendChild( error );
document.body.removeChild( tag );
tag.onload = null;
tag.onerror = null;
tag = null;
}
document.body.appendChild( tag );
} );
function init()
{
if ( !io )
{
console.log( "An error occurred, io cannot be found after lib loading" );
alert( "An error occurred, io cannot be found after lib loading" );
return;
}
var status = document.createElement( "div" );
status.innerHTML = "Connecting to server...";
_content.appendChild( status );
var socket = io.connect( _url + ":" + _appPort );
socket.on( "message-enter", function( message )
{
if ( _content.scrollHeight - _content.scrollTop <= _content.offsetHeight )
_autoScroll = true;
else
_autoScroll = false;
var msg = document.createElement( "div" );
var tester = message.split( ": " );
// system message
if ( tester.length == 1 )
{
msg.style.color = "red";
msg.innerHTML = message;
}
else
{
var nickDom = document.createElement( "b" );
nickDom.setAttribute( "title", "sent at: " + new Date().toLocaleString() );
nickDom.innerHTML = tester[ 0 ] + ": ";
var msgDom = document.createElement( "span" );
msgDom.innerHTML = message.slice( tester[ 0 ].length + 2, message.length );
msg.appendChild( nickDom );
msg.appendChild( msgDom );
}
_content.appendChild( msg );
if ( _autoScroll )
_content.scrollTop = _content.scrollHeight;
} );
var input = document.getElementById( "chat-input" );
input.addEventListener( "keydown", function( e )
{
if ( e.keyCode == 13 && input.value.trim() != "" )
{
socket.emit( "send-message", input.value.trim() );
input.value = "";
}
} );
}
</script>
</body>
</html> | Inateno/node-chat-cluster | public/index.html | HTML | mit | 3,589 |
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Bullet-proof Front Architecture</title>
<meta name="description" content="A framework for easily creating beautiful presentations using HTML">
<meta name="author" content="Laurent WIESEL">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/reveal.min.css">
<link rel="stylesheet" href="css/theme/default.css" id="theme">
<!-- For syntax highlighting -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<style>
.reveal h1 {margin-bottom: 1em;}
.reveal h2 {text-shadow: 0px 0px 6px rgba(0, 0, 0, 1);}
.well {background-color: rgba(0, 0, 0, 0.5);padding: 1em !important;}
.reveal blockquote {
font-family: Georgia, serif;
font-size: 1em;
font-style: italic;
margin: 0.25em 0;
padding: 0.25em 2.5em;
line-height: 1.45;
position: relative;
text-align: left;
width: 100%;
}
.reveal blockquote:before {
display: block;
content: "\201C";
font-size: 8em;
position: absolute;
left: -0.3em;
top: -0.3em;
color: #7a7a7a;
}
.reveal blockquote cite {
color: #999999;
font-size: 0.6em;
display: block;
margin-top: 5px;
}
.reveal blockquote cite:before {
content: "\2014 \2009";
}
.reaveal code, .reveal pre code {
max-height: none;
}
</style>
<!-- If the query includes 'print-pdf', include the PDF print sheet -->
<script>
if( window.location.search.match( /print-pdf/gi ) ) {
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = 'css/print/pdf.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
}
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section>
<h1 style="position: relative;z-index: 50;">Bullet-proof Front Architecture</h1>
<h3>Guichet done right<img src="img/bullet_hole.png" alt="" style="width: 50%;position: absolute;z-index: 1;top: 280px;right: -40px;border: none;background: none;box-shadow: none;"></h3>
</section>
<section data-background="http://memeorama.com/wp-content/uploads/2012/05/cat-with-glasses.jpg">
<h2>En début de projet...</h2>
<p class="fragment well">Tout est possible, tout est ré-utilisable, tout est beau...</p>
</section>
<section data-background="http://memeorama.com/wp-content/uploads/2012/05/cat-with-glasses.jpg">
<h2>Mais rapidement...</h2>
</section>
<section data-background="http://i.giphy.com/HP0JqpBxLLGpO.gif">
<h2>ouch.</h2>
</section>
<section>
<h3>Le CSS est souvent le premier indicateur de</h3>
<h2>code smell</h2>
<p style="text-align: justify;font-size: 0.8em;">#standfirst,.list-heading {
font-family: Arial, Helvetica, sans-serif;
font-weight: 400;
}
code,pre {
font-family: "Courier New", Courier, monospace;
}
code {
font-weight: 700;
}
html,body {
font-size: 100%;
}
h1 {
font-size: 240%;
text-transform: uppercase;
margin: 0 0 30px;
}
h2 {
font-size: 110%;
}
.extras h2 {
border-bottom: 1px solid #3d3a37;
font-size: 180%;
}
h4 {
font-size: 100%;
font-weight: 400;
margin-bottom: 5px;
}
p,ul {
font-size: 80%;
line-height: 1.4em;
}
footer a,#wiley-logo,.tool .chapter-ref,.newsletter,pre,.extra-content td {
font-size: 75%;
}
footer {
border-top: 1px solid #999;
clear: both;
text-transform: uppercase;
width: 940px;
margin: 0 auto;
}
#welcome-text {
color: #000;
line-height: 1.3em;
margin-bottom: 10px;
}
#standfirst {
line-height: 1.5em;
margin-top: 10px;
}
.list-description {
line-height: 1.8em;
margin: 10px 0 10px 20px;
}
nav {
float: right;
font-size: 75%;
text-align: right;
text-transform: uppercase;
width: 380px;
z-index: 70;
margin: 24px 0 19px;
}
nav a {
color: #fff;
line-height: 15px;
margin-left: 10px;
padding-bottom: 4px;
}
dfn {
font-style: italic;
}
header {
-moz-box-shadow: 0 0 12px -2px #000;
-webkit-box-shadow: 0 0 12px -2px #000;
background-color: #3d3a37;
box-shadow: 0 0 12px -2px #000;
height: 60px;
left: 0;
position: fixed;
top: 0;
width: 100%;
z-index: 50;
}
#content {
background-color: #eeeceb;
}
nav a:hover {
border-bottom: 1px solid #fff;
color: #fff;
}
nav a.current:hover {
border-bottom: 1px solid #fff;
color: #e2764a;
}
a:hover {
color: #ab5a3b;
}
a .chapter-ref {
color: #999;
}
.byline {
color: #666;
}
section,header,footer,aside {
display: block;
}
#attractor {
clear: both;
height: 400px;
left: 0;
margin-top: 60px;
position: relative;
text-align: center;
top: 0;
width: 100%;
z-index: 5;
}
#slideshow {
height: 400px;
left: 0;
overflow: hidden;
position: relative;
top: 0;
width: 1000px;
margin: 0 auto;
}
#logo {
margin: 19px 0;
}
.page,.page-internal {
width: 960px;
margin: 0 auto;
}
.page-internal {
clear: both;
margin-top: 140px;
}
.push1 {
margin-left: 320px;
}
.push2 {
margin-left: 640px;
}
.columns1,.columns2,.columns3,.header1,.header2,.header3 {
float: left;
margin: 0 10px;
}
.columns1 {
width: 300px;
}
.columns2 {
width: 620px;
}
.columns3 {
width: 960px;
}
.header2 {
width: 140px;
}
.column3right {
float: right;
width: 300px;
margin: 0 10px 30px;
}
.chapter,.tool {
background-image: url(../images/chapter-frame.gif);
height: 200px;
margin-bottom: 20px;
}
.tool {
float: left;
height: 170px;
width: 270px;
margin: 0 10px 20px;
padding: 15px;
}
header .center {
padding-top: 8px;
}
#overview {
position: relative;
top: -50px;
}
.chapter h1 {
margin: 70px 0 0;
}
li {
margin-bottom: 1em;
}
footer</p>
</section>
<section>
<h2>Votre CSS va mal</h2>
<ul>
<li class="fragment">Le code est en vrac dans 1 ou plusieurs fichiers</li>
<li class="fragment">Beaucoup de code est dupliqué</li>
<li class="fragment">Des sélecteurs trop spécifiques sont utilisés pour compenser</li>
<li class="fragment">Les fichiers CSS sont lourds et difficilement maintenables</li>
<li class="fragment">Les performances sont impactées, notamment sur mobile</li>
<li class="fragment">Vous n'avez pas le temps et l'énergie de tout refondre</li>
</ul>
</section>
<section data-background="https://annavublog.files.wordpress.com/2014/09/kitten-16219-1366x768.jpg">
<h2>Priez pour votre salut, pauvres fous</h2>
</section>
<!--Step 1: OOCSS-->
<section>
<section>
<h2>Step 1 : OoCSS</h2>
<img src="http://www.hallereyecenter.com/wp-content/uploads/2014/07/dont-know.jpg" alt="">
</section>
<section>
<h2>Step 1 : OoCSS</h2>
<blockquote style="font-family: Colibri" cite="http://searchservervirtualization.techtarget.com/definition/Our-Favorite-Technology-Quotations">
“Le principe du CSS Orienté Objet est de séparer le contenu des contenants et de considérer les blocs de contenus comme des objets réutilisables auxquels nous appliquons un habillage graphique.”
<cite>Nicole Sullivan <a href="https://github.com/stubbornella/oocss/wiki">https://github.com/stubbornella/oocss/wiki</a></cite>
</blockquote>
</section>
<section data-background="http://media.giphy.com/media/cZp4oS5MlrkFa/giphy.gif"></section>
<section>
<h2>Step 1 : OoCSS</h2>
<p>Dans la pratique, on distingue quelques règles simples :</p>
<ul>
<li class="fragment">Réfléchir en termes d’éléments réutilisables<br>=> classes et non Ids</li>
<li class="fragment">Cibler un élément plutôt qu’un contexte</li>
<li class="fragment">Définir un fichier par élément</li>
</ul>
</section>
<section style="top: -400px !important">
<h2>Meet the smelly code</h2>
<pre><code style="max-height: none;" data-trim contenteditable>
nav {
background-color: lightgrey;
font-size: 1.2em;
}
nav #search form {
float: right;
}
nav #search form input {
color: white;
}
nav p a {
font-style: underline;
}
nav p a:hover {
color: black;
}
#sidemenu {
background-color: none;
}
#sidemenu a {
color: cyan;
}
#sidemenu p + p {
margin-top: 2em;
}
</code></pre>
</section>
<section style="top: -470px !important">
<h2>Après OoCSS</h2>
<div style="width: 49%;float: left;">
<pre class="fragment"><code style="max-height: none;" data-trim contenteditable>
/* navbar.css */
.navbar {
background-color: lightgrey;
font-size: 1.2em;
}
.nav-search {
float: right;
}
.nav-search input {
color: white;
}
.navbar p a {
font-style: underline;
}
.navbar p a:hover {
color: black;
}
</code></pre>
<pre class="fragment"><code style="max-height: none;" data-trim contenteditable>
/* sidemenu.css */
.sidemenu {
background-color: none;
}
.sidemenu a {
color: cyan;
}
.sidemenu p + p {
margin-top: 2em;
}
</code></pre>
</div>
<div class="fragment" style="width: 49%;float: left;">
<pre><code style="max-height: none;" data-trim contenteditable>
/* main.css */
…
@import url(‘navbar.css’);
@import url(‘sidemenu.css’);
…
</code></pre>
</div>
</section>
<section data-background="http://media.giphy.com/media/ncbdoCpKerEbK/giphy.gif"></section>
<section style="top: -470px !important">
<h2>Après OoCSS</h2>
<div style="width: 49%;float: left;">
<pre><code style="max-height: none;" data-trim contenteditable>
/* navbar.css */
.navbar {
background-color: lightgrey;
font-size: 1.2em;
}
.nav-search {
float: right;
}
.nav-search input {
color: white;
}
.navbar p a {
font-style: underline;
}
.navbar p a:hover {
color: black;
}
</code></pre>
<pre><code style="max-height: none;" data-trim contenteditable>
/* sidemenu.css */
.sidemenu {
background-color: none;
}
.sidemenu a {
color: cyan;
}
.sidemenu p + p {
margin-top: 2em;
}
</code></pre>
</div>
<div style="width: 49%;float: left;">
<div class="fragment" style="border: 4px red solid;width:
400px;height: 100px;position: absolute;z-index: 999;top:170px;overflow: hidden;background-color: rgba(255, 0, 0, 0.3)"><span style="color: white;font-size: 1em;line-height: 1em;" class="fragment">crap crap crap crap crap crap crap crap crap crap crap</span></div>
<pre><code style="max-height: none;" data-trim contenteditable>
/* main.css */
…
@import url(‘navbar.css’);
@import url(‘sidemenu.css’);
…
</code></pre>
</div>
</section>
</section>
<!--Step 2 : Pré-processeurs-->
<section>
<section>
<h2>Step 2 : Pré-processeurs</h2>
<img src="http://i.imgur.com/Mzozm.jpg" alt="">
</section>
<section>
<h2>Step 2 : Pré-processeurs</h2>
<blockquote style="font-family: Colibri" cite="http://searchservervirtualization.techtarget.com/definition/Our-Favorite-Technology-Quotations">
“Les pré-processeurs sont des outils de développement permettant d'écrire du style dans langage riche en fonctionnalités, et compilant en CSS.”
<cite>Laurent Wiesel <a href="http://bit.ly/1B5bqGQ">http://bit.ly/1B5bqGQ</a></cite>
</blockquote>
</section>
<section>
<h2>Step 2 : Pré-processeurs</h2>
<p>Les préprocesseurs CSS permettent de <em>coder</em> du CSS.</p>
<p>Certains préprocesseurs comme <strike>LESS</strike> SASS ou Stylus ont des fontionnalités très riches !</p>
<ul>
<li><a href="http://sass-lang.com/">http://sass-lang.com/</a></li>
<li><a href="http://learnboost.github.io/stylus/">http://learnboost.github.io/stylus/</a></li>
<br/>
<small><li><a href="http://lesscss.org/">http://lesscss.org/</a></li></small>
</ul>
</section>
<section>
<h2>Step 2 : Pré-processeurs</h2>
<p>Ici, seules les fonctionnalités les plus basiques nous intéressent :</p>
<ul>
<li>Les variables</li>
<li>L'import <i>nesté</i> de fichiers de style</li>
</ul>
</section>
<section style="top: -470px !important; width: 1300px;left: -100px;">
<h2>Step 2 : Pré-processeurs</h2>
<div style="width: 49%;float: left;">
<pre><code style="max-height: none;" data-trim>
/* _settings.scss */
$theme-color-1: lightgray;
$theme-color-2: cyan;
$font-base-color: black;
</code></pre>
<pre><code style="max-height: none;" data-trim>
/* _navbar.scss */
$navbar-bg-color: $theme-color-1;
$navbar-font-size: 1.2em;
$navbar-search-bg-color: invert($font-base-color)
$navbar-link-color-hover: black;
.navbar {
background-color: $navbar-bg-color;
font-size: $navbar-font-size;
}
.nav-search {
float: right;
}
.nav-search input {
color: $navbar-search-bg-color;
}
.navbar p a {
font-style: underline;
}
.navbar p a:hover {
color: $navbar-link-color-hover;
}
</code></pre>
</div>
<div style="width: 49%;float: left;">
<pre><code style="max-height: none;" data-trim>
/* main.scss */
…
@import settings;
@import navbar;
@import sidemenu;
…
</code></pre>
<pre><code style="max-height: none;" data-trim>
/* _sidemenu.scss */
$sidemenu-bg-color: none;
$sidemenu-link-color: $theme-color-2;
.sidemenu {
background-color: $sidemenu-bg-color;
}
.sidemenu a {
color: $sidemenu-link-color;
}
.sidemenu p + p {
margin-top: 2em;
</code></pre>
</div>
</section>
</section>
<!--Step 3 : Nomenclature de classes-->
<section>
<section>
<h2>Step 3 : Nomenclature de classes</h2>
<img src="http://www.morillas.com/wp-content/uploads/2013/02/naming.png" alt="">
</section>
<section>
<h2>Step 3 : Nomenclature de classes</h2>
<blockquote style="font-family: Colibri">
“There are only two hard things in Computer Science: cache invalidation and naming things.”
<cite>Martin Fowler</cite>
</blockquote>
</section>
<section>
<h2>Step 3 : Nomenclature de classes</h2>
<p>Non au nommage sémantique : <i>semantical naming</i></p>
<p>Oui au nommage raisonné : <i>sensible naming</i></p>
<br/>
<p class="fragment">
La sémantique c'est pour les machines.
</p>
<br/>
<p class="fragment">
Une balise html est interprétée. C'est une notation <strong>sémantique</strong>.
</p>
<p class="fragment">
Un nom de classe n'est jamais interprété par une machine. C'est une notation <strong>raisonnée</strong>.
</p>
</section>
<section>
<h2>Step 3 : Nomenclature de classes</h2>
<p>On adopte par exemple la notation BEM : <br/><span style="color: green">Block</span> - <span style="color: blue">Element</span> - <span style="color: red">Modifier</span></p>
<br/>
<p style="text-align: left;position: relative;left: 300px;">
<span style="color: green">.navbar</span> {…} <br/>
<span style="color: green">.navbar</span>__<span style="color: blue">search</span> {…} <br/>
<span style="color: green">.navbar</span>__<span style="color: blue">search</span>--<span style="color: red">hover</span> {…}
</p>
</section>
<section style="top: -470px !important; width: 1300px;left: -100px;">
<h2>Step 3 : Nomenclature de classes</h2>
<pre><code style="max-height: none;" data-trim>
/* _navbar.scss */
$navbar-bg-color: $theme-color-1;
$navbar-font-size: 1.2em;
$navbar-search-bg-color: invert($font-base-color)
$navbar-search-bg-active-color: lighten(invert($font-base-color), 10%);
$navbar-link-color-hover: black;
.navbar {
background-color: $navbar-bg-color;
font-size: $navbar-font-size;
}
.navbar__search {
float: right;
}
.navbar__searchInput {
color: $navbar-search-bg-color;
}
.navbar__searchInput--active {
color: $navbar-search-bg-active-color;
}
.navbar__link {
font-style: underline;
}
.navbar__link:hover,
.navbar__link--hover {
color: $navbar-link-color-hover;
}
</code></pre>
</section>
</section>
<!--Step 4 : Atomic Design-->
<section>
<section>
<h2>Step 4 : Atomic Design</h2>
<h3>#boum</h3>
<img style="background-color: transparent;border: none;box-shadow: none;" src="http://www.userlogos.org/files/logos/Jungchen/fallout3vaultboy%20copy.png" alt="">
</section>
<section>
<h2>Step 4 : Atomic Design</h2>
<blockquote style="font-family: Colibri">
“We’re not designing pages,<br/>we’re designing systems of components.”
<cite>Stephen Hay on <a href="http://bradfrost.com/blog/post/atomic-web-design/">Brad Frost website</a></cite>
</blockquote>
</section>
<section>
<h2>Step 4 : Atomic Design</h2>
<p>En bref, l'<em>Atomic Design</em>, c'est :</p>
<ul>
<li class="fragment">une approche modulaire du design</li>
<li class="fragment">une organisation tout-composants</li>
<li class="fragment">une méthodologie pour structurer son front</li>
</ul>
<br/><br/>
<p class="fragment">Ce n'est pas :</p>
<ul class="fragment">
<li>uniquement pour le CSS</li>
<li class="fragment">une librairie</li>
<li class="fragment">un framework</li>
<li class="fragment">un lolcat</li>
<li class="fragment">dangereux</li>
</ul>
</section>
<section>
<h2>Step 4 : Atomic Design</h2>
<p>Nous allons séparer le code en 3 niveaux structurels :</p>
<br/>
<ol>
<li class="fragment"><h3>Quarks</h3>Elements HTML purs</li>
<li class="fragment" style="margin-top: 1em;"><h3>Atomes</h3>Composants stand-alone</li>
<li class="fragment" style="margin-top: 1em;"><h3>Molécules</h3>Composants utilisants d'autres composants</li>
</ol>
</section>
<section data-transition="none">
<h2>Step 4 : Atomic Design</h2>
<p>Nous allons séparer le code en 3 niveaux structurels :</p>
<br/>
<ol>
<li><h3>Quarks <span class="fragment" style="color: darkred;">Pas de dépendences</span></h3>Elements HTML purs</li>
<li style="margin-top: 1em;"><h3>Atomes <span class="fragment" style="color: darkred;">Pas de dépendences</span></h3>Composants stand-alone</li>
<li style="margin-top: 1em;"><h3>Molécules <span class="fragment" style="color: darkred;">Dépendences sur les Atomes</span></h3>Composants utilisants d'autres composants</li>
</ol>
</section>
<section data-markdown>
<script type="text/template" style="max-height: auto">
## Step 4 : Atomic Design
### Schema light
```
main.scss
_global_setting.scss
_global_mixins.scss
_base.scss
atoms/
┣ _buttons.scss
┣ _typography.scss
┗ _h_titles.scss
components/
┣ _footer.scss
┣ _navbar.scss
┣ _search.scss
┣ _sidemenu.scss
┗ _tabs.scss
```
</script>
</section>
<section data-markdown>
<script type="text/template" style="max-height: auto">
## Step 4 : Atomic Design
### Schema complet
```
main.scss
_global_setting.scss
_global_mixins.scss
_base.scss
atoms/
┣ _buttons.scss
┣ _typography.scss
┗ _h_titles.scss
molecules/
┣ _search.scss
┗ _tabs.scss
organisms/
┣ _navbar.scss
┣ _sidemenu.scss
┗ _footer.scss
```
</script>
</section>
<section>
<h2>Step 4 : Atomic Design</h2>
<p class="fragment">Mais souvenez vous...</p>
<br/>
<p class="fragment">L'Atomic Design n'est pas uniquement pour le CSS...</p>
</section>
<section data-background="http://media.giphy.com/media/oSs0hcTrbF2WA/giphy.gif">
</section>
<section data-markdown>
<script type="text/template" style="max-height: auto">
## Step 4 : Atomic Design
### Schema complet
```
main.scss
_global_setting.scss
_global_mixins.scss
_base.scss
atoms/
┣ _buttons.scss
┣ _typography.scss
┗ _h_titles.scss
molecules/
┣ search/
┃ ┣ _search.scss
┃ ┣ search.html
┃ ┗ search.js
┗ tabs/
┣ _tabs.scss
┣ tabs.html
┗ tabs.js
organisms/
┣ navbar/
┃ ┣ _navbar.scss
┃ ┣ navbar.html
┃ ┗ navbar.js
┣ sidemenu/
┃ ┣ _sidemenu.scss
┃ ┗ sidemenu.html
┗ footer/
```
</script>
</section>
</section>
<!--Step 5 : Le futur -->
<section>
<section>
<h2>Step 5 : Le futur</h2>
<h3>#2017</h3>
<img style="max-height: 300px;" src="http://yianniscove.com/admin/wp-content/uploads/2012/01/back-to-the-future-lloyd-michael-j-fox.jpeg" alt="">
</section>
<section>
<h2>Step 5 : The future</h2>
<blockquote style="font-family: Colibri">
“The Web Components consists of five pieces: <br/>
Templates, Decorators, Custom Elements, Shadow DOM and Imports.
<br/><br/>
Each of these pieces is useful individually. When used in combination, Web Components enable Web application authors to define widgets with a level of visual richness and interactivity not possible with CSS alone, and ease of composition and reuse not possible with script libraries today.”
<cite>W3C on <a href="http://www.w3.org/TR/2013/WD-components-intro-20130606//">Web Components Drafts</a></cite>
</blockquote>
</section>
<section data-background="http://media.giphy.com/media/dswr4dRQtEzf2/giphy.gif">
<h1 style="position: relative; top: 200px;">The future is now!</h1>
</section>
<section>
<h2>Step 5 : The future</h2>
<p>L'approche Web Components peut être amorcée dès aujourd'hui !</p>
<br/>
<ul>
<li class="fragment"><a href="https://www.polymer-project.org/">https://www.polymer-project.org/</a> lib + repo !</li>
<li class="fragment"><a href="https://angularjs.org/">https://angularjs.org/</a></li>
<li class="fragment"><a href="http://backbonejs.org/">http://backbonejs.org/</a></li>
<li class="fragment"><a href="http://webcomponents.org/">http://webcomponents.org/</a></li>
</ul>
</section>
<section data-background="http://media1.giphy.com/media/8HSR2CT7AC6kw/giphy.gif">
<h1>Have fun!</h1>
</section>
</section>
<section data-background="http://gifatron.com/wp-content/uploads/2013/05/taxi-drive-clap.gif">
<h1>The End</h1>
</section>
<section data-background="http://upload.wikimedia.org/wikipedia/commons/6/65/20_questions_1954.JPG">
<h1 style="position: relative;top: 100px">Des questions ?</h1>
</section>
<!-- Example of nested vertical slides -->
<section>
<section>
<h2>Vertical Slides</h2>
<p>
Slides can be nested inside of other slides,
try pressing <a href="#" class="navigate-down">down</a>.
</p>
<a href="#" class="image navigate-down">
<img width="178" height="238" src="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" alt="Down arrow">
</a>
</section>
<section>
<h2>Basement Level 1</h2>
<p>Press down or up to navigate.</p>
</section>
<section>
<h2>Basement Level 2</h2>
<p>Cornify</p>
<a class="test" href="http://cornify.com">
<img width="280" height="326" src="https://s3.amazonaws.com/hakim-static/reveal-js/cornify.gif" alt="Unicorn">
</a>
</section>
<section>
<h2>Basement Level 3</h2>
<p>That's it, time to go back up.</p>
<a href="#/2" class="image">
<img width="178" height="238" src="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" alt="Up arrow" style="-webkit-transform: rotate(180deg);">
</a>
</section>
</section>
<section>
<h2>Slides</h2>
<p>
Not a coder? No problem. There's a fully-featured visual editor for authoring these, try it out at <a href="http://slid.es" target="_blank">http://slid.es</a>.
</p>
</section>
<section>
<h2>Point of View</h2>
<p>
Press <strong>ESC</strong> to enter the slide overview.
</p>
<p>
Hold down alt and click on any element to zoom in on it using <a href="http://lab.hakim.se/zoom-js">zoom.js</a>. Alt + click anywhere to zoom back out.
</p>
</section>
<section>
<h2>Works in Mobile Safari</h2>
<p>
Try it out! You can swipe through the slides and pinch your way to the overview.
</p>
</section>
<section>
<h2>Marvelous Unordered List</h2>
<ul>
<li>No order here</li>
<li>Or here</li>
<li>Or here</li>
<li>Or here</li>
</ul>
</section>
<section>
<h2>Fantastic Ordered List</h2>
<ol>
<li>One is smaller than...</li>
<li>Two is smaller than...</li>
<li>Three!</li>
</ol>
</section>
<section data-markdown>
<script type="text/template">
## Markdown support
For those of you who like that sort of thing. Instructions and a bit more info available [here](https://github.com/hakimel/reveal.js#markdown).
```
<section data-markdown>
## Markdown support
For those of you who like that sort of thing.
Instructions and a bit more info available [here](https://github.com/hakimel/reveal.js#markdown).
</section>
```
</script>
</section>
<section id="transitions">
<h2>Transition Styles</h2>
<p>
You can select from different transitions, like: <br>
<a href="?transition=cube#/transitions">Cube</a> -
<a href="?transition=page#/transitions">Page</a> -
<a href="?transition=concave#/transitions">Concave</a> -
<a href="?transition=zoom#/transitions">Zoom</a> -
<a href="?transition=linear#/transitions">Linear</a> -
<a href="?transition=fade#/transitions">Fade</a> -
<a href="?transition=none#/transitions">None</a> -
<a href="?#/transitions">Default</a>
</p>
</section>
<section id="themes">
<h2>Themes</h2>
<p>
Reveal.js comes with a few themes built in: <br>
<a href="?#/themes">Default</a> -
<a href="?theme=sky#/themes">Sky</a> -
<a href="?theme=beige#/themes">Beige</a> -
<a href="?theme=simple#/themes">Simple</a> -
<a href="?theme=serif#/themes">Serif</a> -
<a href="?theme=night#/themes">Night</a> <br>
<a href="?theme=moon#/themes">Moon</a> -
<a href="?theme=solarized#/themes">Solarized</a>
</p>
<p>
<small>
* Theme demos are loaded after the presentation which leads to flicker. In production you should load your theme in the <code><head></code> using a <code><link></code>.
</small>
</p>
</section>
<section>
<h2>Global State</h2>
<p>
Set <code>data-state="something"</code> on a slide and <code>"something"</code>
will be added as a class to the document element when the slide is open. This lets you
apply broader style changes, like switching the background.
</p>
</section>
<section data-state="customevent">
<h2>Custom Events</h2>
<p>
Additionally custom events can be triggered on a per slide basis by binding to the <code>data-state</code> name.
</p>
<pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;">
Reveal.addEventListener( 'customevent', function() {
console.log( '"customevent" has fired' );
} );
</code></pre>
</section>
<section>
<section data-background="#007777">
<h2>Slide Backgrounds</h2>
<p>
Set <code>data-background="#007777"</code> on a slide to change the full page background to the given color. All CSS color formats are supported.
</p>
<a href="#" class="image navigate-down">
<img width="178" height="238" src="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" alt="Down arrow">
</a>
</section>
<section data-background="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png">
<h2>Image Backgrounds</h2>
<pre><code><section data-background="image.png"></code></pre>
</section>
<section data-background="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" data-background-repeat="repeat" data-background-size="100px">
<h2>Repeated Image Backgrounds</h2>
<pre><code style="word-wrap: break-word;"><section data-background="image.png" data-background-repeat="repeat" data-background-size="100px"></code></pre>
</section>
</section>
<section data-transition="linear" data-background="#4d7e65" data-background-transition="slide">
<h2>Background Transitions</h2>
<p>
Pass reveal.js the <code>backgroundTransition: 'slide'</code> config argument to make backgrounds slide rather than fade.
</p>
</section>
<section data-transition="linear" data-background="#8c4738" data-background-transition="slide">
<h2>Background Transition Override</h2>
<p>
You can override background transitions per slide by using <code>data-background-transition="slide"</code>.
</p>
</section>
<section>
<h2>Clever Quotes</h2>
<p>
These guys come in two forms, inline: <q cite="http://searchservervirtualization.techtarget.com/definition/Our-Favorite-Technology-Quotations">
“The nice thing about standards is that there are so many to choose from”</q> and block:
</p>
<blockquote cite="http://searchservervirtualization.techtarget.com/definition/Our-Favorite-Technology-Quotations">
“For years there has been a theory that millions of monkeys typing at random on millions of typewriters would
reproduce the entire works of Shakespeare. The Internet has proven this theory to be untrue.”
</blockquote>
</section>
<section>
<h2>Pretty Code</h2>
<pre><code data-trim contenteditable>
function linkify( selector ) {
if( supports3DTransforms ) {
var nodes = document.querySelectorAll( selector );
for( var i = 0, len = nodes.length; i < len; i++ ) {
var node = nodes[i];
if( !node.className ) {
node.className += ' roll';
}
}
}
}
</code></pre>
<p>Courtesy of <a href="http://softwaremaniacs.org/soft/highlight/en/description/">highlight.js</a>.</p>
</section>
<section>
<h2>Intergalactic Interconnections</h2>
<p>
You can link between slides internally,
<a href="#/2/3">like this</a>.
</p>
</section>
<section>
<section id="fragments">
<h2>Fragmented Views</h2>
<p>Hit the next arrow...</p>
<p class="fragment">... to step through ...</p>
<ol>
<li class="fragment"><code>any type</code></li>
<li class="fragment"><em>of view</em></li>
<li class="fragment"><strong>fragments</strong></li>
</ol>
<aside class="notes">
This slide has fragments which are also stepped through in the notes window.
</aside>
</section>
<section>
<h2>Fragment Styles</h2>
<p>There's a few styles of fragments, like:</p>
<p class="fragment grow">grow</p>
<p class="fragment shrink">shrink</p>
<p class="fragment roll-in">roll-in</p>
<p class="fragment fade-out">fade-out</p>
<p class="fragment highlight-red">highlight-red</p>
<p class="fragment highlight-green">highlight-green</p>
<p class="fragment highlight-blue">highlight-blue</p>
<p class="fragment current-visible">current-visible</p>
<p class="fragment highlight-current-blue">highlight-current-blue</p>
</section>
</section>
<section>
<h2>Spectacular image!</h2>
<a class="image" href="http://lab.hakim.se/meny/" target="_blank">
<img width="320" height="299" src="http://s3.amazonaws.com/hakim-static/portfolio/images/meny.png" alt="Meny">
</a>
</section>
<section>
<h2>Export to PDF</h2>
<p>Presentations can be <a href="https://github.com/hakimel/reveal.js#pdf-export">exported to PDF</a>, below is an example that's been uploaded to SlideShare.</p>
<iframe id="slideshare" src="http://www.slideshare.net/slideshow/embed_code/13872948" width="455" height="356" style="margin:0;overflow:hidden;border:1px solid #CCC;border-width:1px 1px 0;margin-bottom:5px" allowfullscreen> </iframe>
<script>
document.getElementById('slideshare').attributeName = 'allowfullscreen';
</script>
</section>
<section>
<h2>Take a Moment</h2>
<p>
Press b or period on your keyboard to enter the 'paused' mode. This mode is helpful when you want to take distracting slides off the screen
during a presentation.
</p>
</section>
<section>
<h2>Stellar Links</h2>
<ul>
<li><a href="http://slid.es">Try the online editor</a></li>
<li><a href="https://github.com/hakimel/reveal.js">Source code on GitHub</a></li>
<li><a href="http://twitter.com/hakimel">Follow me on Twitter</a></li>
</ul>
</section>
<section>
<h1>THE END</h1>
<h3>BY Hakim El Hattab / hakim.se</h3>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.min.js"></script>
<script>
// Full list of configuration options available here:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
theme: Reveal.getQueryHash().theme, // available themes are in /css/theme
transition: Reveal.getQueryHash().transition || 'default', // default/cube/page/concave/zoom/linear/fade/none
// Parallax scrolling
// parallaxBackgroundImage: 'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg',
// parallaxBackgroundSize: '2100px 900px',
// Optional libraries used to extend on reveal.js
dependencies: [
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } },
{ src: 'plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } }
]
});
</script>
</body>
</html>
| lwiesel/bulletproof-front-architecture | index.html | HTML | mit | 47,557 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.11"/>
<title>Csound API: TABDAT Struct Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
$(window).load(resizeHeight);
</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">Csound API
 <span id="projectnumber">6.07</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.11 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Data Structures</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li><a href="classes.html"><span>Data Structure Index</span></a></li>
<li><a href="functions.html"><span>Data Fields</span></a></li>
</ul>
</div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('structTABDAT.html','');});
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="summary">
<a href="#pub-attribs">Data Fields</a> </div>
<div class="headertitle">
<div class="title">TABDAT Struct Reference</div> </div>
</div><!--header-->
<div class="contents">
<p><code>#include <csoundCore.h></code></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-attribs"></a>
Data Fields</h2></td></tr>
<tr class="memitem:a40d2b64bb2ea5a7204cc4943bd7f75a9"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="structTABDAT.html#a40d2b64bb2ea5a7204cc4943bd7f75a9">size</a></td></tr>
<tr class="separator:a40d2b64bb2ea5a7204cc4943bd7f75a9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab98304c2e6988be9d82a98282bef5630"><td class="memItemLeft" align="right" valign="top">MYFLT * </td><td class="memItemRight" valign="bottom"><a class="el" href="structTABDAT.html#ab98304c2e6988be9d82a98282bef5630">data</a></td></tr>
<tr class="separator:ab98304c2e6988be9d82a98282bef5630"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4d12cab3c481e90016572cd52a53275f"><td class="memItemLeft" align="right" valign="top"><a class="el" href="csoundCore_8h.html#aa357fb484deffc758147109520f3dd8f">AUXCH</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="structTABDAT.html#a4d12cab3c481e90016572cd52a53275f">aux</a></td></tr>
<tr class="separator:a4d12cab3c481e90016572cd52a53275f"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<h2 class="groupheader">Field Documentation</h2>
<a class="anchor" id="a4d12cab3c481e90016572cd52a53275f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="csoundCore_8h.html#aa357fb484deffc758147109520f3dd8f">AUXCH</a> TABDAT::aux</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="ab98304c2e6988be9d82a98282bef5630"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">MYFLT* TABDAT::data</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a40d2b64bb2ea5a7204cc4943bd7f75a9"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int TABDAT::size</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="structTABDAT.html">TABDAT</a></li>
<li class="footer">Generated by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.11 </li>
</ul>
</div>
</body>
</html>
| ketchupok/csound.github.io | docs/api/structTABDAT.html | HTML | mit | 7,189 |
<div class="commune_descr limited">
<p>
Combles est
un village
localisé dans le département de Somme en Picardie. Elle totalisait 703 habitants en 2008.</p>
<p>Si vous envisagez de demenager à Combles, vous pourrez aisément trouver une maison à acheter. </p>
<p>À coté de Combles sont localisées les communes de
<a href="{{VLROOT}}/immobilier/maurepas_80521/">Maurepas</a> localisée à 2 km, 207 habitants,
<a href="{{VLROOT}}/immobilier/rancourt_80664/">Rancourt</a> localisée à 3 km, 172 habitants,
<a href="{{VLROOT}}/immobilier/hardecourt-aux-bois_80418/">Hardecourt-aux-Bois</a> à 3 km, 84 habitants,
<a href="{{VLROOT}}/immobilier/lesboeufs_80472/">Lesboeufs</a> localisée à 3 km, 166 habitants,
<a href="{{VLROOT}}/immobilier/longueval_80490/">Longueval</a> localisée à 4 km, 266 habitants,
<a href="{{VLROOT}}/immobilier/bouchavesnes-bergen_80115/">Bouchavesnes-Bergen</a> située à 4 km, 332 habitants,
entre autres. De plus, Combles est située à seulement 15 km de <a href="{{VLROOT}}/immobilier/albert_80016/">Albert</a>.</p>
<p>La ville propose quelques équipements sportifs, elle dispose, entre autres, de un terrain de tennis et un terrain de sport.</p>
<p>À Combles, la valeur moyenne à l'achat d'un appartement s'évalue à 5 690 € du m² en vente. la valorisation moyenne d'une maison à l'achat se situe à 1 365 € du m². À la location le prix moyen se situe à 10,91 € du m² mensuel.</p>
<p>Le nombre de logements, à Combles, se décomposait en 2011 en 25 appartements et 338 maisons soit
un marché relativement équilibré.</p>
</div>
| donaldinou/frontend | src/Viteloge/CoreBundle/Resources/descriptions/80204.html | HTML | mit | 1,661 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title><%= conf.siteName%> v<%= conf.siteVersion%></title>
<%- include ../tpl/css%>
</head>
<body>
<header class="header"><%= conf.siteName%>(<%= conf.siteVersion%>)</header>
<article class="main flexbox">
<aside class="project-nav">
<form name="projNavForm" id="projNavForm">
<%projects.projects.forEach(function(project, index){%>
<dl class="project">
<dt><input type="radio" name="project" id="<%=project.alias%>" value="project,<%=project.alias%>" data-hook="1"><label for="<%=project.alias%>"><%=project.name%></label></dt>
<dd>
<%project.env.forEach(function(env, index){%>
<dl class="env">
<dt><input type="radio" name="env" id="<%=project.alias%>_<%=env.alias%>" value="env,<%=project.alias%>,<%=env.alias%>" data-hook="1"><label for="<%=project.alias%>_<%=env.alias%>"><%=env.name%></label></dt>
<%env.build.forEach(function(deploy, index){%>
<dd><input type="radio" name="deploy" id="<%=project.alias%>_<%=env.alias%>_<%=deploy.alias%>" value="deploy,<%=project.alias%>,<%=env.alias%>,<%=deploy.alias%>" data-hook="1"><label for="<%=project.alias%>_<%=env.alias%>_<%=deploy.alias%>"><%=deploy.name%></label></dd>
<%})%>
</dl>
<%})%>
</dd>
</dl>
<%})%>
</form>
</aside>
<div class="frame">
<form name="fileForm" id="fileForm">
<div class="block flexbox">
<div class="base">
<div class="lib">lib list...</div>
<div class="mod">mod list...</div>
</div>
<div class="logic">logic list...</div>
</div>
<div class="operatebar"><button type="button" id="build">Build</button><button type="reset" id="reset">Reset</button></div>
<div class="console">[INFO] trace info.</div>
</form>
</div>
</article>
<footer class="footer">© <%= conf.copyright%></footer>
<script src="/socket.io/socket.io.js"></script>
<script charset="utf-8" src="/js/index.js"></script>
</body>
</html> | zwlijun/se.builder | app/view/index.html | HTML | mit | 2,073 |
<!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_76) on Fri Jul 24 13:35:37 PDT 2015 -->
<title>LeanplumSherlockActivity</title>
<meta name="date" content="2015-07-24">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="LeanplumSherlockActivity";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../com/leanplum/activities/LeanplumPreferenceActivity.html" title="class in com.leanplum.activities"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../com/leanplum/activities/LeanplumSherlockExpandableListActivity.html" title="class in com.leanplum.activities"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?com/leanplum/activities/LeanplumSherlockActivity.html" target="_top">Frames</a></li>
<li><a href="LeanplumSherlockActivity.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">com.leanplum.activities</div>
<h2 title="Class LeanplumSherlockActivity" class="title">Class LeanplumSherlockActivity</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>SherlockActivity</li>
<li>
<ul class="inheritance">
<li>com.leanplum.activities.LeanplumSherlockActivity</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="strong">LeanplumSherlockActivity</span>
extends SherlockActivity</pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../com/leanplum/activities/LeanplumSherlockActivity.html#LeanplumSherlockActivity()">LeanplumSherlockActivity</a></strong>()</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>Resources</code></td>
<td class="colLast"><code><strong><a href="../../../com/leanplum/activities/LeanplumSherlockActivity.html#getResources()">getResources</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><code><strong><a href="../../../com/leanplum/activities/LeanplumSherlockActivity.html#onPause()">onPause</a></strong>()</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><code><strong><a href="../../../com/leanplum/activities/LeanplumSherlockActivity.html#onResume()">onResume</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><code><strong><a href="../../../com/leanplum/activities/LeanplumSherlockActivity.html#onStop()">onStop</a></strong>()</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../com/leanplum/activities/LeanplumSherlockActivity.html#setContentView(int)">setContentView</a></strong>(int layoutResID)</code> </td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="LeanplumSherlockActivity()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>LeanplumSherlockActivity</h4>
<pre>public LeanplumSherlockActivity()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="onPause()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>onPause</h4>
<pre>protected void onPause()</pre>
</li>
</ul>
<a name="onStop()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>onStop</h4>
<pre>protected void onStop()</pre>
</li>
</ul>
<a name="onResume()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>onResume</h4>
<pre>protected void onResume()</pre>
</li>
</ul>
<a name="getResources()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getResources</h4>
<pre>public Resources getResources()</pre>
</li>
</ul>
<a name="setContentView(int)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>setContentView</h4>
<pre>public void setContentView(int layoutResID)</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../com/leanplum/activities/LeanplumPreferenceActivity.html" title="class in com.leanplum.activities"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../com/leanplum/activities/LeanplumSherlockExpandableListActivity.html" title="class in com.leanplum.activities"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?com/leanplum/activities/LeanplumSherlockActivity.html" target="_top">Frames</a></li>
<li><a href="LeanplumSherlockActivity.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
| atanas-valev/Leanplum-XamarinAndroid | LeanplumAndroidBindings/Javadoc/com/leanplum/activities/LeanplumSherlockActivity.html | HTML | mit | 10,061 |
<HTML>
<BODY BGCOLOR="white">
<PRE>
<FONT color="green">001</FONT> /*<a name="line.1"></a>
<FONT color="green">002</FONT> * Licensed to the Apache Software Foundation (ASF) under one or more<a name="line.2"></a>
<FONT color="green">003</FONT> * contributor license agreements. See the NOTICE file distributed with<a name="line.3"></a>
<FONT color="green">004</FONT> * this work for additional information regarding copyright ownership.<a name="line.4"></a>
<FONT color="green">005</FONT> * The ASF licenses this file to You under the Apache License, Version 2.0<a name="line.5"></a>
<FONT color="green">006</FONT> * (the "License"); you may not use this file except in compliance with<a name="line.6"></a>
<FONT color="green">007</FONT> * the License. You may obtain a copy of the License at<a name="line.7"></a>
<FONT color="green">008</FONT> *<a name="line.8"></a>
<FONT color="green">009</FONT> * http://www.apache.org/licenses/LICENSE-2.0<a name="line.9"></a>
<FONT color="green">010</FONT> *<a name="line.10"></a>
<FONT color="green">011</FONT> * Unless required by applicable law or agreed to in writing, software<a name="line.11"></a>
<FONT color="green">012</FONT> * distributed under the License is distributed on an "AS IS" BASIS,<a name="line.12"></a>
<FONT color="green">013</FONT> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.<a name="line.13"></a>
<FONT color="green">014</FONT> * See the License for the specific language governing permissions and<a name="line.14"></a>
<FONT color="green">015</FONT> * limitations under the License.<a name="line.15"></a>
<FONT color="green">016</FONT> */<a name="line.16"></a>
<FONT color="green">017</FONT> package org.apache.commons.math3.exception.util;<a name="line.17"></a>
<FONT color="green">018</FONT> <a name="line.18"></a>
<FONT color="green">019</FONT> import java.util.Locale;<a name="line.19"></a>
<FONT color="green">020</FONT> <a name="line.20"></a>
<FONT color="green">021</FONT> /**<a name="line.21"></a>
<FONT color="green">022</FONT> * Dummy implementation of the {@link Localizable} interface, without localization.<a name="line.22"></a>
<FONT color="green">023</FONT> *<a name="line.23"></a>
<FONT color="green">024</FONT> * @version $Id: DummyLocalizable.java 1416643 2012-12-03 19:37:14Z tn $<a name="line.24"></a>
<FONT color="green">025</FONT> * @since 2.2<a name="line.25"></a>
<FONT color="green">026</FONT> */<a name="line.26"></a>
<FONT color="green">027</FONT> public class DummyLocalizable implements Localizable {<a name="line.27"></a>
<FONT color="green">028</FONT> <a name="line.28"></a>
<FONT color="green">029</FONT> /** Serializable version identifier. */<a name="line.29"></a>
<FONT color="green">030</FONT> private static final long serialVersionUID = 8843275624471387299L;<a name="line.30"></a>
<FONT color="green">031</FONT> <a name="line.31"></a>
<FONT color="green">032</FONT> /** Source string. */<a name="line.32"></a>
<FONT color="green">033</FONT> private final String source;<a name="line.33"></a>
<FONT color="green">034</FONT> <a name="line.34"></a>
<FONT color="green">035</FONT> /** Simple constructor.<a name="line.35"></a>
<FONT color="green">036</FONT> * @param source source text<a name="line.36"></a>
<FONT color="green">037</FONT> */<a name="line.37"></a>
<FONT color="green">038</FONT> public DummyLocalizable(final String source) {<a name="line.38"></a>
<FONT color="green">039</FONT> this.source = source;<a name="line.39"></a>
<FONT color="green">040</FONT> }<a name="line.40"></a>
<FONT color="green">041</FONT> <a name="line.41"></a>
<FONT color="green">042</FONT> /** {@inheritDoc} */<a name="line.42"></a>
<FONT color="green">043</FONT> public String getSourceString() {<a name="line.43"></a>
<FONT color="green">044</FONT> return source;<a name="line.44"></a>
<FONT color="green">045</FONT> }<a name="line.45"></a>
<FONT color="green">046</FONT> <a name="line.46"></a>
<FONT color="green">047</FONT> /** {@inheritDoc} */<a name="line.47"></a>
<FONT color="green">048</FONT> public String getLocalizedString(Locale locale) {<a name="line.48"></a>
<FONT color="green">049</FONT> return source;<a name="line.49"></a>
<FONT color="green">050</FONT> }<a name="line.50"></a>
<FONT color="green">051</FONT> <a name="line.51"></a>
<FONT color="green">052</FONT> /** {@inheritDoc} */<a name="line.52"></a>
<FONT color="green">053</FONT> @Override<a name="line.53"></a>
<FONT color="green">054</FONT> public String toString() {<a name="line.54"></a>
<FONT color="green">055</FONT> return source;<a name="line.55"></a>
<FONT color="green">056</FONT> }<a name="line.56"></a>
<FONT color="green">057</FONT> <a name="line.57"></a>
<FONT color="green">058</FONT> }<a name="line.58"></a>
</PRE>
</BODY>
</HTML>
| vaisaghvt/gameAnalyzer | commons-math3-3.1.1-bin/commons-math3-3.1.1/docs/apidocs/src-html/org/apache/commons/math3/exception/util/DummyLocalizable.html | HTML | mit | 5,112 |
<!DOCTYPE html>
<!--[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>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Test Results - Mimik</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/grid.css">
<link rel="stylesheet" href="js/vendor/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="js/vendor/magnific-popup/magnific-popup.css">
<link rel="stylesheet" href="js/vendor/pretty-photo/css/prettyPhoto.css">
<link rel="stylesheet" href="css/main.css">
<link href='http://fonts.googleapis.com/css?family=Roboto:300,400|Roboto+Slab:300,400' rel='stylesheet' type='text/css'>
<script src="js/vendor/modernizr-2.6.2.min.js"></script>
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div class="header-container">
<header class="header-primary">
<div class="logo">MIMIK</div>
<span class="main-menu-button" title="Click to expand"><i class="fa fa-bars"></i> REPORTS</span>
</header>
</div>
<div class="sidebar-container">
<div class="sidebar">
<a href="#" class="close-menu" title="Close"><i class="fa fa-times-circle fa-fw"></i></a>
<div class="sidebar-msg">Select a report</div>
<div class="sidebar-content clearfix">
<div class="sidebar-nav">
<ul>
<li class="test-summary"><i class="fa fa-dashboard"></i> Test Results</li>
<li class="test-analytics"><i class="fa fa-dashboard"></i> Test Analytics</li>
<li class="test-tag-statistics"><i class="fa fa-dashboard"></i> Tag Statistics</li>
</ul>
</div>
</div>
</div>
</div>
<header class="report-header">
<h1 class="report-title">Test Results</h1>
</header>
<div class="main-container">
<div class="report-summary">
<div class="third">
<div class="globalstatus">
<div class="globalstatus-symbol color-passed">
<svg width="45" height="45">
<circle cx="25" cy="25" r="18" stroke-width="4" fill="none"></circle>
</svg><span class="fa fa-check fa-lg">
</span>
</div>
<div class="globalstatus-text">PASSED</div>
</div>
</div>
<div class="two-thirds">
<div class="globalresults">
<div class="big-total total-passed"><div>68</div>Passed</div>
<div class="big-total total-skipped"><div>10</div>Skipped</div>
<div class="big-total total-failed"><div>2</div>Failed</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<div class="hr"></div>
<div class="report-summary">
<div class="third text-center">
<div class="globalmeta-alt">
<div class="label">Duration</div><div class="value small">5m 26s</div>
</div>
</div>
<div class="third text-center">
<div class="globalmeta-alt">
<div class="label">Execution time</div><div class="value small">Wed 03, Apr 2014 at 10:00:00</div>
</div>
</div>
<div class="third text-center">
<div class="globalmeta-alt">
<div class="label">Browser Configurations</div><div class="value small">1</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<div class="report-section"><span>Test details</span></div>
<table class="report-table">
<thead>
<tr class="report-table-header border-bottom">
<td rowspan="2" colspan="2" class="no-bottom-border">Feature</td>
<td colspan="4">Scenarios</td>
<td colspan="4">Steps</td>
<td rowspan="2" class="no-bottom-border"><span class="fa fa-clock-o" title="Duration"></span></td>
</tr>
<tr class="report-table-header report-table-header-secondary">
<td>Total</td>
<td>Passed</td>
<td>Skipped</td>
<td>Failed</td>
<td>Total</td>
<td>Passed</td>
<td>Skipped</td>
<td>Failed</td>
</tr>
</thead>
<tbody>
<tr>
<td class="badge">
<span class="fa-stack color-failed">
<i class="fa fa-circle-o fa-stack-2x"></i>
<i class="fa fa-exclamation fa-stack-1x"></i>
</span>
</td>
<td class="stretch text-left no-wrap"><a href="feature.html">Bulk Operations / Bulk Edit in Sales</a></td>
<td>3</td>
<td>2</td>
<td>0</td>
<td>1</td>
<td>30</td>
<td>28</td>
<td>0</td>
<td>2</td>
<td>3m 00s</td>
</tr>
<tr class="alt">
<td class="badge">
<span class="fa-stack color-passed">
<i class="fa fa-circle-o fa-stack-2x"></i>
<i class="fa fa-check fa-stack-1x"></i>
</span>
</td>
<td class="stretch text-left no-wrap"><a href="feature.html">Media Plan</a></td>
<td>5</td>
<td>4</td>
<td>1</td>
<td>0</td>
<td>50</td>
<td>40</td>
<td>10</td>
<td>0</td>
<td>2m 26s</td>
</tr>
</tbody>
</table>
<div class="hr"></div>
</div> <!-- #main-container -->
<script src="js/vendor/jquery-1.11.0.min.js"></script>
<script src="js/vendor/d3/d3.min.js"></script>
<script src="js/vendor/magnific-popup/jquery.magnific-popup.min.js"></script>
<script src="js/vendor/pretty-photo/js/jquery.prettyPhoto.js"></script>
<script src="js/main.js"></script>
</body>
</html>
| simoami/mimik | runner/reporters/html/base/index.html | HTML | mit | 7,800 |
---
layout: default
---
<h2>What Should Learners Know about Ed-Tech?</h2>
<br />
<p>In many ways, the resources listed under both the "<a href="http://guide.hackeducation.com/techies.html">Technologists</a>" and "<a href="http://guide.hackeducation.com/edu.html">Teachers</a>" section of this guide are useful for learners. That is, it's worth considering how ed-tech views students just as its worth thinking about how education views students.</p>
<p>Questions students should ask about the ed-tech they're compelled to use include:</p>
<ul>
<li>Who owns my data?</li>
<li>Who has access to my data? Who is it shared with</li>
<li>How long is my data stored?</li>
</ul>
<h3>Reclaim Your Domain</h3>
<br />
<p>Audrey Watters, <em><a href="http://reclaim.hackeducation.com">Reclaim Your Domain and Own Your Online Presence</a></em></p>
<p>University of Mary Washington <a href="http://umw.domains/">Domain of One's Own Initiative</a></p>
<p><em>Feel free to add a resource to this guide with a contribution <a href="https://github.com/audreywatters/Ed-Tech-Guide">via Github</a>.</em></p> | audreywatters/Ed-Tech-Guide | learners.html | HTML | mit | 1,095 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>MDInsider ♥ Open Source / "Gadgets for Holistic Web Detection": Gilt Engineer Eric Shepherd at EmpireJS (video)</title>
<meta name="author" content="MDInsider, Inc.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="/assets/themes//img/favicon.ico">
<link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Sitewide ATOM Feed">
<link href="/rss.xml" type="application/rss+xml" rel="alternate" title="Sitewide RSS Feed">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="/assets/themes//css/github-light.css">
<link rel="stylesheet/less" href="/assets/themes//css/style.less">
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/2.5.0/less.min.js"></script>
<script src="/assets/themes//js/jekyll-search.js"></script>
<script>
var searchJsonPath = '/search.json',
searchTemplate = '<menuitem><a href="{url}">{title}</a></menuitem>';
</script>
<script>
(function() {
var shr = document.createElement('script');
shr.setAttribute('data-cfasync', 'false');
shr.src = '//dsms0mj1bbhn4.cloudfront.net/assets/pub/shareaholic.js';
shr.type = 'text/javascript'; shr.async = 'true';
shr.onload = shr.onreadystatechange = function() {
var rs = this.readyState;
if (rs && rs != 'complete' && rs != 'loaded') return;
var site_id = 'aed9a48340b830002b74641e868bfcec';
try { Shareaholic.init(site_id); } catch (e) {}
};
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(shr, s);
})();
</script>
</head>
<body>
<div id="body">
<header>
<nav>
<span>
<a href="http://www.mdinsider.com/careers/">Join MD Insider Tech</a>
<a href="http://mdinsider.com">MDInsider.com</a>
</span>
</nav>
<section id="subnav">
<span>
<a class="categories">Categories</a>
<p class="social github"><a href="https://github.com/mdinsider" title="Github"></a></p>
<p class="social twitter"><a href="https://twitter.com/mdinsidercorp" title="Twitter"></a></p>
<p class="social facebook"><a href="https://www.facebook.com/mdinsider" title="Facebook"></a></p>
<!-- <p class="social google"><a href="https://plus.google.com/109372432870680352734" title="Google+"></a></p> -->
<span id="search">
<input type="search" placeholder="Search …" title="Search for:" />
</span>
<menu id="categories-menu">
<menuitem>
<a href="/categories.html#AWS-ref">AWS</a>
</menuitem>
<menuitem>
<a href="/categories.html#Leadership-ref">Leadership</a>
</menuitem>
<menuitem>
<a href="/categories.html#agile-ref">agile</a>
</menuitem>
<menuitem>
<a href="/categories.html#analytics-ref">analytics</a>
</menuitem>
<menuitem>
<a href="/categories.html#aws-ref">aws</a>
</menuitem>
<menuitem>
<a href="/categories.html#blog-ref">blog</a>
</menuitem>
<menuitem>
<a href="/categories.html#conferences-ref">conferences</a>
</menuitem>
<menuitem>
<a href="/categories.html#culture-ref">culture</a>
</menuitem>
<menuitem>
<a href="/categories.html#deployment-ref">deployment</a>
</menuitem>
<menuitem>
<a href="/categories.html#front-end-ref">front-end</a>
</menuitem>
<menuitem>
<a href="/categories.html#mobile-ref">mobile</a>
</menuitem>
<menuitem>
<a href="/categories.html#scala-ref">scala</a>
</menuitem>
<menuitem>
<a href="/categories.html#swift-ref">swift</a>
</menuitem>
<menuitem>
<a href="/categories.html#tech-ref">tech</a>
</menuitem>
<menuitem>
<a href="/categories.html#tvOS-ref">tvOS</a>
</menuitem>
</menu>
<menu id="search-results">
</menu>
</span>
</section>
<a class="logo" href="/" class="logo"></a>
<h1>Tech Blog</h1>
</header>
<section id="main">
<article>
<h1><a href="/2014/05/13/gadgets-for-holistic-web-detection-gilt">"Gadgets for Holistic Web Detection": Gilt Engineer Eric Shepherd at EmpireJS (video)</a></h1>
<header>
<time>13 May 2014</time>
</header>
<div class="content">
<p><iframe frameborder="0" height="360" src="//www.youtube.com/embed/VpqPpbw_gns" width="640"></iframe></p>
<p>Here’s Gilt Lead Software Engineer Eric Shepherd doing one of the many things he does well (besides epitomizing natty dressing): giving a tech talk! Eric spoke on the Monday afternoon of EmpireJS, a more detailed account of which you can find <a href="http://tech.gilt.com/2014/05/13/javascript-in-the-empire-state" target="_blank">here</a>.</p>
</div>
<div class="shareaholic-canvas" data-app="share_buttons" data-app-id="18213596"></div>
<section class="tags">
<a href="/tags.html#Gilt Tech-ref">Gilt Tech <span>287</span></a>
<a href="/tags.html#Gilt Groupe-ref">Gilt Groupe <span>282</span></a>
<a href="/tags.html#gilttech-ref">gilttech <span>332</span></a>
<a href="/tags.html#Gilt-ref">Gilt <span>340</span></a>
<a href="/tags.html#Eric Shepherd-ref">Eric Shepherd <span>12</span></a>
<a href="/tags.html#EmpireJS-ref">EmpireJS <span>3</span></a>
<a href="/tags.html#JavaScript-ref">JavaScript <span>18</span></a>
<a href="/tags.html#NYC-ref">NYC <span>79</span></a>
<a href="/tags.html#conferences-ref">conferences <span>25</span></a>
<a href="/tags.html#video-ref">video <span>42</span></a>
<a href="/tags.html#web detection-ref">web detection <span>1</span></a>
<a href="/tags.html#resolution detection-ref">resolution detection <span>1</span></a>
</section>
</article>
</section>
<footer>
<nav>
<span>
<a href="http://www.mdinsider.com/careers/">Join MD Insider Tech</a>
<a href="http://mdinsider.com">MDInsider.com</a>
</span>
</nav>
<section id="copyright">
© 2015 MDInsider, Inc. • <a href="/archive.html">Archives</a>
</section>
</footer>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="/assets/themes//js/main.js"></script>
</body>
</html>
| MDInsider/mdinsider.github.io | _site/2014/05/13/gadgets-for-holistic-web-detection-gilt.html | HTML | mit | 7,426 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<title>Mark 1 (KJV-VN)</title>
<link href="../../../build/mobile.css" rel="stylesheet" />
<script src="../../../build/mobile.js"></script>
</head>
<body dir="ltr" class="section-document">
<div class="header"><div class="nav">
<a class="name" href="MK.html">KJV-Vietnamese Version</a><a class="location" href="MK.html">Mark 1</a><a class="prev" href="MT28.html"><</a>
<a class="home" href="index.html">=</a>
<a class="next" href="MK2.html">></a>
</div></div>
<div class="section chapter MK MK1 vn_kjv eng " dir="ltr" lang="en" data-id="MK1" data-nextid="MK2" data-previd="MT28">
<div class="mt">Mark</div>
<div class="c">1</div>
<div class="p">
<span class="v-num v-1">1 </span><span class="v MK1_1" data-id="MK1_1">
V-05
<l s="G746" m="N-NSF">Khởi đầu</l>
<l s="G3588 G2098" m="T-GSN N-GSN">của phúc-âm</l>
<l s="G2424" m="N-GSM">của Đức Giê-su</l>
<l s="G5547" m="N-GSM">Christ</l>
,
<l s="G5207" m="N-GSM">Con</l>
<l s="G3588 G2316" m="T-GSM N-GSM">của Đức Chúa Trời</l>
;
</span>
<span class="v-num v-2">2 </span><span class="v MK1_2" data-id="MK1_2">
<l s="G2531" m="ADV">Và như</l>
<l s="G1125" m="V-RPI-3S">có viết</l>
<l s="G1722" m="PREP">trong</l>
<l s="G3588 G4396" m="T-DPM N-DPM">[sách] tiên-tri</l>
<l s="G2268" m="N-DSM">Ê-sai</l>
,
<l s="G2400" m="V-2AAM-2S">Này</l>
,
<l s="G649" m="V-PAI-1S">Ta sai</l>
<l s="G3588 G32" m="T-ASM N-ASM">sứ-giả</l>
<l s="G1473" m="P-1GS">của Ta</l>
<l s="G4253" m="PREP">trước</l>
<l s="G4383" m="N-GSN">mặt</l>
<l s="G4771" m="P-2GS">ngươi</l>
,
<l s="G3739" m="R-NSM">người</l>
<l s="G2680" m="V-FAI-3S">sẽ dọn</l>
<l s="G3588 G3598" m="T-ASF N-ASF">đường</l>
<l s="G4771" m="P-2GS">ngươi</l>
.
</span>
<span class="v-num v-3">3 </span><span class="v MK1_3" data-id="MK1_3">
<l s="G5456" m="N-NSF">Có tiếng</l>
<l s="G994" m="V-PAP-GSM">kêu lên</l>
<l s="G1722" m="PREP">trong</l>
<l s="G2048" m="A-DSF">đồng vắng</l>
,
<l s="G2090" m="V-AAM-2P">Hãy dọn</l>
<l s="G3588 G3598" m="T-ASF N-ASF">đường</l>
<l s="G2962" m="N-GSM">cho Chúa</l>
,
<l s="G4160" m="V-PAM-2P">hãy làm</l>
<l s="G2117" m="A-APF">thẳng</l>
<l s="G3588 G5147" m="T-APF N-APF">những lối đi</l>
<l s="G846" m="P-GSM">của Ngài</l>
.
</span>
<span class="v-num v-4">4 </span><span class="v MK1_4" data-id="MK1_4">
<l s="G2491" m="N-NSM">Giăng</l>
<l s="G1096" m="V-2ADI-3S">đã đến</l>
<l s="G907" m="V-PAP-NSM">báp-tem</l>
<l s="G1722" m="PREP">trong</l>
<l s="G2048" m="A-DSF">đồng vắng</l>
,
<l s="G2784" m="V-PAP-NSM">giảng dạy</l>
<l s="G908" m="N-ASN">về phép báp-tem</l>
<l s="G3341" m="N-GSF">của sự ăn năn</l>
<l s="G1519" m="PREP">để</l>
<l s="G859" m="N-ASF">[được sự]tha thứ</l>
<l s="G266" m="N-GPF">tội lỗi</l>
.
</span>
<span class="v-num v-5">5 </span><span class="v MK1_5" data-id="MK1_5">
<l s="G2532" m="CONJ">Và</l>
<l s="G1607" m="V-INI-3S">đi ra</l>
<l s="G4314" m="PREP">cùng</l>
<l s="G846" m="P-ASM">ông</l>
<l s="G3956" m="A-NSF">cả</l>
<l s="G5561" m="N-NSF">vùng</l>
<l s="G3588 G2449" m="T-NSF N-NSF">Giu-đa</l>
,
<l s="G2532" m="CONJ">và</l>
<l s="G3956" m="A-NPM">cả</l>
<l s="G3588 G2415" m="T-NPM N-NPM">cư dân Giê-ru-sa-lem</l>
,
<l s="G2532" m="CONJ">và</l>
<l s="G907" m="V-IPI-3P">họ đã được</l>
<l s="G907" m="V-IPI-3P">báp-tem</l>
<l s="G5259" m="PREP">bởi</l>
<l s="G846" m="P-GSM">ông</l>
<l s="G1722" m="PREP">trong</l>
<l s="G4215" m="N-DSM">sông</l>
<l s="G3588 G2446" m="T-DSM N-DSM">Giô-đanh</l>
,
<l s="G1843" m="V-PMP-NPM">xưng nhận</l>
<l s="G3588 G266" m="T-APF N-APF">tội lỗi</l>
<l s="G846" m="P-GPM">của họ</l>
.
</span>
<span class="v-num v-6">6 </span><span class="v MK1_6" data-id="MK1_6">
<l s="G2532" m="CONJ">và</l>
<l s="G2491" m="N-NSM">Giăng</l>
<l s="G1746" m="V-RMP-NSM">mặc áo</l>
<l s="G2359" m="N-APF">lông</l>
<l s="G2574" m="N-GSM">của lạc đà</l>
,
<l s="G2532" m="CONJ">và</l>
<l s="G2223" m="N-ASF">với cái khố</l>
<l s="G1193" m="A-ASF">bằng da thú</l>
<l s="G4012" m="PREP">(quấn) quanh</l>
<l s="G3588 G3751" m="T-ASF N-ASF">hông</l>
<l s="G846" m="P-GSM">của ông</l>
;
<l s="G2532" m="CONJ">và</l>
<l s="G2068" m="V-PAP-NSM">ông ăn</l>
<l s="G200" m="N-APF">châu-chấu</l>
<l s="G2532" m="CONJ">và</l>
<l s="G3192" m="N-ASN">mật ong</l>
<l s="G66" m="A-ASN">rừng</l>
;
</span>
<span class="v-num v-7">7 </span><span class="v MK1_7" data-id="MK1_7">
<l s="G2532" m="CONJ">và</l>
<l s="G2784" m="V-IAI-3S">ông giảng</l>
,
<l s="G3004" m="V-PAP-NSM">nói rằng</l>
,
<l s="G2064" m="V-PNI-3S">Có Đấng đến</l>
<l s="G3694" m="ADV">sau</l>
<l s="G1510" m="P-1GS">ta</l>
<l s="G2478" m="A-NSM-C">lớn mạnh hơn</l>
<l s="G1510" m="P-1GS">ta</l>
,
<l s="G3588 G2438" m="T-ASM N-ASM">dây cột</l>
<l s="G3588 G5266" m="T-GPN N-GPN">giầy</l>
<l s="G3739" m="R-GSM">của Ngài</l>
<l s="G1510" m="V-PXI-1S">ta</l>
<l s="G3756" m="PRT-N">không</l>
<l s="G2425" m="A-NSM">xứng đáng</l>
<l s="G2955" m="V-AAP-NSM">cúi xuống</l>
<l s="G3089" m="V-AAN">để tháo</l>
.
</span>
<span class="v-num v-8">8 </span><span class="v MK1_8" data-id="MK1_8">
<l s="G1473" m="P-1NS">Ta</l>
<l s="G907" m="V-AAI-1S">đã báp-tem</l>
<l s="G4771" m="P-2AP">các ngươi</l>
<l s="G1722" m="PREP">bằng</l>
<l s="G5204" m="N-DSN">nước</l>
:
<l s="G1161" m="CONJ">nhưng</l>
<l s="G846" m="P-NSM">Ngài</l>
<l s="G907" m="V-FAI-3S">sẽ báp-tem</l>
<l s="G4771" m="P-2AP">các ngươi</l>
<l s="G1722" m="PREP">bằng</l>
<l s="G40" m="A-DSN">Thánh</l>
<l s="G4151" m="N-DSN">Linh</l>
.
</span>
<span class="v-num v-9">9 </span><span class="v MK1_9" data-id="MK1_9">
<l s="G2532" m="CONJ">Và</l>
<l s="G1096" m="V-2ADI-3S">xảy đến</l>
<l s="G1722" m="PREP">trong</l>
<l s="G3588 G2250" m="T-DPF N-DPF">những ngày</l>
<l s="G1565" m="D-DPF">đó</l>
, có
<l s="G2424" m="N-NSM">Đức Giê-su</l>
<l s="G2064" m="V-2AAI-3S">đến</l>
<l s="G575" m="PREP">từ</l>
<l s="G3478" m="N-PRI">Na-xa-rét</l>
<l s="G3588 G1056" m="T-GSF N-GSF">của/vùng Ga-li-lê</l>
,
<l s="G2532" m="CONJ">và</l>
<l s="G907" m="V-API-3S">được báp-tem</l>
<l s="G5259" m="PREP">bởi</l>
<l s="G2491" m="N-GSM">Giăng</l>
<l s="G1519" m="PREP">trong</l>
<l s="G2446" m="N-ASM">[sông] Giô-đanh</l>
.
</span>
<span class="v-num v-10">10 </span><span class="v MK1_10" data-id="MK1_10">
<l s="G2532" m="CONJ">và</l>
<l s="G2117" m="ADV">vừa</l>
<l s="G305" m="V-PAP-NSM">bước lên</l>
<l s="G575" m="PREP">ra khỏi</l>
<l s="G3588 G5204" m="T-GSN N-GSN">nước</l>
,
<l s="G1492" m="V-2AAI-3S">Ngài thấy</l>
<l s="G3588 G3772" m="T-APM N-APM">các từng trời</l>
<l s="G4977" m="V-PPP-APM">được mở ra</l>
,
<l s="G2532" m="CONJ">và</l>
<l s="G3588 G4151" m="T-ASN N-ASN">[Thánh] Linh</l>
<l s="G5613" m="ADV">giống như</l>
<l s="G4058" m="N-ASF">chim bồ câu</l>
<l s="G2597" m="V-PAP-ASN">[đáp] xuống</l>
<l s="G1519" m="PREP">[trên]</l>
<l s="G846" m="P-ASM">Ngài</l>
:
</span>
<span class="v-num v-11">11 </span><span class="v MK1_11" data-id="MK1_11">
<l s="G2532" m="CONJ">Và</l>
<l s="G5456" m="N-NSF">một tiếng [phán]</l>
<l s="G1096" m="V-2ADI-3S">đến</l>
<l s="G1537" m="PREP">từ</l>
<l s="G3588 G3772" m="T-GPM N-GPM">trời</l>
,
<span class="add">nói rằng</span>
,
<l s="G4771" m="P-2NS">Ngươi</l>
<l s="G1488" m="V-PXI-2S">là</l>
<l s="G3588 G5207" m="T-NSM N-NSM">Con</l>
<l s="G27" m="A-NSM">yêu dấu</l>
<l s="G3450" m="P-1GS">của Ta</l>
,
<l s="G1722" m="PREP">trong</l>
<l s="4771" m="R-DSM">ngươi</l>
<l s="G2106" m="V-AAI-1S">Ta thật đẹp lòng</l>
.
</span>
<span class="v-num v-12">12 </span><span class="v MK1_12" data-id="MK1_12">
<l s="G2532" m="CONJ">Và</l>
<l s="G2117" m="ADV">tức thì</l>
<l s="G3588 G4151" m="T-NSN N-NSN">[Thánh] Linh</l>
<l s="G1544" m="V-PAI-3S">giục</l>
<l s="G846" m="P-ASM">Ngài</l>
<l s="G1519" m="PREP">vào</l>
<l s="G2048" m="A-ASF">đồng vắng</l>
.
</span>
<span class="v-num v-13">13 </span><span class="v MK1_13" data-id="MK1_13">
<l s="G2532" m="CONJ">Và</l>
<l s="G2258" m="V-IXI-3S">Ngài đã</l>
<l s="G1563" m="ADV">ở đó</l>
<l s="G1722" m="PREP">trong</l>
<l s="G2048" m="A-DSF">đồng vắng</l>
<l s="G5062" m="A-NUI">bốn mươi</l>
<l s="G2250" m="N-APF">ngày</l>
,
<l s="G3985" m="V-PPP-NSM">chịu cám dỗ</l>
<l s="G5259" m="PREP">bởi</l>
<l s="G3588 G4567" m="T-GSM N-GSM">Satan</l>
;
<l s="G2532" m="CONJ">và</l>
<l s="G2258" m="V-IXI-3S">Ngài đã</l>
<l s="G3326" m="PREP">[ở] với</l>
<l s="G3588 G2342" m="T-GPN N-GPN">các thú rừng</l>
;
<l s="G2532" m="CONJ">và</l>
<l s="G3588 G32" m="T-NPM N-NPM">các thiên sứ</l>
<l s="G1247" m="V-IAI-3P">hầu việc</l>
<l s="G846" m="P-DSM">[cho] Ngài</l>
.
</span>
<span class="v-num v-14">14 </span><span class="v MK1_14" data-id="MK1_14">
<l s="G2532" m="CONJ">Và</l>
<l s="G3326" m="PREP">sau</l>
đó
<l s="G3588 G2491" m="T-ASM N-ASM">Giăng</l>
<l s="G3860" m="V-APN">bị bỏ tù</l>
,
<l s="G3588 G2424" m="T-NSM N-NSM">Đức Giê-su</l>
<l s="G2064" m="V-2AAI-3S">đến</l>
<l s="G1519" m="PREP">trong</l>
<l s="G3588 G1056" m="T-ASF N-ASF">Ga-li-lê</l>
,
<l s="G2784" m="V-PAP-NSM">rao giảng</l>
<l s="G3588 G2098" m="T-ASN N-ASN">phúc-âm</l>
<l s="G3588 G932" m="T-GSF N-GSF">của vương quốc</l>
<l s="G3588 G2316" m="T-GSM N-GSM">của Đức Chúa Trời</l>
,
</span>
<span class="v-num v-15">15 </span><span class="v MK1_15" data-id="MK1_15">
<l s="G2532" m="CONJ">và</l>
<l s="G3004" m="V-PAP-NSM">nói rằng</l>
,
<span class="woc">
<l s="G3588 G2540" m="T-NSM N-NSM">Thời kỳ</l>
<l s="G4137" m="V-RPI-3S">đã trọn</l>
,
<l s="G2532" m="CONJ">và</l>
<l s="G3588 G932" m="T-NSF N-NSF">vương quốc</l>
<l s="G3588 G2316" m="T-GSM N-GSM">của Đức Chúa Trời</l>
<l s="G1448" m="V-RAI-3S">đã gần</l>
:
<l s="G3340" m="V-PAM-2P">[các ngươi] hãy ăn năn</l>
,
<l s="G2532" m="CONJ">và</l>
<l s="G4100" m="V-PAM-2P">tin</l>
<l s="G1722" m="PREP">vào</l>
<l s="G3588 G2098" m="T-DSN N-DSN">phúc-âm</l>
.
</span>
</span>
<span class="v-num v-16">16 </span><span class="v MK1_16" data-id="MK1_16">
<l s="G2532" m="CONJ">Và</l>
<l s="G3855" m="V-PAP-NSM">Ngài đang đi</l>
<l s="G3844" m="PREP">bên</l>
<l s="G3588 G2281" m="T-ASF N-ASF">[bờ] biển</l>
<l s="G3588 G1056" m="T-GSF N-GSF">của Ga-li-lê</l>
,
<l s="G1492" m="V-2AAI-3S">Ngài thấy</l>
<l s="G4613" m="N-ASM">Si-môn</l>
<l s="G2532" m="CONJ">và</l>
<l s="G406" m="N-ASM">An-rê</l>
<l s="G3588 G80" m="T-ASM N-ASM">em</l>
<l s="G4613" m="N-GSM">của Si-môn</l>
<l s="G906" m="V-PAP-APM">đang quăng</l>
<l s="G293" m="N-ASN">lưới</l>
<l s="G1722" m="PREP">vào</l>
<l s="G3588 G2281" m="T-DSF N-DSF">biển</l>
:
<l s="G1063" m="CONJ">bởi vì</l>
<l s="G1510" m="V-IXI-3P">họ là</l>
<l s="G231" m="N-NPM">những tay đánh cá</l>
.
</span>
<span class="v-num v-17">17 </span><span class="v MK1_17" data-id="MK1_17">
<l s="G2532" m="CONJ">Và</l>
<l s="G3588 G2424" m="T-NSM N-NSM">Đức Giê-su</l>
<l s="G3004" m="V-2AAI-3S">nói</l>
<l s="G846" m="P-DPM">với họ</l>
,
<span class="woc">
<l s="G1205" m="V-XXM-2P">Hãy đến</l>
<l s="G3694" m="ADV">theo [sau]</l>
<l s="G1473" m="P-1GS">Ta</l>
,
<l s="G2532" m="CONJ">và</l>
<l s="G4160" m="V-FAI-1S">Ta sẽ khiến [làm]</l>
<l s="G4771" m="P-2AP">các ngươi</l>
<l s="G1096" m="V-2ADN">trở thành</l>
<l s="G231" m="N-APM">những tay đánh lưới</l>
<l s="G444" m="N-GPM">người</l>
.
</span>
</span>
<span class="v-num v-18">18 </span><span class="v MK1_18" data-id="MK1_18">
<l s="G2532" m="CONJ">Và</l>
<l s="G2117" m="ADV">tức thì</l>
<l s="G863" m="V-2AAP-NPM">họ bỏ</l>
<l s="G3588 G1350" m="T-APN N-APN">lưới</l>
,
<l s="G190" m="V-AAI-3P">theo</l>
<l s="G846" m="P-DSM">Ngài</l>
.
</span>
<span class="v-num v-19">19 </span><span class="v MK1_19" data-id="MK1_19">
<l s="G2532" m="CONJ">Và</l>
<l s="G4260" m="V-2AAP-NSM">khi Ngài đã đi</l>
<l s="G3641" m="ADV">một khoản</l>
<l s="G1564" m="ADV">xa xa</l>
,
<l s="G3708" m="V-2AAI-3S">Ngài thấy</l>
<l s="G2385" m="N-ASM">Gia-cơ</l>
người
<span class="add">con trai</span>
<l s="G3588 G2199" m="T-GSM N-GSM">của Xê-bê-đê</l>
,
<l s="G2532" m="CONJ">và</l>
<l s="G2491" m="N-ASM">Giăng</l>
<l s="G3588 G80" m="T-ASM N-ASM">em</l>
<l s="G846" m="P-GSM">của ông</l>
,
<l s="G846" m="P-APM">họ</l>
<l s="G2532" m="CONJ">cũng</l>
<l s="G846" m="P-APM">đã</l>
<l s="G1722" m="PREP">trong</l>
<l s="G3588 G4143" m="T-DSN N-DSN">thuyền</l>
<l s="G2675" m="V-PAP-APM">đang vá</l>
<l s="G3588 G1350" m="T-APN N-APN">lưới</l>
của họ.
</span>
<span class="v-num v-20">20 </span><span class="v MK1_20" data-id="MK1_20">
<l s="G2532" m="CONJ">Và</l>
<l s="G2117" m="ADV">tức thì</l>
<l s="G2564" m="V-AAI-3S">Ngài gọi</l>
<l s="G846" m="P-APM">họ</l>
:
<l s="G2532" m="CONJ">và</l>
<l s="G863" m="V-2AAP-NPM">họ bỏ</l>
<l s="G3588 G3962" m="T-ASM N-ASM">cha</l>
<l s="G846" m="P-GPM">của họ</l>
<l s="G2199" m="N-ASM">[là] Xê-bê-đê</l>
<l s="G1722" m="PREP">trong</l>
<l s="G3588 G4143" m="T-DSN N-DSN">thuyền</l>
<l s="G3326" m="PREP">với</l>
<l s="G3588 G3411" m="T-GPM N-GPM">những người làm công</l>
, và
<l s="G565" m="V-2AAI-3P">đi</l>
<l s="G3694" m="ADV">theo</l>
<l s="G846" m="P-GSM">Ngài</l>
.
</span>
<span class="v-num v-21">21 </span><span class="v MK1_21" data-id="MK1_21">
<l s="G2532" m="CONJ">Và</l>
<l s="G1531" m="V-PNI-3P">họ đi</l>
<l s="G1519" m="PREP">vào</l>
<l s="G2584" m="N-PRI">[thành] Ca-bê-na-um</l>
;
<l s="G2532" m="CONJ">và</l>
<l s="G2117" m="ADV">tức thì</l>
<l s="G3588 G4521" m="T-DPN N-DPN">vào ngày Sa-bát</l>
<l s="G1525" m="V-2AAP-NSM">Ngài vào</l>
<l s="G1519" m="PREP">trong</l>
<l s="G3588 G4864" m="T-ASF N-ASF">nhà hội</l>
,
<l s="G1321" m="V-IAI-3S">dạy dổ</l>
.
</span>
<span class="v-num v-22">22 </span><span class="v MK1_22" data-id="MK1_22">
<l s="G2532" m="CONJ">Và</l>
<l s="G1605" m="V-IPI-3P">người ta đã ngạc nhiên</l>
<l s="G1909" m="PREP">với</l>
<l s="G3588 G1322" m="T-DSF N-DSF">sự dạy dỗ</l>
<l s="G846" m="P-GSM">của Ngài</l>
:
<l s="G1063" m="CONJ">bởi vì</l>
<l s="G2258" m="V-IXI-3S">Ngài</l>
<l s="G1321" m="V-PAP-NSM">dạy</l>
<l s="G846" m="P-APM">họ</l>
<l s="G5613" m="ADV">như</l>
<l s="G2192" m="V-PAP-NSM">người có</l>
<l s="G1849" m="N-ASF">thẩm quyền</l>
,
<l s="G2532" m="CONJ">và</l>
<l s="G3756" m="PRT-N">không</l>
<l s="G5613" m="ADV">như</l>
<l s="G3588 G1122" m="T-NPM N-NPM">các thầy dạy kinh luật</l>
.
</span>
<span class="v-num v-23">23 </span><span class="v MK1_23" data-id="MK1_23">
<l s="G2532" m="CONJ">Và</l>
<l s="G2258" m="V-IXI-3S">ở dó</l>
<l s="G1722" m="PREP">trong</l>
<l s="G3588 G4864" m="T-DSF N-DSF">nhà hội</l>
<l s="G846" m="P-GPM">của họ</l>
<l s="G444" m="N-NSM">[có] người đàn ông</l>
<l s="G1722" m="PREP">với</l>
<l s="G169" m="A-DSN">uế</l>
<l s="G4151" m="N-DSN">linh</l>
;
<l s="G2532" m="CONJ">và</l>
<l s="G349" m="V-AAI-3S">ông lớn tiếng</l>
,
</span>
<span class="v-num v-24">24 </span><span class="v MK1_24" data-id="MK1_24">
<l s="G3004" m="V-PAP-NSM">nói rằng</l>
,
<l s="G1436" m="INJ">Xin</l>
<span class="add">cho chúng tôi</span>
<l s="G1436" m="INJ">được yên</l>
;
<l s="G5101" m="I-NSN">Có gì</l>
<l s="G2254" m="P-1DP">chúng tôi phạm</l>
<l s="G2532" m="CONJ">với</l>
<l s="G4671" m="P-2DS">Ngài</l>
,
<l s="G2424" m="N-VSM">Đức Giê-su</l>
<l s="G3479" m="N-VSM">của Na-xa-rét</l>
?
<l s="G2064" m="V-2AAI-2S">mà Ngài đến</l>
<l s="G622" m="V-AAN">để diệt</l>
<l s="G2248" m="P-1AP">chúng tôi</l>
?
<l s="G1492" m="V-RAI-1S">Tôi biết</l>
<l s="G4571" m="P-2AS">Ngài</l>
<l s="G5101" m="I-NSM">ai</l>
<l s="G1488" m="V-PXI-2S">Ngài là</l>
,
<l s="G40" m="A-NSM">[là] Đấng Thánh</l>
<l s="G3588 G2316" m="T-GSM N-GSM">của Đức Chúa Trời</l>
.
</span>
<span class="v-num v-25">25 </span><span class="v MK1_25" data-id="MK1_25">
<l s="G2532" m="CONJ">Nhưng</l>
<l s="G3588 G2424" m="T-NSM N-NSM">Đức Giê-su</l>
<l s="G2008" m="V-AAI-3S">quở</l>
<l s="G846" m="P-DSM">nó</l>
,
<l s="G3004" m="V-PAP-NSM">nói rằng</l>
,
<span class="woc">
<l s="G5392" m="V-APM-2S">Hãy im đi</l>
,
<l s="G2532" m="CONJ">và</l>
<l s="G1831" m="V-2AAM-2S">rời</l>
<l s="G1537" m="PREP">khỏi</l>
<l s="G846" m="P-GSM">người</l>
.
</span>
</span>
<span class="v-num v-26">26 </span><span class="v MK1_26" data-id="MK1_26">
<l s="G2532" m="CONJ">Và</l>
<l s="G4682" m="V-AAP-NSN">khi</l>
<l s="G169" m="A-NSN">tà</l>
<l s="G3588 G4151" m="T-NSN N-NSN">linh</l>
<l s="G4682" m="V-AAP-NSN">đã dằn vặc</l>
<l s="G846" m="P-ASM">người</l>
,
<l s="G2532" m="CONJ">và</l>
<l s="G2896" m="V-AAP-NSN">la</l>
<l s="G3173" m="A-DSF">với lớn</l>
<l s="G5456" m="N-DSF">tiếng</l>
,
<l s="G1831" m="V-2AAI-3S">nó ra</l>
<l s="G1537" m="PREP">khỏi</l>
<l s="G846" m="P-GSM">người</l>
.
</span>
<span class="v-num v-27">27 </span><span class="v MK1_27" data-id="MK1_27">
<l s="G2532" m="CONJ">Và</l>
<l s="G3956" m="A-NPM">hết thảy</l>
<l s="G2284" m="V-API-3P">bọn họ đã</l>
<l s="G2284" m="V-API-3P">kinh ngạc</l>
,
<l s="G5620" m="CONJ">đến nỗi</l>
<l s="G4802" m="V-PAN">họ hỏi</l>
<l s="G4314" m="PREP">lẫn</l>
<l s="G846" m="P-APM">nhau</l>
,
<l s="G3004" m="V-PAP-APM">nói rằng</l>
,
<l s="G2076" m="V-PXI-3S">đây là</l>
<l s="G5101" m="I-NSN">Cái gì</l>
<l s="G5124" m="D-NSN">đây</l>
?
<l s="G5101" m="I-NSM">[Thật là]</l>
<l s="G3588 G1322" m="T-NSF N-NSF">sự dạy dỗ</l>
<l s="G2537" m="A-NSF">mới</l>
<span class="add">là</span>
<l s="G3778" m="D-NSF">điều này</l>
?
<l s="G3754" m="CONJ">bởi vì</l>
<l s="G2596" m="PREP">với</l>
<l s="G1849" m="N-ASF">thẩm quyền</l>
<l s="G2004" m="V-PAI-3S">người ra lệnh</l>
<l s="G2532" m="CONJ">ngay cả</l>
<l s="G169" m="A-DPN">tà</l>
<l s="G3588 G4151" m="T-DPN N-DPN">linh</l>
,
<l s="G2532" m="CONJ">và</l>
<l s="G5219" m="V-PAI-3P">chúng (cũng) vâng lời</l>
<l s="G846" m="P-DSM">người</l>
.
</span>
<span class="v-num v-28">28 </span><span class="v MK1_28" data-id="MK1_28">
<l s="G1161" m="CONJ">và</l>
<l s="G2117" m="ADV">tức thì</l>
<l s="G3588 G189" m="T-NSF N-NSF">danh tiếng</l>
<l s="G846" m="P-GSM">của Ngài</l>
<l s="G1831" m="V-2AAI-3S">đồn ra</l>
<l s="G1519" m="PREP">suốt</l>
<l s="G3650" m="A-ASF">cả</l>
<l s="G4066" m="A-ASF">vùng chung quanh</l>
<l s="G3588 G1056" m="T-GSF N-GSF">Ga-li-lê</l>
.
</span>
<span class="v-num v-29">29 </span><span class="v MK1_29" data-id="MK1_29">
<l s="G2532" m="CONJ">và</l>
<l s="G2112" m="ADV">Ngay sau đó</l>
,
<l s="G1831" m="V-2AAP-NPM">khi họ ra khỏi</l>
<l s="G1537" m="PREP">chổ</l>
<l s="G3588 G4864" m="T-GSF N-GSF">nhà hội</l>
,
<l s="G2064" m="V-2AAI-3P">họ đi vào</l>
<l s="G1519" m="PREP">trong</l>
<l s="G3588 G3614" m="T-ASF N-ASF">nhà</l>
<l s="G4613" m="N-GSM">của Si-môn</l>
<l s="G2532" m="CONJ">và</l>
<l s="G406" m="N-GSM">An-rê</l>
,
<l s="G3326" m="PREP">với</l>
<l s="G2385" m="N-GSM">Gia-cơ</l>
<l s="G2532" m="CONJ">và</l>
<l s="G2491" m="N-GSM">Giăng</l>
.
</span>
<span class="v-num v-30">30 </span><span class="v MK1_30" data-id="MK1_30">
<l s="G1161" m="CONJ">Nhưng</l>
<l s="G3994" m="N-NSF">bà gia</l>
<l s="G4613" m="N-GSM">của Si-môn</l>
<l s="G2621" m="V-INI-3S">nằm</l>
<l s="G4445" m="V-PAP-NSF">sốt</l>
,
<l s="G2532" m="CONJ">và</l>
<l s="G2112" m="ADV">tức thì</l>
<l s="G3004" m="V-PAI-3P">họ nói</l>
<l s="G846" m="P-DSM">với Ngài</l>
<l s="G4012" m="PREP">về (bệnh)</l>
<l s="G846" m="P-GSF">của bà</l>
.
</span>
<span class="v-num v-31">31 </span><span class="v MK1_31" data-id="MK1_31">
<l s="G2532" m="CONJ">Và</l>
<l s="G4334" m="V-2AAP-NSM">Ngài đến</l>
<l s="G2902" m="V-AAP-NSM">và nắm</l>
<l s="G3588 G5495" m="T-GSF N-GSF">lấy bàn tay</l>
<l s="G846" m="P-ASF">của bà</l>
,
<l s="G1453" m="V-AAI-3S">và đở</l>
<l s="G846" m="P-GSF">bà</l>
<l s="G1453" m="V-AAI-3S">lên</l>
;
<l s="G2532" m="CONJ">và</l>
<l s="G2112" m="ADV">tức khắc</l>
<l s="G3588 G4446" m="T-NSM N-NSM">cơn sốt</l>
<l s="G863" m="V-AAI-3S">lìa khỏi</l>
<l s="G846" m="P-ASF">bà</l>
,
<l s="G2532" m="CONJ">và</l>
<l s="G1247" m="V-IAI-3S">bà phục vụ</l>
<l s="G846" m="P-DPM">họ</l>
.
</span>
<span class="v-num v-32">32 </span><span class="v MK1_32" data-id="MK1_32">
<l s="G1161" m="CONJ">Và</l>
<l s="G3753" m="ADV">lúc</l>
,
<l s="G3588 G2246" m="T-NSM N-NSM">mặt trời</l>
<l s="G1096" m="V-2ADP-GSF">nên</l>
<l s="G1416" m="V-2AAI-3S">xế</l>
<l s="G3798" m="A-GSF">chiều</l>
,
<l s="G5342" m="V-IAI-3P">họ đến</l>
<l s="G4314" m="PREP">đến cho</l>
<l s="G846" m="P-ASM">Ngài</l>
<l s="G3956" m="A-APM">mọi</l>
<l s="G2192" m="V-PAP-APM">kẻ có</l>
<l s="G2560" m="ADV">bệnh tật</l>
,
<l s="G2532" m="CONJ">và</l>
<l s="G3588" m="T-APM">những kẻ</l>
<l s="G1139" m="V-PNP-APM">bị quỉ ám</l>
.
</span>
<span class="v-num v-33">33 </span><span class="v MK1_33" data-id="MK1_33">
<l s="G2532" m="CONJ">và</l>
<l s="G3650" m="A-NSF">cả</l>
<l s="G3588 G4172" m="T-NSF N-NSF">thành</l>
<l s="G2258" m="V-IXI-3S">đã</l>
<l s="G1996" m="V-RPP-NSF">tụ họp lại</l>
<l s="G4314" m="PREP">nơi</l>
<l s="G3588 G2374" m="T-ASF N-ASF">cửa</l>
.
</span>
<span class="v-num v-34">34 </span><span class="v MK1_34" data-id="MK1_34">
<l s="G2532" m="CONJ">và</l>
<l s="G2323" m="V-AAI-3S">Ngài chữa lành</l>
<l s="G4183" m="A-APM">nhiều</l>
<l s="G2192" m="V-PAP-APM">kẻ có</l>
<l s="G4164" m="A-DPF">của đủ thứ</l>
<l s="G2560" m="ADV">tật</l>
<l s="G3554" m="N-DPF">bệnh</l>
,
<l s="G2532" m="CONJ">và</l>
<l s="G1544" m="V-2AAI-3S">đuổi</l>
<l s="G4183" m="A-APN">nhiều</l>
<l s="G1140" m="N-APN">tà ma</l>
;
<l s="G2532" m="CONJ">và</l>
<l s="G863" m="V-IAI-3S">ngăn cấm</l>
<l s="G3588 G1140" m="T-APN N-APN">tà ma</l>
<l s="G3756" m="PRT-N">không được</l>
<l s="G2980" m="V-PAN">nói</l>
,
<l s="G3754" m="CONJ">bởi vì</l>
<l s="G1492" m="V-LAI-3P">chúng nó biết</l>
<l s="G846" m="P-ASM">Ngài</l>
.
</span>
<span class="v-num v-35">35 </span><span class="v MK1_35" data-id="MK1_35">
<l s="G2532" m="CONJ">và</l>
<l s="G4404" m="ADV">vào buổi sáng</l>
,
<l s="G3029" m="ADV">rất</l>
<l s="G450" m="V-2AAP-NSM">sớm</l>
<l s="G1773" m="ADV">tinh sương</l>
,
<l s="G1831" m="V-2AAI-3S">Ngài đi ra</l>
,
<l s="G2532" m="CONJ">và</l>
<l s="G565" m="V-2AAI-3S">đến</l>
<l s="G1519" m="PREP">trong</l>
<l s="G5117" m="N-ASM">nơi</l>
<l s="G2048" m="A-ASM">vắng vẻ</l>
,
<l s="G2546" m="ADV-C">và nơi đó</l>
<l s="G4336" m="V-INI-3S">Ngài cầu nguyện</l>
.
</span>
<span class="v-num v-36">36 </span><span class="v MK1_36" data-id="MK1_36">
<l s="G2532" m="CONJ">và</l>
<l s="G3588 G4613" m="T-NSM N-NSM">Si-môn</l>
<l s="G2532" m="CONJ">và</l>
<l s="G3588" m="T-NPM">những người đã</l>
<l s="G3326" m="PREP">[ở] cùng</l>
<l s="G846" m="P-GSM">Ngài</l>
<l s="G2614" m="V-AAI-3P">theo tìm</l>
<l s="G846" m="P-ASM">Ngài</l>
.
</span>
<span class="v-num v-37">37 </span><span class="v MK1_37" data-id="MK1_37">
<l s="G2532" m="CONJ">và</l>
<l s="G2147" m="V-2AAP-NPM">khi họ tìm gặp</l>
<l s="G846" m="P-ASM">Ngài</l>
,
<l s="G3004" m="V-PAI-3P">họ nói</l>
<l s="G846" m="P-DSM">với Ngài</l>
,
<l s="G3956" m="A-NPM">All</l>
<span class="add">người ta</span>
<l s="G2212" m="V-PAI-3P">[đang]tìm</l>
<l s="G4571" m="P-2AS">thầy</l>
.
</span>
<span class="v-num v-38">38 </span><span class="v MK1_38" data-id="MK1_38">
<l s="G2532" m="CONJ">và</l>
<l s="G3004" m="V-PAI-3S">Ngài nói</l>
<l s="G846" m="P-DPM">với họ</l>
,
<span class="woc">
<l s="G71" m="V-PAS-1P">Chúng ta hãy đi</l>
<l s="G1519" m="PREP">vào</l>
<l s="G2969" m="N-APF">những thành phố</l>
<l s="G2192" m="V-PPP-APF">lân cận</l>
,
<l s="G2443" m="CONJ">hầu cho</l>
<l s="G2784" m="V-AAS-1S">Ta có thể giảng</l>
<l s="G2546" m="ADV-C">tại đó nửa</l>
:
<l s="G1063" m="CONJ">bởi vì</l>
<l s="G1519 G5124" m="PREP D-ASN">ấy là [lý do]</l>
<l s="G1831" m="V-RAI-1S">mà Ta đã đến</l>
.
</span>
</span>
<span class="v-num v-39">39 </span><span class="v MK1_39" data-id="MK1_39">
<l s="G2532" m="CONJ">và</l>
<l s="G2258" m="V-IXI-3S">Ngài</l>
<l s="G2784" m="V-PAP-NSM">giảng</l>
<l s="G1722" m="PREP">trong</l>
<l s="G3588 G4864" m="T-DPF N-DPF">các nhà hội</l>
<l s="G846" m="P-GPM">của họ</l>
<l s="G1519" m="PREP">suốt</l>
<l s="G3650" m="A-ASF">cả</l>
<l s="G3588 G1056" m="T-ASF N-ASF">Ga-li-lê</l>
,
<l s="G2532" m="CONJ">và</l>
<l s="G1544" m="V-PAP-NSM">đuổi</l>
<l s="G3588 G1140" m="T-APN N-APN">các quỹ</l>
.
</span>
<span class="v-num v-40">40 </span><span class="v MK1_40" data-id="MK1_40">
<l s="G2532" m="CONJ">Và</l>
<l s="G2064" m="V-PNI-3S">xảy đến</l>
<l s="G3015" m="A-NSM">[có] một người phung</l>
<l s="G4314" m="PREP">đến với</l>
<l s="G846" m="P-ASM">Ngài</l>
,
<l s="G3870" m="V-PAP-NSM">cầu xin</l>
<l s="G846" m="P-ASM">Ngài</l>
,
<l s="G2532" m="CONJ">và</l>
<l s="G1120" m="V-PAP-NSM">quì xuống</l>
<l s="G846" m="P-ASM">trước Ngài</l>
,
<l s="G2532" m="CONJ">và</l>
<l s="G3004" m="V-PAP-NSM">nói</l>
<l s="G846" m="P-DSM">với Ngài</l>
,
<l s="G1437" m="COND">nếu</l>
<l s="G2309" m="V-PAS-2S">Ngài khứng</l>
,
<l s="G1410" m="V-PNI-2S">Ngài có thể làm</l>
<l s="G3165" m="P-1AS">cho tôi</l>
<l s="G2511" m="V-AAN">được sạch</l>
.
</span>
<span class="v-num v-41">41 </span><span class="v MK1_41" data-id="MK1_41">
<l s="G1161" m="CONJ">Và</l>
<l s="G2424" m="N-NSM">Đức Giê-su</l>
,
<l s="G4697" m="V-AOP-NSM">động lòng thương xót</l>
,
<l s="G1614" m="V-AAP-NSF">giang</l>
<l s="G3588 G5495" m="T-ASF N-ASF">tay</l>
<span class="add">của Ngài</span>
,
<l s="G680" m="V-ADI-3S">và chạm đến</l>
<l s="G846" m="P-GSM">người</l>
,
<l s="G2532" m="CONJ">và</l>
<l s="G3004" m="V-PAI-3S">phán</l>
<l s="G846" m="P-DSM">cùng người</l>
,
<span class="woc">
<l s="G2309" m="V-PAI-1S">Ta khứng</l>
;
<l s="G2511" m="V-APM-2S">hãy được sạch</l>
.
</span>
</span>
<span class="v-num v-42">42 </span><span class="v MK1_42" data-id="MK1_42">
<l s="G2532" m="CONJ">và</l>
<l s="G2036" m="V-2AAP-GSM">liền tức thì</l>
<l s="G846" m="P-GSM">Ngài</l>
<l s="G2036" m="V-2AAP-GSM">vừa nói</l>
,
<l s="G2112" m="ADV">tức khắc</l>
<l s="G3588 G3014" m="T-NSF N-NSF">bệnh phung</l>
<l s="G565" m="V-2AAI-3S">lìa</l>
<l s="G575" m="PREP">khỏi</l>
<l s="G846" m="P-GSM">người</l>
,
<l s="G2532" m="CONJ">và</l>
<l s="G2511" m="V-API-3S">người được sạch</l>
.
</span>
<span class="v-num v-43">43 </span><span class="v MK1_43" data-id="MK1_43">
<l s="G2532" m="CONJ">và</l>
<l s="G1690" m="V-ADP-NSM">Ngài nghiêm dặn</l>
<l s="G846" m="P-DSM">ông</l>
,
<l s="G1690" m="V-ADP-NSM">và</l>
<l s="G2112" m="ADV">ngay sau đó</l>
<l s="G1544" m="V-2AAI-3S">sai</l>
<l s="G846" m="P-ASM">ông</l>
<l s="G1544" m="V-2AAI-3S">đi (khỏi)</l>
;
</span>
<span class="v-num v-44">44 </span><span class="v MK1_44" data-id="MK1_44">
<l s="G2532" m="CONJ">và</l>
<l s="G3004" m="V-PAI-3S">nói</l>
<l s="G846" m="P-DSM">với ông</l>
,
<span class="woc">
<l s="G3708" m="V-PAM-2S">Hãy xem</l>
<l s="G2036" m="V-2AAS-2S">ngươi [đừng] nói</l>
<l s="G3367" m="A-ASN">không chi</l>
<l s="G3367" m="A-DSM">với ai [hết]</l>
:
<l s="G235" m="CONJ">nhưng</l>
<l s="G5217" m="V-PAM-2S">hãy lên đường đi</l>
,
<l s="G1166" m="V-AAM-2S">tỏ</l>
<l s="G4572" m="F-2ASM">mình</l>
<l s="G3588 G2409" m="T-DSM N-DSM">với thầy tế lễ</l>
,
<l s="G2532" m="CONJ">và</l>
<l s="G4374" m="V-2AAM-2S">mang [tế lễ]</l>
<l s="G4012" m="PREP">bởi vì</l>
<l s="G3588 G2512" m="T-GSM N-GSM">sự được sạch</l>
<l s="G4675" m="P-2GS">của ngươi</l>
<l s="G3739" m="R-APN">những điều mà</l>
<l s="G3475" m="N-NSM">Môi-se</l>
<l s="G4367" m="V-AAI-3S">đã truyền</l>
,
<l s="G1519" m="PREP">để [làm]</l>
<l s="G3142" m="N-ASN">chứng</l>
<l s="G846" m="P-DPM">cho họ</l>
.
</span>
</span>
<span class="v-num v-45">45 </span><span class="v MK1_45" data-id="MK1_45">
<l s="G1161" m="CONJ">Nhưng</l>
<l s="G1831" m="V-2AAP-NSM">ông đi ra</l>
,
<l s="G756" m="V-ADI-3S">và bắt đầu</l>
<l s="G2784" m="V-PAN">rao báo</l>
<span class="add">việc ấy</span>
<l s="G4183" m="A-APN">khắp [nơi]</l>
,
<l s="G2532" m="CONJ">và</l>
<l s="G1310" m="V-PAN">đồn ra</l>
<l s="G3588 G3056" m="T-ASM N-ASM">sự việc</l>
,
<l s="G5620" m="CONJ">đến nỗi</l>
<l s="G846" m="P-ASM">Ngài</l>
<l s="G3371" m="ADV">không</l>
<l s="G1410" m="V-PNN">thể</l>
<l s="G5320" m="ADV">công khai</l>
<l s="G1525" m="V-2AAN">vào</l>
<l s="G1519" m="PREP">trong</l>
<l s="G4172" m="N-ASF">thành</l>
,
<l s="G235" m="CONJ">nhưng</l>
<l s="G2258" m="V-IXI-3S">ở</l>
<l s="G1854" m="ADV">ngoài</l>
<l s="G1722" m="PREP">trong</l>
<l s="G2048" m="A-DPM">đồng vắng</l>
<l s="G5117" m="N-DPM">nơi</l>
:
<l s="G2532" m="CONJ">và</l>
<l s="G2064" m="V-INI-3P">người ta đến</l>
<l s="G4314" m="PREP">với</l>
<l s="G846" m="P-ASM">Ngài</l>
<l s="G3836" m="ADV">từ khắp nơi</l>
.
</span>
</div>
</div>
<div class="footnotes">
</div>
<div class="footer"><div class="nav">
<a class="prev" href="MT28.html"><</a>
<a class="home" href="index.html">=</a>
<a class="next" href="MK2.html">></a>
</div></div>
</body>
</html> | khangpng/VietnameseBible | app/content/texts/vn_kjv/MK1.html | HTML | mit | 30,148 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="author" content="Nuhil Mehdy">
<link rel="icon" href="favicon.png">
<title>বঙ্গাব্দ - jQuery plugin to display Time-Stamp, based on Bangla Calendar</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<h1>বঙ্গাব্দ - jQuery Plugin</h1>
<p>
ওপেন সোর্স jQuery Plugin যেটা ব্যবহার করে আপনি ওয়েব পেজের যেকোনো স্থানে বাংলা ক্যালেন্ডার মোতাবেক আজকের বা নির্দিষ্ট কোন দিন/তারিখ ডিসপ্লে করতে পারবেন। গ্রেগরিয়ান ক্যালেন্ডার এর উপর ভিত্তি করে এবং <a href="//en.wikipedia.org/wiki/Bengali_calendar" target="_blank">উইকিপিডিয়ার তথ্য সূত্র</a> মোতাবেক দিন/তারিখ রূপান্তরের প্রোগ্রামিং লজিক করা হয়েছে।
</p>
<div class="buttons">
<a href="https://raw.githubusercontent.com/nuhil/bangla-calendar/master/jquery.bongabdo.js" class="button left">সোর্স কোড</a>
<a href="https://github.com/nuhil/bangla-calendar/archive/master.zip" class="button download left" target="_blank">উদাহরণ সহ ডাউনলোড</a>
</div>
<p class="clear">যেকোনো HTML এলিমেন্টের মধ্যে খুব সহজেই বাংলা দিন/তারিখ দেখাতে নিচের মত করে এই প্লাগিনকে ইনিসিয়ালাইজ করতে হবে</p>
<pre>$('element').bongabdo();</pre>
<p>যদি আপনার ওয়েব পেজের মধ্যে নিচের মত এক বা একাধিক এলিমেন্ট থাকে,</p>
<xmp><h1 class="bongabdo">...</h1></xmp>
<p>তাহলে উপরোক্ত এলিমেন্ট গুলোর মধ্যে বাংলা তারিখ দেখানোর জন্য একটি পূর্ণ উদাহরণ হতে পারে নিচের মত করে। অর্থাৎ প্রথমে jQuery সংযুক্ত করুন, তারপর এই প্লাগিনকে সংযুক্ত করুন, তারপর ইনিসিয়ালাইজ করুন।</p>
<xmp><script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="jquery.bongabdo.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.bongabdo').bongabdo();
});
</script></xmp>
<p>এতে করে আপনি নিচের মত আউটপুট পাবেন</p>
<p><h1 class="bongabdo">...</h1></p>
<hr>
<h2>অপশনসমূহঃ</h2>
<p>প্লাগিন ইনিশিয়ালাইজ করার সময়ই নীচের অপশনগুলোর জন্য ভ্যালু দিয়ে ডিফল্ট সেটিংসে পরিবর্তন করা যাবে।</p>
<br/>
<h3>date:</h3>
<p>
ডিফল্টভাবে প্লাগিনটি আজকের দিন দেখাবে। আপনি যদি অন্য কোনো নির্দিষ্ট ইংরেজি দিনের জন্য বাংলা দিন দেখতে চান তাহলে,
<strong>date</strong> এর ভ্যালুতে স্ট্রিং হিসেবে ইংরেজি তারিখটি বলে দিতে হবে। নীচে উদাহরণ দেয়া হলোঃ
</p>
<xmp>$('.bongabdo').bongabdo({
date: '2018-04-14'
});</xmp>
<p><h1 id="differentdate">...</h1></p>
<h3>format:</h3>
<p>
দিন, তারিখ, বছর কোন ফরম্যাটে দেখাতে চান সেটা <strong>format</strong> এর ভ্যালুতে স্ট্রিং হিসেবে বলে দেয়া যাবে। নীচে উদাহরণ দেয়া হলোঃ
</p>
<xmp>$('.bongabdo').bongabdo({
showSeason: true,
format: "DD-MM [YY]"
});</xmp>
<p><h1 id="bongabdoformat">...</h1></p>
<p>যেমনঃ আপনি যদি শুধুমাত্র বর্তমান বাংলা মাস দেখাতে চান, তাহলে-</p>
<xmp>$('#onlymonth').bongabdo({
format: "MM"
});</xmp>
<p><h1 id="onlymonth">...</h1></p>
<p>কিংবা শুধুমাত্র বর্তমান বছর-</p>
<xmp>$('#onlyyear').bongabdo({
format: "YY"
});</xmp>
<p><h1 id="onlyyear">...</h1></p>
<p>আরো একটি উদাহরণ-</p>
<xmp>$('.bongabdo').bongabdo({
format: "MM DD (YY)"
});</xmp>
<p><h1 id="example">...</h1></p>
<p>
ডিফল্ট ফরম্যাট হিসেবে দেয়া আছেঃ <b>DD MM, YY</b><br>
অর্থাৎ আপনি যদি কোনো ফরম্যাট বলে না দেন, তাহলে <b><span class="bongabdo"></span></b> এই ফরম্যাটেই তারিখ, মাস, বছর দেখাবে। <br><br>
ফরম্যাটের ভ্যালুসমুহঃ
<table>
<tbody>
<tr>
<td>DD</td>
<td>তারিখ</td>
</tr>
<tr>
<td>MM</td>
<td>মাস</td>
</tr>
<tr>
<td>YY</td>
<td>বছর</td>
</tr>
<tr>
<td>SS</td>
<td>ঋতু</td>
</tr>
<tr>
<td>WW</td>
<td>বার</td>
</tr>
</tbody>
</table>
</p>
<h3>showSeason:</h3>
<p>
ঋতুর নাম সহ দেখাতে চাইলে <strong>showSeason</strong> এর ভ্যালু সেট করে দিন এবং format বলে দিন।
</p>
<xmp>$('.bongabdo').bongabdo({
showSeason: true,
format: "DD MM, YY (SS)"
});</xmp>
<p><h1 id="bongabdowithseason">...</h1></p>
<p>শুধুমাত্র বর্তমান ঋতু দেখাতে চাইলে-</p>
<xmp>$('#onlyseason').bongabdo({
showSeason: true,
format: "SS"
});</xmp>
<p><h1 id="onlyseason">...</h1></p>
<h3>showWeekDays:</h3>
<p>
সপ্তাহের বার সহ দেখাতে চাইলেে <strong>showWeekDays</strong> এর ভ্যালু সেট করে দিন এবং format বলে দিন।
</p>
<xmp>$('.bongabdo').bongabdo({
showWeekDays: true,
format: "DD MM, YY (WW)"
});</xmp>
<p><h1 id="bongabdowithday">...</h1></p>
<p>শুধুমাত্র সপ্তাহের বর্তমান দিনটি দেখাতে চাইলে-</p>
<xmp>$('#onlyday').bongabdo({
showWeekDays: true,
format: "WW"
});</xmp>
<p><h1 id="onlyday">...</h1></p>
<p class="social-share">
<span class='st_fblike_hcount' displayText='Facebook Like'></span>
<span class='st_facebook_hcount' displayText='Facebook'></span>
<span class='st_twitter_hcount' displayText='Tweet'></span>
<span class='st_linkedin_hcount' displayText='LinkedIn'></span>
<span class='st_pinterest_hcount' displayText='Pinterest'></span>
</p>
<br/>
</div>
<a href="https://github.com/nuhil/bangla-calendar" target="_blank"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_green_007200.png" alt="Fork me on GitHub"></a>
<script type="text/javascript" src="https://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript">stLight.options({publisher: "caa1b52e-e3f3-4473-b61a-7a5d70f5e357", doNotHash: false, doNotCopy: false, hashAddressBar: false});</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="../jquery.bongabdo.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.bongabdo').bongabdo();
$('#differentdate').bongabdo({
date: '2018-04-14'
});
$('#bongabdoformat').bongabdo({
showSeason: true,
format: "DD-MM [YY]"
});
$('#bongabdowithseason').bongabdo({
showSeason: true,
format: "DD MM, YY (SS)"
});
$('#bongabdowithday').bongabdo({
showWeekDays: true,
format: "DD MM, YY (WW)"
});
$('#onlymonth').bongabdo({
format: "MM"
});
$('#onlyyear').bongabdo({
format: "YY"
});
$('#example').bongabdo({
format: "MM DD (YY)"
});
$('#onlyseason').bongabdo({
showSeason: true,
format: "SS"
});
$('#onlyday').bongabdo({
showWeekDays: true,
format: "WW"
});
});
</script>
</body>
</html>
| nuhil/bangla-calendar | example/index.html | HTML | mit | 10,109 |
<div class="block right-div">
<div class="block-title">
<h2><strong class="block-title-setting">
Comments
</strong></h2>
</div>
<div class="block-content">
<div class="row">
<div class="PublicRepositoryArea">
<div class="col-md-10 repositoryBlock">
<div class="repo-list-item-img">
<img src="https://secure.gravatar.com/avatar/d1b6700884ac0ae368918ad171bb6a75.jpg?s=200&d=mm" class="profile">
</div>
<div class="repo-list-item-content-title commments-tilte">chliang2030598</div>
<div class="comment-list-item-content-time">10 minutes ago</div>
<div class="repo-list-item-content">
<div class="repo-list-item-content-t">
<p class="repo-list-item-content-desc">@joshula - You could probably find a way to do that. I only needed to tweak a couple config settings, so I just passed them directly in the command: redis-server --save "" --maxmemory "250mb" --maxmemory-policy "allkeys-lru"
I could confirm by using “CONFIG GET [setting]” in a client that they were being applied appropriately.</p>
</div>
</div>
</div>
<div class="col-md-10 repositoryBlock">
<div class="repo-list-item-img">
<img src="https://secure.gravatar.com/avatar/d1b6700884ac0ae368918ad171bb6a75.jpg?s=200&d=mm" class="profile">
</div>
<div class="repo-list-item-content-title commments-tilte">chliang2030598</div>
<div class="comment-list-item-content-time">10 minutes ago</div>
<div class="repo-list-item-content">
<div class="repo-list-item-content-t">
<p class="repo-list-item-content-desc">@joshula - You could probably find a way to do that. I only needed to tweak a couple config settings, so I just passed them directly in the command: redis-server --save "" --maxmemory "250mb" --maxmemory-policy "allkeys-lru"
I could confirm by using “CONFIG GET [setting]” in a client that they were being applied appropriately.</p>
</div>
</div>
</div>
<div class="col-md-10 repositoryBlock">
<div class="repo-list-item-img">
<img src="https://secure.gravatar.com/avatar/d1b6700884ac0ae368918ad171bb6a75.jpg?s=200&d=mm" class="profile">
</div>
<div class="repo-list-item-content-title commments-tilte">chliang2030598</div>
<div class="comment-list-item-content-time">10 minutes ago</div>
<div class="repo-list-item-content">
<div class="repo-list-item-content-t">
<p class="repo-list-item-content-desc">@joshula - You could probably find a way to do that. I only needed to tweak a couple config settings, so I just passed them directly in the command: redis-server --save "" --maxmemory "250mb" --maxmemory-policy "allkeys-lru"
I could confirm by using “CONFIG GET [setting]” in a client that they were being applied appropriately.</p>
</div>
</div>
</div>
<div class="col-md-10 repositoryBlock">
<div class="repo-list-item-img">
<img src="https://secure.gravatar.com/avatar/d1b6700884ac0ae368918ad171bb6a75.jpg?s=200&d=mm" class="profile">
</div>
<div class="repo-list-item-content-title commments-tilte">chliang2030598</div>
<div class="comment-list-item-content-time">10 minutes ago</div>
<div class="repo-list-item-content">
<div class="repo-list-item-content-t">
<p class="repo-list-item-content-desc">@joshula - You could probably find a way to do that. I only needed to tweak a couple config settings, so I just passed them directly in the command: redis-server --save "" --maxmemory "250mb" --maxmemory-policy "allkeys-lru"
I could confirm by using “CONFIG GET [setting]” in a client that they were being applied appropriately.</p>
</div>
</div>
</div>
<div class="col-md-10 repositoryBlock">
<div class="repo-list-item-img">
<img src="https://secure.gravatar.com/avatar/d1b6700884ac0ae368918ad171bb6a75.jpg?s=200&d=mm" class="profile">
</div>
<div class="repo-list-item-content-title commments-tilte">chliang2030598</div>
<div class="comment-list-item-content-time">10 minutes ago</div>
<div class="repo-list-item-content">
<div class="repo-list-item-content-t">
<p class="repo-list-item-content-desc">@joshula - You could probably find a way to do that. I only needed to tweak a couple config settings, so I just passed them directly in the command: redis-server --save "" --maxmemory "250mb" --maxmemory-policy "allkeys-lru"
I could confirm by using “CONFIG GET [setting]” in a client that they were being applied appropriately.</p>
</div>
</div>
</div>
<div class="col-md-10 repositoryBlock">
<div class="repo-list-item-img">
<img src="https://secure.gravatar.com/avatar/d1b6700884ac0ae368918ad171bb6a75.jpg?s=200&d=mm" class="profile">
</div>
<div class="repo-list-item-content-title commments-tilte">chliang2030598</div>
<div class="comment-list-item-content-time">10 minutes ago</div>
<div class="repo-list-item-content">
<div class="repo-list-item-content-t">
<p class="repo-list-item-content-desc">@joshula - You could probably find a way to do that. I only needed to tweak a couple config settings, so I just passed them directly in the command: redis-server --save "" --maxmemory "250mb" --maxmemory-policy "allkeys-lru"
I could confirm by using “CONFIG GET [setting]” in a client that they were being applied appropriately.</p>
</div>
</div>
</div>
<div class="col-md-10 repositoryBlock">
<div class="repo-list-item-img">
<img src="https://secure.gravatar.com/avatar/d1b6700884ac0ae368918ad171bb6a75.jpg?s=200&d=mm" class="profile">
</div>
<div class="repo-list-item-content-title commments-tilte">chliang2030598</div>
<div class="comment-list-item-content-time">10 minutes ago</div>
<div class="repo-list-item-content">
<div class="repo-list-item-content-t">
<p class="repo-list-item-content-desc">@joshula - You could probably find a way to do that. I only needed to tweak a couple config settings, so I just passed them directly in the command: redis-server --save "" --maxmemory "250mb" --maxmemory-policy "allkeys-lru"
I could confirm by using “CONFIG GET [setting]” in a client that they were being applied appropriately.</p>
</div>
</div>
</div>
<div class="col-md-10 repositoryBlock">
<div class="repo-list-item-img">
<img src="https://secure.gravatar.com/avatar/d1b6700884ac0ae368918ad171bb6a75.jpg?s=200&d=mm" class="profile">
</div>
<div class="repo-list-item-content-title commments-tilte">chliang2030598</div>
<div class="comment-list-item-content-time">10 minutes ago</div>
<div class="repo-list-item-content">
<div class="repo-list-item-content-t">
<p class="repo-list-item-content-desc">@joshula - You could probably find a way to do that. I only needed to tweak a couple config settings, so I just passed them directly in the command: redis-server --save "" --maxmemory "250mb" --maxmemory-policy "allkeys-lru"
I could confirm by using “CONFIG GET [setting]” in a client that they were being applied appropriately.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
| maquanyi/wharf | external/views/dashboard/comment.html | HTML | mit | 7,677 |
<div id="detail">
<div id="detail-container"></div>
</div>
| lode/debug-toolbar | src/templates/detail.html | HTML | mit | 60 |
{% extends "base.html" %}
{% load staticfiles %}
{% load i18n %}
{% block navbar_tracked_items %}class="active"{% endblock %}
{% block page-title %}{{ block.super }} | {% trans "Tracked Item" %}: {{ object }} {% endblock %}
{% block js-imports %}
<script src="{% static "js/Chart.min.js" %}"></script>
{% endblock %}
{% block main-container %}
<h1>{% trans "Tracked Item" %}: {{ object }}</h1>
<div class="row">
<div class="col-lg-12">
<canvas id="item_price_charge" width="400" height="400"></canvas>
<div id="item_price_legend"></div>
</div>
</div>
{% endblock %}
{% block jquery-docready %}
//Chart.defaults.global.responsive = true;
{% comment %}
{% verbatim %}
Chart.defaults.legendTemplate = "<ul class=\"<%=name.toLowerCase()%>-legend\"><% for (var i=0; i<datasets.length; i++){%><li><span style=\"background-color:<%=datasets[i].lineColor%>\"><%if(datasets[i].label){%><%=datasets[i].label%><%}%></span></li><%}%></ul>"
{% endverbatim %}
{% endcomment %}
var ctx = $("#item_price_charge").get(0).getContext("2d");
// This will get the first returned node in the jQuery collection.
var data = {{ chart_data|safe }}
var datasets = data['datasets'];
{% verbatim %}
var myNewChart = new Chart(ctx).Line(data);
{% endverbatim %}
$('#item_price_legend').html(myNewChart.generateLegend());
{% endblock %}
| arruda/wowa | wowa/templates/tracker/character_item_detail.html | HTML | mit | 1,374 |
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="ApiGen 2.8.0" />
<title>File woocommerce-template.php | WooCommerce</title>
<script type="text/javascript" src="resources/combined-1359452498.js"></script>
<script type="text/javascript" src="elementlist-2750599401.js"></script>
<link rel="stylesheet" type="text/css" media="all" href="resources/bootstrap.min-2450451432.css" />
<link rel="stylesheet" type="text/css" media="all" href="resources/style-1319793728.css" />
</head>
<body>
<div id="navigation" class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a href="index.html" class="brand">WooCommerce</a>
<div class="nav-collapse">
<ul class="nav">
<li>
<a href="package-WooCommerce.Templates.Product.html" title="Summary of WooCommerce\Templates\Product"><span>Package</span></a>
</li>
<li>
<a href="function-woocommerce_comments.html" title="Summary of woocommerce_comments"><span>Function</span></a>
</li>
<li class="divider-vertical"></li>
<li>
<a href="tree.html" title="Tree view of classes, interfaces, traits and exceptions"><span>Tree</span></a>
</li>
<li class="divider-vertical"></li>
<li>
<a href="woocommerce-api-documentation.zip" title="Download documentation as ZIP archive"><span>Download</span></a>
</li>
<li class="divider-vertical"></li>
<li>
<a href="http://docs.woothemes.com/" title="Go back to WooCommerce Docs"><span>← Back to WooDocs</span></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="left">
<div id="menu">
<form id="search" class="form-search">
<input type="hidden" name="cx" value="" />
<input type="hidden" name="ie" value="UTF-8" />
<input type="text" name="q" class="search-query" placeholder="Search" />
</form>
<div id="groups">
<h3>Packages</h3>
<ul>
<li class="active"><a href="package-WooCommerce.html">WooCommerce<span></span></a>
<ul>
<li><a href="package-WooCommerce.Abstracts.html">Abstracts</a>
</li>
<li><a href="package-WooCommerce.Admin.html">Admin<span></span></a>
<ul>
<li><a href="package-WooCommerce.Admin.Coupons.html">Coupons</a>
</li>
<li><a href="package-WooCommerce.Admin.Dashboard.html">Dashboard</a>
</li>
<li><a href="package-WooCommerce.Admin.Import.html">Import</a>
</li>
<li><a href="package-WooCommerce.Admin.Importers.html">Importers</a>
</li>
<li><a href="package-WooCommerce.Admin.Install.html">Install</a>
</li>
<li><a href="package-WooCommerce.Admin.Orders.html">Orders</a>
</li>
<li><a href="package-WooCommerce.Admin.Products.html">Products</a>
</li>
<li><a href="package-WooCommerce.Admin.Reports.html">Reports</a>
</li>
<li><a href="package-WooCommerce.Admin.Settings.html">Settings</a>
</li>
<li><a href="package-WooCommerce.Admin.System.html">System</a>
</li>
<li><a href="package-WooCommerce.Admin.Taxonomies.html">Taxonomies</a>
</li>
<li><a href="package-WooCommerce.Admin.Updates.html">Updates</a>
</li>
<li><a href="package-WooCommerce.Admin.Users.html">Users</a>
</li>
<li><a href="package-WooCommerce.Admin.WritePanels.html">WritePanels</a>
</li>
</ul></li>
<li><a href="package-WooCommerce.Classes.html">Classes<span></span></a>
<ul>
<li><a href="package-WooCommerce.Classes.Emails.html">Emails</a>
</li>
<li><a href="package-WooCommerce.Classes.Integrations.html">Integrations</a>
</li>
<li><a href="package-WooCommerce.Classes.Payment.html">Payment</a>
</li>
<li><a href="package-WooCommerce.Classes.Products.html">Products</a>
</li>
<li><a href="package-WooCommerce.Classes.Shipping.html">Shipping</a>
</li>
<li><a href="package-WooCommerce.Classes.Walkers.html">Walkers</a>
</li>
</ul></li>
<li><a href="package-WooCommerce.Functions.html">Functions<span></span></a>
<ul>
<li><a href="package-WooCommerce.Functions.AJAX.html">AJAX</a>
</li>
</ul></li>
<li><a href="package-WooCommerce.Shortcodes.html">Shortcodes<span></span></a>
<ul>
<li><a href="package-WooCommerce.Shortcodes.Cart.html">Cart</a>
</li>
<li><a href="package-WooCommerce.Shortcodes.Change.html">Change<span></span></a>
<ul>
<li><a href="package-WooCommerce.Shortcodes.Change.Password.html">Password</a>
</li>
</ul></li>
<li><a href="package-WooCommerce.Shortcodes.Checkout.html">Checkout</a>
</li>
<li><a href="package-WooCommerce.Shortcodes.Edit.html">Edit<span></span></a>
<ul>
<li><a href="package-WooCommerce.Shortcodes.Edit.Address.html">Address</a>
</li>
</ul></li>
<li><a href="package-WooCommerce.Shortcodes.Lost.html">Lost<span></span></a>
<ul>
<li><a href="package-WooCommerce.Shortcodes.Lost.Password.html">Password</a>
</li>
</ul></li>
<li><a href="package-WooCommerce.Shortcodes.My.html">My<span></span></a>
<ul>
<li><a href="package-WooCommerce.Shortcodes.My.Account.html">Account</a>
</li>
</ul></li>
<li><a href="package-WooCommerce.Shortcodes.Order.html">Order<span></span></a>
<ul>
<li><a href="package-WooCommerce.Shortcodes.Order.Tracking.html">Tracking</a>
</li>
</ul></li>
<li><a href="package-WooCommerce.Shortcodes.Pay.html">Pay</a>
</li>
<li><a href="package-WooCommerce.Shortcodes.Thankyou.html">Thankyou</a>
</li>
<li><a href="package-WooCommerce.Shortcodes.View.html">View<span></span></a>
<ul>
<li><a href="package-WooCommerce.Shortcodes.View.Order.html">Order</a>
</li>
</ul></li></ul></li>
<li class="active"><a href="package-WooCommerce.Templates.html">Templates<span></span></a>
<ul>
<li><a href="package-WooCommerce.Templates.Archives.html">Archives</a>
</li>
<li><a href="package-WooCommerce.Templates.Cart.html">Cart</a>
</li>
<li><a href="package-WooCommerce.Templates.Checkout.html">Checkout</a>
</li>
<li><a href="package-WooCommerce.Templates.Forms.html">Forms</a>
</li>
<li><a href="package-WooCommerce.Templates.Loop.html">Loop</a>
</li>
<li><a href="package-WooCommerce.Templates.Orders.html">Orders</a>
</li>
<li class="active"><a href="package-WooCommerce.Templates.Product.html">Product<span></span></a>
<ul>
<li><a href="package-WooCommerce.Templates.Product.Tabs.html">Tabs</a>
</li>
</ul></li></ul></li>
<li><a href="package-WooCommerce.Widgets.html">Widgets</a>
</li>
</ul></li>
</ul>
</div>
<div id="elements">
<h3>Functions</h3>
<ul>
<li class="active"><a href="function-woocommerce_comments.html">woocommerce_comments</a></li>
<li><a href="function-woocommerce_external_add_to_cart.html">woocommerce_external_add_to_cart</a></li>
<li><a href="function-woocommerce_grouped_add_to_cart.html">woocommerce_grouped_add_to_cart</a></li>
<li><a href="function-woocommerce_output_related_products.html">woocommerce_output_related_products</a></li>
<li><a href="function-woocommerce_quantity_input.html">woocommerce_quantity_input</a></li>
<li><a href="function-woocommerce_show_product_images.html">woocommerce_show_product_images</a></li>
<li><a href="function-woocommerce_show_product_sale_flash.html">woocommerce_show_product_sale_flash</a></li>
<li><a href="function-woocommerce_show_product_thumbnails.html">woocommerce_show_product_thumbnails</a></li>
<li><a href="function-woocommerce_simple_add_to_cart.html">woocommerce_simple_add_to_cart</a></li>
<li><a href="function-woocommerce_template_single_add_to_cart.html">woocommerce_template_single_add_to_cart</a></li>
<li><a href="function-woocommerce_template_single_excerpt.html">woocommerce_template_single_excerpt</a></li>
<li><a href="function-woocommerce_template_single_meta.html">woocommerce_template_single_meta</a></li>
<li><a href="function-woocommerce_template_single_price.html">woocommerce_template_single_price</a></li>
<li><a href="function-woocommerce_template_single_sharing.html">woocommerce_template_single_sharing</a></li>
<li><a href="function-woocommerce_template_single_title.html">woocommerce_template_single_title</a></li>
<li><a href="function-woocommerce_variable_add_to_cart.html">woocommerce_variable_add_to_cart</a></li>
</ul>
</div>
</div>
</div>
<div id="splitter"></div>
<div id="right">
<div id="rightInner">
<pre id="source"><code><span id="1" class="l"><a class="l" href="source-function-woocommerce_comments.html#1"> 1 </a><span class="xlang"><?php</span>
</span><span id="2" class="l"><a class="l" href="source-function-woocommerce_comments.html#2"> 2 </a><span class="php-comment">/**
</span></span><span id="3" class="l"><a class="l" href="source-function-woocommerce_comments.html#3"> 3 </a><span class="php-comment"> * WooCommerce Template Functions
</span></span><span id="4" class="l"><a class="l" href="source-function-woocommerce_comments.html#4"> 4 </a><span class="php-comment"> *
</span></span><span id="5" class="l"><a class="l" href="source-function-woocommerce_comments.html#5"> 5 </a><span class="php-comment"> * Functions used in the template files to output content - in most cases hooked in via the template actions. All functions are pluggable.
</span></span><span id="6" class="l"><a class="l" href="source-function-woocommerce_comments.html#6"> 6 </a><span class="php-comment"> *
</span></span><span id="7" class="l"><a class="l" href="source-function-woocommerce_comments.html#7"> 7 </a><span class="php-comment"> * @author WooThemes
</span></span><span id="8" class="l"><a class="l" href="source-function-woocommerce_comments.html#8"> 8 </a><span class="php-comment"> * @category Core
</span></span><span id="9" class="l"><a class="l" href="source-function-woocommerce_comments.html#9"> 9 </a><span class="php-comment"> * @package WooCommerce/Templates
</span></span><span id="10" class="l"><a class="l" href="source-function-woocommerce_comments.html#10"> 10 </a><span class="php-comment"> * @version 1.6.4
</span></span><span id="11" class="l"><a class="l" href="source-function-woocommerce_comments.html#11"> 11 </a><span class="php-comment"> */</span>
</span><span id="12" class="l"><a class="l" href="source-function-woocommerce_comments.html#12"> 12 </a>
</span><span id="13" class="l"><a class="l" href="source-function-woocommerce_comments.html#13"> 13 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">defined</span>( <span class="php-quote">'ABSPATH'</span> ) ) <span class="php-keyword1">exit</span>; <span class="php-comment">// Exit if accessed directly</span>
</span><span id="14" class="l"><a class="l" href="source-function-woocommerce_comments.html#14"> 14 </a>
</span><span id="15" class="l"><a class="l" href="source-function-woocommerce_comments.html#15"> 15 </a><span class="php-comment">/** Template pages ********************************************************/</span>
</span><span id="16" class="l"><a class="l" href="source-function-woocommerce_comments.html#16"> 16 </a>
</span><span id="17" class="l"><a class="l" href="source-function-woocommerce_comments.html#17"> 17 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_content'</span> ) ) {
</span><span id="18" class="l"><a class="l" href="source-function-woocommerce_comments.html#18"> 18 </a>
</span><span id="19" class="l"><a class="l" href="source-function-woocommerce_comments.html#19"> 19 </a> <span class="php-comment">/**
</span></span><span id="20" class="l"><a class="l" href="source-function-woocommerce_comments.html#20"> 20 </a><span class="php-comment"> * Output WooCommerce content.
</span></span><span id="21" class="l"><a class="l" href="source-function-woocommerce_comments.html#21"> 21 </a><span class="php-comment"> *
</span></span><span id="22" class="l"><a class="l" href="source-function-woocommerce_comments.html#22"> 22 </a><span class="php-comment"> * This function is only used in the optional 'woocommerce.php' template
</span></span><span id="23" class="l"><a class="l" href="source-function-woocommerce_comments.html#23"> 23 </a><span class="php-comment"> * which people can add to their themes to add basic woocommerce support
</span></span><span id="24" class="l"><a class="l" href="source-function-woocommerce_comments.html#24"> 24 </a><span class="php-comment"> * without hooks or modifying core templates.
</span></span><span id="25" class="l"><a class="l" href="source-function-woocommerce_comments.html#25"> 25 </a><span class="php-comment"> *
</span></span><span id="26" class="l"><a class="l" href="source-function-woocommerce_comments.html#26"> 26 </a><span class="php-comment"> * @access public
</span></span><span id="27" class="l"><a class="l" href="source-function-woocommerce_comments.html#27"> 27 </a><span class="php-comment"> * @return void
</span></span><span id="28" class="l"><a class="l" href="source-function-woocommerce_comments.html#28"> 28 </a><span class="php-comment"> */</span>
</span><span id="29" class="l"><a class="l" href="source-function-woocommerce_comments.html#29"> 29 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_content" href="source-function-woocommerce_comments.html#_woocommerce_content">woocommerce_content</a>() {
</span><span id="30" class="l"><a class="l" href="source-function-woocommerce_comments.html#30"> 30 </a>
</span><span id="31" class="l"><a class="l" href="source-function-woocommerce_comments.html#31"> 31 </a> <span class="php-keyword1">if</span> ( is_singular( <span class="php-quote">'product'</span> ) ) {
</span><span id="32" class="l"><a class="l" href="source-function-woocommerce_comments.html#32"> 32 </a>
</span><span id="33" class="l"><a class="l" href="source-function-woocommerce_comments.html#33"> 33 </a> <span class="php-keyword1">while</span> ( have_posts() ) : the_post();
</span><span id="34" class="l"><a class="l" href="source-function-woocommerce_comments.html#34"> 34 </a>
</span><span id="35" class="l"><a class="l" href="source-function-woocommerce_comments.html#35"> 35 </a> woocommerce_get_template_part( <span class="php-quote">'content'</span>, <span class="php-quote">'single-product'</span> );
</span><span id="36" class="l"><a class="l" href="source-function-woocommerce_comments.html#36"> 36 </a>
</span><span id="37" class="l"><a class="l" href="source-function-woocommerce_comments.html#37"> 37 </a> <span class="php-keyword2">endwhile</span>;
</span><span id="38" class="l"><a class="l" href="source-function-woocommerce_comments.html#38"> 38 </a>
</span><span id="39" class="l"><a class="l" href="source-function-woocommerce_comments.html#39"> 39 </a> } <span class="php-keyword1">else</span> { <span class="xlang">?></span>
</span><span id="40" class="l"><a class="l" href="source-function-woocommerce_comments.html#40"> 40 </a>
</span><span id="41" class="l"><a class="l" href="source-function-woocommerce_comments.html#41"> 41 </a> <span class="xlang"><?php</span> <span class="php-keyword1">if</span> ( apply_filters( <span class="php-quote">'woocommerce_show_page_title'</span>, <span class="php-keyword1">true</span> ) ) : <span class="xlang">?></span>
</span><span id="42" class="l"><a class="l" href="source-function-woocommerce_comments.html#42"> 42 </a>
</span><span id="43" class="l"><a class="l" href="source-function-woocommerce_comments.html#43"> 43 </a> <h1 <span class="php-keyword1">class</span>=<span class="php-quote">"page-title"</span>><span class="xlang"><?php</span> woocommerce_page_title(); <span class="xlang">?></span></h1>
</span><span id="44" class="l"><a class="l" href="source-function-woocommerce_comments.html#44"> 44 </a>
</span><span id="45" class="l"><a class="l" href="source-function-woocommerce_comments.html#45"> 45 </a> <span class="xlang"><?php</span> <span class="php-keyword1">endif</span>; <span class="xlang">?></span>
</span><span id="46" class="l"><a class="l" href="source-function-woocommerce_comments.html#46"> 46 </a>
</span><span id="47" class="l"><a class="l" href="source-function-woocommerce_comments.html#47"> 47 </a> <span class="xlang"><?php</span> do_action( <span class="php-quote">'woocommerce_archive_description'</span> ); <span class="xlang">?></span>
</span><span id="48" class="l"><a class="l" href="source-function-woocommerce_comments.html#48"> 48 </a>
</span><span id="49" class="l"><a class="l" href="source-function-woocommerce_comments.html#49"> 49 </a> <span class="xlang"><?php</span> <span class="php-keyword1">if</span> ( have_posts() ) : <span class="xlang">?></span>
</span><span id="50" class="l"><a class="l" href="source-function-woocommerce_comments.html#50"> 50 </a>
</span><span id="51" class="l"><a class="l" href="source-function-woocommerce_comments.html#51"> 51 </a> <span class="xlang"><?php</span> do_action(<span class="php-quote">'woocommerce_before_shop_loop'</span>); <span class="xlang">?></span>
</span><span id="52" class="l"><a class="l" href="source-function-woocommerce_comments.html#52"> 52 </a>
</span><span id="53" class="l"><a class="l" href="source-function-woocommerce_comments.html#53"> 53 </a> <span class="xlang"><?php</span> woocommerce_product_loop_start(); <span class="xlang">?></span>
</span><span id="54" class="l"><a class="l" href="source-function-woocommerce_comments.html#54"> 54 </a>
</span><span id="55" class="l"><a class="l" href="source-function-woocommerce_comments.html#55"> 55 </a> <span class="xlang"><?php</span> woocommerce_product_subcategories(); <span class="xlang">?></span>
</span><span id="56" class="l"><a class="l" href="source-function-woocommerce_comments.html#56"> 56 </a>
</span><span id="57" class="l"><a class="l" href="source-function-woocommerce_comments.html#57"> 57 </a> <span class="xlang"><?php</span> <span class="php-keyword1">while</span> ( have_posts() ) : the_post(); <span class="xlang">?></span>
</span><span id="58" class="l"><a class="l" href="source-function-woocommerce_comments.html#58"> 58 </a>
</span><span id="59" class="l"><a class="l" href="source-function-woocommerce_comments.html#59"> 59 </a> <span class="xlang"><?php</span> woocommerce_get_template_part( <span class="php-quote">'content'</span>, <span class="php-quote">'product'</span> ); <span class="xlang">?></span>
</span><span id="60" class="l"><a class="l" href="source-function-woocommerce_comments.html#60"> 60 </a>
</span><span id="61" class="l"><a class="l" href="source-function-woocommerce_comments.html#61"> 61 </a> <span class="xlang"><?php</span> <span class="php-keyword2">endwhile</span>; <span class="php-comment">// end of the loop. ?></span>
</span><span id="62" class="l"><a class="l" href="source-function-woocommerce_comments.html#62"> 62 </a>
</span><span id="63" class="l"><a class="l" href="source-function-woocommerce_comments.html#63"> 63 </a> <span class="xlang"><?php</span> woocommerce_product_loop_end(); <span class="xlang">?></span>
</span><span id="64" class="l"><a class="l" href="source-function-woocommerce_comments.html#64"> 64 </a>
</span><span id="65" class="l"><a class="l" href="source-function-woocommerce_comments.html#65"> 65 </a> <span class="xlang"><?php</span> do_action(<span class="php-quote">'woocommerce_after_shop_loop'</span>); <span class="xlang">?></span>
</span><span id="66" class="l"><a class="l" href="source-function-woocommerce_comments.html#66"> 66 </a>
</span><span id="67" class="l"><a class="l" href="source-function-woocommerce_comments.html#67"> 67 </a> <span class="xlang"><?php</span> <span class="php-keyword1">elseif</span> ( ! woocommerce_product_subcategories( <span class="php-keyword1">array</span>( <span class="php-quote">'before'</span> => woocommerce_product_loop_start( <span class="php-keyword1">false</span> ), <span class="php-quote">'after'</span> => woocommerce_product_loop_end( <span class="php-keyword1">false</span> ) ) ) ) : <span class="xlang">?></span>
</span><span id="68" class="l"><a class="l" href="source-function-woocommerce_comments.html#68"> 68 </a>
</span><span id="69" class="l"><a class="l" href="source-function-woocommerce_comments.html#69"> 69 </a> <span class="xlang"><?php</span> woocommerce_get_template( <span class="php-quote">'loop/no-products-found.php'</span> ); <span class="xlang">?></span>
</span><span id="70" class="l"><a class="l" href="source-function-woocommerce_comments.html#70"> 70 </a>
</span><span id="71" class="l"><a class="l" href="source-function-woocommerce_comments.html#71"> 71 </a> <span class="xlang"><?php</span> <span class="php-keyword1">endif</span>;
</span><span id="72" class="l"><a class="l" href="source-function-woocommerce_comments.html#72"> 72 </a>
</span><span id="73" class="l"><a class="l" href="source-function-woocommerce_comments.html#73"> 73 </a> }
</span><span id="74" class="l"><a class="l" href="source-function-woocommerce_comments.html#74"> 74 </a> }
</span><span id="75" class="l"><a class="l" href="source-function-woocommerce_comments.html#75"> 75 </a>}
</span><span id="76" class="l"><a class="l" href="source-function-woocommerce_comments.html#76"> 76 </a>
</span><span id="77" class="l"><a class="l" href="source-function-woocommerce_comments.html#77"> 77 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_single_product_content'</span> ) ) {
</span><span id="78" class="l"><a class="l" href="source-function-woocommerce_comments.html#78"> 78 </a>
</span><span id="79" class="l"><a class="l" href="source-function-woocommerce_comments.html#79"> 79 </a> <span class="php-comment">/**
</span></span><span id="80" class="l"><a class="l" href="source-function-woocommerce_comments.html#80"> 80 </a><span class="php-comment"> * woocommerce_single_product_content function.
</span></span><span id="81" class="l"><a class="l" href="source-function-woocommerce_comments.html#81"> 81 </a><span class="php-comment"> *
</span></span><span id="82" class="l"><a class="l" href="source-function-woocommerce_comments.html#82"> 82 </a><span class="php-comment"> * @access public
</span></span><span id="83" class="l"><a class="l" href="source-function-woocommerce_comments.html#83"> 83 </a><span class="php-comment"> * @return void
</span></span><span id="84" class="l"><a class="l" href="source-function-woocommerce_comments.html#84"> 84 </a><span class="php-comment"> * @deprecated 1.6
</span></span><span id="85" class="l"><a class="l" href="source-function-woocommerce_comments.html#85"> 85 </a><span class="php-comment"> */</span>
</span><span id="86" class="l"><a class="l" href="source-function-woocommerce_comments.html#86"> 86 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_single_product_content" href="source-function-woocommerce_comments.html#_woocommerce_single_product_content">woocommerce_single_product_content</a>() {
</span><span id="87" class="l"><a class="l" href="source-function-woocommerce_comments.html#87"> 87 </a> _deprecated_function( __FUNCTION__, <span class="php-quote">'1.6'</span> );
</span><span id="88" class="l"><a class="l" href="source-function-woocommerce_comments.html#88"> 88 </a> woocommerce_content();
</span><span id="89" class="l"><a class="l" href="source-function-woocommerce_comments.html#89"> 89 </a> }
</span><span id="90" class="l"><a class="l" href="source-function-woocommerce_comments.html#90"> 90 </a>}
</span><span id="91" class="l"><a class="l" href="source-function-woocommerce_comments.html#91"> 91 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_archive_product_content'</span> ) ) {
</span><span id="92" class="l"><a class="l" href="source-function-woocommerce_comments.html#92"> 92 </a>
</span><span id="93" class="l"><a class="l" href="source-function-woocommerce_comments.html#93"> 93 </a> <span class="php-comment">/**
</span></span><span id="94" class="l"><a class="l" href="source-function-woocommerce_comments.html#94"> 94 </a><span class="php-comment"> * woocommerce_archive_product_content function.
</span></span><span id="95" class="l"><a class="l" href="source-function-woocommerce_comments.html#95"> 95 </a><span class="php-comment"> *
</span></span><span id="96" class="l"><a class="l" href="source-function-woocommerce_comments.html#96"> 96 </a><span class="php-comment"> * @access public
</span></span><span id="97" class="l"><a class="l" href="source-function-woocommerce_comments.html#97"> 97 </a><span class="php-comment"> * @return void
</span></span><span id="98" class="l"><a class="l" href="source-function-woocommerce_comments.html#98"> 98 </a><span class="php-comment"> * @deprecated 1.6
</span></span><span id="99" class="l"><a class="l" href="source-function-woocommerce_comments.html#99"> 99 </a><span class="php-comment"> */</span>
</span><span id="100" class="l"><a class="l" href="source-function-woocommerce_comments.html#100"> 100 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_archive_product_content" href="source-function-woocommerce_comments.html#_woocommerce_archive_product_content">woocommerce_archive_product_content</a>() {
</span><span id="101" class="l"><a class="l" href="source-function-woocommerce_comments.html#101"> 101 </a> _deprecated_function( __FUNCTION__, <span class="php-quote">'1.6'</span> );
</span><span id="102" class="l"><a class="l" href="source-function-woocommerce_comments.html#102"> 102 </a> woocommerce_content();
</span><span id="103" class="l"><a class="l" href="source-function-woocommerce_comments.html#103"> 103 </a> }
</span><span id="104" class="l"><a class="l" href="source-function-woocommerce_comments.html#104"> 104 </a>}
</span><span id="105" class="l"><a class="l" href="source-function-woocommerce_comments.html#105"> 105 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_product_taxonomy_content'</span> ) ) {
</span><span id="106" class="l"><a class="l" href="source-function-woocommerce_comments.html#106"> 106 </a>
</span><span id="107" class="l"><a class="l" href="source-function-woocommerce_comments.html#107"> 107 </a> <span class="php-comment">/**
</span></span><span id="108" class="l"><a class="l" href="source-function-woocommerce_comments.html#108"> 108 </a><span class="php-comment"> * woocommerce_product_taxonomy_content function.
</span></span><span id="109" class="l"><a class="l" href="source-function-woocommerce_comments.html#109"> 109 </a><span class="php-comment"> *
</span></span><span id="110" class="l"><a class="l" href="source-function-woocommerce_comments.html#110"> 110 </a><span class="php-comment"> * @access public
</span></span><span id="111" class="l"><a class="l" href="source-function-woocommerce_comments.html#111"> 111 </a><span class="php-comment"> * @return void
</span></span><span id="112" class="l"><a class="l" href="source-function-woocommerce_comments.html#112"> 112 </a><span class="php-comment"> * @deprecated 1.6
</span></span><span id="113" class="l"><a class="l" href="source-function-woocommerce_comments.html#113"> 113 </a><span class="php-comment"> */</span>
</span><span id="114" class="l"><a class="l" href="source-function-woocommerce_comments.html#114"> 114 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_product_taxonomy_content" href="source-function-woocommerce_comments.html#_woocommerce_product_taxonomy_content">woocommerce_product_taxonomy_content</a>() {
</span><span id="115" class="l"><a class="l" href="source-function-woocommerce_comments.html#115"> 115 </a> _deprecated_function( __FUNCTION__, <span class="php-quote">'1.6'</span> );
</span><span id="116" class="l"><a class="l" href="source-function-woocommerce_comments.html#116"> 116 </a> woocommerce_content();
</span><span id="117" class="l"><a class="l" href="source-function-woocommerce_comments.html#117"> 117 </a> }
</span><span id="118" class="l"><a class="l" href="source-function-woocommerce_comments.html#118"> 118 </a>}
</span><span id="119" class="l"><a class="l" href="source-function-woocommerce_comments.html#119"> 119 </a>
</span><span id="120" class="l"><a class="l" href="source-function-woocommerce_comments.html#120"> 120 </a><span class="php-comment">/** Global ****************************************************************/</span>
</span><span id="121" class="l"><a class="l" href="source-function-woocommerce_comments.html#121"> 121 </a>
</span><span id="122" class="l"><a class="l" href="source-function-woocommerce_comments.html#122"> 122 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_output_content_wrapper'</span> ) ) {
</span><span id="123" class="l"><a class="l" href="source-function-woocommerce_comments.html#123"> 123 </a>
</span><span id="124" class="l"><a class="l" href="source-function-woocommerce_comments.html#124"> 124 </a> <span class="php-comment">/**
</span></span><span id="125" class="l"><a class="l" href="source-function-woocommerce_comments.html#125"> 125 </a><span class="php-comment"> * Output the start of the page wrapper.
</span></span><span id="126" class="l"><a class="l" href="source-function-woocommerce_comments.html#126"> 126 </a><span class="php-comment"> *
</span></span><span id="127" class="l"><a class="l" href="source-function-woocommerce_comments.html#127"> 127 </a><span class="php-comment"> * @access public
</span></span><span id="128" class="l"><a class="l" href="source-function-woocommerce_comments.html#128"> 128 </a><span class="php-comment"> * @return void
</span></span><span id="129" class="l"><a class="l" href="source-function-woocommerce_comments.html#129"> 129 </a><span class="php-comment"> */</span>
</span><span id="130" class="l"><a class="l" href="source-function-woocommerce_comments.html#130"> 130 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_output_content_wrapper" href="source-function-woocommerce_comments.html#_woocommerce_output_content_wrapper">woocommerce_output_content_wrapper</a>() {
</span><span id="131" class="l"><a class="l" href="source-function-woocommerce_comments.html#131"> 131 </a> woocommerce_get_template( <span class="php-quote">'shop/wrapper-start.php'</span> );
</span><span id="132" class="l"><a class="l" href="source-function-woocommerce_comments.html#132"> 132 </a> }
</span><span id="133" class="l"><a class="l" href="source-function-woocommerce_comments.html#133"> 133 </a>}
</span><span id="134" class="l"><a class="l" href="source-function-woocommerce_comments.html#134"> 134 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_output_content_wrapper_end'</span> ) ) {
</span><span id="135" class="l"><a class="l" href="source-function-woocommerce_comments.html#135"> 135 </a>
</span><span id="136" class="l"><a class="l" href="source-function-woocommerce_comments.html#136"> 136 </a> <span class="php-comment">/**
</span></span><span id="137" class="l"><a class="l" href="source-function-woocommerce_comments.html#137"> 137 </a><span class="php-comment"> * Output the end of the page wrapper.
</span></span><span id="138" class="l"><a class="l" href="source-function-woocommerce_comments.html#138"> 138 </a><span class="php-comment"> *
</span></span><span id="139" class="l"><a class="l" href="source-function-woocommerce_comments.html#139"> 139 </a><span class="php-comment"> * @access public
</span></span><span id="140" class="l"><a class="l" href="source-function-woocommerce_comments.html#140"> 140 </a><span class="php-comment"> * @return void
</span></span><span id="141" class="l"><a class="l" href="source-function-woocommerce_comments.html#141"> 141 </a><span class="php-comment"> */</span>
</span><span id="142" class="l"><a class="l" href="source-function-woocommerce_comments.html#142"> 142 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_output_content_wrapper_end" href="source-function-woocommerce_comments.html#_woocommerce_output_content_wrapper_end">woocommerce_output_content_wrapper_end</a>() {
</span><span id="143" class="l"><a class="l" href="source-function-woocommerce_comments.html#143"> 143 </a> woocommerce_get_template( <span class="php-quote">'shop/wrapper-end.php'</span> );
</span><span id="144" class="l"><a class="l" href="source-function-woocommerce_comments.html#144"> 144 </a> }
</span><span id="145" class="l"><a class="l" href="source-function-woocommerce_comments.html#145"> 145 </a>}
</span><span id="146" class="l"><a class="l" href="source-function-woocommerce_comments.html#146"> 146 </a>
</span><span id="147" class="l"><a class="l" href="source-function-woocommerce_comments.html#147"> 147 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_show_messages'</span> ) ) {
</span><span id="148" class="l"><a class="l" href="source-function-woocommerce_comments.html#148"> 148 </a>
</span><span id="149" class="l"><a class="l" href="source-function-woocommerce_comments.html#149"> 149 </a> <span class="php-comment">/**
</span></span><span id="150" class="l"><a class="l" href="source-function-woocommerce_comments.html#150"> 150 </a><span class="php-comment"> * Show messages on the frontend.
</span></span><span id="151" class="l"><a class="l" href="source-function-woocommerce_comments.html#151"> 151 </a><span class="php-comment"> *
</span></span><span id="152" class="l"><a class="l" href="source-function-woocommerce_comments.html#152"> 152 </a><span class="php-comment"> * @access public
</span></span><span id="153" class="l"><a class="l" href="source-function-woocommerce_comments.html#153"> 153 </a><span class="php-comment"> * @return void
</span></span><span id="154" class="l"><a class="l" href="source-function-woocommerce_comments.html#154"> 154 </a><span class="php-comment"> */</span>
</span><span id="155" class="l"><a class="l" href="source-function-woocommerce_comments.html#155"> 155 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_show_messages" href="source-function-woocommerce_comments.html#_woocommerce_show_messages">woocommerce_show_messages</a>() {
</span><span id="156" class="l"><a class="l" href="source-function-woocommerce_comments.html#156"> 156 </a> <span class="php-keyword1">global</span> <span class="php-var">$woocommerce</span>;
</span><span id="157" class="l"><a class="l" href="source-function-woocommerce_comments.html#157"> 157 </a>
</span><span id="158" class="l"><a class="l" href="source-function-woocommerce_comments.html#158"> 158 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$woocommerce</span>->error_count() > <span class="php-num">0</span> )
</span><span id="159" class="l"><a class="l" href="source-function-woocommerce_comments.html#159"> 159 </a> woocommerce_get_template( <span class="php-quote">'shop/errors.php'</span>, <span class="php-keyword1">array</span>(
</span><span id="160" class="l"><a class="l" href="source-function-woocommerce_comments.html#160"> 160 </a> <span class="php-quote">'errors'</span> => <span class="php-var">$woocommerce</span>->get_errors()
</span><span id="161" class="l"><a class="l" href="source-function-woocommerce_comments.html#161"> 161 </a> ) );
</span><span id="162" class="l"><a class="l" href="source-function-woocommerce_comments.html#162"> 162 </a>
</span><span id="163" class="l"><a class="l" href="source-function-woocommerce_comments.html#163"> 163 </a>
</span><span id="164" class="l"><a class="l" href="source-function-woocommerce_comments.html#164"> 164 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$woocommerce</span>->message_count() > <span class="php-num">0</span> )
</span><span id="165" class="l"><a class="l" href="source-function-woocommerce_comments.html#165"> 165 </a> woocommerce_get_template( <span class="php-quote">'shop/messages.php'</span>, <span class="php-keyword1">array</span>(
</span><span id="166" class="l"><a class="l" href="source-function-woocommerce_comments.html#166"> 166 </a> <span class="php-quote">'messages'</span> => <span class="php-var">$woocommerce</span>->get_messages()
</span><span id="167" class="l"><a class="l" href="source-function-woocommerce_comments.html#167"> 167 </a> ) );
</span><span id="168" class="l"><a class="l" href="source-function-woocommerce_comments.html#168"> 168 </a>
</span><span id="169" class="l"><a class="l" href="source-function-woocommerce_comments.html#169"> 169 </a> <span class="php-var">$woocommerce</span>->clear_messages();
</span><span id="170" class="l"><a class="l" href="source-function-woocommerce_comments.html#170"> 170 </a> }
</span><span id="171" class="l"><a class="l" href="source-function-woocommerce_comments.html#171"> 171 </a>}
</span><span id="172" class="l"><a class="l" href="source-function-woocommerce_comments.html#172"> 172 </a>
</span><span id="173" class="l"><a class="l" href="source-function-woocommerce_comments.html#173"> 173 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_get_sidebar'</span> ) ) {
</span><span id="174" class="l"><a class="l" href="source-function-woocommerce_comments.html#174"> 174 </a>
</span><span id="175" class="l"><a class="l" href="source-function-woocommerce_comments.html#175"> 175 </a> <span class="php-comment">/**
</span></span><span id="176" class="l"><a class="l" href="source-function-woocommerce_comments.html#176"> 176 </a><span class="php-comment"> * Get the shop sidebar template.
</span></span><span id="177" class="l"><a class="l" href="source-function-woocommerce_comments.html#177"> 177 </a><span class="php-comment"> *
</span></span><span id="178" class="l"><a class="l" href="source-function-woocommerce_comments.html#178"> 178 </a><span class="php-comment"> * @access public
</span></span><span id="179" class="l"><a class="l" href="source-function-woocommerce_comments.html#179"> 179 </a><span class="php-comment"> * @return void
</span></span><span id="180" class="l"><a class="l" href="source-function-woocommerce_comments.html#180"> 180 </a><span class="php-comment"> */</span>
</span><span id="181" class="l"><a class="l" href="source-function-woocommerce_comments.html#181"> 181 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_get_sidebar" href="source-function-woocommerce_comments.html#_woocommerce_get_sidebar">woocommerce_get_sidebar</a>() {
</span><span id="182" class="l"><a class="l" href="source-function-woocommerce_comments.html#182"> 182 </a> woocommerce_get_template( <span class="php-quote">'shop/sidebar.php'</span> );
</span><span id="183" class="l"><a class="l" href="source-function-woocommerce_comments.html#183"> 183 </a> }
</span><span id="184" class="l"><a class="l" href="source-function-woocommerce_comments.html#184"> 184 </a>}
</span><span id="185" class="l"><a class="l" href="source-function-woocommerce_comments.html#185"> 185 </a>
</span><span id="186" class="l"><a class="l" href="source-function-woocommerce_comments.html#186"> 186 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_demo_store'</span> ) ) {
</span><span id="187" class="l"><a class="l" href="source-function-woocommerce_comments.html#187"> 187 </a>
</span><span id="188" class="l"><a class="l" href="source-function-woocommerce_comments.html#188"> 188 </a> <span class="php-comment">/**
</span></span><span id="189" class="l"><a class="l" href="source-function-woocommerce_comments.html#189"> 189 </a><span class="php-comment"> * Adds a demo store banner to the site if enabled
</span></span><span id="190" class="l"><a class="l" href="source-function-woocommerce_comments.html#190"> 190 </a><span class="php-comment"> *
</span></span><span id="191" class="l"><a class="l" href="source-function-woocommerce_comments.html#191"> 191 </a><span class="php-comment"> * @access public
</span></span><span id="192" class="l"><a class="l" href="source-function-woocommerce_comments.html#192"> 192 </a><span class="php-comment"> * @return void
</span></span><span id="193" class="l"><a class="l" href="source-function-woocommerce_comments.html#193"> 193 </a><span class="php-comment"> */</span>
</span><span id="194" class="l"><a class="l" href="source-function-woocommerce_comments.html#194"> 194 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_demo_store" href="source-function-woocommerce_comments.html#_woocommerce_demo_store">woocommerce_demo_store</a>() {
</span><span id="195" class="l"><a class="l" href="source-function-woocommerce_comments.html#195"> 195 </a> <span class="php-keyword1">if</span> ( get_option( <span class="php-quote">'woocommerce_demo_store'</span> ) == <span class="php-quote">'no'</span> )
</span><span id="196" class="l"><a class="l" href="source-function-woocommerce_comments.html#196"> 196 </a> <span class="php-keyword1">return</span>;
</span><span id="197" class="l"><a class="l" href="source-function-woocommerce_comments.html#197"> 197 </a>
</span><span id="198" class="l"><a class="l" href="source-function-woocommerce_comments.html#198"> 198 </a> <span class="php-var">$notice</span> = get_option( <span class="php-quote">'woocommerce_demo_store_notice'</span> );
</span><span id="199" class="l"><a class="l" href="source-function-woocommerce_comments.html#199"> 199 </a> <span class="php-keyword1">if</span> ( <span class="php-keyword1">empty</span>( <span class="php-var">$notice</span> ) )
</span><span id="200" class="l"><a class="l" href="source-function-woocommerce_comments.html#200"> 200 </a> <span class="php-var">$notice</span> = __( <span class="php-quote">'This is a demo store for testing purposes &mdash; no orders shall be fulfilled.'</span>, <span class="php-quote">'woocommerce'</span> );
</span><span id="201" class="l"><a class="l" href="source-function-woocommerce_comments.html#201"> 201 </a>
</span><span id="202" class="l"><a class="l" href="source-function-woocommerce_comments.html#202"> 202 </a> <span class="php-keyword1">echo</span> apply_filters( <span class="php-quote">'woocommerce_demo_store'</span>, <span class="php-quote">'<p class="demo_store">'</span> . <span class="php-var">$notice</span> . <span class="php-quote">'</p>'</span> );
</span><span id="203" class="l"><a class="l" href="source-function-woocommerce_comments.html#203"> 203 </a> }
</span><span id="204" class="l"><a class="l" href="source-function-woocommerce_comments.html#204"> 204 </a>}
</span><span id="205" class="l"><a class="l" href="source-function-woocommerce_comments.html#205"> 205 </a>
</span><span id="206" class="l"><a class="l" href="source-function-woocommerce_comments.html#206"> 206 </a><span class="php-comment">/** Loop ******************************************************************/</span>
</span><span id="207" class="l"><a class="l" href="source-function-woocommerce_comments.html#207"> 207 </a>
</span><span id="208" class="l"><a class="l" href="source-function-woocommerce_comments.html#208"> 208 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_page_title'</span> ) ) {
</span><span id="209" class="l"><a class="l" href="source-function-woocommerce_comments.html#209"> 209 </a>
</span><span id="210" class="l"><a class="l" href="source-function-woocommerce_comments.html#210"> 210 </a> <span class="php-comment">/**
</span></span><span id="211" class="l"><a class="l" href="source-function-woocommerce_comments.html#211"> 211 </a><span class="php-comment"> * woocommerce_page_title function.
</span></span><span id="212" class="l"><a class="l" href="source-function-woocommerce_comments.html#212"> 212 </a><span class="php-comment"> *
</span></span><span id="213" class="l"><a class="l" href="source-function-woocommerce_comments.html#213"> 213 </a><span class="php-comment"> * @access public
</span></span><span id="214" class="l"><a class="l" href="source-function-woocommerce_comments.html#214"> 214 </a><span class="php-comment"> * @return void
</span></span><span id="215" class="l"><a class="l" href="source-function-woocommerce_comments.html#215"> 215 </a><span class="php-comment"> */</span>
</span><span id="216" class="l"><a class="l" href="source-function-woocommerce_comments.html#216"> 216 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_page_title" href="source-function-woocommerce_comments.html#_woocommerce_page_title">woocommerce_page_title</a>() {
</span><span id="217" class="l"><a class="l" href="source-function-woocommerce_comments.html#217"> 217 </a>
</span><span id="218" class="l"><a class="l" href="source-function-woocommerce_comments.html#218"> 218 </a> <span class="php-keyword1">if</span> ( is_search() ) {
</span><span id="219" class="l"><a class="l" href="source-function-woocommerce_comments.html#219"> 219 </a> <span class="php-var">$page_title</span> = <span class="php-keyword2">sprintf</span>( __( <span class="php-quote">'Search Results: &ldquo;%s&rdquo;'</span>, <span class="php-quote">'woocommerce'</span> ), get_search_query() );
</span><span id="220" class="l"><a class="l" href="source-function-woocommerce_comments.html#220"> 220 </a>
</span><span id="221" class="l"><a class="l" href="source-function-woocommerce_comments.html#221"> 221 </a> <span class="php-keyword1">if</span> ( get_query_var( <span class="php-quote">'paged'</span> ) )
</span><span id="222" class="l"><a class="l" href="source-function-woocommerce_comments.html#222"> 222 </a> <span class="php-var">$page_title</span> .= <span class="php-keyword2">sprintf</span>( __( <span class="php-quote">'&nbsp;&ndash; Page %s'</span>, <span class="php-quote">'woocommerce'</span> ), get_query_var( <span class="php-quote">'paged'</span> ) );
</span><span id="223" class="l"><a class="l" href="source-function-woocommerce_comments.html#223"> 223 </a>
</span><span id="224" class="l"><a class="l" href="source-function-woocommerce_comments.html#224"> 224 </a> } <span class="php-keyword1">elseif</span> ( is_tax() ) {
</span><span id="225" class="l"><a class="l" href="source-function-woocommerce_comments.html#225"> 225 </a>
</span><span id="226" class="l"><a class="l" href="source-function-woocommerce_comments.html#226"> 226 </a> <span class="php-var">$page_title</span> = single_term_title( <span class="php-quote">""</span>, <span class="php-keyword1">false</span> );
</span><span id="227" class="l"><a class="l" href="source-function-woocommerce_comments.html#227"> 227 </a>
</span><span id="228" class="l"><a class="l" href="source-function-woocommerce_comments.html#228"> 228 </a> } <span class="php-keyword1">else</span> {
</span><span id="229" class="l"><a class="l" href="source-function-woocommerce_comments.html#229"> 229 </a>
</span><span id="230" class="l"><a class="l" href="source-function-woocommerce_comments.html#230"> 230 </a> <span class="php-var">$shop_page_id</span> = woocommerce_get_page_id( <span class="php-quote">'shop'</span> );
</span><span id="231" class="l"><a class="l" href="source-function-woocommerce_comments.html#231"> 231 </a> <span class="php-var">$page_title</span> = get_the_title( <span class="php-var">$shop_page_id</span> );
</span><span id="232" class="l"><a class="l" href="source-function-woocommerce_comments.html#232"> 232 </a>
</span><span id="233" class="l"><a class="l" href="source-function-woocommerce_comments.html#233"> 233 </a> }
</span><span id="234" class="l"><a class="l" href="source-function-woocommerce_comments.html#234"> 234 </a>
</span><span id="235" class="l"><a class="l" href="source-function-woocommerce_comments.html#235"> 235 </a> <span class="php-keyword1">echo</span> apply_filters( <span class="php-quote">'woocommerce_page_title'</span>, <span class="php-var">$page_title</span> );
</span><span id="236" class="l"><a class="l" href="source-function-woocommerce_comments.html#236"> 236 </a> }
</span><span id="237" class="l"><a class="l" href="source-function-woocommerce_comments.html#237"> 237 </a>}
</span><span id="238" class="l"><a class="l" href="source-function-woocommerce_comments.html#238"> 238 </a>
</span><span id="239" class="l"><a class="l" href="source-function-woocommerce_comments.html#239"> 239 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_product_loop_start'</span> ) ) {
</span><span id="240" class="l"><a class="l" href="source-function-woocommerce_comments.html#240"> 240 </a>
</span><span id="241" class="l"><a class="l" href="source-function-woocommerce_comments.html#241"> 241 </a> <span class="php-comment">/**
</span></span><span id="242" class="l"><a class="l" href="source-function-woocommerce_comments.html#242"> 242 </a><span class="php-comment"> * Output the start of a product loop. By default this is a UL
</span></span><span id="243" class="l"><a class="l" href="source-function-woocommerce_comments.html#243"> 243 </a><span class="php-comment"> *
</span></span><span id="244" class="l"><a class="l" href="source-function-woocommerce_comments.html#244"> 244 </a><span class="php-comment"> * @access public
</span></span><span id="245" class="l"><a class="l" href="source-function-woocommerce_comments.html#245"> 245 </a><span class="php-comment"> * @return void
</span></span><span id="246" class="l"><a class="l" href="source-function-woocommerce_comments.html#246"> 246 </a><span class="php-comment"> */</span>
</span><span id="247" class="l"><a class="l" href="source-function-woocommerce_comments.html#247"> 247 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_product_loop_start" href="source-function-woocommerce_comments.html#_woocommerce_product_loop_start">woocommerce_product_loop_start</a>( <span class="php-var">$echo</span> = <span class="php-keyword1">true</span> ) {
</span><span id="248" class="l"><a class="l" href="source-function-woocommerce_comments.html#248"> 248 </a> <span class="php-keyword2">ob_start</span>();
</span><span id="249" class="l"><a class="l" href="source-function-woocommerce_comments.html#249"> 249 </a> woocommerce_get_template( <span class="php-quote">'loop/loop-start.php'</span> );
</span><span id="250" class="l"><a class="l" href="source-function-woocommerce_comments.html#250"> 250 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$echo</span> )
</span><span id="251" class="l"><a class="l" href="source-function-woocommerce_comments.html#251"> 251 </a> <span class="php-keyword1">echo</span> <span class="php-keyword2">ob_get_clean</span>();
</span><span id="252" class="l"><a class="l" href="source-function-woocommerce_comments.html#252"> 252 </a> <span class="php-keyword1">else</span>
</span><span id="253" class="l"><a class="l" href="source-function-woocommerce_comments.html#253"> 253 </a> <span class="php-keyword1">return</span> <span class="php-keyword2">ob_get_clean</span>();
</span><span id="254" class="l"><a class="l" href="source-function-woocommerce_comments.html#254"> 254 </a> }
</span><span id="255" class="l"><a class="l" href="source-function-woocommerce_comments.html#255"> 255 </a>}
</span><span id="256" class="l"><a class="l" href="source-function-woocommerce_comments.html#256"> 256 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_product_loop_end'</span> ) ) {
</span><span id="257" class="l"><a class="l" href="source-function-woocommerce_comments.html#257"> 257 </a>
</span><span id="258" class="l"><a class="l" href="source-function-woocommerce_comments.html#258"> 258 </a> <span class="php-comment">/**
</span></span><span id="259" class="l"><a class="l" href="source-function-woocommerce_comments.html#259"> 259 </a><span class="php-comment"> * Output the end of a product loop. By default this is a UL
</span></span><span id="260" class="l"><a class="l" href="source-function-woocommerce_comments.html#260"> 260 </a><span class="php-comment"> *
</span></span><span id="261" class="l"><a class="l" href="source-function-woocommerce_comments.html#261"> 261 </a><span class="php-comment"> * @access public
</span></span><span id="262" class="l"><a class="l" href="source-function-woocommerce_comments.html#262"> 262 </a><span class="php-comment"> * @return void
</span></span><span id="263" class="l"><a class="l" href="source-function-woocommerce_comments.html#263"> 263 </a><span class="php-comment"> */</span>
</span><span id="264" class="l"><a class="l" href="source-function-woocommerce_comments.html#264"> 264 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_product_loop_end" href="source-function-woocommerce_comments.html#_woocommerce_product_loop_end">woocommerce_product_loop_end</a>( <span class="php-var">$echo</span> = <span class="php-keyword1">true</span> ) {
</span><span id="265" class="l"><a class="l" href="source-function-woocommerce_comments.html#265"> 265 </a> <span class="php-keyword2">ob_start</span>();
</span><span id="266" class="l"><a class="l" href="source-function-woocommerce_comments.html#266"> 266 </a>
</span><span id="267" class="l"><a class="l" href="source-function-woocommerce_comments.html#267"> 267 </a> woocommerce_get_template( <span class="php-quote">'loop/loop-end.php'</span> );
</span><span id="268" class="l"><a class="l" href="source-function-woocommerce_comments.html#268"> 268 </a>
</span><span id="269" class="l"><a class="l" href="source-function-woocommerce_comments.html#269"> 269 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$echo</span> )
</span><span id="270" class="l"><a class="l" href="source-function-woocommerce_comments.html#270"> 270 </a> <span class="php-keyword1">echo</span> <span class="php-keyword2">ob_get_clean</span>();
</span><span id="271" class="l"><a class="l" href="source-function-woocommerce_comments.html#271"> 271 </a> <span class="php-keyword1">else</span>
</span><span id="272" class="l"><a class="l" href="source-function-woocommerce_comments.html#272"> 272 </a> <span class="php-keyword1">return</span> <span class="php-keyword2">ob_get_clean</span>();
</span><span id="273" class="l"><a class="l" href="source-function-woocommerce_comments.html#273"> 273 </a> }
</span><span id="274" class="l"><a class="l" href="source-function-woocommerce_comments.html#274"> 274 </a>}
</span><span id="275" class="l"><a class="l" href="source-function-woocommerce_comments.html#275"> 275 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_taxonomy_archive_description'</span> ) ) {
</span><span id="276" class="l"><a class="l" href="source-function-woocommerce_comments.html#276"> 276 </a>
</span><span id="277" class="l"><a class="l" href="source-function-woocommerce_comments.html#277"> 277 </a> <span class="php-comment">/**
</span></span><span id="278" class="l"><a class="l" href="source-function-woocommerce_comments.html#278"> 278 </a><span class="php-comment"> * Show an archive description on taxonomy archives
</span></span><span id="279" class="l"><a class="l" href="source-function-woocommerce_comments.html#279"> 279 </a><span class="php-comment"> *
</span></span><span id="280" class="l"><a class="l" href="source-function-woocommerce_comments.html#280"> 280 </a><span class="php-comment"> * @access public
</span></span><span id="281" class="l"><a class="l" href="source-function-woocommerce_comments.html#281"> 281 </a><span class="php-comment"> * @subpackage Archives
</span></span><span id="282" class="l"><a class="l" href="source-function-woocommerce_comments.html#282"> 282 </a><span class="php-comment"> * @return void
</span></span><span id="283" class="l"><a class="l" href="source-function-woocommerce_comments.html#283"> 283 </a><span class="php-comment"> */</span>
</span><span id="284" class="l"><a class="l" href="source-function-woocommerce_comments.html#284"> 284 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_taxonomy_archive_description" href="source-function-woocommerce_comments.html#_woocommerce_taxonomy_archive_description">woocommerce_taxonomy_archive_description</a>() {
</span><span id="285" class="l"><a class="l" href="source-function-woocommerce_comments.html#285"> 285 </a> <span class="php-keyword1">if</span> ( is_tax( <span class="php-keyword1">array</span>( <span class="php-quote">'product_cat'</span>, <span class="php-quote">'product_tag'</span> ) ) && get_query_var( <span class="php-quote">'paged'</span> ) == <span class="php-num">0</span> ) {
</span><span id="286" class="l"><a class="l" href="source-function-woocommerce_comments.html#286"> 286 </a> <span class="php-var">$description</span> = term_description();
</span><span id="287" class="l"><a class="l" href="source-function-woocommerce_comments.html#287"> 287 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$description</span> ) {
</span><span id="288" class="l"><a class="l" href="source-function-woocommerce_comments.html#288"> 288 </a> <span class="php-keyword1">echo</span> <span class="php-quote">'<div class="term-description">'</span> . wpautop( wptexturize( <span class="php-var">$description</span> ) ) . <span class="php-quote">'</div>'</span>;
</span><span id="289" class="l"><a class="l" href="source-function-woocommerce_comments.html#289"> 289 </a> }
</span><span id="290" class="l"><a class="l" href="source-function-woocommerce_comments.html#290"> 290 </a> }
</span><span id="291" class="l"><a class="l" href="source-function-woocommerce_comments.html#291"> 291 </a> }
</span><span id="292" class="l"><a class="l" href="source-function-woocommerce_comments.html#292"> 292 </a>}
</span><span id="293" class="l"><a class="l" href="source-function-woocommerce_comments.html#293"> 293 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_product_archive_description'</span> ) ) {
</span><span id="294" class="l"><a class="l" href="source-function-woocommerce_comments.html#294"> 294 </a>
</span><span id="295" class="l"><a class="l" href="source-function-woocommerce_comments.html#295"> 295 </a> <span class="php-comment">/**
</span></span><span id="296" class="l"><a class="l" href="source-function-woocommerce_comments.html#296"> 296 </a><span class="php-comment"> * Show a shop page description on product archives
</span></span><span id="297" class="l"><a class="l" href="source-function-woocommerce_comments.html#297"> 297 </a><span class="php-comment"> *
</span></span><span id="298" class="l"><a class="l" href="source-function-woocommerce_comments.html#298"> 298 </a><span class="php-comment"> * @access public
</span></span><span id="299" class="l"><a class="l" href="source-function-woocommerce_comments.html#299"> 299 </a><span class="php-comment"> * @subpackage Archives
</span></span><span id="300" class="l"><a class="l" href="source-function-woocommerce_comments.html#300"> 300 </a><span class="php-comment"> * @return void
</span></span><span id="301" class="l"><a class="l" href="source-function-woocommerce_comments.html#301"> 301 </a><span class="php-comment"> */</span>
</span><span id="302" class="l"><a class="l" href="source-function-woocommerce_comments.html#302"> 302 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_product_archive_description" href="source-function-woocommerce_comments.html#_woocommerce_product_archive_description">woocommerce_product_archive_description</a>() {
</span><span id="303" class="l"><a class="l" href="source-function-woocommerce_comments.html#303"> 303 </a> <span class="php-keyword1">if</span> ( is_post_type_archive( <span class="php-quote">'product'</span> ) && get_query_var( <span class="php-quote">'paged'</span> ) == <span class="php-num">0</span> ) {
</span><span id="304" class="l"><a class="l" href="source-function-woocommerce_comments.html#304"> 304 </a> <span class="php-var">$shop_page</span> = get_post( woocommerce_get_page_id( <span class="php-quote">'shop'</span> ) );
</span><span id="305" class="l"><a class="l" href="source-function-woocommerce_comments.html#305"> 305 </a> <span class="php-var">$description</span> = apply_filters( <span class="php-quote">'the_content'</span>, <span class="php-var">$shop_page</span>->post_content );
</span><span id="306" class="l"><a class="l" href="source-function-woocommerce_comments.html#306"> 306 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$description</span> ) {
</span><span id="307" class="l"><a class="l" href="source-function-woocommerce_comments.html#307"> 307 </a> <span class="php-keyword1">echo</span> <span class="php-quote">'<div class="page-description">'</span> . <span class="php-var">$description</span> . <span class="php-quote">'</div>'</span>;
</span><span id="308" class="l"><a class="l" href="source-function-woocommerce_comments.html#308"> 308 </a> }
</span><span id="309" class="l"><a class="l" href="source-function-woocommerce_comments.html#309"> 309 </a> }
</span><span id="310" class="l"><a class="l" href="source-function-woocommerce_comments.html#310"> 310 </a> }
</span><span id="311" class="l"><a class="l" href="source-function-woocommerce_comments.html#311"> 311 </a>}
</span><span id="312" class="l"><a class="l" href="source-function-woocommerce_comments.html#312"> 312 </a>
</span><span id="313" class="l"><a class="l" href="source-function-woocommerce_comments.html#313"> 313 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_template_loop_add_to_cart'</span> ) ) {
</span><span id="314" class="l"><a class="l" href="source-function-woocommerce_comments.html#314"> 314 </a>
</span><span id="315" class="l"><a class="l" href="source-function-woocommerce_comments.html#315"> 315 </a> <span class="php-comment">/**
</span></span><span id="316" class="l"><a class="l" href="source-function-woocommerce_comments.html#316"> 316 </a><span class="php-comment"> * Get the add to cart template for the loop.
</span></span><span id="317" class="l"><a class="l" href="source-function-woocommerce_comments.html#317"> 317 </a><span class="php-comment"> *
</span></span><span id="318" class="l"><a class="l" href="source-function-woocommerce_comments.html#318"> 318 </a><span class="php-comment"> * @access public
</span></span><span id="319" class="l"><a class="l" href="source-function-woocommerce_comments.html#319"> 319 </a><span class="php-comment"> * @subpackage Loop
</span></span><span id="320" class="l"><a class="l" href="source-function-woocommerce_comments.html#320"> 320 </a><span class="php-comment"> * @return void
</span></span><span id="321" class="l"><a class="l" href="source-function-woocommerce_comments.html#321"> 321 </a><span class="php-comment"> */</span>
</span><span id="322" class="l"><a class="l" href="source-function-woocommerce_comments.html#322"> 322 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_template_loop_add_to_cart" href="source-function-woocommerce_comments.html#_woocommerce_template_loop_add_to_cart">woocommerce_template_loop_add_to_cart</a>() {
</span><span id="323" class="l"><a class="l" href="source-function-woocommerce_comments.html#323"> 323 </a> woocommerce_get_template( <span class="php-quote">'loop/add-to-cart.php'</span> );
</span><span id="324" class="l"><a class="l" href="source-function-woocommerce_comments.html#324"> 324 </a> }
</span><span id="325" class="l"><a class="l" href="source-function-woocommerce_comments.html#325"> 325 </a>}
</span><span id="326" class="l"><a class="l" href="source-function-woocommerce_comments.html#326"> 326 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_template_loop_product_thumbnail'</span> ) ) {
</span><span id="327" class="l"><a class="l" href="source-function-woocommerce_comments.html#327"> 327 </a>
</span><span id="328" class="l"><a class="l" href="source-function-woocommerce_comments.html#328"> 328 </a> <span class="php-comment">/**
</span></span><span id="329" class="l"><a class="l" href="source-function-woocommerce_comments.html#329"> 329 </a><span class="php-comment"> * Get the product thumbnail for the loop.
</span></span><span id="330" class="l"><a class="l" href="source-function-woocommerce_comments.html#330"> 330 </a><span class="php-comment"> *
</span></span><span id="331" class="l"><a class="l" href="source-function-woocommerce_comments.html#331"> 331 </a><span class="php-comment"> * @access public
</span></span><span id="332" class="l"><a class="l" href="source-function-woocommerce_comments.html#332"> 332 </a><span class="php-comment"> * @subpackage Loop
</span></span><span id="333" class="l"><a class="l" href="source-function-woocommerce_comments.html#333"> 333 </a><span class="php-comment"> * @return void
</span></span><span id="334" class="l"><a class="l" href="source-function-woocommerce_comments.html#334"> 334 </a><span class="php-comment"> */</span>
</span><span id="335" class="l"><a class="l" href="source-function-woocommerce_comments.html#335"> 335 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_template_loop_product_thumbnail" href="source-function-woocommerce_comments.html#_woocommerce_template_loop_product_thumbnail">woocommerce_template_loop_product_thumbnail</a>() {
</span><span id="336" class="l"><a class="l" href="source-function-woocommerce_comments.html#336"> 336 </a> <span class="php-keyword1">echo</span> woocommerce_get_product_thumbnail();
</span><span id="337" class="l"><a class="l" href="source-function-woocommerce_comments.html#337"> 337 </a> }
</span><span id="338" class="l"><a class="l" href="source-function-woocommerce_comments.html#338"> 338 </a>}
</span><span id="339" class="l"><a class="l" href="source-function-woocommerce_comments.html#339"> 339 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_template_loop_price'</span> ) ) {
</span><span id="340" class="l"><a class="l" href="source-function-woocommerce_comments.html#340"> 340 </a>
</span><span id="341" class="l"><a class="l" href="source-function-woocommerce_comments.html#341"> 341 </a> <span class="php-comment">/**
</span></span><span id="342" class="l"><a class="l" href="source-function-woocommerce_comments.html#342"> 342 </a><span class="php-comment"> * Get the product price for the loop.
</span></span><span id="343" class="l"><a class="l" href="source-function-woocommerce_comments.html#343"> 343 </a><span class="php-comment"> *
</span></span><span id="344" class="l"><a class="l" href="source-function-woocommerce_comments.html#344"> 344 </a><span class="php-comment"> * @access public
</span></span><span id="345" class="l"><a class="l" href="source-function-woocommerce_comments.html#345"> 345 </a><span class="php-comment"> * @subpackage Loop
</span></span><span id="346" class="l"><a class="l" href="source-function-woocommerce_comments.html#346"> 346 </a><span class="php-comment"> * @return void
</span></span><span id="347" class="l"><a class="l" href="source-function-woocommerce_comments.html#347"> 347 </a><span class="php-comment"> */</span>
</span><span id="348" class="l"><a class="l" href="source-function-woocommerce_comments.html#348"> 348 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_template_loop_price" href="source-function-woocommerce_comments.html#_woocommerce_template_loop_price">woocommerce_template_loop_price</a>() {
</span><span id="349" class="l"><a class="l" href="source-function-woocommerce_comments.html#349"> 349 </a> woocommerce_get_template( <span class="php-quote">'loop/price.php'</span> );
</span><span id="350" class="l"><a class="l" href="source-function-woocommerce_comments.html#350"> 350 </a> }
</span><span id="351" class="l"><a class="l" href="source-function-woocommerce_comments.html#351"> 351 </a>}
</span><span id="352" class="l"><a class="l" href="source-function-woocommerce_comments.html#352"> 352 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_template_loop_rating'</span> ) ) {
</span><span id="353" class="l"><a class="l" href="source-function-woocommerce_comments.html#353"> 353 </a>
</span><span id="354" class="l"><a class="l" href="source-function-woocommerce_comments.html#354"> 354 </a> <span class="php-comment">/**
</span></span><span id="355" class="l"><a class="l" href="source-function-woocommerce_comments.html#355"> 355 </a><span class="php-comment"> * Display the average rating in the loop
</span></span><span id="356" class="l"><a class="l" href="source-function-woocommerce_comments.html#356"> 356 </a><span class="php-comment"> *
</span></span><span id="357" class="l"><a class="l" href="source-function-woocommerce_comments.html#357"> 357 </a><span class="php-comment"> * @access public
</span></span><span id="358" class="l"><a class="l" href="source-function-woocommerce_comments.html#358"> 358 </a><span class="php-comment"> * @subpackage Loop
</span></span><span id="359" class="l"><a class="l" href="source-function-woocommerce_comments.html#359"> 359 </a><span class="php-comment"> * @return void
</span></span><span id="360" class="l"><a class="l" href="source-function-woocommerce_comments.html#360"> 360 </a><span class="php-comment"> */</span>
</span><span id="361" class="l"><a class="l" href="source-function-woocommerce_comments.html#361"> 361 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_template_loop_rating" href="source-function-woocommerce_comments.html#_woocommerce_template_loop_rating">woocommerce_template_loop_rating</a>() {
</span><span id="362" class="l"><a class="l" href="source-function-woocommerce_comments.html#362"> 362 </a> woocommerce_get_template( <span class="php-quote">'loop/rating.php'</span> );
</span><span id="363" class="l"><a class="l" href="source-function-woocommerce_comments.html#363"> 363 </a> }
</span><span id="364" class="l"><a class="l" href="source-function-woocommerce_comments.html#364"> 364 </a>}
</span><span id="365" class="l"><a class="l" href="source-function-woocommerce_comments.html#365"> 365 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_show_product_loop_sale_flash'</span> ) ) {
</span><span id="366" class="l"><a class="l" href="source-function-woocommerce_comments.html#366"> 366 </a>
</span><span id="367" class="l"><a class="l" href="source-function-woocommerce_comments.html#367"> 367 </a> <span class="php-comment">/**
</span></span><span id="368" class="l"><a class="l" href="source-function-woocommerce_comments.html#368"> 368 </a><span class="php-comment"> * Get the sale flash for the loop.
</span></span><span id="369" class="l"><a class="l" href="source-function-woocommerce_comments.html#369"> 369 </a><span class="php-comment"> *
</span></span><span id="370" class="l"><a class="l" href="source-function-woocommerce_comments.html#370"> 370 </a><span class="php-comment"> * @access public
</span></span><span id="371" class="l"><a class="l" href="source-function-woocommerce_comments.html#371"> 371 </a><span class="php-comment"> * @subpackage Loop
</span></span><span id="372" class="l"><a class="l" href="source-function-woocommerce_comments.html#372"> 372 </a><span class="php-comment"> * @return void
</span></span><span id="373" class="l"><a class="l" href="source-function-woocommerce_comments.html#373"> 373 </a><span class="php-comment"> */</span>
</span><span id="374" class="l"><a class="l" href="source-function-woocommerce_comments.html#374"> 374 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_show_product_loop_sale_flash" href="source-function-woocommerce_comments.html#_woocommerce_show_product_loop_sale_flash">woocommerce_show_product_loop_sale_flash</a>() {
</span><span id="375" class="l"><a class="l" href="source-function-woocommerce_comments.html#375"> 375 </a> woocommerce_get_template( <span class="php-quote">'loop/sale-flash.php'</span> );
</span><span id="376" class="l"><a class="l" href="source-function-woocommerce_comments.html#376"> 376 </a> }
</span><span id="377" class="l"><a class="l" href="source-function-woocommerce_comments.html#377"> 377 </a>}
</span><span id="378" class="l"><a class="l" href="source-function-woocommerce_comments.html#378"> 378 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_reset_loop'</span> ) ) {
</span><span id="379" class="l"><a class="l" href="source-function-woocommerce_comments.html#379"> 379 </a>
</span><span id="380" class="l"><a class="l" href="source-function-woocommerce_comments.html#380"> 380 </a> <span class="php-comment">/**
</span></span><span id="381" class="l"><a class="l" href="source-function-woocommerce_comments.html#381"> 381 </a><span class="php-comment"> * Reset the loop's index and columns when we're done outputting a product loop.
</span></span><span id="382" class="l"><a class="l" href="source-function-woocommerce_comments.html#382"> 382 </a><span class="php-comment"> *
</span></span><span id="383" class="l"><a class="l" href="source-function-woocommerce_comments.html#383"> 383 </a><span class="php-comment"> * @access public
</span></span><span id="384" class="l"><a class="l" href="source-function-woocommerce_comments.html#384"> 384 </a><span class="php-comment"> * @subpackage Loop
</span></span><span id="385" class="l"><a class="l" href="source-function-woocommerce_comments.html#385"> 385 </a><span class="php-comment"> * @return void
</span></span><span id="386" class="l"><a class="l" href="source-function-woocommerce_comments.html#386"> 386 </a><span class="php-comment"> */</span>
</span><span id="387" class="l"><a class="l" href="source-function-woocommerce_comments.html#387"> 387 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_reset_loop" href="source-function-woocommerce_comments.html#_woocommerce_reset_loop">woocommerce_reset_loop</a>() {
</span><span id="388" class="l"><a class="l" href="source-function-woocommerce_comments.html#388"> 388 </a> <span class="php-keyword1">global</span> <span class="php-var">$woocommerce_loop</span>;
</span><span id="389" class="l"><a class="l" href="source-function-woocommerce_comments.html#389"> 389 </a> <span class="php-comment">// Reset loop/columns globals when starting a new loop</span>
</span><span id="390" class="l"><a class="l" href="source-function-woocommerce_comments.html#390"> 390 </a> <span class="php-var">$woocommerce_loop</span>[<span class="php-quote">'loop'</span>] = <span class="php-var">$woocommerce_loop</span>[<span class="php-quote">'column'</span>] = <span class="php-quote">''</span>;
</span><span id="391" class="l"><a class="l" href="source-function-woocommerce_comments.html#391"> 391 </a> }
</span><span id="392" class="l"><a class="l" href="source-function-woocommerce_comments.html#392"> 392 </a>}
</span><span id="393" class="l"><a class="l" href="source-function-woocommerce_comments.html#393"> 393 </a>
</span><span id="394" class="l"><a class="l" href="source-function-woocommerce_comments.html#394"> 394 </a>add_filter( <span class="php-quote">'loop_end'</span>, <span class="php-quote">'woocommerce_reset_loop'</span> );
</span><span id="395" class="l"><a class="l" href="source-function-woocommerce_comments.html#395"> 395 </a>
</span><span id="396" class="l"><a class="l" href="source-function-woocommerce_comments.html#396"> 396 </a>
</span><span id="397" class="l"><a class="l" href="source-function-woocommerce_comments.html#397"> 397 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_get_product_thumbnail'</span> ) ) {
</span><span id="398" class="l"><a class="l" href="source-function-woocommerce_comments.html#398"> 398 </a>
</span><span id="399" class="l"><a class="l" href="source-function-woocommerce_comments.html#399"> 399 </a> <span class="php-comment">/**
</span></span><span id="400" class="l"><a class="l" href="source-function-woocommerce_comments.html#400"> 400 </a><span class="php-comment"> * Get the product thumbnail, or the placeholder if not set.
</span></span><span id="401" class="l"><a class="l" href="source-function-woocommerce_comments.html#401"> 401 </a><span class="php-comment"> *
</span></span><span id="402" class="l"><a class="l" href="source-function-woocommerce_comments.html#402"> 402 </a><span class="php-comment"> * @access public
</span></span><span id="403" class="l"><a class="l" href="source-function-woocommerce_comments.html#403"> 403 </a><span class="php-comment"> * @subpackage Loop
</span></span><span id="404" class="l"><a class="l" href="source-function-woocommerce_comments.html#404"> 404 </a><span class="php-comment"> * @param string $size (default: 'shop_catalog')
</span></span><span id="405" class="l"><a class="l" href="source-function-woocommerce_comments.html#405"> 405 </a><span class="php-comment"> * @param int $placeholder_width (default: 0)
</span></span><span id="406" class="l"><a class="l" href="source-function-woocommerce_comments.html#406"> 406 </a><span class="php-comment"> * @param int $placeholder_height (default: 0)
</span></span><span id="407" class="l"><a class="l" href="source-function-woocommerce_comments.html#407"> 407 </a><span class="php-comment"> * @return string
</span></span><span id="408" class="l"><a class="l" href="source-function-woocommerce_comments.html#408"> 408 </a><span class="php-comment"> */</span>
</span><span id="409" class="l"><a class="l" href="source-function-woocommerce_comments.html#409"> 409 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_get_product_thumbnail" href="source-function-woocommerce_comments.html#_woocommerce_get_product_thumbnail">woocommerce_get_product_thumbnail</a>( <span class="php-var">$size</span> = <span class="php-quote">'shop_catalog'</span>, <span class="php-var">$placeholder_width</span> = <span class="php-num">0</span>, <span class="php-var">$placeholder_height</span> = <span class="php-num">0</span> ) {
</span><span id="410" class="l"><a class="l" href="source-function-woocommerce_comments.html#410"> 410 </a> <span class="php-keyword1">global</span> <span class="php-var">$post</span>;
</span><span id="411" class="l"><a class="l" href="source-function-woocommerce_comments.html#411"> 411 </a>
</span><span id="412" class="l"><a class="l" href="source-function-woocommerce_comments.html#412"> 412 </a> <span class="php-keyword1">if</span> ( has_post_thumbnail() )
</span><span id="413" class="l"><a class="l" href="source-function-woocommerce_comments.html#413"> 413 </a> <span class="php-keyword1">return</span> get_the_post_thumbnail( <span class="php-var">$post</span>->ID, <span class="php-var">$size</span> );
</span><span id="414" class="l"><a class="l" href="source-function-woocommerce_comments.html#414"> 414 </a> <span class="php-keyword1">elseif</span> ( woocommerce_placeholder_img_src() )
</span><span id="415" class="l"><a class="l" href="source-function-woocommerce_comments.html#415"> 415 </a> <span class="php-keyword1">return</span> woocommerce_placeholder_img( <span class="php-var">$size</span> );
</span><span id="416" class="l"><a class="l" href="source-function-woocommerce_comments.html#416"> 416 </a> }
</span><span id="417" class="l"><a class="l" href="source-function-woocommerce_comments.html#417"> 417 </a>}
</span><span id="418" class="l"><a class="l" href="source-function-woocommerce_comments.html#418"> 418 </a>
</span><span id="419" class="l"><a class="l" href="source-function-woocommerce_comments.html#419"> 419 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_result_count'</span> ) ) {
</span><span id="420" class="l"><a class="l" href="source-function-woocommerce_comments.html#420"> 420 </a>
</span><span id="421" class="l"><a class="l" href="source-function-woocommerce_comments.html#421"> 421 </a> <span class="php-comment">/**
</span></span><span id="422" class="l"><a class="l" href="source-function-woocommerce_comments.html#422"> 422 </a><span class="php-comment"> * Output the result count text (Showing x - x of x results).
</span></span><span id="423" class="l"><a class="l" href="source-function-woocommerce_comments.html#423"> 423 </a><span class="php-comment"> *
</span></span><span id="424" class="l"><a class="l" href="source-function-woocommerce_comments.html#424"> 424 </a><span class="php-comment"> * @access public
</span></span><span id="425" class="l"><a class="l" href="source-function-woocommerce_comments.html#425"> 425 </a><span class="php-comment"> * @subpackage Loop
</span></span><span id="426" class="l"><a class="l" href="source-function-woocommerce_comments.html#426"> 426 </a><span class="php-comment"> * @return void
</span></span><span id="427" class="l"><a class="l" href="source-function-woocommerce_comments.html#427"> 427 </a><span class="php-comment"> */</span>
</span><span id="428" class="l"><a class="l" href="source-function-woocommerce_comments.html#428"> 428 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_result_count" href="source-function-woocommerce_comments.html#_woocommerce_result_count">woocommerce_result_count</a>() {
</span><span id="429" class="l"><a class="l" href="source-function-woocommerce_comments.html#429"> 429 </a> woocommerce_get_template( <span class="php-quote">'loop/result-count.php'</span> );
</span><span id="430" class="l"><a class="l" href="source-function-woocommerce_comments.html#430"> 430 </a> }
</span><span id="431" class="l"><a class="l" href="source-function-woocommerce_comments.html#431"> 431 </a>}
</span><span id="432" class="l"><a class="l" href="source-function-woocommerce_comments.html#432"> 432 </a>
</span><span id="433" class="l"><a class="l" href="source-function-woocommerce_comments.html#433"> 433 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_catalog_ordering'</span> ) ) {
</span><span id="434" class="l"><a class="l" href="source-function-woocommerce_comments.html#434"> 434 </a>
</span><span id="435" class="l"><a class="l" href="source-function-woocommerce_comments.html#435"> 435 </a> <span class="php-comment">/**
</span></span><span id="436" class="l"><a class="l" href="source-function-woocommerce_comments.html#436"> 436 </a><span class="php-comment"> * Output the product sorting options.
</span></span><span id="437" class="l"><a class="l" href="source-function-woocommerce_comments.html#437"> 437 </a><span class="php-comment"> *
</span></span><span id="438" class="l"><a class="l" href="source-function-woocommerce_comments.html#438"> 438 </a><span class="php-comment"> * @access public
</span></span><span id="439" class="l"><a class="l" href="source-function-woocommerce_comments.html#439"> 439 </a><span class="php-comment"> * @subpackage Loop
</span></span><span id="440" class="l"><a class="l" href="source-function-woocommerce_comments.html#440"> 440 </a><span class="php-comment"> * @return void
</span></span><span id="441" class="l"><a class="l" href="source-function-woocommerce_comments.html#441"> 441 </a><span class="php-comment"> */</span>
</span><span id="442" class="l"><a class="l" href="source-function-woocommerce_comments.html#442"> 442 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_catalog_ordering" href="source-function-woocommerce_comments.html#_woocommerce_catalog_ordering">woocommerce_catalog_ordering</a>() {
</span><span id="443" class="l"><a class="l" href="source-function-woocommerce_comments.html#443"> 443 </a> <span class="php-keyword1">global</span> <span class="php-var">$woocommerce</span>;
</span><span id="444" class="l"><a class="l" href="source-function-woocommerce_comments.html#444"> 444 </a>
</span><span id="445" class="l"><a class="l" href="source-function-woocommerce_comments.html#445"> 445 </a> <span class="php-var">$orderby</span> = <span class="php-keyword1">isset</span>( <span class="php-var">$_GET</span>[<span class="php-quote">'orderby'</span>] ) ? woocommerce_clean( <span class="php-var">$_GET</span>[<span class="php-quote">'orderby'</span>] ) : apply_filters( <span class="php-quote">'woocommerce_default_catalog_orderby'</span>, get_option( <span class="php-quote">'woocommerce_default_catalog_orderby'</span> ) );
</span><span id="446" class="l"><a class="l" href="source-function-woocommerce_comments.html#446"> 446 </a>
</span><span id="447" class="l"><a class="l" href="source-function-woocommerce_comments.html#447"> 447 </a> woocommerce_get_template( <span class="php-quote">'loop/orderby.php'</span>, <span class="php-keyword1">array</span>( <span class="php-quote">'orderby'</span> => <span class="php-var">$orderby</span> ) );
</span><span id="448" class="l"><a class="l" href="source-function-woocommerce_comments.html#448"> 448 </a> }
</span><span id="449" class="l"><a class="l" href="source-function-woocommerce_comments.html#449"> 449 </a>}
</span><span id="450" class="l"><a class="l" href="source-function-woocommerce_comments.html#450"> 450 </a>
</span><span id="451" class="l"><a class="l" href="source-function-woocommerce_comments.html#451"> 451 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_pagination'</span> ) ) {
</span><span id="452" class="l"><a class="l" href="source-function-woocommerce_comments.html#452"> 452 </a>
</span><span id="453" class="l"><a class="l" href="source-function-woocommerce_comments.html#453"> 453 </a> <span class="php-comment">/**
</span></span><span id="454" class="l"><a class="l" href="source-function-woocommerce_comments.html#454"> 454 </a><span class="php-comment"> * Output the pagination.
</span></span><span id="455" class="l"><a class="l" href="source-function-woocommerce_comments.html#455"> 455 </a><span class="php-comment"> *
</span></span><span id="456" class="l"><a class="l" href="source-function-woocommerce_comments.html#456"> 456 </a><span class="php-comment"> * @access public
</span></span><span id="457" class="l"><a class="l" href="source-function-woocommerce_comments.html#457"> 457 </a><span class="php-comment"> * @subpackage Loop
</span></span><span id="458" class="l"><a class="l" href="source-function-woocommerce_comments.html#458"> 458 </a><span class="php-comment"> * @return void
</span></span><span id="459" class="l"><a class="l" href="source-function-woocommerce_comments.html#459"> 459 </a><span class="php-comment"> */</span>
</span><span id="460" class="l"><a class="l" href="source-function-woocommerce_comments.html#460"> 460 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_pagination" href="source-function-woocommerce_comments.html#_woocommerce_pagination">woocommerce_pagination</a>() {
</span><span id="461" class="l"><a class="l" href="source-function-woocommerce_comments.html#461"> 461 </a> woocommerce_get_template( <span class="php-quote">'loop/pagination.php'</span> );
</span><span id="462" class="l"><a class="l" href="source-function-woocommerce_comments.html#462"> 462 </a> }
</span><span id="463" class="l"><a class="l" href="source-function-woocommerce_comments.html#463"> 463 </a>}
</span><span id="464" class="l"><a class="l" href="source-function-woocommerce_comments.html#464"> 464 </a>
</span><span id="465" class="l"><a class="l" href="source-function-woocommerce_comments.html#465"> 465 </a><span class="php-comment">/** Single Product ********************************************************/</span>
</span><span id="466" class="l"><a class="l" href="source-function-woocommerce_comments.html#466"> 466 </a>
</span><span id="467" class="l"><a class="l" href="source-function-woocommerce_comments.html#467"> 467 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_show_product_images'</span> ) ) {
</span><span id="468" class="l"><a class="l" href="source-function-woocommerce_comments.html#468"> 468 </a>
</span><span id="469" class="l"><a class="l" href="source-function-woocommerce_comments.html#469"> 469 </a> <span class="php-comment">/**
</span></span><span id="470" class="l"><a class="l" href="source-function-woocommerce_comments.html#470"> 470 </a><span class="php-comment"> * Output the product image before the single product summary.
</span></span><span id="471" class="l"><a class="l" href="source-function-woocommerce_comments.html#471"> 471 </a><span class="php-comment"> *
</span></span><span id="472" class="l"><a class="l" href="source-function-woocommerce_comments.html#472"> 472 </a><span class="php-comment"> * @access public
</span></span><span id="473" class="l"><a class="l" href="source-function-woocommerce_comments.html#473"> 473 </a><span class="php-comment"> * @subpackage Product
</span></span><span id="474" class="l"><a class="l" href="source-function-woocommerce_comments.html#474"> 474 </a><span class="php-comment"> * @return void
</span></span><span id="475" class="l"><a class="l" href="source-function-woocommerce_comments.html#475"> 475 </a><span class="php-comment"> */</span>
</span><span id="476" class="l"><a class="l" href="source-function-woocommerce_comments.html#476"> 476 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_show_product_images" href="source-function-woocommerce_comments.html#_woocommerce_show_product_images">woocommerce_show_product_images</a>() {
</span><span id="477" class="l"><a class="l" href="source-function-woocommerce_comments.html#477"> 477 </a> woocommerce_get_template( <span class="php-quote">'single-product/product-image.php'</span> );
</span><span id="478" class="l"><a class="l" href="source-function-woocommerce_comments.html#478"> 478 </a> }
</span><span id="479" class="l"><a class="l" href="source-function-woocommerce_comments.html#479"> 479 </a>}
</span><span id="480" class="l"><a class="l" href="source-function-woocommerce_comments.html#480"> 480 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_show_product_thumbnails'</span> ) ) {
</span><span id="481" class="l"><a class="l" href="source-function-woocommerce_comments.html#481"> 481 </a>
</span><span id="482" class="l"><a class="l" href="source-function-woocommerce_comments.html#482"> 482 </a> <span class="php-comment">/**
</span></span><span id="483" class="l"><a class="l" href="source-function-woocommerce_comments.html#483"> 483 </a><span class="php-comment"> * Output the product thumbnails.
</span></span><span id="484" class="l"><a class="l" href="source-function-woocommerce_comments.html#484"> 484 </a><span class="php-comment"> *
</span></span><span id="485" class="l"><a class="l" href="source-function-woocommerce_comments.html#485"> 485 </a><span class="php-comment"> * @access public
</span></span><span id="486" class="l"><a class="l" href="source-function-woocommerce_comments.html#486"> 486 </a><span class="php-comment"> * @subpackage Product
</span></span><span id="487" class="l"><a class="l" href="source-function-woocommerce_comments.html#487"> 487 </a><span class="php-comment"> * @return void
</span></span><span id="488" class="l"><a class="l" href="source-function-woocommerce_comments.html#488"> 488 </a><span class="php-comment"> */</span>
</span><span id="489" class="l"><a class="l" href="source-function-woocommerce_comments.html#489"> 489 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_show_product_thumbnails" href="source-function-woocommerce_comments.html#_woocommerce_show_product_thumbnails">woocommerce_show_product_thumbnails</a>() {
</span><span id="490" class="l"><a class="l" href="source-function-woocommerce_comments.html#490"> 490 </a> woocommerce_get_template( <span class="php-quote">'single-product/product-thumbnails.php'</span> );
</span><span id="491" class="l"><a class="l" href="source-function-woocommerce_comments.html#491"> 491 </a> }
</span><span id="492" class="l"><a class="l" href="source-function-woocommerce_comments.html#492"> 492 </a>}
</span><span id="493" class="l"><a class="l" href="source-function-woocommerce_comments.html#493"> 493 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_output_product_data_tabs'</span> ) ) {
</span><span id="494" class="l"><a class="l" href="source-function-woocommerce_comments.html#494"> 494 </a>
</span><span id="495" class="l"><a class="l" href="source-function-woocommerce_comments.html#495"> 495 </a> <span class="php-comment">/**
</span></span><span id="496" class="l"><a class="l" href="source-function-woocommerce_comments.html#496"> 496 </a><span class="php-comment"> * Output the product tabs.
</span></span><span id="497" class="l"><a class="l" href="source-function-woocommerce_comments.html#497"> 497 </a><span class="php-comment"> *
</span></span><span id="498" class="l"><a class="l" href="source-function-woocommerce_comments.html#498"> 498 </a><span class="php-comment"> * @access public
</span></span><span id="499" class="l"><a class="l" href="source-function-woocommerce_comments.html#499"> 499 </a><span class="php-comment"> * @subpackage Product/Tabs
</span></span><span id="500" class="l"><a class="l" href="source-function-woocommerce_comments.html#500"> 500 </a><span class="php-comment"> * @return void
</span></span><span id="501" class="l"><a class="l" href="source-function-woocommerce_comments.html#501"> 501 </a><span class="php-comment"> */</span>
</span><span id="502" class="l"><a class="l" href="source-function-woocommerce_comments.html#502"> 502 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_output_product_data_tabs" href="source-function-woocommerce_comments.html#_woocommerce_output_product_data_tabs">woocommerce_output_product_data_tabs</a>() {
</span><span id="503" class="l"><a class="l" href="source-function-woocommerce_comments.html#503"> 503 </a> woocommerce_get_template( <span class="php-quote">'single-product/tabs/tabs.php'</span> );
</span><span id="504" class="l"><a class="l" href="source-function-woocommerce_comments.html#504"> 504 </a> }
</span><span id="505" class="l"><a class="l" href="source-function-woocommerce_comments.html#505"> 505 </a>}
</span><span id="506" class="l"><a class="l" href="source-function-woocommerce_comments.html#506"> 506 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_template_single_title'</span> ) ) {
</span><span id="507" class="l"><a class="l" href="source-function-woocommerce_comments.html#507"> 507 </a>
</span><span id="508" class="l"><a class="l" href="source-function-woocommerce_comments.html#508"> 508 </a> <span class="php-comment">/**
</span></span><span id="509" class="l"><a class="l" href="source-function-woocommerce_comments.html#509"> 509 </a><span class="php-comment"> * Output the product title.
</span></span><span id="510" class="l"><a class="l" href="source-function-woocommerce_comments.html#510"> 510 </a><span class="php-comment"> *
</span></span><span id="511" class="l"><a class="l" href="source-function-woocommerce_comments.html#511"> 511 </a><span class="php-comment"> * @access public
</span></span><span id="512" class="l"><a class="l" href="source-function-woocommerce_comments.html#512"> 512 </a><span class="php-comment"> * @subpackage Product
</span></span><span id="513" class="l"><a class="l" href="source-function-woocommerce_comments.html#513"> 513 </a><span class="php-comment"> * @return void
</span></span><span id="514" class="l"><a class="l" href="source-function-woocommerce_comments.html#514"> 514 </a><span class="php-comment"> */</span>
</span><span id="515" class="l"><a class="l" href="source-function-woocommerce_comments.html#515"> 515 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_template_single_title" href="source-function-woocommerce_comments.html#_woocommerce_template_single_title">woocommerce_template_single_title</a>() {
</span><span id="516" class="l"><a class="l" href="source-function-woocommerce_comments.html#516"> 516 </a> woocommerce_get_template( <span class="php-quote">'single-product/title.php'</span> );
</span><span id="517" class="l"><a class="l" href="source-function-woocommerce_comments.html#517"> 517 </a> }
</span><span id="518" class="l"><a class="l" href="source-function-woocommerce_comments.html#518"> 518 </a>}
</span><span id="519" class="l"><a class="l" href="source-function-woocommerce_comments.html#519"> 519 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_template_single_price'</span> ) ) {
</span><span id="520" class="l"><a class="l" href="source-function-woocommerce_comments.html#520"> 520 </a>
</span><span id="521" class="l"><a class="l" href="source-function-woocommerce_comments.html#521"> 521 </a> <span class="php-comment">/**
</span></span><span id="522" class="l"><a class="l" href="source-function-woocommerce_comments.html#522"> 522 </a><span class="php-comment"> * Output the product price.
</span></span><span id="523" class="l"><a class="l" href="source-function-woocommerce_comments.html#523"> 523 </a><span class="php-comment"> *
</span></span><span id="524" class="l"><a class="l" href="source-function-woocommerce_comments.html#524"> 524 </a><span class="php-comment"> * @access public
</span></span><span id="525" class="l"><a class="l" href="source-function-woocommerce_comments.html#525"> 525 </a><span class="php-comment"> * @subpackage Product
</span></span><span id="526" class="l"><a class="l" href="source-function-woocommerce_comments.html#526"> 526 </a><span class="php-comment"> * @return void
</span></span><span id="527" class="l"><a class="l" href="source-function-woocommerce_comments.html#527"> 527 </a><span class="php-comment"> */</span>
</span><span id="528" class="l"><a class="l" href="source-function-woocommerce_comments.html#528"> 528 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_template_single_price" href="source-function-woocommerce_comments.html#_woocommerce_template_single_price">woocommerce_template_single_price</a>() {
</span><span id="529" class="l"><a class="l" href="source-function-woocommerce_comments.html#529"> 529 </a> woocommerce_get_template( <span class="php-quote">'single-product/price.php'</span> );
</span><span id="530" class="l"><a class="l" href="source-function-woocommerce_comments.html#530"> 530 </a> }
</span><span id="531" class="l"><a class="l" href="source-function-woocommerce_comments.html#531"> 531 </a>}
</span><span id="532" class="l"><a class="l" href="source-function-woocommerce_comments.html#532"> 532 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_template_single_excerpt'</span> ) ) {
</span><span id="533" class="l"><a class="l" href="source-function-woocommerce_comments.html#533"> 533 </a>
</span><span id="534" class="l"><a class="l" href="source-function-woocommerce_comments.html#534"> 534 </a> <span class="php-comment">/**
</span></span><span id="535" class="l"><a class="l" href="source-function-woocommerce_comments.html#535"> 535 </a><span class="php-comment"> * Output the product short description (excerpt).
</span></span><span id="536" class="l"><a class="l" href="source-function-woocommerce_comments.html#536"> 536 </a><span class="php-comment"> *
</span></span><span id="537" class="l"><a class="l" href="source-function-woocommerce_comments.html#537"> 537 </a><span class="php-comment"> * @access public
</span></span><span id="538" class="l"><a class="l" href="source-function-woocommerce_comments.html#538"> 538 </a><span class="php-comment"> * @subpackage Product
</span></span><span id="539" class="l"><a class="l" href="source-function-woocommerce_comments.html#539"> 539 </a><span class="php-comment"> * @return void
</span></span><span id="540" class="l"><a class="l" href="source-function-woocommerce_comments.html#540"> 540 </a><span class="php-comment"> */</span>
</span><span id="541" class="l"><a class="l" href="source-function-woocommerce_comments.html#541"> 541 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_template_single_excerpt" href="source-function-woocommerce_comments.html#_woocommerce_template_single_excerpt">woocommerce_template_single_excerpt</a>() {
</span><span id="542" class="l"><a class="l" href="source-function-woocommerce_comments.html#542"> 542 </a> woocommerce_get_template( <span class="php-quote">'single-product/short-description.php'</span> );
</span><span id="543" class="l"><a class="l" href="source-function-woocommerce_comments.html#543"> 543 </a> }
</span><span id="544" class="l"><a class="l" href="source-function-woocommerce_comments.html#544"> 544 </a>}
</span><span id="545" class="l"><a class="l" href="source-function-woocommerce_comments.html#545"> 545 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_template_single_meta'</span> ) ) {
</span><span id="546" class="l"><a class="l" href="source-function-woocommerce_comments.html#546"> 546 </a>
</span><span id="547" class="l"><a class="l" href="source-function-woocommerce_comments.html#547"> 547 </a> <span class="php-comment">/**
</span></span><span id="548" class="l"><a class="l" href="source-function-woocommerce_comments.html#548"> 548 </a><span class="php-comment"> * Output the product meta.
</span></span><span id="549" class="l"><a class="l" href="source-function-woocommerce_comments.html#549"> 549 </a><span class="php-comment"> *
</span></span><span id="550" class="l"><a class="l" href="source-function-woocommerce_comments.html#550"> 550 </a><span class="php-comment"> * @access public
</span></span><span id="551" class="l"><a class="l" href="source-function-woocommerce_comments.html#551"> 551 </a><span class="php-comment"> * @subpackage Product
</span></span><span id="552" class="l"><a class="l" href="source-function-woocommerce_comments.html#552"> 552 </a><span class="php-comment"> * @return void
</span></span><span id="553" class="l"><a class="l" href="source-function-woocommerce_comments.html#553"> 553 </a><span class="php-comment"> */</span>
</span><span id="554" class="l"><a class="l" href="source-function-woocommerce_comments.html#554"> 554 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_template_single_meta" href="source-function-woocommerce_comments.html#_woocommerce_template_single_meta">woocommerce_template_single_meta</a>() {
</span><span id="555" class="l"><a class="l" href="source-function-woocommerce_comments.html#555"> 555 </a> woocommerce_get_template( <span class="php-quote">'single-product/meta.php'</span> );
</span><span id="556" class="l"><a class="l" href="source-function-woocommerce_comments.html#556"> 556 </a> }
</span><span id="557" class="l"><a class="l" href="source-function-woocommerce_comments.html#557"> 557 </a>}
</span><span id="558" class="l"><a class="l" href="source-function-woocommerce_comments.html#558"> 558 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_template_single_sharing'</span> ) ) {
</span><span id="559" class="l"><a class="l" href="source-function-woocommerce_comments.html#559"> 559 </a>
</span><span id="560" class="l"><a class="l" href="source-function-woocommerce_comments.html#560"> 560 </a> <span class="php-comment">/**
</span></span><span id="561" class="l"><a class="l" href="source-function-woocommerce_comments.html#561"> 561 </a><span class="php-comment"> * Output the product sharing.
</span></span><span id="562" class="l"><a class="l" href="source-function-woocommerce_comments.html#562"> 562 </a><span class="php-comment"> *
</span></span><span id="563" class="l"><a class="l" href="source-function-woocommerce_comments.html#563"> 563 </a><span class="php-comment"> * @access public
</span></span><span id="564" class="l"><a class="l" href="source-function-woocommerce_comments.html#564"> 564 </a><span class="php-comment"> * @subpackage Product
</span></span><span id="565" class="l"><a class="l" href="source-function-woocommerce_comments.html#565"> 565 </a><span class="php-comment"> * @return void
</span></span><span id="566" class="l"><a class="l" href="source-function-woocommerce_comments.html#566"> 566 </a><span class="php-comment"> */</span>
</span><span id="567" class="l"><a class="l" href="source-function-woocommerce_comments.html#567"> 567 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_template_single_sharing" href="source-function-woocommerce_comments.html#_woocommerce_template_single_sharing">woocommerce_template_single_sharing</a>() {
</span><span id="568" class="l"><a class="l" href="source-function-woocommerce_comments.html#568"> 568 </a> woocommerce_get_template( <span class="php-quote">'single-product/share.php'</span> );
</span><span id="569" class="l"><a class="l" href="source-function-woocommerce_comments.html#569"> 569 </a> }
</span><span id="570" class="l"><a class="l" href="source-function-woocommerce_comments.html#570"> 570 </a>}
</span><span id="571" class="l"><a class="l" href="source-function-woocommerce_comments.html#571"> 571 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_show_product_sale_flash'</span> ) ) {
</span><span id="572" class="l"><a class="l" href="source-function-woocommerce_comments.html#572"> 572 </a>
</span><span id="573" class="l"><a class="l" href="source-function-woocommerce_comments.html#573"> 573 </a> <span class="php-comment">/**
</span></span><span id="574" class="l"><a class="l" href="source-function-woocommerce_comments.html#574"> 574 </a><span class="php-comment"> * Output the product sale flash.
</span></span><span id="575" class="l"><a class="l" href="source-function-woocommerce_comments.html#575"> 575 </a><span class="php-comment"> *
</span></span><span id="576" class="l"><a class="l" href="source-function-woocommerce_comments.html#576"> 576 </a><span class="php-comment"> * @access public
</span></span><span id="577" class="l"><a class="l" href="source-function-woocommerce_comments.html#577"> 577 </a><span class="php-comment"> * @subpackage Product
</span></span><span id="578" class="l"><a class="l" href="source-function-woocommerce_comments.html#578"> 578 </a><span class="php-comment"> * @return void
</span></span><span id="579" class="l"><a class="l" href="source-function-woocommerce_comments.html#579"> 579 </a><span class="php-comment"> */</span>
</span><span id="580" class="l"><a class="l" href="source-function-woocommerce_comments.html#580"> 580 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_show_product_sale_flash" href="source-function-woocommerce_comments.html#_woocommerce_show_product_sale_flash">woocommerce_show_product_sale_flash</a>() {
</span><span id="581" class="l"><a class="l" href="source-function-woocommerce_comments.html#581"> 581 </a> woocommerce_get_template( <span class="php-quote">'single-product/sale-flash.php'</span> );
</span><span id="582" class="l"><a class="l" href="source-function-woocommerce_comments.html#582"> 582 </a> }
</span><span id="583" class="l"><a class="l" href="source-function-woocommerce_comments.html#583"> 583 </a>}
</span><span id="584" class="l"><a class="l" href="source-function-woocommerce_comments.html#584"> 584 </a>
</span><span id="585" class="l"><a class="l" href="source-function-woocommerce_comments.html#585"> 585 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_template_single_add_to_cart'</span> ) ) {
</span><span id="586" class="l"><a class="l" href="source-function-woocommerce_comments.html#586"> 586 </a>
</span><span id="587" class="l"><a class="l" href="source-function-woocommerce_comments.html#587"> 587 </a> <span class="php-comment">/**
</span></span><span id="588" class="l"><a class="l" href="source-function-woocommerce_comments.html#588"> 588 </a><span class="php-comment"> * Trigger the single product add to cart action.
</span></span><span id="589" class="l"><a class="l" href="source-function-woocommerce_comments.html#589"> 589 </a><span class="php-comment"> *
</span></span><span id="590" class="l"><a class="l" href="source-function-woocommerce_comments.html#590"> 590 </a><span class="php-comment"> * @access public
</span></span><span id="591" class="l"><a class="l" href="source-function-woocommerce_comments.html#591"> 591 </a><span class="php-comment"> * @subpackage Product
</span></span><span id="592" class="l"><a class="l" href="source-function-woocommerce_comments.html#592"> 592 </a><span class="php-comment"> * @return void
</span></span><span id="593" class="l"><a class="l" href="source-function-woocommerce_comments.html#593"> 593 </a><span class="php-comment"> */</span>
</span><span id="594" class="l"><a class="l" href="source-function-woocommerce_comments.html#594"> 594 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_template_single_add_to_cart" href="source-function-woocommerce_comments.html#_woocommerce_template_single_add_to_cart">woocommerce_template_single_add_to_cart</a>() {
</span><span id="595" class="l"><a class="l" href="source-function-woocommerce_comments.html#595"> 595 </a> <span class="php-keyword1">global</span> <span class="php-var">$product</span>;
</span><span id="596" class="l"><a class="l" href="source-function-woocommerce_comments.html#596"> 596 </a> do_action( <span class="php-quote">'woocommerce_'</span> . <span class="php-var">$product</span>->product_type . <span class="php-quote">'_add_to_cart'</span> );
</span><span id="597" class="l"><a class="l" href="source-function-woocommerce_comments.html#597"> 597 </a> }
</span><span id="598" class="l"><a class="l" href="source-function-woocommerce_comments.html#598"> 598 </a>}
</span><span id="599" class="l"><a class="l" href="source-function-woocommerce_comments.html#599"> 599 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_simple_add_to_cart'</span> ) ) {
</span><span id="600" class="l"><a class="l" href="source-function-woocommerce_comments.html#600"> 600 </a>
</span><span id="601" class="l"><a class="l" href="source-function-woocommerce_comments.html#601"> 601 </a> <span class="php-comment">/**
</span></span><span id="602" class="l"><a class="l" href="source-function-woocommerce_comments.html#602"> 602 </a><span class="php-comment"> * Output the simple product add to cart area.
</span></span><span id="603" class="l"><a class="l" href="source-function-woocommerce_comments.html#603"> 603 </a><span class="php-comment"> *
</span></span><span id="604" class="l"><a class="l" href="source-function-woocommerce_comments.html#604"> 604 </a><span class="php-comment"> * @access public
</span></span><span id="605" class="l"><a class="l" href="source-function-woocommerce_comments.html#605"> 605 </a><span class="php-comment"> * @subpackage Product
</span></span><span id="606" class="l"><a class="l" href="source-function-woocommerce_comments.html#606"> 606 </a><span class="php-comment"> * @return void
</span></span><span id="607" class="l"><a class="l" href="source-function-woocommerce_comments.html#607"> 607 </a><span class="php-comment"> */</span>
</span><span id="608" class="l"><a class="l" href="source-function-woocommerce_comments.html#608"> 608 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_simple_add_to_cart" href="source-function-woocommerce_comments.html#_woocommerce_simple_add_to_cart">woocommerce_simple_add_to_cart</a>() {
</span><span id="609" class="l"><a class="l" href="source-function-woocommerce_comments.html#609"> 609 </a> woocommerce_get_template( <span class="php-quote">'single-product/add-to-cart/simple.php'</span> );
</span><span id="610" class="l"><a class="l" href="source-function-woocommerce_comments.html#610"> 610 </a> }
</span><span id="611" class="l"><a class="l" href="source-function-woocommerce_comments.html#611"> 611 </a>}
</span><span id="612" class="l"><a class="l" href="source-function-woocommerce_comments.html#612"> 612 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_grouped_add_to_cart'</span> ) ) {
</span><span id="613" class="l"><a class="l" href="source-function-woocommerce_comments.html#613"> 613 </a>
</span><span id="614" class="l"><a class="l" href="source-function-woocommerce_comments.html#614"> 614 </a> <span class="php-comment">/**
</span></span><span id="615" class="l"><a class="l" href="source-function-woocommerce_comments.html#615"> 615 </a><span class="php-comment"> * Output the grouped product add to cart area.
</span></span><span id="616" class="l"><a class="l" href="source-function-woocommerce_comments.html#616"> 616 </a><span class="php-comment"> *
</span></span><span id="617" class="l"><a class="l" href="source-function-woocommerce_comments.html#617"> 617 </a><span class="php-comment"> * @access public
</span></span><span id="618" class="l"><a class="l" href="source-function-woocommerce_comments.html#618"> 618 </a><span class="php-comment"> * @subpackage Product
</span></span><span id="619" class="l"><a class="l" href="source-function-woocommerce_comments.html#619"> 619 </a><span class="php-comment"> * @return void
</span></span><span id="620" class="l"><a class="l" href="source-function-woocommerce_comments.html#620"> 620 </a><span class="php-comment"> */</span>
</span><span id="621" class="l"><a class="l" href="source-function-woocommerce_comments.html#621"> 621 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_grouped_add_to_cart" href="source-function-woocommerce_comments.html#_woocommerce_grouped_add_to_cart">woocommerce_grouped_add_to_cart</a>() {
</span><span id="622" class="l"><a class="l" href="source-function-woocommerce_comments.html#622"> 622 </a> woocommerce_get_template( <span class="php-quote">'single-product/add-to-cart/grouped.php'</span> );
</span><span id="623" class="l"><a class="l" href="source-function-woocommerce_comments.html#623"> 623 </a> }
</span><span id="624" class="l"><a class="l" href="source-function-woocommerce_comments.html#624"> 624 </a>}
</span><span id="625" class="l"><a class="l" href="source-function-woocommerce_comments.html#625"> 625 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_variable_add_to_cart'</span> ) ) {
</span><span id="626" class="l"><a class="l" href="source-function-woocommerce_comments.html#626"> 626 </a>
</span><span id="627" class="l"><a class="l" href="source-function-woocommerce_comments.html#627"> 627 </a> <span class="php-comment">/**
</span></span><span id="628" class="l"><a class="l" href="source-function-woocommerce_comments.html#628"> 628 </a><span class="php-comment"> * Output the variable product add to cart area.
</span></span><span id="629" class="l"><a class="l" href="source-function-woocommerce_comments.html#629"> 629 </a><span class="php-comment"> *
</span></span><span id="630" class="l"><a class="l" href="source-function-woocommerce_comments.html#630"> 630 </a><span class="php-comment"> * @access public
</span></span><span id="631" class="l"><a class="l" href="source-function-woocommerce_comments.html#631"> 631 </a><span class="php-comment"> * @subpackage Product
</span></span><span id="632" class="l"><a class="l" href="source-function-woocommerce_comments.html#632"> 632 </a><span class="php-comment"> * @return void
</span></span><span id="633" class="l"><a class="l" href="source-function-woocommerce_comments.html#633"> 633 </a><span class="php-comment"> */</span>
</span><span id="634" class="l"><a class="l" href="source-function-woocommerce_comments.html#634"> 634 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_variable_add_to_cart" href="source-function-woocommerce_comments.html#_woocommerce_variable_add_to_cart">woocommerce_variable_add_to_cart</a>() {
</span><span id="635" class="l"><a class="l" href="source-function-woocommerce_comments.html#635"> 635 </a> <span class="php-keyword1">global</span> <span class="php-var">$product</span>;
</span><span id="636" class="l"><a class="l" href="source-function-woocommerce_comments.html#636"> 636 </a>
</span><span id="637" class="l"><a class="l" href="source-function-woocommerce_comments.html#637"> 637 </a> <span class="php-comment">// Enqueue variation scripts</span>
</span><span id="638" class="l"><a class="l" href="source-function-woocommerce_comments.html#638"> 638 </a> wp_enqueue_script( <span class="php-quote">'wc-add-to-cart-variation'</span> );
</span><span id="639" class="l"><a class="l" href="source-function-woocommerce_comments.html#639"> 639 </a>
</span><span id="640" class="l"><a class="l" href="source-function-woocommerce_comments.html#640"> 640 </a> <span class="php-comment">// Load the template</span>
</span><span id="641" class="l"><a class="l" href="source-function-woocommerce_comments.html#641"> 641 </a> woocommerce_get_template( <span class="php-quote">'single-product/add-to-cart/variable.php'</span>, <span class="php-keyword1">array</span>(
</span><span id="642" class="l"><a class="l" href="source-function-woocommerce_comments.html#642"> 642 </a> <span class="php-quote">'available_variations'</span> => <span class="php-var">$product</span>->get_available_variations(),
</span><span id="643" class="l"><a class="l" href="source-function-woocommerce_comments.html#643"> 643 </a> <span class="php-quote">'attributes'</span> => <span class="php-var">$product</span>->get_variation_attributes(),
</span><span id="644" class="l"><a class="l" href="source-function-woocommerce_comments.html#644"> 644 </a> <span class="php-quote">'selected_attributes'</span> => <span class="php-var">$product</span>->get_variation_default_attributes()
</span><span id="645" class="l"><a class="l" href="source-function-woocommerce_comments.html#645"> 645 </a> ) );
</span><span id="646" class="l"><a class="l" href="source-function-woocommerce_comments.html#646"> 646 </a> }
</span><span id="647" class="l"><a class="l" href="source-function-woocommerce_comments.html#647"> 647 </a>}
</span><span id="648" class="l"><a class="l" href="source-function-woocommerce_comments.html#648"> 648 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_external_add_to_cart'</span> ) ) {
</span><span id="649" class="l"><a class="l" href="source-function-woocommerce_comments.html#649"> 649 </a>
</span><span id="650" class="l"><a class="l" href="source-function-woocommerce_comments.html#650"> 650 </a> <span class="php-comment">/**
</span></span><span id="651" class="l"><a class="l" href="source-function-woocommerce_comments.html#651"> 651 </a><span class="php-comment"> * Output the external product add to cart area.
</span></span><span id="652" class="l"><a class="l" href="source-function-woocommerce_comments.html#652"> 652 </a><span class="php-comment"> *
</span></span><span id="653" class="l"><a class="l" href="source-function-woocommerce_comments.html#653"> 653 </a><span class="php-comment"> * @access public
</span></span><span id="654" class="l"><a class="l" href="source-function-woocommerce_comments.html#654"> 654 </a><span class="php-comment"> * @subpackage Product
</span></span><span id="655" class="l"><a class="l" href="source-function-woocommerce_comments.html#655"> 655 </a><span class="php-comment"> * @return void
</span></span><span id="656" class="l"><a class="l" href="source-function-woocommerce_comments.html#656"> 656 </a><span class="php-comment"> */</span>
</span><span id="657" class="l"><a class="l" href="source-function-woocommerce_comments.html#657"> 657 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_external_add_to_cart" href="source-function-woocommerce_comments.html#_woocommerce_external_add_to_cart">woocommerce_external_add_to_cart</a>() {
</span><span id="658" class="l"><a class="l" href="source-function-woocommerce_comments.html#658"> 658 </a> <span class="php-keyword1">global</span> <span class="php-var">$product</span>;
</span><span id="659" class="l"><a class="l" href="source-function-woocommerce_comments.html#659"> 659 </a>
</span><span id="660" class="l"><a class="l" href="source-function-woocommerce_comments.html#660"> 660 </a> <span class="php-keyword1">if</span> ( ! <span class="php-var">$product</span>->get_product_url() )
</span><span id="661" class="l"><a class="l" href="source-function-woocommerce_comments.html#661"> 661 </a> <span class="php-keyword1">return</span>;
</span><span id="662" class="l"><a class="l" href="source-function-woocommerce_comments.html#662"> 662 </a>
</span><span id="663" class="l"><a class="l" href="source-function-woocommerce_comments.html#663"> 663 </a> woocommerce_get_template( <span class="php-quote">'single-product/add-to-cart/external.php'</span>, <span class="php-keyword1">array</span>(
</span><span id="664" class="l"><a class="l" href="source-function-woocommerce_comments.html#664"> 664 </a> <span class="php-quote">'product_url'</span> => <span class="php-var">$product</span>->get_product_url(),
</span><span id="665" class="l"><a class="l" href="source-function-woocommerce_comments.html#665"> 665 </a> <span class="php-quote">'button_text'</span> => <span class="php-var">$product</span>->get_button_text()
</span><span id="666" class="l"><a class="l" href="source-function-woocommerce_comments.html#666"> 666 </a> ) );
</span><span id="667" class="l"><a class="l" href="source-function-woocommerce_comments.html#667"> 667 </a> }
</span><span id="668" class="l"><a class="l" href="source-function-woocommerce_comments.html#668"> 668 </a>}
</span><span id="669" class="l"><a class="l" href="source-function-woocommerce_comments.html#669"> 669 </a>
</span><span id="670" class="l"><a class="l" href="source-function-woocommerce_comments.html#670"> 670 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_quantity_input'</span> ) ) {
</span><span id="671" class="l"><a class="l" href="source-function-woocommerce_comments.html#671"> 671 </a>
</span><span id="672" class="l"><a class="l" href="source-function-woocommerce_comments.html#672"> 672 </a> <span class="php-comment">/**
</span></span><span id="673" class="l"><a class="l" href="source-function-woocommerce_comments.html#673"> 673 </a><span class="php-comment"> * Output the quantity input for add to cart forms.
</span></span><span id="674" class="l"><a class="l" href="source-function-woocommerce_comments.html#674"> 674 </a><span class="php-comment"> *
</span></span><span id="675" class="l"><a class="l" href="source-function-woocommerce_comments.html#675"> 675 </a><span class="php-comment"> * @access public
</span></span><span id="676" class="l"><a class="l" href="source-function-woocommerce_comments.html#676"> 676 </a><span class="php-comment"> * @subpackage Product
</span></span><span id="677" class="l"><a class="l" href="source-function-woocommerce_comments.html#677"> 677 </a><span class="php-comment"> * @return void
</span></span><span id="678" class="l"><a class="l" href="source-function-woocommerce_comments.html#678"> 678 </a><span class="php-comment"> */</span>
</span><span id="679" class="l"><a class="l" href="source-function-woocommerce_comments.html#679"> 679 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_quantity_input" href="source-function-woocommerce_comments.html#_woocommerce_quantity_input">woocommerce_quantity_input</a>( <span class="php-var">$args</span> = <span class="php-keyword1">array</span>() ) {
</span><span id="680" class="l"><a class="l" href="source-function-woocommerce_comments.html#680"> 680 </a> <span class="php-keyword1">global</span> <span class="php-var">$product</span>;
</span><span id="681" class="l"><a class="l" href="source-function-woocommerce_comments.html#681"> 681 </a>
</span><span id="682" class="l"><a class="l" href="source-function-woocommerce_comments.html#682"> 682 </a> <span class="php-var">$defaults</span> = <span class="php-keyword1">array</span>(
</span><span id="683" class="l"><a class="l" href="source-function-woocommerce_comments.html#683"> 683 </a> <span class="php-quote">'input_name'</span> => <span class="php-quote">'quantity'</span>,
</span><span id="684" class="l"><a class="l" href="source-function-woocommerce_comments.html#684"> 684 </a> <span class="php-quote">'input_value'</span> => <span class="php-quote">'1'</span>,
</span><span id="685" class="l"><a class="l" href="source-function-woocommerce_comments.html#685"> 685 </a> <span class="php-quote">'max_value'</span> => apply_filters( <span class="php-quote">'woocommerce_quantity_input_max'</span>, <span class="php-quote">''</span>, <span class="php-var">$product</span> ),
</span><span id="686" class="l"><a class="l" href="source-function-woocommerce_comments.html#686"> 686 </a> <span class="php-quote">'min_value'</span> => apply_filters( <span class="php-quote">'woocommerce_quantity_input_min'</span>, <span class="php-quote">''</span>, <span class="php-var">$product</span> ),
</span><span id="687" class="l"><a class="l" href="source-function-woocommerce_comments.html#687"> 687 </a> <span class="php-quote">'step'</span> => apply_filters( <span class="php-quote">'woocommerce_quantity_input_step'</span>, <span class="php-quote">'1'</span>, <span class="php-var">$product</span> )
</span><span id="688" class="l"><a class="l" href="source-function-woocommerce_comments.html#688"> 688 </a> );
</span><span id="689" class="l"><a class="l" href="source-function-woocommerce_comments.html#689"> 689 </a>
</span><span id="690" class="l"><a class="l" href="source-function-woocommerce_comments.html#690"> 690 </a> <span class="php-var">$args</span> = apply_filters( <span class="php-quote">'woocommerce_quantity_input_args'</span>, wp_parse_args( <span class="php-var">$args</span>, <span class="php-var">$defaults</span> ), <span class="php-var">$product</span> );
</span><span id="691" class="l"><a class="l" href="source-function-woocommerce_comments.html#691"> 691 </a>
</span><span id="692" class="l"><a class="l" href="source-function-woocommerce_comments.html#692"> 692 </a> woocommerce_get_template( <span class="php-quote">'single-product/add-to-cart/quantity.php'</span>, <span class="php-var">$args</span> );
</span><span id="693" class="l"><a class="l" href="source-function-woocommerce_comments.html#693"> 693 </a> }
</span><span id="694" class="l"><a class="l" href="source-function-woocommerce_comments.html#694"> 694 </a>}
</span><span id="695" class="l"><a class="l" href="source-function-woocommerce_comments.html#695"> 695 </a>
</span><span id="696" class="l"><a class="l" href="source-function-woocommerce_comments.html#696"> 696 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_product_description_tab'</span> ) ) {
</span><span id="697" class="l"><a class="l" href="source-function-woocommerce_comments.html#697"> 697 </a>
</span><span id="698" class="l"><a class="l" href="source-function-woocommerce_comments.html#698"> 698 </a> <span class="php-comment">/**
</span></span><span id="699" class="l"><a class="l" href="source-function-woocommerce_comments.html#699"> 699 </a><span class="php-comment"> * Output the description tab content.
</span></span><span id="700" class="l"><a class="l" href="source-function-woocommerce_comments.html#700"> 700 </a><span class="php-comment"> *
</span></span><span id="701" class="l"><a class="l" href="source-function-woocommerce_comments.html#701"> 701 </a><span class="php-comment"> * @access public
</span></span><span id="702" class="l"><a class="l" href="source-function-woocommerce_comments.html#702"> 702 </a><span class="php-comment"> * @subpackage Product/Tabs
</span></span><span id="703" class="l"><a class="l" href="source-function-woocommerce_comments.html#703"> 703 </a><span class="php-comment"> * @return void
</span></span><span id="704" class="l"><a class="l" href="source-function-woocommerce_comments.html#704"> 704 </a><span class="php-comment"> */</span>
</span><span id="705" class="l"><a class="l" href="source-function-woocommerce_comments.html#705"> 705 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_product_description_tab" href="source-function-woocommerce_comments.html#_woocommerce_product_description_tab">woocommerce_product_description_tab</a>() {
</span><span id="706" class="l"><a class="l" href="source-function-woocommerce_comments.html#706"> 706 </a> woocommerce_get_template( <span class="php-quote">'single-product/tabs/description.php'</span> );
</span><span id="707" class="l"><a class="l" href="source-function-woocommerce_comments.html#707"> 707 </a> }
</span><span id="708" class="l"><a class="l" href="source-function-woocommerce_comments.html#708"> 708 </a>}
</span><span id="709" class="l"><a class="l" href="source-function-woocommerce_comments.html#709"> 709 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_product_additional_information_tab'</span> ) ) {
</span><span id="710" class="l"><a class="l" href="source-function-woocommerce_comments.html#710"> 710 </a>
</span><span id="711" class="l"><a class="l" href="source-function-woocommerce_comments.html#711"> 711 </a> <span class="php-comment">/**
</span></span><span id="712" class="l"><a class="l" href="source-function-woocommerce_comments.html#712"> 712 </a><span class="php-comment"> * Output the attributes tab content.
</span></span><span id="713" class="l"><a class="l" href="source-function-woocommerce_comments.html#713"> 713 </a><span class="php-comment"> *
</span></span><span id="714" class="l"><a class="l" href="source-function-woocommerce_comments.html#714"> 714 </a><span class="php-comment"> * @access public
</span></span><span id="715" class="l"><a class="l" href="source-function-woocommerce_comments.html#715"> 715 </a><span class="php-comment"> * @subpackage Product/Tabs
</span></span><span id="716" class="l"><a class="l" href="source-function-woocommerce_comments.html#716"> 716 </a><span class="php-comment"> * @return void
</span></span><span id="717" class="l"><a class="l" href="source-function-woocommerce_comments.html#717"> 717 </a><span class="php-comment"> */</span>
</span><span id="718" class="l"><a class="l" href="source-function-woocommerce_comments.html#718"> 718 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_product_additional_information_tab" href="source-function-woocommerce_comments.html#_woocommerce_product_additional_information_tab">woocommerce_product_additional_information_tab</a>() {
</span><span id="719" class="l"><a class="l" href="source-function-woocommerce_comments.html#719"> 719 </a> woocommerce_get_template( <span class="php-quote">'single-product/tabs/additional-information.php'</span> );
</span><span id="720" class="l"><a class="l" href="source-function-woocommerce_comments.html#720"> 720 </a> }
</span><span id="721" class="l"><a class="l" href="source-function-woocommerce_comments.html#721"> 721 </a>}
</span><span id="722" class="l"><a class="l" href="source-function-woocommerce_comments.html#722"> 722 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_product_reviews_tab'</span> ) ) {
</span><span id="723" class="l"><a class="l" href="source-function-woocommerce_comments.html#723"> 723 </a>
</span><span id="724" class="l"><a class="l" href="source-function-woocommerce_comments.html#724"> 724 </a> <span class="php-comment">/**
</span></span><span id="725" class="l"><a class="l" href="source-function-woocommerce_comments.html#725"> 725 </a><span class="php-comment"> * Output the reviews tab content.
</span></span><span id="726" class="l"><a class="l" href="source-function-woocommerce_comments.html#726"> 726 </a><span class="php-comment"> *
</span></span><span id="727" class="l"><a class="l" href="source-function-woocommerce_comments.html#727"> 727 </a><span class="php-comment"> * @access public
</span></span><span id="728" class="l"><a class="l" href="source-function-woocommerce_comments.html#728"> 728 </a><span class="php-comment"> * @subpackage Product/Tabs
</span></span><span id="729" class="l"><a class="l" href="source-function-woocommerce_comments.html#729"> 729 </a><span class="php-comment"> * @return void
</span></span><span id="730" class="l"><a class="l" href="source-function-woocommerce_comments.html#730"> 730 </a><span class="php-comment"> */</span>
</span><span id="731" class="l"><a class="l" href="source-function-woocommerce_comments.html#731"> 731 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_product_reviews_tab" href="source-function-woocommerce_comments.html#_woocommerce_product_reviews_tab">woocommerce_product_reviews_tab</a>() {
</span><span id="732" class="l"><a class="l" href="source-function-woocommerce_comments.html#732"> 732 </a> woocommerce_get_template( <span class="php-quote">'single-product/tabs/reviews.php'</span> );
</span><span id="733" class="l"><a class="l" href="source-function-woocommerce_comments.html#733"> 733 </a> }
</span><span id="734" class="l"><a class="l" href="source-function-woocommerce_comments.html#734"> 734 </a>}
</span><span id="735" class="l"><a class="l" href="source-function-woocommerce_comments.html#735"> 735 </a>
</span><span id="736" class="l"><a class="l" href="source-function-woocommerce_comments.html#736"> 736 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_default_product_tabs'</span> ) ) {
</span><span id="737" class="l"><a class="l" href="source-function-woocommerce_comments.html#737"> 737 </a>
</span><span id="738" class="l"><a class="l" href="source-function-woocommerce_comments.html#738"> 738 </a> <span class="php-comment">/**
</span></span><span id="739" class="l"><a class="l" href="source-function-woocommerce_comments.html#739"> 739 </a><span class="php-comment"> * Add default product tabs to product pages.
</span></span><span id="740" class="l"><a class="l" href="source-function-woocommerce_comments.html#740"> 740 </a><span class="php-comment"> *
</span></span><span id="741" class="l"><a class="l" href="source-function-woocommerce_comments.html#741"> 741 </a><span class="php-comment"> * @access public
</span></span><span id="742" class="l"><a class="l" href="source-function-woocommerce_comments.html#742"> 742 </a><span class="php-comment"> * @param mixed $tabs
</span></span><span id="743" class="l"><a class="l" href="source-function-woocommerce_comments.html#743"> 743 </a><span class="php-comment"> * @return void
</span></span><span id="744" class="l"><a class="l" href="source-function-woocommerce_comments.html#744"> 744 </a><span class="php-comment"> */</span>
</span><span id="745" class="l"><a class="l" href="source-function-woocommerce_comments.html#745"> 745 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_default_product_tabs" href="source-function-woocommerce_comments.html#_woocommerce_default_product_tabs">woocommerce_default_product_tabs</a>( <span class="php-var">$tabs</span> = <span class="php-keyword1">array</span>() ) {
</span><span id="746" class="l"><a class="l" href="source-function-woocommerce_comments.html#746"> 746 </a> <span class="php-keyword1">global</span> <span class="php-var">$product</span>, <span class="php-var">$post</span>;
</span><span id="747" class="l"><a class="l" href="source-function-woocommerce_comments.html#747"> 747 </a>
</span><span id="748" class="l"><a class="l" href="source-function-woocommerce_comments.html#748"> 748 </a> <span class="php-comment">// Description tab - shows product content</span>
</span><span id="749" class="l"><a class="l" href="source-function-woocommerce_comments.html#749"> 749 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$post</span>->post_content )
</span><span id="750" class="l"><a class="l" href="source-function-woocommerce_comments.html#750"> 750 </a> <span class="php-var">$tabs</span>[<span class="php-quote">'description'</span>] = <span class="php-keyword1">array</span>(
</span><span id="751" class="l"><a class="l" href="source-function-woocommerce_comments.html#751"> 751 </a> <span class="php-quote">'title'</span> => __( <span class="php-quote">'Description'</span>, <span class="php-quote">'woocommerce'</span> ),
</span><span id="752" class="l"><a class="l" href="source-function-woocommerce_comments.html#752"> 752 </a> <span class="php-quote">'priority'</span> => <span class="php-num">10</span>,
</span><span id="753" class="l"><a class="l" href="source-function-woocommerce_comments.html#753"> 753 </a> <span class="php-quote">'callback'</span> => <span class="php-quote">'woocommerce_product_description_tab'</span>
</span><span id="754" class="l"><a class="l" href="source-function-woocommerce_comments.html#754"> 754 </a> );
</span><span id="755" class="l"><a class="l" href="source-function-woocommerce_comments.html#755"> 755 </a>
</span><span id="756" class="l"><a class="l" href="source-function-woocommerce_comments.html#756"> 756 </a> <span class="php-comment">// Additional information tab - shows attributes</span>
</span><span id="757" class="l"><a class="l" href="source-function-woocommerce_comments.html#757"> 757 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$product</span>->has_attributes() || ( get_option( <span class="php-quote">'woocommerce_enable_dimension_product_attributes'</span> ) == <span class="php-quote">'yes'</span> && ( <span class="php-var">$product</span>->has_dimensions() || <span class="php-var">$product</span>->has_weight() ) ) )
</span><span id="758" class="l"><a class="l" href="source-function-woocommerce_comments.html#758"> 758 </a> <span class="php-var">$tabs</span>[<span class="php-quote">'additional_information'</span>] = <span class="php-keyword1">array</span>(
</span><span id="759" class="l"><a class="l" href="source-function-woocommerce_comments.html#759"> 759 </a> <span class="php-quote">'title'</span> => __( <span class="php-quote">'Additional Information'</span>, <span class="php-quote">'woocommerce'</span> ),
</span><span id="760" class="l"><a class="l" href="source-function-woocommerce_comments.html#760"> 760 </a> <span class="php-quote">'priority'</span> => <span class="php-num">20</span>,
</span><span id="761" class="l"><a class="l" href="source-function-woocommerce_comments.html#761"> 761 </a> <span class="php-quote">'callback'</span> => <span class="php-quote">'woocommerce_product_additional_information_tab'</span>
</span><span id="762" class="l"><a class="l" href="source-function-woocommerce_comments.html#762"> 762 </a> );
</span><span id="763" class="l"><a class="l" href="source-function-woocommerce_comments.html#763"> 763 </a>
</span><span id="764" class="l"><a class="l" href="source-function-woocommerce_comments.html#764"> 764 </a> <span class="php-comment">// Reviews tab - shows comments</span>
</span><span id="765" class="l"><a class="l" href="source-function-woocommerce_comments.html#765"> 765 </a> <span class="php-keyword1">if</span> ( comments_open() )
</span><span id="766" class="l"><a class="l" href="source-function-woocommerce_comments.html#766"> 766 </a> <span class="php-var">$tabs</span>[<span class="php-quote">'reviews'</span>] = <span class="php-keyword1">array</span>(
</span><span id="767" class="l"><a class="l" href="source-function-woocommerce_comments.html#767"> 767 </a> <span class="php-quote">'title'</span> => <span class="php-keyword2">sprintf</span>( __( <span class="php-quote">'Reviews (%d)'</span>, <span class="php-quote">'woocommerce'</span> ), get_comments_number( <span class="php-var">$post</span>->ID ) ),
</span><span id="768" class="l"><a class="l" href="source-function-woocommerce_comments.html#768"> 768 </a> <span class="php-quote">'priority'</span> => <span class="php-num">30</span>,
</span><span id="769" class="l"><a class="l" href="source-function-woocommerce_comments.html#769"> 769 </a> <span class="php-quote">'callback'</span> => <span class="php-quote">'comments_template'</span>
</span><span id="770" class="l"><a class="l" href="source-function-woocommerce_comments.html#770"> 770 </a> );
</span><span id="771" class="l"><a class="l" href="source-function-woocommerce_comments.html#771"> 771 </a>
</span><span id="772" class="l"><a class="l" href="source-function-woocommerce_comments.html#772"> 772 </a> <span class="php-keyword1">return</span> <span class="php-var">$tabs</span>;
</span><span id="773" class="l"><a class="l" href="source-function-woocommerce_comments.html#773"> 773 </a> }
</span><span id="774" class="l"><a class="l" href="source-function-woocommerce_comments.html#774"> 774 </a>}
</span><span id="775" class="l"><a class="l" href="source-function-woocommerce_comments.html#775"> 775 </a>
</span><span id="776" class="l"><a class="l" href="source-function-woocommerce_comments.html#776"> 776 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_sort_product_tabs'</span> ) ) {
</span><span id="777" class="l"><a class="l" href="source-function-woocommerce_comments.html#777"> 777 </a>
</span><span id="778" class="l"><a class="l" href="source-function-woocommerce_comments.html#778"> 778 </a> <span class="php-comment">/**
</span></span><span id="779" class="l"><a class="l" href="source-function-woocommerce_comments.html#779"> 779 </a><span class="php-comment"> * Sort tabs by priority
</span></span><span id="780" class="l"><a class="l" href="source-function-woocommerce_comments.html#780"> 780 </a><span class="php-comment"> *
</span></span><span id="781" class="l"><a class="l" href="source-function-woocommerce_comments.html#781"> 781 </a><span class="php-comment"> * @access public
</span></span><span id="782" class="l"><a class="l" href="source-function-woocommerce_comments.html#782"> 782 </a><span class="php-comment"> * @return void
</span></span><span id="783" class="l"><a class="l" href="source-function-woocommerce_comments.html#783"> 783 </a><span class="php-comment"> */</span>
</span><span id="784" class="l"><a class="l" href="source-function-woocommerce_comments.html#784"> 784 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_sort_product_tabs" href="source-function-woocommerce_comments.html#_woocommerce_sort_product_tabs">woocommerce_sort_product_tabs</a>( <span class="php-var">$tabs</span> = <span class="php-keyword1">array</span>() ) {
</span><span id="785" class="l"><a class="l" href="source-function-woocommerce_comments.html#785"> 785 </a>
</span><span id="786" class="l"><a class="l" href="source-function-woocommerce_comments.html#786"> 786 </a> <span class="php-comment">// Re-order tabs by priority</span>
</span><span id="787" class="l"><a class="l" href="source-function-woocommerce_comments.html#787"> 787 </a> <span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'_sort_priority_callback'</span> ) ) {
</span><span id="788" class="l"><a class="l" href="source-function-woocommerce_comments.html#788"> 788 </a> <span class="php-keyword1">function</span> <a id="__sort_priority_callback" href="source-function-woocommerce_comments.html#__sort_priority_callback">_sort_priority_callback</a>( <span class="php-var">$a</span>, <span class="php-var">$b</span> ) {
</span><span id="789" class="l"><a class="l" href="source-function-woocommerce_comments.html#789"> 789 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$a</span>[<span class="php-quote">'priority'</span>] == <span class="php-var">$b</span>[<span class="php-quote">'priority'</span>] )
</span><span id="790" class="l"><a class="l" href="source-function-woocommerce_comments.html#790"> 790 </a> <span class="php-keyword1">return</span> <span class="php-num">0</span>;
</span><span id="791" class="l"><a class="l" href="source-function-woocommerce_comments.html#791"> 791 </a> <span class="php-keyword1">return</span> ( <span class="php-var">$a</span>[<span class="php-quote">'priority'</span>] < <span class="php-var">$b</span>[<span class="php-quote">'priority'</span>] ) ? -<span class="php-num">1</span> : <span class="php-num">1</span>;
</span><span id="792" class="l"><a class="l" href="source-function-woocommerce_comments.html#792"> 792 </a> }
</span><span id="793" class="l"><a class="l" href="source-function-woocommerce_comments.html#793"> 793 </a> }
</span><span id="794" class="l"><a class="l" href="source-function-woocommerce_comments.html#794"> 794 </a>
</span><span id="795" class="l"><a class="l" href="source-function-woocommerce_comments.html#795"> 795 </a> <span class="php-keyword2">uasort</span>( <span class="php-var">$tabs</span>, <span class="php-quote">'_sort_priority_callback'</span> );
</span><span id="796" class="l"><a class="l" href="source-function-woocommerce_comments.html#796"> 796 </a>
</span><span id="797" class="l"><a class="l" href="source-function-woocommerce_comments.html#797"> 797 </a> <span class="php-keyword1">return</span> <span class="php-var">$tabs</span>;
</span><span id="798" class="l"><a class="l" href="source-function-woocommerce_comments.html#798"> 798 </a> }
</span><span id="799" class="l"><a class="l" href="source-function-woocommerce_comments.html#799"> 799 </a>}
</span><span id="800" class="l"><a class="l" href="source-function-woocommerce_comments.html#800"> 800 </a>
</span><span id="801" class="l"><a class="l" href="source-function-woocommerce_comments.html#801"> 801 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_comments'</span> ) ) {
</span><span id="802" class="l"><a class="l" href="source-function-woocommerce_comments.html#802"> 802 </a>
</span><span id="803" class="l"><a class="l" href="source-function-woocommerce_comments.html#803"> 803 </a> <span class="php-comment">/**
</span></span><span id="804" class="l"><a class="l" href="source-function-woocommerce_comments.html#804"> 804 </a><span class="php-comment"> * Output the Review comments template.
</span></span><span id="805" class="l"><a class="l" href="source-function-woocommerce_comments.html#805"> 805 </a><span class="php-comment"> *
</span></span><span id="806" class="l"><a class="l" href="source-function-woocommerce_comments.html#806"> 806 </a><span class="php-comment"> * @access public
</span></span><span id="807" class="l"><a class="l" href="source-function-woocommerce_comments.html#807"> 807 </a><span class="php-comment"> * @subpackage Product
</span></span><span id="808" class="l"><a class="l" href="source-function-woocommerce_comments.html#808"> 808 </a><span class="php-comment"> * @return void
</span></span><span id="809" class="l"><a class="l" href="source-function-woocommerce_comments.html#809"> 809 </a><span class="php-comment"> */</span>
</span><span id="810" class="l"><a class="l" href="source-function-woocommerce_comments.html#810"> 810 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_comments" href="source-function-woocommerce_comments.html#_woocommerce_comments">woocommerce_comments</a>( <span class="php-var">$comment</span>, <span class="php-var">$args</span>, <span class="php-var">$depth</span> ) {
</span><span id="811" class="l"><a class="l" href="source-function-woocommerce_comments.html#811"> 811 </a> <span class="php-var">$GLOBALS</span>[<span class="php-quote">'comment'</span>] = <span class="php-var">$comment</span>;
</span><span id="812" class="l"><a class="l" href="source-function-woocommerce_comments.html#812"> 812 </a> woocommerce_get_template( <span class="php-quote">'single-product/review.php'</span> );
</span><span id="813" class="l"><a class="l" href="source-function-woocommerce_comments.html#813"> 813 </a> }
</span><span id="814" class="l"><a class="l" href="source-function-woocommerce_comments.html#814"> 814 </a>}
</span><span id="815" class="l"><a class="l" href="source-function-woocommerce_comments.html#815"> 815 </a>
</span><span id="816" class="l"><a class="l" href="source-function-woocommerce_comments.html#816"> 816 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_output_related_products'</span> ) ) {
</span><span id="817" class="l"><a class="l" href="source-function-woocommerce_comments.html#817"> 817 </a>
</span><span id="818" class="l"><a class="l" href="source-function-woocommerce_comments.html#818"> 818 </a> <span class="php-comment">/**
</span></span><span id="819" class="l"><a class="l" href="source-function-woocommerce_comments.html#819"> 819 </a><span class="php-comment"> * Output the related products.
</span></span><span id="820" class="l"><a class="l" href="source-function-woocommerce_comments.html#820"> 820 </a><span class="php-comment"> *
</span></span><span id="821" class="l"><a class="l" href="source-function-woocommerce_comments.html#821"> 821 </a><span class="php-comment"> * @access public
</span></span><span id="822" class="l"><a class="l" href="source-function-woocommerce_comments.html#822"> 822 </a><span class="php-comment"> * @subpackage Product
</span></span><span id="823" class="l"><a class="l" href="source-function-woocommerce_comments.html#823"> 823 </a><span class="php-comment"> * @return void
</span></span><span id="824" class="l"><a class="l" href="source-function-woocommerce_comments.html#824"> 824 </a><span class="php-comment"> */</span>
</span><span id="825" class="l"><a class="l" href="source-function-woocommerce_comments.html#825"> 825 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_output_related_products" href="source-function-woocommerce_comments.html#_woocommerce_output_related_products">woocommerce_output_related_products</a>() {
</span><span id="826" class="l"><a class="l" href="source-function-woocommerce_comments.html#826"> 826 </a> woocommerce_related_products( <span class="php-num">2</span>, <span class="php-num">2</span> );
</span><span id="827" class="l"><a class="l" href="source-function-woocommerce_comments.html#827"> 827 </a> }
</span><span id="828" class="l"><a class="l" href="source-function-woocommerce_comments.html#828"> 828 </a>}
</span><span id="829" class="l"><a class="l" href="source-function-woocommerce_comments.html#829"> 829 </a>
</span><span id="830" class="l"><a class="l" href="source-function-woocommerce_comments.html#830"> 830 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_related_products'</span> ) ) {
</span><span id="831" class="l"><a class="l" href="source-function-woocommerce_comments.html#831"> 831 </a>
</span><span id="832" class="l"><a class="l" href="source-function-woocommerce_comments.html#832"> 832 </a> <span class="php-comment">/**
</span></span><span id="833" class="l"><a class="l" href="source-function-woocommerce_comments.html#833"> 833 </a><span class="php-comment"> * Output the related products.
</span></span><span id="834" class="l"><a class="l" href="source-function-woocommerce_comments.html#834"> 834 </a><span class="php-comment"> *
</span></span><span id="835" class="l"><a class="l" href="source-function-woocommerce_comments.html#835"> 835 </a><span class="php-comment"> * @access public
</span></span><span id="836" class="l"><a class="l" href="source-function-woocommerce_comments.html#836"> 836 </a><span class="php-comment"> * @param int $posts_per_page (default: 2)
</span></span><span id="837" class="l"><a class="l" href="source-function-woocommerce_comments.html#837"> 837 </a><span class="php-comment"> * @param int $columns (default: 2)
</span></span><span id="838" class="l"><a class="l" href="source-function-woocommerce_comments.html#838"> 838 </a><span class="php-comment"> * @param string $orderby (default: 'rand')
</span></span><span id="839" class="l"><a class="l" href="source-function-woocommerce_comments.html#839"> 839 </a><span class="php-comment"> * @return void
</span></span><span id="840" class="l"><a class="l" href="source-function-woocommerce_comments.html#840"> 840 </a><span class="php-comment"> */</span>
</span><span id="841" class="l"><a class="l" href="source-function-woocommerce_comments.html#841"> 841 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_related_products" href="source-function-woocommerce_comments.html#_woocommerce_related_products">woocommerce_related_products</a>( <span class="php-var">$posts_per_page</span> = <span class="php-num">2</span>, <span class="php-var">$columns</span> = <span class="php-num">2</span>, <span class="php-var">$orderby</span> = <span class="php-quote">'rand'</span> ) {
</span><span id="842" class="l"><a class="l" href="source-function-woocommerce_comments.html#842"> 842 </a> woocommerce_get_template( <span class="php-quote">'single-product/related.php'</span>, <span class="php-keyword1">array</span>(
</span><span id="843" class="l"><a class="l" href="source-function-woocommerce_comments.html#843"> 843 </a> <span class="php-quote">'posts_per_page'</span> => <span class="php-var">$posts_per_page</span>,
</span><span id="844" class="l"><a class="l" href="source-function-woocommerce_comments.html#844"> 844 </a> <span class="php-quote">'orderby'</span> => <span class="php-var">$orderby</span>,
</span><span id="845" class="l"><a class="l" href="source-function-woocommerce_comments.html#845"> 845 </a> <span class="php-quote">'columns'</span> => <span class="php-var">$columns</span>
</span><span id="846" class="l"><a class="l" href="source-function-woocommerce_comments.html#846"> 846 </a> ) );
</span><span id="847" class="l"><a class="l" href="source-function-woocommerce_comments.html#847"> 847 </a> }
</span><span id="848" class="l"><a class="l" href="source-function-woocommerce_comments.html#848"> 848 </a>}
</span><span id="849" class="l"><a class="l" href="source-function-woocommerce_comments.html#849"> 849 </a>
</span><span id="850" class="l"><a class="l" href="source-function-woocommerce_comments.html#850"> 850 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_upsell_display'</span> ) ) {
</span><span id="851" class="l"><a class="l" href="source-function-woocommerce_comments.html#851"> 851 </a>
</span><span id="852" class="l"><a class="l" href="source-function-woocommerce_comments.html#852"> 852 </a> <span class="php-comment">/**
</span></span><span id="853" class="l"><a class="l" href="source-function-woocommerce_comments.html#853"> 853 </a><span class="php-comment"> * Output product up sells.
</span></span><span id="854" class="l"><a class="l" href="source-function-woocommerce_comments.html#854"> 854 </a><span class="php-comment"> *
</span></span><span id="855" class="l"><a class="l" href="source-function-woocommerce_comments.html#855"> 855 </a><span class="php-comment"> * @access public
</span></span><span id="856" class="l"><a class="l" href="source-function-woocommerce_comments.html#856"> 856 </a><span class="php-comment"> * @param int $posts_per_page (default: -1)
</span></span><span id="857" class="l"><a class="l" href="source-function-woocommerce_comments.html#857"> 857 </a><span class="php-comment"> * @param int $columns (default: 2)
</span></span><span id="858" class="l"><a class="l" href="source-function-woocommerce_comments.html#858"> 858 </a><span class="php-comment"> * @param string $orderby (default: 'rand')
</span></span><span id="859" class="l"><a class="l" href="source-function-woocommerce_comments.html#859"> 859 </a><span class="php-comment"> * @return void
</span></span><span id="860" class="l"><a class="l" href="source-function-woocommerce_comments.html#860"> 860 </a><span class="php-comment"> */</span>
</span><span id="861" class="l"><a class="l" href="source-function-woocommerce_comments.html#861"> 861 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_upsell_display" href="source-function-woocommerce_comments.html#_woocommerce_upsell_display">woocommerce_upsell_display</a>( <span class="php-var">$posts_per_page</span> = <span class="php-quote">'-1'</span>, <span class="php-var">$columns</span> = <span class="php-num">2</span>, <span class="php-var">$orderby</span> = <span class="php-quote">'rand'</span> ) {
</span><span id="862" class="l"><a class="l" href="source-function-woocommerce_comments.html#862"> 862 </a> woocommerce_get_template( <span class="php-quote">'single-product/up-sells.php'</span>, <span class="php-keyword1">array</span>(
</span><span id="863" class="l"><a class="l" href="source-function-woocommerce_comments.html#863"> 863 </a> <span class="php-quote">'posts_per_page'</span> => <span class="php-var">$posts_per_page</span>,
</span><span id="864" class="l"><a class="l" href="source-function-woocommerce_comments.html#864"> 864 </a> <span class="php-quote">'orderby'</span> => <span class="php-var">$orderby</span>,
</span><span id="865" class="l"><a class="l" href="source-function-woocommerce_comments.html#865"> 865 </a> <span class="php-quote">'columns'</span> => <span class="php-var">$columns</span>
</span><span id="866" class="l"><a class="l" href="source-function-woocommerce_comments.html#866"> 866 </a> ) );
</span><span id="867" class="l"><a class="l" href="source-function-woocommerce_comments.html#867"> 867 </a> }
</span><span id="868" class="l"><a class="l" href="source-function-woocommerce_comments.html#868"> 868 </a>}
</span><span id="869" class="l"><a class="l" href="source-function-woocommerce_comments.html#869"> 869 </a>
</span><span id="870" class="l"><a class="l" href="source-function-woocommerce_comments.html#870"> 870 </a><span class="php-comment">/** Cart ******************************************************************/</span>
</span><span id="871" class="l"><a class="l" href="source-function-woocommerce_comments.html#871"> 871 </a>
</span><span id="872" class="l"><a class="l" href="source-function-woocommerce_comments.html#872"> 872 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_shipping_calculator'</span> ) ) {
</span><span id="873" class="l"><a class="l" href="source-function-woocommerce_comments.html#873"> 873 </a>
</span><span id="874" class="l"><a class="l" href="source-function-woocommerce_comments.html#874"> 874 </a> <span class="php-comment">/**
</span></span><span id="875" class="l"><a class="l" href="source-function-woocommerce_comments.html#875"> 875 </a><span class="php-comment"> * Output the cart shipping calculator.
</span></span><span id="876" class="l"><a class="l" href="source-function-woocommerce_comments.html#876"> 876 </a><span class="php-comment"> *
</span></span><span id="877" class="l"><a class="l" href="source-function-woocommerce_comments.html#877"> 877 </a><span class="php-comment"> * @access public
</span></span><span id="878" class="l"><a class="l" href="source-function-woocommerce_comments.html#878"> 878 </a><span class="php-comment"> * @subpackage Cart
</span></span><span id="879" class="l"><a class="l" href="source-function-woocommerce_comments.html#879"> 879 </a><span class="php-comment"> * @return void
</span></span><span id="880" class="l"><a class="l" href="source-function-woocommerce_comments.html#880"> 880 </a><span class="php-comment"> */</span>
</span><span id="881" class="l"><a class="l" href="source-function-woocommerce_comments.html#881"> 881 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_shipping_calculator" href="source-function-woocommerce_comments.html#_woocommerce_shipping_calculator">woocommerce_shipping_calculator</a>() {
</span><span id="882" class="l"><a class="l" href="source-function-woocommerce_comments.html#882"> 882 </a> woocommerce_get_template( <span class="php-quote">'cart/shipping-calculator.php'</span> );
</span><span id="883" class="l"><a class="l" href="source-function-woocommerce_comments.html#883"> 883 </a> }
</span><span id="884" class="l"><a class="l" href="source-function-woocommerce_comments.html#884"> 884 </a>}
</span><span id="885" class="l"><a class="l" href="source-function-woocommerce_comments.html#885"> 885 </a>
</span><span id="886" class="l"><a class="l" href="source-function-woocommerce_comments.html#886"> 886 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_cart_totals'</span> ) ) {
</span><span id="887" class="l"><a class="l" href="source-function-woocommerce_comments.html#887"> 887 </a>
</span><span id="888" class="l"><a class="l" href="source-function-woocommerce_comments.html#888"> 888 </a> <span class="php-comment">/**
</span></span><span id="889" class="l"><a class="l" href="source-function-woocommerce_comments.html#889"> 889 </a><span class="php-comment"> * Output the cart totals.
</span></span><span id="890" class="l"><a class="l" href="source-function-woocommerce_comments.html#890"> 890 </a><span class="php-comment"> *
</span></span><span id="891" class="l"><a class="l" href="source-function-woocommerce_comments.html#891"> 891 </a><span class="php-comment"> * @access public
</span></span><span id="892" class="l"><a class="l" href="source-function-woocommerce_comments.html#892"> 892 </a><span class="php-comment"> * @subpackage Cart
</span></span><span id="893" class="l"><a class="l" href="source-function-woocommerce_comments.html#893"> 893 </a><span class="php-comment"> * @return void
</span></span><span id="894" class="l"><a class="l" href="source-function-woocommerce_comments.html#894"> 894 </a><span class="php-comment"> */</span>
</span><span id="895" class="l"><a class="l" href="source-function-woocommerce_comments.html#895"> 895 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_cart_totals" href="source-function-woocommerce_comments.html#_woocommerce_cart_totals">woocommerce_cart_totals</a>() {
</span><span id="896" class="l"><a class="l" href="source-function-woocommerce_comments.html#896"> 896 </a> woocommerce_get_template( <span class="php-quote">'cart/totals.php'</span> );
</span><span id="897" class="l"><a class="l" href="source-function-woocommerce_comments.html#897"> 897 </a> }
</span><span id="898" class="l"><a class="l" href="source-function-woocommerce_comments.html#898"> 898 </a>}
</span><span id="899" class="l"><a class="l" href="source-function-woocommerce_comments.html#899"> 899 </a>
</span><span id="900" class="l"><a class="l" href="source-function-woocommerce_comments.html#900"> 900 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_cross_sell_display'</span> ) ) {
</span><span id="901" class="l"><a class="l" href="source-function-woocommerce_comments.html#901"> 901 </a>
</span><span id="902" class="l"><a class="l" href="source-function-woocommerce_comments.html#902"> 902 </a> <span class="php-comment">/**
</span></span><span id="903" class="l"><a class="l" href="source-function-woocommerce_comments.html#903"> 903 </a><span class="php-comment"> * Output the cart cross-sells.
</span></span><span id="904" class="l"><a class="l" href="source-function-woocommerce_comments.html#904"> 904 </a><span class="php-comment"> *
</span></span><span id="905" class="l"><a class="l" href="source-function-woocommerce_comments.html#905"> 905 </a><span class="php-comment"> * @access public
</span></span><span id="906" class="l"><a class="l" href="source-function-woocommerce_comments.html#906"> 906 </a><span class="php-comment"> * @subpackage Cart
</span></span><span id="907" class="l"><a class="l" href="source-function-woocommerce_comments.html#907"> 907 </a><span class="php-comment"> * @return void
</span></span><span id="908" class="l"><a class="l" href="source-function-woocommerce_comments.html#908"> 908 </a><span class="php-comment"> */</span>
</span><span id="909" class="l"><a class="l" href="source-function-woocommerce_comments.html#909"> 909 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_cross_sell_display" href="source-function-woocommerce_comments.html#_woocommerce_cross_sell_display">woocommerce_cross_sell_display</a>() {
</span><span id="910" class="l"><a class="l" href="source-function-woocommerce_comments.html#910"> 910 </a> woocommerce_get_template( <span class="php-quote">'cart/cross-sells.php'</span> );
</span><span id="911" class="l"><a class="l" href="source-function-woocommerce_comments.html#911"> 911 </a> }
</span><span id="912" class="l"><a class="l" href="source-function-woocommerce_comments.html#912"> 912 </a>}
</span><span id="913" class="l"><a class="l" href="source-function-woocommerce_comments.html#913"> 913 </a>
</span><span id="914" class="l"><a class="l" href="source-function-woocommerce_comments.html#914"> 914 </a><span class="php-comment">/** Mini-Cart *************************************************************/</span>
</span><span id="915" class="l"><a class="l" href="source-function-woocommerce_comments.html#915"> 915 </a>
</span><span id="916" class="l"><a class="l" href="source-function-woocommerce_comments.html#916"> 916 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_mini_cart'</span> ) ) {
</span><span id="917" class="l"><a class="l" href="source-function-woocommerce_comments.html#917"> 917 </a>
</span><span id="918" class="l"><a class="l" href="source-function-woocommerce_comments.html#918"> 918 </a> <span class="php-comment">/**
</span></span><span id="919" class="l"><a class="l" href="source-function-woocommerce_comments.html#919"> 919 </a><span class="php-comment"> * Output the Mini-cart - used by cart widget
</span></span><span id="920" class="l"><a class="l" href="source-function-woocommerce_comments.html#920"> 920 </a><span class="php-comment"> *
</span></span><span id="921" class="l"><a class="l" href="source-function-woocommerce_comments.html#921"> 921 </a><span class="php-comment"> * @access public
</span></span><span id="922" class="l"><a class="l" href="source-function-woocommerce_comments.html#922"> 922 </a><span class="php-comment"> * @return void
</span></span><span id="923" class="l"><a class="l" href="source-function-woocommerce_comments.html#923"> 923 </a><span class="php-comment"> */</span>
</span><span id="924" class="l"><a class="l" href="source-function-woocommerce_comments.html#924"> 924 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_mini_cart" href="source-function-woocommerce_comments.html#_woocommerce_mini_cart">woocommerce_mini_cart</a>( <span class="php-var">$args</span> = <span class="php-keyword1">array</span>() ) {
</span><span id="925" class="l"><a class="l" href="source-function-woocommerce_comments.html#925"> 925 </a>
</span><span id="926" class="l"><a class="l" href="source-function-woocommerce_comments.html#926"> 926 </a> <span class="php-var">$defaults</span> = <span class="php-keyword1">array</span>(
</span><span id="927" class="l"><a class="l" href="source-function-woocommerce_comments.html#927"> 927 </a> <span class="php-quote">'list_class'</span> => <span class="php-quote">''</span>
</span><span id="928" class="l"><a class="l" href="source-function-woocommerce_comments.html#928"> 928 </a> );
</span><span id="929" class="l"><a class="l" href="source-function-woocommerce_comments.html#929"> 929 </a>
</span><span id="930" class="l"><a class="l" href="source-function-woocommerce_comments.html#930"> 930 </a> <span class="php-var">$args</span> = wp_parse_args( <span class="php-var">$args</span>, <span class="php-var">$defaults</span> );
</span><span id="931" class="l"><a class="l" href="source-function-woocommerce_comments.html#931"> 931 </a>
</span><span id="932" class="l"><a class="l" href="source-function-woocommerce_comments.html#932"> 932 </a> woocommerce_get_template( <span class="php-quote">'cart/mini-cart.php'</span>, <span class="php-var">$args</span> );
</span><span id="933" class="l"><a class="l" href="source-function-woocommerce_comments.html#933"> 933 </a> }
</span><span id="934" class="l"><a class="l" href="source-function-woocommerce_comments.html#934"> 934 </a>}
</span><span id="935" class="l"><a class="l" href="source-function-woocommerce_comments.html#935"> 935 </a>
</span><span id="936" class="l"><a class="l" href="source-function-woocommerce_comments.html#936"> 936 </a><span class="php-comment">/** Login *****************************************************************/</span>
</span><span id="937" class="l"><a class="l" href="source-function-woocommerce_comments.html#937"> 937 </a>
</span><span id="938" class="l"><a class="l" href="source-function-woocommerce_comments.html#938"> 938 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_login_form'</span> ) ) {
</span><span id="939" class="l"><a class="l" href="source-function-woocommerce_comments.html#939"> 939 </a>
</span><span id="940" class="l"><a class="l" href="source-function-woocommerce_comments.html#940"> 940 </a> <span class="php-comment">/**
</span></span><span id="941" class="l"><a class="l" href="source-function-woocommerce_comments.html#941"> 941 </a><span class="php-comment"> * Output the WooCommerce Login Form
</span></span><span id="942" class="l"><a class="l" href="source-function-woocommerce_comments.html#942"> 942 </a><span class="php-comment"> *
</span></span><span id="943" class="l"><a class="l" href="source-function-woocommerce_comments.html#943"> 943 </a><span class="php-comment"> * @access public
</span></span><span id="944" class="l"><a class="l" href="source-function-woocommerce_comments.html#944"> 944 </a><span class="php-comment"> * @subpackage Forms
</span></span><span id="945" class="l"><a class="l" href="source-function-woocommerce_comments.html#945"> 945 </a><span class="php-comment"> * @return void
</span></span><span id="946" class="l"><a class="l" href="source-function-woocommerce_comments.html#946"> 946 </a><span class="php-comment"> */</span>
</span><span id="947" class="l"><a class="l" href="source-function-woocommerce_comments.html#947"> 947 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_login_form" href="source-function-woocommerce_comments.html#_woocommerce_login_form">woocommerce_login_form</a>( <span class="php-var">$args</span> = <span class="php-keyword1">array</span>() ) {
</span><span id="948" class="l"><a class="l" href="source-function-woocommerce_comments.html#948"> 948 </a>
</span><span id="949" class="l"><a class="l" href="source-function-woocommerce_comments.html#949"> 949 </a> <span class="php-var">$defaults</span> = <span class="php-keyword1">array</span>(
</span><span id="950" class="l"><a class="l" href="source-function-woocommerce_comments.html#950"> 950 </a> <span class="php-quote">'message'</span> => <span class="php-quote">''</span>,
</span><span id="951" class="l"><a class="l" href="source-function-woocommerce_comments.html#951"> 951 </a> <span class="php-quote">'redirect'</span> => <span class="php-quote">''</span>,
</span><span id="952" class="l"><a class="l" href="source-function-woocommerce_comments.html#952"> 952 </a> <span class="php-quote">'hidden'</span> => <span class="php-keyword1">false</span>
</span><span id="953" class="l"><a class="l" href="source-function-woocommerce_comments.html#953"> 953 </a> );
</span><span id="954" class="l"><a class="l" href="source-function-woocommerce_comments.html#954"> 954 </a>
</span><span id="955" class="l"><a class="l" href="source-function-woocommerce_comments.html#955"> 955 </a> <span class="php-var">$args</span> = wp_parse_args( <span class="php-var">$args</span>, <span class="php-var">$defaults</span> );
</span><span id="956" class="l"><a class="l" href="source-function-woocommerce_comments.html#956"> 956 </a>
</span><span id="957" class="l"><a class="l" href="source-function-woocommerce_comments.html#957"> 957 </a> woocommerce_get_template( <span class="php-quote">'shop/form-login.php'</span>, <span class="php-var">$args</span> );
</span><span id="958" class="l"><a class="l" href="source-function-woocommerce_comments.html#958"> 958 </a> }
</span><span id="959" class="l"><a class="l" href="source-function-woocommerce_comments.html#959"> 959 </a>}
</span><span id="960" class="l"><a class="l" href="source-function-woocommerce_comments.html#960"> 960 </a>
</span><span id="961" class="l"><a class="l" href="source-function-woocommerce_comments.html#961"> 961 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_checkout_login_form'</span> ) ) {
</span><span id="962" class="l"><a class="l" href="source-function-woocommerce_comments.html#962"> 962 </a>
</span><span id="963" class="l"><a class="l" href="source-function-woocommerce_comments.html#963"> 963 </a> <span class="php-comment">/**
</span></span><span id="964" class="l"><a class="l" href="source-function-woocommerce_comments.html#964"> 964 </a><span class="php-comment"> * Output the WooCommerce Checkout Login Form
</span></span><span id="965" class="l"><a class="l" href="source-function-woocommerce_comments.html#965"> 965 </a><span class="php-comment"> *
</span></span><span id="966" class="l"><a class="l" href="source-function-woocommerce_comments.html#966"> 966 </a><span class="php-comment"> * @access public
</span></span><span id="967" class="l"><a class="l" href="source-function-woocommerce_comments.html#967"> 967 </a><span class="php-comment"> * @subpackage Checkout
</span></span><span id="968" class="l"><a class="l" href="source-function-woocommerce_comments.html#968"> 968 </a><span class="php-comment"> * @return void
</span></span><span id="969" class="l"><a class="l" href="source-function-woocommerce_comments.html#969"> 969 </a><span class="php-comment"> */</span>
</span><span id="970" class="l"><a class="l" href="source-function-woocommerce_comments.html#970"> 970 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_checkout_login_form" href="source-function-woocommerce_comments.html#_woocommerce_checkout_login_form">woocommerce_checkout_login_form</a>() {
</span><span id="971" class="l"><a class="l" href="source-function-woocommerce_comments.html#971"> 971 </a> <span class="php-keyword1">global</span> <span class="php-var">$woocommerce</span>;
</span><span id="972" class="l"><a class="l" href="source-function-woocommerce_comments.html#972"> 972 </a>
</span><span id="973" class="l"><a class="l" href="source-function-woocommerce_comments.html#973"> 973 </a> woocommerce_get_template( <span class="php-quote">'checkout/form-login.php'</span>, <span class="php-keyword1">array</span>( <span class="php-quote">'checkout'</span> => <span class="php-var">$woocommerce</span>->checkout() ) );
</span><span id="974" class="l"><a class="l" href="source-function-woocommerce_comments.html#974"> 974 </a> }
</span><span id="975" class="l"><a class="l" href="source-function-woocommerce_comments.html#975"> 975 </a>}
</span><span id="976" class="l"><a class="l" href="source-function-woocommerce_comments.html#976"> 976 </a>
</span><span id="977" class="l"><a class="l" href="source-function-woocommerce_comments.html#977"> 977 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_breadcrumb'</span> ) ) {
</span><span id="978" class="l"><a class="l" href="source-function-woocommerce_comments.html#978"> 978 </a>
</span><span id="979" class="l"><a class="l" href="source-function-woocommerce_comments.html#979"> 979 </a> <span class="php-comment">/**
</span></span><span id="980" class="l"><a class="l" href="source-function-woocommerce_comments.html#980"> 980 </a><span class="php-comment"> * Output the WooCommerce Breadcrumb
</span></span><span id="981" class="l"><a class="l" href="source-function-woocommerce_comments.html#981"> 981 </a><span class="php-comment"> *
</span></span><span id="982" class="l"><a class="l" href="source-function-woocommerce_comments.html#982"> 982 </a><span class="php-comment"> * @access public
</span></span><span id="983" class="l"><a class="l" href="source-function-woocommerce_comments.html#983"> 983 </a><span class="php-comment"> * @return void
</span></span><span id="984" class="l"><a class="l" href="source-function-woocommerce_comments.html#984"> 984 </a><span class="php-comment"> */</span>
</span><span id="985" class="l"><a class="l" href="source-function-woocommerce_comments.html#985"> 985 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_breadcrumb" href="source-function-woocommerce_comments.html#_woocommerce_breadcrumb">woocommerce_breadcrumb</a>( <span class="php-var">$args</span> = <span class="php-keyword1">array</span>() ) {
</span><span id="986" class="l"><a class="l" href="source-function-woocommerce_comments.html#986"> 986 </a>
</span><span id="987" class="l"><a class="l" href="source-function-woocommerce_comments.html#987"> 987 </a> <span class="php-var">$defaults</span> = apply_filters( <span class="php-quote">'woocommerce_breadcrumb_defaults'</span>, <span class="php-keyword1">array</span>(
</span><span id="988" class="l"><a class="l" href="source-function-woocommerce_comments.html#988"> 988 </a> <span class="php-quote">'delimiter'</span> => <span class="php-quote">' &#47; '</span>,
</span><span id="989" class="l"><a class="l" href="source-function-woocommerce_comments.html#989"> 989 </a> <span class="php-quote">'wrap_before'</span> => <span class="php-quote">'<nav class="woocommerce-breadcrumb" itemprop="breadcrumb">'</span>,
</span><span id="990" class="l"><a class="l" href="source-function-woocommerce_comments.html#990"> 990 </a> <span class="php-quote">'wrap_after'</span> => <span class="php-quote">'</nav>'</span>,
</span><span id="991" class="l"><a class="l" href="source-function-woocommerce_comments.html#991"> 991 </a> <span class="php-quote">'before'</span> => <span class="php-quote">''</span>,
</span><span id="992" class="l"><a class="l" href="source-function-woocommerce_comments.html#992"> 992 </a> <span class="php-quote">'after'</span> => <span class="php-quote">''</span>,
</span><span id="993" class="l"><a class="l" href="source-function-woocommerce_comments.html#993"> 993 </a> <span class="php-quote">'home'</span> => _x( <span class="php-quote">'Home'</span>, <span class="php-quote">'breadcrumb'</span>, <span class="php-quote">'woocommerce'</span> ),
</span><span id="994" class="l"><a class="l" href="source-function-woocommerce_comments.html#994"> 994 </a> ) );
</span><span id="995" class="l"><a class="l" href="source-function-woocommerce_comments.html#995"> 995 </a>
</span><span id="996" class="l"><a class="l" href="source-function-woocommerce_comments.html#996"> 996 </a> <span class="php-var">$args</span> = wp_parse_args( <span class="php-var">$args</span>, <span class="php-var">$defaults</span> );
</span><span id="997" class="l"><a class="l" href="source-function-woocommerce_comments.html#997"> 997 </a>
</span><span id="998" class="l"><a class="l" href="source-function-woocommerce_comments.html#998"> 998 </a> woocommerce_get_template( <span class="php-quote">'shop/breadcrumb.php'</span>, <span class="php-var">$args</span> );
</span><span id="999" class="l"><a class="l" href="source-function-woocommerce_comments.html#999"> 999 </a> }
</span><span id="1000" class="l"><a class="l" href="source-function-woocommerce_comments.html#1000">1000 </a>}
</span><span id="1001" class="l"><a class="l" href="source-function-woocommerce_comments.html#1001">1001 </a>
</span><span id="1002" class="l"><a class="l" href="source-function-woocommerce_comments.html#1002">1002 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_order_review'</span> ) ) {
</span><span id="1003" class="l"><a class="l" href="source-function-woocommerce_comments.html#1003">1003 </a>
</span><span id="1004" class="l"><a class="l" href="source-function-woocommerce_comments.html#1004">1004 </a> <span class="php-comment">/**
</span></span><span id="1005" class="l"><a class="l" href="source-function-woocommerce_comments.html#1005">1005 </a><span class="php-comment"> * Output the Order review table for the checkout.
</span></span><span id="1006" class="l"><a class="l" href="source-function-woocommerce_comments.html#1006">1006 </a><span class="php-comment"> *
</span></span><span id="1007" class="l"><a class="l" href="source-function-woocommerce_comments.html#1007">1007 </a><span class="php-comment"> * @access public
</span></span><span id="1008" class="l"><a class="l" href="source-function-woocommerce_comments.html#1008">1008 </a><span class="php-comment"> * @subpackage Checkout
</span></span><span id="1009" class="l"><a class="l" href="source-function-woocommerce_comments.html#1009">1009 </a><span class="php-comment"> * @return void
</span></span><span id="1010" class="l"><a class="l" href="source-function-woocommerce_comments.html#1010">1010 </a><span class="php-comment"> */</span>
</span><span id="1011" class="l"><a class="l" href="source-function-woocommerce_comments.html#1011">1011 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_order_review" href="source-function-woocommerce_comments.html#_woocommerce_order_review">woocommerce_order_review</a>() {
</span><span id="1012" class="l"><a class="l" href="source-function-woocommerce_comments.html#1012">1012 </a> <span class="php-keyword1">global</span> <span class="php-var">$woocommerce</span>;
</span><span id="1013" class="l"><a class="l" href="source-function-woocommerce_comments.html#1013">1013 </a>
</span><span id="1014" class="l"><a class="l" href="source-function-woocommerce_comments.html#1014">1014 </a> woocommerce_get_template( <span class="php-quote">'checkout/review-order.php'</span>, <span class="php-keyword1">array</span>( <span class="php-quote">'checkout'</span> => <span class="php-var">$woocommerce</span>->checkout() ) );
</span><span id="1015" class="l"><a class="l" href="source-function-woocommerce_comments.html#1015">1015 </a> }
</span><span id="1016" class="l"><a class="l" href="source-function-woocommerce_comments.html#1016">1016 </a>}
</span><span id="1017" class="l"><a class="l" href="source-function-woocommerce_comments.html#1017">1017 </a>
</span><span id="1018" class="l"><a class="l" href="source-function-woocommerce_comments.html#1018">1018 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_checkout_coupon_form'</span> ) ) {
</span><span id="1019" class="l"><a class="l" href="source-function-woocommerce_comments.html#1019">1019 </a>
</span><span id="1020" class="l"><a class="l" href="source-function-woocommerce_comments.html#1020">1020 </a> <span class="php-comment">/**
</span></span><span id="1021" class="l"><a class="l" href="source-function-woocommerce_comments.html#1021">1021 </a><span class="php-comment"> * Output the Coupon form for the checkout.
</span></span><span id="1022" class="l"><a class="l" href="source-function-woocommerce_comments.html#1022">1022 </a><span class="php-comment"> *
</span></span><span id="1023" class="l"><a class="l" href="source-function-woocommerce_comments.html#1023">1023 </a><span class="php-comment"> * @access public
</span></span><span id="1024" class="l"><a class="l" href="source-function-woocommerce_comments.html#1024">1024 </a><span class="php-comment"> * @subpackage Checkout
</span></span><span id="1025" class="l"><a class="l" href="source-function-woocommerce_comments.html#1025">1025 </a><span class="php-comment"> * @return void
</span></span><span id="1026" class="l"><a class="l" href="source-function-woocommerce_comments.html#1026">1026 </a><span class="php-comment"> */</span>
</span><span id="1027" class="l"><a class="l" href="source-function-woocommerce_comments.html#1027">1027 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_checkout_coupon_form" href="source-function-woocommerce_comments.html#_woocommerce_checkout_coupon_form">woocommerce_checkout_coupon_form</a>() {
</span><span id="1028" class="l"><a class="l" href="source-function-woocommerce_comments.html#1028">1028 </a> <span class="php-keyword1">global</span> <span class="php-var">$woocommerce</span>;
</span><span id="1029" class="l"><a class="l" href="source-function-woocommerce_comments.html#1029">1029 </a>
</span><span id="1030" class="l"><a class="l" href="source-function-woocommerce_comments.html#1030">1030 </a> woocommerce_get_template( <span class="php-quote">'checkout/form-coupon.php'</span>, <span class="php-keyword1">array</span>( <span class="php-quote">'checkout'</span> => <span class="php-var">$woocommerce</span>->checkout() ) );
</span><span id="1031" class="l"><a class="l" href="source-function-woocommerce_comments.html#1031">1031 </a> }
</span><span id="1032" class="l"><a class="l" href="source-function-woocommerce_comments.html#1032">1032 </a>}
</span><span id="1033" class="l"><a class="l" href="source-function-woocommerce_comments.html#1033">1033 </a>
</span><span id="1034" class="l"><a class="l" href="source-function-woocommerce_comments.html#1034">1034 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_products_will_display'</span> ) ) {
</span><span id="1035" class="l"><a class="l" href="source-function-woocommerce_comments.html#1035">1035 </a>
</span><span id="1036" class="l"><a class="l" href="source-function-woocommerce_comments.html#1036">1036 </a> <span class="php-comment">/**
</span></span><span id="1037" class="l"><a class="l" href="source-function-woocommerce_comments.html#1037">1037 </a><span class="php-comment"> * Check if we will be showing products or not (and not subcats only)
</span></span><span id="1038" class="l"><a class="l" href="source-function-woocommerce_comments.html#1038">1038 </a><span class="php-comment"> *
</span></span><span id="1039" class="l"><a class="l" href="source-function-woocommerce_comments.html#1039">1039 </a><span class="php-comment"> * @access public
</span></span><span id="1040" class="l"><a class="l" href="source-function-woocommerce_comments.html#1040">1040 </a><span class="php-comment"> * @subpackage Loop
</span></span><span id="1041" class="l"><a class="l" href="source-function-woocommerce_comments.html#1041">1041 </a><span class="php-comment"> * @return void
</span></span><span id="1042" class="l"><a class="l" href="source-function-woocommerce_comments.html#1042">1042 </a><span class="php-comment"> */</span>
</span><span id="1043" class="l"><a class="l" href="source-function-woocommerce_comments.html#1043">1043 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_products_will_display" href="source-function-woocommerce_comments.html#_woocommerce_products_will_display">woocommerce_products_will_display</a>() {
</span><span id="1044" class="l"><a class="l" href="source-function-woocommerce_comments.html#1044">1044 </a> <span class="php-keyword1">global</span> <span class="php-var">$woocommerce</span>, <span class="php-var">$wpdb</span>;
</span><span id="1045" class="l"><a class="l" href="source-function-woocommerce_comments.html#1045">1045 </a>
</span><span id="1046" class="l"><a class="l" href="source-function-woocommerce_comments.html#1046">1046 </a> <span class="php-keyword1">if</span> ( ! is_product_category() && ! is_product_tag() && ! is_shop() )
</span><span id="1047" class="l"><a class="l" href="source-function-woocommerce_comments.html#1047">1047 </a> <span class="php-keyword1">return</span> <span class="php-keyword1">false</span>;
</span><span id="1048" class="l"><a class="l" href="source-function-woocommerce_comments.html#1048">1048 </a>
</span><span id="1049" class="l"><a class="l" href="source-function-woocommerce_comments.html#1049">1049 </a> <span class="php-keyword1">if</span> ( is_search() || is_filtered() || is_paged() )
</span><span id="1050" class="l"><a class="l" href="source-function-woocommerce_comments.html#1050">1050 </a> <span class="php-keyword1">return</span> <span class="php-keyword1">true</span>;
</span><span id="1051" class="l"><a class="l" href="source-function-woocommerce_comments.html#1051">1051 </a>
</span><span id="1052" class="l"><a class="l" href="source-function-woocommerce_comments.html#1052">1052 </a> <span class="php-keyword1">if</span> ( is_shop() && get_option( <span class="php-quote">'woocommerce_shop_page_display'</span> ) != <span class="php-quote">'subcategories'</span> )
</span><span id="1053" class="l"><a class="l" href="source-function-woocommerce_comments.html#1053">1053 </a> <span class="php-keyword1">return</span> <span class="php-keyword1">true</span>;
</span><span id="1054" class="l"><a class="l" href="source-function-woocommerce_comments.html#1054">1054 </a>
</span><span id="1055" class="l"><a class="l" href="source-function-woocommerce_comments.html#1055">1055 </a> <span class="php-var">$term</span> = get_queried_object();
</span><span id="1056" class="l"><a class="l" href="source-function-woocommerce_comments.html#1056">1056 </a>
</span><span id="1057" class="l"><a class="l" href="source-function-woocommerce_comments.html#1057">1057 </a> <span class="php-keyword1">if</span> ( is_product_category() ) {
</span><span id="1058" class="l"><a class="l" href="source-function-woocommerce_comments.html#1058">1058 </a> <span class="php-keyword1">switch</span> ( get_woocommerce_term_meta( <span class="php-var">$term</span>->term_id, <span class="php-quote">'display_type'</span>, <span class="php-keyword1">true</span> ) ) {
</span><span id="1059" class="l"><a class="l" href="source-function-woocommerce_comments.html#1059">1059 </a> <span class="php-keyword1">case</span> <span class="php-quote">'products'</span> :
</span><span id="1060" class="l"><a class="l" href="source-function-woocommerce_comments.html#1060">1060 </a> <span class="php-keyword1">case</span> <span class="php-quote">'both'</span> :
</span><span id="1061" class="l"><a class="l" href="source-function-woocommerce_comments.html#1061">1061 </a> <span class="php-keyword1">return</span> <span class="php-keyword1">true</span>;
</span><span id="1062" class="l"><a class="l" href="source-function-woocommerce_comments.html#1062">1062 </a> <span class="php-keyword1">break</span>;
</span><span id="1063" class="l"><a class="l" href="source-function-woocommerce_comments.html#1063">1063 </a> <span class="php-keyword1">case</span> <span class="php-quote">''</span> :
</span><span id="1064" class="l"><a class="l" href="source-function-woocommerce_comments.html#1064">1064 </a> <span class="php-keyword1">if</span> ( get_option( <span class="php-quote">'woocommerce_category_archive_display'</span> ) != <span class="php-quote">'subcategories'</span> )
</span><span id="1065" class="l"><a class="l" href="source-function-woocommerce_comments.html#1065">1065 </a> <span class="php-keyword1">return</span> <span class="php-keyword1">true</span>;
</span><span id="1066" class="l"><a class="l" href="source-function-woocommerce_comments.html#1066">1066 </a> <span class="php-keyword1">break</span>;
</span><span id="1067" class="l"><a class="l" href="source-function-woocommerce_comments.html#1067">1067 </a> }
</span><span id="1068" class="l"><a class="l" href="source-function-woocommerce_comments.html#1068">1068 </a> }
</span><span id="1069" class="l"><a class="l" href="source-function-woocommerce_comments.html#1069">1069 </a>
</span><span id="1070" class="l"><a class="l" href="source-function-woocommerce_comments.html#1070">1070 </a> <span class="php-var">$parent_id</span> = <span class="php-keyword1">empty</span>( <span class="php-var">$term</span>->term_id ) ? <span class="php-num">0</span> : <span class="php-var">$term</span>->term_id;
</span><span id="1071" class="l"><a class="l" href="source-function-woocommerce_comments.html#1071">1071 </a> <span class="php-var">$has_children</span> = <span class="php-var">$wpdb</span>->get_col( <span class="php-var">$wpdb</span>->prepare( <span class="php-quote">"SELECT term_id FROM </span><span class="php-var">{$wpdb->term_taxonomy}</span><span class="php-quote"> WHERE parent = %d"</span>, <span class="php-var">$parent_id</span> ) );
</span><span id="1072" class="l"><a class="l" href="source-function-woocommerce_comments.html#1072">1072 </a>
</span><span id="1073" class="l"><a class="l" href="source-function-woocommerce_comments.html#1073">1073 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$has_children</span> ) {
</span><span id="1074" class="l"><a class="l" href="source-function-woocommerce_comments.html#1074">1074 </a> <span class="php-comment">// Check terms have products inside</span>
</span><span id="1075" class="l"><a class="l" href="source-function-woocommerce_comments.html#1075">1075 </a> <span class="php-var">$children</span> = <span class="php-keyword1">array</span>();
</span><span id="1076" class="l"><a class="l" href="source-function-woocommerce_comments.html#1076">1076 </a> <span class="php-keyword1">foreach</span> ( <span class="php-var">$has_children</span> <span class="php-keyword1">as</span> <span class="php-var">$term</span> ) {
</span><span id="1077" class="l"><a class="l" href="source-function-woocommerce_comments.html#1077">1077 </a> <span class="php-var">$children</span> = <span class="php-keyword2">array_merge</span>( <span class="php-var">$children</span>, get_term_children( <span class="php-var">$term</span>, <span class="php-quote">'product_cat'</span> ) );
</span><span id="1078" class="l"><a class="l" href="source-function-woocommerce_comments.html#1078">1078 </a> <span class="php-var">$children</span>[] = <span class="php-var">$term</span>;
</span><span id="1079" class="l"><a class="l" href="source-function-woocommerce_comments.html#1079">1079 </a> }
</span><span id="1080" class="l"><a class="l" href="source-function-woocommerce_comments.html#1080">1080 </a> <span class="php-var">$objects</span> = get_objects_in_term( <span class="php-var">$children</span>, <span class="php-quote">'product_cat'</span> );
</span><span id="1081" class="l"><a class="l" href="source-function-woocommerce_comments.html#1081">1081 </a>
</span><span id="1082" class="l"><a class="l" href="source-function-woocommerce_comments.html#1082">1082 </a> <span class="php-keyword1">if</span> ( <span class="php-keyword2">sizeof</span>( <span class="php-var">$objects</span> ) > <span class="php-num">0</span> ) {
</span><span id="1083" class="l"><a class="l" href="source-function-woocommerce_comments.html#1083">1083 </a> <span class="php-keyword1">return</span> <span class="php-keyword1">false</span>;
</span><span id="1084" class="l"><a class="l" href="source-function-woocommerce_comments.html#1084">1084 </a> } <span class="php-keyword1">else</span> {
</span><span id="1085" class="l"><a class="l" href="source-function-woocommerce_comments.html#1085">1085 </a> <span class="php-keyword1">return</span> <span class="php-keyword1">true</span>;
</span><span id="1086" class="l"><a class="l" href="source-function-woocommerce_comments.html#1086">1086 </a> }
</span><span id="1087" class="l"><a class="l" href="source-function-woocommerce_comments.html#1087">1087 </a> } <span class="php-keyword1">else</span> {
</span><span id="1088" class="l"><a class="l" href="source-function-woocommerce_comments.html#1088">1088 </a> <span class="php-keyword1">return</span> <span class="php-keyword1">true</span>;
</span><span id="1089" class="l"><a class="l" href="source-function-woocommerce_comments.html#1089">1089 </a> }
</span><span id="1090" class="l"><a class="l" href="source-function-woocommerce_comments.html#1090">1090 </a> }
</span><span id="1091" class="l"><a class="l" href="source-function-woocommerce_comments.html#1091">1091 </a>}
</span><span id="1092" class="l"><a class="l" href="source-function-woocommerce_comments.html#1092">1092 </a>
</span><span id="1093" class="l"><a class="l" href="source-function-woocommerce_comments.html#1093">1093 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_product_subcategories'</span> ) ) {
</span><span id="1094" class="l"><a class="l" href="source-function-woocommerce_comments.html#1094">1094 </a>
</span><span id="1095" class="l"><a class="l" href="source-function-woocommerce_comments.html#1095">1095 </a> <span class="php-comment">/**
</span></span><span id="1096" class="l"><a class="l" href="source-function-woocommerce_comments.html#1096">1096 </a><span class="php-comment"> * Display product sub categories as thumbnails.
</span></span><span id="1097" class="l"><a class="l" href="source-function-woocommerce_comments.html#1097">1097 </a><span class="php-comment"> *
</span></span><span id="1098" class="l"><a class="l" href="source-function-woocommerce_comments.html#1098">1098 </a><span class="php-comment"> * @access public
</span></span><span id="1099" class="l"><a class="l" href="source-function-woocommerce_comments.html#1099">1099 </a><span class="php-comment"> * @subpackage Loop
</span></span><span id="1100" class="l"><a class="l" href="source-function-woocommerce_comments.html#1100">1100 </a><span class="php-comment"> * @return void
</span></span><span id="1101" class="l"><a class="l" href="source-function-woocommerce_comments.html#1101">1101 </a><span class="php-comment"> */</span>
</span><span id="1102" class="l"><a class="l" href="source-function-woocommerce_comments.html#1102">1102 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_product_subcategories" href="source-function-woocommerce_comments.html#_woocommerce_product_subcategories">woocommerce_product_subcategories</a>( <span class="php-var">$args</span> = <span class="php-keyword1">array</span>() ) {
</span><span id="1103" class="l"><a class="l" href="source-function-woocommerce_comments.html#1103">1103 </a> <span class="php-keyword1">global</span> <span class="php-var">$woocommerce</span>, <span class="php-var">$wp_query</span>;
</span><span id="1104" class="l"><a class="l" href="source-function-woocommerce_comments.html#1104">1104 </a>
</span><span id="1105" class="l"><a class="l" href="source-function-woocommerce_comments.html#1105">1105 </a> <span class="php-var">$defaults</span> = <span class="php-keyword1">array</span>(
</span><span id="1106" class="l"><a class="l" href="source-function-woocommerce_comments.html#1106">1106 </a> <span class="php-quote">'before'</span> => <span class="php-quote">''</span>,
</span><span id="1107" class="l"><a class="l" href="source-function-woocommerce_comments.html#1107">1107 </a> <span class="php-quote">'after'</span> => <span class="php-quote">''</span>,
</span><span id="1108" class="l"><a class="l" href="source-function-woocommerce_comments.html#1108">1108 </a> <span class="php-quote">'force_display'</span> => <span class="php-keyword1">false</span>
</span><span id="1109" class="l"><a class="l" href="source-function-woocommerce_comments.html#1109">1109 </a> );
</span><span id="1110" class="l"><a class="l" href="source-function-woocommerce_comments.html#1110">1110 </a>
</span><span id="1111" class="l"><a class="l" href="source-function-woocommerce_comments.html#1111">1111 </a> <span class="php-var">$args</span> = wp_parse_args( <span class="php-var">$args</span>, <span class="php-var">$defaults</span> );
</span><span id="1112" class="l"><a class="l" href="source-function-woocommerce_comments.html#1112">1112 </a>
</span><span id="1113" class="l"><a class="l" href="source-function-woocommerce_comments.html#1113">1113 </a> <span class="php-keyword2">extract</span>( <span class="php-var">$args</span> );
</span><span id="1114" class="l"><a class="l" href="source-function-woocommerce_comments.html#1114">1114 </a>
</span><span id="1115" class="l"><a class="l" href="source-function-woocommerce_comments.html#1115">1115 </a> <span class="php-comment">// Main query only</span>
</span><span id="1116" class="l"><a class="l" href="source-function-woocommerce_comments.html#1116">1116 </a> <span class="php-keyword1">if</span> ( ! is_main_query() && ! <span class="php-var">$force_display</span> ) <span class="php-keyword1">return</span>;
</span><span id="1117" class="l"><a class="l" href="source-function-woocommerce_comments.html#1117">1117 </a>
</span><span id="1118" class="l"><a class="l" href="source-function-woocommerce_comments.html#1118">1118 </a> <span class="php-comment">// Don't show when filtering, searching or when on page > 1 and ensure we're on a product archive</span>
</span><span id="1119" class="l"><a class="l" href="source-function-woocommerce_comments.html#1119">1119 </a> <span class="php-keyword1">if</span> ( is_search() || is_filtered() || is_paged() || ( ! is_product_category() && ! is_shop() ) ) <span class="php-keyword1">return</span>;
</span><span id="1120" class="l"><a class="l" href="source-function-woocommerce_comments.html#1120">1120 </a>
</span><span id="1121" class="l"><a class="l" href="source-function-woocommerce_comments.html#1121">1121 </a> <span class="php-comment">// Check categories are enabled</span>
</span><span id="1122" class="l"><a class="l" href="source-function-woocommerce_comments.html#1122">1122 </a> <span class="php-keyword1">if</span> ( is_shop() && get_option( <span class="php-quote">'woocommerce_shop_page_display'</span> ) == <span class="php-quote">''</span> ) <span class="php-keyword1">return</span>;
</span><span id="1123" class="l"><a class="l" href="source-function-woocommerce_comments.html#1123">1123 </a>
</span><span id="1124" class="l"><a class="l" href="source-function-woocommerce_comments.html#1124">1124 </a> <span class="php-comment">// Find the category + category parent, if applicable</span>
</span><span id="1125" class="l"><a class="l" href="source-function-woocommerce_comments.html#1125">1125 </a> <span class="php-var">$term</span> = get_queried_object();
</span><span id="1126" class="l"><a class="l" href="source-function-woocommerce_comments.html#1126">1126 </a> <span class="php-var">$parent_id</span> = <span class="php-keyword1">empty</span>( <span class="php-var">$term</span>->term_id ) ? <span class="php-num">0</span> : <span class="php-var">$term</span>->term_id;
</span><span id="1127" class="l"><a class="l" href="source-function-woocommerce_comments.html#1127">1127 </a>
</span><span id="1128" class="l"><a class="l" href="source-function-woocommerce_comments.html#1128">1128 </a> <span class="php-keyword1">if</span> ( is_product_category() ) {
</span><span id="1129" class="l"><a class="l" href="source-function-woocommerce_comments.html#1129">1129 </a> <span class="php-var">$display_type</span> = get_woocommerce_term_meta( <span class="php-var">$term</span>->term_id, <span class="php-quote">'display_type'</span>, <span class="php-keyword1">true</span> );
</span><span id="1130" class="l"><a class="l" href="source-function-woocommerce_comments.html#1130">1130 </a>
</span><span id="1131" class="l"><a class="l" href="source-function-woocommerce_comments.html#1131">1131 </a> <span class="php-keyword1">switch</span> ( <span class="php-var">$display_type</span> ) {
</span><span id="1132" class="l"><a class="l" href="source-function-woocommerce_comments.html#1132">1132 </a> <span class="php-keyword1">case</span> <span class="php-quote">'products'</span> :
</span><span id="1133" class="l"><a class="l" href="source-function-woocommerce_comments.html#1133">1133 </a> <span class="php-keyword1">return</span>;
</span><span id="1134" class="l"><a class="l" href="source-function-woocommerce_comments.html#1134">1134 </a> <span class="php-keyword1">break</span>;
</span><span id="1135" class="l"><a class="l" href="source-function-woocommerce_comments.html#1135">1135 </a> <span class="php-keyword1">case</span> <span class="php-quote">''</span> :
</span><span id="1136" class="l"><a class="l" href="source-function-woocommerce_comments.html#1136">1136 </a> <span class="php-keyword1">if</span> ( get_option( <span class="php-quote">'woocommerce_category_archive_display'</span> ) == <span class="php-quote">''</span> )
</span><span id="1137" class="l"><a class="l" href="source-function-woocommerce_comments.html#1137">1137 </a> <span class="php-keyword1">return</span>;
</span><span id="1138" class="l"><a class="l" href="source-function-woocommerce_comments.html#1138">1138 </a> <span class="php-keyword1">break</span>;
</span><span id="1139" class="l"><a class="l" href="source-function-woocommerce_comments.html#1139">1139 </a> }
</span><span id="1140" class="l"><a class="l" href="source-function-woocommerce_comments.html#1140">1140 </a> }
</span><span id="1141" class="l"><a class="l" href="source-function-woocommerce_comments.html#1141">1141 </a>
</span><span id="1142" class="l"><a class="l" href="source-function-woocommerce_comments.html#1142">1142 </a> <span class="php-comment">// NOTE: using child_of instead of parent - this is not ideal but due to a WP bug ( http://core.trac.wordpress.org/ticket/15626 ) pad_counts won't work</span>
</span><span id="1143" class="l"><a class="l" href="source-function-woocommerce_comments.html#1143">1143 </a> <span class="php-var">$args</span> = <span class="php-keyword1">array</span>(
</span><span id="1144" class="l"><a class="l" href="source-function-woocommerce_comments.html#1144">1144 </a> <span class="php-quote">'child_of'</span> => <span class="php-var">$parent_id</span>,
</span><span id="1145" class="l"><a class="l" href="source-function-woocommerce_comments.html#1145">1145 </a> <span class="php-quote">'menu_order'</span> => <span class="php-quote">'ASC'</span>,
</span><span id="1146" class="l"><a class="l" href="source-function-woocommerce_comments.html#1146">1146 </a> <span class="php-quote">'hide_empty'</span> => <span class="php-num">1</span>,
</span><span id="1147" class="l"><a class="l" href="source-function-woocommerce_comments.html#1147">1147 </a> <span class="php-quote">'hierarchical'</span> => <span class="php-num">1</span>,
</span><span id="1148" class="l"><a class="l" href="source-function-woocommerce_comments.html#1148">1148 </a> <span class="php-quote">'taxonomy'</span> => <span class="php-quote">'product_cat'</span>,
</span><span id="1149" class="l"><a class="l" href="source-function-woocommerce_comments.html#1149">1149 </a> <span class="php-quote">'pad_counts'</span> => <span class="php-num">1</span>
</span><span id="1150" class="l"><a class="l" href="source-function-woocommerce_comments.html#1150">1150 </a> );
</span><span id="1151" class="l"><a class="l" href="source-function-woocommerce_comments.html#1151">1151 </a> <span class="php-var">$product_categories</span> = get_categories( apply_filters( <span class="php-quote">'woocommerce_product_subcategories_args'</span>, <span class="php-var">$args</span> ) );
</span><span id="1152" class="l"><a class="l" href="source-function-woocommerce_comments.html#1152">1152 </a>
</span><span id="1153" class="l"><a class="l" href="source-function-woocommerce_comments.html#1153">1153 </a> <span class="php-var">$product_category_found</span> = <span class="php-keyword1">false</span>;
</span><span id="1154" class="l"><a class="l" href="source-function-woocommerce_comments.html#1154">1154 </a>
</span><span id="1155" class="l"><a class="l" href="source-function-woocommerce_comments.html#1155">1155 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$product_categories</span> ) {
</span><span id="1156" class="l"><a class="l" href="source-function-woocommerce_comments.html#1156">1156 </a>
</span><span id="1157" class="l"><a class="l" href="source-function-woocommerce_comments.html#1157">1157 </a> <span class="php-keyword1">foreach</span> ( <span class="php-var">$product_categories</span> <span class="php-keyword1">as</span> <span class="php-var">$category</span> ) {
</span><span id="1158" class="l"><a class="l" href="source-function-woocommerce_comments.html#1158">1158 </a>
</span><span id="1159" class="l"><a class="l" href="source-function-woocommerce_comments.html#1159">1159 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$category</span>->parent != <span class="php-var">$parent_id</span> )
</span><span id="1160" class="l"><a class="l" href="source-function-woocommerce_comments.html#1160">1160 </a> <span class="php-keyword1">continue</span>;
</span><span id="1161" class="l"><a class="l" href="source-function-woocommerce_comments.html#1161">1161 </a>
</span><span id="1162" class="l"><a class="l" href="source-function-woocommerce_comments.html#1162">1162 </a> <span class="php-keyword1">if</span> ( ! <span class="php-var">$product_category_found</span> ) {
</span><span id="1163" class="l"><a class="l" href="source-function-woocommerce_comments.html#1163">1163 </a> <span class="php-comment">// We found a category</span>
</span><span id="1164" class="l"><a class="l" href="source-function-woocommerce_comments.html#1164">1164 </a> <span class="php-var">$product_category_found</span> = <span class="php-keyword1">true</span>;
</span><span id="1165" class="l"><a class="l" href="source-function-woocommerce_comments.html#1165">1165 </a> <span class="php-keyword1">echo</span> <span class="php-var">$before</span>;
</span><span id="1166" class="l"><a class="l" href="source-function-woocommerce_comments.html#1166">1166 </a> }
</span><span id="1167" class="l"><a class="l" href="source-function-woocommerce_comments.html#1167">1167 </a>
</span><span id="1168" class="l"><a class="l" href="source-function-woocommerce_comments.html#1168">1168 </a> woocommerce_get_template( <span class="php-quote">'content-product_cat.php'</span>, <span class="php-keyword1">array</span>(
</span><span id="1169" class="l"><a class="l" href="source-function-woocommerce_comments.html#1169">1169 </a> <span class="php-quote">'category'</span> => <span class="php-var">$category</span>
</span><span id="1170" class="l"><a class="l" href="source-function-woocommerce_comments.html#1170">1170 </a> ) );
</span><span id="1171" class="l"><a class="l" href="source-function-woocommerce_comments.html#1171">1171 </a>
</span><span id="1172" class="l"><a class="l" href="source-function-woocommerce_comments.html#1172">1172 </a> }
</span><span id="1173" class="l"><a class="l" href="source-function-woocommerce_comments.html#1173">1173 </a>
</span><span id="1174" class="l"><a class="l" href="source-function-woocommerce_comments.html#1174">1174 </a> }
</span><span id="1175" class="l"><a class="l" href="source-function-woocommerce_comments.html#1175">1175 </a>
</span><span id="1176" class="l"><a class="l" href="source-function-woocommerce_comments.html#1176">1176 </a> <span class="php-comment">// If we are hiding products disable the loop and pagination</span>
</span><span id="1177" class="l"><a class="l" href="source-function-woocommerce_comments.html#1177">1177 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$product_category_found</span> ) {
</span><span id="1178" class="l"><a class="l" href="source-function-woocommerce_comments.html#1178">1178 </a> <span class="php-keyword1">if</span> ( is_product_category() ) {
</span><span id="1179" class="l"><a class="l" href="source-function-woocommerce_comments.html#1179">1179 </a> <span class="php-var">$display_type</span> = get_woocommerce_term_meta( <span class="php-var">$term</span>->term_id, <span class="php-quote">'display_type'</span>, <span class="php-keyword1">true</span> );
</span><span id="1180" class="l"><a class="l" href="source-function-woocommerce_comments.html#1180">1180 </a>
</span><span id="1181" class="l"><a class="l" href="source-function-woocommerce_comments.html#1181">1181 </a> <span class="php-keyword1">switch</span> ( <span class="php-var">$display_type</span> ) {
</span><span id="1182" class="l"><a class="l" href="source-function-woocommerce_comments.html#1182">1182 </a> <span class="php-keyword1">case</span> <span class="php-quote">'subcategories'</span> :
</span><span id="1183" class="l"><a class="l" href="source-function-woocommerce_comments.html#1183">1183 </a> <span class="php-var">$wp_query</span>->post_count = <span class="php-num">0</span>;
</span><span id="1184" class="l"><a class="l" href="source-function-woocommerce_comments.html#1184">1184 </a> <span class="php-var">$wp_query</span>->max_num_pages = <span class="php-num">0</span>;
</span><span id="1185" class="l"><a class="l" href="source-function-woocommerce_comments.html#1185">1185 </a> <span class="php-keyword1">break</span>;
</span><span id="1186" class="l"><a class="l" href="source-function-woocommerce_comments.html#1186">1186 </a> <span class="php-keyword1">case</span> <span class="php-quote">''</span> :
</span><span id="1187" class="l"><a class="l" href="source-function-woocommerce_comments.html#1187">1187 </a> <span class="php-keyword1">if</span> ( get_option( <span class="php-quote">'woocommerce_category_archive_display'</span> ) == <span class="php-quote">'subcategories'</span> ) {
</span><span id="1188" class="l"><a class="l" href="source-function-woocommerce_comments.html#1188">1188 </a> <span class="php-var">$wp_query</span>->post_count = <span class="php-num">0</span>;
</span><span id="1189" class="l"><a class="l" href="source-function-woocommerce_comments.html#1189">1189 </a> <span class="php-var">$wp_query</span>->max_num_pages = <span class="php-num">0</span>;
</span><span id="1190" class="l"><a class="l" href="source-function-woocommerce_comments.html#1190">1190 </a> }
</span><span id="1191" class="l"><a class="l" href="source-function-woocommerce_comments.html#1191">1191 </a> <span class="php-keyword1">break</span>;
</span><span id="1192" class="l"><a class="l" href="source-function-woocommerce_comments.html#1192">1192 </a> }
</span><span id="1193" class="l"><a class="l" href="source-function-woocommerce_comments.html#1193">1193 </a> }
</span><span id="1194" class="l"><a class="l" href="source-function-woocommerce_comments.html#1194">1194 </a> <span class="php-keyword1">if</span> ( is_shop() && get_option( <span class="php-quote">'woocommerce_shop_page_display'</span> ) == <span class="php-quote">'subcategories'</span> ) {
</span><span id="1195" class="l"><a class="l" href="source-function-woocommerce_comments.html#1195">1195 </a> <span class="php-var">$wp_query</span>->post_count = <span class="php-num">0</span>;
</span><span id="1196" class="l"><a class="l" href="source-function-woocommerce_comments.html#1196">1196 </a> <span class="php-var">$wp_query</span>->max_num_pages = <span class="php-num">0</span>;
</span><span id="1197" class="l"><a class="l" href="source-function-woocommerce_comments.html#1197">1197 </a> }
</span><span id="1198" class="l"><a class="l" href="source-function-woocommerce_comments.html#1198">1198 </a>
</span><span id="1199" class="l"><a class="l" href="source-function-woocommerce_comments.html#1199">1199 </a> <span class="php-keyword1">echo</span> <span class="php-var">$after</span>;
</span><span id="1200" class="l"><a class="l" href="source-function-woocommerce_comments.html#1200">1200 </a> <span class="php-keyword1">return</span> <span class="php-keyword1">true</span>;
</span><span id="1201" class="l"><a class="l" href="source-function-woocommerce_comments.html#1201">1201 </a> }
</span><span id="1202" class="l"><a class="l" href="source-function-woocommerce_comments.html#1202">1202 </a>
</span><span id="1203" class="l"><a class="l" href="source-function-woocommerce_comments.html#1203">1203 </a> }
</span><span id="1204" class="l"><a class="l" href="source-function-woocommerce_comments.html#1204">1204 </a>}
</span><span id="1205" class="l"><a class="l" href="source-function-woocommerce_comments.html#1205">1205 </a>
</span><span id="1206" class="l"><a class="l" href="source-function-woocommerce_comments.html#1206">1206 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_subcategory_thumbnail'</span> ) ) {
</span><span id="1207" class="l"><a class="l" href="source-function-woocommerce_comments.html#1207">1207 </a>
</span><span id="1208" class="l"><a class="l" href="source-function-woocommerce_comments.html#1208">1208 </a> <span class="php-comment">/**
</span></span><span id="1209" class="l"><a class="l" href="source-function-woocommerce_comments.html#1209">1209 </a><span class="php-comment"> * Show subcategory thumbnails.
</span></span><span id="1210" class="l"><a class="l" href="source-function-woocommerce_comments.html#1210">1210 </a><span class="php-comment"> *
</span></span><span id="1211" class="l"><a class="l" href="source-function-woocommerce_comments.html#1211">1211 </a><span class="php-comment"> * @access public
</span></span><span id="1212" class="l"><a class="l" href="source-function-woocommerce_comments.html#1212">1212 </a><span class="php-comment"> * @param mixed $category
</span></span><span id="1213" class="l"><a class="l" href="source-function-woocommerce_comments.html#1213">1213 </a><span class="php-comment"> * @subpackage Loop
</span></span><span id="1214" class="l"><a class="l" href="source-function-woocommerce_comments.html#1214">1214 </a><span class="php-comment"> * @return void
</span></span><span id="1215" class="l"><a class="l" href="source-function-woocommerce_comments.html#1215">1215 </a><span class="php-comment"> */</span>
</span><span id="1216" class="l"><a class="l" href="source-function-woocommerce_comments.html#1216">1216 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_subcategory_thumbnail" href="source-function-woocommerce_comments.html#_woocommerce_subcategory_thumbnail">woocommerce_subcategory_thumbnail</a>( <span class="php-var">$category</span> ) {
</span><span id="1217" class="l"><a class="l" href="source-function-woocommerce_comments.html#1217">1217 </a> <span class="php-keyword1">global</span> <span class="php-var">$woocommerce</span>;
</span><span id="1218" class="l"><a class="l" href="source-function-woocommerce_comments.html#1218">1218 </a>
</span><span id="1219" class="l"><a class="l" href="source-function-woocommerce_comments.html#1219">1219 </a> <span class="php-var">$small_thumbnail_size</span> = apply_filters( <span class="php-quote">'single_product_small_thumbnail_size'</span>, <span class="php-quote">'shop_catalog'</span> );
</span><span id="1220" class="l"><a class="l" href="source-function-woocommerce_comments.html#1220">1220 </a> <span class="php-var">$dimensions</span> = <span class="php-var">$woocommerce</span>->get_image_size( <span class="php-var">$small_thumbnail_size</span> );
</span><span id="1221" class="l"><a class="l" href="source-function-woocommerce_comments.html#1221">1221 </a> <span class="php-var">$thumbnail_id</span> = get_woocommerce_term_meta( <span class="php-var">$category</span>->term_id, <span class="php-quote">'thumbnail_id'</span>, <span class="php-keyword1">true</span> );
</span><span id="1222" class="l"><a class="l" href="source-function-woocommerce_comments.html#1222">1222 </a>
</span><span id="1223" class="l"><a class="l" href="source-function-woocommerce_comments.html#1223">1223 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$thumbnail_id</span> ) {
</span><span id="1224" class="l"><a class="l" href="source-function-woocommerce_comments.html#1224">1224 </a> <span class="php-var">$image</span> = wp_get_attachment_image_src( <span class="php-var">$thumbnail_id</span>, <span class="php-var">$small_thumbnail_size</span> );
</span><span id="1225" class="l"><a class="l" href="source-function-woocommerce_comments.html#1225">1225 </a> <span class="php-var">$image</span> = <span class="php-var">$image</span>[<span class="php-num">0</span>];
</span><span id="1226" class="l"><a class="l" href="source-function-woocommerce_comments.html#1226">1226 </a> } <span class="php-keyword1">else</span> {
</span><span id="1227" class="l"><a class="l" href="source-function-woocommerce_comments.html#1227">1227 </a> <span class="php-var">$image</span> = woocommerce_placeholder_img_src();
</span><span id="1228" class="l"><a class="l" href="source-function-woocommerce_comments.html#1228">1228 </a> }
</span><span id="1229" class="l"><a class="l" href="source-function-woocommerce_comments.html#1229">1229 </a>
</span><span id="1230" class="l"><a class="l" href="source-function-woocommerce_comments.html#1230">1230 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$image</span> )
</span><span id="1231" class="l"><a class="l" href="source-function-woocommerce_comments.html#1231">1231 </a> <span class="php-keyword1">echo</span> <span class="php-quote">'<img src="'</span> . <span class="php-var">$image</span> . <span class="php-quote">'" alt="'</span> . <span class="php-var">$category</span>->name . <span class="php-quote">'" width="'</span> . <span class="php-var">$dimensions</span>[<span class="php-quote">'width'</span>] . <span class="php-quote">'" height="'</span> . <span class="php-var">$dimensions</span>[<span class="php-quote">'height'</span>] . <span class="php-quote">'" />'</span>;
</span><span id="1232" class="l"><a class="l" href="source-function-woocommerce_comments.html#1232">1232 </a> }
</span><span id="1233" class="l"><a class="l" href="source-function-woocommerce_comments.html#1233">1233 </a>}
</span><span id="1234" class="l"><a class="l" href="source-function-woocommerce_comments.html#1234">1234 </a>
</span><span id="1235" class="l"><a class="l" href="source-function-woocommerce_comments.html#1235">1235 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_order_details_table'</span> ) ) {
</span><span id="1236" class="l"><a class="l" href="source-function-woocommerce_comments.html#1236">1236 </a>
</span><span id="1237" class="l"><a class="l" href="source-function-woocommerce_comments.html#1237">1237 </a> <span class="php-comment">/**
</span></span><span id="1238" class="l"><a class="l" href="source-function-woocommerce_comments.html#1238">1238 </a><span class="php-comment"> * Displays order details in a table.
</span></span><span id="1239" class="l"><a class="l" href="source-function-woocommerce_comments.html#1239">1239 </a><span class="php-comment"> *
</span></span><span id="1240" class="l"><a class="l" href="source-function-woocommerce_comments.html#1240">1240 </a><span class="php-comment"> * @access public
</span></span><span id="1241" class="l"><a class="l" href="source-function-woocommerce_comments.html#1241">1241 </a><span class="php-comment"> * @param mixed $order_id
</span></span><span id="1242" class="l"><a class="l" href="source-function-woocommerce_comments.html#1242">1242 </a><span class="php-comment"> * @subpackage Orders
</span></span><span id="1243" class="l"><a class="l" href="source-function-woocommerce_comments.html#1243">1243 </a><span class="php-comment"> * @return void
</span></span><span id="1244" class="l"><a class="l" href="source-function-woocommerce_comments.html#1244">1244 </a><span class="php-comment"> */</span>
</span><span id="1245" class="l"><a class="l" href="source-function-woocommerce_comments.html#1245">1245 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_order_details_table" href="source-function-woocommerce_comments.html#_woocommerce_order_details_table">woocommerce_order_details_table</a>( <span class="php-var">$order_id</span> ) {
</span><span id="1246" class="l"><a class="l" href="source-function-woocommerce_comments.html#1246">1246 </a> <span class="php-keyword1">if</span> ( ! <span class="php-var">$order_id</span> ) <span class="php-keyword1">return</span>;
</span><span id="1247" class="l"><a class="l" href="source-function-woocommerce_comments.html#1247">1247 </a>
</span><span id="1248" class="l"><a class="l" href="source-function-woocommerce_comments.html#1248">1248 </a> woocommerce_get_template( <span class="php-quote">'order/order-details.php'</span>, <span class="php-keyword1">array</span>(
</span><span id="1249" class="l"><a class="l" href="source-function-woocommerce_comments.html#1249">1249 </a> <span class="php-quote">'order_id'</span> => <span class="php-var">$order_id</span>
</span><span id="1250" class="l"><a class="l" href="source-function-woocommerce_comments.html#1250">1250 </a> ) );
</span><span id="1251" class="l"><a class="l" href="source-function-woocommerce_comments.html#1251">1251 </a> }
</span><span id="1252" class="l"><a class="l" href="source-function-woocommerce_comments.html#1252">1252 </a>}
</span><span id="1253" class="l"><a class="l" href="source-function-woocommerce_comments.html#1253">1253 </a>
</span><span id="1254" class="l"><a class="l" href="source-function-woocommerce_comments.html#1254">1254 </a><span class="php-comment">/** Forms ****************************************************************/</span>
</span><span id="1255" class="l"><a class="l" href="source-function-woocommerce_comments.html#1255">1255 </a>
</span><span id="1256" class="l"><a class="l" href="source-function-woocommerce_comments.html#1256">1256 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'woocommerce_form_field'</span> ) ) {
</span><span id="1257" class="l"><a class="l" href="source-function-woocommerce_comments.html#1257">1257 </a>
</span><span id="1258" class="l"><a class="l" href="source-function-woocommerce_comments.html#1258">1258 </a> <span class="php-comment">/**
</span></span><span id="1259" class="l"><a class="l" href="source-function-woocommerce_comments.html#1259">1259 </a><span class="php-comment"> * Outputs a checkout/address form field.
</span></span><span id="1260" class="l"><a class="l" href="source-function-woocommerce_comments.html#1260">1260 </a><span class="php-comment"> *
</span></span><span id="1261" class="l"><a class="l" href="source-function-woocommerce_comments.html#1261">1261 </a><span class="php-comment"> * @access public
</span></span><span id="1262" class="l"><a class="l" href="source-function-woocommerce_comments.html#1262">1262 </a><span class="php-comment"> * @subpackage Forms
</span></span><span id="1263" class="l"><a class="l" href="source-function-woocommerce_comments.html#1263">1263 </a><span class="php-comment"> * @param mixed $key
</span></span><span id="1264" class="l"><a class="l" href="source-function-woocommerce_comments.html#1264">1264 </a><span class="php-comment"> * @param mixed $args
</span></span><span id="1265" class="l"><a class="l" href="source-function-woocommerce_comments.html#1265">1265 </a><span class="php-comment"> * @param string $value (default: null)
</span></span><span id="1266" class="l"><a class="l" href="source-function-woocommerce_comments.html#1266">1266 </a><span class="php-comment"> * @return void
</span></span><span id="1267" class="l"><a class="l" href="source-function-woocommerce_comments.html#1267">1267 </a><span class="php-comment"> */</span>
</span><span id="1268" class="l"><a class="l" href="source-function-woocommerce_comments.html#1268">1268 </a> <span class="php-keyword1">function</span> <a id="_woocommerce_form_field" href="source-function-woocommerce_comments.html#_woocommerce_form_field">woocommerce_form_field</a>( <span class="php-var">$key</span>, <span class="php-var">$args</span>, <span class="php-var">$value</span> = <span class="php-keyword1">null</span> ) {
</span><span id="1269" class="l"><a class="l" href="source-function-woocommerce_comments.html#1269">1269 </a> <span class="php-keyword1">global</span> <span class="php-var">$woocommerce</span>;
</span><span id="1270" class="l"><a class="l" href="source-function-woocommerce_comments.html#1270">1270 </a>
</span><span id="1271" class="l"><a class="l" href="source-function-woocommerce_comments.html#1271">1271 </a> <span class="php-var">$defaults</span> = <span class="php-keyword1">array</span>(
</span><span id="1272" class="l"><a class="l" href="source-function-woocommerce_comments.html#1272">1272 </a> <span class="php-quote">'type'</span> => <span class="php-quote">'text'</span>,
</span><span id="1273" class="l"><a class="l" href="source-function-woocommerce_comments.html#1273">1273 </a> <span class="php-quote">'label'</span> => <span class="php-quote">''</span>,
</span><span id="1274" class="l"><a class="l" href="source-function-woocommerce_comments.html#1274">1274 </a> <span class="php-quote">'placeholder'</span> => <span class="php-quote">''</span>,
</span><span id="1275" class="l"><a class="l" href="source-function-woocommerce_comments.html#1275">1275 </a> <span class="php-quote">'maxlength'</span> => <span class="php-keyword1">false</span>,
</span><span id="1276" class="l"><a class="l" href="source-function-woocommerce_comments.html#1276">1276 </a> <span class="php-quote">'required'</span> => <span class="php-keyword1">false</span>,
</span><span id="1277" class="l"><a class="l" href="source-function-woocommerce_comments.html#1277">1277 </a> <span class="php-quote">'class'</span> => <span class="php-keyword1">array</span>(),
</span><span id="1278" class="l"><a class="l" href="source-function-woocommerce_comments.html#1278">1278 </a> <span class="php-quote">'label_class'</span> => <span class="php-keyword1">array</span>(),
</span><span id="1279" class="l"><a class="l" href="source-function-woocommerce_comments.html#1279">1279 </a> <span class="php-quote">'return'</span> => <span class="php-keyword1">false</span>,
</span><span id="1280" class="l"><a class="l" href="source-function-woocommerce_comments.html#1280">1280 </a> <span class="php-quote">'options'</span> => <span class="php-keyword1">array</span>(),
</span><span id="1281" class="l"><a class="l" href="source-function-woocommerce_comments.html#1281">1281 </a> <span class="php-quote">'custom_attributes'</span> => <span class="php-keyword1">array</span>(),
</span><span id="1282" class="l"><a class="l" href="source-function-woocommerce_comments.html#1282">1282 </a> <span class="php-quote">'validate'</span> => <span class="php-keyword1">array</span>(),
</span><span id="1283" class="l"><a class="l" href="source-function-woocommerce_comments.html#1283">1283 </a> <span class="php-quote">'default'</span> => <span class="php-quote">''</span>,
</span><span id="1284" class="l"><a class="l" href="source-function-woocommerce_comments.html#1284">1284 </a> );
</span><span id="1285" class="l"><a class="l" href="source-function-woocommerce_comments.html#1285">1285 </a>
</span><span id="1286" class="l"><a class="l" href="source-function-woocommerce_comments.html#1286">1286 </a> <span class="php-var">$args</span> = wp_parse_args( <span class="php-var">$args</span>, <span class="php-var">$defaults</span> );
</span><span id="1287" class="l"><a class="l" href="source-function-woocommerce_comments.html#1287">1287 </a>
</span><span id="1288" class="l"><a class="l" href="source-function-woocommerce_comments.html#1288">1288 </a> <span class="php-keyword1">if</span> ( ( ! <span class="php-keyword1">empty</span>( <span class="php-var">$args</span>[<span class="php-quote">'clear'</span>] ) ) ) <span class="php-var">$after</span> = <span class="php-quote">'<div class="clear"></div>'</span>; <span class="php-keyword1">else</span> <span class="php-var">$after</span> = <span class="php-quote">''</span>;
</span><span id="1289" class="l"><a class="l" href="source-function-woocommerce_comments.html#1289">1289 </a>
</span><span id="1290" class="l"><a class="l" href="source-function-woocommerce_comments.html#1290">1290 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$args</span>[<span class="php-quote">'required'</span>] ) {
</span><span id="1291" class="l"><a class="l" href="source-function-woocommerce_comments.html#1291">1291 </a> <span class="php-var">$args</span>[<span class="php-quote">'class'</span>][] = <span class="php-quote">'validate-required'</span>;
</span><span id="1292" class="l"><a class="l" href="source-function-woocommerce_comments.html#1292">1292 </a> <span class="php-var">$required</span> = <span class="php-quote">' <abbr class="required" title="'</span> . esc_attr__( <span class="php-quote">'required'</span>, <span class="php-quote">'woocommerce'</span> ) . <span class="php-quote">'">*</abbr>'</span>;
</span><span id="1293" class="l"><a class="l" href="source-function-woocommerce_comments.html#1293">1293 </a> } <span class="php-keyword1">else</span> {
</span><span id="1294" class="l"><a class="l" href="source-function-woocommerce_comments.html#1294">1294 </a> <span class="php-var">$required</span> = <span class="php-quote">''</span>;
</span><span id="1295" class="l"><a class="l" href="source-function-woocommerce_comments.html#1295">1295 </a> }
</span><span id="1296" class="l"><a class="l" href="source-function-woocommerce_comments.html#1296">1296 </a>
</span><span id="1297" class="l"><a class="l" href="source-function-woocommerce_comments.html#1297">1297 </a> <span class="php-var">$args</span>[<span class="php-quote">'maxlength'</span>] = ( <span class="php-var">$args</span>[<span class="php-quote">'maxlength'</span>] ) ? <span class="php-quote">'maxlength="'</span> . absint( <span class="php-var">$args</span>[<span class="php-quote">'maxlength'</span>] ) . <span class="php-quote">'"'</span> : <span class="php-quote">''</span>;
</span><span id="1298" class="l"><a class="l" href="source-function-woocommerce_comments.html#1298">1298 </a>
</span><span id="1299" class="l"><a class="l" href="source-function-woocommerce_comments.html#1299">1299 </a> <span class="php-keyword1">if</span> ( <span class="php-keyword2">is_null</span>( <span class="php-var">$value</span> ) )
</span><span id="1300" class="l"><a class="l" href="source-function-woocommerce_comments.html#1300">1300 </a> <span class="php-var">$value</span> = <span class="php-var">$args</span>[<span class="php-quote">'default'</span>];
</span><span id="1301" class="l"><a class="l" href="source-function-woocommerce_comments.html#1301">1301 </a>
</span><span id="1302" class="l"><a class="l" href="source-function-woocommerce_comments.html#1302">1302 </a> <span class="php-comment">// Custom attribute handling</span>
</span><span id="1303" class="l"><a class="l" href="source-function-woocommerce_comments.html#1303">1303 </a> <span class="php-var">$custom_attributes</span> = <span class="php-keyword1">array</span>();
</span><span id="1304" class="l"><a class="l" href="source-function-woocommerce_comments.html#1304">1304 </a>
</span><span id="1305" class="l"><a class="l" href="source-function-woocommerce_comments.html#1305">1305 </a> <span class="php-keyword1">if</span> ( ! <span class="php-keyword1">empty</span>( <span class="php-var">$args</span>[<span class="php-quote">'custom_attributes'</span>] ) && <span class="php-keyword2">is_array</span>( <span class="php-var">$args</span>[<span class="php-quote">'custom_attributes'</span>] ) )
</span><span id="1306" class="l"><a class="l" href="source-function-woocommerce_comments.html#1306">1306 </a> <span class="php-keyword1">foreach</span> ( <span class="php-var">$args</span>[<span class="php-quote">'custom_attributes'</span>] <span class="php-keyword1">as</span> <span class="php-var">$attribute</span> => <span class="php-var">$attribute_value</span> )
</span><span id="1307" class="l"><a class="l" href="source-function-woocommerce_comments.html#1307">1307 </a> <span class="php-var">$custom_attributes</span>[] = esc_attr( <span class="php-var">$attribute</span> ) . <span class="php-quote">'="'</span> . esc_attr( <span class="php-var">$attribute_value</span> ) . <span class="php-quote">'"'</span>;
</span><span id="1308" class="l"><a class="l" href="source-function-woocommerce_comments.html#1308">1308 </a>
</span><span id="1309" class="l"><a class="l" href="source-function-woocommerce_comments.html#1309">1309 </a> <span class="php-keyword1">if</span> ( ! <span class="php-keyword1">empty</span>( <span class="php-var">$args</span>[<span class="php-quote">'validate'</span>] ) )
</span><span id="1310" class="l"><a class="l" href="source-function-woocommerce_comments.html#1310">1310 </a> <span class="php-keyword1">foreach</span>( <span class="php-var">$args</span>[<span class="php-quote">'validate'</span>] <span class="php-keyword1">as</span> <span class="php-var">$validate</span> )
</span><span id="1311" class="l"><a class="l" href="source-function-woocommerce_comments.html#1311">1311 </a> <span class="php-var">$args</span>[<span class="php-quote">'class'</span>][] = <span class="php-quote">'validate-'</span> . <span class="php-var">$validate</span>;
</span><span id="1312" class="l"><a class="l" href="source-function-woocommerce_comments.html#1312">1312 </a>
</span><span id="1313" class="l"><a class="l" href="source-function-woocommerce_comments.html#1313">1313 </a> <span class="php-keyword1">switch</span> ( <span class="php-var">$args</span>[<span class="php-quote">'type'</span>] ) {
</span><span id="1314" class="l"><a class="l" href="source-function-woocommerce_comments.html#1314">1314 </a> <span class="php-keyword1">case</span> <span class="php-quote">"country"</span> :
</span><span id="1315" class="l"><a class="l" href="source-function-woocommerce_comments.html#1315">1315 </a>
</span><span id="1316" class="l"><a class="l" href="source-function-woocommerce_comments.html#1316">1316 </a> <span class="php-keyword1">if</span> ( <span class="php-keyword2">sizeof</span>( <span class="php-var">$woocommerce</span>->countries->get_allowed_countries() ) == <span class="php-num">1</span> ) {
</span><span id="1317" class="l"><a class="l" href="source-function-woocommerce_comments.html#1317">1317 </a>
</span><span id="1318" class="l"><a class="l" href="source-function-woocommerce_comments.html#1318">1318 </a> <span class="php-var">$field</span> = <span class="php-quote">'<p class="form-row '</span> . esc_attr( <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$args</span>[<span class="php-quote">'class'</span>] ) ) .<span class="php-quote">'" id="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'_field">'</span>;
</span><span id="1319" class="l"><a class="l" href="source-function-woocommerce_comments.html#1319">1319 </a>
</span><span id="1320" class="l"><a class="l" href="source-function-woocommerce_comments.html#1320">1320 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$args</span>[<span class="php-quote">'label'</span>] )
</span><span id="1321" class="l"><a class="l" href="source-function-woocommerce_comments.html#1321">1321 </a> <span class="php-var">$field</span> .= <span class="php-quote">'<label class="'</span> . <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$args</span>[<span class="php-quote">'label_class'</span>] ) .<span class="php-quote">'">'</span> . <span class="php-var">$args</span>[<span class="php-quote">'label'</span>] . <span class="php-quote">'</label>'</span>;
</span><span id="1322" class="l"><a class="l" href="source-function-woocommerce_comments.html#1322">1322 </a>
</span><span id="1323" class="l"><a class="l" href="source-function-woocommerce_comments.html#1323">1323 </a> <span class="php-var">$field</span> .= <span class="php-quote">'<strong>'</span> . <span class="php-keyword2">current</span>( <span class="php-keyword2">array_values</span>( <span class="php-var">$woocommerce</span>->countries->get_allowed_countries() ) ) . <span class="php-quote">'</strong>'</span>;
</span><span id="1324" class="l"><a class="l" href="source-function-woocommerce_comments.html#1324">1324 </a>
</span><span id="1325" class="l"><a class="l" href="source-function-woocommerce_comments.html#1325">1325 </a> <span class="php-var">$field</span> .= <span class="php-quote">'<input type="hidden" name="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" id="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" value="'</span> . <span class="php-keyword2">current</span>( <span class="php-keyword2">array_keys</span>( <span class="php-var">$woocommerce</span>->countries->get_allowed_countries() ) ) . <span class="php-quote">'" '</span> . <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$custom_attributes</span> ) . <span class="php-quote">' />'</span>;
</span><span id="1326" class="l"><a class="l" href="source-function-woocommerce_comments.html#1326">1326 </a>
</span><span id="1327" class="l"><a class="l" href="source-function-woocommerce_comments.html#1327">1327 </a> <span class="php-var">$field</span> .= <span class="php-quote">'</p>'</span> . <span class="php-var">$after</span>;
</span><span id="1328" class="l"><a class="l" href="source-function-woocommerce_comments.html#1328">1328 </a>
</span><span id="1329" class="l"><a class="l" href="source-function-woocommerce_comments.html#1329">1329 </a> } <span class="php-keyword1">else</span> {
</span><span id="1330" class="l"><a class="l" href="source-function-woocommerce_comments.html#1330">1330 </a>
</span><span id="1331" class="l"><a class="l" href="source-function-woocommerce_comments.html#1331">1331 </a> <span class="php-var">$field</span> = <span class="php-quote">'<p class="form-row '</span> . esc_attr( <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$args</span>[<span class="php-quote">'class'</span>] ) ) .<span class="php-quote">'" id="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'_field">
</span></span><span id="1332" class="l"><a class="l" href="source-function-woocommerce_comments.html#1332">1332 </a><span class="php-quote"> <label for="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" class="'</span> . <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$args</span>[<span class="php-quote">'label_class'</span>] ) .<span class="php-quote">'">'</span> . <span class="php-var">$args</span>[<span class="php-quote">'label'</span>]. <span class="php-var">$required</span> . <span class="php-quote">'</label>
</span></span><span id="1333" class="l"><a class="l" href="source-function-woocommerce_comments.html#1333">1333 </a><span class="php-quote"> <select name="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" id="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" class="country_to_state country_select" '</span> . <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$custom_attributes</span> ) . <span class="php-quote">'>
</span></span><span id="1334" class="l"><a class="l" href="source-function-woocommerce_comments.html#1334">1334 </a><span class="php-quote"> <option value="">'</span>.__( <span class="php-quote">'Select a country&hellip;'</span>, <span class="php-quote">'woocommerce'</span> ) .<span class="php-quote">'</option>'</span>;
</span><span id="1335" class="l"><a class="l" href="source-function-woocommerce_comments.html#1335">1335 </a>
</span><span id="1336" class="l"><a class="l" href="source-function-woocommerce_comments.html#1336">1336 </a> <span class="php-keyword1">foreach</span> ( <span class="php-var">$woocommerce</span>->countries->get_allowed_countries() <span class="php-keyword1">as</span> <span class="php-var">$ckey</span> => <span class="php-var">$cvalue</span> )
</span><span id="1337" class="l"><a class="l" href="source-function-woocommerce_comments.html#1337">1337 </a> <span class="php-var">$field</span> .= <span class="php-quote">'<option value="'</span> . <span class="php-var">$ckey</span> . <span class="php-quote">'" '</span>.selected( <span class="php-var">$value</span>, <span class="php-var">$ckey</span>, <span class="php-keyword1">false</span> ) .<span class="php-quote">'>'</span>.__( <span class="php-var">$cvalue</span>, <span class="php-quote">'woocommerce'</span> ) .<span class="php-quote">'</option>'</span>;
</span><span id="1338" class="l"><a class="l" href="source-function-woocommerce_comments.html#1338">1338 </a>
</span><span id="1339" class="l"><a class="l" href="source-function-woocommerce_comments.html#1339">1339 </a> <span class="php-var">$field</span> .= <span class="php-quote">'</select>'</span>;
</span><span id="1340" class="l"><a class="l" href="source-function-woocommerce_comments.html#1340">1340 </a>
</span><span id="1341" class="l"><a class="l" href="source-function-woocommerce_comments.html#1341">1341 </a> <span class="php-var">$field</span> .= <span class="php-quote">'<noscript><input type="submit" name="woocommerce_checkout_update_totals" value="'</span> . __( <span class="php-quote">'Update country'</span>, <span class="php-quote">'woocommerce'</span> ) . <span class="php-quote">'" /></noscript>'</span>;
</span><span id="1342" class="l"><a class="l" href="source-function-woocommerce_comments.html#1342">1342 </a>
</span><span id="1343" class="l"><a class="l" href="source-function-woocommerce_comments.html#1343">1343 </a> <span class="php-var">$field</span> .= <span class="php-quote">'</p>'</span> . <span class="php-var">$after</span>;
</span><span id="1344" class="l"><a class="l" href="source-function-woocommerce_comments.html#1344">1344 </a>
</span><span id="1345" class="l"><a class="l" href="source-function-woocommerce_comments.html#1345">1345 </a> }
</span><span id="1346" class="l"><a class="l" href="source-function-woocommerce_comments.html#1346">1346 </a>
</span><span id="1347" class="l"><a class="l" href="source-function-woocommerce_comments.html#1347">1347 </a> <span class="php-keyword1">break</span>;
</span><span id="1348" class="l"><a class="l" href="source-function-woocommerce_comments.html#1348">1348 </a> <span class="php-keyword1">case</span> <span class="php-quote">"state"</span> :
</span><span id="1349" class="l"><a class="l" href="source-function-woocommerce_comments.html#1349">1349 </a>
</span><span id="1350" class="l"><a class="l" href="source-function-woocommerce_comments.html#1350">1350 </a> <span class="php-comment">/* Get Country */</span>
</span><span id="1351" class="l"><a class="l" href="source-function-woocommerce_comments.html#1351">1351 </a> <span class="php-var">$country_key</span> = <span class="php-var">$key</span> == <span class="php-quote">'billing_state'</span>? <span class="php-quote">'billing_country'</span> : <span class="php-quote">'shipping_country'</span>;
</span><span id="1352" class="l"><a class="l" href="source-function-woocommerce_comments.html#1352">1352 </a>
</span><span id="1353" class="l"><a class="l" href="source-function-woocommerce_comments.html#1353">1353 </a> <span class="php-keyword1">if</span> ( <span class="php-keyword1">isset</span>( <span class="php-var">$_POST</span>[ <span class="php-var">$country_key</span> ] ) ) {
</span><span id="1354" class="l"><a class="l" href="source-function-woocommerce_comments.html#1354">1354 </a> <span class="php-var">$current_cc</span> = woocommerce_clean( <span class="php-var">$_POST</span>[ <span class="php-var">$country_key</span> ] );
</span><span id="1355" class="l"><a class="l" href="source-function-woocommerce_comments.html#1355">1355 </a> } <span class="php-keyword1">elseif</span> ( is_user_logged_in() ) {
</span><span id="1356" class="l"><a class="l" href="source-function-woocommerce_comments.html#1356">1356 </a> <span class="php-var">$current_cc</span> = get_user_meta( get_current_user_id() , <span class="php-var">$country_key</span>, <span class="php-keyword1">true</span> );
</span><span id="1357" class="l"><a class="l" href="source-function-woocommerce_comments.html#1357">1357 </a> <span class="php-keyword1">if</span> ( ! <span class="php-var">$current_cc</span>) {
</span><span id="1358" class="l"><a class="l" href="source-function-woocommerce_comments.html#1358">1358 </a> <span class="php-var">$current_cc</span> = apply_filters(<span class="php-quote">'default_checkout_country'</span>, (<span class="php-var">$woocommerce</span>->customer->get_country()) ? <span class="php-var">$woocommerce</span>->customer->get_country() : <span class="php-var">$woocommerce</span>->countries->get_base_country());
</span><span id="1359" class="l"><a class="l" href="source-function-woocommerce_comments.html#1359">1359 </a> }
</span><span id="1360" class="l"><a class="l" href="source-function-woocommerce_comments.html#1360">1360 </a> } <span class="php-keyword1">elseif</span> ( <span class="php-var">$country_key</span> == <span class="php-quote">'billing_country'</span> ) {
</span><span id="1361" class="l"><a class="l" href="source-function-woocommerce_comments.html#1361">1361 </a> <span class="php-var">$current_cc</span> = apply_filters(<span class="php-quote">'default_checkout_country'</span>, (<span class="php-var">$woocommerce</span>->customer->get_country()) ? <span class="php-var">$woocommerce</span>->customer->get_country() : <span class="php-var">$woocommerce</span>->countries->get_base_country());
</span><span id="1362" class="l"><a class="l" href="source-function-woocommerce_comments.html#1362">1362 </a> } <span class="php-keyword1">else</span> {
</span><span id="1363" class="l"><a class="l" href="source-function-woocommerce_comments.html#1363">1363 </a> <span class="php-var">$current_cc</span> = apply_filters(<span class="php-quote">'default_checkout_country'</span>, (<span class="php-var">$woocommerce</span>->customer->get_shipping_country()) ? <span class="php-var">$woocommerce</span>->customer->get_shipping_country() : <span class="php-var">$woocommerce</span>->countries->get_base_country());
</span><span id="1364" class="l"><a class="l" href="source-function-woocommerce_comments.html#1364">1364 </a> }
</span><span id="1365" class="l"><a class="l" href="source-function-woocommerce_comments.html#1365">1365 </a>
</span><span id="1366" class="l"><a class="l" href="source-function-woocommerce_comments.html#1366">1366 </a> <span class="php-var">$states</span> = <span class="php-var">$woocommerce</span>->countries->get_states( <span class="php-var">$current_cc</span> );
</span><span id="1367" class="l"><a class="l" href="source-function-woocommerce_comments.html#1367">1367 </a>
</span><span id="1368" class="l"><a class="l" href="source-function-woocommerce_comments.html#1368">1368 </a> <span class="php-keyword1">if</span> ( <span class="php-keyword2">is_array</span>( <span class="php-var">$states</span> ) && <span class="php-keyword1">empty</span>( <span class="php-var">$states</span> ) ) {
</span><span id="1369" class="l"><a class="l" href="source-function-woocommerce_comments.html#1369">1369 </a>
</span><span id="1370" class="l"><a class="l" href="source-function-woocommerce_comments.html#1370">1370 </a> <span class="php-var">$field</span> = <span class="php-quote">'<p class="form-row '</span> . esc_attr( <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$args</span>[<span class="php-quote">'class'</span>] ) ) .<span class="php-quote">'" id="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'_field" style="display: none">'</span>;
</span><span id="1371" class="l"><a class="l" href="source-function-woocommerce_comments.html#1371">1371 </a>
</span><span id="1372" class="l"><a class="l" href="source-function-woocommerce_comments.html#1372">1372 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$args</span>[<span class="php-quote">'label'</span>] )
</span><span id="1373" class="l"><a class="l" href="source-function-woocommerce_comments.html#1373">1373 </a> <span class="php-var">$field</span> .= <span class="php-quote">'<label for="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" class="'</span> . <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$args</span>[<span class="php-quote">'label_class'</span>] ) .<span class="php-quote">'">'</span> . <span class="php-var">$args</span>[<span class="php-quote">'label'</span>] . <span class="php-var">$required</span> . <span class="php-quote">'</label>'</span>;
</span><span id="1374" class="l"><a class="l" href="source-function-woocommerce_comments.html#1374">1374 </a> <span class="php-var">$field</span> .= <span class="php-quote">'<input type="hidden" class="hidden" name="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" id="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" value="" '</span> . <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$custom_attributes</span> ) . <span class="php-quote">' placeholder="'</span> . <span class="php-var">$args</span>[<span class="php-quote">'placeholder'</span>] . <span class="php-quote">'" />'</span>;
</span><span id="1375" class="l"><a class="l" href="source-function-woocommerce_comments.html#1375">1375 </a> <span class="php-var">$field</span> .= <span class="php-quote">'</p>'</span> . <span class="php-var">$after</span>;
</span><span id="1376" class="l"><a class="l" href="source-function-woocommerce_comments.html#1376">1376 </a>
</span><span id="1377" class="l"><a class="l" href="source-function-woocommerce_comments.html#1377">1377 </a> } <span class="php-keyword1">elseif</span> ( <span class="php-keyword2">is_array</span>( <span class="php-var">$states</span> ) ) {
</span><span id="1378" class="l"><a class="l" href="source-function-woocommerce_comments.html#1378">1378 </a>
</span><span id="1379" class="l"><a class="l" href="source-function-woocommerce_comments.html#1379">1379 </a> <span class="php-var">$field</span> = <span class="php-quote">'<p class="form-row '</span> . esc_attr( <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$args</span>[<span class="php-quote">'class'</span>] ) ) .<span class="php-quote">'" id="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'_field">'</span>;
</span><span id="1380" class="l"><a class="l" href="source-function-woocommerce_comments.html#1380">1380 </a>
</span><span id="1381" class="l"><a class="l" href="source-function-woocommerce_comments.html#1381">1381 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$args</span>[<span class="php-quote">'label'</span>] )
</span><span id="1382" class="l"><a class="l" href="source-function-woocommerce_comments.html#1382">1382 </a> <span class="php-var">$field</span> .= <span class="php-quote">'<label for="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" class="'</span> . <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$args</span>[<span class="php-quote">'label_class'</span>] ) .<span class="php-quote">'">'</span> . <span class="php-var">$args</span>[<span class="php-quote">'label'</span>]. <span class="php-var">$required</span> . <span class="php-quote">'</label>'</span>;
</span><span id="1383" class="l"><a class="l" href="source-function-woocommerce_comments.html#1383">1383 </a> <span class="php-var">$field</span> .= <span class="php-quote">'<select name="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" id="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" class="state_select" '</span> . <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$custom_attributes</span> ) . <span class="php-quote">' placeholder="'</span> . <span class="php-var">$args</span>[<span class="php-quote">'placeholder'</span>] . <span class="php-quote">'">
</span></span><span id="1384" class="l"><a class="l" href="source-function-woocommerce_comments.html#1384">1384 </a><span class="php-quote"> <option value="">'</span>.__( <span class="php-quote">'Select a state&hellip;'</span>, <span class="php-quote">'woocommerce'</span> ) .<span class="php-quote">'</option>'</span>;
</span><span id="1385" class="l"><a class="l" href="source-function-woocommerce_comments.html#1385">1385 </a>
</span><span id="1386" class="l"><a class="l" href="source-function-woocommerce_comments.html#1386">1386 </a> <span class="php-keyword1">foreach</span> ( <span class="php-var">$states</span> <span class="php-keyword1">as</span> <span class="php-var">$ckey</span> => <span class="php-var">$cvalue</span> )
</span><span id="1387" class="l"><a class="l" href="source-function-woocommerce_comments.html#1387">1387 </a> <span class="php-var">$field</span> .= <span class="php-quote">'<option value="'</span> . <span class="php-var">$ckey</span> . <span class="php-quote">'" '</span>.selected( <span class="php-var">$value</span>, <span class="php-var">$ckey</span>, <span class="php-keyword1">false</span> ) .<span class="php-quote">'>'</span>.__( <span class="php-var">$cvalue</span>, <span class="php-quote">'woocommerce'</span> ) .<span class="php-quote">'</option>'</span>;
</span><span id="1388" class="l"><a class="l" href="source-function-woocommerce_comments.html#1388">1388 </a>
</span><span id="1389" class="l"><a class="l" href="source-function-woocommerce_comments.html#1389">1389 </a> <span class="php-var">$field</span> .= <span class="php-quote">'</select>'</span>;
</span><span id="1390" class="l"><a class="l" href="source-function-woocommerce_comments.html#1390">1390 </a> <span class="php-var">$field</span> .= <span class="php-quote">'</p>'</span> . <span class="php-var">$after</span>;
</span><span id="1391" class="l"><a class="l" href="source-function-woocommerce_comments.html#1391">1391 </a>
</span><span id="1392" class="l"><a class="l" href="source-function-woocommerce_comments.html#1392">1392 </a> } <span class="php-keyword1">else</span> {
</span><span id="1393" class="l"><a class="l" href="source-function-woocommerce_comments.html#1393">1393 </a>
</span><span id="1394" class="l"><a class="l" href="source-function-woocommerce_comments.html#1394">1394 </a> <span class="php-var">$field</span> = <span class="php-quote">'<p class="form-row '</span> . esc_attr( <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$args</span>[<span class="php-quote">'class'</span>] ) ) .<span class="php-quote">'" id="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'_field">'</span>;
</span><span id="1395" class="l"><a class="l" href="source-function-woocommerce_comments.html#1395">1395 </a>
</span><span id="1396" class="l"><a class="l" href="source-function-woocommerce_comments.html#1396">1396 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$args</span>[<span class="php-quote">'label'</span>] )
</span><span id="1397" class="l"><a class="l" href="source-function-woocommerce_comments.html#1397">1397 </a> <span class="php-var">$field</span> .= <span class="php-quote">'<label for="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" class="'</span> . <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$args</span>[<span class="php-quote">'label_class'</span>] ) .<span class="php-quote">'">'</span> . <span class="php-var">$args</span>[<span class="php-quote">'label'</span>]. <span class="php-var">$required</span> . <span class="php-quote">'</label>'</span>;
</span><span id="1398" class="l"><a class="l" href="source-function-woocommerce_comments.html#1398">1398 </a> <span class="php-var">$field</span> .= <span class="php-quote">'<input type="text" class="input-text" value="'</span> . <span class="php-var">$value</span> . <span class="php-quote">'" placeholder="'</span> . <span class="php-var">$args</span>[<span class="php-quote">'placeholder'</span>] . <span class="php-quote">'" name="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" id="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" '</span> . <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$custom_attributes</span> ) . <span class="php-quote">' />'</span>;
</span><span id="1399" class="l"><a class="l" href="source-function-woocommerce_comments.html#1399">1399 </a> <span class="php-var">$field</span> .= <span class="php-quote">'</p>'</span> . <span class="php-var">$after</span>;
</span><span id="1400" class="l"><a class="l" href="source-function-woocommerce_comments.html#1400">1400 </a>
</span><span id="1401" class="l"><a class="l" href="source-function-woocommerce_comments.html#1401">1401 </a> }
</span><span id="1402" class="l"><a class="l" href="source-function-woocommerce_comments.html#1402">1402 </a>
</span><span id="1403" class="l"><a class="l" href="source-function-woocommerce_comments.html#1403">1403 </a> <span class="php-keyword1">break</span>;
</span><span id="1404" class="l"><a class="l" href="source-function-woocommerce_comments.html#1404">1404 </a> <span class="php-keyword1">case</span> <span class="php-quote">"textarea"</span> :
</span><span id="1405" class="l"><a class="l" href="source-function-woocommerce_comments.html#1405">1405 </a>
</span><span id="1406" class="l"><a class="l" href="source-function-woocommerce_comments.html#1406">1406 </a> <span class="php-var">$field</span> = <span class="php-quote">'<p class="form-row '</span> . esc_attr( <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$args</span>[<span class="php-quote">'class'</span>] ) ) .<span class="php-quote">'" id="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'_field">'</span>;
</span><span id="1407" class="l"><a class="l" href="source-function-woocommerce_comments.html#1407">1407 </a>
</span><span id="1408" class="l"><a class="l" href="source-function-woocommerce_comments.html#1408">1408 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$args</span>[<span class="php-quote">'label'</span>] )
</span><span id="1409" class="l"><a class="l" href="source-function-woocommerce_comments.html#1409">1409 </a> <span class="php-var">$field</span> .= <span class="php-quote">'<label for="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" class="'</span> . <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$args</span>[<span class="php-quote">'label_class'</span>] ) .<span class="php-quote">'">'</span> . <span class="php-var">$args</span>[<span class="php-quote">'label'</span>]. <span class="php-var">$required</span> . <span class="php-quote">'</label>'</span>;
</span><span id="1410" class="l"><a class="l" href="source-function-woocommerce_comments.html#1410">1410 </a>
</span><span id="1411" class="l"><a class="l" href="source-function-woocommerce_comments.html#1411">1411 </a> <span class="php-var">$field</span> .= <span class="php-quote">'<textarea name="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" class="input-text" id="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" placeholder="'</span> . <span class="php-var">$args</span>[<span class="php-quote">'placeholder'</span>] . <span class="php-quote">'" cols="5" rows="2" '</span> . <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$custom_attributes</span> ) . <span class="php-quote">'>'</span>. esc_textarea( <span class="php-var">$value</span> ) .<span class="php-quote">'</textarea>
</span></span><span id="1412" class="l"><a class="l" href="source-function-woocommerce_comments.html#1412">1412 </a><span class="php-quote"> </p>'</span> . <span class="php-var">$after</span>;
</span><span id="1413" class="l"><a class="l" href="source-function-woocommerce_comments.html#1413">1413 </a>
</span><span id="1414" class="l"><a class="l" href="source-function-woocommerce_comments.html#1414">1414 </a> <span class="php-keyword1">break</span>;
</span><span id="1415" class="l"><a class="l" href="source-function-woocommerce_comments.html#1415">1415 </a> <span class="php-keyword1">case</span> <span class="php-quote">"checkbox"</span> :
</span><span id="1416" class="l"><a class="l" href="source-function-woocommerce_comments.html#1416">1416 </a>
</span><span id="1417" class="l"><a class="l" href="source-function-woocommerce_comments.html#1417">1417 </a> <span class="php-var">$field</span> = <span class="php-quote">'<p class="form-row '</span> . esc_attr( <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$args</span>[<span class="php-quote">'class'</span>] ) ) .<span class="php-quote">'" id="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'_field">
</span></span><span id="1418" class="l"><a class="l" href="source-function-woocommerce_comments.html#1418">1418 </a><span class="php-quote"> <input type="'</span> . <span class="php-var">$args</span>[<span class="php-quote">'type'</span>] . <span class="php-quote">'" class="input-checkbox" name="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" id="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" value="1" '</span>.checked( <span class="php-var">$value</span>, <span class="php-num">1</span>, <span class="php-keyword1">false</span> ) .<span class="php-quote">' />
</span></span><span id="1419" class="l"><a class="l" href="source-function-woocommerce_comments.html#1419">1419 </a><span class="php-quote"> <label for="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" class="checkbox '</span> . <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$args</span>[<span class="php-quote">'label_class'</span>] ) .<span class="php-quote">'" '</span> . <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$custom_attributes</span> ) . <span class="php-quote">'>'</span> . <span class="php-var">$args</span>[<span class="php-quote">'label'</span>] . <span class="php-var">$required</span> . <span class="php-quote">'</label>
</span></span><span id="1420" class="l"><a class="l" href="source-function-woocommerce_comments.html#1420">1420 </a><span class="php-quote"> </p>'</span> . <span class="php-var">$after</span>;
</span><span id="1421" class="l"><a class="l" href="source-function-woocommerce_comments.html#1421">1421 </a>
</span><span id="1422" class="l"><a class="l" href="source-function-woocommerce_comments.html#1422">1422 </a> <span class="php-keyword1">break</span>;
</span><span id="1423" class="l"><a class="l" href="source-function-woocommerce_comments.html#1423">1423 </a> <span class="php-keyword1">case</span> <span class="php-quote">"password"</span> :
</span><span id="1424" class="l"><a class="l" href="source-function-woocommerce_comments.html#1424">1424 </a>
</span><span id="1425" class="l"><a class="l" href="source-function-woocommerce_comments.html#1425">1425 </a> <span class="php-var">$field</span> = <span class="php-quote">'<p class="form-row '</span> . esc_attr( <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$args</span>[<span class="php-quote">'class'</span>] ) ) .<span class="php-quote">'" id="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'_field">'</span>;
</span><span id="1426" class="l"><a class="l" href="source-function-woocommerce_comments.html#1426">1426 </a>
</span><span id="1427" class="l"><a class="l" href="source-function-woocommerce_comments.html#1427">1427 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$args</span>[<span class="php-quote">'label'</span>] )
</span><span id="1428" class="l"><a class="l" href="source-function-woocommerce_comments.html#1428">1428 </a> <span class="php-var">$field</span> .= <span class="php-quote">'<label for="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" class="'</span> . <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$args</span>[<span class="php-quote">'label_class'</span>] ) .<span class="php-quote">'">'</span> . <span class="php-var">$args</span>[<span class="php-quote">'label'</span>]. <span class="php-var">$required</span> . <span class="php-quote">'</label>'</span>;
</span><span id="1429" class="l"><a class="l" href="source-function-woocommerce_comments.html#1429">1429 </a>
</span><span id="1430" class="l"><a class="l" href="source-function-woocommerce_comments.html#1430">1430 </a> <span class="php-var">$field</span> .= <span class="php-quote">'<input type="password" class="input-text" name="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" id="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" placeholder="'</span> . <span class="php-var">$args</span>[<span class="php-quote">'placeholder'</span>] . <span class="php-quote">'" value="'</span> . esc_attr( <span class="php-var">$value</span> ) . <span class="php-quote">'" '</span> . <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$custom_attributes</span> ) . <span class="php-quote">' />
</span></span><span id="1431" class="l"><a class="l" href="source-function-woocommerce_comments.html#1431">1431 </a><span class="php-quote"> </p>'</span> . <span class="php-var">$after</span>;
</span><span id="1432" class="l"><a class="l" href="source-function-woocommerce_comments.html#1432">1432 </a>
</span><span id="1433" class="l"><a class="l" href="source-function-woocommerce_comments.html#1433">1433 </a> <span class="php-keyword1">break</span>;
</span><span id="1434" class="l"><a class="l" href="source-function-woocommerce_comments.html#1434">1434 </a> <span class="php-keyword1">case</span> <span class="php-quote">"text"</span> :
</span><span id="1435" class="l"><a class="l" href="source-function-woocommerce_comments.html#1435">1435 </a>
</span><span id="1436" class="l"><a class="l" href="source-function-woocommerce_comments.html#1436">1436 </a> <span class="php-var">$field</span> = <span class="php-quote">'<p class="form-row '</span> . esc_attr( <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$args</span>[<span class="php-quote">'class'</span>] ) ) .<span class="php-quote">'" id="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'_field">'</span>;
</span><span id="1437" class="l"><a class="l" href="source-function-woocommerce_comments.html#1437">1437 </a>
</span><span id="1438" class="l"><a class="l" href="source-function-woocommerce_comments.html#1438">1438 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$args</span>[<span class="php-quote">'label'</span>] )
</span><span id="1439" class="l"><a class="l" href="source-function-woocommerce_comments.html#1439">1439 </a> <span class="php-var">$field</span> .= <span class="php-quote">'<label for="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" class="'</span> . <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$args</span>[<span class="php-quote">'label_class'</span>] ) .<span class="php-quote">'">'</span> . <span class="php-var">$args</span>[<span class="php-quote">'label'</span>] . <span class="php-var">$required</span> . <span class="php-quote">'</label>'</span>;
</span><span id="1440" class="l"><a class="l" href="source-function-woocommerce_comments.html#1440">1440 </a>
</span><span id="1441" class="l"><a class="l" href="source-function-woocommerce_comments.html#1441">1441 </a> <span class="php-var">$field</span> .= <span class="php-quote">'<input type="text" class="input-text" name="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" id="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" placeholder="'</span> . <span class="php-var">$args</span>[<span class="php-quote">'placeholder'</span>] . <span class="php-quote">'" '</span>.<span class="php-var">$args</span>[<span class="php-quote">'maxlength'</span>].<span class="php-quote">' value="'</span> . esc_attr( <span class="php-var">$value</span> ) . <span class="php-quote">'" '</span> . <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$custom_attributes</span> ) . <span class="php-quote">' />
</span></span><span id="1442" class="l"><a class="l" href="source-function-woocommerce_comments.html#1442">1442 </a><span class="php-quote"> </p>'</span> . <span class="php-var">$after</span>;
</span><span id="1443" class="l"><a class="l" href="source-function-woocommerce_comments.html#1443">1443 </a>
</span><span id="1444" class="l"><a class="l" href="source-function-woocommerce_comments.html#1444">1444 </a> <span class="php-keyword1">break</span>;
</span><span id="1445" class="l"><a class="l" href="source-function-woocommerce_comments.html#1445">1445 </a> <span class="php-keyword1">case</span> <span class="php-quote">"select"</span> :
</span><span id="1446" class="l"><a class="l" href="source-function-woocommerce_comments.html#1446">1446 </a>
</span><span id="1447" class="l"><a class="l" href="source-function-woocommerce_comments.html#1447">1447 </a> <span class="php-var">$options</span> = <span class="php-quote">''</span>;
</span><span id="1448" class="l"><a class="l" href="source-function-woocommerce_comments.html#1448">1448 </a>
</span><span id="1449" class="l"><a class="l" href="source-function-woocommerce_comments.html#1449">1449 </a> <span class="php-keyword1">if</span> ( ! <span class="php-keyword1">empty</span>( <span class="php-var">$args</span>[<span class="php-quote">'options'</span>] ) )
</span><span id="1450" class="l"><a class="l" href="source-function-woocommerce_comments.html#1450">1450 </a> <span class="php-keyword1">foreach</span> ( <span class="php-var">$args</span>[<span class="php-quote">'options'</span>] <span class="php-keyword1">as</span> <span class="php-var">$option_key</span> => <span class="php-var">$option_text</span> )
</span><span id="1451" class="l"><a class="l" href="source-function-woocommerce_comments.html#1451">1451 </a> <span class="php-var">$options</span> .= <span class="php-quote">'<option value="'</span> . esc_attr( <span class="php-var">$option_key</span> ) . <span class="php-quote">'" '</span>. selected( <span class="php-var">$value</span>, <span class="php-var">$option_key</span>, <span class="php-keyword1">false</span> ) . <span class="php-quote">'>'</span> . esc_attr( <span class="php-var">$option_text</span> ) .<span class="php-quote">'</option>'</span>;
</span><span id="1452" class="l"><a class="l" href="source-function-woocommerce_comments.html#1452">1452 </a>
</span><span id="1453" class="l"><a class="l" href="source-function-woocommerce_comments.html#1453">1453 </a> <span class="php-var">$field</span> = <span class="php-quote">'<p class="form-row '</span> . esc_attr( <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$args</span>[<span class="php-quote">'class'</span>] ) ) .<span class="php-quote">'" id="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'_field">'</span>;
</span><span id="1454" class="l"><a class="l" href="source-function-woocommerce_comments.html#1454">1454 </a>
</span><span id="1455" class="l"><a class="l" href="source-function-woocommerce_comments.html#1455">1455 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$args</span>[<span class="php-quote">'label'</span>] )
</span><span id="1456" class="l"><a class="l" href="source-function-woocommerce_comments.html#1456">1456 </a> <span class="php-var">$field</span> .= <span class="php-quote">'<label for="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" class="'</span> . <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$args</span>[<span class="php-quote">'label_class'</span>] ) .<span class="php-quote">'">'</span> . <span class="php-var">$args</span>[<span class="php-quote">'label'</span>]. <span class="php-var">$required</span> . <span class="php-quote">'</label>'</span>;
</span><span id="1457" class="l"><a class="l" href="source-function-woocommerce_comments.html#1457">1457 </a>
</span><span id="1458" class="l"><a class="l" href="source-function-woocommerce_comments.html#1458">1458 </a> <span class="php-var">$field</span> .= <span class="php-quote">'<select name="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" id="'</span> . esc_attr( <span class="php-var">$key</span> ) . <span class="php-quote">'" class="select" '</span> . <span class="php-keyword2">implode</span>( <span class="php-quote">' '</span>, <span class="php-var">$custom_attributes</span> ) . <span class="php-quote">'>
</span></span><span id="1459" class="l"><a class="l" href="source-function-woocommerce_comments.html#1459">1459 </a><span class="php-quote"> '</span> . <span class="php-var">$options</span> . <span class="php-quote">'
</span></span><span id="1460" class="l"><a class="l" href="source-function-woocommerce_comments.html#1460">1460 </a><span class="php-quote"> </select>
</span></span><span id="1461" class="l"><a class="l" href="source-function-woocommerce_comments.html#1461">1461 </a><span class="php-quote"> </p>'</span> . <span class="php-var">$after</span>;
</span><span id="1462" class="l"><a class="l" href="source-function-woocommerce_comments.html#1462">1462 </a>
</span><span id="1463" class="l"><a class="l" href="source-function-woocommerce_comments.html#1463">1463 </a> <span class="php-keyword1">break</span>;
</span><span id="1464" class="l"><a class="l" href="source-function-woocommerce_comments.html#1464">1464 </a> <span class="php-keyword1">default</span> :
</span><span id="1465" class="l"><a class="l" href="source-function-woocommerce_comments.html#1465">1465 </a>
</span><span id="1466" class="l"><a class="l" href="source-function-woocommerce_comments.html#1466">1466 </a> <span class="php-var">$field</span> = apply_filters( <span class="php-quote">'woocommerce_form_field_'</span> . <span class="php-var">$args</span>[<span class="php-quote">'type'</span>], <span class="php-quote">''</span>, <span class="php-var">$key</span>, <span class="php-var">$args</span>, <span class="php-var">$value</span> );
</span><span id="1467" class="l"><a class="l" href="source-function-woocommerce_comments.html#1467">1467 </a>
</span><span id="1468" class="l"><a class="l" href="source-function-woocommerce_comments.html#1468">1468 </a> <span class="php-keyword1">break</span>;
</span><span id="1469" class="l"><a class="l" href="source-function-woocommerce_comments.html#1469">1469 </a> }
</span><span id="1470" class="l"><a class="l" href="source-function-woocommerce_comments.html#1470">1470 </a>
</span><span id="1471" class="l"><a class="l" href="source-function-woocommerce_comments.html#1471">1471 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$args</span>[<span class="php-quote">'return'</span>] ) <span class="php-keyword1">return</span> <span class="php-var">$field</span>; <span class="php-keyword1">else</span> <span class="php-keyword1">echo</span> <span class="php-var">$field</span>;
</span><span id="1472" class="l"><a class="l" href="source-function-woocommerce_comments.html#1472">1472 </a> }
</span><span id="1473" class="l"><a class="l" href="source-function-woocommerce_comments.html#1473">1473 </a>}
</span><span id="1474" class="l"><a class="l" href="source-function-woocommerce_comments.html#1474">1474 </a>
</span><span id="1475" class="l"><a class="l" href="source-function-woocommerce_comments.html#1475">1475 </a><span class="php-keyword1">if</span> ( ! <span class="php-keyword2">function_exists</span>( <span class="php-quote">'get_product_search_form'</span> ) ) {
</span><span id="1476" class="l"><a class="l" href="source-function-woocommerce_comments.html#1476">1476 </a>
</span><span id="1477" class="l"><a class="l" href="source-function-woocommerce_comments.html#1477">1477 </a> <span class="php-comment">/**
</span></span><span id="1478" class="l"><a class="l" href="source-function-woocommerce_comments.html#1478">1478 </a><span class="php-comment"> * Output Product search forms.
</span></span><span id="1479" class="l"><a class="l" href="source-function-woocommerce_comments.html#1479">1479 </a><span class="php-comment"> *
</span></span><span id="1480" class="l"><a class="l" href="source-function-woocommerce_comments.html#1480">1480 </a><span class="php-comment"> * @access public
</span></span><span id="1481" class="l"><a class="l" href="source-function-woocommerce_comments.html#1481">1481 </a><span class="php-comment"> * @subpackage Forms
</span></span><span id="1482" class="l"><a class="l" href="source-function-woocommerce_comments.html#1482">1482 </a><span class="php-comment"> * @param bool $echo (default: true)
</span></span><span id="1483" class="l"><a class="l" href="source-function-woocommerce_comments.html#1483">1483 </a><span class="php-comment"> * @return void
</span></span><span id="1484" class="l"><a class="l" href="source-function-woocommerce_comments.html#1484">1484 </a><span class="php-comment"> */</span>
</span><span id="1485" class="l"><a class="l" href="source-function-woocommerce_comments.html#1485">1485 </a> <span class="php-keyword1">function</span> <a id="_get_product_search_form" href="source-function-woocommerce_comments.html#_get_product_search_form">get_product_search_form</a>( <span class="php-var">$echo</span> = <span class="php-keyword1">true</span> ) {
</span><span id="1486" class="l"><a class="l" href="source-function-woocommerce_comments.html#1486">1486 </a> do_action( <span class="php-quote">'get_product_search_form'</span> );
</span><span id="1487" class="l"><a class="l" href="source-function-woocommerce_comments.html#1487">1487 </a>
</span><span id="1488" class="l"><a class="l" href="source-function-woocommerce_comments.html#1488">1488 </a> <span class="php-var">$search_form_template</span> = locate_template( <span class="php-quote">'product-searchform.php'</span> );
</span><span id="1489" class="l"><a class="l" href="source-function-woocommerce_comments.html#1489">1489 </a> <span class="php-keyword1">if</span> ( <span class="php-quote">''</span> != <span class="php-var">$search_form_template</span> ) {
</span><span id="1490" class="l"><a class="l" href="source-function-woocommerce_comments.html#1490">1490 </a> <span class="php-keyword1">require</span> <span class="php-var">$search_form_template</span>;
</span><span id="1491" class="l"><a class="l" href="source-function-woocommerce_comments.html#1491">1491 </a> <span class="php-keyword1">return</span>;
</span><span id="1492" class="l"><a class="l" href="source-function-woocommerce_comments.html#1492">1492 </a> }
</span><span id="1493" class="l"><a class="l" href="source-function-woocommerce_comments.html#1493">1493 </a>
</span><span id="1494" class="l"><a class="l" href="source-function-woocommerce_comments.html#1494">1494 </a> <span class="php-var">$form</span> = <span class="php-quote">'<form role="search" method="get" id="searchform" action="'</span> . esc_url( home_url( <span class="php-quote">'/'</span> ) ) . <span class="php-quote">'">
</span></span><span id="1495" class="l"><a class="l" href="source-function-woocommerce_comments.html#1495">1495 </a><span class="php-quote"> <div>
</span></span><span id="1496" class="l"><a class="l" href="source-function-woocommerce_comments.html#1496">1496 </a><span class="php-quote"> <label class="screen-reader-text" for="s">'</span> . __( <span class="php-quote">'Search for:'</span>, <span class="php-quote">'woocommerce'</span> ) . <span class="php-quote">'</label>
</span></span><span id="1497" class="l"><a class="l" href="source-function-woocommerce_comments.html#1497">1497 </a><span class="php-quote"> <input type="text" value="'</span> . get_search_query() . <span class="php-quote">'" name="s" id="s" placeholder="'</span> . __( <span class="php-quote">'Search for products'</span>, <span class="php-quote">'woocommerce'</span> ) . <span class="php-quote">'" />
</span></span><span id="1498" class="l"><a class="l" href="source-function-woocommerce_comments.html#1498">1498 </a><span class="php-quote"> <input type="submit" id="searchsubmit" value="'</span>. esc_attr__( <span class="php-quote">'Search'</span>, <span class="php-quote">'woocommerce'</span> ) .<span class="php-quote">'" />
</span></span><span id="1499" class="l"><a class="l" href="source-function-woocommerce_comments.html#1499">1499 </a><span class="php-quote"> <input type="hidden" name="post_type" value="product" />
</span></span><span id="1500" class="l"><a class="l" href="source-function-woocommerce_comments.html#1500">1500 </a><span class="php-quote"> </div>
</span></span><span id="1501" class="l"><a class="l" href="source-function-woocommerce_comments.html#1501">1501 </a><span class="php-quote"> </form>'</span>;
</span><span id="1502" class="l"><a class="l" href="source-function-woocommerce_comments.html#1502">1502 </a>
</span><span id="1503" class="l"><a class="l" href="source-function-woocommerce_comments.html#1503">1503 </a> <span class="php-keyword1">if</span> ( <span class="php-var">$echo</span> )
</span><span id="1504" class="l"><a class="l" href="source-function-woocommerce_comments.html#1504">1504 </a> <span class="php-keyword1">echo</span> apply_filters( <span class="php-quote">'get_product_search_form'</span>, <span class="php-var">$form</span> );
</span><span id="1505" class="l"><a class="l" href="source-function-woocommerce_comments.html#1505">1505 </a> <span class="php-keyword1">else</span>
</span><span id="1506" class="l"><a class="l" href="source-function-woocommerce_comments.html#1506">1506 </a> <span class="php-keyword1">return</span> apply_filters( <span class="php-quote">'get_product_search_form'</span>, <span class="php-var">$form</span> );
</span><span id="1507" class="l"><a class="l" href="source-function-woocommerce_comments.html#1507">1507 </a> }
</span><span id="1508" class="l"><a class="l" href="source-function-woocommerce_comments.html#1508">1508 </a>}
</span><span id="1509" class="l"><a class="l" href="source-function-woocommerce_comments.html#1509">1509 </a></span></code></pre>
</div>
<div id="footer">
WooCommerce API documentation generated by <a href="http://apigen.org">ApiGen 2.8.0</a>
</div>
</div>
</body>
</html>
| GioSensation/woocommerce-dash-docset | woocommerce.docset/Contents/Resources/Documents/docs/source-function-woocommerce_comments.html | HTML | mit | 299,295 |
<html>
<head>
<title>发掘生活的原动力</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="stylesheet" type="text/css" href="gosol_node_styles.css" />
<link rel="stylesheet" type="text/css" href="dagre.css" />
</head>
<body>
<div class="outer_frame">
<div id="context_help_box">
<a href="pimgeek.20160820023626.1.html">
<div class="outer_title_box">
<label class="outer_title">⏫ 浅层关注:学会回归专注</label>
</div>
</a>
<a href="pimgeek.20160829215726.1.html">
<div class="inner_title_box">
<label class="inner_title">⚓ 当前关注:发掘生活的原动力</label>
</div>
</a>
</div>
<div class="spacer"></div>
<div class="inner_frame">
<div class="spacer"></div>
<a href="pimgeek.20160820023728.1.html">
<div class="prev_title_box">
<label class="prev_title">❮ 上一步:学会回归专注 Get√</label>
</div>
</a>
<div id="context_graph_btn" onclick="switchDisplay('context_graph_box');tryDraw();">G</div>
<!-- <div id="context_help_btn" onclick="switchDisplay('context_help_box');">?</div> -->
<div class="spacer"></div>
<div class="node_body">
<label class="node_title">发掘生活的原动力</label>
<div class="node_last_chg_dt">最后更新日期:2016-08-29</div>
<!-- 深层关注:单篇内容列表 -->
<label class="sub_nodes_title">⏬ 深入阅读:单篇内容</label>
<ul>
<li><a href="pimgeek.20160830212519.1.html">人们为何害怕被拒绝?</a></li>
</ul>
<!-- 深层关注:专题内容列表 -->
</div>
<div class="spacer"></div>
<a href="pimgeek.20160820013231.3.html">
<div class="next_title_box">
<label class="next_title">下一步:相见恨晚的知识分享 Get√ ❯</label>
</div>
</a>
<div class="spacer"></div>
<div id="context_graph_box">
<div id="context_graph_close_btn" onclick="undoDisplay('context_graph_box')">×</div>
<div>
<div id="debugInfo"></div>
<div id="output">
<svg width=800 height=600>
<g/>
</svg>
</div>
</div>
</div>
</div>
</div>
<script id="dot_code" type="text/graphviz">
digraph G {
rankdir=TB
graph [fontname="simhei" bgcolor="transparent"]
edge [labelStyle="font: 500 14px simhei" arrowhead="vee"]
node [rx=5 ry=5 labelStyle="font: 600 14px simhei;" style="fill: #ffffcc"]
"发掘生活的原动力" [shape="ellipse" style="fill: #ee7755" labelType="html" label="<a href='pimgeek.20160829215726.1.html'>发掘生活的原动力</a>"]
"发掘生活的原动力" -> "人们为何害怕被拒绝?"
"人们为何害怕被拒绝?" [labelType="html" label="<a href='pimgeek.20160830212519.1.html'>人们为何害怕被拒绝?</a>"]
"人们为何害怕被拒绝?" -> "人这一生为何要努力?"
"人这一生为何要努力?" [labelType="html" label="<a href='pimgeek.20160829215726.2.html'>人这一生为何要努力?</a>"]
"人这一生为何要努力?" -> "高效学习/工作的三要素"
"高效学习/工作的三要素" [labelType="html" label="<a href='pimgeek.20160829220137.1.html'>高效学习/工作的三要素</a>"]
"高效学习/工作的三要素" -> "发掘生活的原动力 Get√"
"发掘生活的原动力" -> "发掘生活的原动力 Get√" [style="stroke-dasharray: 5,2;" labelType="html" label="期望达到<br />的目标…"]
"发掘生活的原动力 Get√" [shape="ellipse" style="fill: #55ee77;" labelType="html" label="<a href='pimgeek.20160829215726.3.html'>发掘生活的原动力 Get√</a>"]
"发掘生活的原动力 Get√" -> "相见恨晚的知识分享 Get√"
"相见恨晚的知识分享 Get√" [labelType="html" label="<a href='pimgeek.20160820013231.3.html'>相见恨晚的知识分享 Get√</a>"]
"学会回归专注" -> "发掘生活的原动力"
"学会回归专注" [labelType="html" label="<a href='pimgeek.20160820023626.1.html'>学会回归专注</a>"]
"发掘生活的原动力" [style="fill: #ffffcc; stroke: #5577ee; stroke-width: 4"]
}
</script>
<!-- 正文与评论区的分隔线 -->
<div class="spacer"></div>
<!-- 多说评论框 start -->
<div class="ds-thread" data-thread-key="pimgeek.20160829215726.1" data-title="发掘生活的原动力" data-url="http://pimgeek.coding.me/leo/pimgeek.20160829215726.1"></div>
<!-- 多说评论框 end -->
<!-- 多说公共JS代码 start (一个网页只需插入一次) -->
<script type="text/javascript">
var duoshuoQuery = {short_name:"pkmfans"};
(function() {
var ds = document.createElement('script');
ds.type = 'text/javascript';ds.async = true;
ds.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + '//static.duoshuo.com/embed.js';
ds.charset = 'UTF-8';
(document.getElementsByTagName('head')[0]
|| document.getElementsByTagName('body')[0]).appendChild(ds);
})();
</script>
<!-- 多说公共JS代码 end -->
<!-- 微信浏览器中输入框防遮挡 begin -->
<script type="text/javascript">
window.addEventListener("touchmove", function() {
if(document.activeElement.tagName=="INPUT" || document.activeElement.tagName=="TEXTAREA") {
window.setTimeout(function() {
document.activeElement.scrollIntoViewIfNeeded();
},0.5);
}
})
</script>
<!-- 微信浏览器中输入框防遮挡 end -->
<script type="text/javascript" src="d3.min.js"></script>
<script type="text/javascript" src="graphlib-dot.js"></script>
<script type="text/javascript" src="dagre-d3.min.js"></script>
<script type="text/javascript" src="dagre_utils.js"></script>
<script type="text/javascript" src="gosol_node_actions.js"></script>
</body>
</html>
| pimgeek/pimgeek.github.io | leo/pimgeek.20160829215726.1.html | HTML | mit | 6,401 |
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="ApiGen 2.8.0" />
<title>Class Gedmo\Loggable\LoggableDocumentTest | seip</title>
<script type="text/javascript" src="resources/combined.js?784181472"></script>
<script type="text/javascript" src="elementlist.js?3927760630"></script>
<link rel="stylesheet" type="text/css" media="all" href="resources/style.css?3505392360" />
</head>
<body>
<div id="left">
<div id="menu">
<a href="index.html" title="Overview"><span>Overview</span></a>
<div id="groups">
<h3>Namespaces</h3>
<ul>
<li><a href="namespace-Acme.html">Acme<span></span></a>
<ul>
<li><a href="namespace-Acme.DemoBundle.html">DemoBundle<span></span></a>
<ul>
<li><a href="namespace-Acme.DemoBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Acme.DemoBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Acme.DemoBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Acme.DemoBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Acme.DemoBundle.Form.html">Form</a>
</li>
<li><a href="namespace-Acme.DemoBundle.Proxy.html">Proxy<span></span></a>
<ul>
<li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.html">__CG__<span></span></a>
<ul>
<li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.html">Symfony<span></span></a>
<ul>
<li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.Component.html">Component<span></span></a>
<ul>
<li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.Component.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.Component.Security.Acl.html">Acl<span></span></a>
<ul>
<li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.Component.Security.Acl.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.Component.Security.Acl.Tests.Domain.html">Domain</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.Component.Security.Core.html">Core<span></span></a>
<ul>
<li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.Component.Security.Core.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.Component.Security.Core.Tests.Util.html">Util</a>
</li>
</ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-Acme.DemoBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Acme.DemoBundle.Tests.Controller.html">Controller</a>
</li>
</ul></li>
<li><a href="namespace-Acme.DemoBundle.Twig.html">Twig<span></span></a>
<ul>
<li><a href="namespace-Acme.DemoBundle.Twig.Extension.html">Extension</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Alpha.html">Alpha</a>
</li>
<li><a href="namespace-Apc.html">Apc<span></span></a>
<ul>
<li><a href="namespace-Apc.NamespaceCollision.html">NamespaceCollision<span></span></a>
<ul>
<li><a href="namespace-Apc.NamespaceCollision.A.html">A<span></span></a>
<ul>
<li><a href="namespace-Apc.NamespaceCollision.A.B.html">B</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Apc.Namespaced.html">Namespaced</a>
</li>
</ul></li>
<li><a href="namespace-Assetic.html">Assetic<span></span></a>
<ul>
<li><a href="namespace-Assetic.Asset.html">Asset<span></span></a>
<ul>
<li><a href="namespace-Assetic.Asset.Iterator.html">Iterator</a>
</li>
</ul></li>
<li><a href="namespace-Assetic.Cache.html">Cache</a>
</li>
<li><a href="namespace-Assetic.Exception.html">Exception</a>
</li>
<li><a href="namespace-Assetic.Extension.html">Extension<span></span></a>
<ul>
<li><a href="namespace-Assetic.Extension.Twig.html">Twig</a>
</li>
</ul></li>
<li><a href="namespace-Assetic.Factory.html">Factory<span></span></a>
<ul>
<li><a href="namespace-Assetic.Factory.Loader.html">Loader</a>
</li>
<li><a href="namespace-Assetic.Factory.Resource.html">Resource</a>
</li>
<li><a href="namespace-Assetic.Factory.Worker.html">Worker</a>
</li>
</ul></li>
<li><a href="namespace-Assetic.Filter.html">Filter<span></span></a>
<ul>
<li><a href="namespace-Assetic.Filter.GoogleClosure.html">GoogleClosure</a>
</li>
<li><a href="namespace-Assetic.Filter.Sass.html">Sass</a>
</li>
<li><a href="namespace-Assetic.Filter.Yui.html">Yui</a>
</li>
</ul></li>
<li><a href="namespace-Assetic.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Bazinga.html">Bazinga<span></span></a>
<ul>
<li><a href="namespace-Bazinga.Bundle.html">Bundle<span></span></a>
<ul>
<li><a href="namespace-Bazinga.Bundle.JsTranslationBundle.html">JsTranslationBundle<span></span></a>
<ul>
<li><a href="namespace-Bazinga.Bundle.JsTranslationBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Bazinga.Bundle.JsTranslationBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Bazinga.Bundle.JsTranslationBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Bazinga.Bundle.JsTranslationBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Bazinga.Bundle.JsTranslationBundle.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-Bazinga.Bundle.JsTranslationBundle.Finder.html">Finder</a>
</li>
<li><a href="namespace-Bazinga.Bundle.JsTranslationBundle.Tests.html">Tests</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Bazinga.JsTranslationBundle.html">JsTranslationBundle<span></span></a>
<ul>
<li><a href="namespace-Bazinga.JsTranslationBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Bazinga.JsTranslationBundle.Tests.Controller.html">Controller</a>
</li>
<li><a href="namespace-Bazinga.JsTranslationBundle.Tests.Finder.html">Finder</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Beta.html">Beta</a>
</li>
<li><a href="namespace-Blameable.html">Blameable<span></span></a>
<ul>
<li><a href="namespace-Blameable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Blameable.Fixture.Document.html">Document</a>
</li>
<li><a href="namespace-Blameable.Fixture.Entity.html">Entity</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-ClassesWithParents.html">ClassesWithParents</a>
</li>
<li><a href="namespace-ClassLoaderTest.html">ClassLoaderTest</a>
</li>
<li><a href="namespace-ClassMap.html">ClassMap</a>
</li>
<li><a href="namespace-Composer.html">Composer<span></span></a>
<ul>
<li><a href="namespace-Composer.Autoload.html">Autoload</a>
</li>
</ul></li>
<li><a href="namespace-Container14.html">Container14</a>
</li>
<li><a href="namespace-Doctrine.html">Doctrine<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Bundle.html">Bundle<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Bundle.DoctrineBundle.html">DoctrineBundle<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Bundle.DoctrineBundle.Command.html">Command<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Bundle.DoctrineBundle.Command.Proxy.html">Proxy</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Bundle.DoctrineBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Doctrine.Bundle.DoctrineBundle.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Doctrine.Bundle.DoctrineBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Doctrine.Bundle.DoctrineBundle.Mapping.html">Mapping</a>
</li>
<li><a href="namespace-Doctrine.Bundle.DoctrineBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Bundle.DoctrineBundle.Tests.DependencyInjection.html">DependencyInjection</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Bundle.DoctrineBundle.Twig.html">Twig</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Bundle.FixturesBundle.html">FixturesBundle<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Bundle.FixturesBundle.Command.html">Command</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Doctrine.Common.html">Common<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Common.Annotations.html">Annotations<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Common.Annotations.Annotation.html">Annotation</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Common.Cache.html">Cache</a>
</li>
<li><a href="namespace-Doctrine.Common.Collections.html">Collections<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Common.Collections.Expr.html">Expr</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Common.DataFixtures.html">DataFixtures<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Common.DataFixtures.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Common.DataFixtures.Event.Listener.html">Listener</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Common.DataFixtures.Exception.html">Exception</a>
</li>
<li><a href="namespace-Doctrine.Common.DataFixtures.Executor.html">Executor</a>
</li>
<li><a href="namespace-Doctrine.Common.DataFixtures.Purger.html">Purger</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Common.Inflector.html">Inflector</a>
</li>
<li><a href="namespace-Doctrine.Common.Lexer.html">Lexer</a>
</li>
<li><a href="namespace-Doctrine.Common.Persistence.html">Persistence<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Common.Persistence.Event.html">Event</a>
</li>
<li><a href="namespace-Doctrine.Common.Persistence.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Common.Persistence.Mapping.Driver.html">Driver</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Doctrine.Common.Proxy.html">Proxy<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Common.Proxy.Exception.html">Exception</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Common.Reflection.html">Reflection</a>
</li>
<li><a href="namespace-Doctrine.Common.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.DBAL.html">DBAL<span></span></a>
<ul>
<li><a href="namespace-Doctrine.DBAL.Cache.html">Cache</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Connections.html">Connections</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Driver.html">Driver<span></span></a>
<ul>
<li><a href="namespace-Doctrine.DBAL.Driver.DrizzlePDOMySql.html">DrizzlePDOMySql</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Driver.IBMDB2.html">IBMDB2</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Driver.Mysqli.html">Mysqli</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Driver.OCI8.html">OCI8</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Driver.PDOIbm.html">PDOIbm</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Driver.PDOMySql.html">PDOMySql</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Driver.PDOOracle.html">PDOOracle</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Driver.PDOPgSql.html">PDOPgSql</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Driver.PDOSqlite.html">PDOSqlite</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Driver.PDOSqlsrv.html">PDOSqlsrv</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Driver.SQLSrv.html">SQLSrv</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.DBAL.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Doctrine.DBAL.Event.Listeners.html">Listeners</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.DBAL.Id.html">Id</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Logging.html">Logging</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Platforms.html">Platforms<span></span></a>
<ul>
<li><a href="namespace-Doctrine.DBAL.Platforms.Keywords.html">Keywords</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.DBAL.Portability.html">Portability</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Query.html">Query<span></span></a>
<ul>
<li><a href="namespace-Doctrine.DBAL.Query.Expression.html">Expression</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.DBAL.Schema.html">Schema<span></span></a>
<ul>
<li><a href="namespace-Doctrine.DBAL.Schema.Synchronizer.html">Synchronizer</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Schema.Visitor.html">Visitor</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.DBAL.Sharding.html">Sharding<span></span></a>
<ul>
<li><a href="namespace-Doctrine.DBAL.Sharding.ShardChoser.html">ShardChoser</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Sharding.SQLAzure.html">SQLAzure<span></span></a>
<ul>
<li><a href="namespace-Doctrine.DBAL.Sharding.SQLAzure.Schema.html">Schema</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Doctrine.DBAL.Tools.html">Tools<span></span></a>
<ul>
<li><a href="namespace-Doctrine.DBAL.Tools.Console.html">Console<span></span></a>
<ul>
<li><a href="namespace-Doctrine.DBAL.Tools.Console.Command.html">Command</a>
</li>
<li><a href="namespace-Doctrine.DBAL.Tools.Console.Helper.html">Helper</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Doctrine.DBAL.Types.html">Types</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.ORM.html">ORM<span></span></a>
<ul>
<li><a href="namespace-Doctrine.ORM.Decorator.html">Decorator</a>
</li>
<li><a href="namespace-Doctrine.ORM.Event.html">Event</a>
</li>
<li><a href="namespace-Doctrine.ORM.Id.html">Id</a>
</li>
<li><a href="namespace-Doctrine.ORM.Internal.html">Internal<span></span></a>
<ul>
<li><a href="namespace-Doctrine.ORM.Internal.Hydration.html">Hydration</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.ORM.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Doctrine.ORM.Mapping.Builder.html">Builder</a>
</li>
<li><a href="namespace-Doctrine.ORM.Mapping.Driver.html">Driver</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.ORM.Persisters.html">Persisters</a>
</li>
<li><a href="namespace-Doctrine.ORM.Proxy.html">Proxy</a>
</li>
<li><a href="namespace-Doctrine.ORM.Query.html">Query<span></span></a>
<ul>
<li><a href="namespace-Doctrine.ORM.Query.AST.html">AST<span></span></a>
<ul>
<li><a href="namespace-Doctrine.ORM.Query.AST.Functions.html">Functions</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.ORM.Query.Exec.html">Exec</a>
</li>
<li><a href="namespace-Doctrine.ORM.Query.Expr.html">Expr</a>
</li>
<li><a href="namespace-Doctrine.ORM.Query.Filter.html">Filter</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.ORM.Repository.html">Repository</a>
</li>
<li><a href="namespace-Doctrine.ORM.Tools.html">Tools<span></span></a>
<ul>
<li><a href="namespace-Doctrine.ORM.Tools.Console.html">Console<span></span></a>
<ul>
<li><a href="namespace-Doctrine.ORM.Tools.Console.Command.html">Command<span></span></a>
<ul>
<li><a href="namespace-Doctrine.ORM.Tools.Console.Command.ClearCache.html">ClearCache</a>
</li>
<li><a href="namespace-Doctrine.ORM.Tools.Console.Command.SchemaTool.html">SchemaTool</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.ORM.Tools.Console.Helper.html">Helper</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.ORM.Tools.Event.html">Event</a>
</li>
<li><a href="namespace-Doctrine.ORM.Tools.Export.html">Export<span></span></a>
<ul>
<li><a href="namespace-Doctrine.ORM.Tools.Export.Driver.html">Driver</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.ORM.Tools.Pagination.html">Pagination</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Doctrine.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Tests.Common.html">Common<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Tests.Common.Annotations.html">Annotations<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Tests.Common.Annotations.Bar.html">Bar</a>
</li>
<li><a href="namespace-Doctrine.Tests.Common.Annotations.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Tests.Common.Annotations.Fixtures.Annotation.html">Annotation</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Tests.Common.Annotations.Foo.html">Foo</a>
</li>
<li><a href="namespace-Doctrine.Tests.Common.Annotations.FooBar.html">FooBar</a>
</li>
<li><a href="namespace-Doctrine.Tests.Common.Annotations.Ticket.html">Ticket<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Tests.Common.Annotations.Ticket.Doctrine.html">Doctrine<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Tests.Common.Annotations.Ticket.Doctrine.ORM.html">ORM<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Tests.Common.Annotations.Ticket.Doctrine.ORM.Mapping.html">Mapping</a>
</li>
</ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-Doctrine.Tests.Common.Cache.html">Cache</a>
</li>
<li><a href="namespace-Doctrine.Tests.Common.Collections.html">Collections</a>
</li>
<li><a href="namespace-Doctrine.Tests.Common.DataFixtures.html">DataFixtures<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Tests.Common.DataFixtures.Executor.html">Executor</a>
</li>
<li><a href="namespace-Doctrine.Tests.Common.DataFixtures.TestEntity.html">TestEntity</a>
</li>
<li><a href="namespace-Doctrine.Tests.Common.DataFixtures.TestFixtures.html">TestFixtures</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Tests.Common.Inflector.html">Inflector</a>
</li>
<li><a href="namespace-Doctrine.Tests.Common.Persistence.html">Persistence<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Tests.Common.Persistence.Mapping.html">Mapping</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Tests.Common.Proxy.html">Proxy</a>
</li>
<li><a href="namespace-Doctrine.Tests.Common.Reflection.html">Reflection<span></span></a>
<ul>
<li><a href="namespace-Doctrine.Tests.Common.Reflection.Dummies.html">Dummies</a>
</li>
</ul></li>
<li><a href="namespace-Doctrine.Tests.Common.Util.html">Util</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Entity.html">Entity<span></span></a>
<ul>
<li><a href="namespace-Entity.Repository.html">Repository</a>
</li>
</ul></li>
<li><a href="namespace-Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-Fixtures.Bundles.html">Bundles<span></span></a>
<ul>
<li><a href="namespace-Fixtures.Bundles.AnnotationsBundle.html">AnnotationsBundle<span></span></a>
<ul>
<li><a href="namespace-Fixtures.Bundles.AnnotationsBundle.Entity.html">Entity</a>
</li>
</ul></li>
<li><a href="namespace-Fixtures.Bundles.Vendor.html">Vendor<span></span></a>
<ul>
<li><a href="namespace-Fixtures.Bundles.Vendor.AnnotationsBundle.html">AnnotationsBundle<span></span></a>
<ul>
<li><a href="namespace-Fixtures.Bundles.Vendor.AnnotationsBundle.Entity.html">Entity</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Fixtures.Bundles.XmlBundle.html">XmlBundle<span></span></a>
<ul>
<li><a href="namespace-Fixtures.Bundles.XmlBundle.Entity.html">Entity</a>
</li>
</ul></li>
<li><a href="namespace-Fixtures.Bundles.YamlBundle.html">YamlBundle<span></span></a>
<ul>
<li><a href="namespace-Fixtures.Bundles.YamlBundle.Entity.html">Entity</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Foo.html">Foo<span></span></a>
<ul>
<li><a href="namespace-Foo.Bar.html">Bar</a>
</li>
</ul></li>
<li><a href="namespace-FOS.html">FOS<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.html">RestBundle<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Controller.html">Controller<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Controller.Annotations.html">Annotations</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Decoder.html">Decoder</a>
</li>
<li><a href="namespace-FOS.RestBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-FOS.RestBundle.Examples.html">Examples</a>
</li>
<li><a href="namespace-FOS.RestBundle.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Form.Extension.html">Extension</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Normalizer.html">Normalizer<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Normalizer.Exception.html">Exception</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Request.html">Request</a>
</li>
<li><a href="namespace-FOS.RestBundle.Response.html">Response<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Response.AllowedMethodsLoader.html">AllowedMethodsLoader</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Routing.html">Routing<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Routing.Loader.html">Loader<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Routing.Loader.Reader.html">Reader</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-FOS.RestBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Tests.Controller.html">Controller<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Tests.Controller.Annotations.html">Annotations</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Tests.Decoder.html">Decoder</a>
</li>
<li><a href="namespace-FOS.RestBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Tests.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Tests.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-FOS.RestBundle.Tests.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Tests.Fixtures.Controller.html">Controller</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Tests.Normalizer.html">Normalizer</a>
</li>
<li><a href="namespace-FOS.RestBundle.Tests.Request.html">Request</a>
</li>
<li><a href="namespace-FOS.RestBundle.Tests.Routing.html">Routing<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Tests.Routing.Loader.html">Loader</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Tests.Util.html">Util</a>
</li>
<li><a href="namespace-FOS.RestBundle.Tests.View.html">View</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.Util.html">Util<span></span></a>
<ul>
<li><a href="namespace-FOS.RestBundle.Util.Inflector.html">Inflector</a>
</li>
</ul></li>
<li><a href="namespace-FOS.RestBundle.View.html">View</a>
</li>
</ul></li>
<li><a href="namespace-FOS.UserBundle.html">UserBundle<span></span></a>
<ul>
<li><a href="namespace-FOS.UserBundle.Command.html">Command</a>
</li>
<li><a href="namespace-FOS.UserBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-FOS.UserBundle.CouchDocument.html">CouchDocument</a>
</li>
<li><a href="namespace-FOS.UserBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-FOS.UserBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-FOS.UserBundle.Doctrine.html">Doctrine</a>
</li>
<li><a href="namespace-FOS.UserBundle.Document.html">Document</a>
</li>
<li><a href="namespace-FOS.UserBundle.Entity.html">Entity</a>
</li>
<li><a href="namespace-FOS.UserBundle.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-FOS.UserBundle.Form.DataTransformer.html">DataTransformer</a>
</li>
<li><a href="namespace-FOS.UserBundle.Form.Handler.html">Handler</a>
</li>
<li><a href="namespace-FOS.UserBundle.Form.Model.html">Model</a>
</li>
<li><a href="namespace-FOS.UserBundle.Form.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-FOS.UserBundle.Mailer.html">Mailer</a>
</li>
<li><a href="namespace-FOS.UserBundle.Model.html">Model</a>
</li>
<li><a href="namespace-FOS.UserBundle.Propel.html">Propel</a>
</li>
<li><a href="namespace-FOS.UserBundle.Security.html">Security</a>
</li>
<li><a href="namespace-FOS.UserBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-FOS.UserBundle.Tests.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-FOS.UserBundle.Tests.Doctrine.html">Doctrine</a>
</li>
<li><a href="namespace-FOS.UserBundle.Tests.Model.html">Model</a>
</li>
<li><a href="namespace-FOS.UserBundle.Tests.Security.html">Security</a>
</li>
<li><a href="namespace-FOS.UserBundle.Tests.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-FOS.UserBundle.Util.html">Util</a>
</li>
<li><a href="namespace-FOS.UserBundle.Validator.html">Validator</a>
</li>
</ul></li></ul></li>
<li class="active"><a href="namespace-Gedmo.html">Gedmo<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Blameable.html">Blameable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Blameable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Blameable.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Blameable.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Blameable.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.Blameable.Traits.html">Traits</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Exception.html">Exception</a>
</li>
<li><a href="namespace-Gedmo.IpTraceable.html">IpTraceable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.IpTraceable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.IpTraceable.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.IpTraceable.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.IpTraceable.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.IpTraceable.Traits.html">Traits</a>
</li>
</ul></li>
<li class="active"><a href="namespace-Gedmo.Loggable.html">Loggable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Loggable.Document.html">Document<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Loggable.Document.MappedSuperclass.html">MappedSuperclass</a>
</li>
<li><a href="namespace-Gedmo.Loggable.Document.Repository.html">Repository</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Loggable.Entity.html">Entity<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Loggable.Entity.MappedSuperclass.html">MappedSuperclass</a>
</li>
<li><a href="namespace-Gedmo.Loggable.Entity.Repository.html">Repository</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Loggable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Loggable.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Loggable.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Loggable.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Gedmo.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Annotation.html">Annotation</a>
</li>
<li><a href="namespace-Gedmo.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Mapping.Mock.html">Mock<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Mock.Extension.html">Extension<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Mock.Extension.Encoder.html">Encoder<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Mock.Extension.Encoder.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Mock.Extension.Encoder.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Mapping.Mock.Extension.Encoder.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Mock.Extension.Encoder.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-Gedmo.Mapping.Mock.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Mock.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Mapping.Mock.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Gedmo.Mapping.Xml.html">Xml</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.ReferenceIntegrity.html">ReferenceIntegrity<span></span></a>
<ul>
<li><a href="namespace-Gedmo.ReferenceIntegrity.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.ReferenceIntegrity.Mapping.Driver.html">Driver</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.References.html">References<span></span></a>
<ul>
<li><a href="namespace-Gedmo.References.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.References.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.References.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.References.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Gedmo.Sluggable.html">Sluggable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Sluggable.Handler.html">Handler</a>
</li>
<li><a href="namespace-Gedmo.Sluggable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Sluggable.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Sluggable.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Sluggable.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.Sluggable.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.SoftDeleteable.html">SoftDeleteable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.SoftDeleteable.Filter.html">Filter<span></span></a>
<ul>
<li><a href="namespace-Gedmo.SoftDeleteable.Filter.ODM.html">ODM</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.SoftDeleteable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.SoftDeleteable.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.SoftDeleteable.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.SoftDeleteable.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.SoftDeleteable.Query.html">Query<span></span></a>
<ul>
<li><a href="namespace-Gedmo.SoftDeleteable.Query.TreeWalker.html">TreeWalker<span></span></a>
<ul>
<li><a href="namespace-Gedmo.SoftDeleteable.Query.TreeWalker.Exec.html">Exec</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.SoftDeleteable.Traits.html">Traits</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Sortable.html">Sortable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Sortable.Entity.html">Entity<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Sortable.Entity.Repository.html">Repository</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Sortable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Sortable.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Sortable.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Sortable.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Gedmo.Timestampable.html">Timestampable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Timestampable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Timestampable.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Timestampable.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Timestampable.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.Timestampable.Traits.html">Traits</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Tool.html">Tool<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tool.Logging.html">Logging<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tool.Logging.DBAL.html">DBAL</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Tool.Wrapper.html">Wrapper</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Translatable.html">Translatable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Translatable.Document.html">Document<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Translatable.Document.MappedSuperclass.html">MappedSuperclass</a>
</li>
<li><a href="namespace-Gedmo.Translatable.Document.Repository.html">Repository</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Translatable.Entity.html">Entity<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Translatable.Entity.MappedSuperclass.html">MappedSuperclass</a>
</li>
<li><a href="namespace-Gedmo.Translatable.Entity.Repository.html">Repository</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Translatable.Hydrator.html">Hydrator<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Translatable.Hydrator.ORM.html">ORM</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Translatable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Translatable.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Translatable.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Translatable.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.Translatable.Query.html">Query<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Translatable.Query.TreeWalker.html">TreeWalker</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.Translator.html">Translator<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Translator.Document.html">Document</a>
</li>
<li><a href="namespace-Gedmo.Translator.Entity.html">Entity</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Tree.html">Tree<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tree.Document.html">Document<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tree.Document.MongoDB.html">MongoDB<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tree.Document.MongoDB.Repository.html">Repository</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.Tree.Entity.html">Entity<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tree.Entity.MappedSuperclass.html">MappedSuperclass</a>
</li>
<li><a href="namespace-Gedmo.Tree.Entity.Repository.html">Repository</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Tree.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tree.Mapping.Driver.html">Driver</a>
</li>
<li><a href="namespace-Gedmo.Tree.Mapping.Event.html">Event<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tree.Mapping.Event.Adapter.html">Adapter</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.Tree.Strategy.html">Strategy<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tree.Strategy.ODM.html">ODM<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Tree.Strategy.ODM.MongoDB.html">MongoDB</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Tree.Strategy.ORM.html">ORM</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Gedmo.Uploadable.html">Uploadable<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Uploadable.Event.html">Event</a>
</li>
<li><a href="namespace-Gedmo.Uploadable.FileInfo.html">FileInfo</a>
</li>
<li><a href="namespace-Gedmo.Uploadable.FilenameGenerator.html">FilenameGenerator</a>
</li>
<li><a href="namespace-Gedmo.Uploadable.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Gedmo.Uploadable.Mapping.Driver.html">Driver</a>
</li>
</ul></li>
<li><a href="namespace-Gedmo.Uploadable.MimeType.html">MimeType</a>
</li>
<li><a href="namespace-Gedmo.Uploadable.Stub.html">Stub</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Incenteev.html">Incenteev<span></span></a>
<ul>
<li><a href="namespace-Incenteev.ParameterHandler.html">ParameterHandler<span></span></a>
<ul>
<li><a href="namespace-Incenteev.ParameterHandler.Tests.html">Tests</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-IpTraceable.html">IpTraceable<span></span></a>
<ul>
<li><a href="namespace-IpTraceable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-IpTraceable.Fixture.Document.html">Document</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-JMS.html">JMS<span></span></a>
<ul>
<li><a href="namespace-JMS.Parser.html">Parser<span></span></a>
<ul>
<li><a href="namespace-JMS.Parser.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-JMS.Serializer.html">Serializer<span></span></a>
<ul>
<li><a href="namespace-JMS.Serializer.Annotation.html">Annotation</a>
</li>
<li><a href="namespace-JMS.Serializer.Builder.html">Builder</a>
</li>
<li><a href="namespace-JMS.Serializer.Construction.html">Construction</a>
</li>
<li><a href="namespace-JMS.Serializer.EventDispatcher.html">EventDispatcher<span></span></a>
<ul>
<li><a href="namespace-JMS.Serializer.EventDispatcher.Subscriber.html">Subscriber</a>
</li>
</ul></li>
<li><a href="namespace-JMS.Serializer.Exception.html">Exception</a>
</li>
<li><a href="namespace-JMS.Serializer.Exclusion.html">Exclusion</a>
</li>
<li><a href="namespace-JMS.Serializer.Handler.html">Handler</a>
</li>
<li><a href="namespace-JMS.Serializer.Metadata.html">Metadata<span></span></a>
<ul>
<li><a href="namespace-JMS.Serializer.Metadata.Driver.html">Driver</a>
</li>
</ul></li>
<li><a href="namespace-JMS.Serializer.Naming.html">Naming</a>
</li>
<li><a href="namespace-JMS.Serializer.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-JMS.Serializer.Tests.Exclusion.html">Exclusion</a>
</li>
<li><a href="namespace-JMS.Serializer.Tests.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-JMS.Serializer.Tests.Fixtures.Discriminator.html">Discriminator</a>
</li>
<li><a href="namespace-JMS.Serializer.Tests.Fixtures.Doctrine.html">Doctrine</a>
</li>
<li><a href="namespace-JMS.Serializer.Tests.Fixtures.DoctrinePHPCR.html">DoctrinePHPCR</a>
</li>
</ul></li>
<li><a href="namespace-JMS.Serializer.Tests.Handler.html">Handler</a>
</li>
<li><a href="namespace-JMS.Serializer.Tests.Metadata.html">Metadata<span></span></a>
<ul>
<li><a href="namespace-JMS.Serializer.Tests.Metadata.Driver.html">Driver</a>
</li>
</ul></li>
<li><a href="namespace-JMS.Serializer.Tests.Serializer.html">Serializer<span></span></a>
<ul>
<li><a href="namespace-JMS.Serializer.Tests.Serializer.EventDispatcher.html">EventDispatcher<span></span></a>
<ul>
<li><a href="namespace-JMS.Serializer.Tests.Serializer.EventDispatcher.Subscriber.html">Subscriber</a>
</li>
</ul></li>
<li><a href="namespace-JMS.Serializer.Tests.Serializer.Naming.html">Naming</a>
</li>
</ul></li>
<li><a href="namespace-JMS.Serializer.Tests.Twig.html">Twig</a>
</li>
</ul></li>
<li><a href="namespace-JMS.Serializer.Twig.html">Twig</a>
</li>
<li><a href="namespace-JMS.Serializer.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-JMS.SerializerBundle.html">SerializerBundle<span></span></a>
<ul>
<li><a href="namespace-JMS.SerializerBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-JMS.SerializerBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-JMS.SerializerBundle.Serializer.html">Serializer</a>
</li>
<li><a href="namespace-JMS.SerializerBundle.Templating.html">Templating</a>
</li>
<li><a href="namespace-JMS.SerializerBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-JMS.SerializerBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-JMS.SerializerBundle.Tests.DependencyInjection.Fixture.html">Fixture</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-JMS.TranslationBundle.html">TranslationBundle<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Annotation.html">Annotation</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Command.html">Command</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-JMS.TranslationBundle.Exception.html">Exception</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Logger.html">Logger</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Model.html">Model</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Functional.html">Functional<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Functional.TestBundle.html">TestBundle<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Functional.TestBundle.Controller.html">Controller</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-JMS.TranslationBundle.Tests.Model.html">Model</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.html">Translation<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Comparison.html">Comparison</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.html">Extractor<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.File.html">File<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.File.Fixture.html">Fixture</a>
</li>
</ul></li>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.Fixture.SimpleTest.html">SimpleTest<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.Fixture.SimpleTest.Controller.html">Controller</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.Fixture.SimpleTest.Form.html">Form</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Loader.html">Loader<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Loader.Symfony.html">Symfony</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-JMS.TranslationBundle.Tests.Twig.html">Twig</a>
</li>
</ul></li>
<li><a href="namespace-JMS.TranslationBundle.Translation.html">Translation<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Translation.Comparison.html">Comparison</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Translation.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Translation.Extractor.html">Extractor<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Translation.Extractor.File.html">File</a>
</li>
</ul></li>
<li><a href="namespace-JMS.TranslationBundle.Translation.Loader.html">Loader<span></span></a>
<ul>
<li><a href="namespace-JMS.TranslationBundle.Translation.Loader.Symfony.html">Symfony</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-JMS.TranslationBundle.Twig.html">Twig</a>
</li>
<li><a href="namespace-JMS.TranslationBundle.Util.html">Util</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Knp.html">Knp<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.html">Bundle<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.MenuBundle.html">MenuBundle<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.MenuBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.MenuBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Bundle.MenuBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Provider.html">Provider</a>
</li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Renderer.html">Renderer</a>
</li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.MenuBundle.Templating.Helper.html">Helper</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Provider.html">Provider</a>
</li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Renderer.html">Renderer</a>
</li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Stubs.html">Stubs<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Stubs.Child.html">Child<span></span></a>
<ul>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Stubs.Child.Menu.html">Menu</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Stubs.Menu.html">Menu</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Templating.html">Templating</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Knp.Menu.html">Menu<span></span></a>
<ul>
<li><a href="namespace-Knp.Menu.Factory.html">Factory</a>
</li>
<li><a href="namespace-Knp.Menu.Integration.html">Integration<span></span></a>
<ul>
<li><a href="namespace-Knp.Menu.Integration.Silex.html">Silex</a>
</li>
<li><a href="namespace-Knp.Menu.Integration.Symfony.html">Symfony</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Menu.Iterator.html">Iterator</a>
</li>
<li><a href="namespace-Knp.Menu.Loader.html">Loader</a>
</li>
<li><a href="namespace-Knp.Menu.Matcher.html">Matcher<span></span></a>
<ul>
<li><a href="namespace-Knp.Menu.Matcher.Voter.html">Voter</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Menu.Provider.html">Provider</a>
</li>
<li><a href="namespace-Knp.Menu.Renderer.html">Renderer</a>
</li>
<li><a href="namespace-Knp.Menu.Silex.html">Silex<span></span></a>
<ul>
<li><a href="namespace-Knp.Menu.Silex.Voter.html">Voter</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Menu.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Knp.Menu.Tests.Factory.html">Factory</a>
</li>
<li><a href="namespace-Knp.Menu.Tests.Integration.html">Integration<span></span></a>
<ul>
<li><a href="namespace-Knp.Menu.Tests.Integration.Silex.html">Silex</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Menu.Tests.Iterator.html">Iterator</a>
</li>
<li><a href="namespace-Knp.Menu.Tests.Loader.html">Loader</a>
</li>
<li><a href="namespace-Knp.Menu.Tests.Matcher.html">Matcher<span></span></a>
<ul>
<li><a href="namespace-Knp.Menu.Tests.Matcher.Voter.html">Voter</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Menu.Tests.Provider.html">Provider</a>
</li>
<li><a href="namespace-Knp.Menu.Tests.Renderer.html">Renderer</a>
</li>
<li><a href="namespace-Knp.Menu.Tests.Silex.html">Silex</a>
</li>
<li><a href="namespace-Knp.Menu.Tests.Twig.html">Twig</a>
</li>
<li><a href="namespace-Knp.Menu.Tests.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Knp.Menu.Twig.html">Twig</a>
</li>
<li><a href="namespace-Knp.Menu.Util.html">Util</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Loggable.html">Loggable<span></span></a>
<ul>
<li><a href="namespace-Loggable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Loggable.Fixture.Document.html">Document<span></span></a>
<ul>
<li><a href="namespace-Loggable.Fixture.Document.Log.html">Log</a>
</li>
</ul></li>
<li><a href="namespace-Loggable.Fixture.Entity.html">Entity<span></span></a>
<ul>
<li><a href="namespace-Loggable.Fixture.Entity.Log.html">Log</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Lunetics.html">Lunetics<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.html">LocaleBundle<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Cookie.html">Cookie</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.Event.html">Event</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Form.Extension.html">Extension<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Form.Extension.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Form.Extension.Type.html">Type</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.LocaleGuesser.html">LocaleGuesser</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.LocaleInformation.html">LocaleInformation</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Matcher.html">Matcher</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Session.html">Session</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Switcher.html">Switcher</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Templating.Helper.html">Helper</a>
</li>
</ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Controller.html">Controller</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Event.html">Event</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Form.Extension.html">Extension<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Form.Extension.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Form.Extension.Type.html">Type</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.LocaleGuesser.html">LocaleGuesser</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.LocaleInformation.html">LocaleInformation</a>
</li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Templating.Helper.html">Helper</a>
</li>
</ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Twig.html">Twig<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Twig.Extension.html">Extension</a>
</li>
</ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.Tests.Validator.html">Validator</a>
</li>
</ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.Twig.html">Twig<span></span></a>
<ul>
<li><a href="namespace-Lunetics.LocaleBundle.Twig.Extension.html">Extension</a>
</li>
</ul></li>
<li><a href="namespace-Lunetics.LocaleBundle.Validator.html">Validator</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Mapping.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Mapping.Fixture.Compatibility.html">Compatibility</a>
</li>
<li><a href="namespace-Mapping.Fixture.Document.html">Document</a>
</li>
<li><a href="namespace-Mapping.Fixture.Unmapped.html">Unmapped</a>
</li>
<li><a href="namespace-Mapping.Fixture.Xml.html">Xml</a>
</li>
<li><a href="namespace-Mapping.Fixture.Yaml.html">Yaml</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Metadata.html">Metadata<span></span></a>
<ul>
<li><a href="namespace-Metadata.Cache.html">Cache</a>
</li>
<li><a href="namespace-Metadata.Driver.html">Driver</a>
</li>
<li><a href="namespace-Metadata.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Metadata.Tests.Cache.html">Cache</a>
</li>
<li><a href="namespace-Metadata.Tests.Driver.html">Driver<span></span></a>
<ul>
<li><a href="namespace-Metadata.Tests.Driver.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Metadata.Tests.Driver.Fixture.A.html">A</a>
</li>
<li><a href="namespace-Metadata.Tests.Driver.Fixture.B.html">B</a>
</li>
<li><a href="namespace-Metadata.Tests.Driver.Fixture.C.html">C<span></span></a>
<ul>
<li><a href="namespace-Metadata.Tests.Driver.Fixture.C.SubDir.html">SubDir</a>
</li>
</ul></li>
<li><a href="namespace-Metadata.Tests.Driver.Fixture.T.html">T</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Metadata.Tests.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-Metadata.Tests.Fixtures.ComplexHierarchy.html">ComplexHierarchy</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Monolog.html">Monolog<span></span></a>
<ul>
<li><a href="namespace-Monolog.Formatter.html">Formatter</a>
</li>
<li><a href="namespace-Monolog.Handler.html">Handler<span></span></a>
<ul>
<li><a href="namespace-Monolog.Handler.FingersCrossed.html">FingersCrossed</a>
</li>
<li><a href="namespace-Monolog.Handler.SyslogUdp.html">SyslogUdp</a>
</li>
</ul></li>
<li><a href="namespace-Monolog.Processor.html">Processor</a>
</li>
</ul></li>
<li><a href="namespace-MyProject.html">MyProject<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.html">Proxies<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.html">__CG__<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.Doctrine.html">Doctrine<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.Doctrine.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.Doctrine.Tests.Common.html">Common<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.Doctrine.Tests.Common.Util.html">Util</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.html">OtherProject<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.Proxies.html">Proxies<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.Proxies.__CG__.html">__CG__<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.Proxies.__CG__.Doctrine.html">Doctrine<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.Proxies.__CG__.Doctrine.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.Proxies.__CG__.Doctrine.Tests.Common.html">Common<span></span></a>
<ul>
<li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.Proxies.__CG__.Doctrine.Tests.Common.Util.html">Util</a>
</li>
</ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-NamespaceCollision.html">NamespaceCollision<span></span></a>
<ul>
<li><a href="namespace-NamespaceCollision.A.html">A<span></span></a>
<ul>
<li><a href="namespace-NamespaceCollision.A.B.html">B</a>
</li>
</ul></li>
<li><a href="namespace-NamespaceCollision.C.html">C<span></span></a>
<ul>
<li><a href="namespace-NamespaceCollision.C.B.html">B</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Namespaced.html">Namespaced</a>
</li>
<li><a href="namespace-Namespaced2.html">Namespaced2</a>
</li>
<li><a href="namespace-Negotiation.html">Negotiation<span></span></a>
<ul>
<li><a href="namespace-Negotiation.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-None.html">None</a>
</li>
<li><a href="namespace-Pequiven.html">Pequiven<span></span></a>
<ul>
<li><a href="namespace-Pequiven.SEIPBundle.html">SEIPBundle<span></span></a>
<ul>
<li><a href="namespace-Pequiven.SEIPBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Pequiven.SEIPBundle.DataFixtures.html">DataFixtures</a>
</li>
<li><a href="namespace-Pequiven.SEIPBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Pequiven.SEIPBundle.Entity.html">Entity</a>
</li>
<li><a href="namespace-Pequiven.SEIPBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Pequiven.SEIPBundle.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Pequiven.SEIPBundle.Form.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Pequiven.SEIPBundle.Menu.html">Menu<span></span></a>
<ul>
<li><a href="namespace-Pequiven.SEIPBundle.Menu.Template.html">Template<span></span></a>
<ul>
<li><a href="namespace-Pequiven.SEIPBundle.Menu.Template.Developer.html">Developer</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Pequiven.SEIPBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Pequiven.SEIPBundle.Tests.Controller.html">Controller</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-PHP.html">PHP</a>
</li>
<li><a href="namespace-PhpCollection.html">PhpCollection<span></span></a>
<ul>
<li><a href="namespace-PhpCollection.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-PhpOption.html">PhpOption<span></span></a>
<ul>
<li><a href="namespace-PhpOption.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Proxies.html">Proxies<span></span></a>
<ul>
<li><a href="namespace-Proxies.__CG__.html">__CG__<span></span></a>
<ul>
<li><a href="namespace-Proxies.__CG__.Pequiven.html">Pequiven<span></span></a>
<ul>
<li><a href="namespace-Proxies.__CG__.Pequiven.SEIPBundle.html">SEIPBundle<span></span></a>
<ul>
<li><a href="namespace-Proxies.__CG__.Pequiven.SEIPBundle.Entity.html">Entity</a>
</li>
</ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-Psr.html">Psr<span></span></a>
<ul>
<li><a href="namespace-Psr.Log.html">Log<span></span></a>
<ul>
<li><a href="namespace-Psr.Log.Test.html">Test</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-ReferenceIntegrity.html">ReferenceIntegrity<span></span></a>
<ul>
<li><a href="namespace-ReferenceIntegrity.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-ReferenceIntegrity.Fixture.Document.html">Document<span></span></a>
<ul>
<li><a href="namespace-ReferenceIntegrity.Fixture.Document.ManyNullify.html">ManyNullify</a>
</li>
<li><a href="namespace-ReferenceIntegrity.Fixture.Document.ManyRestrict.html">ManyRestrict</a>
</li>
<li><a href="namespace-ReferenceIntegrity.Fixture.Document.OneNullify.html">OneNullify</a>
</li>
<li><a href="namespace-ReferenceIntegrity.Fixture.Document.OneRestrict.html">OneRestrict</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-References.html">References<span></span></a>
<ul>
<li><a href="namespace-References.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-References.Fixture.ODM.html">ODM<span></span></a>
<ul>
<li><a href="namespace-References.Fixture.ODM.MongoDB.html">MongoDB</a>
</li>
</ul></li>
<li><a href="namespace-References.Fixture.ORM.html">ORM</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Sensio.html">Sensio<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.html">Bundle<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.DistributionBundle.html">DistributionBundle<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.DistributionBundle.Composer.html">Composer</a>
</li>
<li><a href="namespace-Sensio.Bundle.DistributionBundle.Configurator.html">Configurator<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.DistributionBundle.Configurator.Form.html">Form</a>
</li>
<li><a href="namespace-Sensio.Bundle.DistributionBundle.Configurator.Step.html">Step</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.DistributionBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Sensio.Bundle.DistributionBundle.DependencyInjection.html">DependencyInjection</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.html">FrameworkExtraBundle<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Configuration.html">Configuration</a>
</li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Request.html">Request<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Request.ParamConverter.html">ParamConverter</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Routing.html">Routing</a>
</li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Security.html">Security</a>
</li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Templating.html">Templating</a>
</li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Configuration.html">Configuration</a>
</li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.EventListener.html">EventListener<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.EventListener.Fixture.html">Fixture</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Request.html">Request<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Request.ParamConverter.html">ParamConverter</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Routing.html">Routing</a>
</li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.BarBundle.html">BarBundle<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.BarBundle.Controller.html">Controller</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.FooBarBundle.html">FooBarBundle<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.FooBarBundle.Controller.html">Controller</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.FooBundle.html">FooBundle<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.FooBundle.Controller.html">Controller</a>
</li>
</ul></li></ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-Sensio.Bundle.GeneratorBundle.html">GeneratorBundle<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.GeneratorBundle.Command.html">Command<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.GeneratorBundle.Command.Helper.html">Helper</a>
</li>
</ul></li>
<li><a href="namespace-Sensio.Bundle.GeneratorBundle.Generator.html">Generator</a>
</li>
<li><a href="namespace-Sensio.Bundle.GeneratorBundle.Manipulator.html">Manipulator</a>
</li>
<li><a href="namespace-Sensio.Bundle.GeneratorBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Sensio.Bundle.GeneratorBundle.Tests.Command.html">Command</a>
</li>
<li><a href="namespace-Sensio.Bundle.GeneratorBundle.Tests.Generator.html">Generator</a>
</li>
</ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-Sluggable.html">Sluggable<span></span></a>
<ul>
<li><a href="namespace-Sluggable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Sluggable.Fixture.Doctrine.html">Doctrine</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Document.html">Document<span></span></a>
<ul>
<li><a href="namespace-Sluggable.Fixture.Document.Handler.html">Handler</a>
</li>
</ul></li>
<li><a href="namespace-Sluggable.Fixture.Handler.html">Handler<span></span></a>
<ul>
<li><a href="namespace-Sluggable.Fixture.Handler.People.html">People</a>
</li>
</ul></li>
<li><a href="namespace-Sluggable.Fixture.Inheritance.html">Inheritance</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Inheritance2.html">Inheritance2</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Issue104.html">Issue104</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Issue116.html">Issue116</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Issue131.html">Issue131</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Issue449.html">Issue449</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Issue633.html">Issue633</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Issue827.html">Issue827</a>
</li>
<li><a href="namespace-Sluggable.Fixture.Issue939.html">Issue939</a>
</li>
<li><a href="namespace-Sluggable.Fixture.MappedSuperclass.html">MappedSuperclass</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-SoftDeleteable.html">SoftDeleteable<span></span></a>
<ul>
<li><a href="namespace-SoftDeleteable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-SoftDeleteable.Fixture.Document.html">Document</a>
</li>
<li><a href="namespace-SoftDeleteable.Fixture.Entity.html">Entity</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Sortable.html">Sortable<span></span></a>
<ul>
<li><a href="namespace-Sortable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Sortable.Fixture.Transport.html">Transport</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Stof.html">Stof<span></span></a>
<ul>
<li><a href="namespace-Stof.DoctrineExtensionsBundle.html">DoctrineExtensionsBundle<span></span></a>
<ul>
<li><a href="namespace-Stof.DoctrineExtensionsBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Stof.DoctrineExtensionsBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Stof.DoctrineExtensionsBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Stof.DoctrineExtensionsBundle.Uploadable.html">Uploadable</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.html">Symfony<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.html">Bridge<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.html">Doctrine<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.DataFixtures.html">DataFixtures</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.DependencyInjection.CompilerPass.html">CompilerPass</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.DependencyInjection.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.DependencyInjection.Security.UserProvider.html">UserProvider</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.Doctrine.ExpressionLanguage.html">ExpressionLanguage</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Form.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Form.DataTransformer.html">DataTransformer</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Form.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Form.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Doctrine.HttpFoundation.html">HttpFoundation</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Logger.html">Logger</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Security.RememberMe.html">RememberMe</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Security.User.html">User</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Test.html">Test</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.DataFixtures.html">DataFixtures</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.DependencyInjection.CompilerPass.html">CompilerPass</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.ExpressionLanguage.html">ExpressionLanguage</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Form.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Form.DataTransformer.html">DataTransformer</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Form.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.HttpFoundation.html">HttpFoundation</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Logger.html">Logger</a>
</li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Security.User.html">User</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Validator.Constraints.html">Constraints</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.Doctrine.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Doctrine.Validator.Constraints.html">Constraints</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.Monolog.html">Monolog<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Monolog.Formatter.html">Formatter</a>
</li>
<li><a href="namespace-Symfony.Bridge.Monolog.Handler.html">Handler</a>
</li>
<li><a href="namespace-Symfony.Bridge.Monolog.Processor.html">Processor</a>
</li>
<li><a href="namespace-Symfony.Bridge.Monolog.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Monolog.Tests.Handler.html">Handler</a>
</li>
<li><a href="namespace-Symfony.Bridge.Monolog.Tests.Processor.html">Processor</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.Propel1.html">Propel1<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.DependencyInjection.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.DependencyInjection.Security.UserProvider.html">UserProvider</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.Propel1.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.Form.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Form.DataTransformer.html">DataTransformer</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Form.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Form.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Propel1.Logger.html">Logger</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.Security.User.html">User</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Propel1.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.Tests.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Tests.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Propel1.Tests.Form.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Symfony.Bridge.Propel1.Tests.Form.DataTransformer.html">DataTransformer</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.ProxyManager.html">ProxyManager<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.ProxyManager.LazyProxy.html">LazyProxy<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.ProxyManager.LazyProxy.Instantiator.html">Instantiator</a>
</li>
<li><a href="namespace-Symfony.Bridge.ProxyManager.LazyProxy.PhpDumper.html">PhpDumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.ProxyManager.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.ProxyManager.Tests.LazyProxy.html">LazyProxy<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.ProxyManager.Tests.LazyProxy.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-Symfony.Bridge.ProxyManager.Tests.LazyProxy.Instantiator.html">Instantiator</a>
</li>
<li><a href="namespace-Symfony.Bridge.ProxyManager.Tests.LazyProxy.PhpDumper.html">PhpDumper</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Bridge.Twig.html">Twig<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Twig.Extension.html">Extension</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Form.html">Form</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Node.html">Node</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.NodeVisitor.html">NodeVisitor</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.Extension.html">Extension<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.Extension.Fixtures.html">Fixtures</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.Node.html">Node</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.NodeVisitor.html">NodeVisitor</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.TokenParser.html">TokenParser</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Tests.Translation.html">Translation</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bridge.Twig.TokenParser.html">TokenParser</a>
</li>
<li><a href="namespace-Symfony.Bridge.Twig.Translation.html">Translation</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.html">Bundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.html">AsseticBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Config.html">Config</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Factory.html">Factory<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Factory.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Factory.Resource.html">Resource</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Factory.Worker.html">Worker</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Routing.html">Routing</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Templating.html">Templating</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.Factory.html">Factory<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.Factory.Resource.html">Resource</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.Templating.html">Templating</a>
</li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.TestBundle.html">TestBundle</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.AsseticBundle.Twig.html">Twig</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.html">FrameworkBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Console.html">Console<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Console.Descriptor.html">Descriptor</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Console.Helper.html">Helper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Fragment.html">Fragment</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.HttpCache.html">HttpCache</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Routing.html">Routing</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Templating.Asset.html">Asset</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Templating.Helper.html">Helper</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Templating.Loader.html">Loader</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Test.html">Test</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Console.html">Console<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Console.Descriptor.html">Descriptor</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Fixtures.BaseBundle.html">BaseBundle</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Fragment.html">Fragment</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Functional.html">Functional<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Functional.app.html">app</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Functional.Bundle.html">Bundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Functional.Bundle.TestBundle.html">TestBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Functional.Bundle.TestBundle.Controller.html">Controller</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Routing.html">Routing</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Templating.Helper.html">Helper<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Templating.Helper.Fixtures.html">Fixtures</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Templating.Loader.html">Loader</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Translation.html">Translation</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Validator.html">Validator</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Translation.html">Translation</a>
</li>
<li><a href="namespace-Symfony.Bundle.FrameworkBundle.Validator.html">Validator</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.MonologBundle.html">MonologBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.MonologBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.MonologBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.MonologBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.MonologBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.MonologBundle.Tests.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.html">SecurityBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.DependencyInjection.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.DependencyInjection.Security.Factory.html">Factory</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.DependencyInjection.Security.UserProvider.html">UserProvider</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Security.html">Security</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Templating.Helper.html">Helper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.DependencyInjection.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.DependencyInjection.Security.Factory.html">Factory</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.html">Functional<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.app.html">app</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.html">Bundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.CsrfFormLoginBundle.html">CsrfFormLoginBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.CsrfFormLoginBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.CsrfFormLoginBundle.Form.html">Form</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.FormLoginBundle.html">FormLoginBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.FormLoginBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.FormLoginBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.FormLoginBundle.Security.html">Security</a>
</li>
</ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Twig.html">Twig<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SecurityBundle.Twig.Extension.html">Extension</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.html">SwiftmailerBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.Tests.DependencyInjection.html">DependencyInjection</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.html">TwigBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.TwigBundle.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Debug.html">Debug</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.TwigBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Extension.html">Extension</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Node.html">Node</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.TokenParser.html">TokenParser</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.TwigBundle.TokenParser.html">TokenParser</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.html">WebProfilerBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Profiler.html">Profiler</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Tests.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Tests.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Tests.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Tests.Profiler.html">Profiler</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Component.html">Component<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.BrowserKit.html">BrowserKit<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.BrowserKit.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.ClassLoader.html">ClassLoader<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.ClassLoader.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Config.html">Config<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Config.Definition.html">Definition<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Config.Definition.Builder.html">Builder</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Definition.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Definition.Exception.html">Exception</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Config.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Resource.html">Resource</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Config.Tests.Definition.html">Definition<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Config.Tests.Definition.Builder.html">Builder</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Tests.Definition.Dumper.html">Dumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Config.Tests.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Config.Tests.Fixtures.Configuration.html">Configuration</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Config.Tests.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Config.Tests.Resource.html">Resource</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Config.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Console.html">Console<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Console.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Descriptor.html">Descriptor</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Event.html">Event</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Formatter.html">Formatter</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Helper.html">Helper</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Input.html">Input</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Output.html">Output</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tester.html">Tester</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Console.Tests.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Descriptor.html">Descriptor</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Formatter.html">Formatter</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Helper.html">Helper</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Input.html">Input</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Output.html">Output</a>
</li>
<li><a href="namespace-Symfony.Component.Console.Tests.Tester.html">Tester</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.CssSelector.html">CssSelector<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.CssSelector.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.CssSelector.Node.html">Node</a>
</li>
<li><a href="namespace-Symfony.Component.CssSelector.Parser.html">Parser<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.CssSelector.Parser.Handler.html">Handler</a>
</li>
<li><a href="namespace-Symfony.Component.CssSelector.Parser.Shortcut.html">Shortcut</a>
</li>
<li><a href="namespace-Symfony.Component.CssSelector.Parser.Tokenizer.html">Tokenizer</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.CssSelector.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.CssSelector.Tests.Node.html">Node</a>
</li>
<li><a href="namespace-Symfony.Component.CssSelector.Tests.Parser.html">Parser<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.CssSelector.Tests.Parser.Handler.html">Handler</a>
</li>
<li><a href="namespace-Symfony.Component.CssSelector.Tests.Parser.Shortcut.html">Shortcut</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.CssSelector.Tests.XPath.html">XPath</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.CssSelector.XPath.html">XPath<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.CssSelector.XPath.Extension.html">Extension</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Debug.html">Debug<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Debug.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Debug.FatalErrorHandler.html">FatalErrorHandler</a>
</li>
<li><a href="namespace-Symfony.Component.Debug.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Debug.Tests.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Debug.Tests.FatalErrorHandler.html">FatalErrorHandler</a>
</li>
<li><a href="namespace-Symfony.Component.Debug.Tests.Fixtures.html">Fixtures</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.DependencyInjection.Compiler.html">Compiler</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Dump.html">Dump</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Extension.html">Extension</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.LazyProxy.html">LazyProxy<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.DependencyInjection.LazyProxy.Instantiator.html">Instantiator</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.LazyProxy.PhpDumper.html">PhpDumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.ParameterBag.html">ParameterBag</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.Compiler.html">Compiler</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.Extension.html">Extension</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.LazyProxy.html">LazyProxy<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.LazyProxy.Instantiator.html">Instantiator</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.LazyProxy.PhpDumper.html">PhpDumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.DependencyInjection.Tests.ParameterBag.html">ParameterBag</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.DomCrawler.html">DomCrawler<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.DomCrawler.Field.html">Field</a>
</li>
<li><a href="namespace-Symfony.Component.DomCrawler.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.DomCrawler.Tests.Field.html">Field</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.EventDispatcher.html">EventDispatcher<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.EventDispatcher.Debug.html">Debug</a>
</li>
<li><a href="namespace-Symfony.Component.EventDispatcher.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.ExpressionLanguage.html">ExpressionLanguage<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.ExpressionLanguage.Node.html">Node</a>
</li>
<li><a href="namespace-Symfony.Component.ExpressionLanguage.ParserCache.html">ParserCache</a>
</li>
<li><a href="namespace-Symfony.Component.ExpressionLanguage.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.ExpressionLanguage.Tests.Node.html">Node</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Filesystem.html">Filesystem<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Filesystem.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Filesystem.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Finder.html">Finder<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Finder.Adapter.html">Adapter</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Comparator.html">Comparator</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Expression.html">Expression</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Iterator.html">Iterator</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Shell.html">Shell</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Finder.Tests.Comparator.html">Comparator</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Tests.Expression.html">Expression</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Tests.FakeAdapter.html">FakeAdapter</a>
</li>
<li><a href="namespace-Symfony.Component.Finder.Tests.Iterator.html">Iterator</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.html">Extension<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.html">Core<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.DataMapper.html">DataMapper</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.DataTransformer.html">DataTransformer</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.Type.html">Type</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Core.View.html">View</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Extension.Csrf.html">Csrf<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Extension.Csrf.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Csrf.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Extension.DataCollector.html">DataCollector<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Extension.DataCollector.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.DataCollector.Proxy.html">Proxy</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.DataCollector.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Extension.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.HttpFoundation.html">HttpFoundation<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Extension.HttpFoundation.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Extension.Templating.html">Templating</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Extension.Validator.Constraints.html">Constraints</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Validator.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Validator.Type.html">Type</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Validator.Util.html">Util</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Extension.Validator.ViolationMapper.html">ViolationMapper</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Form.Guess.html">Guess</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Test.html">Test</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.html">Extension<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.html">Core<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.ChoiceList.html">ChoiceList</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.DataMapper.html">DataMapper</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.DataTransformer.html">DataTransformer</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Csrf.html">Csrf<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Csrf.CsrfProvider.html">CsrfProvider</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Csrf.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Csrf.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.DataCollector.html">DataCollector<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.DataCollector.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.HttpFoundation.html">HttpFoundation<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.HttpFoundation.EventListener.html">EventListener</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.Constraints.html">Constraints</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.Type.html">Type</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.Util.html">Util</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.ViolationMapper.html">ViolationMapper</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Form.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Guess.html">Guess</a>
</li>
<li><a href="namespace-Symfony.Component.Form.Tests.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Form.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.HttpFoundation.html">HttpFoundation<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.File.html">File<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.File.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.File.MimeType.html">MimeType</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Session.html">Session<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.Session.Attribute.html">Attribute</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Session.Flash.html">Flash</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Session.Storage.html">Storage<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.Session.Storage.Handler.html">Handler</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Session.Storage.Proxy.html">Proxy</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.File.html">File<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.File.MimeType.html">MimeType</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.html">Session<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.Attribute.html">Attribute</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.Flash.html">Flash</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.Storage.html">Storage<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.Storage.Handler.html">Handler</a>
</li>
<li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.Storage.Proxy.html">Proxy</a>
</li>
</ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Component.HttpKernel.html">HttpKernel<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.Bundle.html">Bundle</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.CacheClearer.html">CacheClearer</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Config.html">Config</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.DataCollector.html">DataCollector<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.DataCollector.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.HttpKernel.Debug.html">Debug</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Event.html">Event</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Fragment.html">Fragment</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.HttpCache.html">HttpCache</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Log.html">Log</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Profiler.html">Profiler</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Bundle.html">Bundle</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.CacheClearer.html">CacheClearer</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.CacheWarmer.html">CacheWarmer</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Config.html">Config</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Controller.html">Controller</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.DataCollector.html">DataCollector</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Debug.html">Debug</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionAbsentBundle.html">ExtensionAbsentBundle</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionLoadedBundle.html">ExtensionLoadedBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionLoadedBundle.DependencyInjection.html">DependencyInjection</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionPresentBundle.html">ExtensionPresentBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionPresentBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionPresentBundle.DependencyInjection.html">DependencyInjection</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fragment.html">Fragment</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.HttpCache.html">HttpCache</a>
</li>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Profiler.html">Profiler<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.HttpKernel.Tests.Profiler.Mock.html">Mock</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Icu.html">Icu<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Icu.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.html">Intl<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Collator.html">Collator</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.DateFormatter.html">DateFormatter<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.DateFormatter.DateFormat.html">DateFormat</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.Globals.html">Globals</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.Locale.html">Locale</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.NumberFormatter.html">NumberFormatter</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.html">ResourceBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Compiler.html">Compiler</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Reader.html">Reader</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Transformer.html">Transformer<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Transformer.Rule.html">Rule</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Util.html">Util</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Writer.html">Writer</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.Collator.html">Collator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.Collator.Verification.html">Verification</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.DateFormatter.html">DateFormatter<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.DateFormatter.Verification.html">Verification</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.Globals.html">Globals<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.Globals.Verification.html">Verification</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.Locale.html">Locale<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.Locale.Verification.html">Verification</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.NumberFormatter.html">NumberFormatter<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.NumberFormatter.Verification.html">Verification</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.ResourceBundle.html">ResourceBundle<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Intl.Tests.ResourceBundle.Reader.html">Reader</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.Tests.ResourceBundle.Util.html">Util</a>
</li>
<li><a href="namespace-Symfony.Component.Intl.Tests.ResourceBundle.Writer.html">Writer</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Tests.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Intl.Util.html">Util</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Locale.html">Locale<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Locale.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Locale.Tests.Stub.html">Stub</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.OptionsResolver.html">OptionsResolver<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.OptionsResolver.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.OptionsResolver.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Process.html">Process<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Process.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Process.Tests.html">Tests</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.PropertyAccess.html">PropertyAccess<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.PropertyAccess.Exception.html">Exception</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Routing.html">Routing<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Annotation.html">Annotation</a>
</li>
<li><a href="namespace-Symfony.Component.Routing.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Routing.Generator.html">Generator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Generator.Dumper.html">Dumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Routing.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Routing.Matcher.html">Matcher<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Matcher.Dumper.html">Dumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Routing.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Tests.Annotation.html">Annotation</a>
</li>
<li><a href="namespace-Symfony.Component.Routing.Tests.Fixtures.html">Fixtures<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Tests.Fixtures.AnnotatedClasses.html">AnnotatedClasses</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Routing.Tests.Generator.html">Generator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Tests.Generator.Dumper.html">Dumper</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Routing.Tests.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Routing.Tests.Matcher.html">Matcher<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Routing.Tests.Matcher.Dumper.html">Dumper</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Security.html">Security<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Acl.html">Acl<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Acl.Dbal.html">Dbal</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Domain.html">Domain</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Model.html">Model</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Permission.html">Permission</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Acl.Tests.Dbal.html">Dbal</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Tests.Domain.html">Domain</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Tests.Permission.html">Permission</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Acl.Tests.Voter.html">Voter</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Acl.Voter.html">Voter</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Core.html">Core<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Authentication.html">Authentication<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Authentication.Provider.html">Provider</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Authentication.RememberMe.html">RememberMe</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Authentication.Token.html">Token</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Core.Authorization.html">Authorization<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Authorization.Voter.html">Voter</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Core.Encoder.html">Encoder</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Event.html">Event</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Role.html">Role</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Authentication.html">Authentication<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Authentication.Provider.html">Provider</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Authentication.RememberMe.html">RememberMe</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Authentication.Token.html">Token</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Authorization.html">Authorization<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Authorization.Voter.html">Voter</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Encoder.html">Encoder</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Role.html">Role</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.User.html">User</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Util.html">Util</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Tests.Validator.Constraints.html">Constraints</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Security.Core.User.html">User</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Util.html">Util</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Core.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Core.Validator.Constraints.html">Constraints</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Security.Csrf.html">Csrf<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Csrf.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Csrf.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Csrf.Tests.TokenGenerator.html">TokenGenerator</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Csrf.Tests.TokenStorage.html">TokenStorage</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Csrf.TokenGenerator.html">TokenGenerator</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Csrf.TokenStorage.html">TokenStorage</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Http.html">Http<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Http.Authentication.html">Authentication</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Authorization.html">Authorization</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.EntryPoint.html">EntryPoint</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Event.html">Event</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Firewall.html">Firewall</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Logout.html">Logout</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.RememberMe.html">RememberMe</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Session.html">Session</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.Authentication.html">Authentication</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.EntryPoint.html">EntryPoint</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.Firewall.html">Firewall</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.Logout.html">Logout</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.RememberMe.html">RememberMe</a>
</li>
<li><a href="namespace-Symfony.Component.Security.Http.Tests.Session.html">Session</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Security.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Tests.Core.html">Core<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Tests.Core.Authentication.html">Authentication<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Tests.Core.Authentication.Token.html">Token</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Tests.Core.User.html">User</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Security.Tests.Http.html">Http<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Security.Tests.Http.Firewall.html">Firewall</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Serializer.html">Serializer<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Serializer.Encoder.html">Encoder</a>
</li>
<li><a href="namespace-Symfony.Component.Serializer.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Serializer.Normalizer.html">Normalizer</a>
</li>
<li><a href="namespace-Symfony.Component.Serializer.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Serializer.Tests.Encoder.html">Encoder</a>
</li>
<li><a href="namespace-Symfony.Component.Serializer.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Component.Serializer.Tests.Normalizer.html">Normalizer</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Stopwatch.html">Stopwatch</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.html">Templating<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Templating.Asset.html">Asset</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Helper.html">Helper</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Storage.html">Storage</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Templating.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Tests.Helper.html">Helper</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Tests.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Templating.Tests.Storage.html">Storage</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Translation.html">Translation<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Translation.Catalogue.html">Catalogue</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Extractor.html">Extractor</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Loader.html">Loader</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Translation.Tests.Catalogue.html">Catalogue</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Tests.Dumper.html">Dumper</a>
</li>
<li><a href="namespace-Symfony.Component.Translation.Tests.Loader.html">Loader</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Translation.Writer.html">Writer</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Validator.html">Validator<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Validator.Constraints.html">Constraints</a>
</li>
<li><a href="namespace-Symfony.Component.Validator.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Validator.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Validator.Mapping.Cache.html">Cache</a>
</li>
<li><a href="namespace-Symfony.Component.Validator.Mapping.Loader.html">Loader</a>
</li>
</ul></li>
<li><a href="namespace-Symfony.Component.Validator.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Validator.Tests.Constraints.html">Constraints</a>
</li>
<li><a href="namespace-Symfony.Component.Validator.Tests.Fixtures.html">Fixtures</a>
</li>
<li><a href="namespace-Symfony.Component.Validator.Tests.Mapping.html">Mapping<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Validator.Tests.Mapping.Cache.html">Cache</a>
</li>
<li><a href="namespace-Symfony.Component.Validator.Tests.Mapping.Loader.html">Loader</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Symfony.Component.Yaml.html">Yaml<span></span></a>
<ul>
<li><a href="namespace-Symfony.Component.Yaml.Exception.html">Exception</a>
</li>
<li><a href="namespace-Symfony.Component.Yaml.Tests.html">Tests</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Tecnocreaciones.html">Tecnocreaciones<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.html">Bundle<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.html">AjaxFOSUserBundle<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.DependencyInjection.html">DependencyInjection<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.DependencyInjection.Compiler.html">Compiler</a>
</li>
</ul></li>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.Event.html">Event</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.EventListener.html">EventListener</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.Handler.html">Handler</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.Tests.Controller.html">Controller</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Tecnocreaciones.Bundle.InstallBundle.html">InstallBundle<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.InstallBundle.Command.html">Command</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.InstallBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.InstallBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.InstallBundle.Tests.Controller.html">Controller</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.html">TemplateBundle<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Controller.html">Controller</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Menu.html">Menu<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Menu.Template.html">Template<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Menu.Template.Developer.html">Developer</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Tests.Controller.html">Controller</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-Tecnocreaciones.Vzla.html">Vzla<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.html">GovernmentBundle<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.DependencyInjection.html">DependencyInjection</a>
</li>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Form.html">Form<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Form.Type.html">Type</a>
</li>
</ul></li>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Menu.html">Menu<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Menu.Template.html">Template<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Menu.Template.Developer.html">Developer</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Model.html">Model</a>
</li>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Tests.html">Tests<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Tests.Controller.html">Controller</a>
</li>
</ul></li>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Twig.html">Twig<span></span></a>
<ul>
<li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Twig.Extension.html">Extension</a>
</li>
</ul></li></ul></li></ul></li></ul></li>
<li><a href="namespace-TestBundle.html">TestBundle<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Fabpot.html">Fabpot<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Fabpot.FooBundle.html">FooBundle<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Fabpot.FooBundle.Controller.html">Controller</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-TestBundle.FooBundle.html">FooBundle<span></span></a>
<ul>
<li><a href="namespace-TestBundle.FooBundle.Controller.html">Controller<span></span></a>
<ul>
<li><a href="namespace-TestBundle.FooBundle.Controller.Sub.html">Sub</a>
</li>
<li><a href="namespace-TestBundle.FooBundle.Controller.Test.html">Test</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-TestBundle.Sensio.html">Sensio<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Sensio.Cms.html">Cms<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Sensio.Cms.FooBundle.html">FooBundle<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Sensio.Cms.FooBundle.Controller.html">Controller</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-TestBundle.Sensio.FooBundle.html">FooBundle<span></span></a>
<ul>
<li><a href="namespace-TestBundle.Sensio.FooBundle.Controller.html">Controller</a>
</li>
</ul></li></ul></li></ul></li>
<li><a href="namespace-TestFixtures.html">TestFixtures</a>
</li>
<li><a href="namespace-Timestampable.html">Timestampable<span></span></a>
<ul>
<li><a href="namespace-Timestampable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Timestampable.Fixture.Document.html">Document</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Tool.html">Tool</a>
</li>
<li><a href="namespace-Translatable.html">Translatable<span></span></a>
<ul>
<li><a href="namespace-Translatable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Translatable.Fixture.Document.html">Document<span></span></a>
<ul>
<li><a href="namespace-Translatable.Fixture.Document.Personal.html">Personal</a>
</li>
</ul></li>
<li><a href="namespace-Translatable.Fixture.Issue114.html">Issue114</a>
</li>
<li><a href="namespace-Translatable.Fixture.Issue138.html">Issue138</a>
</li>
<li><a href="namespace-Translatable.Fixture.Issue165.html">Issue165</a>
</li>
<li><a href="namespace-Translatable.Fixture.Issue173.html">Issue173</a>
</li>
<li><a href="namespace-Translatable.Fixture.Issue75.html">Issue75</a>
</li>
<li><a href="namespace-Translatable.Fixture.Issue922.html">Issue922</a>
</li>
<li><a href="namespace-Translatable.Fixture.Personal.html">Personal</a>
</li>
<li><a href="namespace-Translatable.Fixture.Template.html">Template</a>
</li>
<li><a href="namespace-Translatable.Fixture.Type.html">Type</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Translator.html">Translator<span></span></a>
<ul>
<li><a href="namespace-Translator.Fixture.html">Fixture</a>
</li>
</ul></li>
<li><a href="namespace-Tree.html">Tree<span></span></a>
<ul>
<li><a href="namespace-Tree.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Tree.Fixture.Closure.html">Closure</a>
</li>
<li><a href="namespace-Tree.Fixture.Document.html">Document</a>
</li>
<li><a href="namespace-Tree.Fixture.Genealogy.html">Genealogy</a>
</li>
<li><a href="namespace-Tree.Fixture.Mock.html">Mock</a>
</li>
<li><a href="namespace-Tree.Fixture.Repository.html">Repository</a>
</li>
<li><a href="namespace-Tree.Fixture.Transport.html">Transport</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Uploadable.html">Uploadable<span></span></a>
<ul>
<li><a href="namespace-Uploadable.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Uploadable.Fixture.Entity.html">Entity</a>
</li>
</ul></li></ul></li>
<li><a href="namespace-Wrapper.html">Wrapper<span></span></a>
<ul>
<li><a href="namespace-Wrapper.Fixture.html">Fixture<span></span></a>
<ul>
<li><a href="namespace-Wrapper.Fixture.Document.html">Document</a>
</li>
<li><a href="namespace-Wrapper.Fixture.Entity.html">Entity</a>
</li>
</ul></li></ul></li>
</ul>
</div>
<hr />
<div id="elements">
<h3>Classes</h3>
<ul>
<li class="active"><a href="class-Gedmo.Loggable.LoggableDocumentTest.html">LoggableDocumentTest</a></li>
<li><a href="class-Gedmo.Loggable.LoggableEntityTest.html">LoggableEntityTest</a></li>
<li><a href="class-Gedmo.Loggable.LoggableListener.html">LoggableListener</a></li>
<li><a href="class-Gedmo.Loggable.TreeMappingTest.html">TreeMappingTest</a></li>
</ul>
<h3>Interfaces</h3>
<ul>
<li><a href="class-Gedmo.Loggable.Loggable.html">Loggable</a></li>
</ul>
</div>
</div>
</div>
<div id="splitter"></div>
<div id="right">
<div id="rightInner">
<form id="search">
<input type="hidden" name="cx" value="" />
<input type="hidden" name="ie" value="UTF-8" />
<input type="text" name="q" class="text" />
<input type="submit" value="Search" />
</form>
<div id="navigation">
<ul>
<li>
<a href="index.html" title="Overview"><span>Overview</span></a>
</li>
<li>
<a href="namespace-Gedmo.Loggable.html" title="Summary of Gedmo\Loggable"><span>Namespace</span></a>
</li>
<li class="active">
<span>Class</span> </li>
</ul>
<ul>
<li>
<a href="tree.html" title="Tree view of classes, interfaces, traits and exceptions"><span>Tree</span></a>
</li>
</ul>
<ul>
</ul>
</div>
<div id="content" class="class">
<h1>Class LoggableDocumentTest</h1>
<div class="description">
<p>These are tests for loggable behavior</p>
</div>
<dl class="tree">
<dd style="padding-left:0px">
PHPUnit_Framework_TestCase
</dd>
<dd style="padding-left:30px">
<img src="resources/inherit.png" alt="Extended by" />
<a href="class-Tool.BaseTestCaseMongoODM.html"><span>Tool\BaseTestCaseMongoODM</span></a>
</dd>
<dd style="padding-left:60px">
<img src="resources/inherit.png" alt="Extended by" />
<b><span>Gedmo\Loggable\LoggableDocumentTest</span></b>
</dd>
</dl>
<div class="info">
<b>Namespace:</b> <a href="namespace-Gedmo.html">Gedmo</a>\<a href="namespace-Gedmo.Loggable.html">Loggable</a><br />
<b>License:</b>
<a href="MIT">License (http://www.opensource.org/licenses/mit-license.php)</a><br />
<b>Author:</b>
Boussekeyt Jules <<a
href="mailto:jules.boussekeyt@gmail.com">jules.boussekeyt@<!---->gmail.com</a>><br />
<b>Author:</b>
Gediminas Morkevicius <<a
href="mailto:gediminas.morkevicius@gmail.com">gediminas.morkevicius@<!---->gmail.com</a>><br />
<b>Link:</b>
<a href="http://www.gediminasm.org">http://www.gediminasm.org</a><br />
<b>Located at</b> <a href="source-class-Gedmo.Loggable.LoggableDocumentTest.html#11-147" title="Go to source code">vendor/gedmo/doctrine-extensions/tests/Gedmo/Loggable/LoggableDocumentTest.php</a><br />
</div>
<table class="summary" id="methods">
<caption>Methods summary</caption>
<tr data-order="setUp" id="_setUp">
<td class="attributes"><code>
protected
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_setUp">#</a>
<code><a href="source-class-Gedmo.Loggable.LoggableDocumentTest.html#27-36" title="Go to source code">setUp</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
<h4>Overrides</h4>
<div class="list"><code><a href="class-Tool.BaseTestCaseMongoODM.html#_setUp">Tool\BaseTestCaseMongoODM::setUp()</a></code></div>
</div>
</div></td>
</tr>
<tr data-order="testLogGeneration" id="_testLogGeneration">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_testLogGeneration">#</a>
<code><a href="source-class-Gedmo.Loggable.LoggableDocumentTest.html#38-81" title="Go to source code">testLogGeneration</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="testVersionControl" id="_testVersionControl">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_testVersionControl">#</a>
<code><a href="source-class-Gedmo.Loggable.LoggableDocumentTest.html#83-108" title="Go to source code">testVersionControl</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
</table>
<table class="summary inherited">
<caption>Methods inherited from <a href="class-Tool.BaseTestCaseMongoODM.html#methods">Tool\BaseTestCaseMongoODM</a></caption>
<tr>
<td><code>
<a href="class-Tool.BaseTestCaseMongoODM.html#_getMetadataDriverImplementation">getMetadataDriverImplementation()</a>,
<a href="class-Tool.BaseTestCaseMongoODM.html#_getMockAnnotatedConfig">getMockAnnotatedConfig()</a>,
<a href="class-Tool.BaseTestCaseMongoODM.html#_getMockDocumentManager">getMockDocumentManager()</a>,
<a href="class-Tool.BaseTestCaseMongoODM.html#_getMockMappedDocumentManager">getMockMappedDocumentManager()</a>,
<a href="class-Tool.BaseTestCaseMongoODM.html#_tearDown">tearDown()</a>
</code></td>
</tr>
</table>
<table class="summary" id="constants">
<caption>Constants summary</caption>
<tr data-order="ARTICLE" id="ARTICLE">
<td class="attributes"><code>string</code></td>
<td class="name"><code>
<a href="source-class-Gedmo.Loggable.LoggableDocumentTest.html#22" title="Go to source code"><b>ARTICLE</b></a>
</code></td>
<td class="value"><code><span class="php-quote">'Loggable\\Fixture\\Document\\Article'</span></code></td>
<td class="description"><div>
<a href="#ARTICLE" class="anchor">#</a>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="COMMENT" id="COMMENT">
<td class="attributes"><code>string</code></td>
<td class="name"><code>
<a href="source-class-Gedmo.Loggable.LoggableDocumentTest.html#23" title="Go to source code"><b>COMMENT</b></a>
</code></td>
<td class="value"><code><span class="php-quote">'Loggable\\Fixture\\Document\\Comment'</span></code></td>
<td class="description"><div>
<a href="#COMMENT" class="anchor">#</a>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="RELATED_ARTICLE" id="RELATED_ARTICLE">
<td class="attributes"><code>string</code></td>
<td class="name"><code>
<a href="source-class-Gedmo.Loggable.LoggableDocumentTest.html#24" title="Go to source code"><b>RELATED_ARTICLE</b></a>
</code></td>
<td class="value"><code><span class="php-quote">'Loggable\\Fixture\\Document\\RelatedArticle'</span></code></td>
<td class="description"><div>
<a href="#RELATED_ARTICLE" class="anchor">#</a>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="COMMENT_LOG" id="COMMENT_LOG">
<td class="attributes"><code>string</code></td>
<td class="name"><code>
<a href="source-class-Gedmo.Loggable.LoggableDocumentTest.html#25" title="Go to source code"><b>COMMENT_LOG</b></a>
</code></td>
<td class="value"><code><span class="php-quote">'Loggable\\Fixture\\Document\\Log\\Comment'</span></code></td>
<td class="description"><div>
<a href="#COMMENT_LOG" class="anchor">#</a>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
</table>
<table class="summary inherited">
<caption>Properties inherited from <a href="class-Tool.BaseTestCaseMongoODM.html#properties">Tool\BaseTestCaseMongoODM</a></caption>
<tr>
<td><code>
<a href="class-Tool.BaseTestCaseMongoODM.html#$dm"><var>$dm</var></a>
</code></td>
</tr>
</table>
</div>
<div id="footer">
seip API documentation generated by <a href="http://apigen.org">ApiGen 2.8.0</a>
</div>
</div>
</div>
</body>
</html>
| Tecnocreaciones/VzlaGovernmentTemplateDeveloperSeed | api/class-Gedmo.Loggable.LoggableDocumentTest.html | HTML | mit | 160,389 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>18 --> 19</title>
<link href="./../../assets/style.css" rel="stylesheet">
</head>
<body>
<h2>You have to be fast</h2>
<a href="./88866663e77ea993d99a3fdc1a7edb78de9ea92d879d31ae04818b0714f5b8d2.html">Teleport</a>
<hr>
<a href="./../../about.md">About</a> (Spoilers! )
<script src="./../../assets/md5.js"></script>
<script>
window.currentLevel = 7;
</script>
<script src="./../../assets/script.js"></script>
</body>
</html> | simonmysun/praxis | TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/89f2e032f6fc3b6d9e3104b6a7f0d83c4f0966e28d93c621f53bee36503811fa.html | HTML | mit | 550 |
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- **************************************************************** -->
<!-- * PLEASE KEEP COMPLICATED EXPRESSIONS OUT OF THESE TEMPLATES, * -->
<!-- * i.e. only iterate & print data where possible. Thanks, Jez. * -->
<!-- **************************************************************** -->
<html>
<head>
<!-- Generated by groovydoc (2.4.6) on Fri Oct 21 15:44:11 YEKT 2016 -->
<title>User (Groovy Documentation)</title>
<meta name="date" content="2016-10-21">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="../../../../groovy.ico" type="image/x-icon" rel="shortcut icon">
<link href="../../../../groovy.ico" type="image/x-icon" rel="icon">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="User (Groovy Documentation)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="../../../../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">
<div>
<ul class="navList">
<li><a href="../../../../index.html?xyz/cofe/adm/ora/User" target="_top">Frames</a></li>
<li><a href="User.html" target="_top">No Frames</a></li>
</ul>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
Nested Field <li><a href="#property_summary">Property</a></li> Constructor <li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li> | Detail: </li>
Field <li><a href="#prop_detail">Property</a></li> Constructor <li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">Package: <strong>xyz.cofe.adm.ora</strong></div>
<h2 title="[Groovy] Class User" class="title">[Groovy] Class User</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><ul class="inheritance"></ul></li><li><ul class="inheritance"></ul></li><li><ul class="inheritance"></ul></li><li>xyz.cofe.adm.ora.User
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<p> Created by user on 08.09.16.
</p>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== NESTED CLASS SUMMARY =========== -->
<!-- =========== ENUM CONSTANT SUMMARY =========== -->
<!-- =========== FIELD SUMMARY =========== -->
<!-- =========== PROPERTY SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="property_summary"><!-- --></a>
<h3>Properties Summary</h3>
<ul class="blockList">
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Properties Summary table, listing nested classes, and an explanation">
<caption><span>Properties</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Type</th>
<th class="colLast" scope="col">Name and description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code><strong>long</strong></code> </td>
<td class="colLast"><code><a href="#cacheTime">cacheTime</a></code><br></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><strong><a href='../../../../xyz/cofe/adm/Sql.html'>Sql</a></strong></code> </td>
<td class="colLast"><code><a href="#sql">sql</a></code><br></td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><strong>java.lang.String</strong></code> </td>
<td class="colLast"><code><a href="#username">username</a></code><br></td>
</tr>
</table>
</ul>
</li>
</ul>
<!-- =========== ELEMENT SUMMARY =========== -->
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary"><!-- --></a>
<h3>Methods Summary</h3>
<ul class="blockList">
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Methods Summary table">
<caption><span>Methods</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Type</th>
<th class="colLast" scope="col">Name and description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.String</strong></code></td>
<td class="colLast"><code><strong><a href="#ddl()">ddl</a></strong>()</code><br></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.Object</strong></code></td>
<td class="colLast"><code><strong><a href="#rolePrivs()">rolePrivs</a></strong>()</code><br>Вовзвращает таблицу ролей для данного пользователя</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href='../../../../xyz/cofe/adm/ora/DbaSegments.html'>DbaSegments</a></strong></code></td>
<td class="colLast"><code><strong><a href="#segments()">segments</a></strong>()</code><br>Возвращает таблицу сегментов для данного пользователя</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.Object</strong></code></td>
<td class="colLast"><code><strong><a href="#sysPrivs()">sysPrivs</a></strong>()</code><br>Вовзвращает таблицу системных привелегий для данного пользователя</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.Object</strong></code></td>
<td class="colLast"><code><strong><a href="#tabPrivs()">tabPrivs</a></strong>()</code><br>Вовзвращает таблицу объектных привелегий для данного пользователя</td>
</tr>
</table>
</ul>
</li>
<li class="blockList"><a name="method_summary"><!-- --></a>
<h3>Inherited Methods Summary</h3>
<ul class="blockList">
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Inherited Methods Summary table">
<caption><span>Inherited Methods</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Methods inherited from class</th>
<th class="colLast" scope="col">Name</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class groovy.util.Expando</strong></code></td>
<td class="colLast"><code>groovy.util.Expando#invokeMethod(java.lang.String, java.lang.Object), groovy.util.Expando#getMetaPropertyValues(), groovy.util.Expando#setProperty(java.lang.String, java.lang.Object), groovy.util.Expando#getProperty(java.lang.String), groovy.util.Expando#equals(java.lang.Object), groovy.util.Expando#toString(), groovy.util.Expando#hashCode(), groovy.util.Expando#getProperties(), groovy.util.Expando#getMetaClass(), groovy.util.Expando#setMetaClass(groovy.lang.MetaClass), groovy.util.Expando#wait(long, int), groovy.util.Expando#wait(long), groovy.util.Expando#wait(), groovy.util.Expando#getClass(), groovy.util.Expando#notify(), groovy.util.Expando#notifyAll()</code></td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class groovy.lang.GroovyObjectSupport</strong></code></td>
<td class="colLast"><code>groovy.lang.GroovyObjectSupport#invokeMethod(java.lang.String, java.lang.Object), groovy.lang.GroovyObjectSupport#getMetaClass(), groovy.lang.GroovyObjectSupport#setMetaClass(groovy.lang.MetaClass), groovy.lang.GroovyObjectSupport#setProperty(java.lang.String, java.lang.Object), groovy.lang.GroovyObjectSupport#getProperty(java.lang.String), groovy.lang.GroovyObjectSupport#wait(long, int), groovy.lang.GroovyObjectSupport#wait(long), groovy.lang.GroovyObjectSupport#wait(), groovy.lang.GroovyObjectSupport#equals(java.lang.Object), groovy.lang.GroovyObjectSupport#toString(), groovy.lang.GroovyObjectSupport#hashCode(), groovy.lang.GroovyObjectSupport#getClass(), groovy.lang.GroovyObjectSupport#notify(), groovy.lang.GroovyObjectSupport#notifyAll()</code></td>
</tr>
</table>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- =========== PROPERTY DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="prop_detail">
<!-- -->
</a>
<h3>Property Detail</h3>
<a name="cacheTime"><!-- --></a>
<ul class="blockListLast">
<li class="blockList">
<h4>long <strong>cacheTime</strong></h4>
<p></p>
</li>
</ul>
<a name="sql"><!-- --></a>
<ul class="blockListLast">
<li class="blockList">
<h4><a href='../../../../xyz/cofe/adm/Sql.html'>Sql</a> <strong>sql</strong></h4>
<p></p>
</li>
</ul>
<a name="username"><!-- --></a>
<ul class="blockListLast">
<li class="blockList">
<h4>java.lang.String <strong>username</strong></h4>
<p></p>
</li>
</ul>
</li>
</ul>
<!-- =========== METHOD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="ddl()"><!-- --></a>
<ul class="blockListLast">
<li class="blockList">
<h4>java.lang.String <strong>ddl</strong>()</h4>
<p></p>
</li>
</ul>
<a name="rolePrivs()"><!-- --></a>
<ul class="blockListLast">
<li class="blockList">
<h4>java.lang.Object <strong>rolePrivs</strong>()</h4>
<p> Вовзвращает таблицу ролей для данного пользователя </p>
</li>
</ul>
<a name="segments()"><!-- --></a>
<ul class="blockListLast">
<li class="blockList">
<h4><a href='../../../../xyz/cofe/adm/ora/DbaSegments.html'>DbaSegments</a> <strong>segments</strong>()</h4>
<p> Возвращает таблицу сегментов для данного пользователя </p>
</li>
</ul>
<a name="sysPrivs()"><!-- --></a>
<ul class="blockListLast">
<li class="blockList">
<h4>java.lang.Object <strong>sysPrivs</strong>()</h4>
<p> Вовзвращает таблицу системных привелегий для данного пользователя </p>
</li>
</ul>
<a name="tabPrivs()"><!-- --></a>
<ul class="blockListLast">
<li class="blockList">
<h4>java.lang.Object <strong>tabPrivs</strong>()</h4>
<p> Вовзвращает таблицу объектных привелегий для данного пользователя </p>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="../../../../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">
<div>
<ul class="navList">
<li><a href="../../../../index.html?xyz/cofe/adm/ora/User" target="_top">Frames</a></li>
<li><a href="User.html" target="_top">No Frames</a></li>
</ul>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
Nested Field <li><a href="#property_summary">Property</a></li> Constructor <li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li> | Detail: </li>
Field <li><a href="#prop_detail">Property</a></li> Constructor <li><a href="#method_detail">Method</a></li>
</ul>
</div>
<p>Groovy Documentation</p>
<a name="skip-navbar_bottom">
<!-- -->
</a>
</div>
</div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
| gochaorg/admscripts | doc/api/xyz/cofe/adm/ora/User.html | HTML | mit | 18,142 |
<!DOCTYPE html>
<!--[if IEMobile 7 ]><html class="no-js iem7"><![endif]-->
<!--[if lt IE 9]><html class="no-js lte-ie8"><![endif]-->
<!--[if (gt IE 8)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]-->
<head>
<meta charset="utf-8">
<title>ubuntu11.04安装Macbuntu - 小明明s à domicile</title>
<meta name="author" content="Dongweiming">
<meta name="baidu-site-verification" content="VklGG0Kd1k" />
<meta name="description" content="douban dongweiming site">
<meta name="keywords" content="python, ipython, emacs, github, dongweiming, django, flask, bottle, jinja2, requests, douban, httpie, jedi, mako, plim, react, develop, lisp, ruby, web development, sed, awk, linux, 运维, 运维开发, sentry, tonrado, scrapy, fabric, celery">
<!-- http://t.co/dKP3o1e -->
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="canonical" href="http://dongweiming.github.com/blog/archives/ubuntu11-04%E5%AE%89%E8%A3%85macbuntu">
<link href="/favicon.png" rel="icon">
<link href="/stylesheets/bootstrap/bootstrap.css" media="screen, projection" rel="stylesheet" type="text/css">
<link href="/stylesheets/bootstrap/responsive.css" media="screen, projection" rel="stylesheet" type="text/css">
<link href="/stylesheets/syntax/syntax.css" media="screen, projection" rel="stylesheet" type="text/css">
<style type="text/css">
body {
padding-bottom: 40px;
}
h1 {
margin-bottom: 15px;
}
img {
max-width: 100%;
}
.sharing, .meta, .pager {
margin: 20px 0px 20px 0px;
}
.page-footer p {
text-align: center;
}
</style>
<script src="/javascripts/libs/jquery.js"></script>
<script src="/javascripts/libs/modernizr-2.0.js"></script>
<script src="/javascripts/libs/bootstrap.js"></script>
<script src="/javascripts/octopress.js" type="text/javascript"></script>
<script type="text/javascript" src="/javascripts/api.js"></script>
<script type="text/javascript" src="/javascripts/wordcumulus.js"></script>
<script type="text/javascript" src="/javascripts/swfobject.js"></script>
<script type="text/javascript" src="/javascripts/tagcumulus.js"></script>
<link href="/atom.xml" rel="alternate" title="小明明s à domicile" type="application/atom+xml">
<script type="text/javascript" src="/javascripts/sh_python.min.js"></script>
<script type="text/javascript" src="/javascripts/sh_bash.min.js"></script>
<script type="text/javascript" src="/javascripts/sh_main.min.js"></script>
<link href="/stylesheets/sh_ide-anjuta.css" rel="stylesheet" type="text/css">
<script id="search-results-template" type="text/x-handlebars-template">
{{#entries}}
<article>
<h3>
<small><time datetime="{{date}}" pubdate>{{date}}</time></small>
<a href="{{url}}">{{title}}</a>
<p>tagged: {{ tags }} | category: <a href="/categories/{{category }}">{{category}}</a></p>
</h3>
</article>
{{/entries}}
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-20495125-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body onload="sh_highlightDocument('', '.js');">
<a href="http://github.com/dongweiming/">
<img style="position: absolute; top: 0; left: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_left_darkblue_121621.png" alt="Follower me on GitHub">
</a>
<nav role="navigation"><div class="navbar">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="/">小明明s à domicile</a>
<div class="nav-collapse">
<ul class="nav">
<li><a href="/">博客主页</a></li>
<li><a href="/blog/archives">文章列表</a></li>
<li><a href="/aboutsite">关于本站</a></li>
<li><a href="http://dongweiming.github.io/sed_and_awk">sed_and_awk</a></li>
<li><a href="http://dongweiming.github.io/Expert-Python">Expert-Python</a></li>
<li><a href="/aboutme">关于我</a></li>
</ul>
<ul class="nav pull-right" data-subscription="rss">
<li><a href="/atom.xml" rel="subscribe-rss" title="subscribe via RSS">RSS</a></li>
</ul>
<form action="/search" method="get" class="pull-right navbar-search">
<fieldset role ="search">
<input type="text" id="search-query" name="q" placeholder="Search" autocomplete="off" class="search" />
</fieldset>
</form>
</div>
</div>
</div>
</div>
</nav>
<div class="container">
<div class="row-fluid">
<article class="hentry span9" role="article">
<header class="page-header">
<h1 class="entry-title">ubuntu11.04安装Macbuntu</h1>
<p class="meta">
<time datetime="2011-05-31T00:00:00+08:00" pubdate data-updated="true">May 31<span>st</span>, 2011</time>
</p>
</header>
<div class="entry-content"><p><strong>Macbuntu是什么呢?从名字就可以看出来和苹果的Mac OS有关,是滴,他就是让ubuntu变成Mac,并且保留了ubuntu所有的3D特效:</strong>
<img style="max-width: 800px;" src="http://farm3.static.flickr.com/2699/5779619664_10bb87a0c5_b.jpg" alt="" />它的官方下载地址是:https://sourceforge.net/projects/macbuntu/ 但是目前还没出11.04版本 只能使用10.10版本,需要修改install.sh文件,否则因为版本问题会报错:
将这一段:</p>
<p>chk_system()
{
echo “”
echo “Checking Ubuntu version…”
# s=`cat /etc/issue | grep -i “$UBUNTU”`
# if [ ! -n “$s” ]; then
# echo “Failed. System not supported, script will end here”
# echo “To ignore their compatibility with current OS try ./install.sh force”
# echo “Exiting…”
# exit 1;
# fi
echo “Passed”
}
去掉其中的判断修改为:
chk_system()
{
echo “”
echo “Checking Ubuntu version…”
echo “Passed”
}
然后按照提示安装
<img style="max-width: 800px;" src="http://www.flickr.com/photos/63483712@N05/5779619664/" alt="" /></p>
</div>
<footer>
<p class="meta">
<span class="byline author vcard"><span class="fn">Dongweiming 发布于</span></span>
<time datetime="2011-05-31T00:00:00+08:00" pubdate data-updated="true">May 31<span>st</span>, 2011</time>
<span class="categories">
<a class='category' href='/blog/categories/ubuntu/'>ubuntu</a>
</span>
</p>
<div class="sharing">
<span>
<iframe
width="55"
scrolling="no"
height="66"
frameborder="0"
src=
"http://hits.sinajs.cn/A1/weiboshare.html?url=http://dongweiming.github.com/blog/archives/ubuntu11-04%E5%AE%89%E8%A3%85macbuntu/&appkey=site.weiboapp&type=1&ralateUid=1994497175&language=zh_cn" allowtransparency="true">
</iframe>
<iframe
width="55"
scrolling="no"
height="74"
frameborder="0"
src="/douban.html">
</iframe>
</span>
</div>
<hr style="border-bottom:1px dotted #bdbabd;height:1px;border-top:0px;border-left:0px;border-right:0px;" />
<section>
<h1>评论</h1>
<div id="disqus_thread" aria-live="polite"><noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
</div>
</section>
<ul class="pager">
<li class="previous"><a class="basic-alignment left"
href="/archives/compiz-%E5%A4%96%E6%8C%82%E6%8F%92%E4%BB%B6%E6%AC%A3%E8%B5%8F%E5%92%8C%E5%AE%89%E8%A3%85/" title="Previous Post:
compiz 外挂插件欣赏和安装">« compiz 外挂插件欣赏和安装</a></li>
<li><a href="/blog/archives">博客文章</a></li>
<li class="next"><a class="basic-alignment right" href="/archives/luyouqidhcppeizhi/"
title="Next Post: 路由器DHCP配置">路由器DHCP配置
»</a></li>
</ul>
</footer>
</article>
<aside class="sidebar-nav span3">
<section class='well'>
<ul id='qq' class='nav'>
<li class='nav-header'>我新建了一个QQ群</li>
<li style="padding-left: 15px;">522012167</li>
<li style="padding-left: 15px;">欢迎入伙</li>
</ul>
</section>
<section class="well">
<ul id="recent_posts" class="nav nav-list">
<li class="nav-header">最近发布</li>
<li class="post">
<a href="/archives/%3C%3Cpython-webkai-fa-shi-zhan-%3E%3E-yao-shu-chu-dao-tai-wan-liao/">《Python Web开发实战》要输出到台湾了</a>
</li>
<li class="post">
<a href="/archives/%3C%3Cpython-webkai-fa-shi-zhan-%3E%3E-shang-shi-%5B%3F%5D-ge-yue-liao/">《Python-Web开发实战》上市一个月了</a>
</li>
<li class="post">
<a href="/archives/python-webkai-fa-shi-zhan-yu-shou-lou/">《Python Web开发实战》预售喽</a>
</li>
<li class="post">
<a href="/archives/shi-yong-stridershi-xian-chi-xu-ji-cheng/">使用Strider实现持续集成</a>
</li>
<li class="post">
<a href="/archives/fang-djangobookde-markdownwen-zhang-ping-zhu-xi-tong/">仿Djangobook的Markdown文章评注系统</a>
</li>
<li class="post">
<a href="/archives/shi-yong-github-webhookfu-wu-shi-xian-ti-przi-dong-jian-cha-flake8bing-zai-dui-ying-wei-zhi-fa-ping-lun/">使用Github webhook服务实现提PR自动检查Flake8并在对应位置发评论</a>
</li>
<li class="post">
<a href="/archives/zui-jin-zai-xie-ben-webkai-fa-zhu-ti-de-shu/">最近在写一本Python Web开发的书</a>
</li>
<li class="post">
<a href="/archives/codekai-yuan-liao/">CODE开源了</a>
</li>
<li class="post">
<a href="/archives/12ge-pythonnao-jin-ji-zhuan-wan/">12个python填空题</a>
</li>
<li class="post">
<a href="/archives/wo-li-jie-de-pythonzui-jia-shi-jian/">我理解的python最佳实践</a>
</li>
</ul>
</section>
<section class="well">
<ul id="recent_posts" class="nav nav-list">
<li class="nav-header">个人网站</li>
<li class="post"><a href="http://salogs.com">带我入行的boss</a></li>
<li class="post"><a href="http://dongweiming.github.com/">小明明s Github Blog</a></li>
<li class="post"><a href="http://youhouer.appspot.com/">Love story(GAE)</a></li>
<li class="post"><a href="http://www.unixhot.com">unixhot运维社区</a></li>
<li class="post"><a href="http://www.vpsee.com">Vpsee</a></li>
<li class="post"><a href="http://dongweiming.github.io/sed_and_awk/">sed_and_awk</a></li>
<li class="post"><a href="http://dongweiming.github.io/Expert-Python">Expert-Python</a></li>
</ul>
</section>
<section class="well">
<ul id="gh_repos" class="nav">
<li class="nav-header">GitHub帐号</li>
<li class="loading">Status updating...</li>
</ul>
<a href="https://github.com/dongweiming">@dongweiming</a> on GitHub
<script type="text/javascript">
$(document).ready(function(){
github.showRepos({
user: 'dongweiming',
count: 3,
skip_forks: true,
target: '#gh_repos'
});
});
</script>
<script src="/javascripts/asides/github.js" type="text/javascript"> </script>
</section>
<section class="well">
<ul id="gh_repos" class="nav">
<li class="nav-header">标签Cloud</li>
</ul>
<div id="tag-cloud"></div>
</section>
<section class="well">
<ul id="gh_repos" class="nav">
<li class="nav-header">豆瓣阅读</li>
</ul>
<script type="text/javascript" src="http://www.douban.com/service/badge/62943420/?select=random&n=10&columns=2&picsize=medium&hidelogo=true&hideself=true&cat=book|music" ></script>
<a href="https://www.douban.com/people/62943420">@小明明</a> on Douban
</section>
<section class='well'>
<ul id='gh_repos' class='nav'>
<li class='nav-header'>文章统计</li>
<li>本站共有 271 篇文章</li>
</ul>
</section>
</aside>
</div>
</div>
<footer role="contentinfo" class="page-footer"><hr>
<p>
Copyright © 2016 - Dongweiming -
<span class="credit">Powered by <a href="http://octopress.org">Octopress</a></span>
</p>
</footer>
<script type="text/javascript">
var disqus_shortname = 'dongwm';
// var disqus_developer = 1;
var disqus_identifier = 'http://dongweiming.github.com/blog/archives/ubuntu11-04%E5%AE%89%E8%A3%85macbuntu/';
var disqus_url = 'http://dongweiming.github.com/blog/archives/ubuntu11-04%E5%AE%89%E8%A3%85macbuntu/';
var disqus_script = 'embed.js';
(function () {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/' + disqus_script;
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
}());
</script>
</body>
</html>
| dongweiming/blog | archives/ubuntu11-04安装macbuntu/index.html | HTML | mit | 13,994 |
{% load staticfiles %}
<html>
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,300,600,400italic,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="{% static 'css/style.css' %}">
<head>
<title>WeFacts</title>
</head>
<body>
<section id="fh5co-home" data-section="home" style="background-image: url({% static 'images/full_image_2.jpg' %});" data-stellar-background-ratio="0.5">
<div class="gradient"></div>
<div class="text-wrap">
<div class="text-inner">
<h1>Weather Facts</h1>
<h2>Makes it easy and free to obtain historical weather data.</h2>
<p1>Historical weather data is globally covered, see <a href="https://shawxiaozhang.github.io/wefacts/" target="_blank">details</a>. </p1>
<h1>Weather Search</h1>
<form action = "/get_order/" method="post" enctype="multipart/form-data">
{% csrf_token %}
{{ form.weather_address.label }} {{ form.weather_address }}
{{ form.weather_start_date.label }} {{ form.weather_start_date }}
{{ form.weather_end_date.label }} {{ form.weather_end_date }}
{{ form.address_file.label}} {{ form.address_file}}
<p></p>
<input type="submit" value="Search" name="search"/>
<p><br></p>
<p1> Multiple addresses are separated by semicolon, e.g. "5000 Forbes Ave Pittsburgh; 94043; Beijing". Or try buttons below.</p1>
<p></p>
<input type="submit" value="Select address list" name="upload_address_list"/>
<input type="submit" value="Upload" name="upload"/>
<p></p>
</form>
<h1>Questions and Discussions</h1>
<p1>Questions, comments, contributions are welcomed, see <a href="https://groups.google.com/forum/#!forum/wefacts-users" target="_blank">Google Group</a>.
</p1>
</div>
</div>
</section>
</body>
</html> | shawxiaozhang/we_web | we_search/templates/get_order.html | HTML | mit | 2,064 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>18 --> 19</title>
<link href="./../../assets/style.css" rel="stylesheet">
</head>
<body>
<h2>You have to be fast</h2>
<a href="./b7f079cf4ca0f40d0c566989eaacbd5c6107b178756ac792df518f68851a97b9.html">Teleport</a>
<hr>
<a href="./../../about.md">About</a> (Spoilers! )
<script src="./../../assets/md5.js"></script>
<script>
window.currentLevel = 7;
</script>
<script src="./../../assets/script.js"></script>
</body>
</html> | simonmysun/praxis | TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/155eb793391a4fda72e57cd78e9c01c3b782aefe84891d781cdd4e00414aad05.html | HTML | mit | 550 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset=utf-8>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="apple-touch-icon" sizes="57x57" href="/assets/favicons/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/assets/favicons/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/assets/favicons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/assets/favicons/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/assets/favicons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/assets/favicons/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/assets/favicons/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/assets/favicons/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicons/apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" href="/assets/favicons/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/assets/favicons/favicon-194x194.png" sizes="194x194">
<link rel="icon" type="image/png" href="/assets/favicons/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="/assets/favicons/android-chrome-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="/assets/favicons/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="/assets/favicons/manifest.json">
<link rel="mask-icon" href="/assets/favicons/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#3498db">
<meta name="msapplication-TileImage" content="/assets/favicons/mstile-144x144.png">
<meta name="theme-color" content="#3498db">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Dr Chloe Martindale is giving a talk on Cryptography this Wednesday at 2pm!“We will discuss mass-surveillance and its effect on our privacy, as well as think about some of the real-life consequences of losing aspects of our privacy. We will then show how some mathematical tools from cryptography ...">
<meta property="og:type" content="website">
<meta property="og:title" content="Privacy, Mass-surveillance, and Cryptography - CSS Bristol">
<meta property="og:description" content="Dr Chloe Martindale is giving a talk on Cryptography this Wednesday at 2pm! “We will discuss mass-surveillance and its effect on our privacy, as well as think about some of the real-life consequences of losing aspects of our privacy. We will then show how some mathematical tools from cryptography try...">
<meta property="og:image" content="https://cssbristol.co.uk/assets/images/contrib/events/2021-03-24_privacy.png" />
<meta property="og:url" content="https://cssbristol.co.uk/events/2021-03-24_privacy/">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Privacy, Mass-surveillance, and Cryptography - CSS Bristol">
<meta name="twitter:description" content="Dr Chloe Martindale is giving a talk on Cryptography this Wednesday at 2pm! “We will discuss mass-surveillance and its effect on our privacy, as well as think about some of the real-life consequences of losing aspects of our privacy. We will then show how some mathematical tools from cryptography try...">
<meta name="twitter:image" content="https://cssbristol.co.uk/assets/images/contrib/events/2021-03-24_privacy.png">
<meta name="twitter:site" content="@cssbristol">
<title>Privacy, Mass-surveillance, and Cryptography - CSS Bristol</title>
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;0,800;1,400&display=swap" />
<script src="/assets/scripts/monospace-fonts.js" defer></script>
<link rel="stylesheet" href="/assets/css/site.css" />
<link rel="canonical" href="https://www.cssbristol.co.uk/events/2021-03-24_privacy/" />
<link type="application/atom+xml" rel="alternate" href="https://www.cssbristol.co.uk/feed/events.xml" title="Privacy, Mass-surveillance, and Cryptography" />
<!-- Prefetch background images so they load faster next time page loads -->
<link rel="prefetch" href="/assets/images/core/header-bg-01_70000.jpg">
<link rel="prefetch" href="/assets/images/core/header-bg-02_70000.jpg">
<link rel="prefetch" href="/assets/images/core/header-bg-03_70000.jpg">
<link rel="prefetch" href="/assets/images/core/header-bg-04_70000.jpg">
<link rel="prefetch" href="/assets/images/core/header-bg-05.jpg">
<!-- Script for FontAwesome icons -->
<script src="https://kit.fontawesome.com/5918af34b4.js" crossorigin="anonymous" defer></script>
<!-- Script for randomly choosing header background -->
<script type="text/javascript" src="/assets/scripts/header-random-bg.js" defer></script>
<!-- Cloudflare Web Analytics -->
<script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "d431ecabd63d4eea9aeb6a714157d663"}'></script>
</head>
<body>
<header class="page-header noscript" id="page-header--random-bg">
<div class="bg">
<div></div>
</div>
<div class="navigation-items">
<div itemscope itemtype="http://schema.org/Organization">
<span style="display: none;" itemprop="name">University of Bristol Computer Science Society</span>
<a aria-label="Home" href="/" class="page-header__logo" itemprop="url">
<!-- <img src="/assets/images/core/logo-inline-light.png" alt="CSS Bristol logo" itemprop="logo"> -->
</a>
</div>
<nav class="page-navigation">
<ul class="page-navigation__links">
<li><a href="/about/">About</a></li>
<li><a href="/contact/">Contact</a></li>
<li><a href="/events/index.html">Events</a></li>
<li><a href="/freshers21/">Freshers</a></li>
<li><a href="/jobs/">Jobs</a></li>
<li><a href="/sponsors">Sponsor us</a></li>
<li><a href="/tutorials/">Tutorials</a></li>
<li><a href="/wellbeing/">Wellbeing</a></li>
</ul>
</nav>
</div>
</header>
<section class="page-section">
<article class="article extrawide event-page">
<section>
<div
class="event-page__banner"
style="background-image: url(/assets/images/contrib/events/2021-03-24_privacy.png);"
></div>
<h1 class="event-page__title">Privacy, Mass-surveillance, and Cryptography</h1>
<div class="blog-post__body"><p>Dr Chloe Martindale is giving a talk on Cryptography this Wednesday at 2pm!
“We will discuss mass-surveillance and its effect on our privacy, as well as think about some of the real-life consequences of losing aspects of our privacy. We will then show how some mathematical tools from cryptography try to solve some of these issues, by returning the control of one’s data to the individual. Finally, we’ll talk about how the solutions that we have are far from perfect.”</p>
<p><a href="https://teams.microsoft.com/l/meetup-join/19%3ae235af26d46143b39a0d96ba8868edc0%40thread.tacv2/1616434826835?context=%7b%22Tid%22%3a%22b2e47f30-cd7d-4a4e-a5da-b18cf1a4151b%22%2c%22Oid%22%3a%22386d2b1b-fa54-4263-a8cd-26e47d940388%22%7d">Join the meeting here!</a></p>
<hr />
<p>Dr Chloe Martindale is a researcher in post-quantum cryptography, which is cryptography designed to withstand the looming threat of scalable quantum computers. She is also interested in increasing public awareness of the necessity and availability of high-standard encryption techniques, which she contributes to through her role as an expert on the international board of internet standards IETF. She has been a Lecturer at the University of Bristol since November 2019, and before coming to Bristol she worked at Eindhoven University of Technology, Leiden University, and the University of Bordeaux. She also enjoys playing the piano, singing, and sharing cat pictures with her students.</p>
</div>
</section>
<section class="event-page__details">
<h2>The Details</h2>
<div class="event-page__details__row">
<i class="fas fa-calendar-day" data-tooltip="Event date" aria-label="Event date"></i>
<p>24/03/21</p>
</div>
<div class="event-page__details__row">
<i class="fas fa-clock" data-tooltip="Event time" aria-label="Event time"></i>
<p>
14:00 - 15:00
</p>
</div>
<div class="event-page__details__row">
<i class="fas fa-map-marker" data-tooltip="Event location" aria-label="Event location"></i>
<p>Online</p>
</div>
<div class="event-page__details__row">
<i class="fas fa-pound-sign" data-tooltip="Ticket price" aria-label="Ticket price"></i>
<p>Free</p>
</div>
<a class="event-page__details__row" href="https://teams.microsoft.com/l/meetup-join/19%3ae235af26d46143b39a0d96ba8868edc0%40thread.tacv2/1616434826835?context=%7b%22Tid%22%3a%22b2e47f30-cd7d-4a4e-a5da-b18cf1a4151b%22%2c%22Oid%22%3a%22386d2b1b-fa54-4263-a8cd-26e47d940388%22%7d">
<i class="fas fa-shopping-cart" data-tooltip="Ticket link" aria-label="Ticket link"></i>
<p>Get a ticket here</p>
</a>
<a class="event-page__details__row" href="https://www.facebook.com/events/192825852310126">
<i class="fab fa-facebook"></i>
<p>Join the Facebook event!</p>
</a>
<div class="event-page__details__hosted-with">
<hr />
<h4>Hosted with:</h4>
<ul>
<li>Dr Chloe Martindale</li>
</ul>
</div>
</section>
</article>
</section>
<section class="page-section sponsorsec">
<h1 class="sponsors-title"><a href="/pages/sponsors">Proudly sponsored by</a></h1>
<div class="sponsors">
<a
href="https://www.bloomberg.com"
target="_blank"
rel="noopener sponsored"
data-tooltip="Bloomberg"
class="company-logo"
>
<img
src="/assets/images/contrib/companies/bloomberg.svg"
alt="Bloomberg"
width="130"
height="170"
/>
</a>
<a
href="https://graphcore.ai"
target="_blank"
rel="noopener sponsored"
data-tooltip="Graphcore"
class="company-logo"
>
<img
src="/assets/images/contrib/companies/graphcore.svg"
alt="Graphcore"
width="130"
height="170"
/>
</a>
<a
href="https://jumptrading.com/"
target="_blank"
rel="noopener sponsored"
data-tooltip="Jump Trading"
class="company-logo"
>
<img
src="/assets/images/contrib/companies/jumptrading.jpg"
alt="Jump Trading"
width="130"
height="170"
/>
</a>
<a
href="https://pilgrim.co.uk"
target="_blank"
rel="noopener sponsored"
data-tooltip="Pilgrim Brewery"
class="company-logo"
>
<img
src="/assets/images/contrib/companies/pilgrim.jpg"
alt="Pilgrim Brewery"
width="130"
height="170"
/>
</a>
<a
href="https://tpp-careers.com"
target="_blank"
rel="noopener sponsored"
data-tooltip="TPP"
class="company-logo"
>
<img
src="/assets/images/contrib/companies/tpp.png"
alt="TPP"
width="130"
height="170"
/>
</a>
<a
href="https://visa.co.uk"
target="_blank"
rel="noopener sponsored"
data-tooltip="VISA"
class="company-logo"
>
<img
src="/assets/images/contrib/companies/visa.svg"
alt="VISA"
width="130"
height="170"
/>
</a>
<a
href="https://www.bp.com/"
target="_blank"
rel="noopener sponsored"
data-tooltip="BP"
class="company-logo"
>
<img
src="/assets/images/contrib/companies/bp.svg"
alt="BP"
width="130"
height="170"
/>
</a>
<a
href="https://www.xmos.ai/"
target="_blank"
rel="noopener sponsored"
data-tooltip="XMOS"
class="company-logo"
>
<img
src="/assets/images/contrib/companies/xmos.svg"
alt="XMOS"
width="130"
height="170"
/>
</a>
</div>
<div class="sponsors__action_item">
<a href="/pages/sponsors">Learn more about working with us.</a>
</div>
</section>
<footer class="page-footer">
<span class="page-footer__text">© University of Bristol Computer Science Society</span>
<nav class="page-footer__menu">
<ul>
<li>
<a class="page-link" href="/about/">About</a>
</li>
<li>
<a class="page-link" href="/contact/">Contact</a>
</li>
<li>
<a class="page-link" href="/events/index.html">Events</a>
</li>
<li>
<a class="page-link" href="/freshers21/">Freshers</a>
</li>
<li>
<a class="page-link" href="/jobs/">Jobs</a>
</li>
<li>
<a class="page-link" href="/sponsors">Sponsor us</a>
</li>
<li>
<a class="page-link" href="/tutorials/">Tutorials</a>
</li>
<li>
<a class="page-link" href="/wellbeing/">Wellbeing</a>
</li>
</ul>
</nav>
</footer>
</body>
</html>
| cssbristol/css-website-2015 | events/2021-03-24_privacy/index.html | HTML | mit | 19,166 |
{% include base_path %}
{% if post.header.teaser %}
{% capture teaser %}{{ post.header.teaser }}{% endcapture %}
{% else %}
{% assign teaser = site.teaser %}
{% endif %}
{% if post.id %}
{% assign title = post.title | markdownify | remove: "<p>" | remove: "</p>" %}
{% else %}
{% assign title = post.title %}
{% endif %}
<div class="{{ include.type | default: "list" }}__item">
<article class="archive__item" itemscope itemtype="http://schema.org/CreativeWork">
{% if include.type == "grid" and teaser %}
<div class="archive__item-teaser">
<img src=
{% if teaser contains "://" %}
"{{ teaser }}"
{% else %}
"{{ teaser | prepend: "/images/" | prepend: base_path }}"
{% endif %}
alt="">
</div>
{% endif %}
<h2 class="archive__item-title" itemprop="headline">
{% if post.link %}
<a href="{{ post.link }}">{{ title }}</a> <a href="{{ base_path }}{{ post.url }}" rel="permalink"><i class="fa fa-link" aria-hidden="true" title="permalink"></i><span class="sr-only">Permalink</span></a>
{% else %}
<a href="{{ base_path }}{{ post.url }}" rel="permalink">{{ title }}</a>
{% endif %}
</h2>
{% if post.read_time %}
{% assign current = post %}
<p class="page__meta"><i class="fa fa-clock" aria-hidden="true"></i> {% include read-time.html %}</p>
{% endif %}
{% if post.date %}<p class="page__meta"><i class="fa fa-clock" aria-hidden="true"></i> {{ post.date | date: '%B %d, %Y' }}</p>{% endif %}
{% if post.venue %}<p class="archive__item-excerpt" itemprop="description">{{post.type}}, {{ post.venue }}, {{post.location}} {% endif %}
{% if post.excerpt %}<p class="archive__item-excerpt" itemprop="description">{{ post.excerpt | markdownify }}</p>{% endif %}
</article>
</div>
| YannDubs/YannDubs.github.io | _includes/archive-single-talk.html | HTML | mit | 1,848 |
<!DOCTYPE html>
<html>
<head>
<title>Historia</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/historia.css" rel="stylesheet">
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://cpettitt.github.io/project/dagre-d3/latest/dagre-d3.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
</head>
<body>
<nav class="navbar navbar-fixed-top">
<div class="collapse navbar-collapse">
<form class="navbar-form">
<button type="submit" class="btn btn-default"><i class="glyphicon glyphicon-search"></i></button>
<input class="form-control pull-left" name="range" type="search">
</form>
</div><!--/.nav-collapse -->
</nav>
<svg id="commits-graph" width="100%" height="750">
<g transform="translate(20,20)"/>
</svg>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://code.jquery.com/jquery.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>
| rafaeldff/historia | public/index.html | HTML | mit | 1,609 |
---
layout: tei
tei: '../tei/201.xml'
prev: '200'
self: '201'
next: '202'
---
| alter-rebbe/collector | docs/archive/documents/201.html | HTML | mit | 78 |
<table width="90%" border="0"><tr><td><script>function openfile(url) {fullwin = window.open(url, "fulltext", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");}</script><div class="layoutclass_pic"><div class="layoutclass_first_pic"><table class="ztable"><tr><th class="ztd1"><b>成語 </b></th><td class="ztd2">一言九鼎</td></tr>
<tr><th class="ztd1"><b>典故說明 </b></th><td class="ztd2"> 戰國時,秦國攻打趙國,首都邯鄲被圍,情況相當危急。趙王派平原君到楚國求援,想聯合楚國來抵抗秦國。平原君要從門下食客選二十個人一起去楚國,但挑來挑去只挑到十九人,還剩一個人挑不出來,有個叫毛遂的人便自我推薦,平原君就接納他。到了楚國,平原君一直不能說服楚王援助趙國。毛遂仗劍向前,向楚王分析情勢,義正詞嚴,氣勢凌人,楚王便答應與趙國訂立盟約。平原君完成任務回到趙國後,讚賞毛遂說:「毛先生一到楚國,就使我們趙國的地位大大提升,比九鼎大呂還要有份量。毛先生的口才,真是比百萬軍力還要強大。」自此便一直將毛遂奉為上賓。後來「一言九鼎」這句成語就從這裡演變而出,用來形容說話很有分量。後亦用於形容說話很有信用。<br></font></td></tr>
</td></tr></table></div> <!-- layoutclass_first_pic --><div class="layoutclass_second_pic"></div> <!-- layoutclass_second_pic --></div> <!-- layoutclass_pic --></td></tr></table>
| BuzzAcademy/idioms-moe-unformatted-data | all-data/0-999/88-32.html | HTML | mit | 1,554 |
<div>
<div class="row">
<div class="col-sm-8 blog-main">
<div class="blog-post">
<h2 class="blog-post-title">How page One works </h2>
<p class="blog-post-meta">{{componentContext.extern}} by <a>Jake</a></p>
<p>This blog post shows a few different types of content that's supported and styled with Bootstrap. Basic typography,
images, and code are all supported.</p>
<hr>
<p>Cumasd sociis natoque penatibus et magnis <a>dis parturient montes</a>, nascetur ridiculus mus. Aenean eu
leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Sed posuere consectetur est at lobortis.
Cras mattis consectetur purus sit amet fermentum.</p>
<blockquote>
<p>Curabitur blandit tempus porttitor. <strong>Nullam quis risus eget urna mollis</strong> ornare vel eu
leo. Nullam id dolor id nibh ultricies vehicula ut id elit.</p>
</blockquote>
<p>Etiam porta <em>sem malesuada magna</em> mollis euismod. Cras mattis consectetur purus sit amet fermentum.Aenean lacinia bibendum nulla sed consectetur.</p>
<h2>Heading</h2>
<p>Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus,
nisi erat porttitor ligula, eget lacinia odio sem nec elit. Morbi leo risus, porta ac consectetur ac,
vestibulum at eros.</p>
<h3>Sub-heading</h3>
<p>Cumasd sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>
<pre><code>Example code block</code></pre>
<p>Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus,
tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa.</p>
<h3>Sub-heading</h3>
<p>Cumasd sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aenean lacinia bibendum
nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus
commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.</p>
<ul>
<li>Praesent commodo cursus magna, vel scelerisque nisl consectetur et.</li>
<li>Donec id elit non mi porta gravida at eget metus.</li>
<li>Nulla vitae elit libero, a pharetra augue.</li>
</ul>
<p>Donec ullamcorper nulla non metus auctor fringilla. Nulla vitae elit libero, a pharetra augue.</p>
<ol>
<li>Vestibulum id ligula porta felis euismod semper.</li>
<li>Cumasd sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</li>
<li>Maecenas sed diam eget risus varius blandit sit amet non magna.</li>
</ol>
<p>Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis.</p>
</div>
<!-- /.blog-post -->
<div class="blog-post">
<h2 class="blog-post-title">Another blog post</h2>
<p class="blog-post-meta">December 23, 2013 by <a>Jacob</a></p>
<p>Cumasd sociis natoque penatibus et magnis <a>dis parturient montes</a>, nascetur ridiculus mus. Aenean eu
leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Sed posuere consectetur est at lobortis.
Cras mattis consectetur purus sit amet fermentum.</p>
<blockquote>
<p>Curabitur blandit tempus porttitor. <strong>Nullam quis risus eget urna mollis</strong> ornare vel eu
leo. Nullam id dolor id nibh ultricies vehicula ut id elit.</p>
</blockquote>
<p>Etiam porta <em>sem malesuada magna</em> mollis euismod. Cras mattis consectetur purus sit amet fermentum.
Aenean lacinia bibendum nulla sed consectetur.</p>
<p>Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus,
nisi erat porttitor ligula, eget lacinia odio sem nec elit. Morbi leo risus, porta ac consectetur ac,
vestibulum at eros.</p>
</div>
<!-- /.blog-post -->
<div class="blog-post">
<h2 class="blog-post-title">New feature</h2>
<p class="blog-post-meta">December 14, 2013 by <a>Chris</a></p>
<p>Cumasdasd sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aenean lacinia
bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus
ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.</p>
<ul>
<li>Praesent commodo cursus magna, vel scelerisque nisl consectetur et.</li>
<li>Donec id elit non mi porta gravida at eget metus.</li>
<li>Nulla vitae elit libero, a pharetra augue.</li>
</ul>
<p>Etiam porta <em>sem malesuada magna</em> mollis euismod. Cras mattis consectetur purus sit amet fermentum.
Aenean lacinia bibendum nulla sed consectetur.</p>
<p>Donec ullamcorper nulla non metus auctor fringilla. Nulla vitae elit libero, a pharetra augue.</p>
</div>
<!-- /.blog-post -->
<nav class="blog-pagination">
<a class="btn btn-outline-primary">Older</a>
<a class="btn btn-outline-secondary disabled">Newer</a>
</nav>
</div>
<!-- /.blog-main -->
<div class="col-sm-3 offset-sm-1 blog-sidebar">
<div class="sidebar-module sidebar-module-inset">
<h4>About</h4>
<p>Etiam porta <em>sem malesuada magna</em> mollis euismod. Cras mattis consectetur purus sit amet fermentum.
Aenean lacinia bibendum nulla sed consectetur.</p>
<p><a (click)="selectPage('1001')">1001</a></p>
</div>
<div class="sidebar-module">
<h4>Archives</h4>
<ol class="list-unstyled">
<li><a>March 2014</a></li>
<li><a>February 2014</a></li>
<li><a>January 2014</a></li>
<li><a>December 2013</a></li>
<li><a>November 2013</a></li>
<li><a>October 2013</a></li>
<li><a>September 2013</a></li>
<li><a>August 2013</a></li>
<li><a>July 2013</a></li>
<li><a>June 2013</a></li>
<li><a>May 2013</a></li>
<li><a>April 2013</a></li>
</ol>
</div>
<div class="sidebar-module">
<h4>Elsewhere</h4>
<ol class="list-unstyled">
<li><a>GitHub</a></li>
<li><a>Twitter</a></li>
<li><a>Facebook</a></li>
</ol>
</div>
</div>
<!-- /.blog-sidebar -->
</div>
</div> | jpwiddy/NgDotNetCore | Client/modules/one/one.component.html | HTML | mit | 7,621 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>OpenLayers 3 API Reference - Namespace: interaction</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="logo-70x70.png"> OpenLayers 3</a>
<label id="stability">
<input type="checkbox" id="stability-toggle"> Stable Only
</label>
<ul class="nav navbar-nav pull-right">
<li><a href="../doc">Docs</a></li>
<li><a href="../examples">Examples</a></li>
<li><a href="index.html" class="active">API</a></li>
<li><a href="https://github.com/openlayers/ol3">Code</a></li>
</ul>
</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.ColorLike" class="unstable">
<a href="ol.html#.ColorLike">ColorLike</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.FeatureLoader" class="unstable">
<a href="ol.html#.FeatureLoader">FeatureLoader</a>
</li>
<li data-name="ol.FeatureStyleFunction" class="">
<a href="ol.html#.FeatureStyleFunction">FeatureStyleFunction</a>
</li>
<li data-name="ol.FeatureUrlFunction" class="unstable">
<a href="ol.html#.FeatureUrlFunction">FeatureUrlFunction</a>
</li>
<li data-name="ol.ImageLoadFunctionType" class="unstable">
<a href="ol.html#.ImageLoadFunctionType">ImageLoadFunctionType</a>
</li>
<li data-name="ol.LoadingStrategy" class="unstable">
<a href="ol.html#.LoadingStrategy">LoadingStrategy</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>
<ul class="fires itemMembers">
</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>
<ul class="fires itemMembers">
</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#changed" class="unstable">
<a href="ol.Collection.html#changed">changed</a>
</li>
<li data-name="ol.Collection#clear" class="">
<a href="ol.Collection.html#clear">clear</a>
</li>
<li data-name="ol.Collection#dispatchEvent" class="unstable">
<a href="ol.Collection.html#dispatchEvent">dispatchEvent</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="">
<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="">
<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="">
<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="">
<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="">
<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#unByKey" class="">
<a href="ol.Collection.html#unByKey">unByKey</a>
</li>
<li data-name="ol.Collection#unset" class="">
<a href="ol.Collection.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.CollectionEvent#event:add" class="">
<a href="ol.CollectionEvent.html#event:add">add</a>
</li>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:length" class="unstable">
change:length
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.CollectionEvent#event:remove" class="">
<a href="ol.CollectionEvent.html#event:remove">remove</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>
<li data-name="ol.CollectionEvent#target"><a href="ol.CollectionEvent.html#target">target</a></li>
<li data-name="ol.CollectionEvent#type"><a href="ol.CollectionEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.CollectionEvent#preventDefault" class="">
<a href="ol.CollectionEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.CollectionEvent#stopPropagation" class="">
<a href="ol.CollectionEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires 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#changed" class="unstable">
<a href="ol.DeviceOrientation.html#changed">changed</a>
</li>
<li data-name="ol.DeviceOrientation#dispatchEvent" class="unstable">
<a href="ol.DeviceOrientation.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.DeviceOrientation#get" class="">
<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="">
<a href="ol.DeviceOrientation.html#getKeys">getKeys</a>
</li>
<li data-name="ol.DeviceOrientation#getProperties" class="">
<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="">
<a href="ol.DeviceOrientation.html#set">set</a>
</li>
<li data-name="ol.DeviceOrientation#setProperties" class="">
<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#unByKey" class="">
<a href="ol.DeviceOrientation.html#unByKey">unByKey</a>
</li>
<li data-name="ol.DeviceOrientation#unset" class="">
<a href="ol.DeviceOrientation.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:alpha" class="unstable">
change:alpha
</li>
<li data-name="ol.ObjectEvent#event:change:beta" class="unstable">
change:beta
</li>
<li data-name="ol.ObjectEvent#event:change:gamma" class="unstable">
change:gamma
</li>
<li data-name="ol.ObjectEvent#event:change:heading" class="unstable">
change:heading
</li>
<li data-name="ol.ObjectEvent#event:change:tracking" class="unstable">
change:tracking
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.Disposable">
<span class="title">
<a href="ol.Disposable.html">ol.Disposable</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</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>
<li data-name="ol.DragBoxEvent#mapBrowserEvent"><a href="ol.DragBoxEvent.html#mapBrowserEvent">mapBrowserEvent</a></li>
<li data-name="ol.DragBoxEvent#target"><a href="ol.DragBoxEvent.html#target">target</a></li>
<li data-name="ol.DragBoxEvent#type"><a href="ol.DragBoxEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.DragBoxEvent#preventDefault" class="">
<a href="ol.DragBoxEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.DragBoxEvent#stopPropagation" class="">
<a href="ol.DragBoxEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires 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#changed" class="unstable">
<a href="ol.Feature.html#changed">changed</a>
</li>
<li data-name="ol.Feature#clone" class="">
<a href="ol.Feature.html#clone">clone</a>
</li>
<li data-name="ol.Feature#dispatchEvent" class="unstable">
<a href="ol.Feature.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.Feature#get" class="">
<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="">
<a href="ol.Feature.html#getKeys">getKeys</a>
</li>
<li data-name="ol.Feature#getProperties" class="">
<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="">
<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="">
<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#unByKey" class="">
<a href="ol.Feature.html#unByKey">unByKey</a>
</li>
<li data-name="ol.Feature#unset" class="">
<a href="ol.Feature.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:geometry" class="unstable">
change:geometry
</li>
<li data-name="ol.ObjectEvent#event:change:id" class="unstable">
change:id
</li>
<li data-name="ol.ObjectEvent#event:change:style" class="unstable">
change:style
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.Geolocation.html#changed">changed</a>
</li>
<li data-name="ol.Geolocation#dispatchEvent" class="unstable">
<a href="ol.Geolocation.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.Geolocation#get" class="">
<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="">
<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="">
<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="">
<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="">
<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#unByKey" class="">
<a href="ol.Geolocation.html#unByKey">unByKey</a>
</li>
<li data-name="ol.Geolocation#unset" class="">
<a href="ol.Geolocation.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:accuracy" class="unstable">
change:accuracy
</li>
<li data-name="ol.ObjectEvent#event:change:accuracyGeometry" class="unstable">
change:accuracyGeometry
</li>
<li data-name="ol.ObjectEvent#event:change:altitude" class="unstable">
change:altitude
</li>
<li data-name="ol.ObjectEvent#event:change:altitudeAccuracy" class="unstable">
change:altitudeAccuracy
</li>
<li data-name="ol.ObjectEvent#event:change:heading" class="unstable">
change:heading
</li>
<li data-name="ol.ObjectEvent#event:change:position" class="unstable">
change:position
</li>
<li data-name="ol.ObjectEvent#event:change:projection" class="unstable">
change:projection
</li>
<li data-name="ol.ObjectEvent#event:change:speed" class="unstable">
change:speed
</li>
<li data-name="ol.ObjectEvent#event:change:tracking" class="unstable">
change:tracking
</li>
<li data-name="ol.ObjectEvent#event:change:trackingOptions" class="unstable">
change:trackingOptions
</li>
<li data-name="event:error" class="unstable">
<a href="global.html#event:error">error</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.Image">
<span class="title">
<a href="ol.Image.html">ol.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.Image#getImage" class="unstable">
<a href="ol.Image.html#getImage">getImage</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.ImageBase">
<span class="title">
<a href="ol.ImageBase.html">ol.ImageBase</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</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>
<ul class="fires itemMembers">
</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>
<ul class="fires 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#changed" class="unstable">
<a href="ol.Map.html#changed">changed</a>
</li>
<li data-name="ol.Map#dispatchEvent" class="unstable">
<a href="ol.Map.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.Map#forEachFeatureAtPixel" class="">
<a href="ol.Map.html#forEachFeatureAtPixel">forEachFeatureAtPixel</a>
</li>
<li data-name="ol.Map#forEachLayerAtPixel" class="">
<a href="ol.Map.html#forEachLayerAtPixel">forEachLayerAtPixel</a>
</li>
<li data-name="ol.Map#get" class="">
<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="">
<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#getOverlayById" class="unstable">
<a href="ol.Map.html#getOverlayById">getOverlayById</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="">
<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#getTargetElement" class="unstable">
<a href="ol.Map.html#getTargetElement">getTargetElement</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#hasFeatureAtPixel" class="unstable">
<a href="ol.Map.html#hasFeatureAtPixel">hasFeatureAtPixel</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="">
<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="">
<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#unByKey" class="">
<a href="ol.Map.html#unByKey">unByKey</a>
</li>
<li data-name="ol.Map#unset" class="">
<a href="ol.Map.html#unset">unset</a>
</li>
<li data-name="ol.Map#updateSize" class="">
<a href="ol.Map.html#updateSize">updateSize</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:layerGroup" class="unstable">
change:layerGroup
</li>
<li data-name="ol.ObjectEvent#event:change:size" class="unstable">
change:size
</li>
<li data-name="ol.ObjectEvent#event:change:target" class="unstable">
change:target
</li>
<li data-name="ol.ObjectEvent#event:change:view" class="unstable">
change:view
</li>
<li data-name="ol.MapBrowserEvent#event:click" class="">
<a href="ol.MapBrowserEvent.html#event:click">click</a>
</li>
<li data-name="ol.MapBrowserEvent#event:dblclick" class="">
<a href="ol.MapBrowserEvent.html#event:dblclick">dblclick</a>
</li>
<li data-name="ol.MapEvent#event:moveend" class="">
<a href="ol.MapEvent.html#event:moveend">moveend</a>
</li>
<li data-name="ol.MapBrowserEvent#event:pointerdrag" class="unstable">
<a href="ol.MapBrowserEvent.html#event:pointerdrag">pointerdrag</a>
</li>
<li data-name="ol.MapBrowserEvent#event:pointermove" class="">
<a href="ol.MapBrowserEvent.html#event:pointermove">pointermove</a>
</li>
<li data-name="ol.render.Event#event:postcompose" class="unstable">
<a href="ol.render.Event.html#event:postcompose">postcompose</a>
</li>
<li data-name="ol.MapEvent#event:postrender" class="unstable">
<a href="ol.MapEvent.html#event:postrender">postrender</a>
</li>
<li data-name="ol.render.Event#event:precompose" class="unstable">
<a href="ol.render.Event.html#event:precompose">precompose</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.MapBrowserEvent#event:singleclick" class="">
<a href="ol.MapBrowserEvent.html#event:singleclick">singleclick</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#dragging"><a href="ol.MapBrowserEvent.html#dragging">dragging</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>
<li data-name="ol.MapBrowserEvent#target"><a href="ol.MapBrowserEvent.html#target">target</a></li>
<li data-name="ol.MapBrowserEvent#type"><a href="ol.MapBrowserEvent.html#type">type</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>
<ul class="fires itemMembers">
</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>
<li data-name="ol.MapEvent#target"><a href="ol.MapEvent.html#target">target</a></li>
<li data-name="ol.MapEvent#type"><a href="ol.MapEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.MapEvent#preventDefault" class="">
<a href="ol.MapEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.MapEvent#stopPropagation" class="">
<a href="ol.MapEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires 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#changed" class="unstable">
<a href="ol.Object.html#changed">changed</a>
</li>
<li data-name="ol.Object#dispatchEvent" class="unstable">
<a href="ol.Object.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.Object#get" class="">
<a href="ol.Object.html#get">get</a>
</li>
<li data-name="ol.Object#getKeys" class="">
<a href="ol.Object.html#getKeys">getKeys</a>
</li>
<li data-name="ol.Object#getProperties" class="">
<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="">
<a href="ol.Object.html#set">set</a>
</li>
<li data-name="ol.Object#setProperties" class="">
<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#unByKey" class="">
<a href="ol.Object.html#unByKey">unByKey</a>
</li>
<li data-name="ol.Object#unset" class="">
<a href="ol.Object.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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>
<li data-name="ol.ObjectEvent#oldValue"><a href="ol.ObjectEvent.html#oldValue">oldValue</a></li>
<li data-name="ol.ObjectEvent#target"><a href="ol.ObjectEvent.html#target">target</a></li>
<li data-name="ol.ObjectEvent#type"><a href="ol.ObjectEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.ObjectEvent#preventDefault" class="">
<a href="ol.ObjectEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.ObjectEvent#stopPropagation" class="">
<a href="ol.ObjectEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires 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.unByKey" class="">
<a href="ol.Observable.html#.unByKey">unByKey</a>
</li>
<li data-name="ol.Observable#changed" class="unstable">
<a href="ol.Observable.html#changed">changed</a>
</li>
<li data-name="ol.Observable#dispatchEvent" class="unstable">
<a href="ol.Observable.html#dispatchEvent">dispatchEvent</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>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</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#changed" class="unstable">
<a href="ol.Overlay.html#changed">changed</a>
</li>
<li data-name="ol.Overlay#dispatchEvent" class="unstable">
<a href="ol.Overlay.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.Overlay#get" class="">
<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#getId" class="unstable">
<a href="ol.Overlay.html#getId">getId</a>
</li>
<li data-name="ol.Overlay#getKeys" class="">
<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="">
<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="">
<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="">
<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#unByKey" class="">
<a href="ol.Overlay.html#unByKey">unByKey</a>
</li>
<li data-name="ol.Overlay#unset" class="">
<a href="ol.Overlay.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:element" class="unstable">
change:element
</li>
<li data-name="ol.ObjectEvent#event:change:map" class="unstable">
change:map
</li>
<li data-name="ol.ObjectEvent#event:change:offset" class="unstable">
change:offset
</li>
<li data-name="ol.ObjectEvent#event:change:position" class="unstable">
change:position
</li>
<li data-name="ol.ObjectEvent#event:change:positioning" class="unstable">
change:positioning
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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">
<span class="subtitle">Methods</span>
<li data-name="ol.Sphere#geodesicArea" class="unstable">
<a href="ol.Sphere.html#geodesicArea">geodesicArea</a>
</li>
<li data-name="ol.Sphere#haversineDistance" class="unstable">
<a href="ol.Sphere.html#haversineDistance">haversineDistance</a>
</li>
</ul>
<ul class="fires 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>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.VectorTile">
<span class="title">
<a href="ol.VectorTile.html">ol.VectorTile</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.VectorTile#getFormat" class="unstable">
<a href="ol.VectorTile.html#getFormat">getFormat</a>
</li>
<li data-name="ol.VectorTile#getTileCoord" class="unstable">
<a href="ol.VectorTile.html#getTileCoord">getTileCoord</a>
</li>
<li data-name="ol.VectorTile#setFeatures" class="unstable">
<a href="ol.VectorTile.html#setFeatures">setFeatures</a>
</li>
<li data-name="ol.VectorTile#setLoader" class="unstable">
<a href="ol.VectorTile.html#setLoader">setLoader</a>
</li>
<li data-name="ol.VectorTile#setProjection" class="unstable">
<a href="ol.VectorTile.html#setProjection">setProjection</a>
</li>
</ul>
<ul class="fires itemMembers">
</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#calculateExtent" class="">
<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#changed" class="unstable">
<a href="ol.View.html#changed">changed</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#dispatchEvent" class="unstable">
<a href="ol.View.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.View#fit" class="unstable">
<a href="ol.View.html#fit">fit</a>
</li>
<li data-name="ol.View#get" class="">
<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="">
<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="">
<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#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="">
<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="">
<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#unByKey" class="">
<a href="ol.View.html#unByKey">unByKey</a>
</li>
<li data-name="ol.View#unset" class="">
<a href="ol.View.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:center" class="unstable">
change:center
</li>
<li data-name="ol.ObjectEvent#event:change:resolution" class="unstable">
change:resolution
</li>
<li data-name="ol.ObjectEvent#event:change:rotation" class="unstable">
change:rotation
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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>
<ul class="fires itemMembers">
</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>
<ul class="fires itemMembers">
</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>
<ul class="fires itemMembers">
</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.render" class="unstable">
<a href="ol.control.Attribution.html#.render">render</a>
</li>
<li data-name="ol.control.Attribution#changed" class="unstable">
<a href="ol.control.Attribution.html#changed">changed</a>
</li>
<li data-name="ol.control.Attribution#dispatchEvent" class="unstable">
<a href="ol.control.Attribution.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.control.Attribution#get" class="">
<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="">
<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="">
<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="">
<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="">
<a href="ol.control.Attribution.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.Attribution#setTarget" class="unstable">
<a href="ol.control.Attribution.html#setTarget">setTarget</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#unByKey" class="">
<a href="ol.control.Attribution.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.Attribution#unset" class="">
<a href="ol.control.Attribution.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.control.Control.html#changed">changed</a>
</li>
<li data-name="ol.control.Control#dispatchEvent" class="unstable">
<a href="ol.control.Control.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.control.Control#get" class="">
<a href="ol.control.Control.html#get">get</a>
</li>
<li data-name="ol.control.Control#getKeys" class="">
<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="">
<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="">
<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="">
<a href="ol.control.Control.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.Control#setTarget" class="unstable">
<a href="ol.control.Control.html#setTarget">setTarget</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#unByKey" class="">
<a href="ol.control.Control.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.Control#unset" class="">
<a href="ol.control.Control.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.control.FullScreen.html#changed">changed</a>
</li>
<li data-name="ol.control.FullScreen#dispatchEvent" class="unstable">
<a href="ol.control.FullScreen.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.control.FullScreen#get" class="">
<a href="ol.control.FullScreen.html#get">get</a>
</li>
<li data-name="ol.control.FullScreen#getKeys" class="">
<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="">
<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="">
<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="">
<a href="ol.control.FullScreen.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.FullScreen#setTarget" class="unstable">
<a href="ol.control.FullScreen.html#setTarget">setTarget</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#unByKey" class="">
<a href="ol.control.FullScreen.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.FullScreen#unset" class="">
<a href="ol.control.FullScreen.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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.render" class="unstable">
<a href="ol.control.MousePosition.html#.render">render</a>
</li>
<li data-name="ol.control.MousePosition#changed" class="unstable">
<a href="ol.control.MousePosition.html#changed">changed</a>
</li>
<li data-name="ol.control.MousePosition#dispatchEvent" class="unstable">
<a href="ol.control.MousePosition.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.control.MousePosition#get" class="">
<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="">
<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="">
<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="">
<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="">
<a href="ol.control.MousePosition.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.MousePosition#setTarget" class="unstable">
<a href="ol.control.MousePosition.html#setTarget">setTarget</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#unByKey" class="">
<a href="ol.control.MousePosition.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.MousePosition#unset" class="">
<a href="ol.control.MousePosition.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:coordinateFormat" class="unstable">
change:coordinateFormat
</li>
<li data-name="ol.ObjectEvent#event:change:projection" class="unstable">
change:projection
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.OverviewMap">
<span class="title">
<a href="ol.control.OverviewMap.html">ol.control.OverviewMap</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.OverviewMap.render" class="unstable">
<a href="ol.control.OverviewMap.html#.render">render</a>
</li>
<li data-name="ol.control.OverviewMap#changed" class="unstable">
<a href="ol.control.OverviewMap.html#changed">changed</a>
</li>
<li data-name="ol.control.OverviewMap#dispatchEvent" class="unstable">
<a href="ol.control.OverviewMap.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.control.OverviewMap#get" class="">
<a href="ol.control.OverviewMap.html#get">get</a>
</li>
<li data-name="ol.control.OverviewMap#getCollapsed" class="">
<a href="ol.control.OverviewMap.html#getCollapsed">getCollapsed</a>
</li>
<li data-name="ol.control.OverviewMap#getCollapsible" class="">
<a href="ol.control.OverviewMap.html#getCollapsible">getCollapsible</a>
</li>
<li data-name="ol.control.OverviewMap#getKeys" class="">
<a href="ol.control.OverviewMap.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.OverviewMap#getMap" class="">
<a href="ol.control.OverviewMap.html#getMap">getMap</a>
</li>
<li data-name="ol.control.OverviewMap#getOverviewMap" class="unstable">
<a href="ol.control.OverviewMap.html#getOverviewMap">getOverviewMap</a>
</li>
<li data-name="ol.control.OverviewMap#getProperties" class="">
<a href="ol.control.OverviewMap.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.OverviewMap#getRevision" class="unstable">
<a href="ol.control.OverviewMap.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.OverviewMap#on" class="">
<a href="ol.control.OverviewMap.html#on">on</a>
</li>
<li data-name="ol.control.OverviewMap#once" class="">
<a href="ol.control.OverviewMap.html#once">once</a>
</li>
<li data-name="ol.control.OverviewMap#set" class="">
<a href="ol.control.OverviewMap.html#set">set</a>
</li>
<li data-name="ol.control.OverviewMap#setCollapsed" class="">
<a href="ol.control.OverviewMap.html#setCollapsed">setCollapsed</a>
</li>
<li data-name="ol.control.OverviewMap#setCollapsible" class="">
<a href="ol.control.OverviewMap.html#setCollapsible">setCollapsible</a>
</li>
<li data-name="ol.control.OverviewMap#setMap" class="">
<a href="ol.control.OverviewMap.html#setMap">setMap</a>
</li>
<li data-name="ol.control.OverviewMap#setProperties" class="">
<a href="ol.control.OverviewMap.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.OverviewMap#setTarget" class="unstable">
<a href="ol.control.OverviewMap.html#setTarget">setTarget</a>
</li>
<li data-name="ol.control.OverviewMap#un" class="">
<a href="ol.control.OverviewMap.html#un">un</a>
</li>
<li data-name="ol.control.OverviewMap#unByKey" class="">
<a href="ol.control.OverviewMap.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.OverviewMap#unset" class="">
<a href="ol.control.OverviewMap.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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.render" class="unstable">
<a href="ol.control.Rotate.html#.render">render</a>
</li>
<li data-name="ol.control.Rotate#changed" class="unstable">
<a href="ol.control.Rotate.html#changed">changed</a>
</li>
<li data-name="ol.control.Rotate#dispatchEvent" class="unstable">
<a href="ol.control.Rotate.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.control.Rotate#get" class="">
<a href="ol.control.Rotate.html#get">get</a>
</li>
<li data-name="ol.control.Rotate#getKeys" class="">
<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="">
<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="">
<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="">
<a href="ol.control.Rotate.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.Rotate#setTarget" class="unstable">
<a href="ol.control.Rotate.html#setTarget">setTarget</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#unByKey" class="">
<a href="ol.control.Rotate.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.Rotate#unset" class="">
<a href="ol.control.Rotate.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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.render" class="unstable">
<a href="ol.control.ScaleLine.html#.render">render</a>
</li>
<li data-name="ol.control.ScaleLine#changed" class="unstable">
<a href="ol.control.ScaleLine.html#changed">changed</a>
</li>
<li data-name="ol.control.ScaleLine#dispatchEvent" class="unstable">
<a href="ol.control.ScaleLine.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.control.ScaleLine#get" class="">
<a href="ol.control.ScaleLine.html#get">get</a>
</li>
<li data-name="ol.control.ScaleLine#getKeys" class="">
<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="">
<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="">
<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="">
<a href="ol.control.ScaleLine.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.ScaleLine#setTarget" class="unstable">
<a href="ol.control.ScaleLine.html#setTarget">setTarget</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#unByKey" class="">
<a href="ol.control.ScaleLine.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.ScaleLine#unset" class="">
<a href="ol.control.ScaleLine.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:units" class="unstable">
change:units
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.control.Zoom.html#changed">changed</a>
</li>
<li data-name="ol.control.Zoom#dispatchEvent" class="unstable">
<a href="ol.control.Zoom.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.control.Zoom#get" class="">
<a href="ol.control.Zoom.html#get">get</a>
</li>
<li data-name="ol.control.Zoom#getKeys" class="">
<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="">
<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="">
<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="">
<a href="ol.control.Zoom.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.Zoom#setTarget" class="unstable">
<a href="ol.control.Zoom.html#setTarget">setTarget</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#unByKey" class="">
<a href="ol.control.Zoom.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.Zoom#unset" class="">
<a href="ol.control.Zoom.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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.render" class="unstable">
<a href="ol.control.ZoomSlider.html#.render">render</a>
</li>
<li data-name="ol.control.ZoomSlider#changed" class="unstable">
<a href="ol.control.ZoomSlider.html#changed">changed</a>
</li>
<li data-name="ol.control.ZoomSlider#dispatchEvent" class="unstable">
<a href="ol.control.ZoomSlider.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.control.ZoomSlider#get" class="">
<a href="ol.control.ZoomSlider.html#get">get</a>
</li>
<li data-name="ol.control.ZoomSlider#getKeys" class="">
<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="">
<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="">
<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="">
<a href="ol.control.ZoomSlider.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.ZoomSlider#setTarget" class="unstable">
<a href="ol.control.ZoomSlider.html#setTarget">setTarget</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#unByKey" class="">
<a href="ol.control.ZoomSlider.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.ZoomSlider#unset" class="">
<a href="ol.control.ZoomSlider.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.control.ZoomToExtent.html#changed">changed</a>
</li>
<li data-name="ol.control.ZoomToExtent#dispatchEvent" class="unstable">
<a href="ol.control.ZoomToExtent.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.control.ZoomToExtent#get" class="">
<a href="ol.control.ZoomToExtent.html#get">get</a>
</li>
<li data-name="ol.control.ZoomToExtent#getKeys" class="">
<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="">
<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="">
<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="">
<a href="ol.control.ZoomToExtent.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.ZoomToExtent#setTarget" class="unstable">
<a href="ol.control.ZoomToExtent.html#setTarget">setTarget</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#unByKey" class="">
<a href="ol.control.ZoomToExtent.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.ZoomToExtent#unset" class="">
<a href="ol.control.ZoomToExtent.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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>
<ul class="fires itemMembers">
</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>
<ul class="fires itemMembers">
</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>
<li data-name="ol.events.Key" class="unstable">
<a href="ol.events.html#.Key">Key</a>
</li>
<li data-name="ol.events.ListenerFunctionType" class="unstable">
<a href="ol.events.html#.ListenerFunctionType">ListenerFunctionType</a>
</li>
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.events.Event">
<span class="title">
<a href="ol.events.Event.html">ol.events.Event</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.events.Event#target"><a href="ol.events.Event.html#target">target</a></li>
<li data-name="ol.events.Event#type"><a href="ol.events.Event.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.events.Event#preventDefault" class="">
<a href="ol.events.Event.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.events.Event#stopPropagation" class="">
<a href="ol.events.Event.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.events.EventTarget">
<span class="title">
<a href="ol.events.EventTarget.html">ol.events.EventTarget</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires 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.doubleClick" class="">
<a href="ol.events.condition.html#.doubleClick">doubleClick</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.pointerMove" class="unstable">
<a href="ol.events.condition.html#.pointerMove">pointerMove</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>
<ul class="fires itemMembers">
</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.containsXY" class="">
<a href="ol.extent.html#.containsXY">containsXY</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.getIntersection" class="">
<a href="ol.extent.html#.getIntersection">getIntersection</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>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.featureloader">
<span class="title">
<a href="ol.featureloader.html">ol.featureloader</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.featureloader.tile" class="unstable">
<a href="ol.featureloader.html#.tile">tile</a>
</li>
<li data-name="ol.featureloader.xhr" class="unstable">
<a href="ol.featureloader.html#.xhr">xhr</a>
</li>
</ul>
<ul class="fires 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>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.EsriJSON">
<span class="title">
<a href="ol.format.EsriJSON.html">ol.format.EsriJSON</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.EsriJSON#readFeature" class="unstable">
<a href="ol.format.EsriJSON.html#readFeature">readFeature</a>
</li>
<li data-name="ol.format.EsriJSON#readFeatures" class="unstable">
<a href="ol.format.EsriJSON.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.EsriJSON#readGeometry" class="unstable">
<a href="ol.format.EsriJSON.html#readGeometry">readGeometry</a>
</li>
<li data-name="ol.format.EsriJSON#readProjection" class="unstable">
<a href="ol.format.EsriJSON.html#readProjection">readProjection</a>
</li>
<li data-name="ol.format.EsriJSON#writeFeature" class="unstable">
<a href="ol.format.EsriJSON.html#writeFeature">writeFeature</a>
</li>
<li data-name="ol.format.EsriJSON#writeFeatureObject" class="unstable">
<a href="ol.format.EsriJSON.html#writeFeatureObject">writeFeatureObject</a>
</li>
<li data-name="ol.format.EsriJSON#writeFeatures" class="unstable">
<a href="ol.format.EsriJSON.html#writeFeatures">writeFeatures</a>
</li>
<li data-name="ol.format.EsriJSON#writeFeaturesObject" class="unstable">
<a href="ol.format.EsriJSON.html#writeFeaturesObject">writeFeaturesObject</a>
</li>
<li data-name="ol.format.EsriJSON#writeGeometry" class="unstable">
<a href="ol.format.EsriJSON.html#writeGeometry">writeGeometry</a>
</li>
<li data-name="ol.format.EsriJSON#writeGeometryObject" class="unstable">
<a href="ol.format.EsriJSON.html#writeGeometryObject">writeGeometryObject</a>
</li>
</ul>
<ul class="fires 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>
<ul class="fires 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>
<li data-name="ol.format.GML#writeFeaturesNode" class="unstable">
<a href="ol.format.GML.html#writeFeaturesNode">writeFeaturesNode</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.GML2">
<span class="title">
<a href="ol.format.GML2.html">ol.format.GML2</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.GML2#readFeatures" class="">
<a href="ol.format.GML2.html#readFeatures">readFeatures</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.GML3">
<span class="title">
<a href="ol.format.GML3.html">ol.format.GML3</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.GML3#readFeatures" class="">
<a href="ol.format.GML3.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.GML3#writeFeatures" class="">
<a href="ol.format.GML3.html#writeFeatures">writeFeatures</a>
</li>
<li data-name="ol.format.GML3#writeFeaturesNode" class="unstable">
<a href="ol.format.GML3.html#writeFeaturesNode">writeFeaturesNode</a>
</li>
<li data-name="ol.format.GML3#writeGeometryNode" class="unstable">
<a href="ol.format.GML3.html#writeGeometryNode">writeGeometryNode</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.GMLBase">
<span class="title">
<a href="ol.format.GMLBase.html">ol.format.GMLBase</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.GMLBase#readFeatures" class="">
<a href="ol.format.GMLBase.html#readFeatures">readFeatures</a>
</li>
</ul>
<ul class="fires itemMembers">
</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>
<li data-name="ol.format.GPX#writeFeaturesNode" class="unstable">
<a href="ol.format.GPX.html#writeFeaturesNode">writeFeaturesNode</a>
</li>
</ul>
<ul class="fires itemMembers">
</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#writeFeatureObject" class="">
<a href="ol.format.GeoJSON.html#writeFeatureObject">writeFeatureObject</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#writeFeaturesObject" class="">
<a href="ol.format.GeoJSON.html#writeFeaturesObject">writeFeaturesObject</a>
</li>
<li data-name="ol.format.GeoJSON#writeGeometry" class="">
<a href="ol.format.GeoJSON.html#writeGeometry">writeGeometry</a>
</li>
<li data-name="ol.format.GeoJSON#writeGeometryObject" class="">
<a href="ol.format.GeoJSON.html#writeGeometryObject">writeGeometryObject</a>
</li>
</ul>
<ul class="fires itemMembers">
</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>
<ul class="fires itemMembers">
</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>
<ul class="fires 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#readNetworkLinks" class="unstable">
<a href="ol.format.KML.html#readNetworkLinks">readNetworkLinks</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>
<li data-name="ol.format.KML#writeFeaturesNode" class="unstable">
<a href="ol.format.KML.html#writeFeaturesNode">writeFeaturesNode</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.MVT">
<span class="title">
<a href="ol.format.MVT.html">ol.format.MVT</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.MVT#setLayers" class="unstable">
<a href="ol.format.MVT.html#setLayers">setLayers</a>
</li>
</ul>
<ul class="fires itemMembers">
</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>
<ul class="fires itemMembers">
</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>
<ul class="fires itemMembers">
</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>
<ul class="fires 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>
<ul class="fires itemMembers">
</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>
<ul class="fires itemMembers">
</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>
<ul class="fires itemMembers">
</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>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.WMSGetFeatureInfo">
<span class="title">
<a href="ol.format.WMSGetFeatureInfo.html">ol.format.WMSGetFeatureInfo</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.WMSGetFeatureInfo#readFeatures" class="">
<a href="ol.format.WMSGetFeatureInfo.html#readFeatures">readFeatures</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.WMTSCapabilities">
<span class="title">
<a href="ol.format.WMTSCapabilities.html">ol.format.WMTSCapabilities</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.WMTSCapabilities#read" class="unstable">
<a href="ol.format.WMTSCapabilities.html#read">read</a>
</li>
</ul>
<ul class="fires itemMembers">
</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>
<ul class="fires 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>
<ul class="fires 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>
<ul class="fires 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#changed" class="unstable">
<a href="ol.geom.Circle.html#changed">changed</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#dispatchEvent" class="unstable">
<a href="ol.geom.Circle.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.geom.Circle#get" class="">
<a href="ol.geom.Circle.html#get">get</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#getKeys" class="">
<a href="ol.geom.Circle.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.geom.Circle.html#getProperties">getProperties</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="unstable">
<a href="ol.geom.Circle.html#getType">getType</a>
</li>
<li data-name="ol.geom.Circle#intersectsExtent" class="">
<a href="ol.geom.Circle.html#intersectsExtent">intersectsExtent</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#rotate" class="unstable">
<a href="ol.geom.Circle.html#rotate">rotate</a>
</li>
<li data-name="ol.geom.Circle#set" class="">
<a href="ol.geom.Circle.html#set">set</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#setProperties" class="">
<a href="ol.geom.Circle.html#setProperties">setProperties</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#simplify" class="unstable">
<a href="ol.geom.Circle.html#simplify">simplify</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#translate" class="">
<a href="ol.geom.Circle.html#translate">translate</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>
<li data-name="ol.geom.Circle#unset" class="">
<a href="ol.geom.Circle.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.geom.Geometry.html#changed">changed</a>
</li>
<li data-name="ol.geom.Geometry#dispatchEvent" class="unstable">
<a href="ol.geom.Geometry.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.geom.Geometry#get" class="">
<a href="ol.geom.Geometry.html#get">get</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#getKeys" class="">
<a href="ol.geom.Geometry.html#getKeys">getKeys</a>
</li>
<li data-name="ol.geom.Geometry#getProperties" class="">
<a href="ol.geom.Geometry.html#getProperties">getProperties</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#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#rotate" class="unstable">
<a href="ol.geom.Geometry.html#rotate">rotate</a>
</li>
<li data-name="ol.geom.Geometry#set" class="">
<a href="ol.geom.Geometry.html#set">set</a>
</li>
<li data-name="ol.geom.Geometry#setProperties" class="">
<a href="ol.geom.Geometry.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.Geometry#simplify" class="unstable">
<a href="ol.geom.Geometry.html#simplify">simplify</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>
<li data-name="ol.geom.Geometry#unset" class="">
<a href="ol.geom.Geometry.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.geom.GeometryCollection.html#changed">changed</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#dispatchEvent" class="unstable">
<a href="ol.geom.GeometryCollection.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.geom.GeometryCollection#get" class="">
<a href="ol.geom.GeometryCollection.html#get">get</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#getKeys" class="">
<a href="ol.geom.GeometryCollection.html#getKeys">getKeys</a>
</li>
<li data-name="ol.geom.GeometryCollection#getProperties" class="">
<a href="ol.geom.GeometryCollection.html#getProperties">getProperties</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#intersectsExtent" class="">
<a href="ol.geom.GeometryCollection.html#intersectsExtent">intersectsExtent</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#rotate" class="unstable">
<a href="ol.geom.GeometryCollection.html#rotate">rotate</a>
</li>
<li data-name="ol.geom.GeometryCollection#set" class="">
<a href="ol.geom.GeometryCollection.html#set">set</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#setProperties" class="">
<a href="ol.geom.GeometryCollection.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.GeometryCollection#simplify" class="unstable">
<a href="ol.geom.GeometryCollection.html#simplify">simplify</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#translate" class="unstable">
<a href="ol.geom.GeometryCollection.html#translate">translate</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>
<li data-name="ol.geom.GeometryCollection#unset" class="">
<a href="ol.geom.GeometryCollection.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.geom.LineString.html#changed">changed</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#dispatchEvent" class="unstable">
<a href="ol.geom.LineString.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.geom.LineString#forEachSegment" class="unstable">
<a href="ol.geom.LineString.html#forEachSegment">forEachSegment</a>
</li>
<li data-name="ol.geom.LineString#get" class="">
<a href="ol.geom.LineString.html#get">get</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#getCoordinateAt" class="unstable">
<a href="ol.geom.LineString.html#getCoordinateAt">getCoordinateAt</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#getKeys" class="">
<a href="ol.geom.LineString.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.geom.LineString.html#getProperties">getProperties</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#intersectsExtent" class="">
<a href="ol.geom.LineString.html#intersectsExtent">intersectsExtent</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#rotate" class="unstable">
<a href="ol.geom.LineString.html#rotate">rotate</a>
</li>
<li data-name="ol.geom.LineString#set" class="">
<a href="ol.geom.LineString.html#set">set</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#setProperties" class="">
<a href="ol.geom.LineString.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.LineString#simplify" class="unstable">
<a href="ol.geom.LineString.html#simplify">simplify</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#translate" class="">
<a href="ol.geom.LineString.html#translate">translate</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>
<li data-name="ol.geom.LineString#unset" class="">
<a href="ol.geom.LineString.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.geom.LinearRing.html#changed">changed</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#dispatchEvent" class="unstable">
<a href="ol.geom.LinearRing.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.geom.LinearRing#get" class="">
<a href="ol.geom.LinearRing.html#get">get</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#getKeys" class="">
<a href="ol.geom.LinearRing.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.geom.LinearRing.html#getProperties">getProperties</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#rotate" class="unstable">
<a href="ol.geom.LinearRing.html#rotate">rotate</a>
</li>
<li data-name="ol.geom.LinearRing#set" class="">
<a href="ol.geom.LinearRing.html#set">set</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#setProperties" class="">
<a href="ol.geom.LinearRing.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.LinearRing#simplify" class="unstable">
<a href="ol.geom.LinearRing.html#simplify">simplify</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#translate" class="">
<a href="ol.geom.LinearRing.html#translate">translate</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>
<li data-name="ol.geom.LinearRing#unset" class="">
<a href="ol.geom.LinearRing.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.geom.MultiLineString.html#changed">changed</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#dispatchEvent" class="unstable">
<a href="ol.geom.MultiLineString.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.geom.MultiLineString#get" class="">
<a href="ol.geom.MultiLineString.html#get">get</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#getKeys" class="">
<a href="ol.geom.MultiLineString.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.geom.MultiLineString.html#getProperties">getProperties</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#intersectsExtent" class="">
<a href="ol.geom.MultiLineString.html#intersectsExtent">intersectsExtent</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#rotate" class="unstable">
<a href="ol.geom.MultiLineString.html#rotate">rotate</a>
</li>
<li data-name="ol.geom.MultiLineString#set" class="">
<a href="ol.geom.MultiLineString.html#set">set</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#setProperties" class="">
<a href="ol.geom.MultiLineString.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.MultiLineString#simplify" class="unstable">
<a href="ol.geom.MultiLineString.html#simplify">simplify</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#translate" class="">
<a href="ol.geom.MultiLineString.html#translate">translate</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>
<li data-name="ol.geom.MultiLineString#unset" class="">
<a href="ol.geom.MultiLineString.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.geom.MultiPoint.html#changed">changed</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#dispatchEvent" class="unstable">
<a href="ol.geom.MultiPoint.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.geom.MultiPoint#get" class="">
<a href="ol.geom.MultiPoint.html#get">get</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#getKeys" class="">
<a href="ol.geom.MultiPoint.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.geom.MultiPoint.html#getProperties">getProperties</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#intersectsExtent" class="">
<a href="ol.geom.MultiPoint.html#intersectsExtent">intersectsExtent</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#rotate" class="unstable">
<a href="ol.geom.MultiPoint.html#rotate">rotate</a>
</li>
<li data-name="ol.geom.MultiPoint#set" class="">
<a href="ol.geom.MultiPoint.html#set">set</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#setProperties" class="">
<a href="ol.geom.MultiPoint.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.MultiPoint#simplify" class="unstable">
<a href="ol.geom.MultiPoint.html#simplify">simplify</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#translate" class="">
<a href="ol.geom.MultiPoint.html#translate">translate</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>
<li data-name="ol.geom.MultiPoint#unset" class="">
<a href="ol.geom.MultiPoint.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.geom.MultiPolygon.html#changed">changed</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#dispatchEvent" class="unstable">
<a href="ol.geom.MultiPolygon.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.geom.MultiPolygon#get" class="">
<a href="ol.geom.MultiPolygon.html#get">get</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#getKeys" class="">
<a href="ol.geom.MultiPolygon.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.geom.MultiPolygon.html#getProperties">getProperties</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#intersectsExtent" class="">
<a href="ol.geom.MultiPolygon.html#intersectsExtent">intersectsExtent</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#rotate" class="unstable">
<a href="ol.geom.MultiPolygon.html#rotate">rotate</a>
</li>
<li data-name="ol.geom.MultiPolygon#set" class="">
<a href="ol.geom.MultiPolygon.html#set">set</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#setProperties" class="">
<a href="ol.geom.MultiPolygon.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.MultiPolygon#simplify" class="unstable">
<a href="ol.geom.MultiPolygon.html#simplify">simplify</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#translate" class="">
<a href="ol.geom.MultiPolygon.html#translate">translate</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>
<li data-name="ol.geom.MultiPolygon#unset" class="">
<a href="ol.geom.MultiPolygon.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.geom.Point.html#changed">changed</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#dispatchEvent" class="unstable">
<a href="ol.geom.Point.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.geom.Point#get" class="">
<a href="ol.geom.Point.html#get">get</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#getKeys" class="">
<a href="ol.geom.Point.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.geom.Point.html#getProperties">getProperties</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#intersectsExtent" class="">
<a href="ol.geom.Point.html#intersectsExtent">intersectsExtent</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#rotate" class="unstable">
<a href="ol.geom.Point.html#rotate">rotate</a>
</li>
<li data-name="ol.geom.Point#set" class="">
<a href="ol.geom.Point.html#set">set</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#setProperties" class="">
<a href="ol.geom.Point.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.Point#simplify" class="unstable">
<a href="ol.geom.Point.html#simplify">simplify</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#translate" class="">
<a href="ol.geom.Point.html#translate">translate</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>
<li data-name="ol.geom.Point#unset" class="">
<a href="ol.geom.Point.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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.fromCircle" class="unstable">
<a href="ol.geom.Polygon.html#.fromCircle">fromCircle</a>
</li>
<li data-name="ol.geom.Polygon.fromExtent" class="unstable">
<a href="ol.geom.Polygon.html#.fromExtent">fromExtent</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#changed" class="unstable">
<a href="ol.geom.Polygon.html#changed">changed</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#dispatchEvent" class="unstable">
<a href="ol.geom.Polygon.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.geom.Polygon#get" class="">
<a href="ol.geom.Polygon.html#get">get</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#getKeys" class="">
<a href="ol.geom.Polygon.html#getKeys">getKeys</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#getLinearRingCount" class="unstable">
<a href="ol.geom.Polygon.html#getLinearRingCount">getLinearRingCount</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#getProperties" class="">
<a href="ol.geom.Polygon.html#getProperties">getProperties</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#intersectsExtent" class="">
<a href="ol.geom.Polygon.html#intersectsExtent">intersectsExtent</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#rotate" class="unstable">
<a href="ol.geom.Polygon.html#rotate">rotate</a>
</li>
<li data-name="ol.geom.Polygon#set" class="">
<a href="ol.geom.Polygon.html#set">set</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#setProperties" class="">
<a href="ol.geom.Polygon.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.Polygon#simplify" class="unstable">
<a href="ol.geom.Polygon.html#simplify">simplify</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#translate" class="">
<a href="ol.geom.Polygon.html#translate">translate</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>
<li data-name="ol.geom.Polygon#unset" class="">
<a href="ol.geom.Polygon.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.geom.SimpleGeometry.html#changed">changed</a>
</li>
<li data-name="ol.geom.SimpleGeometry#dispatchEvent" class="unstable">
<a href="ol.geom.SimpleGeometry.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.geom.SimpleGeometry#get" class="">
<a href="ol.geom.SimpleGeometry.html#get">get</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#getKeys" class="">
<a href="ol.geom.SimpleGeometry.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.geom.SimpleGeometry.html#getProperties">getProperties</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#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#rotate" class="unstable">
<a href="ol.geom.SimpleGeometry.html#rotate">rotate</a>
</li>
<li data-name="ol.geom.SimpleGeometry#set" class="">
<a href="ol.geom.SimpleGeometry.html#set">set</a>
</li>
<li data-name="ol.geom.SimpleGeometry#setProperties" class="">
<a href="ol.geom.SimpleGeometry.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.SimpleGeometry#simplify" class="unstable">
<a href="ol.geom.SimpleGeometry.html#simplify">simplify</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#translate" class="">
<a href="ol.geom.SimpleGeometry.html#translate">translate</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>
<li data-name="ol.geom.SimpleGeometry#unset" class="">
<a href="ol.geom.SimpleGeometry.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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>
<ul class="fires 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">
<span class="subtitle">Typedefs</span>
<li data-name="ol.interaction.DragBoxEndConditionType" class="unstable">
<a href="ol.interaction.html#.DragBoxEndConditionType">DragBoxEndConditionType</a>
</li>
<li data-name="ol.interaction.DrawGeometryFunctionType" class="unstable">
<a href="ol.interaction.html#.DrawGeometryFunctionType">DrawGeometryFunctionType</a>
</li>
<li data-name="ol.interaction.SelectFilterFunction" class="unstable">
<a href="ol.interaction.html#.SelectFilterFunction">SelectFilterFunction</a>
</li>
</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>
<ul class="fires itemMembers">
</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.handleEvent" class="unstable">
<a href="ol.interaction.DoubleClickZoom.html#.handleEvent">handleEvent</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#changed" class="unstable">
<a href="ol.interaction.DoubleClickZoom.html#changed">changed</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#dispatchEvent" class="unstable">
<a href="ol.interaction.DoubleClickZoom.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#get" class="">
<a href="ol.interaction.DoubleClickZoom.html#get">get</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#getActive" class="unstable">
<a href="ol.interaction.DoubleClickZoom.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#getKeys" class="">
<a href="ol.interaction.DoubleClickZoom.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#getMap" class="unstable">
<a href="ol.interaction.DoubleClickZoom.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#getProperties" class="">
<a href="ol.interaction.DoubleClickZoom.html#getProperties">getProperties</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#set" class="">
<a href="ol.interaction.DoubleClickZoom.html#set">set</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#setActive" class="unstable">
<a href="ol.interaction.DoubleClickZoom.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#setProperties" class="">
<a href="ol.interaction.DoubleClickZoom.html#setProperties">setProperties</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>
<li data-name="ol.interaction.DoubleClickZoom#unset" class="">
<a href="ol.interaction.DoubleClickZoom.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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">
<span class="subtitle">Members</span>
<li data-name="ol.interaction.DragAndDrop.handleEvent"><a href="ol.interaction.DragAndDrop.html#.handleEvent">handleEvent</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.DragAndDrop#changed" class="unstable">
<a href="ol.interaction.DragAndDrop.html#changed">changed</a>
</li>
<li data-name="ol.interaction.DragAndDrop#dispatchEvent" class="unstable">
<a href="ol.interaction.DragAndDrop.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.DragAndDrop#get" class="">
<a href="ol.interaction.DragAndDrop.html#get">get</a>
</li>
<li data-name="ol.interaction.DragAndDrop#getActive" class="unstable">
<a href="ol.interaction.DragAndDrop.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.DragAndDrop#getKeys" class="">
<a href="ol.interaction.DragAndDrop.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.DragAndDrop#getMap" class="unstable">
<a href="ol.interaction.DragAndDrop.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.DragAndDrop#getProperties" class="">
<a href="ol.interaction.DragAndDrop.html#getProperties">getProperties</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#set" class="">
<a href="ol.interaction.DragAndDrop.html#set">set</a>
</li>
<li data-name="ol.interaction.DragAndDrop#setActive" class="unstable">
<a href="ol.interaction.DragAndDrop.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.DragAndDrop#setProperties" class="">
<a href="ol.interaction.DragAndDrop.html#setProperties">setProperties</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>
<li data-name="ol.interaction.DragAndDrop#unset" class="">
<a href="ol.interaction.DragAndDrop.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.interaction.DragAndDropEvent#event:addfeatures" class="">
<a href="ol.interaction.DragAndDropEvent.html#event:addfeatures">addfeatures</a>
</li>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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>
<li data-name="ol.interaction.DragAndDropEvent#target"><a href="ol.interaction.DragAndDropEvent.html#target">target</a></li>
<li data-name="ol.interaction.DragAndDropEvent#type"><a href="ol.interaction.DragAndDropEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.DragAndDropEvent#preventDefault" class="">
<a href="ol.interaction.DragAndDropEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.interaction.DragAndDropEvent#stopPropagation" class="">
<a href="ol.interaction.DragAndDropEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires 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#changed" class="unstable">
<a href="ol.interaction.DragBox.html#changed">changed</a>
</li>
<li data-name="ol.interaction.DragBox#dispatchEvent" class="unstable">
<a href="ol.interaction.DragBox.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.DragBox#get" class="">
<a href="ol.interaction.DragBox.html#get">get</a>
</li>
<li data-name="ol.interaction.DragBox#getActive" class="unstable">
<a href="ol.interaction.DragBox.html#getActive">getActive</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#getKeys" class="">
<a href="ol.interaction.DragBox.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.DragBox#getMap" class="unstable">
<a href="ol.interaction.DragBox.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.DragBox#getProperties" class="">
<a href="ol.interaction.DragBox.html#getProperties">getProperties</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#set" class="">
<a href="ol.interaction.DragBox.html#set">set</a>
</li>
<li data-name="ol.interaction.DragBox#setActive" class="unstable">
<a href="ol.interaction.DragBox.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.DragBox#setProperties" class="">
<a href="ol.interaction.DragBox.html#setProperties">setProperties</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>
<li data-name="ol.interaction.DragBox#unset" class="">
<a href="ol.interaction.DragBox.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.DragBoxEvent#event:boxdrag" class="unstable">
<a href="ol.DragBoxEvent.html#event:boxdrag">boxdrag</a>
</li>
<li data-name="ol.DragBoxEvent#event:boxend" class="">
<a href="ol.DragBoxEvent.html#event:boxend">boxend</a>
</li>
<li data-name="ol.DragBoxEvent#event:boxstart" class="">
<a href="ol.DragBoxEvent.html#event:boxstart">boxstart</a>
</li>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.interaction.DragPan.html#changed">changed</a>
</li>
<li data-name="ol.interaction.DragPan#dispatchEvent" class="unstable">
<a href="ol.interaction.DragPan.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.DragPan#get" class="">
<a href="ol.interaction.DragPan.html#get">get</a>
</li>
<li data-name="ol.interaction.DragPan#getActive" class="unstable">
<a href="ol.interaction.DragPan.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.DragPan#getKeys" class="">
<a href="ol.interaction.DragPan.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.DragPan#getMap" class="unstable">
<a href="ol.interaction.DragPan.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.DragPan#getProperties" class="">
<a href="ol.interaction.DragPan.html#getProperties">getProperties</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#set" class="">
<a href="ol.interaction.DragPan.html#set">set</a>
</li>
<li data-name="ol.interaction.DragPan#setActive" class="unstable">
<a href="ol.interaction.DragPan.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.DragPan#setProperties" class="">
<a href="ol.interaction.DragPan.html#setProperties">setProperties</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>
<li data-name="ol.interaction.DragPan#unset" class="">
<a href="ol.interaction.DragPan.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.interaction.DragRotate.html#changed">changed</a>
</li>
<li data-name="ol.interaction.DragRotate#dispatchEvent" class="unstable">
<a href="ol.interaction.DragRotate.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.DragRotate#get" class="">
<a href="ol.interaction.DragRotate.html#get">get</a>
</li>
<li data-name="ol.interaction.DragRotate#getActive" class="unstable">
<a href="ol.interaction.DragRotate.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.DragRotate#getKeys" class="">
<a href="ol.interaction.DragRotate.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.DragRotate#getMap" class="unstable">
<a href="ol.interaction.DragRotate.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.DragRotate#getProperties" class="">
<a href="ol.interaction.DragRotate.html#getProperties">getProperties</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#set" class="">
<a href="ol.interaction.DragRotate.html#set">set</a>
</li>
<li data-name="ol.interaction.DragRotate#setActive" class="unstable">
<a href="ol.interaction.DragRotate.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.DragRotate#setProperties" class="">
<a href="ol.interaction.DragRotate.html#setProperties">setProperties</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>
<li data-name="ol.interaction.DragRotate#unset" class="">
<a href="ol.interaction.DragRotate.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.interaction.DragRotateAndZoom.html#changed">changed</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#dispatchEvent" class="unstable">
<a href="ol.interaction.DragRotateAndZoom.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#get" class="">
<a href="ol.interaction.DragRotateAndZoom.html#get">get</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#getActive" class="unstable">
<a href="ol.interaction.DragRotateAndZoom.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#getKeys" class="">
<a href="ol.interaction.DragRotateAndZoom.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#getMap" class="unstable">
<a href="ol.interaction.DragRotateAndZoom.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#getProperties" class="">
<a href="ol.interaction.DragRotateAndZoom.html#getProperties">getProperties</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#set" class="">
<a href="ol.interaction.DragRotateAndZoom.html#set">set</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#setActive" class="unstable">
<a href="ol.interaction.DragRotateAndZoom.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#setProperties" class="">
<a href="ol.interaction.DragRotateAndZoom.html#setProperties">setProperties</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>
<li data-name="ol.interaction.DragRotateAndZoom#unset" class="">
<a href="ol.interaction.DragRotateAndZoom.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.interaction.DragZoom.html#changed">changed</a>
</li>
<li data-name="ol.interaction.DragZoom#dispatchEvent" class="unstable">
<a href="ol.interaction.DragZoom.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.DragZoom#get" class="">
<a href="ol.interaction.DragZoom.html#get">get</a>
</li>
<li data-name="ol.interaction.DragZoom#getActive" class="unstable">
<a href="ol.interaction.DragZoom.html#getActive">getActive</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#getKeys" class="">
<a href="ol.interaction.DragZoom.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.DragZoom#getMap" class="unstable">
<a href="ol.interaction.DragZoom.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.DragZoom#getProperties" class="">
<a href="ol.interaction.DragZoom.html#getProperties">getProperties</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#set" class="">
<a href="ol.interaction.DragZoom.html#set">set</a>
</li>
<li data-name="ol.interaction.DragZoom#setActive" class="unstable">
<a href="ol.interaction.DragZoom.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.DragZoom#setProperties" class="">
<a href="ol.interaction.DragZoom.html#setProperties">setProperties</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>
<li data-name="ol.interaction.DragZoom#unset" class="">
<a href="ol.interaction.DragZoom.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.DragBoxEvent#event:boxdrag" class="unstable">
<a href="ol.DragBoxEvent.html#event:boxdrag">boxdrag</a>
</li>
<li data-name="ol.DragBoxEvent#event:boxend" class="">
<a href="ol.DragBoxEvent.html#event:boxend">boxend</a>
</li>
<li data-name="ol.DragBoxEvent#event:boxstart" class="">
<a href="ol.DragBoxEvent.html#event:boxstart">boxstart</a>
</li>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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.createRegularPolygon" class="unstable">
<a href="ol.interaction.Draw.html#.createRegularPolygon">createRegularPolygon</a>
</li>
<li data-name="ol.interaction.Draw.handleEvent" class="unstable">
<a href="ol.interaction.Draw.html#.handleEvent">handleEvent</a>
</li>
<li data-name="ol.interaction.Draw#changed" class="unstable">
<a href="ol.interaction.Draw.html#changed">changed</a>
</li>
<li data-name="ol.interaction.Draw#dispatchEvent" class="unstable">
<a href="ol.interaction.Draw.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.Draw#extend" class="unstable">
<a href="ol.interaction.Draw.html#extend">extend</a>
</li>
<li data-name="ol.interaction.Draw#finishDrawing" class="unstable">
<a href="ol.interaction.Draw.html#finishDrawing">finishDrawing</a>
</li>
<li data-name="ol.interaction.Draw#get" class="">
<a href="ol.interaction.Draw.html#get">get</a>
</li>
<li data-name="ol.interaction.Draw#getActive" class="unstable">
<a href="ol.interaction.Draw.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.Draw#getKeys" class="">
<a href="ol.interaction.Draw.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.Draw#getMap" class="unstable">
<a href="ol.interaction.Draw.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.Draw#getProperties" class="">
<a href="ol.interaction.Draw.html#getProperties">getProperties</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#removeLastPoint" class="unstable">
<a href="ol.interaction.Draw.html#removeLastPoint">removeLastPoint</a>
</li>
<li data-name="ol.interaction.Draw#set" class="">
<a href="ol.interaction.Draw.html#set">set</a>
</li>
<li data-name="ol.interaction.Draw#setActive" class="unstable">
<a href="ol.interaction.Draw.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.Draw#setProperties" class="">
<a href="ol.interaction.Draw.html#setProperties">setProperties</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>
<li data-name="ol.interaction.Draw#unset" class="">
<a href="ol.interaction.Draw.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.interaction.DrawEvent#event:drawend" class="">
<a href="ol.interaction.DrawEvent.html#event:drawend">drawend</a>
</li>
<li data-name="ol.interaction.DrawEvent#event:drawstart" class="">
<a href="ol.interaction.DrawEvent.html#event:drawstart">drawstart</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.DrawEvent">
<span class="title">
<a href="ol.interaction.DrawEvent.html">ol.interaction.DrawEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.interaction.DrawEvent#feature"><a href="ol.interaction.DrawEvent.html#feature">feature</a></li>
<li data-name="ol.interaction.DrawEvent#target"><a href="ol.interaction.DrawEvent.html#target">target</a></li>
<li data-name="ol.interaction.DrawEvent#type"><a href="ol.interaction.DrawEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.DrawEvent#preventDefault" class="">
<a href="ol.interaction.DrawEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.interaction.DrawEvent#stopPropagation" class="">
<a href="ol.interaction.DrawEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</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#changed" class="unstable">
<a href="ol.interaction.Interaction.html#changed">changed</a>
</li>
<li data-name="ol.interaction.Interaction#dispatchEvent" class="unstable">
<a href="ol.interaction.Interaction.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.Interaction#get" class="">
<a href="ol.interaction.Interaction.html#get">get</a>
</li>
<li data-name="ol.interaction.Interaction#getActive" class="unstable">
<a href="ol.interaction.Interaction.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.Interaction#getKeys" class="">
<a href="ol.interaction.Interaction.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.Interaction#getMap" class="unstable">
<a href="ol.interaction.Interaction.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.Interaction#getProperties" class="">
<a href="ol.interaction.Interaction.html#getProperties">getProperties</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#set" class="">
<a href="ol.interaction.Interaction.html#set">set</a>
</li>
<li data-name="ol.interaction.Interaction#setActive" class="unstable">
<a href="ol.interaction.Interaction.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.Interaction#setProperties" class="">
<a href="ol.interaction.Interaction.html#setProperties">setProperties</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>
<li data-name="ol.interaction.Interaction#unset" class="">
<a href="ol.interaction.Interaction.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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.handleEvent" class="unstable">
<a href="ol.interaction.KeyboardPan.html#.handleEvent">handleEvent</a>
</li>
<li data-name="ol.interaction.KeyboardPan#changed" class="unstable">
<a href="ol.interaction.KeyboardPan.html#changed">changed</a>
</li>
<li data-name="ol.interaction.KeyboardPan#dispatchEvent" class="unstable">
<a href="ol.interaction.KeyboardPan.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.KeyboardPan#get" class="">
<a href="ol.interaction.KeyboardPan.html#get">get</a>
</li>
<li data-name="ol.interaction.KeyboardPan#getActive" class="unstable">
<a href="ol.interaction.KeyboardPan.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.KeyboardPan#getKeys" class="">
<a href="ol.interaction.KeyboardPan.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.KeyboardPan#getMap" class="unstable">
<a href="ol.interaction.KeyboardPan.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.KeyboardPan#getProperties" class="">
<a href="ol.interaction.KeyboardPan.html#getProperties">getProperties</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#set" class="">
<a href="ol.interaction.KeyboardPan.html#set">set</a>
</li>
<li data-name="ol.interaction.KeyboardPan#setActive" class="unstable">
<a href="ol.interaction.KeyboardPan.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.KeyboardPan#setProperties" class="">
<a href="ol.interaction.KeyboardPan.html#setProperties">setProperties</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>
<li data-name="ol.interaction.KeyboardPan#unset" class="">
<a href="ol.interaction.KeyboardPan.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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.handleEvent" class="unstable">
<a href="ol.interaction.KeyboardZoom.html#.handleEvent">handleEvent</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#changed" class="unstable">
<a href="ol.interaction.KeyboardZoom.html#changed">changed</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#dispatchEvent" class="unstable">
<a href="ol.interaction.KeyboardZoom.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#get" class="">
<a href="ol.interaction.KeyboardZoom.html#get">get</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#getActive" class="unstable">
<a href="ol.interaction.KeyboardZoom.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#getKeys" class="">
<a href="ol.interaction.KeyboardZoom.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#getMap" class="unstable">
<a href="ol.interaction.KeyboardZoom.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#getProperties" class="">
<a href="ol.interaction.KeyboardZoom.html#getProperties">getProperties</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#set" class="">
<a href="ol.interaction.KeyboardZoom.html#set">set</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#setActive" class="unstable">
<a href="ol.interaction.KeyboardZoom.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#setProperties" class="">
<a href="ol.interaction.KeyboardZoom.html#setProperties">setProperties</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>
<li data-name="ol.interaction.KeyboardZoom#unset" class="">
<a href="ol.interaction.KeyboardZoom.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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.handleEvent" class="unstable">
<a href="ol.interaction.Modify.html#.handleEvent">handleEvent</a>
</li>
<li data-name="ol.interaction.Modify#changed" class="unstable">
<a href="ol.interaction.Modify.html#changed">changed</a>
</li>
<li data-name="ol.interaction.Modify#dispatchEvent" class="unstable">
<a href="ol.interaction.Modify.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.Modify#get" class="">
<a href="ol.interaction.Modify.html#get">get</a>
</li>
<li data-name="ol.interaction.Modify#getActive" class="unstable">
<a href="ol.interaction.Modify.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.Modify#getKeys" class="">
<a href="ol.interaction.Modify.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.Modify#getMap" class="unstable">
<a href="ol.interaction.Modify.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.Modify#getProperties" class="">
<a href="ol.interaction.Modify.html#getProperties">getProperties</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#set" class="">
<a href="ol.interaction.Modify.html#set">set</a>
</li>
<li data-name="ol.interaction.Modify#setActive" class="unstable">
<a href="ol.interaction.Modify.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.Modify#setProperties" class="">
<a href="ol.interaction.Modify.html#setProperties">setProperties</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>
<li data-name="ol.interaction.Modify#unset" class="">
<a href="ol.interaction.Modify.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.interaction.ModifyEvent#event:modifyend" class="unstable">
<a href="ol.interaction.ModifyEvent.html#event:modifyend">modifyend</a>
</li>
<li data-name="ol.interaction.ModifyEvent#event:modifystart" class="unstable">
<a href="ol.interaction.ModifyEvent.html#event:modifystart">modifystart</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.ModifyEvent">
<span class="title">
<a href="ol.interaction.ModifyEvent.html">ol.interaction.ModifyEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.interaction.ModifyEvent#features"><a href="ol.interaction.ModifyEvent.html#features">features</a></li>
<li data-name="ol.interaction.ModifyEvent#mapBrowserPointerEvent"><a href="ol.interaction.ModifyEvent.html#mapBrowserPointerEvent">mapBrowserPointerEvent</a></li>
<li data-name="ol.interaction.ModifyEvent#target"><a href="ol.interaction.ModifyEvent.html#target">target</a></li>
<li data-name="ol.interaction.ModifyEvent#type"><a href="ol.interaction.ModifyEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.ModifyEvent#preventDefault" class="">
<a href="ol.interaction.ModifyEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.interaction.ModifyEvent#stopPropagation" class="">
<a href="ol.interaction.ModifyEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</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.handleEvent" class="unstable">
<a href="ol.interaction.MouseWheelZoom.html#.handleEvent">handleEvent</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#changed" class="unstable">
<a href="ol.interaction.MouseWheelZoom.html#changed">changed</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#dispatchEvent" class="unstable">
<a href="ol.interaction.MouseWheelZoom.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#get" class="">
<a href="ol.interaction.MouseWheelZoom.html#get">get</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#getActive" class="unstable">
<a href="ol.interaction.MouseWheelZoom.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#getKeys" class="">
<a href="ol.interaction.MouseWheelZoom.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#getMap" class="unstable">
<a href="ol.interaction.MouseWheelZoom.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#getProperties" class="">
<a href="ol.interaction.MouseWheelZoom.html#getProperties">getProperties</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#set" class="">
<a href="ol.interaction.MouseWheelZoom.html#set">set</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#setActive" class="unstable">
<a href="ol.interaction.MouseWheelZoom.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#setMouseAnchor" class="unstable">
<a href="ol.interaction.MouseWheelZoom.html#setMouseAnchor">setMouseAnchor</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#setProperties" class="">
<a href="ol.interaction.MouseWheelZoom.html#setProperties">setProperties</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>
<li data-name="ol.interaction.MouseWheelZoom#unset" class="">
<a href="ol.interaction.MouseWheelZoom.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.interaction.PinchRotate.html#changed">changed</a>
</li>
<li data-name="ol.interaction.PinchRotate#dispatchEvent" class="unstable">
<a href="ol.interaction.PinchRotate.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.PinchRotate#get" class="">
<a href="ol.interaction.PinchRotate.html#get">get</a>
</li>
<li data-name="ol.interaction.PinchRotate#getActive" class="unstable">
<a href="ol.interaction.PinchRotate.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.PinchRotate#getKeys" class="">
<a href="ol.interaction.PinchRotate.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.PinchRotate#getMap" class="unstable">
<a href="ol.interaction.PinchRotate.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.PinchRotate#getProperties" class="">
<a href="ol.interaction.PinchRotate.html#getProperties">getProperties</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#set" class="">
<a href="ol.interaction.PinchRotate.html#set">set</a>
</li>
<li data-name="ol.interaction.PinchRotate#setActive" class="unstable">
<a href="ol.interaction.PinchRotate.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.PinchRotate#setProperties" class="">
<a href="ol.interaction.PinchRotate.html#setProperties">setProperties</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>
<li data-name="ol.interaction.PinchRotate#unset" class="">
<a href="ol.interaction.PinchRotate.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.interaction.PinchZoom.html#changed">changed</a>
</li>
<li data-name="ol.interaction.PinchZoom#dispatchEvent" class="unstable">
<a href="ol.interaction.PinchZoom.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.PinchZoom#get" class="">
<a href="ol.interaction.PinchZoom.html#get">get</a>
</li>
<li data-name="ol.interaction.PinchZoom#getActive" class="unstable">
<a href="ol.interaction.PinchZoom.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.PinchZoom#getKeys" class="">
<a href="ol.interaction.PinchZoom.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.PinchZoom#getMap" class="unstable">
<a href="ol.interaction.PinchZoom.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.PinchZoom#getProperties" class="">
<a href="ol.interaction.PinchZoom.html#getProperties">getProperties</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#set" class="">
<a href="ol.interaction.PinchZoom.html#set">set</a>
</li>
<li data-name="ol.interaction.PinchZoom#setActive" class="unstable">
<a href="ol.interaction.PinchZoom.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.PinchZoom#setProperties" class="">
<a href="ol.interaction.PinchZoom.html#setProperties">setProperties</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>
<li data-name="ol.interaction.PinchZoom#unset" class="">
<a href="ol.interaction.PinchZoom.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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.handleEvent" class="unstable">
<a href="ol.interaction.Pointer.html#.handleEvent">handleEvent</a>
</li>
<li data-name="ol.interaction.Pointer#changed" class="unstable">
<a href="ol.interaction.Pointer.html#changed">changed</a>
</li>
<li data-name="ol.interaction.Pointer#dispatchEvent" class="unstable">
<a href="ol.interaction.Pointer.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.Pointer#get" class="">
<a href="ol.interaction.Pointer.html#get">get</a>
</li>
<li data-name="ol.interaction.Pointer#getActive" class="unstable">
<a href="ol.interaction.Pointer.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.Pointer#getKeys" class="">
<a href="ol.interaction.Pointer.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.Pointer#getMap" class="unstable">
<a href="ol.interaction.Pointer.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.Pointer#getProperties" class="">
<a href="ol.interaction.Pointer.html#getProperties">getProperties</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#set" class="">
<a href="ol.interaction.Pointer.html#set">set</a>
</li>
<li data-name="ol.interaction.Pointer#setActive" class="unstable">
<a href="ol.interaction.Pointer.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.Pointer#setProperties" class="">
<a href="ol.interaction.Pointer.html#setProperties">setProperties</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>
<li data-name="ol.interaction.Pointer#unset" class="">
<a href="ol.interaction.Pointer.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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.handleEvent" class="unstable">
<a href="ol.interaction.Select.html#.handleEvent">handleEvent</a>
</li>
<li data-name="ol.interaction.Select#changed" class="unstable">
<a href="ol.interaction.Select.html#changed">changed</a>
</li>
<li data-name="ol.interaction.Select#dispatchEvent" class="unstable">
<a href="ol.interaction.Select.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.Select#get" class="">
<a href="ol.interaction.Select.html#get">get</a>
</li>
<li data-name="ol.interaction.Select#getActive" class="unstable">
<a href="ol.interaction.Select.html#getActive">getActive</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#getKeys" class="">
<a href="ol.interaction.Select.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.Select#getLayer" class="unstable">
<a href="ol.interaction.Select.html#getLayer">getLayer</a>
</li>
<li data-name="ol.interaction.Select#getMap" class="unstable">
<a href="ol.interaction.Select.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.Select#getProperties" class="">
<a href="ol.interaction.Select.html#getProperties">getProperties</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#set" class="">
<a href="ol.interaction.Select.html#set">set</a>
</li>
<li data-name="ol.interaction.Select#setActive" class="unstable">
<a href="ol.interaction.Select.html#setActive">setActive</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#setProperties" class="">
<a href="ol.interaction.Select.html#setProperties">setProperties</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>
<li data-name="ol.interaction.Select#unset" class="">
<a href="ol.interaction.Select.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.interaction.SelectEvent#event:select" class="unstable">
<a href="ol.interaction.SelectEvent.html#event:select">select</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.SelectEvent">
<span class="title">
<a href="ol.interaction.SelectEvent.html">ol.interaction.SelectEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.interaction.SelectEvent#deselected"><a href="ol.interaction.SelectEvent.html#deselected">deselected</a></li>
<li data-name="ol.interaction.SelectEvent#mapBrowserEvent"><a href="ol.interaction.SelectEvent.html#mapBrowserEvent">mapBrowserEvent</a></li>
<li data-name="ol.interaction.SelectEvent#selected"><a href="ol.interaction.SelectEvent.html#selected">selected</a></li>
<li data-name="ol.interaction.SelectEvent#target"><a href="ol.interaction.SelectEvent.html#target">target</a></li>
<li data-name="ol.interaction.SelectEvent#type"><a href="ol.interaction.SelectEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.SelectEvent#preventDefault" class="">
<a href="ol.interaction.SelectEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.interaction.SelectEvent#stopPropagation" class="">
<a href="ol.interaction.SelectEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.interaction.Snap">
<span class="title">
<a href="ol.interaction.Snap.html">ol.interaction.Snap</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.Snap#addFeature" class="unstable">
<a href="ol.interaction.Snap.html#addFeature">addFeature</a>
</li>
<li data-name="ol.interaction.Snap#changed" class="unstable">
<a href="ol.interaction.Snap.html#changed">changed</a>
</li>
<li data-name="ol.interaction.Snap#dispatchEvent" class="unstable">
<a href="ol.interaction.Snap.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.Snap#get" class="">
<a href="ol.interaction.Snap.html#get">get</a>
</li>
<li data-name="ol.interaction.Snap#getActive" class="unstable">
<a href="ol.interaction.Snap.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.Snap#getKeys" class="">
<a href="ol.interaction.Snap.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.Snap#getMap" class="unstable">
<a href="ol.interaction.Snap.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.Snap#getProperties" class="">
<a href="ol.interaction.Snap.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.Snap#getRevision" class="unstable">
<a href="ol.interaction.Snap.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.Snap#on" class="">
<a href="ol.interaction.Snap.html#on">on</a>
</li>
<li data-name="ol.interaction.Snap#once" class="">
<a href="ol.interaction.Snap.html#once">once</a>
</li>
<li data-name="ol.interaction.Snap#removeFeature" class="unstable">
<a href="ol.interaction.Snap.html#removeFeature">removeFeature</a>
</li>
<li data-name="ol.interaction.Snap#set" class="">
<a href="ol.interaction.Snap.html#set">set</a>
</li>
<li data-name="ol.interaction.Snap#setActive" class="unstable">
<a href="ol.interaction.Snap.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.Snap#setProperties" class="">
<a href="ol.interaction.Snap.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.Snap#un" class="">
<a href="ol.interaction.Snap.html#un">un</a>
</li>
<li data-name="ol.interaction.Snap#unByKey" class="">
<a href="ol.interaction.Snap.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.Snap#unset" class="">
<a href="ol.interaction.Snap.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.Translate">
<span class="title">
<a href="ol.interaction.Translate.html">ol.interaction.Translate</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.Translate#changed" class="unstable">
<a href="ol.interaction.Translate.html#changed">changed</a>
</li>
<li data-name="ol.interaction.Translate#dispatchEvent" class="unstable">
<a href="ol.interaction.Translate.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.interaction.Translate#get" class="">
<a href="ol.interaction.Translate.html#get">get</a>
</li>
<li data-name="ol.interaction.Translate#getActive" class="unstable">
<a href="ol.interaction.Translate.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.Translate#getKeys" class="">
<a href="ol.interaction.Translate.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.Translate#getMap" class="unstable">
<a href="ol.interaction.Translate.html#getMap">getMap</a>
</li>
<li data-name="ol.interaction.Translate#getProperties" class="">
<a href="ol.interaction.Translate.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.Translate#getRevision" class="unstable">
<a href="ol.interaction.Translate.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.Translate#on" class="">
<a href="ol.interaction.Translate.html#on">on</a>
</li>
<li data-name="ol.interaction.Translate#once" class="">
<a href="ol.interaction.Translate.html#once">once</a>
</li>
<li data-name="ol.interaction.Translate#set" class="">
<a href="ol.interaction.Translate.html#set">set</a>
</li>
<li data-name="ol.interaction.Translate#setActive" class="unstable">
<a href="ol.interaction.Translate.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.Translate#setProperties" class="">
<a href="ol.interaction.Translate.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.Translate#un" class="">
<a href="ol.interaction.Translate.html#un">un</a>
</li>
<li data-name="ol.interaction.Translate#unByKey" class="">
<a href="ol.interaction.Translate.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.Translate#unset" class="">
<a href="ol.interaction.Translate.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.interaction.TranslateEvent#event:translateend" class="unstable">
<a href="ol.interaction.TranslateEvent.html#event:translateend">translateend</a>
</li>
<li data-name="ol.interaction.TranslateEvent#event:translatestart" class="unstable">
<a href="ol.interaction.TranslateEvent.html#event:translatestart">translatestart</a>
</li>
<li data-name="ol.interaction.TranslateEvent#event:translating" class="unstable">
<a href="ol.interaction.TranslateEvent.html#event:translating">translating</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.TranslateEvent">
<span class="title">
<a href="ol.interaction.TranslateEvent.html">ol.interaction.TranslateEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.interaction.TranslateEvent#coordinate"><a href="ol.interaction.TranslateEvent.html#coordinate">coordinate</a></li>
<li data-name="ol.interaction.TranslateEvent#features"><a href="ol.interaction.TranslateEvent.html#features">features</a></li>
<li data-name="ol.interaction.TranslateEvent#target"><a href="ol.interaction.TranslateEvent.html#target">target</a></li>
<li data-name="ol.interaction.TranslateEvent#type"><a href="ol.interaction.TranslateEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.TranslateEvent#preventDefault" class="">
<a href="ol.interaction.TranslateEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.interaction.TranslateEvent#stopPropagation" class="">
<a href="ol.interaction.TranslateEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</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>
<ul class="fires 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#changed" class="unstable">
<a href="ol.layer.Base.html#changed">changed</a>
</li>
<li data-name="ol.layer.Base#dispatchEvent" class="unstable">
<a href="ol.layer.Base.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.layer.Base#get" class="">
<a href="ol.layer.Base.html#get">get</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#getKeys" class="">
<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="">
<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#getVisible" class="">
<a href="ol.layer.Base.html#getVisible">getVisible</a>
</li>
<li data-name="ol.layer.Base#getZIndex" class="unstable">
<a href="ol.layer.Base.html#getZIndex">getZIndex</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="">
<a href="ol.layer.Base.html#set">set</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#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="">
<a href="ol.layer.Base.html#setProperties">setProperties</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#setZIndex" class="unstable">
<a href="ol.layer.Base.html#setZIndex">setZIndex</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#unByKey" class="">
<a href="ol.layer.Base.html#unByKey">unByKey</a>
</li>
<li data-name="ol.layer.Base#unset" class="">
<a href="ol.layer.Base.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:extent" class="unstable">
change:extent
</li>
<li data-name="ol.ObjectEvent#event:change:maxResolution" class="unstable">
change:maxResolution
</li>
<li data-name="ol.ObjectEvent#event:change:minResolution" class="unstable">
change:minResolution
</li>
<li data-name="ol.ObjectEvent#event:change:opacity" class="unstable">
change:opacity
</li>
<li data-name="ol.ObjectEvent#event:change:visible" class="unstable">
change:visible
</li>
<li data-name="ol.ObjectEvent#event:change:zIndex" class="unstable">
change:zIndex
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.layer.Group.html#changed">changed</a>
</li>
<li data-name="ol.layer.Group#dispatchEvent" class="unstable">
<a href="ol.layer.Group.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.layer.Group#get" class="">
<a href="ol.layer.Group.html#get">get</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#getKeys" class="">
<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="">
<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#getVisible" class="">
<a href="ol.layer.Group.html#getVisible">getVisible</a>
</li>
<li data-name="ol.layer.Group#getZIndex" class="unstable">
<a href="ol.layer.Group.html#getZIndex">getZIndex</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="">
<a href="ol.layer.Group.html#set">set</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#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="">
<a href="ol.layer.Group.html#setProperties">setProperties</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#setZIndex" class="unstable">
<a href="ol.layer.Group.html#setZIndex">setZIndex</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#unByKey" class="">
<a href="ol.layer.Group.html#unByKey">unByKey</a>
</li>
<li data-name="ol.layer.Group#unset" class="">
<a href="ol.layer.Group.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:extent" class="unstable">
change:extent
</li>
<li data-name="ol.ObjectEvent#event:change:layers" class="unstable">
change:layers
</li>
<li data-name="ol.ObjectEvent#event:change:maxResolution" class="unstable">
change:maxResolution
</li>
<li data-name="ol.ObjectEvent#event:change:minResolution" class="unstable">
change:minResolution
</li>
<li data-name="ol.ObjectEvent#event:change:opacity" class="unstable">
change:opacity
</li>
<li data-name="ol.ObjectEvent#event:change:visible" class="unstable">
change:visible
</li>
<li data-name="ol.ObjectEvent#event:change:zIndex" class="unstable">
change:zIndex
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.layer.Heatmap.html#changed">changed</a>
</li>
<li data-name="ol.layer.Heatmap#dispatchEvent" class="unstable">
<a href="ol.layer.Heatmap.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.layer.Heatmap#get" class="">
<a href="ol.layer.Heatmap.html#get">get</a>
</li>
<li data-name="ol.layer.Heatmap#getBlur" class="unstable">
<a href="ol.layer.Heatmap.html#getBlur">getBlur</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#getKeys" class="">
<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="">
<a href="ol.layer.Heatmap.html#getProperties">getProperties</a>
</li>
<li data-name="ol.layer.Heatmap#getRadius" class="unstable">
<a href="ol.layer.Heatmap.html#getRadius">getRadius</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#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#getZIndex" class="unstable">
<a href="ol.layer.Heatmap.html#getZIndex">getZIndex</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="">
<a href="ol.layer.Heatmap.html#set">set</a>
</li>
<li data-name="ol.layer.Heatmap#setBlur" class="unstable">
<a href="ol.layer.Heatmap.html#setBlur">setBlur</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#setMap" class="unstable">
<a href="ol.layer.Heatmap.html#setMap">setMap</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="">
<a href="ol.layer.Heatmap.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.Heatmap#setRadius" class="unstable">
<a href="ol.layer.Heatmap.html#setRadius">setRadius</a>
</li>
<li data-name="ol.layer.Heatmap#setSource" class="">
<a href="ol.layer.Heatmap.html#setSource">setSource</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#setZIndex" class="unstable">
<a href="ol.layer.Heatmap.html#setZIndex">setZIndex</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#unByKey" class="">
<a href="ol.layer.Heatmap.html#unByKey">unByKey</a>
</li>
<li data-name="ol.layer.Heatmap#unset" class="">
<a href="ol.layer.Heatmap.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:blur" class="unstable">
change:blur
</li>
<li data-name="ol.ObjectEvent#event:change:extent" class="unstable">
change:extent
</li>
<li data-name="ol.ObjectEvent#event:change:gradient" class="unstable">
change:gradient
</li>
<li data-name="ol.ObjectEvent#event:change:maxResolution" class="unstable">
change:maxResolution
</li>
<li data-name="ol.ObjectEvent#event:change:minResolution" class="unstable">
change:minResolution
</li>
<li data-name="ol.ObjectEvent#event:change:opacity" class="unstable">
change:opacity
</li>
<li data-name="ol.ObjectEvent#event:change:radius" class="unstable">
change:radius
</li>
<li data-name="ol.ObjectEvent#event:change:source" class="unstable">
change:source
</li>
<li data-name="ol.ObjectEvent#event:change:visible" class="unstable">
change:visible
</li>
<li data-name="ol.ObjectEvent#event:change:zIndex" class="unstable">
change:zIndex
</li>
<li data-name="ol.render.Event#event:postcompose" class="unstable">
<a href="ol.render.Event.html#event:postcompose">postcompose</a>
</li>
<li data-name="ol.render.Event#event:precompose" class="unstable">
<a href="ol.render.Event.html#event:precompose">precompose</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.render.Event#event:render" class="unstable">
<a href="ol.render.Event.html#event:render">render</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#changed" class="unstable">
<a href="ol.layer.Image.html#changed">changed</a>
</li>
<li data-name="ol.layer.Image#dispatchEvent" class="unstable">
<a href="ol.layer.Image.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.layer.Image#get" class="">
<a href="ol.layer.Image.html#get">get</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#getKeys" class="">
<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="">
<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#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#getZIndex" class="unstable">
<a href="ol.layer.Image.html#getZIndex">getZIndex</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="">
<a href="ol.layer.Image.html#set">set</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#setMap" class="unstable">
<a href="ol.layer.Image.html#setMap">setMap</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="">
<a href="ol.layer.Image.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.Image#setSource" class="">
<a href="ol.layer.Image.html#setSource">setSource</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#setZIndex" class="unstable">
<a href="ol.layer.Image.html#setZIndex">setZIndex</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#unByKey" class="">
<a href="ol.layer.Image.html#unByKey">unByKey</a>
</li>
<li data-name="ol.layer.Image#unset" class="">
<a href="ol.layer.Image.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:extent" class="unstable">
change:extent
</li>
<li data-name="ol.ObjectEvent#event:change:maxResolution" class="unstable">
change:maxResolution
</li>
<li data-name="ol.ObjectEvent#event:change:minResolution" class="unstable">
change:minResolution
</li>
<li data-name="ol.ObjectEvent#event:change:opacity" class="unstable">
change:opacity
</li>
<li data-name="ol.ObjectEvent#event:change:source" class="unstable">
change:source
</li>
<li data-name="ol.ObjectEvent#event:change:visible" class="unstable">
change:visible
</li>
<li data-name="ol.ObjectEvent#event:change:zIndex" class="unstable">
change:zIndex
</li>
<li data-name="ol.render.Event#event:postcompose" class="unstable">
<a href="ol.render.Event.html#event:postcompose">postcompose</a>
</li>
<li data-name="ol.render.Event#event:precompose" class="unstable">
<a href="ol.render.Event.html#event:precompose">precompose</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.render.Event#event:render" class="unstable">
<a href="ol.render.Event.html#event:render">render</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#changed" class="unstable">
<a href="ol.layer.Layer.html#changed">changed</a>
</li>
<li data-name="ol.layer.Layer#dispatchEvent" class="unstable">
<a href="ol.layer.Layer.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.layer.Layer#get" class="">
<a href="ol.layer.Layer.html#get">get</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#getKeys" class="">
<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="">
<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#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#getZIndex" class="unstable">
<a href="ol.layer.Layer.html#getZIndex">getZIndex</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="">
<a href="ol.layer.Layer.html#set">set</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#setMap" class="unstable">
<a href="ol.layer.Layer.html#setMap">setMap</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="">
<a href="ol.layer.Layer.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.Layer#setSource" class="">
<a href="ol.layer.Layer.html#setSource">setSource</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#setZIndex" class="unstable">
<a href="ol.layer.Layer.html#setZIndex">setZIndex</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#unByKey" class="">
<a href="ol.layer.Layer.html#unByKey">unByKey</a>
</li>
<li data-name="ol.layer.Layer#unset" class="">
<a href="ol.layer.Layer.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:extent" class="unstable">
change:extent
</li>
<li data-name="ol.ObjectEvent#event:change:maxResolution" class="unstable">
change:maxResolution
</li>
<li data-name="ol.ObjectEvent#event:change:minResolution" class="unstable">
change:minResolution
</li>
<li data-name="ol.ObjectEvent#event:change:opacity" class="unstable">
change:opacity
</li>
<li data-name="ol.ObjectEvent#event:change:source" class="unstable">
change:source
</li>
<li data-name="ol.ObjectEvent#event:change:visible" class="unstable">
change:visible
</li>
<li data-name="ol.ObjectEvent#event:change:zIndex" class="unstable">
change:zIndex
</li>
<li data-name="ol.render.Event#event:postcompose" class="unstable">
<a href="ol.render.Event.html#event:postcompose">postcompose</a>
</li>
<li data-name="ol.render.Event#event:precompose" class="unstable">
<a href="ol.render.Event.html#event:precompose">precompose</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.render.Event#event:render" class="unstable">
<a href="ol.render.Event.html#event:render">render</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#changed" class="unstable">
<a href="ol.layer.Tile.html#changed">changed</a>
</li>
<li data-name="ol.layer.Tile#dispatchEvent" class="unstable">
<a href="ol.layer.Tile.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.layer.Tile#get" class="">
<a href="ol.layer.Tile.html#get">get</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#getKeys" class="">
<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="">
<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#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#getZIndex" class="unstable">
<a href="ol.layer.Tile.html#getZIndex">getZIndex</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="">
<a href="ol.layer.Tile.html#set">set</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#setMap" class="unstable">
<a href="ol.layer.Tile.html#setMap">setMap</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="">
<a href="ol.layer.Tile.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.Tile#setSource" class="">
<a href="ol.layer.Tile.html#setSource">setSource</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#setZIndex" class="unstable">
<a href="ol.layer.Tile.html#setZIndex">setZIndex</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#unByKey" class="">
<a href="ol.layer.Tile.html#unByKey">unByKey</a>
</li>
<li data-name="ol.layer.Tile#unset" class="">
<a href="ol.layer.Tile.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:extent" class="unstable">
change:extent
</li>
<li data-name="ol.ObjectEvent#event:change:maxResolution" class="unstable">
change:maxResolution
</li>
<li data-name="ol.ObjectEvent#event:change:minResolution" class="unstable">
change:minResolution
</li>
<li data-name="ol.ObjectEvent#event:change:opacity" class="unstable">
change:opacity
</li>
<li data-name="ol.ObjectEvent#event:change:preload" class="unstable">
change:preload
</li>
<li data-name="ol.ObjectEvent#event:change:source" class="unstable">
change:source
</li>
<li data-name="ol.ObjectEvent#event:change:useInterimTilesOnError" class="unstable">
change:useInterimTilesOnError
</li>
<li data-name="ol.ObjectEvent#event:change:visible" class="unstable">
change:visible
</li>
<li data-name="ol.ObjectEvent#event:change:zIndex" class="unstable">
change:zIndex
</li>
<li data-name="ol.render.Event#event:postcompose" class="unstable">
<a href="ol.render.Event.html#event:postcompose">postcompose</a>
</li>
<li data-name="ol.render.Event#event:precompose" class="unstable">
<a href="ol.render.Event.html#event:precompose">precompose</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.render.Event#event:render" class="unstable">
<a href="ol.render.Event.html#event:render">render</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#changed" class="unstable">
<a href="ol.layer.Vector.html#changed">changed</a>
</li>
<li data-name="ol.layer.Vector#dispatchEvent" class="unstable">
<a href="ol.layer.Vector.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.layer.Vector#get" class="">
<a href="ol.layer.Vector.html#get">get</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#getKeys" class="">
<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="">
<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#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#getZIndex" class="unstable">
<a href="ol.layer.Vector.html#getZIndex">getZIndex</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="">
<a href="ol.layer.Vector.html#set">set</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#setMap" class="unstable">
<a href="ol.layer.Vector.html#setMap">setMap</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="">
<a href="ol.layer.Vector.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.Vector#setSource" class="">
<a href="ol.layer.Vector.html#setSource">setSource</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#setZIndex" class="unstable">
<a href="ol.layer.Vector.html#setZIndex">setZIndex</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#unByKey" class="">
<a href="ol.layer.Vector.html#unByKey">unByKey</a>
</li>
<li data-name="ol.layer.Vector#unset" class="">
<a href="ol.layer.Vector.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:extent" class="unstable">
change:extent
</li>
<li data-name="ol.ObjectEvent#event:change:maxResolution" class="unstable">
change:maxResolution
</li>
<li data-name="ol.ObjectEvent#event:change:minResolution" class="unstable">
change:minResolution
</li>
<li data-name="ol.ObjectEvent#event:change:opacity" class="unstable">
change:opacity
</li>
<li data-name="ol.ObjectEvent#event:change:source" class="unstable">
change:source
</li>
<li data-name="ol.ObjectEvent#event:change:visible" class="unstable">
change:visible
</li>
<li data-name="ol.ObjectEvent#event:change:zIndex" class="unstable">
change:zIndex
</li>
<li data-name="ol.render.Event#event:postcompose" class="unstable">
<a href="ol.render.Event.html#event:postcompose">postcompose</a>
</li>
<li data-name="ol.render.Event#event:precompose" class="unstable">
<a href="ol.render.Event.html#event:precompose">precompose</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.render.Event#event:render" class="unstable">
<a href="ol.render.Event.html#event:render">render</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.layer.VectorTile">
<span class="title">
<a href="ol.layer.VectorTile.html">ol.layer.VectorTile</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.VectorTile#changed" class="unstable">
<a href="ol.layer.VectorTile.html#changed">changed</a>
</li>
<li data-name="ol.layer.VectorTile#dispatchEvent" class="unstable">
<a href="ol.layer.VectorTile.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.layer.VectorTile#get" class="">
<a href="ol.layer.VectorTile.html#get">get</a>
</li>
<li data-name="ol.layer.VectorTile#getExtent" class="">
<a href="ol.layer.VectorTile.html#getExtent">getExtent</a>
</li>
<li data-name="ol.layer.VectorTile#getKeys" class="">
<a href="ol.layer.VectorTile.html#getKeys">getKeys</a>
</li>
<li data-name="ol.layer.VectorTile#getMaxResolution" class="">
<a href="ol.layer.VectorTile.html#getMaxResolution">getMaxResolution</a>
</li>
<li data-name="ol.layer.VectorTile#getMinResolution" class="">
<a href="ol.layer.VectorTile.html#getMinResolution">getMinResolution</a>
</li>
<li data-name="ol.layer.VectorTile#getOpacity" class="">
<a href="ol.layer.VectorTile.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.layer.VectorTile#getPreload" class="unstable">
<a href="ol.layer.VectorTile.html#getPreload">getPreload</a>
</li>
<li data-name="ol.layer.VectorTile#getProperties" class="">
<a href="ol.layer.VectorTile.html#getProperties">getProperties</a>
</li>
<li data-name="ol.layer.VectorTile#getRevision" class="unstable">
<a href="ol.layer.VectorTile.html#getRevision">getRevision</a>
</li>
<li data-name="ol.layer.VectorTile#getSource" class="">
<a href="ol.layer.VectorTile.html#getSource">getSource</a>
</li>
<li data-name="ol.layer.VectorTile#getStyle" class="">
<a href="ol.layer.VectorTile.html#getStyle">getStyle</a>
</li>
<li data-name="ol.layer.VectorTile#getStyleFunction" class="">
<a href="ol.layer.VectorTile.html#getStyleFunction">getStyleFunction</a>
</li>
<li data-name="ol.layer.VectorTile#getUseInterimTilesOnError" class="unstable">
<a href="ol.layer.VectorTile.html#getUseInterimTilesOnError">getUseInterimTilesOnError</a>
</li>
<li data-name="ol.layer.VectorTile#getVisible" class="">
<a href="ol.layer.VectorTile.html#getVisible">getVisible</a>
</li>
<li data-name="ol.layer.VectorTile#getZIndex" class="unstable">
<a href="ol.layer.VectorTile.html#getZIndex">getZIndex</a>
</li>
<li data-name="ol.layer.VectorTile#on" class="">
<a href="ol.layer.VectorTile.html#on">on</a>
</li>
<li data-name="ol.layer.VectorTile#once" class="">
<a href="ol.layer.VectorTile.html#once">once</a>
</li>
<li data-name="ol.layer.VectorTile#set" class="">
<a href="ol.layer.VectorTile.html#set">set</a>
</li>
<li data-name="ol.layer.VectorTile#setExtent" class="">
<a href="ol.layer.VectorTile.html#setExtent">setExtent</a>
</li>
<li data-name="ol.layer.VectorTile#setMap" class="unstable">
<a href="ol.layer.VectorTile.html#setMap">setMap</a>
</li>
<li data-name="ol.layer.VectorTile#setMaxResolution" class="">
<a href="ol.layer.VectorTile.html#setMaxResolution">setMaxResolution</a>
</li>
<li data-name="ol.layer.VectorTile#setMinResolution" class="">
<a href="ol.layer.VectorTile.html#setMinResolution">setMinResolution</a>
</li>
<li data-name="ol.layer.VectorTile#setOpacity" class="">
<a href="ol.layer.VectorTile.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.layer.VectorTile#setPreload" class="unstable">
<a href="ol.layer.VectorTile.html#setPreload">setPreload</a>
</li>
<li data-name="ol.layer.VectorTile#setProperties" class="">
<a href="ol.layer.VectorTile.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.VectorTile#setSource" class="">
<a href="ol.layer.VectorTile.html#setSource">setSource</a>
</li>
<li data-name="ol.layer.VectorTile#setStyle" class="">
<a href="ol.layer.VectorTile.html#setStyle">setStyle</a>
</li>
<li data-name="ol.layer.VectorTile#setUseInterimTilesOnError" class="unstable">
<a href="ol.layer.VectorTile.html#setUseInterimTilesOnError">setUseInterimTilesOnError</a>
</li>
<li data-name="ol.layer.VectorTile#setVisible" class="">
<a href="ol.layer.VectorTile.html#setVisible">setVisible</a>
</li>
<li data-name="ol.layer.VectorTile#setZIndex" class="unstable">
<a href="ol.layer.VectorTile.html#setZIndex">setZIndex</a>
</li>
<li data-name="ol.layer.VectorTile#un" class="">
<a href="ol.layer.VectorTile.html#un">un</a>
</li>
<li data-name="ol.layer.VectorTile#unByKey" class="">
<a href="ol.layer.VectorTile.html#unByKey">unByKey</a>
</li>
<li data-name="ol.layer.VectorTile#unset" class="">
<a href="ol.layer.VectorTile.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:change:extent" class="unstable">
change:extent
</li>
<li data-name="ol.ObjectEvent#event:change:maxResolution" class="unstable">
change:maxResolution
</li>
<li data-name="ol.ObjectEvent#event:change:minResolution" class="unstable">
change:minResolution
</li>
<li data-name="ol.ObjectEvent#event:change:opacity" class="unstable">
change:opacity
</li>
<li data-name="ol.ObjectEvent#event:change:preload" class="unstable">
change:preload
</li>
<li data-name="ol.ObjectEvent#event:change:source" class="unstable">
change:source
</li>
<li data-name="ol.ObjectEvent#event:change:useInterimTilesOnError" class="unstable">
change:useInterimTilesOnError
</li>
<li data-name="ol.ObjectEvent#event:change:visible" class="unstable">
change:visible
</li>
<li data-name="ol.ObjectEvent#event:change:zIndex" class="unstable">
change:zIndex
</li>
<li data-name="ol.render.Event#event:postcompose" class="unstable">
<a href="ol.render.Event.html#event:postcompose">postcompose</a>
</li>
<li data-name="ol.render.Event#event:precompose" class="unstable">
<a href="ol.render.Event.html#event:precompose">precompose</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.render.Event#event:render" class="unstable">
<a href="ol.render.Event.html#event:render">render</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.tile" class="unstable">
<a href="ol.loadingstrategy.html#.tile">tile</a>
</li>
</ul>
<ul class="fires itemMembers">
</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.equivalent" class="unstable">
<a href="ol.proj.html#.equivalent">equivalent</a>
</li>
<li data-name="ol.proj.fromLonLat" class="">
<a href="ol.proj.html#.fromLonLat">fromLonLat</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.setProj4" class="unstable">
<a href="ol.proj.html#.setProj4">setProj4</a>
</li>
<li data-name="ol.proj.toLonLat" class="">
<a href="ol.proj.html#.toLonLat">toLonLat</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>
<ul class="fires itemMembers">
</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#getPointResolution" class="unstable">
<a href="ol.proj.Projection.html#getPointResolution">getPointResolution</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#setGetPointResolution" class="unstable">
<a href="ol.proj.Projection.html#setGetPointResolution">setGetPointResolution</a>
</li>
<li data-name="ol.proj.Projection#setGlobal" class="">
<a href="ol.proj.Projection.html#setGlobal">setGlobal</a>
</li>
<li data-name="ol.proj.Projection#setWorldExtent" class="unstable">
<a href="ol.proj.Projection.html#setWorldExtent">setWorldExtent</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.raster">
<span class="title">
<a href="ol.raster.html">ol.raster</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.raster.Operation" class="unstable">
<a href="ol.raster.html#.Operation">Operation</a>
</li>
<li data-name="ol.raster.OperationType" class="unstable">
<a href="ol.raster.html#.OperationType">OperationType</a>
</li>
<li data-name="ol.raster.Pixel" class="unstable">
<a href="ol.raster.html#.Pixel">Pixel</a>
</li>
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</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">
<span class="subtitle">Methods</span>
<li data-name="ol.render.toContext" class="unstable">
<a href="ol.render.html#.toContext">toContext</a>
</li>
</ul>
<ul class="fires 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#target"><a href="ol.render.Event.html#target">target</a></li>
<li data-name="ol.render.Event#type"><a href="ol.render.Event.html#type">type</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">
<span class="subtitle">Methods</span>
<li data-name="ol.render.Event#preventDefault" class="">
<a href="ol.render.Event.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.render.Event#stopPropagation" class="">
<a href="ol.render.Event.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.render.Feature">
<span class="title">
<a href="ol.render.Feature.html">ol.render.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.render.Feature#get" class="unstable">
<a href="ol.render.Feature.html#get">get</a>
</li>
<li data-name="ol.render.Feature#getExtent" class="unstable">
<a href="ol.render.Feature.html#getExtent">getExtent</a>
</li>
<li data-name="ol.render.Feature#getGeometry" class="unstable">
<a href="ol.render.Feature.html#getGeometry">getGeometry</a>
</li>
<li data-name="ol.render.Feature#getProperties" class="unstable">
<a href="ol.render.Feature.html#getProperties">getProperties</a>
</li>
<li data-name="ol.render.Feature#getType" class="unstable">
<a href="ol.render.Feature.html#getType">getType</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.render.VectorContext">
<span class="title">
<a href="ol.render.VectorContext.html">ol.render.VectorContext</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires 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>
<ul class="fires 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#drawCircle" class="unstable">
<a href="ol.render.canvas.Immediate.html#drawCircle">drawCircle</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#drawGeometry" class="unstable">
<a href="ol.render.canvas.Immediate.html#drawGeometry">drawGeometry</a>
</li>
<li data-name="ol.render.canvas.Immediate#setStyle" class="unstable">
<a href="ol.render.canvas.Immediate.html#setStyle">setStyle</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.render.webgl.Immediate">
<span class="title">
<a href="ol.render.webgl.Immediate.html">ol.render.webgl.Immediate</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.render.webgl.Immediate#drawFeature"><a href="ol.render.webgl.Immediate.html#drawFeature">drawFeature</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.render.webgl.Immediate#drawGeometry" class="unstable">
<a href="ol.render.webgl.Immediate.html#drawGeometry">drawGeometry</a>
</li>
<li data-name="ol.render.webgl.Immediate#setStyle" class="unstable">
<a href="ol.render.webgl.Immediate.html#setStyle">setStyle</a>
</li>
</ul>
<ul class="fires itemMembers">
</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>
<ul class="fires 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#changed" class="unstable">
<a href="ol.source.BingMaps.html#changed">changed</a>
</li>
<li data-name="ol.source.BingMaps#dispatchEvent" class="unstable">
<a href="ol.source.BingMaps.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.BingMaps#get" class="">
<a href="ol.source.BingMaps.html#get">get</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#getKeys" class="">
<a href="ol.source.BingMaps.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.source.BingMaps.html#getProperties">getProperties</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#getUrls" class="unstable">
<a href="ol.source.BingMaps.html#getUrls">getUrls</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#refresh" class="unstable">
<a href="ol.source.BingMaps.html#refresh">refresh</a>
</li>
<li data-name="ol.source.BingMaps#set" class="">
<a href="ol.source.BingMaps.html#set">set</a>
</li>
<li data-name="ol.source.BingMaps#setAttributions" class="unstable">
<a href="ol.source.BingMaps.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.BingMaps#setProperties" class="">
<a href="ol.source.BingMaps.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.BingMaps#setRenderReprojectionEdges" class="unstable">
<a href="ol.source.BingMaps.html#setRenderReprojectionEdges">setRenderReprojectionEdges</a>
</li>
<li data-name="ol.source.BingMaps#setTileGridForProjection" class="unstable">
<a href="ol.source.BingMaps.html#setTileGridForProjection">setTileGridForProjection</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#setUrl" class="">
<a href="ol.source.BingMaps.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.BingMaps#setUrls" class="">
<a href="ol.source.BingMaps.html#setUrls">setUrls</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>
<li data-name="ol.source.BingMaps#unset" class="">
<a href="ol.source.BingMaps.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.CartoDB">
<span class="title">
<a href="ol.source.CartoDB.html">ol.source.CartoDB</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.CartoDB#changed" class="unstable">
<a href="ol.source.CartoDB.html#changed">changed</a>
</li>
<li data-name="ol.source.CartoDB#dispatchEvent" class="unstable">
<a href="ol.source.CartoDB.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.CartoDB#get" class="">
<a href="ol.source.CartoDB.html#get">get</a>
</li>
<li data-name="ol.source.CartoDB#getAttributions" class="">
<a href="ol.source.CartoDB.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.CartoDB#getConfig" class="unstable">
<a href="ol.source.CartoDB.html#getConfig">getConfig</a>
</li>
<li data-name="ol.source.CartoDB#getKeys" class="">
<a href="ol.source.CartoDB.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.CartoDB#getLogo" class="">
<a href="ol.source.CartoDB.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.CartoDB#getProjection" class="unstable">
<a href="ol.source.CartoDB.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.CartoDB#getProperties" class="">
<a href="ol.source.CartoDB.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.CartoDB#getRevision" class="unstable">
<a href="ol.source.CartoDB.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.CartoDB#getState" class="unstable">
<a href="ol.source.CartoDB.html#getState">getState</a>
</li>
<li data-name="ol.source.CartoDB#getTileGrid" class="">
<a href="ol.source.CartoDB.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.CartoDB#getTileLoadFunction" class="unstable">
<a href="ol.source.CartoDB.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.CartoDB#getTileUrlFunction" class="unstable">
<a href="ol.source.CartoDB.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.CartoDB#getUrls" class="unstable">
<a href="ol.source.CartoDB.html#getUrls">getUrls</a>
</li>
<li data-name="ol.source.CartoDB#on" class="">
<a href="ol.source.CartoDB.html#on">on</a>
</li>
<li data-name="ol.source.CartoDB#once" class="">
<a href="ol.source.CartoDB.html#once">once</a>
</li>
<li data-name="ol.source.CartoDB#refresh" class="unstable">
<a href="ol.source.CartoDB.html#refresh">refresh</a>
</li>
<li data-name="ol.source.CartoDB#set" class="">
<a href="ol.source.CartoDB.html#set">set</a>
</li>
<li data-name="ol.source.CartoDB#setAttributions" class="unstable">
<a href="ol.source.CartoDB.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.CartoDB#setProperties" class="">
<a href="ol.source.CartoDB.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.CartoDB#setRenderReprojectionEdges" class="unstable">
<a href="ol.source.CartoDB.html#setRenderReprojectionEdges">setRenderReprojectionEdges</a>
</li>
<li data-name="ol.source.CartoDB#setTileGridForProjection" class="unstable">
<a href="ol.source.CartoDB.html#setTileGridForProjection">setTileGridForProjection</a>
</li>
<li data-name="ol.source.CartoDB#setTileLoadFunction" class="unstable">
<a href="ol.source.CartoDB.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.CartoDB#setTileUrlFunction" class="unstable">
<a href="ol.source.CartoDB.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.CartoDB#setUrl" class="">
<a href="ol.source.CartoDB.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.CartoDB#setUrls" class="">
<a href="ol.source.CartoDB.html#setUrls">setUrls</a>
</li>
<li data-name="ol.source.CartoDB#un" class="">
<a href="ol.source.CartoDB.html#un">un</a>
</li>
<li data-name="ol.source.CartoDB#unByKey" class="">
<a href="ol.source.CartoDB.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.CartoDB#unset" class="">
<a href="ol.source.CartoDB.html#unset">unset</a>
</li>
<li data-name="ol.source.CartoDB#updateConfig" class="unstable">
<a href="ol.source.CartoDB.html#updateConfig">updateConfig</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</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#changed" class="unstable">
<a href="ol.source.Cluster.html#changed">changed</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#dispatchEvent" class="unstable">
<a href="ol.source.Cluster.html#dispatchEvent">dispatchEvent</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#forEachFeatureIntersectingExtent" class="unstable">
<a href="ol.source.Cluster.html#forEachFeatureIntersectingExtent">forEachFeatureIntersectingExtent</a>
</li>
<li data-name="ol.source.Cluster#get" class="">
<a href="ol.source.Cluster.html#get">get</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#getFeaturesCollection" class="unstable">
<a href="ol.source.Cluster.html#getFeaturesCollection">getFeaturesCollection</a>
</li>
<li data-name="ol.source.Cluster#getFeaturesInExtent" class="unstable">
<a href="ol.source.Cluster.html#getFeaturesInExtent">getFeaturesInExtent</a>
</li>
<li data-name="ol.source.Cluster#getFormat" class="unstable">
<a href="ol.source.Cluster.html#getFormat">getFormat</a>
</li>
<li data-name="ol.source.Cluster#getKeys" class="">
<a href="ol.source.Cluster.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.source.Cluster.html#getProperties">getProperties</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#getSource" class="unstable">
<a href="ol.source.Cluster.html#getSource">getSource</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#getUrl" class="unstable">
<a href="ol.source.Cluster.html#getUrl">getUrl</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#refresh" class="unstable">
<a href="ol.source.Cluster.html#refresh">refresh</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#set" class="">
<a href="ol.source.Cluster.html#set">set</a>
</li>
<li data-name="ol.source.Cluster#setAttributions" class="unstable">
<a href="ol.source.Cluster.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.Cluster#setProperties" class="">
<a href="ol.source.Cluster.html#setProperties">setProperties</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>
<li data-name="ol.source.Cluster#unset" class="">
<a href="ol.source.Cluster.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.source.VectorEvent#event:addfeature" class="">
<a href="ol.source.VectorEvent.html#event:addfeature">addfeature</a>
</li>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.source.VectorEvent#event:changefeature" class="unstable">
<a href="ol.source.VectorEvent.html#event:changefeature">changefeature</a>
</li>
<li data-name="ol.source.VectorEvent#event:clear" class="unstable">
<a href="ol.source.VectorEvent.html#event:clear">clear</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.VectorEvent#event:removefeature" class="">
<a href="ol.source.VectorEvent.html#event:removefeature">removefeature</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#changed" class="unstable">
<a href="ol.source.Image.html#changed">changed</a>
</li>
<li data-name="ol.source.Image#dispatchEvent" class="unstable">
<a href="ol.source.Image.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.Image#get" class="">
<a href="ol.source.Image.html#get">get</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#getKeys" class="">
<a href="ol.source.Image.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.source.Image.html#getProperties">getProperties</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#refresh" class="unstable">
<a href="ol.source.Image.html#refresh">refresh</a>
</li>
<li data-name="ol.source.Image#set" class="">
<a href="ol.source.Image.html#set">set</a>
</li>
<li data-name="ol.source.Image#setAttributions" class="unstable">
<a href="ol.source.Image.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.Image#setProperties" class="">
<a href="ol.source.Image.html#setProperties">setProperties</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>
<li data-name="ol.source.Image#unset" class="">
<a href="ol.source.Image.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.source.ImageCanvas.html#changed">changed</a>
</li>
<li data-name="ol.source.ImageCanvas#dispatchEvent" class="unstable">
<a href="ol.source.ImageCanvas.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.ImageCanvas#get" class="">
<a href="ol.source.ImageCanvas.html#get">get</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#getKeys" class="">
<a href="ol.source.ImageCanvas.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.source.ImageCanvas.html#getProperties">getProperties</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#refresh" class="unstable">
<a href="ol.source.ImageCanvas.html#refresh">refresh</a>
</li>
<li data-name="ol.source.ImageCanvas#set" class="">
<a href="ol.source.ImageCanvas.html#set">set</a>
</li>
<li data-name="ol.source.ImageCanvas#setAttributions" class="unstable">
<a href="ol.source.ImageCanvas.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.ImageCanvas#setProperties" class="">
<a href="ol.source.ImageCanvas.html#setProperties">setProperties</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>
<li data-name="ol.source.ImageCanvas#unset" class="">
<a href="ol.source.ImageCanvas.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.ImageEvent">
<span class="title">
<a href="ol.source.ImageEvent.html">ol.source.ImageEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.source.ImageEvent#image"><a href="ol.source.ImageEvent.html#image">image</a></li>
<li data-name="ol.source.ImageEvent#target"><a href="ol.source.ImageEvent.html#target">target</a></li>
<li data-name="ol.source.ImageEvent#type"><a href="ol.source.ImageEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.ImageEvent#preventDefault" class="">
<a href="ol.source.ImageEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.source.ImageEvent#stopPropagation" class="">
<a href="ol.source.ImageEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</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#changed" class="unstable">
<a href="ol.source.ImageMapGuide.html#changed">changed</a>
</li>
<li data-name="ol.source.ImageMapGuide#dispatchEvent" class="unstable">
<a href="ol.source.ImageMapGuide.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.ImageMapGuide#get" class="">
<a href="ol.source.ImageMapGuide.html#get">get</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#getImageLoadFunction" class="unstable">
<a href="ol.source.ImageMapGuide.html#getImageLoadFunction">getImageLoadFunction</a>
</li>
<li data-name="ol.source.ImageMapGuide#getKeys" class="">
<a href="ol.source.ImageMapGuide.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.source.ImageMapGuide.html#getProperties">getProperties</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#refresh" class="unstable">
<a href="ol.source.ImageMapGuide.html#refresh">refresh</a>
</li>
<li data-name="ol.source.ImageMapGuide#set" class="">
<a href="ol.source.ImageMapGuide.html#set">set</a>
</li>
<li data-name="ol.source.ImageMapGuide#setAttributions" class="unstable">
<a href="ol.source.ImageMapGuide.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.ImageMapGuide#setImageLoadFunction" class="unstable">
<a href="ol.source.ImageMapGuide.html#setImageLoadFunction">setImageLoadFunction</a>
</li>
<li data-name="ol.source.ImageMapGuide#setProperties" class="">
<a href="ol.source.ImageMapGuide.html#setProperties">setProperties</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#unset" class="">
<a href="ol.source.ImageMapGuide.html#unset">unset</a>
</li>
<li data-name="ol.source.ImageMapGuide#updateParams" class="">
<a href="ol.source.ImageMapGuide.html#updateParams">updateParams</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.source.ImageEvent#event:imageloadend" class="unstable">
<a href="ol.source.ImageEvent.html#event:imageloadend">imageloadend</a>
</li>
<li data-name="ol.source.ImageEvent#event:imageloaderror" class="unstable">
<a href="ol.source.ImageEvent.html#event:imageloaderror">imageloaderror</a>
</li>
<li data-name="ol.source.ImageEvent#event:imageloadstart" class="unstable">
<a href="ol.source.ImageEvent.html#event:imageloadstart">imageloadstart</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.source.ImageStatic.html#changed">changed</a>
</li>
<li data-name="ol.source.ImageStatic#dispatchEvent" class="unstable">
<a href="ol.source.ImageStatic.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.ImageStatic#get" class="">
<a href="ol.source.ImageStatic.html#get">get</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#getKeys" class="">
<a href="ol.source.ImageStatic.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.source.ImageStatic.html#getProperties">getProperties</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#refresh" class="unstable">
<a href="ol.source.ImageStatic.html#refresh">refresh</a>
</li>
<li data-name="ol.source.ImageStatic#set" class="">
<a href="ol.source.ImageStatic.html#set">set</a>
</li>
<li data-name="ol.source.ImageStatic#setAttributions" class="unstable">
<a href="ol.source.ImageStatic.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.ImageStatic#setProperties" class="">
<a href="ol.source.ImageStatic.html#setProperties">setProperties</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>
<li data-name="ol.source.ImageStatic#unset" class="">
<a href="ol.source.ImageStatic.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.source.ImageVector.html#changed">changed</a>
</li>
<li data-name="ol.source.ImageVector#dispatchEvent" class="unstable">
<a href="ol.source.ImageVector.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.ImageVector#get" class="">
<a href="ol.source.ImageVector.html#get">get</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#getKeys" class="">
<a href="ol.source.ImageVector.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.source.ImageVector.html#getProperties">getProperties</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#getStyle" class="">
<a href="ol.source.ImageVector.html#getStyle">getStyle</a>
</li>
<li data-name="ol.source.ImageVector#getStyleFunction" class="">
<a href="ol.source.ImageVector.html#getStyleFunction">getStyleFunction</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#refresh" class="unstable">
<a href="ol.source.ImageVector.html#refresh">refresh</a>
</li>
<li data-name="ol.source.ImageVector#set" class="">
<a href="ol.source.ImageVector.html#set">set</a>
</li>
<li data-name="ol.source.ImageVector#setAttributions" class="unstable">
<a href="ol.source.ImageVector.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.ImageVector#setProperties" class="">
<a href="ol.source.ImageVector.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.ImageVector#setStyle" class="">
<a href="ol.source.ImageVector.html#setStyle">setStyle</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>
<li data-name="ol.source.ImageVector#unset" class="">
<a href="ol.source.ImageVector.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.source.ImageWMS.html#changed">changed</a>
</li>
<li data-name="ol.source.ImageWMS#dispatchEvent" class="unstable">
<a href="ol.source.ImageWMS.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.ImageWMS#get" class="">
<a href="ol.source.ImageWMS.html#get">get</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#getImageLoadFunction" class="unstable">
<a href="ol.source.ImageWMS.html#getImageLoadFunction">getImageLoadFunction</a>
</li>
<li data-name="ol.source.ImageWMS#getKeys" class="">
<a href="ol.source.ImageWMS.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.source.ImageWMS.html#getProperties">getProperties</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#refresh" class="unstable">
<a href="ol.source.ImageWMS.html#refresh">refresh</a>
</li>
<li data-name="ol.source.ImageWMS#set" class="">
<a href="ol.source.ImageWMS.html#set">set</a>
</li>
<li data-name="ol.source.ImageWMS#setAttributions" class="unstable">
<a href="ol.source.ImageWMS.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.ImageWMS#setImageLoadFunction" class="unstable">
<a href="ol.source.ImageWMS.html#setImageLoadFunction">setImageLoadFunction</a>
</li>
<li data-name="ol.source.ImageWMS#setProperties" class="">
<a href="ol.source.ImageWMS.html#setProperties">setProperties</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#unset" class="">
<a href="ol.source.ImageWMS.html#unset">unset</a>
</li>
<li data-name="ol.source.ImageWMS#updateParams" class="">
<a href="ol.source.ImageWMS.html#updateParams">updateParams</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.source.ImageEvent#event:imageloadend" class="unstable">
<a href="ol.source.ImageEvent.html#event:imageloadend">imageloadend</a>
</li>
<li data-name="ol.source.ImageEvent#event:imageloaderror" class="unstable">
<a href="ol.source.ImageEvent.html#event:imageloaderror">imageloaderror</a>
</li>
<li data-name="ol.source.ImageEvent#event:imageloadstart" class="unstable">
<a href="ol.source.ImageEvent.html#event:imageloadstart">imageloadstart</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.source.MapQuest.html#changed">changed</a>
</li>
<li data-name="ol.source.MapQuest#dispatchEvent" class="unstable">
<a href="ol.source.MapQuest.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.MapQuest#get" class="">
<a href="ol.source.MapQuest.html#get">get</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#getKeys" class="">
<a href="ol.source.MapQuest.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.MapQuest#getLayer" class="unstable">
<a href="ol.source.MapQuest.html#getLayer">getLayer</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#getProperties" class="">
<a href="ol.source.MapQuest.html#getProperties">getProperties</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#getUrls" class="unstable">
<a href="ol.source.MapQuest.html#getUrls">getUrls</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#refresh" class="unstable">
<a href="ol.source.MapQuest.html#refresh">refresh</a>
</li>
<li data-name="ol.source.MapQuest#set" class="">
<a href="ol.source.MapQuest.html#set">set</a>
</li>
<li data-name="ol.source.MapQuest#setAttributions" class="unstable">
<a href="ol.source.MapQuest.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.MapQuest#setProperties" class="">
<a href="ol.source.MapQuest.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.MapQuest#setRenderReprojectionEdges" class="unstable">
<a href="ol.source.MapQuest.html#setRenderReprojectionEdges">setRenderReprojectionEdges</a>
</li>
<li data-name="ol.source.MapQuest#setTileGridForProjection" class="unstable">
<a href="ol.source.MapQuest.html#setTileGridForProjection">setTileGridForProjection</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#setUrls" class="">
<a href="ol.source.MapQuest.html#setUrls">setUrls</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>
<li data-name="ol.source.MapQuest#unset" class="">
<a href="ol.source.MapQuest.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</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.ATTRIBUTION"><a href="ol.source.OSM.html#.ATTRIBUTION">ATTRIBUTION</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.OSM#changed" class="unstable">
<a href="ol.source.OSM.html#changed">changed</a>
</li>
<li data-name="ol.source.OSM#dispatchEvent" class="unstable">
<a href="ol.source.OSM.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.OSM#get" class="">
<a href="ol.source.OSM.html#get">get</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#getKeys" class="">
<a href="ol.source.OSM.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.source.OSM.html#getProperties">getProperties</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#getUrls" class="unstable">
<a href="ol.source.OSM.html#getUrls">getUrls</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#refresh" class="unstable">
<a href="ol.source.OSM.html#refresh">refresh</a>
</li>
<li data-name="ol.source.OSM#set" class="">
<a href="ol.source.OSM.html#set">set</a>
</li>
<li data-name="ol.source.OSM#setAttributions" class="unstable">
<a href="ol.source.OSM.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.OSM#setProperties" class="">
<a href="ol.source.OSM.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.OSM#setRenderReprojectionEdges" class="unstable">
<a href="ol.source.OSM.html#setRenderReprojectionEdges">setRenderReprojectionEdges</a>
</li>
<li data-name="ol.source.OSM#setTileGridForProjection" class="unstable">
<a href="ol.source.OSM.html#setTileGridForProjection">setTileGridForProjection</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#setUrls" class="">
<a href="ol.source.OSM.html#setUrls">setUrls</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>
<li data-name="ol.source.OSM#unset" class="">
<a href="ol.source.OSM.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.Raster">
<span class="title">
<a href="ol.source.Raster.html">ol.source.Raster</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.Raster#changed" class="unstable">
<a href="ol.source.Raster.html#changed">changed</a>
</li>
<li data-name="ol.source.Raster#dispatchEvent" class="unstable">
<a href="ol.source.Raster.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.Raster#get" class="">
<a href="ol.source.Raster.html#get">get</a>
</li>
<li data-name="ol.source.Raster#getAttributions" class="">
<a href="ol.source.Raster.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.Raster#getKeys" class="">
<a href="ol.source.Raster.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.Raster#getLogo" class="">
<a href="ol.source.Raster.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.Raster#getProjection" class="unstable">
<a href="ol.source.Raster.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.Raster#getProperties" class="">
<a href="ol.source.Raster.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.Raster#getRevision" class="unstable">
<a href="ol.source.Raster.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.Raster#getState" class="unstable">
<a href="ol.source.Raster.html#getState">getState</a>
</li>
<li data-name="ol.source.Raster#on" class="">
<a href="ol.source.Raster.html#on">on</a>
</li>
<li data-name="ol.source.Raster#once" class="">
<a href="ol.source.Raster.html#once">once</a>
</li>
<li data-name="ol.source.Raster#refresh" class="unstable">
<a href="ol.source.Raster.html#refresh">refresh</a>
</li>
<li data-name="ol.source.Raster#set" class="">
<a href="ol.source.Raster.html#set">set</a>
</li>
<li data-name="ol.source.Raster#setAttributions" class="unstable">
<a href="ol.source.Raster.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.Raster#setOperation" class="unstable">
<a href="ol.source.Raster.html#setOperation">setOperation</a>
</li>
<li data-name="ol.source.Raster#setProperties" class="">
<a href="ol.source.Raster.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.Raster#un" class="">
<a href="ol.source.Raster.html#un">un</a>
</li>
<li data-name="ol.source.Raster#unByKey" class="">
<a href="ol.source.Raster.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.Raster#unset" class="">
<a href="ol.source.Raster.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.source.RasterEvent#event:afteroperations" class="unstable">
<a href="ol.source.RasterEvent.html#event:afteroperations">afteroperations</a>
</li>
<li data-name="ol.source.RasterEvent#event:beforeoperations" class="unstable">
<a href="ol.source.RasterEvent.html#event:beforeoperations">beforeoperations</a>
</li>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.RasterEvent">
<span class="title">
<a href="ol.source.RasterEvent.html">ol.source.RasterEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.source.RasterEvent#data"><a href="ol.source.RasterEvent.html#data">data</a></li>
<li data-name="ol.source.RasterEvent#extent"><a href="ol.source.RasterEvent.html#extent">extent</a></li>
<li data-name="ol.source.RasterEvent#resolution"><a href="ol.source.RasterEvent.html#resolution">resolution</a></li>
<li data-name="ol.source.RasterEvent#target"><a href="ol.source.RasterEvent.html#target">target</a></li>
<li data-name="ol.source.RasterEvent#type"><a href="ol.source.RasterEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.RasterEvent#preventDefault" class="">
<a href="ol.source.RasterEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.source.RasterEvent#stopPropagation" class="">
<a href="ol.source.RasterEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</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#changed" class="unstable">
<a href="ol.source.Source.html#changed">changed</a>
</li>
<li data-name="ol.source.Source#dispatchEvent" class="unstable">
<a href="ol.source.Source.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.Source#get" class="">
<a href="ol.source.Source.html#get">get</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#getKeys" class="">
<a href="ol.source.Source.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.source.Source.html#getProperties">getProperties</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#refresh" class="unstable">
<a href="ol.source.Source.html#refresh">refresh</a>
</li>
<li data-name="ol.source.Source#set" class="">
<a href="ol.source.Source.html#set">set</a>
</li>
<li data-name="ol.source.Source#setAttributions" class="unstable">
<a href="ol.source.Source.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.Source#setProperties" class="">
<a href="ol.source.Source.html#setProperties">setProperties</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>
<li data-name="ol.source.Source#unset" class="">
<a href="ol.source.Source.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.source.Stamen.html#changed">changed</a>
</li>
<li data-name="ol.source.Stamen#dispatchEvent" class="unstable">
<a href="ol.source.Stamen.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.Stamen#get" class="">
<a href="ol.source.Stamen.html#get">get</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#getKeys" class="">
<a href="ol.source.Stamen.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.source.Stamen.html#getProperties">getProperties</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#getUrls" class="unstable">
<a href="ol.source.Stamen.html#getUrls">getUrls</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#refresh" class="unstable">
<a href="ol.source.Stamen.html#refresh">refresh</a>
</li>
<li data-name="ol.source.Stamen#set" class="">
<a href="ol.source.Stamen.html#set">set</a>
</li>
<li data-name="ol.source.Stamen#setAttributions" class="unstable">
<a href="ol.source.Stamen.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.Stamen#setProperties" class="">
<a href="ol.source.Stamen.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.Stamen#setRenderReprojectionEdges" class="unstable">
<a href="ol.source.Stamen.html#setRenderReprojectionEdges">setRenderReprojectionEdges</a>
</li>
<li data-name="ol.source.Stamen#setTileGridForProjection" class="unstable">
<a href="ol.source.Stamen.html#setTileGridForProjection">setTileGridForProjection</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#setUrls" class="">
<a href="ol.source.Stamen.html#setUrls">setUrls</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>
<li data-name="ol.source.Stamen#unset" class="">
<a href="ol.source.Stamen.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</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#changed" class="unstable">
<a href="ol.source.Tile.html#changed">changed</a>
</li>
<li data-name="ol.source.Tile#dispatchEvent" class="unstable">
<a href="ol.source.Tile.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.Tile#get" class="">
<a href="ol.source.Tile.html#get">get</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#getKeys" class="">
<a href="ol.source.Tile.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.source.Tile.html#getProperties">getProperties</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#refresh" class="unstable">
<a href="ol.source.Tile.html#refresh">refresh</a>
</li>
<li data-name="ol.source.Tile#set" class="">
<a href="ol.source.Tile.html#set">set</a>
</li>
<li data-name="ol.source.Tile#setAttributions" class="unstable">
<a href="ol.source.Tile.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.Tile#setProperties" class="">
<a href="ol.source.Tile.html#setProperties">setProperties</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>
<li data-name="ol.source.Tile#unset" class="">
<a href="ol.source.Tile.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.TileArcGISRest">
<span class="title">
<a href="ol.source.TileArcGISRest.html">ol.source.TileArcGISRest</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.TileArcGISRest#changed" class="unstable">
<a href="ol.source.TileArcGISRest.html#changed">changed</a>
</li>
<li data-name="ol.source.TileArcGISRest#dispatchEvent" class="unstable">
<a href="ol.source.TileArcGISRest.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.TileArcGISRest#get" class="">
<a href="ol.source.TileArcGISRest.html#get">get</a>
</li>
<li data-name="ol.source.TileArcGISRest#getAttributions" class="">
<a href="ol.source.TileArcGISRest.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.TileArcGISRest#getKeys" class="">
<a href="ol.source.TileArcGISRest.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.TileArcGISRest#getLogo" class="">
<a href="ol.source.TileArcGISRest.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.TileArcGISRest#getParams" class="unstable">
<a href="ol.source.TileArcGISRest.html#getParams">getParams</a>
</li>
<li data-name="ol.source.TileArcGISRest#getProjection" class="unstable">
<a href="ol.source.TileArcGISRest.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.TileArcGISRest#getProperties" class="">
<a href="ol.source.TileArcGISRest.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.TileArcGISRest#getRevision" class="unstable">
<a href="ol.source.TileArcGISRest.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.TileArcGISRest#getState" class="unstable">
<a href="ol.source.TileArcGISRest.html#getState">getState</a>
</li>
<li data-name="ol.source.TileArcGISRest#getTileGrid" class="">
<a href="ol.source.TileArcGISRest.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.TileArcGISRest#getTileLoadFunction" class="unstable">
<a href="ol.source.TileArcGISRest.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.TileArcGISRest#getTileUrlFunction" class="unstable">
<a href="ol.source.TileArcGISRest.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.TileArcGISRest#getUrls" class="unstable">
<a href="ol.source.TileArcGISRest.html#getUrls">getUrls</a>
</li>
<li data-name="ol.source.TileArcGISRest#on" class="">
<a href="ol.source.TileArcGISRest.html#on">on</a>
</li>
<li data-name="ol.source.TileArcGISRest#once" class="">
<a href="ol.source.TileArcGISRest.html#once">once</a>
</li>
<li data-name="ol.source.TileArcGISRest#refresh" class="unstable">
<a href="ol.source.TileArcGISRest.html#refresh">refresh</a>
</li>
<li data-name="ol.source.TileArcGISRest#set" class="">
<a href="ol.source.TileArcGISRest.html#set">set</a>
</li>
<li data-name="ol.source.TileArcGISRest#setAttributions" class="unstable">
<a href="ol.source.TileArcGISRest.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.TileArcGISRest#setProperties" class="">
<a href="ol.source.TileArcGISRest.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.TileArcGISRest#setRenderReprojectionEdges" class="unstable">
<a href="ol.source.TileArcGISRest.html#setRenderReprojectionEdges">setRenderReprojectionEdges</a>
</li>
<li data-name="ol.source.TileArcGISRest#setTileGridForProjection" class="unstable">
<a href="ol.source.TileArcGISRest.html#setTileGridForProjection">setTileGridForProjection</a>
</li>
<li data-name="ol.source.TileArcGISRest#setTileLoadFunction" class="unstable">
<a href="ol.source.TileArcGISRest.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.TileArcGISRest#setTileUrlFunction" class="unstable">
<a href="ol.source.TileArcGISRest.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.TileArcGISRest#setUrl" class="">
<a href="ol.source.TileArcGISRest.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.TileArcGISRest#setUrls" class="">
<a href="ol.source.TileArcGISRest.html#setUrls">setUrls</a>
</li>
<li data-name="ol.source.TileArcGISRest#un" class="">
<a href="ol.source.TileArcGISRest.html#un">un</a>
</li>
<li data-name="ol.source.TileArcGISRest#unByKey" class="">
<a href="ol.source.TileArcGISRest.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.TileArcGISRest#unset" class="">
<a href="ol.source.TileArcGISRest.html#unset">unset</a>
</li>
<li data-name="ol.source.TileArcGISRest#updateParams" class="">
<a href="ol.source.TileArcGISRest.html#updateParams">updateParams</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</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#changed" class="unstable">
<a href="ol.source.TileDebug.html#changed">changed</a>
</li>
<li data-name="ol.source.TileDebug#dispatchEvent" class="unstable">
<a href="ol.source.TileDebug.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.TileDebug#get" class="">
<a href="ol.source.TileDebug.html#get">get</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#getKeys" class="">
<a href="ol.source.TileDebug.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.source.TileDebug.html#getProperties">getProperties</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#refresh" class="unstable">
<a href="ol.source.TileDebug.html#refresh">refresh</a>
</li>
<li data-name="ol.source.TileDebug#set" class="">
<a href="ol.source.TileDebug.html#set">set</a>
</li>
<li data-name="ol.source.TileDebug#setAttributions" class="unstable">
<a href="ol.source.TileDebug.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.TileDebug#setProperties" class="">
<a href="ol.source.TileDebug.html#setProperties">setProperties</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>
<li data-name="ol.source.TileDebug#unset" class="">
<a href="ol.source.TileDebug.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.TileEvent">
<span class="title">
<a href="ol.source.TileEvent.html">ol.source.TileEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.source.TileEvent#target"><a href="ol.source.TileEvent.html#target">target</a></li>
<li data-name="ol.source.TileEvent#tile"><a href="ol.source.TileEvent.html#tile">tile</a></li>
<li data-name="ol.source.TileEvent#type"><a href="ol.source.TileEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.TileEvent#preventDefault" class="">
<a href="ol.source.TileEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.source.TileEvent#stopPropagation" class="">
<a href="ol.source.TileEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</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#changed" class="unstable">
<a href="ol.source.TileImage.html#changed">changed</a>
</li>
<li data-name="ol.source.TileImage#dispatchEvent" class="unstable">
<a href="ol.source.TileImage.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.TileImage#get" class="">
<a href="ol.source.TileImage.html#get">get</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#getKeys" class="">
<a href="ol.source.TileImage.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.source.TileImage.html#getProperties">getProperties</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#getUrls" class="unstable">
<a href="ol.source.TileImage.html#getUrls">getUrls</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#refresh" class="unstable">
<a href="ol.source.TileImage.html#refresh">refresh</a>
</li>
<li data-name="ol.source.TileImage#set" class="">
<a href="ol.source.TileImage.html#set">set</a>
</li>
<li data-name="ol.source.TileImage#setAttributions" class="unstable">
<a href="ol.source.TileImage.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.TileImage#setProperties" class="">
<a href="ol.source.TileImage.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.TileImage#setRenderReprojectionEdges" class="unstable">
<a href="ol.source.TileImage.html#setRenderReprojectionEdges">setRenderReprojectionEdges</a>
</li>
<li data-name="ol.source.TileImage#setTileGridForProjection" class="unstable">
<a href="ol.source.TileImage.html#setTileGridForProjection">setTileGridForProjection</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#setUrl" class="">
<a href="ol.source.TileImage.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.TileImage#setUrls" class="">
<a href="ol.source.TileImage.html#setUrls">setUrls</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>
<li data-name="ol.source.TileImage#unset" class="">
<a href="ol.source.TileImage.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</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#changed" class="unstable">
<a href="ol.source.TileJSON.html#changed">changed</a>
</li>
<li data-name="ol.source.TileJSON#dispatchEvent" class="unstable">
<a href="ol.source.TileJSON.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.TileJSON#get" class="">
<a href="ol.source.TileJSON.html#get">get</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#getKeys" class="">
<a href="ol.source.TileJSON.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.source.TileJSON.html#getProperties">getProperties</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#getTileJSON" class="unstable">
<a href="ol.source.TileJSON.html#getTileJSON">getTileJSON</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#getUrls" class="unstable">
<a href="ol.source.TileJSON.html#getUrls">getUrls</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#refresh" class="unstable">
<a href="ol.source.TileJSON.html#refresh">refresh</a>
</li>
<li data-name="ol.source.TileJSON#set" class="">
<a href="ol.source.TileJSON.html#set">set</a>
</li>
<li data-name="ol.source.TileJSON#setAttributions" class="unstable">
<a href="ol.source.TileJSON.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.TileJSON#setProperties" class="">
<a href="ol.source.TileJSON.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.TileJSON#setRenderReprojectionEdges" class="unstable">
<a href="ol.source.TileJSON.html#setRenderReprojectionEdges">setRenderReprojectionEdges</a>
</li>
<li data-name="ol.source.TileJSON#setTileGridForProjection" class="unstable">
<a href="ol.source.TileJSON.html#setTileGridForProjection">setTileGridForProjection</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#setUrl" class="">
<a href="ol.source.TileJSON.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.TileJSON#setUrls" class="">
<a href="ol.source.TileJSON.html#setUrls">setUrls</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>
<li data-name="ol.source.TileJSON#unset" class="">
<a href="ol.source.TileJSON.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.TileUTFGrid">
<span class="title">
<a href="ol.source.TileUTFGrid.html">ol.source.TileUTFGrid</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.TileUTFGrid#changed" class="unstable">
<a href="ol.source.TileUTFGrid.html#changed">changed</a>
</li>
<li data-name="ol.source.TileUTFGrid#dispatchEvent" class="unstable">
<a href="ol.source.TileUTFGrid.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.TileUTFGrid#forDataAtCoordinateAndResolution" class="unstable">
<a href="ol.source.TileUTFGrid.html#forDataAtCoordinateAndResolution">forDataAtCoordinateAndResolution</a>
</li>
<li data-name="ol.source.TileUTFGrid#get" class="">
<a href="ol.source.TileUTFGrid.html#get">get</a>
</li>
<li data-name="ol.source.TileUTFGrid#getAttributions" class="">
<a href="ol.source.TileUTFGrid.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.TileUTFGrid#getKeys" class="">
<a href="ol.source.TileUTFGrid.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.TileUTFGrid#getLogo" class="">
<a href="ol.source.TileUTFGrid.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.TileUTFGrid#getProjection" class="unstable">
<a href="ol.source.TileUTFGrid.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.TileUTFGrid#getProperties" class="">
<a href="ol.source.TileUTFGrid.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.TileUTFGrid#getRevision" class="unstable">
<a href="ol.source.TileUTFGrid.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.TileUTFGrid#getState" class="unstable">
<a href="ol.source.TileUTFGrid.html#getState">getState</a>
</li>
<li data-name="ol.source.TileUTFGrid#getTemplate" class="unstable">
<a href="ol.source.TileUTFGrid.html#getTemplate">getTemplate</a>
</li>
<li data-name="ol.source.TileUTFGrid#getTileGrid" class="">
<a href="ol.source.TileUTFGrid.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.TileUTFGrid#on" class="">
<a href="ol.source.TileUTFGrid.html#on">on</a>
</li>
<li data-name="ol.source.TileUTFGrid#once" class="">
<a href="ol.source.TileUTFGrid.html#once">once</a>
</li>
<li data-name="ol.source.TileUTFGrid#refresh" class="unstable">
<a href="ol.source.TileUTFGrid.html#refresh">refresh</a>
</li>
<li data-name="ol.source.TileUTFGrid#set" class="">
<a href="ol.source.TileUTFGrid.html#set">set</a>
</li>
<li data-name="ol.source.TileUTFGrid#setAttributions" class="unstable">
<a href="ol.source.TileUTFGrid.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.TileUTFGrid#setProperties" class="">
<a href="ol.source.TileUTFGrid.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.TileUTFGrid#un" class="">
<a href="ol.source.TileUTFGrid.html#un">un</a>
</li>
<li data-name="ol.source.TileUTFGrid#unByKey" class="">
<a href="ol.source.TileUTFGrid.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.TileUTFGrid#unset" class="">
<a href="ol.source.TileUTFGrid.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</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#changed" class="unstable">
<a href="ol.source.TileWMS.html#changed">changed</a>
</li>
<li data-name="ol.source.TileWMS#dispatchEvent" class="unstable">
<a href="ol.source.TileWMS.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.TileWMS#get" class="">
<a href="ol.source.TileWMS.html#get">get</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#getKeys" class="">
<a href="ol.source.TileWMS.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.source.TileWMS.html#getProperties">getProperties</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="unstable">
<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#refresh" class="unstable">
<a href="ol.source.TileWMS.html#refresh">refresh</a>
</li>
<li data-name="ol.source.TileWMS#set" class="">
<a href="ol.source.TileWMS.html#set">set</a>
</li>
<li data-name="ol.source.TileWMS#setAttributions" class="unstable">
<a href="ol.source.TileWMS.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.TileWMS#setProperties" class="">
<a href="ol.source.TileWMS.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.TileWMS#setRenderReprojectionEdges" class="unstable">
<a href="ol.source.TileWMS.html#setRenderReprojectionEdges">setRenderReprojectionEdges</a>
</li>
<li data-name="ol.source.TileWMS#setTileGridForProjection" class="unstable">
<a href="ol.source.TileWMS.html#setTileGridForProjection">setTileGridForProjection</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#unset" class="">
<a href="ol.source.TileWMS.html#unset">unset</a>
</li>
<li data-name="ol.source.TileWMS#updateParams" class="">
<a href="ol.source.TileWMS.html#updateParams">updateParams</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.UrlTile">
<span class="title">
<a href="ol.source.UrlTile.html">ol.source.UrlTile</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.UrlTile#changed" class="unstable">
<a href="ol.source.UrlTile.html#changed">changed</a>
</li>
<li data-name="ol.source.UrlTile#dispatchEvent" class="unstable">
<a href="ol.source.UrlTile.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.UrlTile#get" class="">
<a href="ol.source.UrlTile.html#get">get</a>
</li>
<li data-name="ol.source.UrlTile#getAttributions" class="">
<a href="ol.source.UrlTile.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.UrlTile#getKeys" class="">
<a href="ol.source.UrlTile.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.UrlTile#getLogo" class="">
<a href="ol.source.UrlTile.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.UrlTile#getProjection" class="unstable">
<a href="ol.source.UrlTile.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.UrlTile#getProperties" class="">
<a href="ol.source.UrlTile.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.UrlTile#getRevision" class="unstable">
<a href="ol.source.UrlTile.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.UrlTile#getState" class="unstable">
<a href="ol.source.UrlTile.html#getState">getState</a>
</li>
<li data-name="ol.source.UrlTile#getTileGrid" class="">
<a href="ol.source.UrlTile.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.UrlTile#getTileLoadFunction" class="unstable">
<a href="ol.source.UrlTile.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.UrlTile#getTileUrlFunction" class="unstable">
<a href="ol.source.UrlTile.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.UrlTile#getUrls" class="unstable">
<a href="ol.source.UrlTile.html#getUrls">getUrls</a>
</li>
<li data-name="ol.source.UrlTile#on" class="">
<a href="ol.source.UrlTile.html#on">on</a>
</li>
<li data-name="ol.source.UrlTile#once" class="">
<a href="ol.source.UrlTile.html#once">once</a>
</li>
<li data-name="ol.source.UrlTile#refresh" class="unstable">
<a href="ol.source.UrlTile.html#refresh">refresh</a>
</li>
<li data-name="ol.source.UrlTile#set" class="">
<a href="ol.source.UrlTile.html#set">set</a>
</li>
<li data-name="ol.source.UrlTile#setAttributions" class="unstable">
<a href="ol.source.UrlTile.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.UrlTile#setProperties" class="">
<a href="ol.source.UrlTile.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.UrlTile#setTileLoadFunction" class="unstable">
<a href="ol.source.UrlTile.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.UrlTile#setTileUrlFunction" class="unstable">
<a href="ol.source.UrlTile.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.UrlTile#setUrl" class="">
<a href="ol.source.UrlTile.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.UrlTile#setUrls" class="">
<a href="ol.source.UrlTile.html#setUrls">setUrls</a>
</li>
<li data-name="ol.source.UrlTile#un" class="">
<a href="ol.source.UrlTile.html#un">un</a>
</li>
<li data-name="ol.source.UrlTile#unByKey" class="">
<a href="ol.source.UrlTile.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.UrlTile#unset" class="">
<a href="ol.source.UrlTile.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</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#changed" class="unstable">
<a href="ol.source.Vector.html#changed">changed</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#dispatchEvent" class="unstable">
<a href="ol.source.Vector.html#dispatchEvent">dispatchEvent</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#forEachFeatureIntersectingExtent" class="unstable">
<a href="ol.source.Vector.html#forEachFeatureIntersectingExtent">forEachFeatureIntersectingExtent</a>
</li>
<li data-name="ol.source.Vector#get" class="">
<a href="ol.source.Vector.html#get">get</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#getFeaturesCollection" class="unstable">
<a href="ol.source.Vector.html#getFeaturesCollection">getFeaturesCollection</a>
</li>
<li data-name="ol.source.Vector#getFeaturesInExtent" class="unstable">
<a href="ol.source.Vector.html#getFeaturesInExtent">getFeaturesInExtent</a>
</li>
<li data-name="ol.source.Vector#getFormat" class="unstable">
<a href="ol.source.Vector.html#getFormat">getFormat</a>
</li>
<li data-name="ol.source.Vector#getKeys" class="">
<a href="ol.source.Vector.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.source.Vector.html#getProperties">getProperties</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#getUrl" class="unstable">
<a href="ol.source.Vector.html#getUrl">getUrl</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#refresh" class="unstable">
<a href="ol.source.Vector.html#refresh">refresh</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#set" class="">
<a href="ol.source.Vector.html#set">set</a>
</li>
<li data-name="ol.source.Vector#setAttributions" class="unstable">
<a href="ol.source.Vector.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.Vector#setProperties" class="">
<a href="ol.source.Vector.html#setProperties">setProperties</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>
<li data-name="ol.source.Vector#unset" class="">
<a href="ol.source.Vector.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.source.VectorEvent#event:addfeature" class="">
<a href="ol.source.VectorEvent.html#event:addfeature">addfeature</a>
</li>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.source.VectorEvent#event:changefeature" class="unstable">
<a href="ol.source.VectorEvent.html#event:changefeature">changefeature</a>
</li>
<li data-name="ol.source.VectorEvent#event:clear" class="unstable">
<a href="ol.source.VectorEvent.html#event:clear">clear</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.VectorEvent#event:removefeature" class="">
<a href="ol.source.VectorEvent.html#event:removefeature">removefeature</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>
<li data-name="ol.source.VectorEvent#target"><a href="ol.source.VectorEvent.html#target">target</a></li>
<li data-name="ol.source.VectorEvent#type"><a href="ol.source.VectorEvent.html#type">type</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.VectorEvent#preventDefault" class="">
<a href="ol.source.VectorEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.source.VectorEvent#stopPropagation" class="">
<a href="ol.source.VectorEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.source.VectorTile">
<span class="title">
<a href="ol.source.VectorTile.html">ol.source.VectorTile</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.VectorTile#changed" class="unstable">
<a href="ol.source.VectorTile.html#changed">changed</a>
</li>
<li data-name="ol.source.VectorTile#dispatchEvent" class="unstable">
<a href="ol.source.VectorTile.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.VectorTile#get" class="">
<a href="ol.source.VectorTile.html#get">get</a>
</li>
<li data-name="ol.source.VectorTile#getAttributions" class="">
<a href="ol.source.VectorTile.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.VectorTile#getKeys" class="">
<a href="ol.source.VectorTile.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.VectorTile#getLogo" class="">
<a href="ol.source.VectorTile.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.VectorTile#getProjection" class="unstable">
<a href="ol.source.VectorTile.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.VectorTile#getProperties" class="">
<a href="ol.source.VectorTile.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.VectorTile#getRevision" class="unstable">
<a href="ol.source.VectorTile.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.VectorTile#getState" class="unstable">
<a href="ol.source.VectorTile.html#getState">getState</a>
</li>
<li data-name="ol.source.VectorTile#getTileGrid" class="">
<a href="ol.source.VectorTile.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.VectorTile#getTileLoadFunction" class="unstable">
<a href="ol.source.VectorTile.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.VectorTile#getTileUrlFunction" class="unstable">
<a href="ol.source.VectorTile.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.VectorTile#getUrls" class="unstable">
<a href="ol.source.VectorTile.html#getUrls">getUrls</a>
</li>
<li data-name="ol.source.VectorTile#on" class="">
<a href="ol.source.VectorTile.html#on">on</a>
</li>
<li data-name="ol.source.VectorTile#once" class="">
<a href="ol.source.VectorTile.html#once">once</a>
</li>
<li data-name="ol.source.VectorTile#refresh" class="unstable">
<a href="ol.source.VectorTile.html#refresh">refresh</a>
</li>
<li data-name="ol.source.VectorTile#set" class="">
<a href="ol.source.VectorTile.html#set">set</a>
</li>
<li data-name="ol.source.VectorTile#setAttributions" class="unstable">
<a href="ol.source.VectorTile.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.VectorTile#setProperties" class="">
<a href="ol.source.VectorTile.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.VectorTile#setTileLoadFunction" class="unstable">
<a href="ol.source.VectorTile.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.VectorTile#setTileUrlFunction" class="unstable">
<a href="ol.source.VectorTile.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.VectorTile#setUrl" class="">
<a href="ol.source.VectorTile.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.VectorTile#setUrls" class="">
<a href="ol.source.VectorTile.html#setUrls">setUrls</a>
</li>
<li data-name="ol.source.VectorTile#un" class="">
<a href="ol.source.VectorTile.html#un">un</a>
</li>
<li data-name="ol.source.VectorTile#unByKey" class="">
<a href="ol.source.VectorTile.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.VectorTile#unset" class="">
<a href="ol.source.VectorTile.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</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.optionsFromCapabilities" class="unstable">
<a href="ol.source.WMTS.html#.optionsFromCapabilities">optionsFromCapabilities</a>
</li>
<li data-name="ol.source.WMTS#changed" class="unstable">
<a href="ol.source.WMTS.html#changed">changed</a>
</li>
<li data-name="ol.source.WMTS#dispatchEvent" class="unstable">
<a href="ol.source.WMTS.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.WMTS#get" class="">
<a href="ol.source.WMTS.html#get">get</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#getFormat" class="unstable">
<a href="ol.source.WMTS.html#getFormat">getFormat</a>
</li>
<li data-name="ol.source.WMTS#getKeys" class="">
<a href="ol.source.WMTS.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.WMTS#getLayer" class="unstable">
<a href="ol.source.WMTS.html#getLayer">getLayer</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#getMatrixSet" class="unstable">
<a href="ol.source.WMTS.html#getMatrixSet">getMatrixSet</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#getProperties" class="">
<a href="ol.source.WMTS.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.WMTS#getRequestEncoding" class="unstable">
<a href="ol.source.WMTS.html#getRequestEncoding">getRequestEncoding</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#getStyle" class="unstable">
<a href="ol.source.WMTS.html#getStyle">getStyle</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#getUrls" class="unstable">
<a href="ol.source.WMTS.html#getUrls">getUrls</a>
</li>
<li data-name="ol.source.WMTS#getVersion" class="unstable">
<a href="ol.source.WMTS.html#getVersion">getVersion</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#refresh" class="unstable">
<a href="ol.source.WMTS.html#refresh">refresh</a>
</li>
<li data-name="ol.source.WMTS#set" class="">
<a href="ol.source.WMTS.html#set">set</a>
</li>
<li data-name="ol.source.WMTS#setAttributions" class="unstable">
<a href="ol.source.WMTS.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.WMTS#setProperties" class="">
<a href="ol.source.WMTS.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.WMTS#setRenderReprojectionEdges" class="unstable">
<a href="ol.source.WMTS.html#setRenderReprojectionEdges">setRenderReprojectionEdges</a>
</li>
<li data-name="ol.source.WMTS#setTileGridForProjection" class="unstable">
<a href="ol.source.WMTS.html#setTileGridForProjection">setTileGridForProjection</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#setUrl" class="">
<a href="ol.source.WMTS.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.WMTS#setUrls" class="">
<a href="ol.source.WMTS.html#setUrls">setUrls</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#unset" class="">
<a href="ol.source.WMTS.html#unset">unset</a>
</li>
<li data-name="ol.source.WMTS#updateDimensions" class="unstable">
<a href="ol.source.WMTS.html#updateDimensions">updateDimensions</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</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#changed" class="unstable">
<a href="ol.source.XYZ.html#changed">changed</a>
</li>
<li data-name="ol.source.XYZ#dispatchEvent" class="unstable">
<a href="ol.source.XYZ.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.XYZ#get" class="">
<a href="ol.source.XYZ.html#get">get</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#getKeys" class="">
<a href="ol.source.XYZ.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.source.XYZ.html#getProperties">getProperties</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#getUrls" class="unstable">
<a href="ol.source.XYZ.html#getUrls">getUrls</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#refresh" class="unstable">
<a href="ol.source.XYZ.html#refresh">refresh</a>
</li>
<li data-name="ol.source.XYZ#set" class="">
<a href="ol.source.XYZ.html#set">set</a>
</li>
<li data-name="ol.source.XYZ#setAttributions" class="unstable">
<a href="ol.source.XYZ.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.XYZ#setProperties" class="">
<a href="ol.source.XYZ.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.XYZ#setRenderReprojectionEdges" class="unstable">
<a href="ol.source.XYZ.html#setRenderReprojectionEdges">setRenderReprojectionEdges</a>
</li>
<li data-name="ol.source.XYZ#setTileGridForProjection" class="unstable">
<a href="ol.source.XYZ.html#setTileGridForProjection">setTileGridForProjection</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#setUrls" class="">
<a href="ol.source.XYZ.html#setUrls">setUrls</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>
<li data-name="ol.source.XYZ#unset" class="">
<a href="ol.source.XYZ.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</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#changed" class="unstable">
<a href="ol.source.Zoomify.html#changed">changed</a>
</li>
<li data-name="ol.source.Zoomify#dispatchEvent" class="unstable">
<a href="ol.source.Zoomify.html#dispatchEvent">dispatchEvent</a>
</li>
<li data-name="ol.source.Zoomify#get" class="">
<a href="ol.source.Zoomify.html#get">get</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#getKeys" class="">
<a href="ol.source.Zoomify.html#getKeys">getKeys</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#getProperties" class="">
<a href="ol.source.Zoomify.html#getProperties">getProperties</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#getUrls" class="unstable">
<a href="ol.source.Zoomify.html#getUrls">getUrls</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#refresh" class="unstable">
<a href="ol.source.Zoomify.html#refresh">refresh</a>
</li>
<li data-name="ol.source.Zoomify#set" class="">
<a href="ol.source.Zoomify.html#set">set</a>
</li>
<li data-name="ol.source.Zoomify#setAttributions" class="unstable">
<a href="ol.source.Zoomify.html#setAttributions">setAttributions</a>
</li>
<li data-name="ol.source.Zoomify#setProperties" class="">
<a href="ol.source.Zoomify.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.Zoomify#setRenderReprojectionEdges" class="unstable">
<a href="ol.source.Zoomify.html#setRenderReprojectionEdges">setRenderReprojectionEdges</a>
</li>
<li data-name="ol.source.Zoomify#setTileGridForProjection" class="unstable">
<a href="ol.source.Zoomify.html#setTileGridForProjection">setTileGridForProjection</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#setUrl" class="">
<a href="ol.source.Zoomify.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.Zoomify#setUrls" class="">
<a href="ol.source.Zoomify.html#setUrls">setUrls</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>
<li data-name="ol.source.Zoomify#unset" class="">
<a href="ol.source.Zoomify.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change" class="unstable">
<a href="global.html#event:change">change</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</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>
<ul class="fires 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.GeometryFunction" class="unstable">
<a href="ol.style.html#.GeometryFunction">GeometryFunction</a>
</li>
<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>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.style.AtlasManager">
<span class="title">
<a href="ol.style.AtlasManager.html">ol.style.AtlasManager</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires 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#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#getOpacity" class="unstable">
<a href="ol.style.Circle.html#getOpacity">getOpacity</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#getRotateWithView" class="unstable">
<a href="ol.style.Circle.html#getRotateWithView">getRotateWithView</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#getSnapToPixel" class="unstable">
<a href="ol.style.Circle.html#getSnapToPixel">getSnapToPixel</a>
</li>
<li data-name="ol.style.Circle#getStroke" class="unstable">
<a href="ol.style.Circle.html#getStroke">getStroke</a>
</li>
<li data-name="ol.style.Circle#setOpacity" class="unstable">
<a href="ol.style.Circle.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.style.Circle#setRotation" class="unstable">
<a href="ol.style.Circle.html#setRotation">setRotation</a>
</li>
<li data-name="ol.style.Circle#setScale" class="unstable">
<a href="ol.style.Circle.html#setScale">setScale</a>
</li>
</ul>
<ul class="fires itemMembers">
</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>
<li data-name="ol.style.Fill#setColor" class="unstable">
<a href="ol.style.Fill.html#setColor">setColor</a>
</li>
</ul>
<ul class="fires itemMembers">
</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#getOpacity" class="unstable">
<a href="ol.style.Icon.html#getOpacity">getOpacity</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#getRotateWithView" class="unstable">
<a href="ol.style.Icon.html#getRotateWithView">getRotateWithView</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#getSnapToPixel" class="unstable">
<a href="ol.style.Icon.html#getSnapToPixel">getSnapToPixel</a>
</li>
<li data-name="ol.style.Icon#getSrc" class="unstable">
<a href="ol.style.Icon.html#getSrc">getSrc</a>
</li>
<li data-name="ol.style.Icon#load" class="unstable">
<a href="ol.style.Icon.html#load">load</a>
</li>
<li data-name="ol.style.Icon#setOpacity" class="unstable">
<a href="ol.style.Icon.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.style.Icon#setRotation" class="unstable">
<a href="ol.style.Icon.html#setRotation">setRotation</a>
</li>
<li data-name="ol.style.Icon#setScale" class="unstable">
<a href="ol.style.Icon.html#setScale">setScale</a>
</li>
</ul>
<ul class="fires itemMembers">
</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#getOpacity" class="unstable">
<a href="ol.style.Image.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.style.Image#getRotateWithView" class="unstable">
<a href="ol.style.Image.html#getRotateWithView">getRotateWithView</a>
</li>
<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>
<li data-name="ol.style.Image#getSnapToPixel" class="unstable">
<a href="ol.style.Image.html#getSnapToPixel">getSnapToPixel</a>
</li>
<li data-name="ol.style.Image#setOpacity" class="unstable">
<a href="ol.style.Image.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.style.Image#setRotation" class="unstable">
<a href="ol.style.Image.html#setRotation">setRotation</a>
</li>
<li data-name="ol.style.Image#setScale" class="unstable">
<a href="ol.style.Image.html#setScale">setScale</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.style.RegularShape">
<span class="title">
<a href="ol.style.RegularShape.html">ol.style.RegularShape</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.RegularShape#getAnchor" class="unstable">
<a href="ol.style.RegularShape.html#getAnchor">getAnchor</a>
</li>
<li data-name="ol.style.RegularShape#getAngle" class="unstable">
<a href="ol.style.RegularShape.html#getAngle">getAngle</a>
</li>
<li data-name="ol.style.RegularShape#getFill" class="unstable">
<a href="ol.style.RegularShape.html#getFill">getFill</a>
</li>
<li data-name="ol.style.RegularShape#getImage" class="unstable">
<a href="ol.style.RegularShape.html#getImage">getImage</a>
</li>
<li data-name="ol.style.RegularShape#getOpacity" class="unstable">
<a href="ol.style.RegularShape.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.style.RegularShape#getOrigin" class="unstable">
<a href="ol.style.RegularShape.html#getOrigin">getOrigin</a>
</li>
<li data-name="ol.style.RegularShape#getPoints" class="unstable">
<a href="ol.style.RegularShape.html#getPoints">getPoints</a>
</li>
<li data-name="ol.style.RegularShape#getRadius" class="unstable">
<a href="ol.style.RegularShape.html#getRadius">getRadius</a>
</li>
<li data-name="ol.style.RegularShape#getRadius2" class="unstable">
<a href="ol.style.RegularShape.html#getRadius2">getRadius2</a>
</li>
<li data-name="ol.style.RegularShape#getRotateWithView" class="unstable">
<a href="ol.style.RegularShape.html#getRotateWithView">getRotateWithView</a>
</li>
<li data-name="ol.style.RegularShape#getRotation" class="unstable">
<a href="ol.style.RegularShape.html#getRotation">getRotation</a>
</li>
<li data-name="ol.style.RegularShape#getScale" class="unstable">
<a href="ol.style.RegularShape.html#getScale">getScale</a>
</li>
<li data-name="ol.style.RegularShape#getSize" class="unstable">
<a href="ol.style.RegularShape.html#getSize">getSize</a>
</li>
<li data-name="ol.style.RegularShape#getSnapToPixel" class="unstable">
<a href="ol.style.RegularShape.html#getSnapToPixel">getSnapToPixel</a>
</li>
<li data-name="ol.style.RegularShape#getStroke" class="unstable">
<a href="ol.style.RegularShape.html#getStroke">getStroke</a>
</li>
<li data-name="ol.style.RegularShape#setOpacity" class="unstable">
<a href="ol.style.RegularShape.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.style.RegularShape#setRotation" class="unstable">
<a href="ol.style.RegularShape.html#setRotation">setRotation</a>
</li>
<li data-name="ol.style.RegularShape#setScale" class="unstable">
<a href="ol.style.RegularShape.html#setScale">setScale</a>
</li>
</ul>
<ul class="fires itemMembers">
</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>
<li data-name="ol.style.Stroke#setColor" class="unstable">
<a href="ol.style.Stroke.html#setColor">setColor</a>
</li>
<li data-name="ol.style.Stroke#setLineCap" class="unstable">
<a href="ol.style.Stroke.html#setLineCap">setLineCap</a>
</li>
<li data-name="ol.style.Stroke#setLineDash" class="unstable">
<a href="ol.style.Stroke.html#setLineDash">setLineDash</a>
</li>
<li data-name="ol.style.Stroke#setLineJoin" class="unstable">
<a href="ol.style.Stroke.html#setLineJoin">setLineJoin</a>
</li>
<li data-name="ol.style.Stroke#setMiterLimit" class="unstable">
<a href="ol.style.Stroke.html#setMiterLimit">setMiterLimit</a>
</li>
<li data-name="ol.style.Stroke#setWidth" class="unstable">
<a href="ol.style.Stroke.html#setWidth">setWidth</a>
</li>
</ul>
<ul class="fires itemMembers">
</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#getGeometry" class="unstable">
<a href="ol.style.Style.html#getGeometry">getGeometry</a>
</li>
<li data-name="ol.style.Style#getGeometryFunction" class="unstable">
<a href="ol.style.Style.html#getGeometryFunction">getGeometryFunction</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>
<li data-name="ol.style.Style#setGeometry" class="unstable">
<a href="ol.style.Style.html#setGeometry">setGeometry</a>
</li>
<li data-name="ol.style.Style#setZIndex" class="unstable">
<a href="ol.style.Style.html#setZIndex">setZIndex</a>
</li>
</ul>
<ul class="fires itemMembers">
</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#getOffsetX" class="unstable">
<a href="ol.style.Text.html#getOffsetX">getOffsetX</a>
</li>
<li data-name="ol.style.Text#getOffsetY" class="unstable">
<a href="ol.style.Text.html#getOffsetY">getOffsetY</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>
<li data-name="ol.style.Text#setFill" class="unstable">
<a href="ol.style.Text.html#setFill">setFill</a>
</li>
<li data-name="ol.style.Text#setFont" class="unstable">
<a href="ol.style.Text.html#setFont">setFont</a>
</li>
<li data-name="ol.style.Text#setOffsetX" class="unstable">
<a href="ol.style.Text.html#setOffsetX">setOffsetX</a>
</li>
<li data-name="ol.style.Text#setOffsetY" class="unstable">
<a href="ol.style.Text.html#setOffsetY">setOffsetY</a>
</li>
<li data-name="ol.style.Text#setRotation" class="unstable">
<a href="ol.style.Text.html#setRotation">setRotation</a>
</li>
<li data-name="ol.style.Text#setScale" class="unstable">
<a href="ol.style.Text.html#setScale">setScale</a>
</li>
<li data-name="ol.style.Text#setStroke" class="unstable">
<a href="ol.style.Text.html#setStroke">setStroke</a>
</li>
<li data-name="ol.style.Text#setText" class="unstable">
<a href="ol.style.Text.html#setText">setText</a>
</li>
<li data-name="ol.style.Text#setTextAlign" class="unstable">
<a href="ol.style.Text.html#setTextAlign">setTextAlign</a>
</li>
<li data-name="ol.style.Text#setTextBaseline" class="unstable">
<a href="ol.style.Text.html#setTextBaseline">setTextBaseline</a>
</li>
</ul>
<ul class="fires itemMembers">
</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">
<span class="subtitle">Methods</span>
<li data-name="ol.tilegrid.createXYZ" class="unstable">
<a href="ol.tilegrid.html#.createXYZ">createXYZ</a>
</li>
</ul>
<ul class="fires 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#getTileCoordExtent" class="unstable">
<a href="ol.tilegrid.TileGrid.html#getTileCoordExtent">getTileCoordExtent</a>
</li>
<li data-name="ol.tilegrid.TileGrid#getTileCoordForCoordAndResolution" class="unstable">
<a href="ol.tilegrid.TileGrid.html#getTileCoordForCoordAndResolution">getTileCoordForCoordAndResolution</a>
</li>
<li data-name="ol.tilegrid.TileGrid#getTileCoordForCoordAndZ" class="unstable">
<a href="ol.tilegrid.TileGrid.html#getTileCoordForCoordAndZ">getTileCoordForCoordAndZ</a>
</li>
<li data-name="ol.tilegrid.TileGrid#getTileSize" class="">
<a href="ol.tilegrid.TileGrid.html#getTileSize">getTileSize</a>
</li>
</ul>
<ul class="fires itemMembers">
</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.createFromCapabilitiesMatrixSet" class="unstable">
<a href="ol.tilegrid.WMTS.html#.createFromCapabilitiesMatrixSet">createFromCapabilitiesMatrixSet</a>
</li>
<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#getTileCoordExtent" class="unstable">
<a href="ol.tilegrid.WMTS.html#getTileCoordExtent">getTileCoordExtent</a>
</li>
<li data-name="ol.tilegrid.WMTS#getTileCoordForCoordAndResolution" class="unstable">
<a href="ol.tilegrid.WMTS.html#getTileCoordForCoordAndResolution">getTileCoordForCoordAndResolution</a>
</li>
<li data-name="ol.tilegrid.WMTS#getTileCoordForCoordAndZ" class="unstable">
<a href="ol.tilegrid.WMTS.html#getTileCoordForCoordAndZ">getTileCoordForCoordAndZ</a>
</li>
<li data-name="ol.tilegrid.WMTS#getTileSize" class="">
<a href="ol.tilegrid.WMTS.html#getTileSize">getTileSize</a>
</li>
</ul>
<ul class="fires itemMembers">
</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>
<ul class="fires itemMembers">
</ul>
</li>
</ul>
</div>
<div class="main">
<h1 class="page-title" data-filename="ol.interaction.html">Namespace: interaction</h1>
<section>
<header>
<h2>
<span class="ancestors"><a href="ol.html">ol</a>.</span>interaction
</h2>
</header>
<article>
<div class="container-overview">
<dl class="details">
</dl>
</div>
<h3 class="subsection-title">Classes</h3>
<dl>
<dt><a href="ol.interaction.DoubleClickZoom.html">DoubleClickZoom</a></dt>
<dd></dd>
<dt><a href="ol.interaction.DragAndDrop.html">DragAndDrop</a></dt>
<dd></dd>
<dt><a href="ol.interaction.DragAndDropEvent.html">DragAndDropEvent</a></dt>
<dd></dd>
<dt><a href="ol.interaction.DragBox.html">DragBox</a></dt>
<dd></dd>
<dt><a href="ol.interaction.DragPan.html">DragPan</a></dt>
<dd></dd>
<dt><a href="ol.interaction.DragRotate.html">DragRotate</a></dt>
<dd></dd>
<dt><a href="ol.interaction.DragRotateAndZoom.html">DragRotateAndZoom</a></dt>
<dd></dd>
<dt><a href="ol.interaction.DragZoom.html">DragZoom</a></dt>
<dd></dd>
<dt><a href="ol.interaction.Draw.html">Draw</a></dt>
<dd></dd>
<dt><a href="ol.interaction.DrawEvent.html">DrawEvent</a></dt>
<dd></dd>
<dt><a href="ol.interaction.Interaction.html">Interaction</a></dt>
<dd></dd>
<dt><a href="ol.interaction.KeyboardPan.html">KeyboardPan</a></dt>
<dd></dd>
<dt><a href="ol.interaction.KeyboardZoom.html">KeyboardZoom</a></dt>
<dd></dd>
<dt><a href="ol.interaction.Modify.html">Modify</a></dt>
<dd></dd>
<dt><a href="ol.interaction.ModifyEvent.html">ModifyEvent</a></dt>
<dd></dd>
<dt><a href="ol.interaction.MouseWheelZoom.html">MouseWheelZoom</a></dt>
<dd></dd>
<dt><a href="ol.interaction.PinchRotate.html">PinchRotate</a></dt>
<dd></dd>
<dt><a href="ol.interaction.PinchZoom.html">PinchZoom</a></dt>
<dd></dd>
<dt><a href="ol.interaction.Pointer.html">Pointer</a></dt>
<dd></dd>
<dt><a href="ol.interaction.Select.html">Select</a></dt>
<dd></dd>
<dt><a href="ol.interaction.SelectEvent.html">SelectEvent</a></dt>
<dd></dd>
<dt><a href="ol.interaction.Snap.html">Snap</a></dt>
<dd></dd>
<dt><a href="ol.interaction.Translate.html">Translate</a></dt>
<dd></dd>
<dt><a href="ol.interaction.TranslateEvent.html">TranslateEvent</a></dt>
<dd></dd>
</dl>
<h3 class="subsection-title">Methods</h3>
<dl>
<dt class="">
<div class="nameContainer">
<h4 class="name" id=".defaults">
ol.interaction.defaults<span class="signature">(<span class="optional">opt_options</span>)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{<a href="ol.Collection.html">ol.Collection</a>.<<a href="ol.interaction.Interaction.html">ol.interaction.Interaction</a>>}</span>
</h4>
<div class="tag-source">
src/ol/interaction/interactiondefaults.js, line 40
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Set of interactions included in maps by default. Specific interactions can be
excluded by setting the appropriate option to false in the constructor
options, but the order of the interactions is fixed. If you want to specify
a different order for interactions, you will need to create your own
<a href="ol.interaction.Interaction.html"><code>ol.interaction.Interaction</code></a> instances and insert them into a
<a href="ol.Collection.html"><code>ol.Collection</code></a> in the order you want before creating your
<a href="ol.Map.html"><code>ol.Map</code></a> instance. The default set of interactions, in sequence, is:</p>
<ul>
<li><a href="ol.interaction.DragRotate.html"><code>ol.interaction.DragRotate</code></a></li>
<li><a href="ol.interaction.DoubleClickZoom.html"><code>ol.interaction.DoubleClickZoom</code></a></li>
<li><a href="ol.interaction.DragPan.html"><code>ol.interaction.DragPan</code></a></li>
<li><a href="ol.interaction.PinchRotate.html"><code>ol.interaction.PinchRotate</code></a></li>
<li><a href="ol.interaction.PinchZoom.html"><code>ol.interaction.PinchZoom</code></a></li>
<li><a href="ol.interaction.KeyboardPan.html"><code>ol.interaction.KeyboardPan</code></a></li>
<li><a href="ol.interaction.KeyboardZoom.html"><code>ol.interaction.KeyboardZoom</code></a></li>
<li><a href="ol.interaction.MouseWheelZoom.html"><code>ol.interaction.MouseWheelZoom</code></a></li>
<li><a href="ol.interaction.DragZoom.html"><code>ol.interaction.DragZoom</code></a></li>
</ul>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>options</code></td>
<td colspan=2 class="description last">
<p>Defaults options.</p>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="unstable">
<td class="name"><code>altShiftDragRotate</code></td>
<td class="type">
<span class="param-type">boolean</span>
|
<span class="param-type">undefined</span>
</td>
<td class="description last">
<span class="stability experimental">experimental</span>
<p>Whether Alt-Shift-drag rotate is desired. Default is <code>true</code>.</p></td>
</tr>
<tr class="unstable">
<td class="name"><code>doubleClickZoom</code></td>
<td class="type">
<span class="param-type">boolean</span>
|
<span class="param-type">undefined</span>
</td>
<td class="description last">
<span class="stability experimental">experimental</span>
<p>Whether double click zoom is desired. Default is <code>true</code>.</p></td>
</tr>
<tr class="unstable">
<td class="name"><code>keyboard</code></td>
<td class="type">
<span class="param-type">boolean</span>
|
<span class="param-type">undefined</span>
</td>
<td class="description last">
<span class="stability experimental">experimental</span>
<p>Whether keyboard interaction is desired. Default is <code>true</code>.</p></td>
</tr>
<tr class="unstable">
<td class="name"><code>mouseWheelZoom</code></td>
<td class="type">
<span class="param-type">boolean</span>
|
<span class="param-type">undefined</span>
</td>
<td class="description last">
<span class="stability experimental">experimental</span>
<p>Whether mousewheel zoom is desired. Default is <code>true</code>.</p></td>
</tr>
<tr class="unstable">
<td class="name"><code>shiftDragZoom</code></td>
<td class="type">
<span class="param-type">boolean</span>
|
<span class="param-type">undefined</span>
</td>
<td class="description last">
<span class="stability experimental">experimental</span>
<p>Whether Shift-drag zoom is desired. Default is <code>true</code>.</p></td>
</tr>
<tr class="unstable">
<td class="name"><code>dragPan</code></td>
<td class="type">
<span class="param-type">boolean</span>
|
<span class="param-type">undefined</span>
</td>
<td class="description last">
<span class="stability experimental">experimental</span>
<p>Whether drag pan is desired. Default is <code>true</code>.</p></td>
</tr>
<tr class="unstable">
<td class="name"><code>pinchRotate</code></td>
<td class="type">
<span class="param-type">boolean</span>
|
<span class="param-type">undefined</span>
</td>
<td class="description last">
<span class="stability experimental">experimental</span>
<p>Whether pinch rotate is desired. Default is <code>true</code>.</p></td>
</tr>
<tr class="unstable">
<td class="name"><code>pinchZoom</code></td>
<td class="type">
<span class="param-type">boolean</span>
|
<span class="param-type">undefined</span>
</td>
<td class="description last">
<span class="stability experimental">experimental</span>
<p>Whether pinch zoom is desired. Default is <code>true</code>.</p></td>
</tr>
<tr class="unstable">
<td class="name"><code>zoomDelta</code></td>
<td class="type">
<span class="param-type">number</span>
|
<span class="param-type">undefined</span>
</td>
<td class="description last">
<span class="stability experimental">experimental</span>
<p>Zoom delta.</p></td>
</tr>
<tr class="unstable">
<td class="name"><code>zoomDuration</code></td>
<td class="type">
<span class="param-type">number</span>
|
<span class="param-type">undefined</span>
</td>
<td class="description last">
<span class="stability experimental">experimental</span>
<p>Zoom duration.</p></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
<h5>Returns:</h5>
A collection of
interactions to be used with the ol.Map constructor's interactions option.
<br />
</dd>
</dl>
<h3 class="subsection-title">Type Definitions</h3>
<dl>
<dt class="unstable">
<div class="nameContainer">
<h4 class="name" id=".DragBoxEndConditionType">
ol.interaction.DragBoxEndConditionType<span class="signature">()</span>
<span class="stability experimental">experimental</span>
</h4>
<div class="tag-source">
src/ol/interaction/dragboxinteraction.js, line 90
</div>
</div>
</dt>
<dd class="unstable">
<div class="description">
<p>A function that takes a <a href="ol.MapBrowserEvent.html"><code>ol.MapBrowserEvent</code></a> and two
<a href="ol.html#.Pixel"><code>ol.Pixel</code></a>s and returns a <code>{boolean}</code>. If the condition is met,
true should be returned.</p>
</div>
<dl class="details">
</dl>
</dd>
<dt class="unstable">
<div class="nameContainer">
<h4 class="name" id=".DrawGeometryFunctionType">
ol.interaction.DrawGeometryFunctionType<span class="signature">()</span>
<span class="stability experimental">experimental</span>
</h4>
<div class="tag-source">
src/ol/interaction/drawinteraction.js, line 856
</div>
</div>
</dt>
<dd class="unstable">
<div class="description">
<p>Function that takes coordinates and an optional existing geometry as
arguments, and returns a geometry. The optional existing geometry is the
geometry that is returned when the function is called without a second
argument.</p>
</div>
<dl class="details">
</dl>
</dd>
<dt class="unstable">
<div class="nameContainer">
<h4 class="name" id=".SelectFilterFunction">
ol.interaction.SelectFilterFunction<span class="signature">()</span>
<span class="stability experimental">experimental</span>
</h4>
<div class="tag-source">
src/ol/interaction/selectinteraction.js, line 42
</div>
</div>
</dt>
<dd class="unstable">
<div class="description">
<p>A function that takes an <a href="ol.Feature.html"><code>ol.Feature</code></a> or <a href="ol.render.Feature.html"><code>ol.render.Feature</code></a> and
an <a href="ol.layer.Layer.html"><code>ol.layer.Layer</code></a> and returns <code>true</code> if the feature may be selected
or <code>false</code> otherwise.</p>
</div>
<dl class="details">
</dl>
</dd>
</dl>
</article>
</section>
</div>
</div>
<script>prettyPrint();</script>
<script src="scripts/linenumber.js"></script>
<script src="scripts/main.js"></script>
</body>
</html> | joseahr/informaTorrent-Node.JS | public/javascripts/plugins/ol3/apidoc/ol.interaction.html | HTML | mit | 651,533 |
<div>
<!-- Year View heading info -->
<section>
<div class="year-head-box">
<div class="year-head-left-box"><h3> {{ yearView.year.year }} R.I. Independents</h3></div>
<div class="year-head-center-box"><h3> Record {{ yearView.year.wins }} - {{ yearView.year.losses }} - {{ yearView.year.ties }} </h3></div>
<div class="year-head-right-box"><h3> Coach {{ yearView.year.coachId.firstName }} {{ yearView.year.coachId.lastName }} </h3></div>
</div>
</section>
<article class="year-box" class="top">
<!-- Table heading and Opponent name and score -->
<!-- <section class="scheduleYearView"> -->
<section>
<div class="year-left-box">
<h3 class="center">{{ yearView.year.year }} {{ yearView.scheduleHeading }}</h3>
<div class="spinner" ng-show="yearView.loading"></div>
<table class="cellPad" ng-hide="yearView.loading">
<thead>
<tr>
<th>Wk</th>
<th>Teams</th>
<th>Score</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="game in yearView.thisYearsGames | orderBy: 'date'">
<td>{{ game.week }}</td>
<td>{{ game.opponentId.name }}</td>
<td><a href ="" ng-click="yearView.selectGame(game)">{{ game.result }}-{{ game.rockIslandScore }}-{{ game.opponentScore }}</a></td>
</tr>
</tbody>
</table>
</div>
</section>
<!-- Year Summary Section -->
<section>
<div class="year-center-box">
<div ng-show="yearView.yearSummary"><h2>Year Summary</h2> {{ yearView.year.yearSummary }}</div>
<div ng-show="yearView.yearSummary" class="img-center"><img ng-src="{{ yearView.year.image }}"></div>
<!-- <div ng-show="yearView.individualGameView"><h2>Game Summary</h2> {{ yearView.gameSummary }}</div> -->
<div ng-show="yearView.individualGameView" class="row">
<div class="col-md-5"><h2>Game</h2>
<p>Date: {{ yearView.game.date }}</p>
<p>Attendance: {{ yearView.game.attendance }}</p>
<p>Location: {{ yearView.game.locationId.venueName }}</p>
<p>City: {{ yearView.game.locationId.city }}</p>
<p>State: {{ yearView.game.locationId.state }}</p>
</div>
<div class="col-md-7 padding-boxscore">
<table class="table table-bordered">
<thead>
<tr>
<th></th>
<th>1</th>
<th>2</th>
<th>3</th>
<th>4</th>
<th>T</th>
</tr>
</thead>
<tbody>
<tr>
<th>{{ yearView.game.opponentId.name }}</th>
<td>{{ yearView.game.opp1st }}</td>
<td>{{ yearView.game.opp2nd }}</td>
<td>{{ yearView.game.opp3rd }}</td>
<td>{{ yearView.game.opp4th }}</td>
<th>{{ yearView.game.opponentScore }}</th>
</tr>
<tr>
<th>Rock Island Independents</th>
<td>{{ yearView.game.rii1st }}</td>
<td>{{ yearView.game.rii2nd }}</td>
<td>{{ yearView.game.rii3rd }}</td>
<td>{{ yearView.game.rii4th }}</td>
<th>{{ yearView.game.rockIslandScore }}</th>
</tr>
</tbody>
</table>
</div>
</div>
<div ng-show="yearView.individualGameView" class="row">
<div class="col-md-12">
<h4>Game Summary: </h4><p>{{ yearView.game.gameSummary }}</p>
</div>
</div>
<!-- NG Show Player View -->
<div ng-show="yearView.individualPlayerView" class="row">
<div class="col-md-6"><h2>Player Bio</h2>
<h3> {{ yearView.player.firstName }} {{ yearView.player.nickName }} {{ yearView.player.lastName }}</h3>
<p>Position: {{ yearView.player.position }}</p>
<p>Birth Date: {{ yearView.player.birthDate }}</p>
<p>Birth State: {{ yearView.player.birthState }}</p>
<p>College: {{ yearView.player.college }}</p>
</div>
<div class="col-md-6 padding-boxscore">
<img ng-src="{{ yearView.player.image }}">
<p class="padding-top">Photo: {{ yearView.player.imageInfo }}</p>
</div>
</div>
<div ng-show="yearView.individualPlayerView" class="row">
<div class="col-md-12">
<p>About: {{ yearView.player.playerBio }}</p>
</div>
</div>
</div>
</section>
<!-- Player Name and Position -->
<section>
<div class="year-right-box">
<h3 class="center">{{ yearView.year.year }} {{ yearView.rosterHeading }}</h3>
<div class="spinner" ng-show="yearView.loading"></div>
<div ng-hide="yearView.loading">
<table>
<thead>
<tr>
<th>Player</th>
<th>Position</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="player in yearView.thisYearsPlayers | orderBy: 'lastName'">
<td><a href ="" ng-click="yearView.selectPlayer(player)">{{ player.firstName }} {{ player.lastName }}</a></td>
<td>{{ player.position }}</td>
</tr>
</tbody>
</div>
</div>
</section>
</article>
</div>
| SimonHerrera/client-rock-island-independents | client/app/yearView/yearView.html | HTML | mit | 5,625 |
<!DOCTYPE html><html><head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="description">
<meta name="keywords" content="static content generator,static site generator,static site,HTML,web development,.NET,C#,Razor,Markdown,YAML">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="/SonghayCore/assets/img/favicon.ico" type="image/x-icon">
<link rel="icon" href="/SonghayCore/assets/img/favicon.ico" type="image/x-icon">
<title>SonghayCore Documentation - API - ObservableCollectionExtensions Class</title>
<link href="/SonghayCore/assets/css/highlight.css" rel="stylesheet">
<link href="/SonghayCore/assets/css/bootstrap/bootstrap.css" rel="stylesheet">
<link href="/SonghayCore/assets/css/adminlte/AdminLTE.css" rel="stylesheet">
<link href="/SonghayCore/assets/css/theme/theme.css" rel="stylesheet">
<link href="//fonts.googleapis.com/css?family=Roboto+Mono:400,700|Roboto:400,400i,700,700i" rel="stylesheet">
<link href="/SonghayCore/assets/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="/SonghayCore/assets/css/override.css" rel="stylesheet">
<script src="/SonghayCore/assets/js/jquery-2.2.3.min.js"></script>
<script src="/SonghayCore/assets/js/bootstrap.min.js"></script>
<script src="/SonghayCore/assets/js/app.min.js"></script>
<script src="/SonghayCore/assets/js/highlight.pack.js"></script>
<script src="/SonghayCore/assets/js/jquery.slimscroll.min.js"></script>
<script src="/SonghayCore/assets/js/jquery.sticky-kit.min.js"></script>
<script src="/SonghayCore/assets/js/mermaid.min.js"></script>
<script src="/SonghayCore/assets/js/svg-pan-zoom.min.js"></script>
<!--[if lt IE 9]>
<script src="/SonghayCore/assets/js/html5shiv.min.js"></script>
<script src="/SonghayCore/assets/js/respond.min.js"></script>
<![endif]-->
</head>
<body class="hold-transition wyam layout-boxed ">
<div class="top-banner"></div>
<div class="wrapper with-container">
<!-- Header -->
<header class="main-header">
<a href="/SonghayCore/" class="logo">
<span>SonghayCore Documentation</span>
</a>
<nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button-->
<a href="#" class="sidebar-toggle visible-xs-block" data-toggle="offcanvas" role="button">
<span class="sr-only">Toggle side menu</span>
<i class="fa fa-chevron-circle-right"></i>
</a>
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse">
<span class="sr-only">Toggle side menu</span>
<i class="fa fa-chevron-circle-down"></i>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse pull-left" id="navbar-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="/SonghayCore/api">API</a></li>
</ul>
</div>
<!-- /.navbar-collapse -->
<!-- Navbar Right Menu -->
</nav>
</header>
<!-- Left side column. contains the logo and sidebar -->
<aside class="main-sidebar ">
<section class="infobar" data-spy="affix" data-offset-top="60" data-offset-bottom="200">
<div id="infobar-headings"><h6>On This Page</h6><p><a href="#Summary">Summary</a></p>
<p><a href="#Syntax">Syntax</a></p>
<p><a href="#Methods">Methods</a></p>
<p><a href="#ExtensionMethods">Extension Methods</a></p>
<hr class="infobar-hidden">
</div>
</section>
<section class="sidebar">
<script src="/SonghayCore/assets/js/lunr.min.js"></script>
<script src="/SonghayCore/assets/js/searchIndex.js"></script>
<div class="sidebar-form">
<div class="input-group">
<input type="text" name="search" id="search" class="form-control" placeholder="Search Types...">
<span class="input-group-btn">
<button class="btn btn-flat"><i class="fa fa-search"></i></button>
</span>
</div>
</div>
<div id="search-results">
</div>
<script>
function runSearch(query){
$("#search-results").empty();
if( query.length < 2 ){
return;
}
var results = searchModule.search("*" + query + "*");
var listHtml = "<ul class='sidebar-menu'>";
listHtml += "<li class='header'>Type Results</li>";
if(results.length == 0 ){
listHtml += "<li>No results found</li>";
} else {
for(var i = 0; i < results.length; ++i){
var res = results[i];
listHtml += "<li><a href='" + res.url + "'>" + htmlEscape(res.title) + "</a></li>";
}
}
listHtml += "</ul>";
$("#search-results").append(listHtml);
}
$(document).ready(function(){
$("#search").on('input propertychange paste', function() {
runSearch($("#search").val());
});
});
function htmlEscape(html) {
return document.createElement('div')
.appendChild(document.createTextNode(html))
.parentNode
.innerHTML;
}
</script>
<hr>
<ul class="sidebar-menu">
<li class="header">Namespace</li>
<li><a href="/SonghayCore/api/Songhay.Extensions">Songhay<wbr>.Extensions</a></li>
<li role="separator" class="divider"></li>
<li class="header">Class Types</li>
<li><a href="/SonghayCore/api/Songhay.Extensions/ArrayExtensions">ArrayExtensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/AssemblyExtensions">AssemblyExtensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/CharExtensions">CharExtensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/ConfigurationManagerExtensions">Configuration<wbr>Manager<wbr>Extensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/DataSetExtensions">DataSetExtensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/DateTimeExtensions">DateTimeExtensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/DirectoryInfoExtensions">Directory<wbr>Info<wbr>Extensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/DisplayItemModelExtensions">Display<wbr>Item<wbr>Model<wbr>Extensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/EncryptionMetadataExtensions">Encryption<wbr>Metadata<wbr>Extensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/EnumExtensions">EnumExtensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/EnvironmentExtensions">Environment<wbr>Extensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/ExpressionExtensions">ExpressionExtensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/FileInfoExtensions">FileInfoExtensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/FuncExtensions">FuncExtensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/HttpClientExtensions">HttpClientExtensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/HttpRequestMessageExtensions">Http<wbr>Request<wbr>Message<wbr>Extensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/HttpResponseMessageExtensions">Http<wbr>Response<wbr>Message<wbr>Extensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/HttpWebRequestExtensions">Http<wbr>Web<wbr>Request<wbr>Extensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/IActivityExtensions">IActivityExtensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/ICommunicationObjectExtensions">I<wbr>Communication<wbr>Object<wbr>Extensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/IConfigurationBuilderExtensions">I<wbr>Configuration<wbr>Builder<wbr>Extensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/IContractResolverExtensions">I<wbr>Contract<wbr>Resolver<wbr>Extensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/IDictionaryExtensions">I<wbr>Dictionary<wbr>Extensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/IEnumerableOfTExtensions">I<wbr>Enumerable<wbr>Of<wbr>T<wbr>Extensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/IIdentityExtensions">IIdentityExtensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/ITemporalExtensions">ITemporalExtensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/JObjectExtensions">JObjectExtensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/JsonSerializerSettingsExtensions">Json<wbr>Serializer<wbr>Settings<wbr>Extensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/JTokenExtensions">JTokenExtensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/MenuDisplayItemModelExtensions">Menu<wbr>Display<wbr>Item<wbr>Model<wbr>Extensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/NullableExtensions">NullableExtensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/ObjectExtensions">ObjectExtensions</a></li>
<li class="selected"><a href="/SonghayCore/api/Songhay.Extensions/ObservableCollectionExtensions">Observable<wbr>Collection<wbr>Extensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/OpenAuthorizationDataExtensions">Open<wbr>Authorization<wbr>Data<wbr>Extensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/ProgramArgsExtensions">Program<wbr>Args<wbr>Extensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/ProgramMetadataExtensions">Program<wbr>Metadata<wbr>Extensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/RestApiMetadataExtensions">Rest<wbr>Api<wbr>Metadata<wbr>Extensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/StringBuilderExtensions">String<wbr>Builder<wbr>Extensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/StringExtensions">StringExtensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/TaskExtensions">TaskExtensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/TimeSpanExtensions">TimeSpanExtensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/TraceSourceExtensions">Trace<wbr>Source<wbr>Extensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/TraceSourcesExtensions">Trace<wbr>Sources<wbr>Extensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/UriBuilderExtensions">UriBuilderExtensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/UriExtensions">UriExtensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/UriTemplateExtensions">Uri<wbr>Template<wbr>Extensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/Utf8JsonWriterExtensions">Utf8<wbr>Json<wbr>Writer<wbr>Extensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/ValidationContextExtensions">Validation<wbr>Context<wbr>Extensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/XElementExtensions">XElementExtensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/XNamespaceExtensions">XNamespaceExtensions</a></li>
<li><a href="/SonghayCore/api/Songhay.Extensions/XNodeExtensions">XNodeExtensions</a></li>
</ul>
</section>
</aside>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<section class="content-header">
<h1>Observable<wbr>Collection<wbr>Extensions <small>Class</small></h1>
</section>
<section class="content">
<h1 id="Summary">Summary</h1>
<div class="lead">
Extensions of <code class="cs">ObservableCollection<T></code>.
</div>
<div class="panel panel-default">
<div class="panel-body">
<div class="row">
<div class="col-md-6">
<dl class="dl-horizontal">
<dt>Namespace</dt>
<dd><a href="/SonghayCore/api/Songhay.Extensions">Songhay<wbr>.Extensions</a></dd>
<dt>Base Types</dt>
<dd>
<ul class="list-unstyled">
<li>object</li>
</ul>
</dd>
</dl>
</div>
<div class="col-md-6">
<div class="mermaid">
graph BT
Type-->Base0["object"]
Type["ObservableCollectionExtensions"]
class Type type-node
</div>
</div>
</div>
</div>
</div>
<h1 id="Syntax">Syntax</h1>
<pre><code>public static class ObservableCollectionExtensions</code></pre>
<h1 id="Methods">Methods</h1>
<div class="box">
<div class="box-body no-padding table-responsive">
<table class="table table-striped table-hover three-cols">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
<th>Summary</th>
</tr>
</thead>
<tbody><tr>
<td><a href="/SonghayCore/api/Songhay.Extensions/ObservableCollectionExtensions/9850DF7F">Set<wbr>Collection<wbr>With<wbr>Digits<wbr>(<wbr>Observable<wbr>Collection<wbr><byte?><wbr>, <wbr>double)<wbr></a></td>
<td>void</td>
<td>
<div>
Sets the collection with digits for <code class="cs">mantissaDigits = 2</code>.
</div>
<div><small><em>static</em></small></div>
</td>
</tr>
<tr>
<td><a href="/SonghayCore/api/Songhay.Extensions/ObservableCollectionExtensions/36109956">Set<wbr>Collection<wbr>With<wbr>Digits<wbr>(<wbr>Observable<wbr>Collection<wbr><byte?><wbr>, <wbr>double, <wbr>int)<wbr></a></td>
<td>void</td>
<td>
<div>
Sets the collection with digits.
</div>
<div><small><em>static</em></small></div>
</td>
</tr>
</tbody></table>
</div>
</div>
<h1 id="ExtensionMethods">Extension Methods</h1>
<div class="box">
<div class="box-body no-padding table-responsive">
<table class="table table-striped table-hover three-cols">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
<th>Summary</th>
</tr>
</thead>
<tbody><tr>
<td><a href="/SonghayCore/api/Songhay.Extensions/ObjectExtensions/12A8F2F7">GetProperties<wbr>()<wbr></a></td>
<td>PropertyInfo[]</td>
<td>
<div>
Gets the properties.
</div>
<div><small><em>From <a href="/SonghayCore/api/Songhay.Extensions/ObjectExtensions">ObjectExtensions</a></em></small></div>
</td>
</tr>
<tr>
<td><a href="/SonghayCore/api/Songhay.Extensions/ObjectExtensions/902A9690">GetProperty<wbr>(string)<wbr></a></td>
<td>PropertyInfo</td>
<td>
<div>
Gets the property.
</div>
<div><small><em>From <a href="/SonghayCore/api/Songhay.Extensions/ObjectExtensions">ObjectExtensions</a></em></small></div>
</td>
</tr>
<tr>
<td><a href="/SonghayCore/api/Songhay.Extensions/ObjectExtensions/5F8F2990">GetPropertyValue<wbr>(string)<wbr></a></td>
<td>object</td>
<td>
<div>
Gets the property value.
</div>
<div><small><em>From <a href="/SonghayCore/api/Songhay.Extensions/ObjectExtensions">ObjectExtensions</a></em></small></div>
</td>
</tr>
<tr>
<td><a href="/SonghayCore/api/Songhay.Extensions/IEnumerableOfTExtensions/BD86D709">IsEnumerableType<wbr><TEnumerable><wbr><wbr>()<wbr></a></td>
<td>bool</td>
<td>
<div>
Determines whether this instance is enumerable.
</div>
<div><small><em>From <a href="/SonghayCore/api/Songhay.Extensions/IEnumerableOfTExtensions">I<wbr>Enumerable<wbr>Of<wbr>T<wbr>Extensions</a></em></small></div>
</td>
</tr>
<tr>
<td><a href="/SonghayCore/api/Songhay.Extensions/ObjectExtensions/C312663C">IsType<wbr><TClass><wbr><wbr>()<wbr></a></td>
<td>bool</td>
<td>
<div>
Determines whether this instance is type.
</div>
<div><small><em>From <a href="/SonghayCore/api/Songhay.Extensions/ObjectExtensions">ObjectExtensions</a></em></small></div>
</td>
</tr>
<tr>
<td><a href="/SonghayCore/api/Songhay.Extensions/ObjectExtensions/690EAD14">ToObjectOrDBNull<wbr>()<wbr></a></td>
<td>object</td>
<td>
<div>
Boxes the value in object or returns <code class="cs"><a href="/SonghayCore">DBNull</a></code>.
</div>
<div><small><em>From <a href="/SonghayCore/api/Songhay.Extensions/ObjectExtensions">ObjectExtensions</a></em></small></div>
</td>
</tr>
<tr>
<td><a href="/SonghayCore/api/Songhay.Extensions/ValidationContextExtensions/85ABB10B">ToValidationContext<wbr>()<wbr></a></td>
<td>ValidationContext</td>
<td>
<div>
Converts the <code class="cs"><a href="/SonghayCore">object</a></code> into a validation context.
</div>
<div><small><em>From <a href="/SonghayCore/api/Songhay.Extensions/ValidationContextExtensions">Validation<wbr>Context<wbr>Extensions</a></em></small></div>
</td>
</tr>
<tr>
<td><a href="/SonghayCore/api/Songhay.Extensions/ValidationContextExtensions/1628CF65">ToValidationResults<wbr>()<wbr></a></td>
<td>IEnumerable<wbr><ValidationResult><wbr></td>
<td>
<div>
Converts the <code class="cs"><a href="/SonghayCore">object</a></code> into a validation results.
</div>
<div><small><em>From <a href="/SonghayCore/api/Songhay.Extensions/ValidationContextExtensions">Validation<wbr>Context<wbr>Extensions</a></em></small></div>
</td>
</tr>
<tr>
<td><a href="/SonghayCore/api/Songhay.Extensions/ValidationContextExtensions/1BB5C098">ToValidationResults<wbr>(object, <wbr>string)<wbr></a></td>
<td>IEnumerable<wbr><ValidationResult><wbr></td>
<td>
<div>
Converts the <code class="cs"><a href="/SonghayCore">object</a></code> into a validation results.
</div>
<div><small><em>From <a href="/SonghayCore/api/Songhay.Extensions/ValidationContextExtensions">Validation<wbr>Context<wbr>Extensions</a></em></small></div>
</td>
</tr>
</tbody></table>
</div>
</div>
</section>
</div>
<!-- Footer -->
<footer class="main-footer">
</footer>
</div>
<div class="wrapper bottom-wrapper">
<footer class="bottom-footer">
Generated by <a href="https://wyam.io">Wyam</a>
</footer>
</div>
<a href="javascript:" id="return-to-top"><i class="fa fa-chevron-up"></i></a>
<script>
// Close the sidebar if we select an anchor link
$(".main-sidebar a[href^='#']:not('.expand')").click(function(){
$(document.body).removeClass('sidebar-open');
});
$(document).ready(function() {
mermaid.initialize(
{
flowchart:
{
useMaxWidth: false
},
startOnLoad: false,
cloneCssStyles: false
});
mermaid.init(undefined, ".mermaid");
// Remove the max-width setting that Mermaid sets
var mermaidSvg = $('.mermaid svg');
mermaidSvg.addClass('img-responsive');
mermaidSvg.css('max-width', '');
// Make it scrollable
var target = document.querySelector(".mermaid svg");
if(target !== null)
{
var panZoom = window.panZoom = svgPanZoom(target, {
zoomEnabled: true,
controlIconsEnabled: true,
fit: true,
center: true,
maxZoom: 20,
zoomScaleSensitivity: 0.6
});
// Do the reset once right away to fit the diagram
panZoom.resize();
panZoom.fit();
panZoom.center();
$(window).resize(function(){
panZoom.resize();
panZoom.fit();
panZoom.center();
});
}
$('pre code').each(function(i, block) {
hljs.highlightBlock(block);
});
});
hljs.initHighlightingOnLoad();
// Back to top
$(window).scroll(function() {
if ($(this).scrollTop() >= 200) { // If page is scrolled more than 50px
$('#return-to-top').fadeIn(1000); // Fade in the arrow
} else {
$('#return-to-top').fadeOut(1000); // Else fade out the arrow
}
});
$('#return-to-top').click(function() { // When arrow is clicked
$('body,html').animate({
scrollTop : 0 // Scroll to top of body
}, 500);
});
</script>
</body></html> | BryanWilhite/SonghayCore | docs/api/Songhay.Extensions/ObservableCollectionExtensions/index.html | HTML | mit | 22,585 |
<!DOCTYPE html>
<html ng-app="myMod">
<head lang="en">
<meta charset="UTF-8">
<title>简化服务service和factory</title>
<link rel="stylesheet" href="../../public/lib/bootstrap/dist/css/bootstrap.css"/>
</head>
<body>
<div ng-controller="myCtrl">
{{money}}==={{hello}}---{{foo}}
</div>
</body>
</html>
<script src="../../public/lib/angular/angular.js"></script>
<script>
/*使用模块的provider方法定义服务组件,在有些场景下显得有些笨重。
angularjs友好的提供了一些简化的定义方法,这些方法通常只是对provider方法的封装,
分别适用于不同的应用场景:
1.factory使用一个对象工厂函数定义服务,调用该工厂函数将返回服务实例。
2.service适用一个类构造函数定义服务,通过new操作符将创建服务实例。
3.value使用一个值定义服务,这个值就是服务实例。
4.constant使用一个常量定义服务,这个常量就是服务实例。
*
* */
var module = angular.module('myMod',[]);
/*
* angularjs会将factory方法封装为provider,其实就是$get返回的函数。
* factory返回值不限制。
* */
module.factory('myFactory',function(){
return {
getValue:function(name){
return '哈哈,这是个工厂服务'+name;
}
};
});
//service只能返回构造函数,灵活性比较差,其实调用的是factory
module.service('myService',function(){
this.hello = 'service';
this.foo = function(){
return 'this is a function';
}
});
module.controller('myCtrl',function($scope,myFactory,myService){
$scope.money = myFactory.getValue('测试');
$scope.hello = myService.hello;
$scope.foo = myService.foo();
});
</script> | wushi27/nodejs201606 | angular/demo/day5/2.html | HTML | mit | 1,826 |
{% extends 'base.html' %}
{% block content %}
<div class="col-xs-6 col-xs-offset-3 centered">
<a href="{% url 'auth' %}" class="btn btn-lg btn-danger hidden" id="login-again-btn" style="margin-bottom: 2em;"> You need to login again :( Click here </a>
<div class="progress">
<div class="progress-bar progress-bar-info progress-bar-striped active" role="progressbar" id="flair-progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 100%; min-width: 5em;">
Getting list of subreddits
</div>
</div>
</div>
<br>
<div class="col-xs-6 col-xs-offset-3 centered">
<div class="checkbox">
<label>
<input type="checkbox" value="checked" id="hide-empty-flairs"> Hide subreddits with empty flairs
</label>
</div>
<table class="table" id="myflair-table">
<thead>
<tr>
<th>Subreddit</th>
<th>Flair </th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
{% endblock %}
{% load staticfiles %}
{% block bootstrap3_extra_script %}
{{ block.super }}
<script src="{% static 'results.js' %}"></script>
{% endblock %}
| eleweek/myflair | myflair/templates/results.html | HTML | mit | 1,165 |
<html>
<head>
<title>Control Panel</title>
<style>
body {
word-wrap: break-word;
background-color: #B5BBBB;
overflow: hidden;
}
section {
display: inline-block;
margin-right: 70px;
margin-bottom: 10px;
}
#interaction-controls button:not(#unmap-sections){
display: none;
}
button {
padding: 4px 8px;
margin-right: 5px;
font-family: verdana;
}
.last {
margin-right: 0px;
}
</style>
<script src="js/autoscan.js"></script>
<script src="js/panel.js"></script>
<script src="js/jquery-1.11.3.min.js"></script>
</head>
<body>
<!-- <button id="test">Click</button>-->
<section id='scroll-controls'>
<button id='down'>Scroll Down</button>
<button id='up'>Scroll Up</button>
<button id='bottom'>Scroll to Bottom</button>
<button id='top' class = "last">Scroll to Top</button>
</section>
<section id= 'interaction-controls'>
<button id='next-section'> Next Section </button>
<button id='select-section'> Select Section </button>
<button id='prev-section'> Previous Section </button>
<button id='back-section'> Go Up a Level </button>
<button id='unmap-sections' class = "last"> Interact with the Page </button>
</section>
<section id='page-controls'>
<button id='reload'> Reload Page </button>
<button id='new-tab'> New Tab </button>
<button id='close-tab'> Close Tab </button>
<button id='change-tab'> Change Tab </button>
<button id='change-url' class = "last">Navigate to URL</button>
</section>
<section>
<button id='open-keyboard'>Open Keyboard</button>
<button id="bookmarks"> View Bookmarks </button>
<button id="add-bookmark"> Bookmark this Page </button>
<button id='settings' class = "last"> Extension Settings </button>
</section>
<section id='other-controls'>
<button id='back'> Back a Page </button>
<button id='forward'> Forward a Page </button>
<button id='find'> Search the Page </button>
<button id='zoom-in'> Zoom In </button>
<button id='zoom-out' class = "last"> Zoom Out </button>
</section>
<!--
<section id="window-controls">
<button id='open-window'> New window </button>
<button id='change-window'> Change window </button>
<button id='snap-windows'> Snap windows to sides </button>
<button id='minimize'> Minimize window </button>
</section>
-->
<!-- <button id='print'> Print screen </button>
//Can't support navigating the iframe pop-up -->
</body>
</html>
| aila293/switch-extension | panel.html | HTML | mit | 2,825 |
<h1>Unauthorized access.</h1>
<p class="alert alert-danger">Don't do that, pleas...</p>
| luboid/AngularJSWebApiAuthRefreshToken | AngularJSAuthRefreshToken.Web/App/partials/unauthorized.html | HTML | mit | 91 |
<HTML><HEAD>
<TITLE>Review for Stalingrad (1993)</TITLE>
<LINK REL="STYLESHEET" TYPE="text/css" HREF="/ramr.css">
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1 ALIGN="CENTER" CLASS="title"><A HREF="/Title?0108211">Stalingrad (1993)</A></H1><H3 ALIGN=CENTER>reviewed by<BR><A HREF="/ReviewsBy?James+Berardinelli">James Berardinelli</A></H3><HR WIDTH="40%" SIZE="4">
<PRE> STALINGRAD
A film review by James Berardinelli
Copyright 1996 James Berardinelli</PRE>
<PRE>RATING (0 TO 10): 8.5
Alternative Scale: ***1/2 out of ****</PRE>
<PRE>Germany/Sweden, 1993
U.S. Release Date: varies
Running Length: 2:12
MPAA Classification: No MPAA Rating (Violence)
Theatrical Aspect Ratio: 1.85:1</PRE>
<P>Cast: Thomas Kretschmann, Dominique Horwitz, Jochen Nickel,
Sebastian Rudolph, Dana Vavrova
Director: Joseph Vilsmaier
Producers: Hanno Huth, Guenter Rohrbach, and Joseph Vilsmaier
Screenplay: Juergen Buescher, Johannes M.M. Heide, and Joseph Vilsmaier
Cinematography: Rolf Greim, Klaus Moderegger, and Peter Von Haller
Music: Norbert Juergen Schneider
U.S. Distributor: Vision International
In German with subtitles</P>
<P> It's so easy -- too easy, in fact -- for a war movie to turn into a
celebration of blood, death, and mayhem. Exploitation of wars and their
dehumanizing affects has become a staple of American action films (FIRST
BLOOD, MISSING IN ACTION). Occasionally, however, a rare and powerful
war movie reaches the screen -- one that delivers a visceral anti-
violence message with the force of a punch to the gut. STALINGRAD, a
1993 German/Swedish co-production from Guenter Rohrbach, the producer of
DAS BOOT, is such a picture. In the tradition of APOCALYPSE NOW,
PLATOON, and A MIDNIGHT CLEAR, it uses graphic violence to condemn war.</P>
<P> STALINGRAD, which takes place between August 1942 and January 1943,
chronicles Hitler's failed invasion of the Russian city -- one of the
miscalculations that lost the war for Germany. More than one million
died in the bloody struggle, the fatalities caused by wounds, disease,
and the same bitter cold that stopped Napolean's forces more than a
century earlier. STALINGRAD faithfully re-creates the principal
historical aspects of the battle while telling a more intimate tale
through the eyes of a small group of German characters.</P>
<P> They are Hans Witzland (Thomas Kretschmann), a clean-cut lieutenant
making his first trip to the front, and Manfred "Rollo" Rohleder (Jochen
Nickel) and Fritz Reiser (Dominique Horwitz), two hardened veteran
enlisted men. Together, these three make the long, weary trek down the
road of senseless violence and death, losing bits of their humanity
along the way. The horrors of STALINGRAD irrevocably destroy these men,
strafing their souls and crushing their spirits. By the end, it no
longer matters whether they live or die -- in almost every way, they're
already gone.</P>
<P> The psychologically destructive power of war is most clearly
illustrated through the changes undergone by Hans. When STALINGRAD
opens, he is a patriot serving the Fuhrer and Fatherland
unquestioningly. Soon, however, loyalty to his country is supplanted by
loathing as he sees the inhumane treatment accorded to Russian prisoners
of war. Then, as the battle becomes desperate, with the German army
losing scores just to capture another street, the most basic of animal
drives -- the need to survive -- asserts itself. Ultimately, even that
runs dry, and Hans finds himself groping to save a tiny vestige of the
man he once was. </P>
<P> There isolated moments of human triumph in STALINGRAD -- like a
Russian and German exchanging bread for meat, and Hans setting a woman
free instead of raping her. But these are exceptions. STALINGRAD's
disturbing power comes through its portrayal of the horrific --
decapitations, amputations, grizzly deaths, and mutilations. Nothing is
gratuitous; everything is effective. Director Joseph Vilsmaier pulls us
into the trenches with these men, who are no different from soldiers on
any side in any war. STALINGRAD is packed with tension, and the battle
sequences are startlingly realistic, but it's the inescapable message
that lingers. </P>
<PRE>- James Berardinelli
e-mail: <A HREF="mailto:berardin@bc.cybernex.net">berardin@bc.cybernex.net</A>
web: <A HREF="http://www.cybernex.net/~berardin">http://www.cybernex.net/~berardin</A> </PRE>
<HR><P CLASS=flush><SMALL>The review above was posted to the
<A HREF="news:rec.arts.movies.reviews">rec.arts.movies.reviews</A> newsgroup (<A HREF="news:de.rec.film.kritiken">de.rec.film.kritiken</A> for German reviews).<BR>
The Internet Movie Database accepts no responsibility for the contents of the
review and has no editorial control. Unless stated otherwise, the copyright
belongs to the author.<BR>
Please direct comments/criticisms of the review to relevant newsgroups.<BR>
Broken URLs inthe reviews are the responsibility of the author.<BR>
The formatting of the review is likely to differ from the original due
to ASCII to HTML conversion.
</SMALL></P>
<P ALIGN=CENTER>Related links: <A HREF="/Reviews/">index of all rec.arts.movies.reviews reviews</A></P>
</P></BODY></HTML>
| xianjunzhengbackup/code | data science/machine_learning_for_the_web/chapter_4/movie/5173.html | HTML | mit | 5,406 |
<?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>test_sorting (AssociationColumnTest)</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 vendor/plugins/active_scaffold/test/data_structures/association_column_test.rb, line 14</span>
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">test_sorting</span>
<span class="ruby-comment cmt"># sorting on association columns is method-based</span>
<span class="ruby-identifier">hash</span> = {<span class="ruby-identifier">:method</span> =<span class="ruby-operator">></span> <span class="ruby-value str">"other_model.to_s"</span>}
<span class="ruby-identifier">assert_equal</span> <span class="ruby-identifier">hash</span>, <span class="ruby-ivar">@association_column</span>.<span class="ruby-identifier">sort</span>
<span class="ruby-keyword kw">end</span></pre>
</body>
</html> | NESCent/max-bodysize-evol | doc/rdoc/classes/AssociationColumnTest.src/M000383.html | HTML | mit | 1,230 |
<!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_07) on Sat Jan 16 01:04:20 CST 2010 -->
<TITLE>
G - Ë÷Òý
</TITLE>
<META NAME="date" CONTENT="2010-01-16">
<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="G - Ë÷Òý";
}
}
</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="Ìø¹ýµ¼º½Á´½Ó"></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>¸ÅÊö</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Èí¼þ°ü</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Àà</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">ʹÓÃ</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Ê÷</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Òѹýʱ</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Ë÷Òý</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>°ïÖú</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="index-5.html"><B>ÉÏÒ»¸ö×Öĸ</B></A>
<A HREF="index-7.html"><B>ÏÂÒ»¸ö×Öĸ</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../index.html?index-filesindex-6.html" target="_top"><B>¿ò¼Ü</B></A>
<A HREF="index-6.html" target="_top"><B>ÎÞ¿ò¼Ü</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../allclasses-noframe.html"><B>ËùÓÐÀà</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../allclasses-noframe.html"><B>ËùÓÐÀà</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</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">R</A> <A HREF="index-16.html">S</A> <A HREF="index-17.html">T</A> <A HREF="index-18.html">U</A> <A HREF="index-19.html">V</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <A HREF="index-22.html">Y</A> <A HREF="index-23.html">Z</A> <HR>
<A NAME="_G_"><!-- --></A><H2>
<B>G</B></H2>
<DL>
<DT><A HREF="../com/zxmys/course/programming/project2/MainFrame.html#GAME_EDITING"><B>GAME_EDITING</B></A> -
Àà com.zxmys.course.programming.project2.<A HREF="../com/zxmys/course/programming/project2/MainFrame.html" title="com.zxmys.course.programming.project2 ÖеÄÀà">MainFrame</A> Öеľ²Ì¬±äÁ¿
<DD>ÓÎϷ״̬£ºÕýÔÚ±à¼
<DT><A HREF="../com/zxmys/course/programming/project2/MainFrame.html#GAME_ENDED"><B>GAME_ENDED</B></A> -
Àà com.zxmys.course.programming.project2.<A HREF="../com/zxmys/course/programming/project2/MainFrame.html" title="com.zxmys.course.programming.project2 ÖеÄÀà">MainFrame</A> Öеľ²Ì¬±äÁ¿
<DD>ÓÎϷ״̬£ºÒѽáÊø
<DT><A HREF="../com/zxmys/course/programming/project2/MainFrame.html#GAME_ENDING"><B>GAME_ENDING</B></A> -
Àà com.zxmys.course.programming.project2.<A HREF="../com/zxmys/course/programming/project2/MainFrame.html" title="com.zxmys.course.programming.project2 ÖеÄÀà">MainFrame</A> Öеľ²Ì¬±äÁ¿
<DD>ÓÎϷ״̬£ºÕýÔÚ½áÊø£¨ÖÇÄܽâÌâÖУ©
<DT><A HREF="../com/zxmys/course/programming/project2/MainFrame.html#GAME_LOADING"><B>GAME_LOADING</B></A> -
Àà com.zxmys.course.programming.project2.<A HREF="../com/zxmys/course/programming/project2/MainFrame.html" title="com.zxmys.course.programming.project2 ÖеÄÀà">MainFrame</A> Öеľ²Ì¬±äÁ¿
<DD>ÓÎϷ״̬£ºÕýÔÚÔØÈë£¨Ëæ»úÉú³ÉÌâÄ¿ÖУ©
<DT><A HREF="../com/zxmys/course/programming/project2/MainFrame.html#GAME_LOGO"><B>GAME_LOGO</B></A> -
Àà com.zxmys.course.programming.project2.<A HREF="../com/zxmys/course/programming/project2/MainFrame.html" title="com.zxmys.course.programming.project2 ÖеÄÀà">MainFrame</A> Öеľ²Ì¬±äÁ¿
<DD>ÓÎϷ״̬£ºÕýÔÚÏÔʾLOGO
<DT><A HREF="../com/zxmys/course/programming/project2/MainFrame.html#GAME_PLAYING"><B>GAME_PLAYING</B></A> -
Àà com.zxmys.course.programming.project2.<A HREF="../com/zxmys/course/programming/project2/MainFrame.html" title="com.zxmys.course.programming.project2 ÖеÄÀà">MainFrame</A> Öеľ²Ì¬±äÁ¿
<DD>ÓÎϷ״̬£ºÕýÔÚ½øÐÐÓÎÏ·
<DT><A HREF="../com/zxmys/course/programming/project2/MainFrame.html#GAME_TITLE"><B>GAME_TITLE</B></A> -
Àà com.zxmys.course.programming.project2.<A HREF="../com/zxmys/course/programming/project2/MainFrame.html" title="com.zxmys.course.programming.project2 ÖеÄÀà">MainFrame</A> Öеľ²Ì¬±äÁ¿
<DD>ÓÎϷ״̬£ºÕýÔÚÏÔʾTITLE
<DT><A HREF="../com/zxmys/course/programming/common/game/GameAudio.html" title="com.zxmys.course.programming.common.game ÖеÄÀà"><B>GameAudio</B></A> - <A HREF="../com/zxmys/course/programming/common/game/package-summary.html">com.zxmys.course.programming.common.game</A> ÖÐµÄ Àà<DD>ÓÎÏ·ÒôÀÖÀà<DT><A HREF="../com/zxmys/course/programming/common/game/GameAudio.html#GameAudio(java.net.URL)"><B>GameAudio(URL)</B></A> -
Àà com.zxmys.course.programming.common.game.<A HREF="../com/zxmys/course/programming/common/game/GameAudio.html" title="com.zxmys.course.programming.common.game ÖеÄÀà">GameAudio</A> µÄ¹¹Ôì·½·¨
<DD>¹¹ÔìµÄÍ¬Ê±ÔØÈëÒôÀÖÎļþ
<DT><A HREF="../com/zxmys/course/programming/common/game/GameFileIO.html" title="com.zxmys.course.programming.common.game ÖеÄÀà"><B>GameFileIO</B></A> - <A HREF="../com/zxmys/course/programming/common/game/package-summary.html">com.zxmys.course.programming.common.game</A> ÖÐµÄ Àà<DD>ÓÎÏ·ÎļþIOÀà<DT><A HREF="../com/zxmys/course/programming/common/game/GameFileIO.html#GameFileIO()"><B>GameFileIO()</B></A> -
Àà com.zxmys.course.programming.common.game.<A HREF="../com/zxmys/course/programming/common/game/GameFileIO.html" title="com.zxmys.course.programming.common.game ÖеÄÀà">GameFileIO</A> µÄ¹¹Ôì·½·¨
<DD>²»¿ÉʵÀý»¯
<DT><A HREF="../com/zxmys/course/programming/common/game/GameGraphicPanel.html" title="com.zxmys.course.programming.common.game ÖеÄÀà"><B>GameGraphicPanel</B></A> - <A HREF="../com/zxmys/course/programming/common/game/package-summary.html">com.zxmys.course.programming.common.game</A> ÖÐµÄ Àà<DD>ÓÎÏ·»æÍ¼Àà<DT><A HREF="../com/zxmys/course/programming/common/game/GameGraphicPanel.html#GameGraphicPanel()"><B>GameGraphicPanel()</B></A> -
Àà com.zxmys.course.programming.common.game.<A HREF="../com/zxmys/course/programming/common/game/GameGraphicPanel.html" title="com.zxmys.course.programming.common.game ÖеÄÀà">GameGraphicPanel</A> µÄ¹¹Ôì·½·¨
<DD>¹¹Ô캯Êý£¬ÉèÖÃĬÈÏFPSΪ60£¬Í¬Ê±ºöÂÔϵͳ·¢À´µÄrepaintÏûÏ¢
<DT><A HREF="../com/zxmys/course/programming/common/game/GameResource.html" title="com.zxmys.course.programming.common.game ÖеÄÀà"><B>GameResource</B></A> - <A HREF="../com/zxmys/course/programming/common/game/package-summary.html">com.zxmys.course.programming.common.game</A> ÖÐµÄ Àà<DD>ÓÎÏ·×ÊÔ´¶ÁÈ¡Àà<DT><A HREF="../com/zxmys/course/programming/common/game/GameResource.html#GameResource()"><B>GameResource()</B></A> -
Àà com.zxmys.course.programming.common.game.<A HREF="../com/zxmys/course/programming/common/game/GameResource.html" title="com.zxmys.course.programming.common.game ÖеÄÀà">GameResource</A> µÄ¹¹Ôì·½·¨
<DD>
<DT><A HREF="../com/zxmys/course/programming/project1/SudokuCreator.html#games"><B>games</B></A> -
Àà com.zxmys.course.programming.project1.<A HREF="../com/zxmys/course/programming/project1/SudokuCreator.html" title="com.zxmys.course.programming.project1 ÖеÄÀà">SudokuCreator</A> Öеľ²Ì¬±äÁ¿
<DD>Ô¤´æµÄÓÎÏ·¡£
<DT><A HREF="../com/zxmys/course/programming/common/game/GameSpirit.html" title="com.zxmys.course.programming.common.game ÖеÄÀà"><B>GameSpirit</B></A> - <A HREF="../com/zxmys/course/programming/common/game/package-summary.html">com.zxmys.course.programming.common.game</A> ÖÐµÄ Àà<DD>ÓÎϷͼÏñÎÆÀíÀà<DT><A HREF="../com/zxmys/course/programming/common/game/GameSpirit.html#GameSpirit()"><B>GameSpirit()</B></A> -
Àà com.zxmys.course.programming.common.game.<A HREF="../com/zxmys/course/programming/common/game/GameSpirit.html" title="com.zxmys.course.programming.common.game ÖеÄÀà">GameSpirit</A> µÄ¹¹Ôì·½·¨
<DD>
<DT><A HREF="../com/zxmys/course/programming/project1/Common.Variable.html#gameStartTime"><B>gameStartTime</B></A> -
Àà com.zxmys.course.programming.project1.<A HREF="../com/zxmys/course/programming/project1/Common.Variable.html" title="com.zxmys.course.programming.project1 ÖеÄÀà">Common.Variable</A> Öеľ²Ì¬±äÁ¿
<DD>ÓÎÏ·¿ªÊ¼Ê±¼ä
<DT><A HREF="../com/zxmys/course/programming/project2/MainFrame.html#gameStatus"><B>gameStatus</B></A> -
Àà com.zxmys.course.programming.project2.<A HREF="../com/zxmys/course/programming/project2/MainFrame.html" title="com.zxmys.course.programming.project2 ÖеÄÀà">MainFrame</A> ÖеıäÁ¿
<DD>ÓÎϷ״̬
<DT><A HREF="../com/zxmys/course/programming/common/game/GameAudio.html#getAudioClip()"><B>getAudioClip()</B></A> -
Àà com.zxmys.course.programming.common.game.<A HREF="../com/zxmys/course/programming/common/game/GameAudio.html" title="com.zxmys.course.programming.common.game ÖеÄÀà">GameAudio</A> Öеķ½·¨
<DD>»ñµÃµ±Ç°ÒôÀÖÎļþµÄÒýÓÃ
<DT><A HREF="../com/zxmys/course/programming/common/game/GameGraphicPanel.html#getBgGraphics()"><B>getBgGraphics()</B></A> -
Àà com.zxmys.course.programming.common.game.<A HREF="../com/zxmys/course/programming/common/game/GameGraphicPanel.html" title="com.zxmys.course.programming.common.game ÖеÄÀà">GameGraphicPanel</A> Öеķ½·¨
<DD>»ñµÃË«»º³åËùÓÃGraphics
<DT><A HREF="../com/zxmys/course/programming/project2/MainFrame.html#getBGMPath()"><B>getBGMPath()</B></A> -
Àà com.zxmys.course.programming.project2.<A HREF="../com/zxmys/course/programming/project2/MainFrame.html" title="com.zxmys.course.programming.project2 ÖеÄÀà">MainFrame</A> Öеķ½·¨
<DD>»ñµÃµ±Ç°BGM·¾¶
<DT><A HREF="../com/zxmys/course/programming/project2/MainFrame.html#getBGMStatus()"><B>getBGMStatus()</B></A> -
Àà com.zxmys.course.programming.project2.<A HREF="../com/zxmys/course/programming/project2/MainFrame.html" title="com.zxmys.course.programming.project2 ÖеÄÀà">MainFrame</A> Öеķ½·¨
<DD>»ñµÃBGM״̬
<DT><A HREF="../com/zxmys/course/programming/project2/Panel/SudokuPanel/SudokuGamePanel.html#getBlock(int, int)"><B>getBlock(int, int)</B></A> -
Àà com.zxmys.course.programming.project2.Panel.SudokuPanel.<A HREF="../com/zxmys/course/programming/project2/Panel/SudokuPanel/SudokuGamePanel.html" title="com.zxmys.course.programming.project2.Panel.SudokuPanel ÖеÄÀà">SudokuGamePanel</A> Öеķ½·¨
<DD>»ñµÃÊý¶ÀÃæ°åÖÐÏàӦ׸±êµÄJTextField
<DT><A HREF="../com/zxmys/course/programming/project2/Panel/SudokuPanel/BoardColor/SimpleSudokuBoardColor.html#getBlockColor(int, int)"><B>getBlockColor(int, int)</B></A> -
Àà com.zxmys.course.programming.project2.Panel.SudokuPanel.BoardColor.<A HREF="../com/zxmys/course/programming/project2/Panel/SudokuPanel/BoardColor/SimpleSudokuBoardColor.html" title="com.zxmys.course.programming.project2.Panel.SudokuPanel.BoardColor ÖеÄÀà">SimpleSudokuBoardColor</A> Öеķ½·¨
<DD>
<DT><A HREF="../com/zxmys/course/programming/project2/Panel/SudokuPanel/BoardColor/SudokuBoardColor.html#getBlockColor(int, int)"><B>getBlockColor(int, int)</B></A> -
½Ó¿Ú com.zxmys.course.programming.project2.Panel.SudokuPanel.BoardColor.<A HREF="../com/zxmys/course/programming/project2/Panel/SudokuPanel/BoardColor/SudokuBoardColor.html" title="com.zxmys.course.programming.project2.Panel.SudokuPanel.BoardColor ÖеĽӿÚ">SudokuBoardColor</A> Öеķ½·¨
<DD>»ñµÃ×ø±êΪx,yµÄ¸ñ×ÓµÄÑÕÉ«
<DT><A HREF="../com/zxmys/course/programming/project1/SudokuSolver.html#getBoard()"><B>getBoard()</B></A> -
Àà com.zxmys.course.programming.project1.<A HREF="../com/zxmys/course/programming/project1/SudokuSolver.html" title="com.zxmys.course.programming.project1 ÖеÄÀà">SudokuSolver</A> Öеķ½·¨
<DD>
<DT><A HREF="../com/zxmys/course/programming/project2/Panel/SudokuPanel/SudokuGamePanel.html#getDashBoardPanel()"><B>getDashBoardPanel()</B></A> -
Àà com.zxmys.course.programming.project2.Panel.SudokuPanel.<A HREF="../com/zxmys/course/programming/project2/Panel/SudokuPanel/SudokuGamePanel.html" title="com.zxmys.course.programming.project2.Panel.SudokuPanel ÖеÄÀà">SudokuGamePanel</A> Öеķ½·¨
<DD>»ñµÃ¿ØÖÆÃæ°åµÄÒýÓÃ
<DT><A HREF="../com/zxmys/course/programming/project2/MainControl.html#getFrameBoard()"><B>getFrameBoard()</B></A> -
Àà com.zxmys.course.programming.project2.<A HREF="../com/zxmys/course/programming/project2/MainControl.html" title="com.zxmys.course.programming.project2 ÖеÄÀà">MainControl</A> Öеķ½·¨
<DD>»ñµÃµ±Ç°Êý¶ÀÃæ°åµÄÊý¶ÀÅÌ
<DT><A HREF="../com/zxmys/course/programming/project2/MainControl.html#getGamePanel()"><B>getGamePanel()</B></A> -
Àà com.zxmys.course.programming.project2.<A HREF="../com/zxmys/course/programming/project2/MainControl.html" title="com.zxmys.course.programming.project2 ÖеÄÀà">MainControl</A> Öеķ½·¨
<DD>»ñµÃµ±Ç°Êý¶ÀÃæ°åµÄÊý¶ÀÅÌÃæ°å
<DT><A HREF="../com/zxmys/course/programming/project1/Common.Variable.html#getGameStartTime()"><B>getGameStartTime()</B></A> -
Àà com.zxmys.course.programming.project1.<A HREF="../com/zxmys/course/programming/project1/Common.Variable.html" title="com.zxmys.course.programming.project1 ÖеÄÀà">Common.Variable</A> Öеľ²Ì¬·½·¨
<DD>»ñµÃÓÎÏ·¿ªÊ¼Ê±¼ä
<DT><A HREF="../com/zxmys/course/programming/project2/MainFrame.html#getGameStatus()"><B>getGameStatus()</B></A> -
Àà com.zxmys.course.programming.project2.<A HREF="../com/zxmys/course/programming/project2/MainFrame.html" title="com.zxmys.course.programming.project2 ÖеÄÀà">MainFrame</A> Öеķ½·¨
<DD>»ñµÃÓÎϷ״̬
<DT><A HREF="../com/zxmys/course/programming/project1/Common.Variable.html#getGameTime()"><B>getGameTime()</B></A> -
Àà com.zxmys.course.programming.project1.<A HREF="../com/zxmys/course/programming/project1/Common.Variable.html" title="com.zxmys.course.programming.project1 ÖеÄÀà">Common.Variable</A> Öеľ²Ì¬·½·¨
<DD>»ñµÃÓÎÏ·ÒÑÓÃʱ¼ä
<DT><A HREF="../com/zxmys/course/programming/common/game/GameSpirit.html#getHeight()"><B>getHeight()</B></A> -
Àà com.zxmys.course.programming.common.game.<A HREF="../com/zxmys/course/programming/common/game/GameSpirit.html" title="com.zxmys.course.programming.common.game ÖеÄÀà">GameSpirit</A> Öеķ½·¨
<DD>»ñµÃ¸ß¶È
<DT><A HREF="../com/zxmys/course/programming/common/game/GameFileIO.html#getInputStream(java.io.File)"><B>getInputStream(File)</B></A> -
Àà com.zxmys.course.programming.common.game.<A HREF="../com/zxmys/course/programming/common/game/GameFileIO.html" title="com.zxmys.course.programming.common.game ÖеÄÀà">GameFileIO</A> Öеľ²Ì¬·½·¨
<DD>»ñµÃ¶ÔfileµÄBufferedInputStream
<DT><A HREF="../com/zxmys/course/programming/common/game/GameGraphicPanel.html#getMaxFPS()"><B>getMaxFPS()</B></A> -
Àà com.zxmys.course.programming.common.game.<A HREF="../com/zxmys/course/programming/common/game/GameGraphicPanel.html" title="com.zxmys.course.programming.common.game ÖеÄÀà">GameGraphicPanel</A> Öеķ½·¨
<DD>»ñµÃ´ËǰÉèÖõÄ×î´óFPS
<DT><A HREF="../com/zxmys/course/programming/project1/GUISudokuBoard.html#getOriginalBoard()"><B>getOriginalBoard()</B></A> -
Àà com.zxmys.course.programming.project1.<A HREF="../com/zxmys/course/programming/project1/GUISudokuBoard.html" title="com.zxmys.course.programming.project1 ÖеÄÀà">GUISudokuBoard</A> Öеķ½·¨
<DD>»ñµÃ±¾Êý¶ÀÆåÅ̵ÄÌâÄ¿
<DT><A HREF="../com/zxmys/course/programming/common/game/GameFileIO.html#getOutputStream(java.io.File)"><B>getOutputStream(File)</B></A> -
Àà com.zxmys.course.programming.common.game.<A HREF="../com/zxmys/course/programming/common/game/GameFileIO.html" title="com.zxmys.course.programming.common.game ÖеÄÀà">GameFileIO</A> Öеľ²Ì¬·½·¨
<DD>»ñµÃ¶ÔfileµÄBufferedOutputStream
<DT><A HREF="../com/zxmys/course/programming/project2/Panel/SudokuPanel/SudokuGamePanel.DashBoardPanel.html#getPlayTime()"><B>getPlayTime()</B></A> -
Àà com.zxmys.course.programming.project2.Panel.SudokuPanel.<A HREF="../com/zxmys/course/programming/project2/Panel/SudokuPanel/SudokuGamePanel.DashBoardPanel.html" title="com.zxmys.course.programming.project2.Panel.SudokuPanel ÖеÄÀà">SudokuGamePanel.DashBoardPanel</A> Öеķ½·¨
<DD>»ñµÃÓÎϷʱ¼ä£¨ÎÄ×ÖÐÎʽ£©
<DT><A HREF="../com/zxmys/course/programming/project2/Panel/SudokuPanel/SudokuGamePanel.DashBoardPanel.html#getPlayTimeLong()"><B>getPlayTimeLong()</B></A> -
Àà com.zxmys.course.programming.project2.Panel.SudokuPanel.<A HREF="../com/zxmys/course/programming/project2/Panel/SudokuPanel/SudokuGamePanel.DashBoardPanel.html" title="com.zxmys.course.programming.project2.Panel.SudokuPanel ÖеÄÀà">SudokuGamePanel.DashBoardPanel</A> Öеķ½·¨
<DD>»ñµÃÓÎϷʱ¼ä
<DT><A HREF="../com/zxmys/course/programming/project1/SudokuCreator.html#getRandomGame(int)"><B>getRandomGame(int)</B></A> -
Àà com.zxmys.course.programming.project1.<A HREF="../com/zxmys/course/programming/project1/SudokuCreator.html" title="com.zxmys.course.programming.project1 ÖеÄÀà">SudokuCreator</A> Öеľ²Ì¬·½·¨
<DD>Éú³É¾ßÓÐÖ¸¶¨¿Õ¸ñÊýÁ¿µÄÊý¶ÀÌâ
<DT><A HREF="../com/zxmys/course/programming/common/game/GameResource.html#getResource(java.lang.String)"><B>getResource(String)</B></A> -
Àà com.zxmys.course.programming.common.game.<A HREF="../com/zxmys/course/programming/common/game/GameResource.html" title="com.zxmys.course.programming.common.game ÖеÄÀà">GameResource</A> Öеľ²Ì¬·½·¨
<DD>»ñµÃÓÎÏ·×ÊÔ´
<DT><A HREF="../com/zxmys/course/programming/common/game/GameGraphicPanel.html#getSpiritCount()"><B>getSpiritCount()</B></A> -
Àà com.zxmys.course.programming.common.game.<A HREF="../com/zxmys/course/programming/common/game/GameGraphicPanel.html" title="com.zxmys.course.programming.common.game ÖеÄÀà">GameGraphicPanel</A> Öеķ½·¨
<DD>»ñµÃÎÆÀíÊýÁ¿
<DT><A HREF="../com/zxmys/course/programming/project1/SudokuCreator.html#getStoredGame()"><B>getStoredGame()</B></A> -
Àà com.zxmys.course.programming.project1.<A HREF="../com/zxmys/course/programming/project1/SudokuCreator.html" title="com.zxmys.course.programming.project1 ÖеÄÀà">SudokuCreator</A> Öеľ²Ì¬·½·¨
<DD>Ëæ»ú·µ»ØÔ¤´æµÄÓÎÏ·ÖеÄÒ»¸ö
<DT><A HREF="../com/zxmys/course/programming/project1/SudokuCreator.html#getStoredGame(int)"><B>getStoredGame(int)</B></A> -
Àà com.zxmys.course.programming.project1.<A HREF="../com/zxmys/course/programming/project1/SudokuCreator.html" title="com.zxmys.course.programming.project1 ÖеÄÀà">SudokuCreator</A> Öеľ²Ì¬·½·¨
<DD>·µ»ØÖ¸¶¨IDµÄÔ¤´æÓÎÏ·
<DT><A HREF="../com/zxmys/course/programming/project2/Panel/SudokuPanel/SudokuGamePanel.html#getSudokuBoard()"><B>getSudokuBoard()</B></A> -
Àà com.zxmys.course.programming.project2.Panel.SudokuPanel.<A HREF="../com/zxmys/course/programming/project2/Panel/SudokuPanel/SudokuGamePanel.html" title="com.zxmys.course.programming.project2.Panel.SudokuPanel ÖеÄÀà">SudokuGamePanel</A> Öеķ½·¨
<DD>»ñµÃµ×²ãÊý¶ÀÅÌ
<DT><A HREF="../com/zxmys/course/programming/project2/MainControl.html#getSudokuBoardColor()"><B>getSudokuBoardColor()</B></A> -
Àà com.zxmys.course.programming.project2.<A HREF="../com/zxmys/course/programming/project2/MainControl.html" title="com.zxmys.course.programming.project2 ÖеÄÀà">MainControl</A> Öеķ½·¨
<DD>¸ù¾ÝÏàÓ¦²Ëµ¥Ñ¡ÔñÇé¿ö»ñµÃµ±Ç°Êý¶ÀÅÌÑÕÉ«ÅäÖÃ
<DT><A HREF="../com/zxmys/course/programming/project2/Panel/SudokuPanel/SudokuGamePanel.SudokuBoardPanel.html#getSudokuBoardColor()"><B>getSudokuBoardColor()</B></A> -
Àà com.zxmys.course.programming.project2.Panel.SudokuPanel.<A HREF="../com/zxmys/course/programming/project2/Panel/SudokuPanel/SudokuGamePanel.SudokuBoardPanel.html" title="com.zxmys.course.programming.project2.Panel.SudokuPanel ÖеÄÀà">SudokuGamePanel.SudokuBoardPanel</A> Öеķ½·¨
<DD>»ñµÃÊý¶ÀÅÌÑÕÉ«ÅäÖÃ
<DT><A HREF="../com/zxmys/course/programming/project2/Panel/SudokuPanel/SudokuGamePanel.html#getSudokuBoardPanel()"><B>getSudokuBoardPanel()</B></A> -
Àà com.zxmys.course.programming.project2.Panel.SudokuPanel.<A HREF="../com/zxmys/course/programming/project2/Panel/SudokuPanel/SudokuGamePanel.html" title="com.zxmys.course.programming.project2.Panel.SudokuPanel ÖеÄÀà">SudokuGamePanel</A> Öеķ½·¨
<DD>»ñµÃÊý¶ÀÃæ°åµÄÒýÓÃ
<DT><A HREF="../com/zxmys/course/programming/project1/SudokuBoard.html#getVal(int, int)"><B>getVal(int, int)</B></A> -
Àà com.zxmys.course.programming.project1.<A HREF="../com/zxmys/course/programming/project1/SudokuBoard.html" title="com.zxmys.course.programming.project1 ÖеÄÀà">SudokuBoard</A> Öеķ½·¨
<DD>»ñµÃÊý¶ÀÖÐÖ¸¶¨×ø±êµÄÊý×Ö
<DT><A HREF="../com/zxmys/course/programming/common/game/GameSpirit.html#getWidth()"><B>getWidth()</B></A> -
Àà com.zxmys.course.programming.common.game.<A HREF="../com/zxmys/course/programming/common/game/GameSpirit.html" title="com.zxmys.course.programming.common.game ÖеÄÀà">GameSpirit</A> Öеķ½·¨
<DD>»ñµÃ¿í¶È
<DT><A HREF="../com/zxmys/course/programming/common/game/GameSpirit.html#getX()"><B>getX()</B></A> -
Àà com.zxmys.course.programming.common.game.<A HREF="../com/zxmys/course/programming/common/game/GameSpirit.html" title="com.zxmys.course.programming.common.game ÖеÄÀà">GameSpirit</A> Öеķ½·¨
<DD>»ñµÃx×ø±ê
<DT><A HREF="../com/zxmys/course/programming/common/game/GameSpirit.html#getY()"><B>getY()</B></A> -
Àà com.zxmys.course.programming.common.game.<A HREF="../com/zxmys/course/programming/common/game/GameSpirit.html" title="com.zxmys.course.programming.common.game ÖеÄÀà">GameSpirit</A> Öеķ½·¨
<DD>»ñµÃy×ø±ê
<DT><A HREF="../com/zxmys/course/programming/project2/MainControl.html#groupBoardColor"><B>groupBoardColor</B></A> -
Àà com.zxmys.course.programming.project2.<A HREF="../com/zxmys/course/programming/project2/MainControl.html" title="com.zxmys.course.programming.project2 ÖеÄÀà">MainControl</A> ÖеıäÁ¿
<DD>
<DT><A HREF="../com/zxmys/course/programming/project2/MainControl.html#groupLookAndFeel"><B>groupLookAndFeel</B></A> -
Àà com.zxmys.course.programming.project2.<A HREF="../com/zxmys/course/programming/project2/MainControl.html" title="com.zxmys.course.programming.project2 ÖеÄÀà">MainControl</A> ÖеıäÁ¿
<DD>
<DT><A HREF="../com/zxmys/course/programming/project1/Common.Variable.html#GUI"><B>GUI</B></A> -
Àà com.zxmys.course.programming.project1.<A HREF="../com/zxmys/course/programming/project1/Common.Variable.html" title="com.zxmys.course.programming.project1 ÖеÄÀà">Common.Variable</A> Öеľ²Ì¬±äÁ¿
<DD>ÊÇ·ñΪGUI½çÃæ
<DT><A HREF="../com/zxmys/course/programming/project1/GUIMain.html" title="com.zxmys.course.programming.project1 ÖеÄÀà"><B>GUIMain</B></A> - <A HREF="../com/zxmys/course/programming/project1/package-summary.html">com.zxmys.course.programming.project1</A> ÖÐµÄ Àà<DD>GUI½çÃæÖ÷³ÌÐò<DT><A HREF="../com/zxmys/course/programming/project1/GUIMain.html#GUIMain()"><B>GUIMain()</B></A> -
Àà com.zxmys.course.programming.project1.<A HREF="../com/zxmys/course/programming/project1/GUIMain.html" title="com.zxmys.course.programming.project1 ÖеÄÀà">GUIMain</A> µÄ¹¹Ôì·½·¨
<DD>
<DT><A HREF="../com/zxmys/course/programming/project1/GUISudokuBoard.html" title="com.zxmys.course.programming.project1 ÖеÄÀà"><B>GUISudokuBoard</B></A> - <A HREF="../com/zxmys/course/programming/project1/package-summary.html">com.zxmys.course.programming.project1</A> ÖÐµÄ Àà<DD>GUIÊý¶ÀÆåÅÌÀà<DT><A HREF="../com/zxmys/course/programming/project1/GUISudokuBoard.html#GUISudokuBoard()"><B>GUISudokuBoard()</B></A> -
Àà com.zxmys.course.programming.project1.<A HREF="../com/zxmys/course/programming/project1/GUISudokuBoard.html" title="com.zxmys.course.programming.project1 ÖеÄÀà">GUISudokuBoard</A> µÄ¹¹Ôì·½·¨
<DD>
<DT><A HREF="../com/zxmys/course/programming/project1/GUISudokuBoard.html#GUISudokuBoard(com.zxmys.course.programming.project1.SudokuBoard)"><B>GUISudokuBoard(SudokuBoard)</B></A> -
Àà com.zxmys.course.programming.project1.<A HREF="../com/zxmys/course/programming/project1/GUISudokuBoard.html" title="com.zxmys.course.programming.project1 ÖеÄÀà">GUISudokuBoard</A> µÄ¹¹Ôì·½·¨
<DD>
<DT><A HREF="../com/zxmys/course/programming/project1/GUISudokuBoard.html#GUISudokuBoard(com.zxmys.course.programming.project1.GUISudokuBoard)"><B>GUISudokuBoard(GUISudokuBoard)</B></A> -
Àà com.zxmys.course.programming.project1.<A HREF="../com/zxmys/course/programming/project1/GUISudokuBoard.html" title="com.zxmys.course.programming.project1 ÖеÄÀà">GUISudokuBoard</A> µÄ¹¹Ôì·½·¨
<DD>³õʼ»¯ÓëÁíÒ»¸öGUIÊý¶ÀÏàͬµÄGUIÊý¶À
<DT><A HREF="../com/zxmys/course/programming/project1/GUISudokuBoard.html#GUISudokuBoard(java.lang.String)"><B>GUISudokuBoard(String)</B></A> -
Àà com.zxmys.course.programming.project1.<A HREF="../com/zxmys/course/programming/project1/GUISudokuBoard.html" title="com.zxmys.course.programming.project1 ÖеÄÀà">GUISudokuBoard</A> µÄ¹¹Ôì·½·¨
<DD>
</DL>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Ìø¹ýµ¼º½Á´½Ó"></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>¸ÅÊö</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Èí¼þ°ü</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Àà</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">ʹÓÃ</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Ê÷</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Òѹýʱ</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Ë÷Òý</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>°ïÖú</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="index-5.html"><B>ÉÏÒ»¸ö×Öĸ</B></A>
<A HREF="index-7.html"><B>ÏÂÒ»¸ö×Öĸ</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../index.html?index-filesindex-6.html" target="_top"><B>¿ò¼Ü</B></A>
<A HREF="index-6.html" target="_top"><B>ÎÞ¿ò¼Ü</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../allclasses-noframe.html"><B>ËùÓÐÀà</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../allclasses-noframe.html"><B>ËùÓÐÀà</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</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">R</A> <A HREF="index-16.html">S</A> <A HREF="index-17.html">T</A> <A HREF="index-18.html">U</A> <A HREF="index-19.html">V</A> <A HREF="index-20.html">W</A> <A HREF="index-21.html">X</A> <A HREF="index-22.html">Y</A> <A HREF="index-23.html">Z</A> <HR>
</BODY>
</HTML>
| ZxMYS/Xiaos-Sudoku2 | doc/index-files/index-6.html | HTML | mit | 28,757 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Editing by Kathleen</title>
<link rel="stylesheet" href="css/custom.css" />
<link rel="fonts" href="fonts/roboto">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico"/>
</head>
<body>
<div class="horizon scroll">
</div>
<div class="front scroll">
<p class="work"><strong>Previous Projects</strong></p>
</div>
<div class="front scroll">
<a target="blank" class="judge" href="https://www.amazon.com/gp/product/B009VKE8IA?ie=UTF8&camp=213733&creative=393177&creativeASIN=B009VKE8IA&linkCode=shr&tag=httpkatepoliw-20&qid=1381426541&sr=8-1&keywords=Don%27t+Judge+a+Book+By+Its+Magic/"></a>
<a target="blank" class="gospel" href="https://www.amazon.com/Gospel-Centered-Woman-Understanding-Scriptures/dp/1451574827/ref=sr_1_3?s=books&ie=UTF8&qid=1357171042&sr=1-3/"></a>
<a target="blank" class="lustre" href="http://www.barnesandnoble.com/w/the-lustre-kate-policani/1109480575?ean=2940014334402&itm=1&usri=the+lustre/"></a>
<a target="blank" class="practical" href="https://www.amazon.com/Practical-Theology-Women-Knowing-Difference/dp/1433502097/ref=as_li_ss_tl?ie=UTF8&linkCode=sl1&tag=practheoforwo-20&linkId=666e6991a20649b6b065031336b61327"></a>
<a target="blank" class="inspiring" href="https://www.amazon.com/Inspiring-Childhood-Life-Perspectives-Encouragement/dp/1467941425"></a>
<a target="blank" class="pet" href="https://www.amazon.com/Disenchanted-Pet-Kate-Policani/dp/1463750803"></a>
<a target="blank" class="wounds" href="https://www.amazon.com/His-Wounds-You-are-Healed/dp/1450516696"></a>
</div>
<div class="middle scroll">
<p class="dont">
<h1>Editing by <strong>Kathleen</strong></h1>
<h3><strong>Don't let your ideas and opportunities
be hindered by errors. <br>
</strong></h3>
</p>
<p class="need">
<strong style="font-size: 40px;"><u>Why use an editor?</u></strong><br/><br/>
<strong>Whether you're a <i><u>writer</u></i> who just needs a second set of eyes to
check <br><strong>grammar</strong> and <strong>punctuation</strong>, <br>
<br/>
a <i><u>job seeker</u></i> wanting to stand out in the crowd of <br><strong>resumés</strong>, <br>
<br/>
or an <i><u>author</u></i> with a great idea for a story who needs some <br><strong>direction</strong> and <strong>guidance</strong>, <br>
a professional editor can help.
</strong>
</p>
</div>
<div class="middle scroll">
<p class="kathleen1">
<strong>
Kathleen is a skilled editor who is timely, accurate, thorough, and
personable.
</strong>
</p>
</div>
<div class="middle scroll">
<p class=photo>
</p>
</div>
<div class="middle scroll">
<p class="kathleen2">
<strong>
She can take your rough draft and make it shine, from the
big picture to the minute details.
</strong>
</p>
</div>
<div class="middle scroll">
<p class="about1">
<strong>
Kathleen graduated from Cal State San Bernardino with a Bachelor's Degree in Psychology as is
currently enrolled as a Master of Public Administration student.
<br/><br/>Her passion for helping people drew her to a career in Social Services, <br/>
emphasizing employment and job search assistance. <br/><br/>These skills have proved invaluable <br/>
for the last decade in Kathleen’s work as a freelance resumé writer and editor. <br/><br/>
</strong>
</p>
</div>
<div class="middle scroll">
<p class="about2">
<strong>
In 2009, Kathleen completed a Certificate in Editing from the University of Washington.
Since engaging in the Editing program, she has collaborated on several different projects
including Inspiring Childhood, Inspiring Life (a collection of parenting essays,)
The Lustre (a fantasy novel,) and a policy and procedure manual. She has also perfected
many blogs, term papers, and resumés. <br/><br/>
</strong>
</p>
</div>
<div class="middle scroll">
<p class="about3">
<strong>
Kathleen is an avid reader and traveler. She loves the beach, wine, and relaxing with friends and family.
She lives with her husband and two children in Southern California.
</strong>
</p>
</div>
<div class="front scroll">
<form
action="mailto:katfberg@gmail.com"
method="POST"
enctype="multipart/form-data"
name="EmailTestForm"
class="contactMe">
Your Name:<br>
<input type="text" size="20" name="VisitorName"><br><br>
Tell me about your project:<br>
<textarea name="VisitorComment" rows="12" cols="60">
</textarea><br><br>
<label for="post_categories" class="form-group" class="col-sm-6">What can I help you with? </label>
<select label="post_categories" class="form-control" name= "post_categories">
<optgroup label="post_categories" class="form-group">
<option value="Blogging"> Blogging </option>
<option value="Copywriting">Copywriting </option>
<option value="Editing">Editing </option>
<option value="Procedure Manual Creation/Editing"> Procedure Manual Creation/Editing </option>
<option value="Proof Reading"> Proof Reading </option>
<option value="Resume Creation">Resumé Creation </option>
<option value="Term Papers"> Term Papers </option>
<option value="Other"> Other </option>
</optgroup>
</select>
<br>
<input type="submit" value="Email This Form">
</form>
</div>
<footer>
<div class="footer-copyright">
<div class="container" style="margin-left: 10px; margin-top:10px;">
<a target="_blank" class="gray-text" href="http://www.kylefirstenberg.com/"><alt="">Kyle Firstenberg Design</a>
</div>
</div>
</footer>
<script type="text/javascript" src="libs/jquery.min.js"></script>
<script type="text/javascript" src="dist/js/jquery.jInvertScroll.js"></script>
<link rel="stylesheet" src="libs/elegant-typewriter.regular.ttf">
<script type="text/javascript">
(function($) {
$.jInvertScroll(['.scroll'], // an array containing the selector(s) for the elements you want to animate
{
height: 6000, // optional: define the height the user can scroll, otherwise the overall length will be taken as scrollable height
onScroll: function(percent) { //optional: callback function that will be called when the user scrolls down, useful for animating other things on the page
console.log(percent);
}
});
}(jQuery));
</script>
</body>
</html>
| kylefberg/editing_by_kathleen | index.html | HTML | mit | 7,049 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.